forstok-ui-lib 8.10.1 → 8.10.4
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 +12 -8
- package/dist/index.js +74 -74
- 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 +107 -59
- package/src/components/date/ref.tsx +94 -63
- package/src/components/date/time.tsx +22 -0
package/dist/index.d.ts
CHANGED
|
@@ -764,10 +764,12 @@ type TDate$1 = {
|
|
|
764
764
|
allowEmpty?: boolean;
|
|
765
765
|
setForceUpdate?: TState<boolean>;
|
|
766
766
|
showTimeInput?: boolean;
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
767
|
+
minDate?: any;
|
|
768
|
+
minTime?: any;
|
|
769
|
+
"data-qa-id"?: string;
|
|
770
|
+
"data-tip"?: string;
|
|
771
|
+
"data-place"?: string;
|
|
772
|
+
"data-type"?: string;
|
|
771
773
|
};
|
|
772
774
|
declare const DateComponent: react.ForwardRefExoticComponent<TDate$1 & react.RefAttributes<unknown>>;
|
|
773
775
|
|
|
@@ -790,11 +792,13 @@ type TDate = {
|
|
|
790
792
|
placeholderText?: string;
|
|
791
793
|
portalId?: string;
|
|
792
794
|
isIcon?: boolean;
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
795
|
+
"data-qa-id"?: string;
|
|
796
|
+
"data-tip"?: string;
|
|
797
|
+
"data-place"?: string;
|
|
798
|
+
"data-type"?: string;
|
|
797
799
|
disabled?: boolean;
|
|
800
|
+
minDate?: any;
|
|
801
|
+
minTime?: any;
|
|
798
802
|
};
|
|
799
803
|
declare const DateRefComponent: react.ForwardRefExoticComponent<TDate & react.RefAttributes<unknown>>;
|
|
800
804
|
|