@hxdhxd/harmony-flow-ui 0.1.2 → 0.3.0

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/package.json CHANGED
@@ -1,116 +1,118 @@
1
- {
2
- "name": "@hxdhxd/harmony-flow-ui",
3
- "version": "0.1.2",
4
- "description": "A lightweight React component library with HarmonyOS-inspired visuals, accessible interactions, and runtime design tokens.",
5
- "license": "MIT",
6
- "private": false,
7
- "keywords": [
8
- "react",
9
- "components",
10
- "ui",
11
- "design-system",
12
- "typescript"
13
- ],
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/weathersun66/Front-UI.git"
17
- },
18
- "homepage": "https://github.com/weathersun66/Front-UI#readme",
19
- "bugs": {
20
- "url": "https://github.com/weathersun66/Front-UI/issues"
21
- },
22
- "type": "module",
23
- "main": "./dist/index.cjs",
24
- "module": "./dist/index.js",
25
- "types": "./dist/index.d.ts",
26
- "exports": {
27
- ".": {
28
- "types": "./dist/index.d.ts",
29
- "import": "./dist/index.js",
30
- "require": "./dist/index.cjs"
31
- },
32
- "./style.css": "./dist/index.css"
33
- },
34
- "files": [
35
- "dist"
36
- ],
37
- "sideEffects": [
38
- "**/*.css"
39
- ],
40
- "publishConfig": {
41
- "access": "public"
42
- },
43
- "engines": {
44
- "node": ">=18"
45
- },
46
- "scripts": {
47
- "build": "tsup",
48
- "build:demo": "node scripts/build-demo.mjs",
49
- "build:preview": "npm run build:demo && node scripts/build-preview-deploy.mjs",
50
- "check": "tsc --noEmit && node test/check-structure.mjs",
51
- "serve": "node scripts/server.mjs",
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",
66
- "test:form-upload": "python test/verify-form-upload.py",
67
- "test:visual:form-upload": "python test/visual-compare-form-upload.py",
68
- "test:overlay": "python test/verify-overlay-contract.py",
69
- "test:visual:overlay": "python test/visual-overlay-regression.py",
70
- "test:api": "node test/verify-public-api.mjs",
71
- "test:browser": "python test/verify-browser-quality.py",
72
- "test:completeness": "python test/verify-component-completeness.py",
73
- "test:completeness:stage1": "python test/verify-component-completeness.py --expected 85",
74
- "test:completeness:stage2": "python test/verify-component-completeness.py --expected 72",
75
- "test:completeness:stage3": "python test/verify-component-completeness.py --expected 55",
76
- "test:completeness:stage4": "python test/verify-component-completeness.py --expected 46",
77
- "test:completeness:stage5": "python test/verify-component-completeness.py --expected 39",
78
- "test:completeness:stage6": "python test/verify-component-completeness.py --expected 33",
79
- "test:completeness:stage7": "python test/verify-component-completeness.py --expected 28",
80
- "test:completeness:stage8": "python test/verify-component-completeness.py --expected 24",
81
- "test:completeness:stage9": "python test/verify-component-completeness.py --expected 20",
82
- "test:docs:general": "python test/verify-general-layout-docs.py",
83
- "test:docs:forms": "python test/verify-core-form-docs.py",
84
- "test:docs:advanced-forms": "python test/verify-advanced-form-docs.py",
85
- "test:visual:advanced-forms-evidence": "python test/verify-advanced-form-evidence.py",
86
- "test:docs:navigation": "python test/verify-navigation-docs.py",
87
- "test:docs:data-summary": "python test/verify-data-summary-docs.py",
88
- "test:visual:data-summary-evidence": "python test/verify-data-summary-evidence.py",
89
- "test:docs:developer-data": "python test/verify-developer-data-docs.py",
90
- "test:visual:developer-data-evidence": "python test/verify-developer-data-evidence.py",
91
- "test:docs:workflow-data": "python test/verify-workflow-data-docs.py",
92
- "test:visual:workflow-data-evidence": "python test/verify-workflow-data-evidence.py",
93
- "test:docs:run-audit": "python test/verify-run-audit-docs.py",
94
- "test:visual:run-audit-evidence": "python test/verify-run-audit-evidence.py",
95
- "test:docs:resource-governance": "python test/verify-resource-governance-docs.py",
96
- "test:visual:resource-governance-evidence": "python test/verify-resource-governance-evidence.py",
97
- "test:docs:26082501": "python test/verify-batch-26082501.py",
98
- "test:quality": "node test/run-quality.mjs",
99
- "test:package": "node scripts/verify-package.mjs",
100
- "prepack": "npm run check && npm run build && npm run test:api && npm run test:package",
101
- "prepublishOnly": "npm run test:quality"
102
- },
103
- "peerDependencies": {
104
- "react": ">=18",
105
- "react-dom": ">=18"
106
- },
107
- "devDependencies": {
108
- "@types/react": "^19.1.10",
109
- "@types/react-dom": "^19.1.7",
110
- "esbuild": "^0.25.9",
111
- "react": "^19.1.1",
112
- "react-dom": "^19.1.1",
113
- "tsup": "^8.5.0",
114
- "typescript": "^5.9.2"
115
- }
116
- }
1
+ {
2
+ "name": "@hxdhxd/harmony-flow-ui",
3
+ "version": "0.3.0",
4
+ "description": "A lightweight React component library with HarmonyOS-inspired visuals, accessible interactions, and runtime design tokens.",
5
+ "license": "MIT",
6
+ "private": false,
7
+ "keywords": [
8
+ "react",
9
+ "components",
10
+ "ui",
11
+ "design-system",
12
+ "typescript"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/weathersun66/Front-UI.git"
17
+ },
18
+ "homepage": "https://github.com/weathersun66/Front-UI#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/weathersun66/Front-UI/issues"
21
+ },
22
+ "type": "module",
23
+ "main": "./dist/index.cjs",
24
+ "module": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js",
30
+ "require": "./dist/index.cjs"
31
+ },
32
+ "./style.css": "./dist/index.css"
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "sideEffects": [
38
+ "**/*.css"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "engines": {
44
+ "node": ">=18"
45
+ },
46
+ "scripts": {
47
+ "build": "tsup",
48
+ "build:demo": "node scripts/build-demo.mjs",
49
+ "build:preview": "npm run build:demo && node scripts/build-preview-deploy.mjs",
50
+ "check": "tsc --noEmit && node test/check-structure.mjs",
51
+ "serve": "node scripts/server.mjs",
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",
66
+ "test:form-upload": "python test/verify-form-upload.py",
67
+ "test:visual:form-upload": "python test/visual-compare-form-upload.py",
68
+ "test:overlay": "python test/verify-overlay-contract.py",
69
+ "test:visual:overlay": "python test/visual-overlay-regression.py",
70
+ "test:api": "node test/verify-public-api.mjs",
71
+ "test:browser": "python test/verify-browser-quality.py",
72
+ "test:completeness": "python test/verify-component-completeness.py",
73
+ "test:completeness:stage1": "python test/verify-component-completeness.py --expected 85",
74
+ "test:completeness:stage2": "python test/verify-component-completeness.py --expected 72",
75
+ "test:completeness:stage3": "python test/verify-component-completeness.py --expected 55",
76
+ "test:completeness:stage4": "python test/verify-component-completeness.py --expected 46",
77
+ "test:completeness:stage5": "python test/verify-component-completeness.py --expected 39",
78
+ "test:completeness:stage6": "python test/verify-component-completeness.py --expected 33",
79
+ "test:completeness:stage7": "python test/verify-component-completeness.py --expected 28",
80
+ "test:completeness:stage8": "python test/verify-component-completeness.py --expected 24",
81
+ "test:completeness:stage9": "python test/verify-component-completeness.py --expected 20",
82
+ "test:docs:general": "python test/verify-general-layout-docs.py",
83
+ "test:docs:forms": "python test/verify-core-form-docs.py",
84
+ "test:docs:advanced-forms": "python test/verify-advanced-form-docs.py",
85
+ "test:visual:advanced-forms-evidence": "python test/verify-advanced-form-evidence.py",
86
+ "test:docs:navigation": "python test/verify-navigation-docs.py",
87
+ "test:docs:data-summary": "python test/verify-data-summary-docs.py",
88
+ "test:visual:data-summary-evidence": "python test/verify-data-summary-evidence.py",
89
+ "test:docs:developer-data": "python test/verify-developer-data-docs.py",
90
+ "test:visual:developer-data-evidence": "python test/verify-developer-data-evidence.py",
91
+ "test:docs:workflow-data": "python test/verify-workflow-data-docs.py",
92
+ "test:visual:workflow-data-evidence": "python test/verify-workflow-data-evidence.py",
93
+ "test:docs:run-audit": "python test/verify-run-audit-docs.py",
94
+ "test:visual:run-audit-evidence": "python test/verify-run-audit-evidence.py",
95
+ "test:docs:resource-governance": "python test/verify-resource-governance-docs.py",
96
+ "test:visual:resource-governance-evidence": "python test/verify-resource-governance-evidence.py",
97
+ "test:docs:26082501": "python test/verify-batch-26082501.py",
98
+ "test:quality": "node test/run-quality.mjs",
99
+ "test:package": "node scripts/verify-package.mjs",
100
+ "prepack": "npm run check && npm run build && npm run test:api && npm run test:package",
101
+ "prepublishOnly": "npm run test:quality",
102
+ "build:workspace": "node scripts/build-workspace.mjs",
103
+ "test:workspace": "python test/workspace/verify-browser.py"
104
+ },
105
+ "peerDependencies": {
106
+ "react": ">=18",
107
+ "react-dom": ">=18"
108
+ },
109
+ "devDependencies": {
110
+ "@types/react": "^19.1.10",
111
+ "@types/react-dom": "^19.1.7",
112
+ "esbuild": "^0.25.9",
113
+ "react": "^19.1.1",
114
+ "react-dom": "^19.1.1",
115
+ "tsup": "^8.5.0",
116
+ "typescript": "^5.9.2"
117
+ }
118
+ }