@tenerife.music/ui 1.2.1 → 2.0.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/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 +8170 -4531
- package/dist/index.d.cts +2219 -673
- package/dist/index.d.ts +2219 -673
- package/dist/index.mjs +7860 -4246
- package/dist/preset.cjs +129 -321
- package/dist/preset.mjs +129 -321
- package/dist/styles.css +939 -93
- package/dist/theme/index.cjs +20 -230
- package/dist/theme/index.mjs +20 -230
- package/dist/tokens/index.cjs +501 -593
- package/dist/tokens/index.d.cts +165 -2
- package/dist/tokens/index.d.ts +165 -2
- package/dist/tokens/index.mjs +489 -577
- package/package.json +22 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tenerife.music/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"packageManager": "pnpm@10.26.0",
|
|
6
6
|
"type": "module",
|
|
@@ -54,18 +54,19 @@
|
|
|
54
54
|
"test:ui": "vitest --ui",
|
|
55
55
|
"test:coverage": "vitest run --coverage",
|
|
56
56
|
"test:a11y": "vitest run a11y.test",
|
|
57
|
+
"test:focus": "playwright test --config=playwright/playwright.config.ts",
|
|
57
58
|
"a11y:contrast": "tsx scripts/a11y-contrast-check.js",
|
|
58
59
|
"typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.vite.json",
|
|
59
|
-
"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/**'",
|
|
60
61
|
"lint:fix": "./scripts/lint-local.sh",
|
|
61
|
-
"lint:check": "eslint . --ext .ts,.tsx --ignore-pattern '**/*.stories.*' --ignore-pattern '.storybook/**' --ignore-pattern 'storybook-static/**' --ignore-pattern 'docs/**' --ignore-pattern '.cursor/**'",
|
|
62
|
-
"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/**'",
|
|
63
64
|
"lint:ci": "./scripts/lint-ci.sh",
|
|
64
65
|
"lint:rules": "eslint --config eslint-rules/eslint.config.mjs eslint-rules",
|
|
65
66
|
"format": "prettier . --write",
|
|
66
67
|
"format:check": "prettier . --check",
|
|
67
|
-
"validate": "pnpm typecheck && pnpm lint:check && pnpm format:check",
|
|
68
|
-
"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",
|
|
69
70
|
"ci:full": "pnpm run ci && pnpm test:coverage && pnpm ci:a11y",
|
|
70
71
|
"ci:a11y": "pnpm test:a11y && pnpm a11y:contrast",
|
|
71
72
|
"ci:local": "./scripts/ci-local.sh",
|
|
@@ -79,6 +80,11 @@
|
|
|
79
80
|
"ui:check": "tsx scripts/check-ui-consistency.ts",
|
|
80
81
|
"safelist:generate": "tsx scripts/generateTailwindSafelist.ts",
|
|
81
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",
|
|
82
88
|
"docs:dev": "cd docs-app && npm run docs:dev",
|
|
83
89
|
"docs:build": "cd docs-app && npm run docs:build",
|
|
84
90
|
"docs:start": "cd docs-app && npm run docs:start",
|
|
@@ -89,12 +95,14 @@
|
|
|
89
95
|
"prepare": "husky"
|
|
90
96
|
},
|
|
91
97
|
"peerDependencies": {
|
|
98
|
+
"next": "^13.0.0 || ^14.0.0 || ^15.0.0",
|
|
92
99
|
"react": "^18 || ^19",
|
|
93
100
|
"react-dom": "^18 || ^19"
|
|
94
101
|
},
|
|
95
102
|
"dependencies": {
|
|
96
103
|
"@hookform/resolvers": "^3.0.0",
|
|
97
104
|
"@radix-ui/react-accordion": "^1.2.1",
|
|
105
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
98
106
|
"@radix-ui/react-avatar": "^1.1.0",
|
|
99
107
|
"@radix-ui/react-checkbox": "^1.1.2",
|
|
100
108
|
"@radix-ui/react-collapsible": "^1.1.1",
|
|
@@ -109,6 +117,7 @@
|
|
|
109
117
|
"@radix-ui/react-radio-group": "^1.2.1",
|
|
110
118
|
"@radix-ui/react-select": "^2.1.2",
|
|
111
119
|
"@radix-ui/react-separator": "^1.1.0",
|
|
120
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
112
121
|
"@radix-ui/react-slot": "^1.2.4",
|
|
113
122
|
"@radix-ui/react-switch": "^1.1.1",
|
|
114
123
|
"@radix-ui/react-tabs": "^1.1.1",
|
|
@@ -129,6 +138,7 @@
|
|
|
129
138
|
"@commitlint/config-conventional": "^20.0.0",
|
|
130
139
|
"@eslint/eslintrc": "^3.3.1",
|
|
131
140
|
"@floating-ui/react-dom": "^2.1.0",
|
|
141
|
+
"@playwright/test": "^1.57.0",
|
|
132
142
|
"@semantic-release/changelog": "^6.0.3",
|
|
133
143
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
134
144
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -141,7 +151,6 @@
|
|
|
141
151
|
"@storybook/addon-onboarding": "^10.1.10",
|
|
142
152
|
"@storybook/react": "^10.1.10",
|
|
143
153
|
"@storybook/react-vite": "^10.1.10",
|
|
144
|
-
"@storybook/test": "^8.6.14",
|
|
145
154
|
"@storybook/test-runner": "^0.24.2",
|
|
146
155
|
"@testing-library/jest-dom": "^6.0.0",
|
|
147
156
|
"@testing-library/react": "^16.0.0",
|
|
@@ -168,6 +177,7 @@
|
|
|
168
177
|
"husky": "^9.1.7",
|
|
169
178
|
"jsdom": "^27.3.0",
|
|
170
179
|
"lint-staged": "^15.5.2",
|
|
180
|
+
"next": "^15.1.0",
|
|
171
181
|
"postcss": "^8.0.0",
|
|
172
182
|
"prettier": "^3.6.2",
|
|
173
183
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
@@ -204,6 +214,11 @@
|
|
|
204
214
|
"types": "./dist/theme/index.d.ts",
|
|
205
215
|
"import": "./dist/theme/index.mjs",
|
|
206
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"
|
|
207
222
|
}
|
|
208
223
|
}
|
|
209
224
|
}
|