@htmlbricks/hb-tooltip 0.62.5 → 0.62.6
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 +2 -0
- package/main.iife.js.map +1 -1
- package/manifest.json +16 -1
- 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
|
@@ -95,6 +95,12 @@
|
|
|
95
95
|
"html": {
|
|
96
96
|
"type": "boolean"
|
|
97
97
|
},
|
|
98
|
+
"maxHeight": {
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
"maxWidth": {
|
|
102
|
+
"type": "string"
|
|
103
|
+
},
|
|
98
104
|
"offset": {
|
|
99
105
|
"anyOf": [
|
|
100
106
|
{
|
|
@@ -247,6 +253,15 @@
|
|
|
247
253
|
}
|
|
248
254
|
}
|
|
249
255
|
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "LongTextWithMaxWidth",
|
|
259
|
+
"data": {
|
|
260
|
+
"tooltip": {
|
|
261
|
+
"title": "This is a very long tooltip text that should wrap because of the max-width property set on the tooltip configuration. It demonstrates how to control the width of the tooltip.",
|
|
262
|
+
"maxWidth": "200px"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
250
265
|
}
|
|
251
266
|
],
|
|
252
267
|
"screenshots": [],
|
|
@@ -267,5 +282,5 @@
|
|
|
267
282
|
"size": {},
|
|
268
283
|
"iifePath": "main.iife.js",
|
|
269
284
|
"repoName": "@htmlbricks/hb-tooltip",
|
|
270
|
-
"version": "0.62.
|
|
285
|
+
"version": "0.62.6"
|
|
271
286
|
}
|
package/package.json
CHANGED