Comparing version 2.0.0 to 2.0.1
@@ -5,2 +5,7 @@ # Change Log | ||
<a name="2.0.1"></a> | ||
## [2.0.1](https://gitlab.com/iiroj/app-bar/compare/v2.0.0...v2.0.1) (2018-10-12) | ||
<a name="2.0.0"></a> | ||
@@ -7,0 +12,0 @@ # [2.0.0](https://gitlab.com/iiroj/app-bar/compare/v1.8.6...v2.0.0) (2018-10-12) |
import * as React from 'react'; | ||
export interface BaseProps { | ||
declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; | ||
declare type PartialHTMLElement = Omit<React.HTMLProps<HTMLDivElement>, 'children' | 'className' | 'ref'>; | ||
interface BaseProps extends PartialHTMLElement { | ||
readonly children: any; | ||
@@ -7,10 +9,2 @@ readonly className?: string; | ||
} | ||
export declare type AppBarProps = BaseProps & { | ||
readonly innerRef?: React.RefObject<any>; | ||
}; | ||
export declare type AppBarState = { | ||
scroll: number; | ||
ref: React.RefObject<HTMLDivElement>; | ||
top: number; | ||
}; | ||
declare const _default: React.ComponentType<BaseProps & { | ||
@@ -17,0 +11,0 @@ ref?: React.RefObject<any> | undefined; |
{ | ||
"name": "app-bar", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "An app bar for React that stays out of your way", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16670
165