@henryx/onedot-ui 0.1.0 → 0.2.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 +8 -7
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,8 +4,8 @@ Vue 3 components and design tokens for the Onedot team.
|
|
|
4
4
|
|
|
5
5
|
## Documentation
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
See the team's deployed Storybook for the complete capability catalog and
|
|
8
|
+
interactive component examples.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
@@ -63,9 +63,11 @@ Storybook is served at `http://localhost:6006`.
|
|
|
63
63
|
|
|
64
64
|
Open [Capabilities](http://localhost:6006/?path=/story/capabilities--all) for the
|
|
65
65
|
complete catalog, existing Od stories and PrimeVue 4.5.5 (MIT) previews with Aura.
|
|
66
|
-
The catalog is generated from the user manual; PrimeVue
|
|
67
|
-
|
|
66
|
+
The catalog is generated from the user manual; PrimeVue is included as a pinned
|
|
67
|
+
runtime dependency but is not re-exported from the public Onedot UI entry point.
|
|
68
68
|
Basic form inputs use PrimeVue directly; this package does not export `OdForm` or `OdInput`.
|
|
69
|
+
PrimeVue `4.5.5` and Aura theme `1.2.5` are installed and versioned by this
|
|
70
|
+
package for the Onedot organization.
|
|
69
71
|
|
|
70
72
|
Before publishing, run the complete release check:
|
|
71
73
|
|
|
@@ -107,9 +109,8 @@ The full Tabler Vue catalog and raw SVG assets are shipped inside this package,
|
|
|
107
109
|
so moving the component library to another application does not require a
|
|
108
110
|
second icon dependency or a network request.
|
|
109
111
|
|
|
110
|
-
|
|
111
|
-
`corepack pnpm release:check
|
|
112
|
-
`npm publish --access public` from this directory.
|
|
112
|
+
The `0.2.0` release is prepared for npm publication. Maintainers should run
|
|
113
|
+
`corepack pnpm release:check` before publishing subsequent versions.
|
|
113
114
|
|
|
114
115
|
## License
|
|
115
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@henryx/onedot-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A focused Vue 3 component library for the Onedot team.",
|
|
6
6
|
"type": "module",
|
|
@@ -73,7 +73,9 @@
|
|
|
73
73
|
"release:check": "corepack pnpm typecheck && corepack pnpm test && corepack pnpm build && corepack pnpm build:storybook && corepack pnpm test:e2e:chrome && corepack pnpm test:visual && npm.cmd pack --dry-run && npm.cmd publish --dry-run --access public"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@
|
|
76
|
+
"@primeuix/themes": "1.2.5",
|
|
77
|
+
"@tanstack/vue-table": "9.2.4",
|
|
78
|
+
"primevue": "4.5.5"
|
|
77
79
|
},
|
|
78
80
|
"peerDependencies": {
|
|
79
81
|
"vue": "^3.4.0"
|
|
@@ -82,7 +84,6 @@
|
|
|
82
84
|
"@changesets/cli": "^2.29.7",
|
|
83
85
|
"@fontsource/inter": "^5.2.5",
|
|
84
86
|
"@playwright/test": "^1.51.1",
|
|
85
|
-
"@primeuix/themes": "1.2.5",
|
|
86
87
|
"@storybook/addon-a11y": "8.6.18",
|
|
87
88
|
"@storybook/addon-essentials": "8.6.18",
|
|
88
89
|
"@storybook/addon-interactions": "8.6.18",
|
|
@@ -93,7 +94,6 @@
|
|
|
93
94
|
"@vue/test-utils": "^2.4.6",
|
|
94
95
|
"jsdom": "^26.0.0",
|
|
95
96
|
"marked": "15.0.12",
|
|
96
|
-
"primevue": "4.5.5",
|
|
97
97
|
"storybook": "8.6.18",
|
|
98
98
|
"typescript": "^5.8.2",
|
|
99
99
|
"vite": "^6.3.5",
|