@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.
@@ -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
  */
@@ -34,6 +34,9 @@
34
34
  is-multi
35
35
  close-on-select="false"
36
36
  {{/if}}
37
+ {{#if isSearchable}}
38
+ is-searchable
39
+ {{/if}}
37
40
  id="{{key}}"
38
41
  label="{{label}}"
39
42
  {{#if helpText}}
@@ -93,6 +93,9 @@
93
93
  is-multi
94
94
  close-on-select="false"
95
95
  {{/if}}
96
+ {{#if isSearchable}}
97
+ is-searchable
98
+ {{/if}}
96
99
  id="{{key}}-settings"
97
100
  key="{{key}}"
98
101
  label="{{label}}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crowdin/app-project-module",
3
- "version": "0.22.1",
3
+ "version": "0.22.2",
4
4
  "description": "Module that generates for you all common endpoints for serving standalone Crowdin App",
5
5
  "main": "out/index.js",
6
6
  "types": "out/index.d.ts",