wimui 0.5.2 → 0.5.3
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/components/data-display/Card/card.module.cjs +1 -1
- package/dist/components/data-display/Card/card.module.js +15 -12
- package/dist/llms-full.txt +1 -1
- package/dist/llms.txt +1 -1
- package/dist/styles.css +1 -1
- package/dist/wimui.umd.css +1 -1
- package/dist/wimui.umd.js +1 -1
- package/package.json +13 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wimui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
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",
|
|
@@ -342,6 +342,7 @@
|
|
|
342
342
|
"smoke:full": "npm run build && node scripts/smoke/run.mjs --full",
|
|
343
343
|
"smoke:pnpm": "npm run build && node scripts/smoke/run.mjs --pm pnpm",
|
|
344
344
|
"smoke:treeshake": "npm run build && node scripts/smoke/run.mjs --treeshake",
|
|
345
|
+
"smoke:recipes": "npm run build && node scripts/smoke/run.mjs --recipes",
|
|
345
346
|
"smoke:nobuild": "node scripts/smoke/run.mjs",
|
|
346
347
|
"audit-mdx": "node scripts/audit-mdx.js",
|
|
347
348
|
"audit:all": "node scripts/audit-all.js",
|
|
@@ -357,6 +358,8 @@
|
|
|
357
358
|
"intents:build": "node scripts/generate-intents.js",
|
|
358
359
|
"check:intents": "node scripts/generate-intents.js --check",
|
|
359
360
|
"check:intents:scss": "node scripts/check-intents-scss.js",
|
|
361
|
+
"check:contrast": "node scripts/check-contrast.js",
|
|
362
|
+
"check:prop-classes": "node scripts/check-prop-classes.js",
|
|
360
363
|
"check:slop": "node scripts/check-slop.js",
|
|
361
364
|
"judge:slop": "node scripts/judge-slop.mjs",
|
|
362
365
|
"changeset": "changeset",
|
|
@@ -582,6 +585,15 @@
|
|
|
582
585
|
"tokens/intents.json": [
|
|
583
586
|
"node scripts/generate-intents.js",
|
|
584
587
|
"node scripts/stage-generated.js src/types/generated-intents.ts src/tokens/generated/_intents.scss --"
|
|
588
|
+
],
|
|
589
|
+
"tokens/**/*.json": [
|
|
590
|
+
"node scripts/check-contrast.js"
|
|
591
|
+
],
|
|
592
|
+
"src/styles/_token-common.scss": [
|
|
593
|
+
"node scripts/check-contrast.js"
|
|
594
|
+
],
|
|
595
|
+
"src/components/**/*.module.scss": [
|
|
596
|
+
"node scripts/check-prop-classes.js"
|
|
585
597
|
]
|
|
586
598
|
},
|
|
587
599
|
"dependencies": {
|