@haiilo/catalyst 10.0.3 → 10.0.4
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/dist/catalyst/catalyst.esm.js +1 -1
- package/dist/catalyst/{p-db5bf9af.entry.js → p-3bea93aa.entry.js} +2 -2
- package/dist/catalyst/{p-db5bf9af.entry.js.map → p-3bea93aa.entry.js.map} +1 -1
- package/dist/cjs/cat-alert_26.cjs.entry.js +5 -1
- package/dist/cjs/cat-alert_26.cjs.entry.js.map +1 -1
- package/dist/collection/components/cat-tooltip/cat-tooltip.js +5 -1
- package/dist/collection/components/cat-tooltip/cat-tooltip.js.map +1 -1
- package/dist/components/cat-tooltip.js +5 -1
- package/dist/components/cat-tooltip.js.map +1 -1
- package/dist/esm/cat-alert_26.entry.js +5 -1
- package/dist/esm/cat-alert_26.entry.js.map +1 -1
- package/package.json +2 -2
|
@@ -10639,7 +10639,11 @@ const CatTooltip = class {
|
|
|
10639
10639
|
await computePosition(this.trigger, this.tooltip, {
|
|
10640
10640
|
strategy: 'fixed',
|
|
10641
10641
|
placement: this.placement,
|
|
10642
|
-
middleware: [
|
|
10642
|
+
middleware: [
|
|
10643
|
+
offset(CatTooltip.OFFSET),
|
|
10644
|
+
flip({ fallbackAxisSideDirection: 'start' }),
|
|
10645
|
+
shift({ padding: CatTooltip.SHIFT_PADDING })
|
|
10646
|
+
]
|
|
10643
10647
|
}).then(({ x, y }) => {
|
|
10644
10648
|
if (this.tooltip) {
|
|
10645
10649
|
Object.assign(this.tooltip.style, {
|