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, mode, closeOnScroll, onChange, onFocus, onBlur, ...rest }: TimePickerProps): import("react/jsx-runtime").JSX.Element;
4
- propKeys: readonly ["value", "defaultTimeType", "defaultAmPm", "withConfirm", "mode", "onChange", "onFocus", "onBlur", "closeOnScroll"];
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
  };
@@ -3,7 +3,6 @@ export interface TimePickerProps extends FormInputProps {
3
3
  withConfirm?: boolean;
4
4
  defaultTimeType?: '12' | '24';
5
5
  defaultAmPm?: 'AM' | 'PM';
6
- mode?: 'single' | 'range';
7
6
  closeOnScroll?: boolean;
8
7
  onChange?: (value: string) => void;
9
8
  onFocus?: () => void;
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';