@zvk/composite 0.1.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/CHANGELOG.md +17 -0
- package/LICENSE.md +3 -0
- package/README.md +12 -0
- package/dist/data/data-table-page-frame.d.ts +16 -0
- package/dist/data/data-table-page-frame.js +10 -0
- package/dist/forms/confirm-action-dialog.d.ts +17 -0
- package/dist/forms/confirm-action-dialog.js +21 -0
- package/dist/forms/form-surface.d.ts +11 -0
- package/dist/forms/form-surface.js +7 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +12 -0
- package/dist/layout/page-scaffold.d.ts +20 -0
- package/dist/layout/page-scaffold.js +19 -0
- package/dist/lists/entity-card.d.ts +17 -0
- package/dist/lists/entity-card.js +39 -0
- package/dist/lists/entity-list-section.d.ts +28 -0
- package/dist/lists/entity-list-section.js +8 -0
- package/dist/lists/settings-hub-list.d.ts +22 -0
- package/dist/lists/settings-hub-list.js +19 -0
- package/dist/lists/summary-metric-grid.d.ts +34 -0
- package/dist/lists/summary-metric-grid.js +9 -0
- package/dist/navigation/app-workspace-shell.d.ts +14 -0
- package/dist/navigation/app-workspace-shell.js +12 -0
- package/dist/navigation/sectioned-workspace-shell.d.ts +33 -0
- package/dist/navigation/sectioned-workspace-shell.js +36 -0
- package/dist/navigation/workspace-header.d.ts +25 -0
- package/dist/navigation/workspace-header.js +36 -0
- package/dist/state/state-surface.d.ts +21 -0
- package/dist/state/state-surface.js +25 -0
- package/dist/styles.css +1220 -0
- package/dist/utils/cn.d.ts +2 -0
- package/dist/utils/cn.js +4 -0
- package/package.json +118 -0
package/dist/utils/cn.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zvk/composite",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Drop-in composite React components built from @zvk/ui primitives for product workspaces.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/brandon-schabel/zvk.git"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": [
|
|
16
|
+
"**/*.css"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"CHANGELOG.md",
|
|
21
|
+
"LICENSE.md",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./styles.css": "./dist/styles.css",
|
|
31
|
+
"./app-workspace-shell": {
|
|
32
|
+
"types": "./dist/navigation/app-workspace-shell.d.ts",
|
|
33
|
+
"import": "./dist/navigation/app-workspace-shell.js"
|
|
34
|
+
},
|
|
35
|
+
"./sectioned-workspace-shell": {
|
|
36
|
+
"types": "./dist/navigation/sectioned-workspace-shell.d.ts",
|
|
37
|
+
"import": "./dist/navigation/sectioned-workspace-shell.js"
|
|
38
|
+
},
|
|
39
|
+
"./workspace-header": {
|
|
40
|
+
"types": "./dist/navigation/workspace-header.d.ts",
|
|
41
|
+
"import": "./dist/navigation/workspace-header.js"
|
|
42
|
+
},
|
|
43
|
+
"./breadcrumb-page-header": {
|
|
44
|
+
"types": "./dist/navigation/workspace-header.d.ts",
|
|
45
|
+
"import": "./dist/navigation/workspace-header.js"
|
|
46
|
+
},
|
|
47
|
+
"./page-scaffold": {
|
|
48
|
+
"types": "./dist/layout/page-scaffold.d.ts",
|
|
49
|
+
"import": "./dist/layout/page-scaffold.js"
|
|
50
|
+
},
|
|
51
|
+
"./state-surface": {
|
|
52
|
+
"types": "./dist/state/state-surface.d.ts",
|
|
53
|
+
"import": "./dist/state/state-surface.js"
|
|
54
|
+
},
|
|
55
|
+
"./entity-card": {
|
|
56
|
+
"types": "./dist/lists/entity-card.d.ts",
|
|
57
|
+
"import": "./dist/lists/entity-card.js"
|
|
58
|
+
},
|
|
59
|
+
"./entity-list-section": {
|
|
60
|
+
"types": "./dist/lists/entity-list-section.d.ts",
|
|
61
|
+
"import": "./dist/lists/entity-list-section.js"
|
|
62
|
+
},
|
|
63
|
+
"./summary-metric-grid": {
|
|
64
|
+
"types": "./dist/lists/summary-metric-grid.d.ts",
|
|
65
|
+
"import": "./dist/lists/summary-metric-grid.js"
|
|
66
|
+
},
|
|
67
|
+
"./settings-hub-list": {
|
|
68
|
+
"types": "./dist/lists/settings-hub-list.d.ts",
|
|
69
|
+
"import": "./dist/lists/settings-hub-list.js"
|
|
70
|
+
},
|
|
71
|
+
"./form-surface": {
|
|
72
|
+
"types": "./dist/forms/form-surface.d.ts",
|
|
73
|
+
"import": "./dist/forms/form-surface.js"
|
|
74
|
+
},
|
|
75
|
+
"./confirm-action-dialog": {
|
|
76
|
+
"types": "./dist/forms/confirm-action-dialog.d.ts",
|
|
77
|
+
"import": "./dist/forms/confirm-action-dialog.js"
|
|
78
|
+
},
|
|
79
|
+
"./data-table-page-frame": {
|
|
80
|
+
"types": "./dist/data/data-table-page-frame.d.ts",
|
|
81
|
+
"import": "./dist/data/data-table-page-frame.js"
|
|
82
|
+
},
|
|
83
|
+
"./package.json": "./package.json"
|
|
84
|
+
},
|
|
85
|
+
"scripts": {
|
|
86
|
+
"clean": "bun run scripts/clean.mjs",
|
|
87
|
+
"build:types": "tsc -p tsconfig.build.json",
|
|
88
|
+
"build:css": "bun run scripts/build-css.mjs",
|
|
89
|
+
"build": "bun run clean && bun run build:types && bun run build:css",
|
|
90
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
91
|
+
"test": "vitest run",
|
|
92
|
+
"test:ssr": "vitest run tests/ssr --environment node",
|
|
93
|
+
"test:exports": "vitest run tests/exports --environment node",
|
|
94
|
+
"test:types": "tsd",
|
|
95
|
+
"validate:exports": "bun run scripts/validate-exports.mjs",
|
|
96
|
+
"tarball:inspect": "bun run scripts/check-tarball.mjs",
|
|
97
|
+
"pack:dry": "bun pm pack --dry-run",
|
|
98
|
+
"preflight": "bun run typecheck && bun run build && bun run test:ssr && bun run test:types && bun run test:exports && bun run validate:exports && bun run tarball:inspect && bun run pack:dry"
|
|
99
|
+
},
|
|
100
|
+
"peerDependencies": {
|
|
101
|
+
"react": "^19.0.0",
|
|
102
|
+
"react-dom": "^19.0.0"
|
|
103
|
+
},
|
|
104
|
+
"dependencies": {
|
|
105
|
+
"@zvk/ui": "^0.1.8"
|
|
106
|
+
},
|
|
107
|
+
"tsd": {
|
|
108
|
+
"directory": "tests/types"
|
|
109
|
+
},
|
|
110
|
+
"devDependencies": {
|
|
111
|
+
"@types/node": "^25.9.1",
|
|
112
|
+
"@types/react": "^19.2.16",
|
|
113
|
+
"@types/react-dom": "^19.2.3",
|
|
114
|
+
"tsd": "^0.33.0",
|
|
115
|
+
"typescript": "^6.0.3",
|
|
116
|
+
"vitest": "^4.1.8"
|
|
117
|
+
}
|
|
118
|
+
}
|