@tenerife.music/ui 1.2.0 → 2.0.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 +39 -2
- package/dist/Link-ZWr5iFB0.d.cts +60 -0
- package/dist/Link-ZWr5iFB0.d.ts +60 -0
- package/dist/extensions/next/index.cjs +406 -0
- package/dist/extensions/next/index.d.cts +37 -0
- package/dist/extensions/next/index.d.ts +37 -0
- package/dist/extensions/next/index.mjs +381 -0
- package/dist/{index-DXmHg8ji.d.cts → index-DGtRM9Db.d.cts} +193 -901
- package/dist/{index-DXmHg8ji.d.ts → index-DGtRM9Db.d.ts} +193 -901
- package/dist/index.cjs +3376 -2793
- package/dist/index.d.cts +1670 -722
- package/dist/index.d.ts +1670 -722
- package/dist/index.mjs +3336 -2765
- package/dist/preset.cjs +129 -321
- package/dist/preset.mjs +129 -321
- package/dist/styles.css +417 -101
- package/dist/theme/index.cjs +20 -230
- package/dist/theme/index.mjs +20 -230
- package/dist/tokens/index.cjs +502 -593
- package/dist/tokens/index.d.cts +165 -2
- package/dist/tokens/index.d.ts +165 -2
- package/dist/tokens/index.mjs +490 -577
- package/package.json +24 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tenerife.music/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"packageManager": "pnpm@10.26.0",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"module": "dist/index.mjs",
|
|
35
35
|
"types": "dist/index.d.ts",
|
|
36
36
|
"files": [
|
|
37
|
-
"dist"
|
|
37
|
+
"dist",
|
|
38
|
+
"README.md"
|
|
38
39
|
],
|
|
39
40
|
"publishConfig": {
|
|
40
41
|
"access": "public"
|
|
@@ -53,18 +54,19 @@
|
|
|
53
54
|
"test:ui": "vitest --ui",
|
|
54
55
|
"test:coverage": "vitest run --coverage",
|
|
55
56
|
"test:a11y": "vitest run a11y.test",
|
|
57
|
+
"test:focus": "playwright test --config=playwright/playwright.config.ts",
|
|
56
58
|
"a11y:contrast": "tsx scripts/a11y-contrast-check.js",
|
|
57
59
|
"typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.vite.json",
|
|
58
|
-
"lint": "eslint . --ext .ts,.tsx --fix --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**'",
|
|
60
|
+
"lint": "eslint . --ext .ts,.tsx --fix --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**' --ignore-pattern 'docs_archive/**'",
|
|
59
61
|
"lint:fix": "./scripts/lint-local.sh",
|
|
60
|
-
"lint:check": "eslint . --ext .ts,.tsx --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**'",
|
|
61
|
-
"lint:strict": "eslint . --ext .ts,.tsx --max-warnings=0 --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**'",
|
|
62
|
+
"lint:check": "eslint . --ext .ts,.tsx --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**' --ignore-pattern 'docs_archive/**'",
|
|
63
|
+
"lint:strict": "eslint . --ext .ts,.tsx --max-warnings=0 --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**' --ignore-pattern 'docs_archive/**'",
|
|
62
64
|
"lint:ci": "./scripts/lint-ci.sh",
|
|
63
65
|
"lint:rules": "eslint --config eslint-rules/eslint.config.mjs eslint-rules",
|
|
64
66
|
"format": "prettier . --write",
|
|
65
67
|
"format:check": "prettier . --check",
|
|
66
|
-
"validate": "pnpm typecheck && pnpm lint:check && pnpm format:check",
|
|
67
|
-
"ci": "pnpm typecheck && pnpm lint:strict && pnpm format:check && pnpm build && pnpm test",
|
|
68
|
+
"validate": "pnpm typecheck && pnpm lint:check && pnpm format:check && pnpm check:motion-v1",
|
|
69
|
+
"ci": "pnpm typecheck && pnpm lint:strict && pnpm format:check && pnpm check:motion-v1 && pnpm build && pnpm test",
|
|
68
70
|
"ci:full": "pnpm run ci && pnpm test:coverage && pnpm ci:a11y",
|
|
69
71
|
"ci:a11y": "pnpm test:a11y && pnpm a11y:contrast",
|
|
70
72
|
"ci:local": "./scripts/ci-local.sh",
|
|
@@ -78,6 +80,11 @@
|
|
|
78
80
|
"ui:check": "tsx scripts/check-ui-consistency.ts",
|
|
79
81
|
"safelist:generate": "tsx scripts/generateTailwindSafelist.ts",
|
|
80
82
|
"verify:interaction-authority": "node scripts/verify-interaction-authority.mjs",
|
|
83
|
+
"governance:review": "node scripts/governance-review.mjs",
|
|
84
|
+
"check:motion-v1": "node scripts/check-motion-v1.mjs",
|
|
85
|
+
"component:generate": "tsx scripts/generate-extension-component.ts",
|
|
86
|
+
"component:analyze": "tsx scripts/analyze-component-needs.ts",
|
|
87
|
+
"feedback:collect": "tsx scripts/collect-usage-feedback.ts",
|
|
81
88
|
"docs:dev": "cd docs-app && npm run docs:dev",
|
|
82
89
|
"docs:build": "cd docs-app && npm run docs:build",
|
|
83
90
|
"docs:start": "cd docs-app && npm run docs:start",
|
|
@@ -88,12 +95,14 @@
|
|
|
88
95
|
"prepare": "husky"
|
|
89
96
|
},
|
|
90
97
|
"peerDependencies": {
|
|
98
|
+
"next": "^13.0.0 || ^14.0.0 || ^15.0.0",
|
|
91
99
|
"react": "^18 || ^19",
|
|
92
100
|
"react-dom": "^18 || ^19"
|
|
93
101
|
},
|
|
94
102
|
"dependencies": {
|
|
95
103
|
"@hookform/resolvers": "^3.0.0",
|
|
96
104
|
"@radix-ui/react-accordion": "^1.2.1",
|
|
105
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
97
106
|
"@radix-ui/react-avatar": "^1.1.0",
|
|
98
107
|
"@radix-ui/react-checkbox": "^1.1.2",
|
|
99
108
|
"@radix-ui/react-collapsible": "^1.1.1",
|
|
@@ -108,6 +117,7 @@
|
|
|
108
117
|
"@radix-ui/react-radio-group": "^1.2.1",
|
|
109
118
|
"@radix-ui/react-select": "^2.1.2",
|
|
110
119
|
"@radix-ui/react-separator": "^1.1.0",
|
|
120
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
111
121
|
"@radix-ui/react-slot": "^1.2.4",
|
|
112
122
|
"@radix-ui/react-switch": "^1.1.1",
|
|
113
123
|
"@radix-ui/react-tabs": "^1.1.1",
|
|
@@ -128,6 +138,7 @@
|
|
|
128
138
|
"@commitlint/config-conventional": "^20.0.0",
|
|
129
139
|
"@eslint/eslintrc": "^3.3.1",
|
|
130
140
|
"@floating-ui/react-dom": "^2.1.0",
|
|
141
|
+
"@playwright/test": "^1.57.0",
|
|
131
142
|
"@semantic-release/changelog": "^6.0.3",
|
|
132
143
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
133
144
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -140,7 +151,6 @@
|
|
|
140
151
|
"@storybook/addon-onboarding": "^10.1.10",
|
|
141
152
|
"@storybook/react": "^10.1.10",
|
|
142
153
|
"@storybook/react-vite": "^10.1.10",
|
|
143
|
-
"@storybook/test": "^8.6.14",
|
|
144
154
|
"@storybook/test-runner": "^0.24.2",
|
|
145
155
|
"@testing-library/jest-dom": "^6.0.0",
|
|
146
156
|
"@testing-library/react": "^16.0.0",
|
|
@@ -167,6 +177,7 @@
|
|
|
167
177
|
"husky": "^9.1.7",
|
|
168
178
|
"jsdom": "^27.3.0",
|
|
169
179
|
"lint-staged": "^15.5.2",
|
|
180
|
+
"next": "^15.1.0",
|
|
170
181
|
"postcss": "^8.0.0",
|
|
171
182
|
"prettier": "^3.6.2",
|
|
172
183
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
@@ -203,6 +214,11 @@
|
|
|
203
214
|
"types": "./dist/theme/index.d.ts",
|
|
204
215
|
"import": "./dist/theme/index.mjs",
|
|
205
216
|
"require": "./dist/theme/index.cjs"
|
|
217
|
+
},
|
|
218
|
+
"./extensions/next": {
|
|
219
|
+
"types": "./dist/extensions/next/index.d.ts",
|
|
220
|
+
"import": "./dist/extensions/next/index.mjs",
|
|
221
|
+
"require": "./dist/extensions/next/index.cjs"
|
|
206
222
|
}
|
|
207
223
|
}
|
|
208
224
|
}
|