@htmlbricks/hb-tooltip 0.62.6 → 0.62.7
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 +9 -9
- package/main.iife.js.map +1 -1
- package/manifest.json +13 -1
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +3 -0
- package/types/webcomponent.type.d.ts +1 -0
package/manifest.json
CHANGED
|
@@ -92,6 +92,9 @@
|
|
|
92
92
|
}
|
|
93
93
|
]
|
|
94
94
|
},
|
|
95
|
+
"description": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
95
98
|
"html": {
|
|
96
99
|
"type": "boolean"
|
|
97
100
|
},
|
|
@@ -262,6 +265,15 @@
|
|
|
262
265
|
"maxWidth": "200px"
|
|
263
266
|
}
|
|
264
267
|
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"name": "TitleAndDescription",
|
|
271
|
+
"data": {
|
|
272
|
+
"tooltip": {
|
|
273
|
+
"title": "Tooltip Title",
|
|
274
|
+
"description": "This is a description that appears below the title. It provides more context."
|
|
275
|
+
}
|
|
276
|
+
}
|
|
265
277
|
}
|
|
266
278
|
],
|
|
267
279
|
"screenshots": [],
|
|
@@ -282,5 +294,5 @@
|
|
|
282
294
|
"size": {},
|
|
283
295
|
"iifePath": "main.iife.js",
|
|
284
296
|
"repoName": "@htmlbricks/hb-tooltip",
|
|
285
|
-
"version": "0.62.
|
|
297
|
+
"version": "0.62.7"
|
|
286
298
|
}
|
package/package.json
CHANGED