@phcdevworks/spectre-ui 0.0.1 → 0.0.3
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 +251 -27
- package/dist/base.css +45 -15
- package/dist/components.css +234 -114
- package/dist/index.cjs +215 -148
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +86 -52
- package/dist/index.d.ts +86 -52
- package/dist/index.js +212 -143
- package/dist/index.js.map +1 -1
- package/dist/utilities.css +3 -3
- package/package.json +42 -27
package/package.json
CHANGED
|
@@ -1,11 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phcdevworks/spectre-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Framework-agnostic UI layer for the Spectre design system. Provides base CSS, component classes, utilities, and a Tailwind preset powered by @phcdevworks/spectre-tokens.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"phcdevworks",
|
|
7
|
+
"spectre",
|
|
8
|
+
"spectre-ui",
|
|
9
|
+
"design-system",
|
|
10
|
+
"design-tokens",
|
|
11
|
+
"component-library",
|
|
12
|
+
"ui-library",
|
|
13
|
+
"ui-components",
|
|
14
|
+
"tailwindcss",
|
|
15
|
+
"css-utilities",
|
|
16
|
+
"css-framework",
|
|
17
|
+
"tokens",
|
|
18
|
+
"utilities"
|
|
19
|
+
],
|
|
20
|
+
"author": "PHCDevworks",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"funding": [
|
|
23
|
+
{
|
|
24
|
+
"type": "github",
|
|
25
|
+
"url": "https://github.com/sponsors/phcdevworks"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": "buymeacoffee",
|
|
29
|
+
"url": "https://buymeacoffee.com/phcdevworks"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "https://github.com/phcdevworks/spectre-ui.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/phcdevworks/spectre-ui/issues"
|
|
38
|
+
},
|
|
39
|
+
"homepage": "https://github.com/phcdevworks/spectre-ui#readme",
|
|
40
|
+
"type": "module",
|
|
5
41
|
"main": "./dist/index.cjs",
|
|
6
42
|
"module": "./dist/index.js",
|
|
7
43
|
"types": "./dist/index.d.ts",
|
|
8
|
-
"type": "module",
|
|
9
44
|
"exports": {
|
|
10
45
|
".": {
|
|
11
46
|
"types": "./dist/index.d.ts",
|
|
@@ -27,26 +62,6 @@
|
|
|
27
62
|
"dev": "tsup --config tsup.config.ts --watch",
|
|
28
63
|
"clean": "rm -rf dist"
|
|
29
64
|
},
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/phcdevworks/spectre-ui.git"
|
|
33
|
-
},
|
|
34
|
-
"keywords": [
|
|
35
|
-
"spectre",
|
|
36
|
-
"design-system",
|
|
37
|
-
"tailwindcss",
|
|
38
|
-
"components",
|
|
39
|
-
"utilities",
|
|
40
|
-
"tokens",
|
|
41
|
-
"ui-library",
|
|
42
|
-
"phcdevworks"
|
|
43
|
-
],
|
|
44
|
-
"author": "",
|
|
45
|
-
"license": "MIT",
|
|
46
|
-
"bugs": {
|
|
47
|
-
"url": "https://github.com/phcdevworks/spectre-ui/issues"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://github.com/phcdevworks/spectre-ui#readme",
|
|
50
65
|
"publishConfig": {
|
|
51
66
|
"access": "public"
|
|
52
67
|
},
|
|
@@ -54,13 +69,13 @@
|
|
|
54
69
|
"tailwindcss": "^3.4.0 || ^4.0.0"
|
|
55
70
|
},
|
|
56
71
|
"dependencies": {
|
|
57
|
-
"@phcdevworks/spectre-tokens": "^0.0.
|
|
72
|
+
"@phcdevworks/spectre-tokens": "^0.0.3"
|
|
58
73
|
},
|
|
59
74
|
"devDependencies": {
|
|
60
|
-
"
|
|
61
|
-
"typescript": "^5.9.3",
|
|
62
|
-
"tailwindcss": "^3.4.15",
|
|
75
|
+
"autoprefixer": "^10.4.20",
|
|
63
76
|
"postcss": "^8.4.35",
|
|
64
|
-
"
|
|
77
|
+
"tailwindcss": "^3.4.15",
|
|
78
|
+
"tsup": "^8.5.1",
|
|
79
|
+
"typescript": "^5.9.3"
|
|
65
80
|
}
|
|
66
81
|
}
|