@ark-ui/react 5.39.1 → 5.39.2

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.
@@ -23,7 +23,7 @@ var TourBackdrop = (0, react.forwardRef)((props, ref) => {
23
23
  children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_factory.ark.div, {
24
24
  ...mergedProps,
25
25
  ref: composedRefs,
26
- hidden: !tour.step?.backdrop
26
+ hidden: mergedProps.hidden || !tour.step?.backdrop
27
27
  })
28
28
  });
29
29
  });
@@ -23,7 +23,7 @@ var TourBackdrop = forwardRef((props, ref) => {
23
23
  children: /* @__PURE__ */ jsx(ark.div, {
24
24
  ...mergedProps,
25
25
  ref: composedRefs,
26
- hidden: !tour.step?.backdrop
26
+ hidden: mergedProps.hidden || !tour.step?.backdrop
27
27
  })
28
28
  });
29
29
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ark-ui/react",
3
3
  "type": "module",
4
- "version": "5.39.1",
4
+ "version": "5.39.2",
5
5
  "description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
6
6
  "keywords": [
7
7
  "accordion",
@@ -111,6 +111,26 @@
111
111
  "default": "./dist/providers/locale/index.cjs"
112
112
  }
113
113
  },
114
+ "./hotkeys": {
115
+ "import": {
116
+ "types": "./dist/providers/hotkeys/index.d.ts",
117
+ "default": "./dist/providers/hotkeys/index.js"
118
+ },
119
+ "require": {
120
+ "types": "./dist/providers/hotkeys/index.d.cts",
121
+ "default": "./dist/providers/hotkeys/index.cjs"
122
+ }
123
+ },
124
+ "./interaction": {
125
+ "import": {
126
+ "types": "./dist/providers/interaction/index.d.ts",
127
+ "default": "./dist/providers/interaction/index.js"
128
+ },
129
+ "require": {
130
+ "types": "./dist/providers/interaction/index.d.cts",
131
+ "default": "./dist/providers/interaction/index.cjs"
132
+ }
133
+ },
114
134
  "./utils": {
115
135
  "import": {
116
136
  "types": "./dist/utils/index.d.ts",
@@ -150,7 +170,7 @@
150
170
  },
151
171
  "sideEffects": false,
152
172
  "dependencies": {
153
- "@internationalized/date": "3.12.3",
173
+ "@internationalized/date": "3.12.4",
154
174
  "@zag-js/accordion": "1.43.3",
155
175
  "@zag-js/anatomy": "1.43.3",
156
176
  "@zag-js/angle-slider": "1.43.3",
@@ -221,36 +241,36 @@
221
241
  "@zag-js/utils": "1.43.3"
222
242
  },
223
243
  "devDependencies": {
224
- "@biomejs/biome": "2.5.10",
225
- "@storybook/addon-a11y": "10.5.10",
226
- "@storybook/react-vite": "10.5.10",
244
+ "@biomejs/biome": "2.5.12",
245
+ "@storybook/addon-a11y": "10.6.0",
246
+ "@storybook/react-vite": "10.6.0",
227
247
  "@tanstack/react-virtual": "3.14.10",
228
248
  "@testing-library/dom": "10.4.1",
229
249
  "@testing-library/jest-dom": "7.0.1",
230
- "@testing-library/react": "16.3.2",
231
- "@testing-library/user-event": "14.6.6",
250
+ "@testing-library/react": "16.3.3",
251
+ "@testing-library/user-event": "14.6.7",
232
252
  "@types/jsdom": "30.0.0",
233
253
  "@types/react": "19.2.18",
234
- "@types/react-dom": "19.2.5",
235
- "@vitejs/plugin-react": "6.1.0",
254
+ "@types/react-dom": "19.2.7",
255
+ "@vitejs/plugin-react": "6.1.1",
236
256
  "@vitest/coverage-v8": "4.1.11",
237
257
  "check-password-strength": "3.0.0",
238
258
  "clean-package": "2.2.0",
239
259
  "globby": "16.2.4",
240
- "happy-dom": "20.11.6",
260
+ "happy-dom": "20.14.0",
241
261
  "image-conversion": "2.1.1",
242
- "lucide-react": "1.33.0",
262
+ "lucide-react": "1.41.0",
243
263
  "react": "19.2.8",
244
264
  "react-dom": "19.2.8",
245
265
  "react-frame-component": "5.3.2",
246
- "react-hook-form": "7.86.0",
266
+ "react-hook-form": "7.87.0",
247
267
  "react-shadow": "20.6.0",
248
268
  "react-use": "17.6.1",
249
269
  "resize-observer-polyfill": "1.5.1",
250
- "storybook": "10.5.10",
270
+ "storybook": "10.6.0",
251
271
  "typescript": "6.0.3",
252
272
  "vite": "8.2.2",
253
- "vite-plugin-dts": "5.0.3",
273
+ "vite-plugin-dts": "5.1.0",
254
274
  "vitest": "4.1.11",
255
275
  "vitest-axe": "1.0.0-pre.5"
256
276
  },