ados-rcm 1.0.395 → 1.0.397

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.
@@ -84,12 +84,6 @@ export interface IAMultiSelectProps<T> extends IABaseProps {
84
84
  * Description : maxShowRows of AMultiSelect. scrollbar will appear when overflow
85
85
  */
86
86
  maxShowRows?: number;
87
- /**
88
- * height? : number
89
- *
90
- * Description : height of AMultiSelect
91
- */
92
- height?: number;
93
87
  /**
94
88
  * arrowProps? : React.HTMLProps<HTMLDivElement>
95
89
  *
@@ -30,7 +30,7 @@ interface ISelectedRendererProps<T> {
30
30
  placeholder?: React.ReactNode;
31
31
  }
32
32
  export declare const ASelectTypes: readonly ["Primary", "Secondary"];
33
- export type TASelectTypes = 'Primary' | 'Secondary';
33
+ export type TASelectTypes = (typeof ASelectTypes)[number];
34
34
  export interface IASelectProps<T> extends IABaseProps {
35
35
  /**
36
36
  * options : T[]
@@ -86,12 +86,6 @@ export interface IASelectProps<T> extends IABaseProps {
86
86
  * Description : maxShowRows of ASelect. scrollbar will appear when overflow
87
87
  */
88
88
  maxShowRows?: number;
89
- /**
90
- * height? : number
91
- *
92
- * Description : height of ASelect
93
- */
94
- height?: number;
95
89
  /**
96
90
  * arrowProps? : React.HTMLProps<HTMLDivElement>
97
91
  *