@htmlbricks/hb-searchbar 0.60.9 → 0.60.10
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 +3 -3
- package/main.iife.js.map +1 -1
- package/manifest.json +21 -1
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +11 -0
- package/types/webcomponent.type.d.ts +1 -0
package/manifest.json
CHANGED
|
@@ -43,6 +43,17 @@
|
|
|
43
43
|
"Component": {
|
|
44
44
|
"additionalProperties": false,
|
|
45
45
|
"properties": {
|
|
46
|
+
"disable_preview": {
|
|
47
|
+
"enum": [
|
|
48
|
+
"yes",
|
|
49
|
+
"no",
|
|
50
|
+
"true",
|
|
51
|
+
"false",
|
|
52
|
+
"on",
|
|
53
|
+
"off"
|
|
54
|
+
],
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
46
57
|
"id": {
|
|
47
58
|
"type": "string"
|
|
48
59
|
},
|
|
@@ -133,6 +144,15 @@
|
|
|
133
144
|
},
|
|
134
145
|
"description": "",
|
|
135
146
|
"storybookArgs": {
|
|
147
|
+
"disable_preview": {
|
|
148
|
+
"control": {
|
|
149
|
+
"type": "select"
|
|
150
|
+
},
|
|
151
|
+
"options": [
|
|
152
|
+
"yes",
|
|
153
|
+
"no"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
136
156
|
"minlength": {
|
|
137
157
|
"control": {
|
|
138
158
|
"type": "number"
|
|
@@ -621,5 +641,5 @@
|
|
|
621
641
|
"size": {},
|
|
622
642
|
"iifePath": "main.iife.js",
|
|
623
643
|
"repoName": "@htmlbricks/hb-searchbar",
|
|
624
|
-
"version": "0.60.
|
|
644
|
+
"version": "0.60.10"
|
|
625
645
|
}
|
package/package.json
CHANGED