@zag-js/popper 0.65.1 → 0.66.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/dist/index.d.mts CHANGED
@@ -69,7 +69,7 @@ interface PositioningOptions {
69
69
  /**
70
70
  * The overflow boundary of the reference element
71
71
  */
72
- boundary?: Boundary | (() => Boundary);
72
+ boundary?: () => Boundary;
73
73
  /**
74
74
  * Options to activate auto-update listeners
75
75
  */
package/dist/index.d.ts CHANGED
@@ -69,7 +69,7 @@ interface PositioningOptions {
69
69
  /**
70
70
  * The overflow boundary of the reference element
71
71
  */
72
- boundary?: Boundary | (() => Boundary);
72
+ boundary?: () => Boundary;
73
73
  /**
74
74
  * Options to activate auto-update listeners
75
75
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/popper",
3
- "version": "0.65.1",
3
+ "version": "0.66.0",
4
4
  "description": "Dynamic positioning logic for ui machines",
5
5
  "keywords": [
6
6
  "js",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@floating-ui/dom": "1.6.10",
27
- "@zag-js/dom-query": "0.65.1",
28
- "@zag-js/utils": "0.65.1"
27
+ "@zag-js/dom-query": "0.66.0",
28
+ "@zag-js/utils": "0.66.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "clean-package": "2.2.0"
package/src/types.ts CHANGED
@@ -70,7 +70,7 @@ export interface PositioningOptions {
70
70
  /**
71
71
  * The overflow boundary of the reference element
72
72
  */
73
- boundary?: Boundary | (() => Boundary)
73
+ boundary?: () => Boundary
74
74
  /**
75
75
  * Options to activate auto-update listeners
76
76
  */