@crowdin/app-project-module 0.22.1 → 0.22.2
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/out/models/index.d.ts
CHANGED
|
@@ -231,6 +231,10 @@ export interface ConfigurationField {
|
|
|
231
231
|
* only for select
|
|
232
232
|
*/
|
|
233
233
|
isMulti?: boolean;
|
|
234
|
+
/**
|
|
235
|
+
* only for select
|
|
236
|
+
*/
|
|
237
|
+
isSearchable?: boolean;
|
|
234
238
|
/**
|
|
235
239
|
* only for select
|
|
236
240
|
*/
|
|
@@ -363,6 +367,10 @@ export interface FormField {
|
|
|
363
367
|
* only for select
|
|
364
368
|
*/
|
|
365
369
|
isMulti?: boolean;
|
|
370
|
+
/**
|
|
371
|
+
* only for select
|
|
372
|
+
*/
|
|
373
|
+
isSearchable?: boolean;
|
|
366
374
|
/**
|
|
367
375
|
* only for select
|
|
368
376
|
*/
|
package/package.json
CHANGED