ados-rcm 1.0.355 → 1.0.356

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.
@@ -35,7 +35,7 @@ export interface IAMultiSelectProps<T> extends IABaseProps {
35
35
  *
36
36
  * Description : options of AMultiSelect
37
37
  */
38
- options: T[];
38
+ options: T[] | readonly T[];
39
39
  /**
40
40
  * useSelect? : TUseValues<T[]>
41
41
  *
@@ -35,7 +35,7 @@ export interface IASelectProps<T> extends IABaseProps {
35
35
  *
36
36
  * Description : options of ASelect. CAREFUL null is not rendered as an option.
37
37
  */
38
- options: T[];
38
+ options: readonly T[] | T[];
39
39
  /**
40
40
  * useSelect? : TUseValues<T>
41
41
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ados-rcm",
3
- "version": "1.0.355",
3
+ "version": "1.0.356",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",