@bigbinary/neetoui 5.2.20 → 5.2.21
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.
- package/index.cjs.js +2809 -178
- package/index.cjs.js.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +11 -0
- package/index.js +2811 -181
- package/index.js.map +1 -1
- package/package.json +2 -1
package/index.d.ts
CHANGED
|
@@ -680,6 +680,16 @@ export type TreeProps = {
|
|
|
680
680
|
onSelect: Function;
|
|
681
681
|
};
|
|
682
682
|
|
|
683
|
+
export type TimePickerInputProps = {
|
|
684
|
+
label?: string;
|
|
685
|
+
value?: string | Date;
|
|
686
|
+
onChange?: (date: any, value: string) => void;
|
|
687
|
+
labelProps?: object;
|
|
688
|
+
className?: string;
|
|
689
|
+
error?: string;
|
|
690
|
+
required?: boolean;
|
|
691
|
+
};
|
|
692
|
+
|
|
683
693
|
// components
|
|
684
694
|
|
|
685
695
|
export const Accordion: React.FC<AccordionProps> & {
|
|
@@ -768,3 +778,4 @@ export const Kbd: React.FC<KbdProps>;
|
|
|
768
778
|
export const NoData: React.FC<NoDataProps>;
|
|
769
779
|
export const TreeSelect: React.FC<TreeSelectProps>;
|
|
770
780
|
export const Tree: React.FC<TreeProps>;
|
|
781
|
+
export const TimePickerInput: React.FC<TimePickerInputProps>;
|