@phcdevworks/spectre-components 1.8.0 → 1.9.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 +10 -1
- package/package.json +18 -17
package/README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @phcdevworks/spectre-components
|
|
2
2
|
|
|
3
|
+
`@phcdevworks/spectre-components` is the Lit-based component layer of the
|
|
4
|
+
Spectre system. It implements Spectre's design contracts as reusable,
|
|
5
|
+
accessible, framework-agnostic web components.
|
|
6
|
+
|
|
7
|
+
Maintained by [PHCDevworks](https://go.phcdev.co). It draws on Spectre's
|
|
8
|
+
token and styling contracts to ship drop-in UI primitives, so applications
|
|
9
|
+
that need working components — rather than raw CSS or recipes to assemble
|
|
10
|
+
themselves — can consume Spectre without a framework-specific adapter.
|
|
11
|
+
|
|
3
12
|
## Repository Snapshot
|
|
4
13
|
|
|
5
14
|
| Field | Value |
|
|
@@ -7,7 +16,7 @@
|
|
|
7
16
|
| Project team | `project-design` |
|
|
8
17
|
| Repository role | Spectre L3a Lit web component layer |
|
|
9
18
|
| Package/artifact | `@phcdevworks/spectre-components` |
|
|
10
|
-
| Current version/status | 1.
|
|
19
|
+
| Current version/status | 1.9.0 |
|
|
11
20
|
|
|
12
21
|
## Standard Workflow
|
|
13
22
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phcdevworks/spectre-components",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "@phcdevworks/spectre-components is the Lit-based component layer of the Spectre system
|
|
3
|
+
"version": "1.9.0",
|
|
4
|
+
"description": "@phcdevworks/spectre-components is the Lit-based component layer of the Spectre system. It implements Spectre's design contracts as reusable, accessible, framework-agnostic web components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"phcdevworks",
|
|
7
7
|
"spectre",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"node": "^22.13.0 || >=24.0.0"
|
|
34
34
|
},
|
|
35
35
|
"type": "module",
|
|
36
|
-
"packageManager": "npm@
|
|
36
|
+
"packageManager": "npm@12.0.1",
|
|
37
37
|
"main": "./dist/index.cjs",
|
|
38
38
|
"module": "./dist/index.js",
|
|
39
39
|
"types": "./dist/index.d.ts",
|
|
@@ -219,31 +219,32 @@
|
|
|
219
219
|
"access": "public"
|
|
220
220
|
},
|
|
221
221
|
"peerDependencies": {
|
|
222
|
-
"typescript": "^5.
|
|
222
|
+
"typescript": "^5.0 || ^6.0 || ^7.0"
|
|
223
223
|
},
|
|
224
224
|
"dependencies": {
|
|
225
|
-
"@phcdevworks/spectre-tokens": "^3.
|
|
226
|
-
"@phcdevworks/spectre-ui": "^2.
|
|
225
|
+
"@phcdevworks/spectre-tokens": "^3.5.0",
|
|
226
|
+
"@phcdevworks/spectre-ui": "^2.10.0",
|
|
227
227
|
"lit": "^3.3.3"
|
|
228
228
|
},
|
|
229
229
|
"devDependencies": {
|
|
230
230
|
"@eslint/js": "^10.0.1",
|
|
231
|
-
"@phcdevworks/spectre-manifest": "^1.
|
|
231
|
+
"@phcdevworks/spectre-manifest": "^1.1.0",
|
|
232
232
|
"@playwright/test": "^1.61.1",
|
|
233
|
-
"@types/node": "^26.1.
|
|
234
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
235
|
-
"@typescript-eslint/parser": "^8.
|
|
233
|
+
"@types/node": "^26.1.1",
|
|
234
|
+
"@typescript-eslint/eslint-plugin": "^8.65.0",
|
|
235
|
+
"@typescript-eslint/parser": "^8.65.0",
|
|
236
|
+
"@typescript/native": "npm:typescript@^7.0.2",
|
|
236
237
|
"axe-core": "^4.12.1",
|
|
237
|
-
"eslint": "^10.
|
|
238
|
+
"eslint": "^10.7.0",
|
|
238
239
|
"globals": "^17.7.0",
|
|
239
|
-
"happy-dom": "^20.
|
|
240
|
+
"happy-dom": "^20.11.0",
|
|
240
241
|
"jiti": "^2.7.0",
|
|
241
|
-
"prettier": "^3.9.
|
|
242
|
-
"tailwindcss": "^4.3.
|
|
242
|
+
"prettier": "^3.9.5",
|
|
243
|
+
"tailwindcss": "^4.3.3",
|
|
243
244
|
"tsup": "^8.5.1",
|
|
244
|
-
"typescript": "
|
|
245
|
-
"typescript-eslint": "^8.
|
|
246
|
-
"vite": "^8.1.
|
|
245
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
246
|
+
"typescript-eslint": "^8.65.0",
|
|
247
|
+
"vite": "^8.1.5",
|
|
247
248
|
"vitest": "^4.1.10"
|
|
248
249
|
},
|
|
249
250
|
"allowScripts": {
|