@arkcit/react-ui 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/README.md +59 -0
- package/dist/ApiDocLayout-6hYQvst0.d.ts +19 -0
- package/dist/ComponentGuidelines-h1MjGBuJ.d.ts +1293 -0
- package/dist/FileUploadField-DLwEPn_A.d.ts +32 -0
- package/dist/contracts.d.ts +10 -0
- package/dist/contracts.js +36 -0
- package/dist/form-fields-9C7CmVGn.d.ts +88 -0
- package/dist/form-fields.d.ts +5 -0
- package/dist/form-fields.js +2113 -0
- package/dist/index.d.ts +36 -0
- package/dist/index.js +16112 -0
- package/dist/orchestrator-contracts.d.ts +1 -0
- package/dist/orchestrator-contracts.js +0 -0
- package/dist/orchestrator-registry.d.ts +25 -0
- package/dist/orchestrator-registry.js +9405 -0
- package/dist/orchestrator.d.ts +29 -0
- package/dist/orchestrator.js +9602 -0
- package/dist/registry.d.ts +30 -0
- package/dist/registry.js +15786 -0
- package/dist/ui-contracts.d.ts +123 -0
- package/dist/ui-contracts.js +36 -0
- package/dist/ui-registry.d.ts +127 -0
- package/dist/ui-registry.js +15611 -0
- package/dist/ui.d.ts +119 -0
- package/dist/ui.js +9618 -0
- package/package.json +121 -0
package/package.json
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@arkcit/react-ui",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "React UI library and orchestrator companion surfaces for the Arkcit platform.",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"arkcit",
|
|
9
|
+
"ui",
|
|
10
|
+
"react",
|
|
11
|
+
"orchestrator",
|
|
12
|
+
"components"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/Arkcit/react-ui.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/Arkcit/react-ui",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/Arkcit/react-ui/issues"
|
|
21
|
+
},
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"main": "./dist/index.js",
|
|
24
|
+
"module": "./dist/index.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"files": [
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"import": "./dist/index.js",
|
|
36
|
+
"default": "./dist/index.js"
|
|
37
|
+
},
|
|
38
|
+
"./ui": {
|
|
39
|
+
"types": "./dist/ui.d.ts",
|
|
40
|
+
"import": "./dist/ui.js",
|
|
41
|
+
"default": "./dist/ui.js"
|
|
42
|
+
},
|
|
43
|
+
"./registry": {
|
|
44
|
+
"types": "./dist/registry.d.ts",
|
|
45
|
+
"import": "./dist/registry.js",
|
|
46
|
+
"default": "./dist/registry.js"
|
|
47
|
+
},
|
|
48
|
+
"./ui-registry": {
|
|
49
|
+
"types": "./dist/ui-registry.d.ts",
|
|
50
|
+
"import": "./dist/ui-registry.js",
|
|
51
|
+
"default": "./dist/ui-registry.js"
|
|
52
|
+
},
|
|
53
|
+
"./orchestrator-registry": {
|
|
54
|
+
"types": "./dist/orchestrator-registry.d.ts",
|
|
55
|
+
"import": "./dist/orchestrator-registry.js",
|
|
56
|
+
"default": "./dist/orchestrator-registry.js"
|
|
57
|
+
},
|
|
58
|
+
"./contracts": {
|
|
59
|
+
"types": "./dist/contracts.d.ts",
|
|
60
|
+
"import": "./dist/contracts.js",
|
|
61
|
+
"default": "./dist/contracts.js"
|
|
62
|
+
},
|
|
63
|
+
"./ui-contracts": {
|
|
64
|
+
"types": "./dist/ui-contracts.d.ts",
|
|
65
|
+
"import": "./dist/ui-contracts.js",
|
|
66
|
+
"default": "./dist/ui-contracts.js"
|
|
67
|
+
},
|
|
68
|
+
"./orchestrator-contracts": {
|
|
69
|
+
"types": "./dist/orchestrator-contracts.d.ts",
|
|
70
|
+
"import": "./dist/orchestrator-contracts.js",
|
|
71
|
+
"default": "./dist/orchestrator-contracts.js"
|
|
72
|
+
},
|
|
73
|
+
"./form-fields": {
|
|
74
|
+
"types": "./dist/form-fields.d.ts",
|
|
75
|
+
"import": "./dist/form-fields.js",
|
|
76
|
+
"default": "./dist/form-fields.js"
|
|
77
|
+
},
|
|
78
|
+
"./orchestrator": {
|
|
79
|
+
"types": "./dist/orchestrator.d.ts",
|
|
80
|
+
"import": "./dist/orchestrator.js",
|
|
81
|
+
"default": "./dist/orchestrator.js"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=20.0.0"
|
|
86
|
+
},
|
|
87
|
+
"scripts": {
|
|
88
|
+
"build": "tsup --config tsup.config.ts",
|
|
89
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
90
|
+
"test:smoke": "node tests/run-all.mjs",
|
|
91
|
+
"test:src": "vitest run src/helpers/forms/__tests__/helpers.test.ts src/components/registry/examplesRegistry.test.tsx src/components/shared/patterns/layout/Cover/Cover.test.tsx",
|
|
92
|
+
"test:unit": "npm run test:src",
|
|
93
|
+
"test": "npm run test:smoke && npm run test:src"
|
|
94
|
+
},
|
|
95
|
+
"peerDependencies": {
|
|
96
|
+
"@arkcit/engine": "^0.3.0",
|
|
97
|
+
"react": "^19.1.0",
|
|
98
|
+
"react-dom": "^19.1.0"
|
|
99
|
+
},
|
|
100
|
+
"peerDependenciesMeta": {
|
|
101
|
+
"@arkcit/engine": {
|
|
102
|
+
"optional": true
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"dependencies": {
|
|
106
|
+
"lucide-react": "^0.561.0"
|
|
107
|
+
},
|
|
108
|
+
"devDependencies": {
|
|
109
|
+
"@arkcit/engine": "^0.3.0",
|
|
110
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
111
|
+
"@testing-library/react": "^16.3.2",
|
|
112
|
+
"@types/node": "^24.10.1",
|
|
113
|
+
"@types/react": "^19.2.5",
|
|
114
|
+
"@types/react-dom": "^19.2.3",
|
|
115
|
+
"jsdom": "^28.1.0",
|
|
116
|
+
"tsup": "^8.5.1",
|
|
117
|
+
"tsx": "^4.21.0",
|
|
118
|
+
"typescript": "~5.9.3",
|
|
119
|
+
"vitest": "^4.1.0"
|
|
120
|
+
}
|
|
121
|
+
}
|