ados-rcm 1.0.376 → 1.0.378

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.
@@ -3,6 +3,8 @@ import { TUseValues } from '../../AHooks/useValues';
3
3
  import { IABaseProps } from '../ABase/ABase';
4
4
  import { Resources } from '../AResource/AResource';
5
5
  import { EDir12, TActionRef } from '../ATypes/ATypes';
6
+ export declare const ADatePickerTypes: readonly ["Primary", "Secondary", "Raw"];
7
+ export type TADatePickerTypes = (typeof ADatePickerTypes)[number];
6
8
  export interface IADatePickerActions {
7
9
  /**
8
10
  * open : () => void
@@ -25,11 +27,11 @@ export interface IADatePickerActions {
25
27
  }
26
28
  export interface IADatePickerProps extends IABaseProps {
27
29
  /**
28
- * type? : 'Primary' | 'Secondary' | 'Raw' = 'Primary'
30
+ * type? : TADatePickerTypes = 'Primary'
29
31
  *
30
32
  * Description : type of ADatePicker
31
33
  */
32
- type?: 'Primary' | 'Secondary' | 'Raw';
34
+ type?: TADatePickerTypes;
33
35
  /**
34
36
  * className? : string
35
37
  *