ingred-ui 33.4.1 → 33.5.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.
@@ -0,0 +1,6 @@
1
+ import type { Ref, RefObject } from "react";
2
+ /**
3
+ * React 19 の useRef / createRef が返す RefObject<T | null> を、
4
+ * LegacyRef<T> を期待するコンポーネントへ渡すための互換ヘルパー。
5
+ */
6
+ export declare function asComponentRef<T>(ref: RefObject<T | null>): Ref<T>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ingred-ui",
3
- "version": "33.4.1",
3
+ "version": "33.5.1",
4
4
  "description": "",
5
5
  "author": "CARTA HOLDINGS, Inc.",
6
6
  "license": "MIT",
@@ -43,6 +43,7 @@
43
43
  "@babel/preset-typescript": "^7.21.4",
44
44
  "@changesets/changelog-github": "^0.4.8",
45
45
  "@changesets/cli": "^2.29.6",
46
+ "@playwright/test": "^1.60.0",
46
47
  "@rollup/plugin-commonjs": "25.0.0",
47
48
  "@rollup/plugin-node-resolve": "15.2.1",
48
49
  "@rollup/plugin-terser": "1.0.0",
@@ -66,6 +67,7 @@
66
67
  "@vitejs/plugin-react": "^6.0.1",
67
68
  "@vitest/browser-playwright": "^4.1.8",
68
69
  "@vitest/coverage-v8": "^4.1.8",
70
+ "chaosbringer": "^0.9.0",
69
71
  "cross-env": "7.0.3",
70
72
  "eslint": "8.57.1",
71
73
  "eslint-config-prettier": "9.1.0",
@@ -107,6 +109,7 @@
107
109
  "build-storybook": "storybook build",
108
110
  "lint:a11y": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs",
109
111
  "lint:a11y:update": "pnpm run build-storybook && node scripts/a11y/lint-storybook.mjs --update-baseline",
112
+ "chaos": "pnpm run build-storybook && node scripts/chaos/run.mjs",
110
113
  "lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
111
114
  "format": "prettier --write 'src/**/*.{ts,tsx}'",
112
115
  "generate": "pnpm exec scaffdog generate",