wimui 0.22.0 → 0.23.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.
- package/dist/ai-core.d.ts +1 -0
- package/dist/ai.cjs +1 -1
- package/dist/ai.js +2 -1
- package/dist/components/ai/ArtifactsOverlay/ArtifactsOverlay.cjs +2 -0
- package/dist/components/ai/ArtifactsOverlay/ArtifactsOverlay.js +65 -0
- package/dist/components/ai/ArtifactsOverlay/artifacts-overlay.module.cjs +2 -0
- package/dist/components/ai/ArtifactsOverlay/artifacts-overlay.module.js +15 -0
- package/dist/components/ai/CodeDiffViewer/code-diff-viewer.module.cjs +1 -1
- package/dist/components/ai/CodeDiffViewer/code-diff-viewer.module.js +2 -2
- package/dist/components/ai/InteractiveGraph/interactive-graph.module.cjs +1 -1
- package/dist/components/ai/InteractiveGraph/interactive-graph.module.js +1 -1
- package/dist/components/data-display/Badge/badge.module.cjs +1 -1
- package/dist/components/data-display/Badge/badge.module.js +1 -1
- package/dist/components/data-display/NodeGraph/node-graph.module.cjs +1 -1
- package/dist/components/data-display/NodeGraph/node-graph.module.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +8 -7
- package/dist/llms-full.txt +1 -1
- package/dist/llms.txt +1 -1
- package/dist/styles.css +2 -2
- package/dist/wimui.umd.css +1 -1
- package/dist/wimui.umd.js +2 -2
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wimui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "React component library with design tokens, dark mode, i18n (en/ja/pt-BR), and WAI-ARIA compliant accessibility. 200+ components documented in Storybook.",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -334,6 +334,7 @@
|
|
|
334
334
|
"check:links": "node scripts/check-mdx-links.js",
|
|
335
335
|
"check:aschild": "node scripts/check-aschild.js && vitest run scripts/check-aschild-render.test.tsx",
|
|
336
336
|
"check:api": "node scripts/check-public-api.js",
|
|
337
|
+
"check:exports": "node scripts/check-documented-exports.js",
|
|
337
338
|
"check:api:update": "node scripts/check-public-api.js --update",
|
|
338
339
|
"check:prop-api": "node scripts/check-prop-api.js",
|
|
339
340
|
"check:prop-api:update": "node scripts/check-prop-api.js --update",
|
|
@@ -371,6 +372,7 @@
|
|
|
371
372
|
"check:icons:mirror": "node scripts/check-icon-mirrors.js",
|
|
372
373
|
"check:shrinkable": "node scripts/check-shrinkable-roots.js",
|
|
373
374
|
"check:story-tokens": "node scripts/check-story-tokens.js",
|
|
375
|
+
"check:graph-edge": "node scripts/check-graph-edge-contrast.js",
|
|
374
376
|
"check:contrast": "node scripts/check-contrast.js",
|
|
375
377
|
"check:subtle-tokens": "node scripts/check-subtle-tokens.js",
|
|
376
378
|
"check:contrast:scss": "node scripts/check-contrast-scss.js",
|
|
@@ -390,6 +392,7 @@
|
|
|
390
392
|
"check:improvements": "node scripts/check-improvements-status.js",
|
|
391
393
|
"check:choice-matrix": "node scripts/check-choice-matrix.js",
|
|
392
394
|
"check:chart-palette": "node scripts/check-chart-palette.js",
|
|
395
|
+
"check:field-roots": "node scripts/check-field-roots.js",
|
|
393
396
|
"check:chart-palette:update": "node scripts/check-chart-palette.js --update",
|
|
394
397
|
"check:intent-text": "node scripts/check-intent-text-color.js",
|
|
395
398
|
"audit:src-i18n": "node scripts/check-src-hardcoded.js",
|
|
@@ -601,7 +604,8 @@
|
|
|
601
604
|
"node scripts/check-mono-family.js",
|
|
602
605
|
"node scripts/check-intent-text-color.js",
|
|
603
606
|
"node scripts/check-contrast-scss.js",
|
|
604
|
-
"node scripts/check-shrinkable-roots.js"
|
|
607
|
+
"node scripts/check-shrinkable-roots.js",
|
|
608
|
+
"node scripts/check-field-roots.js"
|
|
605
609
|
],
|
|
606
610
|
"**/*.mdx": [
|
|
607
611
|
"node --max-old-space-size=4096 ./node_modules/eslint/bin/eslint.js --fix --max-warnings=0 --cache",
|