forstok-ui-lib 8.10.7 → 8.10.9
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 +6 -0
- package/dist/index.js +23 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/date/index.tsx +9 -0
- package/src/components/date/ref.tsx +9 -0
package/dist/index.d.ts
CHANGED
|
@@ -764,6 +764,9 @@ type TDate$1 = {
|
|
|
764
764
|
allowEmpty?: boolean;
|
|
765
765
|
setForceUpdate?: TState<boolean>;
|
|
766
766
|
showTimeInput?: boolean;
|
|
767
|
+
showTimeSelect?: boolean;
|
|
768
|
+
timeIntervals?: number;
|
|
769
|
+
timeFormat?: string;
|
|
767
770
|
minDate?: any;
|
|
768
771
|
"data-qa-id"?: string;
|
|
769
772
|
"data-tip"?: string;
|
|
@@ -788,6 +791,9 @@ type TDate = {
|
|
|
788
791
|
allowEmpty?: boolean;
|
|
789
792
|
setForceUpdate?: TState<boolean>;
|
|
790
793
|
showTimeInput?: boolean;
|
|
794
|
+
showTimeSelect?: boolean;
|
|
795
|
+
timeIntervals?: number;
|
|
796
|
+
timeFormat?: string;
|
|
791
797
|
placeholderText?: string;
|
|
792
798
|
portalId?: string;
|
|
793
799
|
isIcon?: boolean;
|