@htmlbricks/hb-searchbar 0.60.35 → 0.60.37
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 +4 -4
- package/main.iife.js.map +1 -1
- package/manifest.json +21 -4
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +6 -0
- package/types/webcomponent.type.d.ts +2 -0
package/manifest.json
CHANGED
|
@@ -74,8 +74,14 @@
|
|
|
74
74
|
},
|
|
75
75
|
"style": {
|
|
76
76
|
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"value": {
|
|
79
|
+
"type": "string"
|
|
77
80
|
}
|
|
78
81
|
},
|
|
82
|
+
"required": [
|
|
83
|
+
"value"
|
|
84
|
+
],
|
|
79
85
|
"type": "object"
|
|
80
86
|
},
|
|
81
87
|
"TSearchListItem": {
|
|
@@ -150,6 +156,11 @@
|
|
|
150
156
|
},
|
|
151
157
|
"description": "",
|
|
152
158
|
"storybookArgs": {
|
|
159
|
+
"initial_value": {
|
|
160
|
+
"control": {
|
|
161
|
+
"type": "text"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
153
164
|
"disable_preview": {
|
|
154
165
|
"control": {
|
|
155
166
|
"type": "select"
|
|
@@ -174,7 +185,7 @@
|
|
|
174
185
|
"type": "text"
|
|
175
186
|
}
|
|
176
187
|
},
|
|
177
|
-
"
|
|
188
|
+
"value": {
|
|
178
189
|
"control": {
|
|
179
190
|
"type": "object"
|
|
180
191
|
}
|
|
@@ -202,11 +213,14 @@
|
|
|
202
213
|
"examples": [
|
|
203
214
|
{
|
|
204
215
|
"name": "default",
|
|
205
|
-
"data": {
|
|
216
|
+
"data": {
|
|
217
|
+
"value": ""
|
|
218
|
+
}
|
|
206
219
|
},
|
|
207
220
|
{
|
|
208
221
|
"name": "withSearchlist",
|
|
209
222
|
"data": {
|
|
223
|
+
"value": "",
|
|
210
224
|
"searchlabel": "RESearch",
|
|
211
225
|
"searchlist": [
|
|
212
226
|
{
|
|
@@ -333,13 +347,15 @@
|
|
|
333
347
|
"text": "man",
|
|
334
348
|
"number_of_results": 200000000
|
|
335
349
|
}
|
|
336
|
-
]
|
|
350
|
+
],
|
|
351
|
+
"value": "ciao"
|
|
337
352
|
}
|
|
338
353
|
},
|
|
339
354
|
{
|
|
340
355
|
"name": "withRichItems",
|
|
341
356
|
"description": "Example with icons, badges, tags, and URLs",
|
|
342
357
|
"data": {
|
|
358
|
+
"value": "ciao",
|
|
343
359
|
"searchlabel": "Search with rich items",
|
|
344
360
|
"searchlist": [
|
|
345
361
|
{
|
|
@@ -439,6 +455,7 @@
|
|
|
439
455
|
"name": "withPartialProperties",
|
|
440
456
|
"description": "Example with different partial properties and various key-value combinations",
|
|
441
457
|
"data": {
|
|
458
|
+
"value": "",
|
|
442
459
|
"searchlabel": "Search with mixed properties",
|
|
443
460
|
"searchlist": [
|
|
444
461
|
{
|
|
@@ -686,5 +703,5 @@
|
|
|
686
703
|
"size": {},
|
|
687
704
|
"iifePath": "main.iife.js",
|
|
688
705
|
"repoName": "@htmlbricks/hb-searchbar",
|
|
689
|
-
"version": "0.60.
|
|
706
|
+
"version": "0.60.37"
|
|
690
707
|
}
|
package/package.json
CHANGED