@htmlbricks/hb-searchbar 0.65.20 → 0.65.23
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/main.iife.js +13 -8
- package/main.iife.js.map +1 -1
- package/manifest.json +44 -4
- package/package.json +2 -2
- package/types/webcomponent.type.d.json +8 -0
- package/types/webcomponent.type.d.ts +1 -0
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
|
}
|
|
@@ -167,7 +175,7 @@
|
|
|
167
175
|
}
|
|
168
176
|
}
|
|
169
177
|
},
|
|
170
|
-
"description": "",
|
|
178
|
+
"description": "Search field with optional dropdown `searchlist` (id, text, icons, badges, tags, URLs). Configure `value`, `initial_value`, `searchlabel`, `textarea`, `minlength`, `disable_preview`, and CSS parts for the input and menu. Dispatches `search` and `clear`.",
|
|
171
179
|
"storybookArgs": {
|
|
172
180
|
"initial_value": {
|
|
173
181
|
"control": {
|
|
@@ -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": {
|
|
@@ -712,12 +751,13 @@
|
|
|
712
751
|
],
|
|
713
752
|
"readmePath": "README.md",
|
|
714
753
|
"name": "hb-searchbar",
|
|
715
|
-
"category": "
|
|
754
|
+
"category": "utilities",
|
|
716
755
|
"tags": [
|
|
717
|
-
"
|
|
756
|
+
"utilities",
|
|
757
|
+
"search"
|
|
718
758
|
],
|
|
719
759
|
"size": {},
|
|
720
760
|
"iifePath": "main.iife.js",
|
|
721
761
|
"repoName": "@htmlbricks/hb-searchbar",
|
|
722
|
-
"version": "0.65.
|
|
762
|
+
"version": "0.65.23"
|
|
723
763
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-searchbar",
|
|
3
|
-
"version": "0.65.
|
|
3
|
+
"version": "0.65.23",
|
|
4
4
|
"contributors": [],
|
|
5
|
-
"description": "",
|
|
5
|
+
"description": "Search field with optional dropdown `searchlist` (id, text, icons, badges, tags, URLs). Configure `value`, `initial_value`, `searchlabel`, `textarea`, `minlength`, `disable_preview`, and CSS parts for the input and menu. Dispatches `search` and `clear`.",
|
|
6
6
|
"licenses": [
|
|
7
7
|
{
|
|
8
8
|
"type": "Apache-2.0",
|