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 CHANGED
@@ -764,10 +764,12 @@ type TDate$1 = {
764
764
  allowEmpty?: boolean;
765
765
  setForceUpdate?: TState<boolean>;
766
766
  showTimeInput?: boolean;
767
- 'data-qa-id'?: string;
768
- 'data-tip'?: string;
769
- 'data-place'?: string;
770
- 'data-type'?: string;
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
- 'data-qa-id'?: string;
794
- 'data-tip'?: string;
795
- 'data-place'?: string;
796
- 'data-type'?: string;
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