pesona-ui 0.1.36 → 0.1.38
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/dist/index.d.ts +21 -0
- package/dist/pesona-ui.cjs.js +39 -39
- package/dist/pesona-ui.css +1 -1
- package/dist/pesona-ui.es.js +2634 -2474
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -331,6 +331,19 @@ declare interface InputTextAreaProps extends default_2.TextareaHTMLAttributes<HT
|
|
|
331
331
|
error?: string | undefined;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
+
export declare const InputTime: default_2.ForwardRefExoticComponent<InputTimeProps & default_2.RefAttributes<HTMLInputElement>>;
|
|
335
|
+
|
|
336
|
+
declare interface InputTimeProps extends Omit<default_2.InputHTMLAttributes<HTMLInputElement>, 'onChange' | 'value'> {
|
|
337
|
+
name: string;
|
|
338
|
+
label: string;
|
|
339
|
+
message?: string;
|
|
340
|
+
floatingLabel?: boolean;
|
|
341
|
+
format24?: boolean;
|
|
342
|
+
error?: string;
|
|
343
|
+
value?: string;
|
|
344
|
+
onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
345
|
+
}
|
|
346
|
+
|
|
334
347
|
export declare const InputWithAction: default_2.ForwardRefExoticComponent<Omit<InputProps_2, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
|
|
335
348
|
|
|
336
349
|
export declare const LinearProgress: default_2.FC<LinearProgressProps>;
|
|
@@ -623,6 +636,14 @@ declare interface TabsProps {
|
|
|
623
636
|
customHeader?: default_2.ReactNode;
|
|
624
637
|
}
|
|
625
638
|
|
|
639
|
+
export declare const TimePicker: default_2.FC<TimePickerProps>;
|
|
640
|
+
|
|
641
|
+
declare interface TimePickerProps {
|
|
642
|
+
onSelect: (time: string) => void;
|
|
643
|
+
defaultTime?: string;
|
|
644
|
+
format24?: boolean;
|
|
645
|
+
}
|
|
646
|
+
|
|
626
647
|
export declare const Tooltip: default_2.FC<TooltipProps>;
|
|
627
648
|
|
|
628
649
|
declare type TooltipPosition = 'top' | 'bottom' | 'left' | 'right';
|