@types/react-virtualized
Advanced tools
Comparing version 9.18.0 to 9.18.1
@@ -32,3 +32,3 @@ import { PureComponent } from "react"; | ||
clearAll(): void; | ||
columnWidth: (params: { index: number }) => number | undefined; | ||
columnWidth: (params: { index: number }) => number; | ||
readonly defaultHeight: number; | ||
@@ -38,6 +38,6 @@ readonly defaultWidth: number; | ||
hasFixedWidth(): boolean; | ||
getHeight(rowIndex: number, columnIndex: number): number | undefined; | ||
getWidth(rowIndex: number, columnIndex: number): number | undefined; | ||
getHeight(rowIndex: number, columnIndex: number): number; | ||
getWidth(rowIndex: number, columnIndex: number): number; | ||
has(rowIndex: number, columnIndex: number): boolean; | ||
rowHeight: (params: { index: number }) => number | undefined; | ||
rowHeight: (params: { index: number }) => number; | ||
set( | ||
@@ -44,0 +44,0 @@ rowIndex: number, |
@@ -32,4 +32,5 @@ import { PureComponent, Validator, Requireable } from "react"; | ||
index: number; | ||
key: string; | ||
style?: React.CSSProperties; | ||
isScrolling: boolean; | ||
key: number; | ||
style: React.CSSProperties; | ||
}; | ||
@@ -36,0 +37,0 @@ export type CollectionCellRenderer = ( |
@@ -57,8 +57,3 @@ import { Validator, Requireable, PureComponent } from "react"; | ||
}; | ||
export type SectionRenderedParams = { | ||
columnStartIndex: number; | ||
columnStopIndex: number; | ||
rowStartIndex: number; | ||
rowStopIndex: number; | ||
}; | ||
export type SectionRenderedParams = RenderedSection; | ||
export type SCROLL_DIRECTION_HORIZONTAL = "horizontal"; | ||
@@ -65,0 +60,0 @@ export type SCROLL_DIRECTION_VERTICAL = "vertical"; |
@@ -211,5 +211,3 @@ import { Validator, Requireable, PureComponent, Component } from "react"; | ||
/** One or more Columns describing the data displayed in this row */ | ||
children?: | ||
| React.ReactElement<ColumnProps>[] | ||
| React.ReactElement<ColumnProps>; | ||
children?: React.ReactNode; | ||
/** Optional CSS class name */ | ||
@@ -376,3 +374,3 @@ className?: string; | ||
export const SortIndicator: React.StatelessComponent<{ | ||
sortDirection: SortDirectionType; | ||
sortDirection?: SortDirectionType; | ||
}>; | ||
@@ -379,0 +377,0 @@ |
@@ -25,3 +25,3 @@ import { Validator, Requireable, PureComponent } from "react"; | ||
params: { | ||
onChildScroll: ({ scrollTop: number }) => void; | ||
onChildScroll: (params: { scrollTop: number }) => void; | ||
registerChild: (params?: Element) => void; | ||
@@ -28,0 +28,0 @@ height: number; |
@@ -121,3 +121,4 @@ // Type definitions for react-virtualized 9.18 | ||
TableRowProps, | ||
TableRowRenderer | ||
TableRowRenderer, | ||
SortParams | ||
} from "./dist/es/Table"; | ||
@@ -124,0 +125,0 @@ export { |
{ | ||
"name": "@types/react-virtualized", | ||
"version": "9.18.0", | ||
"version": "9.18.1", | ||
"description": "TypeScript definitions for react-virtualized", | ||
@@ -53,4 +53,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "44c759f964fad8104ed2050268dc4e85bba5b391a1817d6c62174b2ee1b19e0e", | ||
"typesPublisherContentHash": "d31ed16378edad634acc4310f5907ca977d69b288dcbbf95ffee3066dd6d1d7f", | ||
"typeScriptVersion": "2.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 11 Apr 2018 19:11:59 GMT | ||
* Last updated: Sat, 14 Apr 2018 19:43:17 GMT | ||
* Dependencies: react, prop-types | ||
@@ -14,0 +14,0 @@ * Global values: none |
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
77684
1992