master-components-react-ts 2.5.17 → 2.5.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TimePickerProps } from './TimePicker.types';
|
|
2
2
|
declare const TimePicker: {
|
|
3
|
-
({ value, defaultTimeType, defaultAmPm, withConfirm,
|
|
4
|
-
propKeys: readonly ["value", "defaultTimeType", "defaultAmPm", "withConfirm", "
|
|
3
|
+
({ value, defaultTimeType, defaultAmPm, withConfirm, closeOnScroll, onChange, onFocus, onBlur, ...rest }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
propKeys: readonly ["value", "defaultTimeType", "defaultAmPm", "withConfirm", "onChange", "onFocus", "onBlur", "closeOnScroll"];
|
|
5
5
|
displayName: string;
|
|
6
6
|
description: string;
|
|
7
7
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export { default as InlineLoading } from './components/InlineLoading/InlineLoadi
|
|
|
20
20
|
export type { Loading, Success, Error } from './components/InlineLoading/InlineLoading.types';
|
|
21
21
|
export { default as Slider } from './components/Slider/Slider';
|
|
22
22
|
export { default as TreeNode } from './components/TreeNode/TreeNode';
|
|
23
|
-
export type { TreeNodeDataType } from './components/TreeNode/TreeNode.types';
|
|
23
|
+
export type { TreeNodeDataType, TreeNodeProps } from './components/TreeNode/TreeNode.types';
|
|
24
24
|
export { default as FilterWithTags } from './components/FilterWithTags/FilterWithTags';
|
|
25
25
|
export type { FilterOptionsTypes } from './components/FilterWithTags/FilterWithTags.types';
|
|
26
26
|
export { default as Table } from './components/Table/Table';
|