@muraldevkit/ui-toolkit 4.67.0-dev-Vc0V.1 → 4.67.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "4.67.0-dev-Vc0V.1",
3
+ "version": "4.67.0",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -116,7 +116,6 @@
116
116
  "webpack-cli": "5.0.1"
117
117
  },
118
118
  "dependencies": {
119
- "@oddbird/css-anchor-positioning": "0.9.0",
120
119
  "@react-spring/web": "9.4.5",
121
120
  "@tanstack/react-virtual": "3.13.13",
122
121
  "classnames": "2.5.1",
@@ -1,19 +0,0 @@
1
- /**
2
- * CSS Anchor Positioning polyfill loader.
3
- *
4
- * The tooltip positions itself with native CSS Anchor Positioning. On browsers
5
- * that lack native support we lazy-load the Oddbird polyfill and run a
6
- * positioning pass. The dynamic import keeps the polyfill out of the bundle for
7
- * browsers that support anchor positioning natively.
8
- *
9
- * The polyfill implements Level 1 only, so it does not flip the arrow — matching
10
- * the progressive-enhancement decision for native browsers as well.
11
- */
12
- /**
13
- * Ensure anchored tooltips are positioned on browsers without native support.
14
- * No-op where anchor positioning is supported. Safe to call on every tooltip
15
- * open — the polyfill module is fetched once, then re-run to position the
16
- * newly-shown tooltip. Failures are swallowed so a polyfill hiccup never breaks
17
- * the trigger.
18
- */
19
- export declare const ensureAnchorPositioningPolyfill: () => Promise<void>;