@hxdhxd/harmony-flow-ui 0.1.0 → 0.1.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.
- package/README.md +33 -5
- package/dist/index.cjs +322 -294
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +347 -183
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +321 -293
- package/dist/index.js.map +1 -1
- package/package.json +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hxdhxd/harmony-flow-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A lightweight React component library with HarmonyOS-inspired visuals, accessible interactions, and runtime design tokens.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -46,9 +46,23 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "tsup",
|
|
48
48
|
"build:demo": "node scripts/build-demo.mjs",
|
|
49
|
+
"build:preview": "npm run build:demo && node scripts/build-preview-deploy.mjs",
|
|
49
50
|
"check": "tsc --noEmit && node test/check-structure.mjs",
|
|
50
51
|
"serve": "node scripts/server.mjs",
|
|
51
52
|
"test:visual": "python test/visual-regression.py",
|
|
53
|
+
"test:visual:foundation-contract": "python test/verify-foundation-visual-contract.py",
|
|
54
|
+
"test:visual:overlay-contract-v2": "python test/verify-overlay-visual-contract.py",
|
|
55
|
+
"test:docs:workbench-contract": "python test/verify-doc-workbench-contract.py",
|
|
56
|
+
"test:visual:workbench": "python test/verify-doc-workbench.py",
|
|
57
|
+
"test:visual:experience-contract": "python test/verify-experience-surface-contract.py",
|
|
58
|
+
"test:visual:experience": "python test/verify-experience-visual.py",
|
|
59
|
+
"test:visual:product-density-contract": "python test/verify-product-density-contract.py",
|
|
60
|
+
"test:visual:product-density": "python test/verify-product-density-visual.py",
|
|
61
|
+
"test:ui-quality-gate": "node test/verify-ui-quality-gate.mjs",
|
|
62
|
+
"test:ui-quality-gate:self-test": "node test/verify-ui-quality-gate.mjs --self-test",
|
|
63
|
+
"test:visual:doc-tokens": "python test/verify-doc-token-visual.py",
|
|
64
|
+
"test:visual:doc-radius": "python test/verify-doc-radius-visual.py",
|
|
65
|
+
"test:theme-contract": "node test/verify-harmony7-theme-contract.mjs",
|
|
52
66
|
"test:form-upload": "python test/verify-form-upload.py",
|
|
53
67
|
"test:visual:form-upload": "python test/visual-compare-form-upload.py",
|
|
54
68
|
"test:overlay": "python test/verify-overlay-contract.py",
|