forstok-ui-lib 8.10.5 → 8.10.8
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 +4 -2
- package/dist/index.js +90 -90
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +92 -92
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/date/index.tsx +6 -9
- package/src/components/date/ref.tsx +6 -9
- package/src/components/date/time.tsx +0 -33
package/dist/index.d.ts
CHANGED
|
@@ -764,8 +764,9 @@ type TDate$1 = {
|
|
|
764
764
|
allowEmpty?: boolean;
|
|
765
765
|
setForceUpdate?: TState<boolean>;
|
|
766
766
|
showTimeInput?: boolean;
|
|
767
|
+
showTimeSelect?: boolean;
|
|
768
|
+
timeIntervals?: number;
|
|
767
769
|
minDate?: any;
|
|
768
|
-
minTime?: any;
|
|
769
770
|
"data-qa-id"?: string;
|
|
770
771
|
"data-tip"?: string;
|
|
771
772
|
"data-place"?: string;
|
|
@@ -789,6 +790,8 @@ type TDate = {
|
|
|
789
790
|
allowEmpty?: boolean;
|
|
790
791
|
setForceUpdate?: TState<boolean>;
|
|
791
792
|
showTimeInput?: boolean;
|
|
793
|
+
showTimeSelect?: boolean;
|
|
794
|
+
timeIntervals?: number;
|
|
792
795
|
placeholderText?: string;
|
|
793
796
|
portalId?: string;
|
|
794
797
|
isIcon?: boolean;
|
|
@@ -798,7 +801,6 @@ type TDate = {
|
|
|
798
801
|
"data-type"?: string;
|
|
799
802
|
disabled?: boolean;
|
|
800
803
|
minDate?: any;
|
|
801
|
-
minTime?: any;
|
|
802
804
|
};
|
|
803
805
|
declare const DateRefComponent: react.ForwardRefExoticComponent<TDate & react.RefAttributes<unknown>>;
|
|
804
806
|
|