@htmlbricks/hb-searchbar 0.65.20 → 0.65.22

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/manifest.json CHANGED
@@ -88,6 +88,14 @@
88
88
  "style": {
89
89
  "type": "string"
90
90
  },
91
+ "textarea": {
92
+ "enum": [
93
+ "yes",
94
+ "true",
95
+ ""
96
+ ],
97
+ "type": "string"
98
+ },
91
99
  "value": {
92
100
  "type": "string"
93
101
  }
@@ -203,6 +211,15 @@
203
211
  "type": "object"
204
212
  }
205
213
  },
214
+ "textarea": {
215
+ "control": {
216
+ "type": "select"
217
+ },
218
+ "options": [
219
+ "yes",
220
+ "no"
221
+ ]
222
+ },
206
223
  "search": {
207
224
  "action": "search"
208
225
  },
@@ -254,6 +271,28 @@
254
271
  ]
255
272
  }
256
273
  },
274
+ {
275
+ "name": "withSearchlistTextarea",
276
+ "data": {
277
+ "value": "",
278
+ "searchlabel": "RESearch",
279
+ "textarea": "yes",
280
+ "searchlist": [
281
+ {
282
+ "id": "1",
283
+ "text": "looking"
284
+ },
285
+ {
286
+ "id": "2",
287
+ "text": "good"
288
+ },
289
+ {
290
+ "id": "3",
291
+ "text": "woman"
292
+ }
293
+ ]
294
+ }
295
+ },
257
296
  {
258
297
  "name": "with20items",
259
298
  "data": {
@@ -719,5 +758,5 @@
719
758
  "size": {},
720
759
  "iifePath": "main.iife.js",
721
760
  "repoName": "@htmlbricks/hb-searchbar",
722
- "version": "0.65.20"
761
+ "version": "0.65.22"
723
762
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-searchbar",
3
- "version": "0.65.20",
3
+ "version": "0.65.22",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [
@@ -37,6 +37,14 @@
37
37
  "style": {
38
38
  "type": "string"
39
39
  },
40
+ "textarea": {
41
+ "enum": [
42
+ "yes",
43
+ "true",
44
+ ""
45
+ ],
46
+ "type": "string"
47
+ },
40
48
  "value": {
41
49
  "type": "string"
42
50
  }
@@ -20,6 +20,7 @@ export type Component = {
20
20
  minlength?: number;
21
21
  searchlist?: TSearchListItem[];
22
22
  input_info?: TSearchListItem
23
+ textarea?: "yes" | "true" | ""
23
24
  };
24
25
 
25
26
  export type Events = {