zudoku 0.82.0 → 0.82.1

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.
@@ -1 +1,2 @@
1
- export { domAnimation as default } from "motion/react";
1
+ import { domAnimation } from "motion/react";
2
+ export default domAnimation;
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.82.0",
3
+ "version": "0.82.1",
4
4
  "type": "module",
5
+ "engines": {
6
+ "node": ">=20.19.0 <21.0.0 || >=22.12.0"
7
+ },
5
8
  "sideEffects": [
6
9
  "**/*.css",
7
10
  "**/polyfills.ts"
@@ -234,7 +237,7 @@
234
237
  "glob-parent": "6.0.2",
235
238
  "graphql": "16.14.0",
236
239
  "graphql-type-json": "0.3.2",
237
- "graphql-yoga": "5.21.0",
240
+ "graphql-yoga": "5.21.2",
238
241
  "gray-matter": "4.0.3",
239
242
  "hast-util-heading-rank": "3.0.0",
240
243
  "hast-util-to-jsx-runtime": "2.3.6",
@@ -310,9 +313,10 @@
310
313
  "@types/semver": "7.7.1",
311
314
  "@types/unist": "3.0.3",
312
315
  "@types/yargs": "17.0.35",
316
+ "@typescript/native-preview": "7.0.0-dev.20260610.1",
313
317
  "@vitest/coverage-v8": "4.1.8",
314
318
  "happy-dom": "20.10.2",
315
- "oxc-parser": "^0.133.0",
319
+ "oxc-parser": "^0.135.0",
316
320
  "react": "19.2.7",
317
321
  "react-dom": "19.2.7",
318
322
  "tsx": "4.22.4",
@@ -347,7 +351,7 @@
347
351
  "scripts": {
348
352
  "build": "tsx scripts/build.ts",
349
353
  "postbuild": "tsx scripts/check-external-deps.ts",
350
- "typecheck": "tsc --project tsconfig.app.json --noEmit",
354
+ "typecheck": "tsgo --project tsconfig.app.json --noEmit",
351
355
  "generate:types": "tsx scripts/generate-types.js && tsx scripts/generate-flat-config.js",
352
356
  "generate:sri": "tsx scripts/generate-graphiql-sri.ts",
353
357
  "build:standalone": "vite build --mode standalone --config vite.standalone.config.ts --log-level=error",
@@ -1,2 +1,5 @@
1
- // Lazy-loaded animation features for LazyMotion (keeps the main bundle small).
2
- export { domAnimation as default } from "motion/react";
1
+ // Lazy load motion features
2
+ // See: https://motion.dev/docs/react-lazy-motion
3
+ import { domAnimation } from "motion/react";
4
+
5
+ export default domAnimation;
@@ -273,7 +273,7 @@ export const MdxPage = ({
273
273
  centered && "xl:mx-auto",
274
274
  )}
275
275
  >
276
- <header className="flow-root">
276
+ <header className="flow-root isolate">
277
277
  {showTocSidebar && (
278
278
  <>
279
279
  <Slot.Source name="top-navigation-side" type="append">
@@ -289,7 +289,7 @@ export const MdxPage = ({
289
289
  )}
290
290
  {(copyMarkdownConfig || showTocPopover) && (
291
291
  <div
292
- className="float-end ms-4 mt-1 flex items-center gap-2"
292
+ className="relative z-10 float-end ms-4 mt-1 flex items-center gap-2"
293
293
  role="group"
294
294
  aria-label="Page actions"
295
295
  >