ados-rcm 1.0.393 → 1.0.394

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.
@@ -29,6 +29,8 @@ interface ISelectedRendererProps<T> {
29
29
  */
30
30
  placeholder?: React.ReactNode;
31
31
  }
32
+ export declare const ASelectTypes: readonly ["Primary", "Secondary"];
33
+ export type TASelectTypes = 'Primary' | 'Secondary';
32
34
  export interface IASelectProps<T> extends IABaseProps {
33
35
  /**
34
36
  * options : T[]
@@ -43,11 +45,11 @@ export interface IASelectProps<T> extends IABaseProps {
43
45
  */
44
46
  useSelect?: TUseValues<T>;
45
47
  /**
46
- * type? : 'Primary' | 'Secondary' = 'Primary'
48
+ * type? : TASelectTypes = 'Primary'
47
49
  *
48
50
  * Description : type of ASelect
49
51
  */
50
- type?: 'Primary' | 'Secondary';
52
+ type?: TASelectTypes;
51
53
  /**
52
54
  * placeholder? : React.ReactNode
53
55
  *