@elara-services/packages 5.2.0 → 5.3.0
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/index.d.ts +3 -1
- package/package.json +1 -1
- package/packages/Interactions.js +1 -0
package/index.d.ts
CHANGED
@@ -164,6 +164,7 @@ declare module "@elara-services/packages" {
|
|
164
164
|
min_values: number;
|
165
165
|
max_values: number;
|
166
166
|
type: number;
|
167
|
+
disabled: boolean;
|
167
168
|
options: {
|
168
169
|
label: string;
|
169
170
|
value: string;
|
@@ -180,7 +181,8 @@ declare module "@elara-services/packages" {
|
|
180
181
|
min?: Select['min_values'];
|
181
182
|
max?: Select['max_values'];
|
182
183
|
type?: Select['type'];
|
183
|
-
options: Select['options']
|
184
|
+
options: Select['options'];
|
185
|
+
disabled?: Select['disabled'];
|
184
186
|
}
|
185
187
|
|
186
188
|
export type Modal = {
|
package/package.json
CHANGED
package/packages/Interactions.js
CHANGED