@duskmoon-dev/core 0.1.0 → 1.1.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 +366 -78
- package/dist/components/accordion.css +244 -0
- package/dist/components/alert.css +199 -0
- package/dist/components/appbar.css +308 -0
- package/dist/components/autocomplete.css +269 -0
- package/dist/components/avatar.css +167 -0
- package/dist/components/badge.css +178 -0
- package/dist/components/bottom-navigation.css +263 -0
- package/dist/components/bottomsheet.css +334 -0
- package/dist/components/button.css +474 -0
- package/dist/components/card.css +220 -0
- package/dist/components/chip.css +211 -0
- package/dist/components/collapse.css +254 -0
- package/dist/components/datepicker.css +347 -0
- package/dist/components/dialog.css +173 -0
- package/dist/components/divider.css +284 -0
- package/dist/components/drawer.css +371 -0
- package/dist/components/file-upload.css +321 -0
- package/dist/components/form.css +441 -0
- package/dist/components/index.css +9994 -0
- package/dist/components/input.css +240 -0
- package/dist/components/list.css +188 -0
- package/dist/components/markdown-body.css +405 -0
- package/dist/components/modal.css +291 -0
- package/dist/components/navigation.css +392 -0
- package/dist/components/popover.css +326 -0
- package/dist/components/progress.css +238 -0
- package/dist/components/rating.css +230 -0
- package/dist/components/skeleton.css +216 -0
- package/dist/components/slider.css +327 -0
- package/dist/components/snackbar.css +311 -0
- package/dist/components/stepper.css +313 -0
- package/dist/components/switch.css +277 -0
- package/dist/components/table.css +199 -0
- package/dist/components/timeline.css +353 -0
- package/dist/components/toast.css +251 -0
- package/dist/components/tooltip.css +284 -0
- package/dist/esm/components/accordion.js +251 -0
- package/dist/esm/components/alert.js +206 -0
- package/dist/esm/components/appbar.js +315 -0
- package/dist/esm/components/autocomplete.js +276 -0
- package/dist/esm/components/avatar.js +174 -0
- package/dist/esm/components/badge.js +185 -0
- package/dist/esm/components/bottom-navigation.js +270 -0
- package/dist/esm/components/bottomsheet.js +341 -0
- package/dist/esm/components/button.js +481 -0
- package/dist/esm/components/card.js +227 -0
- package/dist/esm/components/chip.js +218 -0
- package/dist/esm/components/collapse.js +261 -0
- package/dist/esm/components/datepicker.js +354 -0
- package/dist/esm/components/dialog.js +180 -0
- package/dist/esm/components/divider.js +291 -0
- package/dist/esm/components/drawer.js +378 -0
- package/dist/esm/components/file-upload.js +328 -0
- package/dist/esm/components/form.js +448 -0
- package/dist/esm/components/input.js +247 -0
- package/dist/esm/components/list.js +195 -0
- package/dist/esm/components/markdown-body.js +412 -0
- package/dist/esm/components/modal.js +298 -0
- package/dist/esm/components/navigation.js +399 -0
- package/dist/esm/components/popover.js +333 -0
- package/dist/esm/components/progress.js +245 -0
- package/dist/esm/components/rating.js +237 -0
- package/dist/esm/components/skeleton.js +223 -0
- package/dist/esm/components/slider.js +334 -0
- package/dist/esm/components/snackbar.js +318 -0
- package/dist/esm/components/stepper.js +320 -0
- package/dist/esm/components/switch.js +284 -0
- package/dist/esm/components/table.js +206 -0
- package/dist/esm/components/timeline.js +360 -0
- package/dist/esm/components/toast.js +258 -0
- package/dist/esm/components/tooltip.js +291 -0
- package/dist/index.css +10699 -0
- package/dist/themes/moonlight.css +168 -0
- package/dist/themes/sunshine.css +166 -0
- package/dist/types/index.d.ts +14 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/plugin.d.ts +69 -0
- package/dist/types/plugin.d.ts.map +1 -0
- package/dist/types/theme.d.ts +202 -0
- package/dist/types/theme.d.ts.map +1 -0
- package/package.json +207 -18
- package/dist/index.cjs +0 -243
- package/dist/index.cjs.map +0 -15
- package/dist/index.js +0 -211
- package/dist/index.js.map +0 -15
package/package.json
CHANGED
|
@@ -1,20 +1,199 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duskmoon-dev/core",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "DuskMoonUI - Tailwind CSS
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "DuskMoonUI - Tailwind CSS v4 plugin with Material Design 3 color system and component styles",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./dist/index.
|
|
7
|
-
"
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
6
|
+
"main": "./dist/index.css",
|
|
7
|
+
"types": "./dist/types/index.d.ts",
|
|
9
8
|
"exports": {
|
|
10
9
|
".": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
10
|
+
"default": "./dist/index.css",
|
|
11
|
+
"style": "./dist/index.css",
|
|
12
|
+
"types": "./dist/types/index.d.ts"
|
|
14
13
|
},
|
|
15
|
-
"./
|
|
16
|
-
"
|
|
17
|
-
|
|
14
|
+
"./themes/sunshine": {
|
|
15
|
+
"style": "./dist/themes/sunshine.css"
|
|
16
|
+
},
|
|
17
|
+
"./themes/moonlight": {
|
|
18
|
+
"style": "./dist/themes/moonlight.css"
|
|
19
|
+
},
|
|
20
|
+
"./components": {
|
|
21
|
+
"style": "./dist/components/index.css"
|
|
22
|
+
},
|
|
23
|
+
"./components/accordion": {
|
|
24
|
+
"style": "./dist/components/accordion.css",
|
|
25
|
+
"import": "./dist/esm/components/accordion.js",
|
|
26
|
+
"default": "./dist/esm/components/accordion.js"
|
|
27
|
+
},
|
|
28
|
+
"./components/alert": {
|
|
29
|
+
"style": "./dist/components/alert.css",
|
|
30
|
+
"import": "./dist/esm/components/alert.js",
|
|
31
|
+
"default": "./dist/esm/components/alert.js"
|
|
32
|
+
},
|
|
33
|
+
"./components/appbar": {
|
|
34
|
+
"style": "./dist/components/appbar.css",
|
|
35
|
+
"import": "./dist/esm/components/appbar.js",
|
|
36
|
+
"default": "./dist/esm/components/appbar.js"
|
|
37
|
+
},
|
|
38
|
+
"./components/autocomplete": {
|
|
39
|
+
"style": "./dist/components/autocomplete.css",
|
|
40
|
+
"import": "./dist/esm/components/autocomplete.js",
|
|
41
|
+
"default": "./dist/esm/components/autocomplete.js"
|
|
42
|
+
},
|
|
43
|
+
"./components/avatar": {
|
|
44
|
+
"style": "./dist/components/avatar.css",
|
|
45
|
+
"import": "./dist/esm/components/avatar.js",
|
|
46
|
+
"default": "./dist/esm/components/avatar.js"
|
|
47
|
+
},
|
|
48
|
+
"./components/badge": {
|
|
49
|
+
"style": "./dist/components/badge.css",
|
|
50
|
+
"import": "./dist/esm/components/badge.js",
|
|
51
|
+
"default": "./dist/esm/components/badge.js"
|
|
52
|
+
},
|
|
53
|
+
"./components/bottom-navigation": {
|
|
54
|
+
"style": "./dist/components/bottom-navigation.css",
|
|
55
|
+
"import": "./dist/esm/components/bottom-navigation.js",
|
|
56
|
+
"default": "./dist/esm/components/bottom-navigation.js"
|
|
57
|
+
},
|
|
58
|
+
"./components/bottomsheet": {
|
|
59
|
+
"style": "./dist/components/bottomsheet.css",
|
|
60
|
+
"import": "./dist/esm/components/bottomsheet.js",
|
|
61
|
+
"default": "./dist/esm/components/bottomsheet.js"
|
|
62
|
+
},
|
|
63
|
+
"./components/button": {
|
|
64
|
+
"style": "./dist/components/button.css",
|
|
65
|
+
"import": "./dist/esm/components/button.js",
|
|
66
|
+
"default": "./dist/esm/components/button.js"
|
|
67
|
+
},
|
|
68
|
+
"./components/card": {
|
|
69
|
+
"style": "./dist/components/card.css",
|
|
70
|
+
"import": "./dist/esm/components/card.js",
|
|
71
|
+
"default": "./dist/esm/components/card.js"
|
|
72
|
+
},
|
|
73
|
+
"./components/chip": {
|
|
74
|
+
"style": "./dist/components/chip.css",
|
|
75
|
+
"import": "./dist/esm/components/chip.js",
|
|
76
|
+
"default": "./dist/esm/components/chip.js"
|
|
77
|
+
},
|
|
78
|
+
"./components/collapse": {
|
|
79
|
+
"style": "./dist/components/collapse.css",
|
|
80
|
+
"import": "./dist/esm/components/collapse.js",
|
|
81
|
+
"default": "./dist/esm/components/collapse.js"
|
|
82
|
+
},
|
|
83
|
+
"./components/datepicker": {
|
|
84
|
+
"style": "./dist/components/datepicker.css",
|
|
85
|
+
"import": "./dist/esm/components/datepicker.js",
|
|
86
|
+
"default": "./dist/esm/components/datepicker.js"
|
|
87
|
+
},
|
|
88
|
+
"./components/dialog": {
|
|
89
|
+
"style": "./dist/components/dialog.css",
|
|
90
|
+
"import": "./dist/esm/components/dialog.js",
|
|
91
|
+
"default": "./dist/esm/components/dialog.js"
|
|
92
|
+
},
|
|
93
|
+
"./components/divider": {
|
|
94
|
+
"style": "./dist/components/divider.css",
|
|
95
|
+
"import": "./dist/esm/components/divider.js",
|
|
96
|
+
"default": "./dist/esm/components/divider.js"
|
|
97
|
+
},
|
|
98
|
+
"./components/drawer": {
|
|
99
|
+
"style": "./dist/components/drawer.css",
|
|
100
|
+
"import": "./dist/esm/components/drawer.js",
|
|
101
|
+
"default": "./dist/esm/components/drawer.js"
|
|
102
|
+
},
|
|
103
|
+
"./components/file-upload": {
|
|
104
|
+
"style": "./dist/components/file-upload.css",
|
|
105
|
+
"import": "./dist/esm/components/file-upload.js",
|
|
106
|
+
"default": "./dist/esm/components/file-upload.js"
|
|
107
|
+
},
|
|
108
|
+
"./components/form": {
|
|
109
|
+
"style": "./dist/components/form.css",
|
|
110
|
+
"import": "./dist/esm/components/form.js",
|
|
111
|
+
"default": "./dist/esm/components/form.js"
|
|
112
|
+
},
|
|
113
|
+
"./components/input": {
|
|
114
|
+
"style": "./dist/components/input.css",
|
|
115
|
+
"import": "./dist/esm/components/input.js",
|
|
116
|
+
"default": "./dist/esm/components/input.js"
|
|
117
|
+
},
|
|
118
|
+
"./components/list": {
|
|
119
|
+
"style": "./dist/components/list.css",
|
|
120
|
+
"import": "./dist/esm/components/list.js",
|
|
121
|
+
"default": "./dist/esm/components/list.js"
|
|
122
|
+
},
|
|
123
|
+
"./components/markdown-body": {
|
|
124
|
+
"style": "./dist/components/markdown-body.css",
|
|
125
|
+
"import": "./dist/esm/components/markdown-body.js",
|
|
126
|
+
"default": "./dist/esm/components/markdown-body.js"
|
|
127
|
+
},
|
|
128
|
+
"./components/modal": {
|
|
129
|
+
"style": "./dist/components/modal.css",
|
|
130
|
+
"import": "./dist/esm/components/modal.js",
|
|
131
|
+
"default": "./dist/esm/components/modal.js"
|
|
132
|
+
},
|
|
133
|
+
"./components/navigation": {
|
|
134
|
+
"style": "./dist/components/navigation.css",
|
|
135
|
+
"import": "./dist/esm/components/navigation.js",
|
|
136
|
+
"default": "./dist/esm/components/navigation.js"
|
|
137
|
+
},
|
|
138
|
+
"./components/popover": {
|
|
139
|
+
"style": "./dist/components/popover.css",
|
|
140
|
+
"import": "./dist/esm/components/popover.js",
|
|
141
|
+
"default": "./dist/esm/components/popover.js"
|
|
142
|
+
},
|
|
143
|
+
"./components/progress": {
|
|
144
|
+
"style": "./dist/components/progress.css",
|
|
145
|
+
"import": "./dist/esm/components/progress.js",
|
|
146
|
+
"default": "./dist/esm/components/progress.js"
|
|
147
|
+
},
|
|
148
|
+
"./components/rating": {
|
|
149
|
+
"style": "./dist/components/rating.css",
|
|
150
|
+
"import": "./dist/esm/components/rating.js",
|
|
151
|
+
"default": "./dist/esm/components/rating.js"
|
|
152
|
+
},
|
|
153
|
+
"./components/skeleton": {
|
|
154
|
+
"style": "./dist/components/skeleton.css",
|
|
155
|
+
"import": "./dist/esm/components/skeleton.js",
|
|
156
|
+
"default": "./dist/esm/components/skeleton.js"
|
|
157
|
+
},
|
|
158
|
+
"./components/slider": {
|
|
159
|
+
"style": "./dist/components/slider.css",
|
|
160
|
+
"import": "./dist/esm/components/slider.js",
|
|
161
|
+
"default": "./dist/esm/components/slider.js"
|
|
162
|
+
},
|
|
163
|
+
"./components/snackbar": {
|
|
164
|
+
"style": "./dist/components/snackbar.css",
|
|
165
|
+
"import": "./dist/esm/components/snackbar.js",
|
|
166
|
+
"default": "./dist/esm/components/snackbar.js"
|
|
167
|
+
},
|
|
168
|
+
"./components/stepper": {
|
|
169
|
+
"style": "./dist/components/stepper.css",
|
|
170
|
+
"import": "./dist/esm/components/stepper.js",
|
|
171
|
+
"default": "./dist/esm/components/stepper.js"
|
|
172
|
+
},
|
|
173
|
+
"./components/switch": {
|
|
174
|
+
"style": "./dist/components/switch.css",
|
|
175
|
+
"import": "./dist/esm/components/switch.js",
|
|
176
|
+
"default": "./dist/esm/components/switch.js"
|
|
177
|
+
},
|
|
178
|
+
"./components/table": {
|
|
179
|
+
"style": "./dist/components/table.css",
|
|
180
|
+
"import": "./dist/esm/components/table.js",
|
|
181
|
+
"default": "./dist/esm/components/table.js"
|
|
182
|
+
},
|
|
183
|
+
"./components/timeline": {
|
|
184
|
+
"style": "./dist/components/timeline.css",
|
|
185
|
+
"import": "./dist/esm/components/timeline.js",
|
|
186
|
+
"default": "./dist/esm/components/timeline.js"
|
|
187
|
+
},
|
|
188
|
+
"./components/toast": {
|
|
189
|
+
"style": "./dist/components/toast.css",
|
|
190
|
+
"import": "./dist/esm/components/toast.js",
|
|
191
|
+
"default": "./dist/esm/components/toast.js"
|
|
192
|
+
},
|
|
193
|
+
"./components/tooltip": {
|
|
194
|
+
"style": "./dist/components/tooltip.css",
|
|
195
|
+
"import": "./dist/esm/components/tooltip.js",
|
|
196
|
+
"default": "./dist/esm/components/tooltip.js"
|
|
18
197
|
}
|
|
19
198
|
},
|
|
20
199
|
"files": [
|
|
@@ -24,12 +203,17 @@
|
|
|
24
203
|
],
|
|
25
204
|
"scripts": {
|
|
26
205
|
"dev": "bun run build --watch",
|
|
27
|
-
"build": "bun run clean && bun run build:
|
|
28
|
-
"build:
|
|
29
|
-
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
206
|
+
"build": "bun run clean && bun run build:css && bun run build:types",
|
|
207
|
+
"build:css": "bun run scripts/build-css.ts",
|
|
208
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
|
|
30
209
|
"clean": "rm -rf dist",
|
|
31
210
|
"typecheck": "tsc --noEmit",
|
|
32
|
-
"test": "bun test"
|
|
211
|
+
"test": "bun test tests/unit",
|
|
212
|
+
"test:unit": "bun test tests/unit",
|
|
213
|
+
"test:visual": "playwright test --config=playwright.visual.config.ts",
|
|
214
|
+
"test:integration": "playwright test --config=playwright.integration.config.ts",
|
|
215
|
+
"test:a11y": "playwright test --config=playwright.integration.config.ts tests/accessibility/",
|
|
216
|
+
"test:all": "bun run test:unit && bun run test:visual && bun run test:integration && bun run test:a11y"
|
|
33
217
|
},
|
|
34
218
|
"keywords": [
|
|
35
219
|
"tailwind",
|
|
@@ -57,12 +241,17 @@
|
|
|
57
241
|
"url": "https://github.com/duskmoon-dev/duskmoonui/issues"
|
|
58
242
|
},
|
|
59
243
|
"peerDependencies": {
|
|
60
|
-
"tailwindcss": "^
|
|
244
|
+
"tailwindcss": "^4.0.0"
|
|
61
245
|
},
|
|
62
246
|
"devDependencies": {
|
|
247
|
+
"@axe-core/playwright": "^4.8.0",
|
|
248
|
+
"@playwright/test": "^1.40.0",
|
|
63
249
|
"@types/bun": "latest",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
250
|
+
"axe-core": "^4.8.0",
|
|
251
|
+
"lightningcss": "^1.22.0",
|
|
252
|
+
"tailwindcss": "^4.0.0",
|
|
253
|
+
"typescript": "^5.6.0",
|
|
254
|
+
"vitest": "^1.0.0"
|
|
66
255
|
},
|
|
67
256
|
"engines": {
|
|
68
257
|
"node": ">=18.0.0",
|
package/dist/index.cjs
DELETED
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __moduleCache = /* @__PURE__ */ new WeakMap;
|
|
6
|
-
var __toCommonJS = (from) => {
|
|
7
|
-
var entry = __moduleCache.get(from), desc;
|
|
8
|
-
if (entry)
|
|
9
|
-
return entry;
|
|
10
|
-
entry = __defProp({}, "__esModule", { value: true });
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function")
|
|
12
|
-
__getOwnPropNames(from).map((key) => !__hasOwnProp.call(entry, key) && __defProp(entry, key, {
|
|
13
|
-
get: () => from[key],
|
|
14
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
-
}));
|
|
16
|
-
__moduleCache.set(from, entry);
|
|
17
|
-
return entry;
|
|
18
|
-
};
|
|
19
|
-
var __export = (target, all) => {
|
|
20
|
-
for (var name in all)
|
|
21
|
-
__defProp(target, name, {
|
|
22
|
-
get: all[name],
|
|
23
|
-
enumerable: true,
|
|
24
|
-
configurable: true,
|
|
25
|
-
set: (newValue) => all[name] = () => newValue
|
|
26
|
-
});
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
// src/index.ts
|
|
30
|
-
var exports_src = {};
|
|
31
|
-
__export(exports_src, {
|
|
32
|
-
themes: () => themes,
|
|
33
|
-
default: () => src_default
|
|
34
|
-
});
|
|
35
|
-
module.exports = __toCommonJS(exports_src);
|
|
36
|
-
|
|
37
|
-
// ../../node_modules/tailwindcss/dist/plugin.mjs
|
|
38
|
-
function g(i, n) {
|
|
39
|
-
return { handler: i, config: n };
|
|
40
|
-
}
|
|
41
|
-
g.withOptions = function(i, n = () => ({})) {
|
|
42
|
-
function t(o) {
|
|
43
|
-
return { handler: i(o), config: n(o) };
|
|
44
|
-
}
|
|
45
|
-
return t.__isOptionsFunction = true, t;
|
|
46
|
-
};
|
|
47
|
-
var u = g;
|
|
48
|
-
|
|
49
|
-
// src/themes/sunshine.ts
|
|
50
|
-
var sunshine = {
|
|
51
|
-
primary: "38 92% 50%",
|
|
52
|
-
"primary-focus": "38 92% 40%",
|
|
53
|
-
"primary-content": "0 0% 100%",
|
|
54
|
-
"primary-container": "38 100% 90%",
|
|
55
|
-
"on-primary-container": "38 92% 15%",
|
|
56
|
-
secondary: "330 81% 60%",
|
|
57
|
-
"secondary-focus": "330 81% 50%",
|
|
58
|
-
"secondary-content": "0 0% 100%",
|
|
59
|
-
"secondary-container": "330 100% 92%",
|
|
60
|
-
"on-secondary-container": "330 81% 18%",
|
|
61
|
-
tertiary: "258 90% 66%",
|
|
62
|
-
"tertiary-focus": "258 90% 56%",
|
|
63
|
-
"tertiary-content": "0 0% 100%",
|
|
64
|
-
"tertiary-container": "258 100% 92%",
|
|
65
|
-
"on-tertiary-container": "258 90% 20%",
|
|
66
|
-
accent: "160 84% 39%",
|
|
67
|
-
"accent-focus": "160 84% 29%",
|
|
68
|
-
"accent-content": "0 0% 100%",
|
|
69
|
-
neutral: "217 33% 17%",
|
|
70
|
-
"neutral-focus": "217 33% 12%",
|
|
71
|
-
"neutral-content": "0 0% 100%",
|
|
72
|
-
"neutral-variant": "220 14% 60%",
|
|
73
|
-
surface: "0 0% 99%",
|
|
74
|
-
"surface-dim": "220 13% 94%",
|
|
75
|
-
"surface-bright": "0 0% 100%",
|
|
76
|
-
"surface-container-lowest": "0 0% 100%",
|
|
77
|
-
"surface-container-low": "220 13% 97%",
|
|
78
|
-
"surface-container": "220 13% 96%",
|
|
79
|
-
"surface-container-high": "220 13% 94%",
|
|
80
|
-
"surface-container-highest": "220 13% 91%",
|
|
81
|
-
"surface-variant": "220 14% 90%",
|
|
82
|
-
"on-surface": "217 33% 17%",
|
|
83
|
-
"on-surface-variant": "220 9% 30%",
|
|
84
|
-
"base-100": "0 0% 100%",
|
|
85
|
-
"base-200": "220 13% 96%",
|
|
86
|
-
"base-300": "220 13% 91%",
|
|
87
|
-
"base-content": "217 33% 17%",
|
|
88
|
-
outline: "220 9% 55%",
|
|
89
|
-
"outline-variant": "220 14% 80%",
|
|
90
|
-
"inverse-surface": "217 33% 17%",
|
|
91
|
-
"inverse-on-surface": "220 13% 94%",
|
|
92
|
-
"inverse-primary": "38 100% 75%",
|
|
93
|
-
shadow: "0 0% 0%",
|
|
94
|
-
scrim: "0 0% 0%",
|
|
95
|
-
info: "199 89% 48%",
|
|
96
|
-
"info-content": "0 0% 100%",
|
|
97
|
-
success: "142 71% 45%",
|
|
98
|
-
"success-content": "0 0% 100%",
|
|
99
|
-
warning: "38 92% 50%",
|
|
100
|
-
"warning-content": "0 0% 100%",
|
|
101
|
-
error: "0 72% 51%",
|
|
102
|
-
"error-content": "0 0% 100%",
|
|
103
|
-
"error-container": "0 100% 95%",
|
|
104
|
-
"on-error-container": "0 72% 20%"
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
// src/themes/moonlight.ts
|
|
108
|
-
var moonlight = {
|
|
109
|
-
primary: "217 91% 60%",
|
|
110
|
-
"primary-focus": "217 91% 70%",
|
|
111
|
-
"primary-content": "0 0% 100%",
|
|
112
|
-
"primary-container": "217 91% 20%",
|
|
113
|
-
"on-primary-container": "217 91% 90%",
|
|
114
|
-
secondary: "262 83% 70%",
|
|
115
|
-
"secondary-focus": "262 83% 80%",
|
|
116
|
-
"secondary-content": "0 0% 100%",
|
|
117
|
-
"secondary-container": "262 83% 25%",
|
|
118
|
-
"on-secondary-container": "262 83% 90%",
|
|
119
|
-
tertiary: "173 80% 50%",
|
|
120
|
-
"tertiary-focus": "173 80% 60%",
|
|
121
|
-
"tertiary-content": "0 0% 100%",
|
|
122
|
-
"tertiary-container": "173 80% 20%",
|
|
123
|
-
"on-tertiary-container": "173 80% 90%",
|
|
124
|
-
accent: "189 94% 43%",
|
|
125
|
-
"accent-focus": "189 94% 53%",
|
|
126
|
-
"accent-content": "0 0% 100%",
|
|
127
|
-
neutral: "220 13% 91%",
|
|
128
|
-
"neutral-focus": "220 13% 85%",
|
|
129
|
-
"neutral-content": "220 9% 15%",
|
|
130
|
-
"neutral-variant": "220 9% 46%",
|
|
131
|
-
surface: "220 13% 11%",
|
|
132
|
-
"surface-dim": "220 13% 7%",
|
|
133
|
-
"surface-bright": "220 13% 20%",
|
|
134
|
-
"surface-container-lowest": "220 13% 7%",
|
|
135
|
-
"surface-container-low": "220 13% 9%",
|
|
136
|
-
"surface-container": "220 13% 11%",
|
|
137
|
-
"surface-container-high": "220 13% 14%",
|
|
138
|
-
"surface-container-highest": "220 13% 17%",
|
|
139
|
-
"surface-variant": "220 9% 20%",
|
|
140
|
-
"on-surface": "220 13% 91%",
|
|
141
|
-
"on-surface-variant": "220 9% 70%",
|
|
142
|
-
"base-100": "220 13% 11%",
|
|
143
|
-
"base-200": "220 13% 9%",
|
|
144
|
-
"base-300": "220 13% 7%",
|
|
145
|
-
"base-content": "220 13% 91%",
|
|
146
|
-
outline: "220 9% 46%",
|
|
147
|
-
"outline-variant": "220 9% 30%",
|
|
148
|
-
"inverse-surface": "220 13% 91%",
|
|
149
|
-
"inverse-on-surface": "220 13% 11%",
|
|
150
|
-
"inverse-primary": "217 91% 40%",
|
|
151
|
-
shadow: "0 0% 0%",
|
|
152
|
-
scrim: "0 0% 0%",
|
|
153
|
-
info: "199 89% 60%",
|
|
154
|
-
"info-content": "0 0% 100%",
|
|
155
|
-
success: "142 76% 60%",
|
|
156
|
-
"success-content": "0 0% 100%",
|
|
157
|
-
warning: "38 92% 60%",
|
|
158
|
-
"warning-content": "0 0% 100%",
|
|
159
|
-
error: "0 84% 70%",
|
|
160
|
-
"error-content": "0 0% 100%",
|
|
161
|
-
"error-container": "0 84% 25%",
|
|
162
|
-
"on-error-container": "0 84% 90%"
|
|
163
|
-
};
|
|
164
|
-
|
|
165
|
-
// src/themes/index.ts
|
|
166
|
-
var themes = {
|
|
167
|
-
sunshine,
|
|
168
|
-
moonlight
|
|
169
|
-
};
|
|
170
|
-
|
|
171
|
-
// src/generators/index.ts
|
|
172
|
-
function generateCssVariables(theme) {
|
|
173
|
-
const cssVars = {};
|
|
174
|
-
for (const [key, value] of Object.entries(theme)) {
|
|
175
|
-
cssVars[`--color-${key}`] = value;
|
|
176
|
-
}
|
|
177
|
-
return cssVars;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
// src/index.ts
|
|
181
|
-
var defaultOptions = {
|
|
182
|
-
themes: ["sunshine", "moonlight"],
|
|
183
|
-
darkTheme: "moonlight",
|
|
184
|
-
prefix: "",
|
|
185
|
-
components: "all",
|
|
186
|
-
utilities: true,
|
|
187
|
-
rtl: false,
|
|
188
|
-
styled: true,
|
|
189
|
-
base: true
|
|
190
|
-
};
|
|
191
|
-
var duskmoonuiPlugin = u.withOptions((options = {}) => {
|
|
192
|
-
const config = { ...defaultOptions, ...options };
|
|
193
|
-
return ({ addBase }) => {
|
|
194
|
-
const selectedThemes = config.themes || ["sunshine", "moonlight"];
|
|
195
|
-
const baseStyles = {};
|
|
196
|
-
selectedThemes.forEach((themeConfig) => {
|
|
197
|
-
let themeName;
|
|
198
|
-
let themeColors;
|
|
199
|
-
if (typeof themeConfig === "string") {
|
|
200
|
-
themeName = themeConfig;
|
|
201
|
-
themeColors = themes[themeConfig];
|
|
202
|
-
} else {
|
|
203
|
-
const entry = Object.entries(themeConfig)[0];
|
|
204
|
-
if (entry) {
|
|
205
|
-
const [name, colors] = entry;
|
|
206
|
-
themeName = name;
|
|
207
|
-
themeColors = colors;
|
|
208
|
-
} else {
|
|
209
|
-
return;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
if (themeColors) {
|
|
213
|
-
const cssVars = generateCssVariables(themeColors);
|
|
214
|
-
baseStyles[`[data-theme="${themeName}"]`] = cssVars;
|
|
215
|
-
}
|
|
216
|
-
});
|
|
217
|
-
if (config.base) {
|
|
218
|
-
addBase(baseStyles);
|
|
219
|
-
}
|
|
220
|
-
};
|
|
221
|
-
}, (_options = {}) => {
|
|
222
|
-
return {
|
|
223
|
-
theme: {
|
|
224
|
-
extend: {
|
|
225
|
-
colors: {
|
|
226
|
-
primary: "hsl(var(--color-primary) / <alpha-value>)",
|
|
227
|
-
"primary-focus": "hsl(var(--color-primary-focus) / <alpha-value>)",
|
|
228
|
-
"primary-content": "hsl(var(--color-primary-content) / <alpha-value>)",
|
|
229
|
-
secondary: "hsl(var(--color-secondary) / <alpha-value>)",
|
|
230
|
-
"secondary-focus": "hsl(var(--color-secondary-focus) / <alpha-value>)",
|
|
231
|
-
"secondary-content": "hsl(var(--color-secondary-content) / <alpha-value>)",
|
|
232
|
-
tertiary: "hsl(var(--color-tertiary) / <alpha-value>)",
|
|
233
|
-
"tertiary-focus": "hsl(var(--color-tertiary-focus) / <alpha-value>)",
|
|
234
|
-
"tertiary-content": "hsl(var(--color-tertiary-content) / <alpha-value>)"
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
};
|
|
239
|
-
});
|
|
240
|
-
var src_default = duskmoonuiPlugin;
|
|
241
|
-
|
|
242
|
-
//# debugId=35DBFA0829735D7764756E2164756E21
|
|
243
|
-
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../node_modules/tailwindcss/dist/plugin.mjs", "src/themes/sunshine.ts", "src/themes/moonlight.ts", "src/themes/index.ts", "src/generators/index.ts", "src/index.ts"],
|
|
4
|
-
"sourcesContent": [
|
|
5
|
-
"function g(i,n){return{handler:i,config:n}}g.withOptions=function(i,n=()=>({})){function t(o){return{handler:i(o),config:n(o)}}return t.__isOptionsFunction=!0,t};var u=g;export{u as default};\n",
|
|
6
|
-
"/**\n * Sunshine Theme (Light)\n * A warm, energetic light theme with golden and vibrant accents\n */\n\nimport type { ThemeColors } from '../types';\n\nexport const sunshine: ThemeColors = {\n // Primary Colors - Warm Orange\n primary: '38 92% 50%', // #f59e0b (Amber 500)\n 'primary-focus': '38 92% 40%',\n 'primary-content': '0 0% 100%',\n 'primary-container': '38 100% 90%',\n 'on-primary-container': '38 92% 15%',\n\n // Secondary Colors - Pink\n secondary: '330 81% 60%', // #ec4899 (Pink 500)\n 'secondary-focus': '330 81% 50%',\n 'secondary-content': '0 0% 100%',\n 'secondary-container': '330 100% 92%',\n 'on-secondary-container': '330 81% 18%',\n\n // Tertiary Colors - Purple (NEW!)\n tertiary: '258 90% 66%', // #8b5cf6 (Violet 500)\n 'tertiary-focus': '258 90% 56%',\n 'tertiary-content': '0 0% 100%',\n 'tertiary-container': '258 100% 92%',\n 'on-tertiary-container': '258 90% 20%',\n\n // Accent Colors - Emerald\n accent: '160 84% 39%', // #10b981 (Emerald 500)\n 'accent-focus': '160 84% 29%',\n 'accent-content': '0 0% 100%',\n\n // Neutral Colors\n neutral: '217 33% 17%', // #1f2937 (Gray 800)\n 'neutral-focus': '217 33% 12%',\n 'neutral-content': '0 0% 100%',\n 'neutral-variant': '220 14% 60%',\n\n // Surface Colors (Material Design 3)\n surface: '0 0% 99%',\n 'surface-dim': '220 13% 94%',\n 'surface-bright': '0 0% 100%',\n 'surface-container-lowest': '0 0% 100%',\n 'surface-container-low': '220 13% 97%',\n 'surface-container': '220 13% 96%',\n 'surface-container-high': '220 13% 94%',\n 'surface-container-highest': '220 13% 91%',\n 'surface-variant': '220 14% 90%',\n 'on-surface': '217 33% 17%',\n 'on-surface-variant': '220 9% 30%',\n\n // Base Colors (Legacy support)\n 'base-100': '0 0% 100%', // White\n 'base-200': '220 13% 96%', // Light gray\n 'base-300': '220 13% 91%', // Medium gray\n 'base-content': '217 33% 17%', // Dark text\n\n // Outline Colors\n outline: '220 9% 55%',\n 'outline-variant': '220 14% 80%',\n\n // Inverse Colors\n 'inverse-surface': '217 33% 17%',\n 'inverse-on-surface': '220 13% 94%',\n 'inverse-primary': '38 100% 75%',\n\n // Shadow & Scrim\n shadow: '0 0% 0%',\n scrim: '0 0% 0%',\n\n // Semantic Colors\n info: '199 89% 48%', // Blue\n 'info-content': '0 0% 100%',\n success: '142 71% 45%', // Green\n 'success-content': '0 0% 100%',\n warning: '38 92% 50%', // Orange\n 'warning-content': '0 0% 100%',\n error: '0 72% 51%', // Red\n 'error-content': '0 0% 100%',\n 'error-container': '0 100% 95%',\n 'on-error-container': '0 72% 20%',\n};\n",
|
|
7
|
-
"/**\n * Moonlight Theme (Dark)\n * A serene, elegant dark theme with cool tones and soft accents\n */\n\nimport type { ThemeColors } from '../types';\n\nexport const moonlight: ThemeColors = {\n // Primary Colors - Soft Blue\n primary: '217 91% 60%', // #3b82f6 (Blue 500)\n 'primary-focus': '217 91% 70%',\n 'primary-content': '0 0% 100%',\n 'primary-container': '217 91% 20%',\n 'on-primary-container': '217 91% 90%',\n\n // Secondary Colors - Purple\n secondary: '262 83% 70%', // #a78bfa (Violet 400)\n 'secondary-focus': '262 83% 80%',\n 'secondary-content': '0 0% 100%',\n 'secondary-container': '262 83% 25%',\n 'on-secondary-container': '262 83% 90%',\n\n // Tertiary Colors - Teal (NEW!)\n tertiary: '173 80% 50%', // #14b8a6 (Teal 500)\n 'tertiary-focus': '173 80% 60%',\n 'tertiary-content': '0 0% 100%',\n 'tertiary-container': '173 80% 20%',\n 'on-tertiary-container': '173 80% 90%',\n\n // Accent Colors - Cyan\n accent: '189 94% 43%', // #06b6d4 (Cyan 500)\n 'accent-focus': '189 94% 53%',\n 'accent-content': '0 0% 100%',\n\n // Neutral Colors\n neutral: '220 13% 91%', // #e5e7eb (Gray 200)\n 'neutral-focus': '220 13% 85%',\n 'neutral-content': '220 9% 15%',\n 'neutral-variant': '220 9% 46%',\n\n // Surface Colors (Material Design 3 Dark)\n surface: '220 13% 11%', // #1c1e22\n 'surface-dim': '220 13% 7%',\n 'surface-bright': '220 13% 20%',\n 'surface-container-lowest': '220 13% 7%',\n 'surface-container-low': '220 13% 9%',\n 'surface-container': '220 13% 11%',\n 'surface-container-high': '220 13% 14%',\n 'surface-container-highest': '220 13% 17%',\n 'surface-variant': '220 9% 20%',\n 'on-surface': '220 13% 91%',\n 'on-surface-variant': '220 9% 70%',\n\n // Base Colors (Legacy support)\n 'base-100': '220 13% 11%', // Dark background\n 'base-200': '220 13% 9%', // Darker\n 'base-300': '220 13% 7%', // Darkest\n 'base-content': '220 13% 91%', // Light text\n\n // Outline Colors\n outline: '220 9% 46%',\n 'outline-variant': '220 9% 30%',\n\n // Inverse Colors\n 'inverse-surface': '220 13% 91%',\n 'inverse-on-surface': '220 13% 11%',\n 'inverse-primary': '217 91% 40%',\n\n // Shadow & Scrim\n shadow: '0 0% 0%',\n scrim: '0 0% 0%',\n\n // Semantic Colors\n info: '199 89% 60%', // Light Blue\n 'info-content': '0 0% 100%',\n success: '142 76% 60%', // Light Green\n 'success-content': '0 0% 100%',\n warning: '38 92% 60%', // Light Orange\n 'warning-content': '0 0% 100%',\n error: '0 84% 70%', // Light Red\n 'error-content': '0 0% 100%',\n 'error-container': '0 84% 25%',\n 'on-error-container': '0 84% 90%',\n};\n",
|
|
8
|
-
"/**\n * DuskMoonUI Themes\n * Built-in theme definitions\n */\n\nimport { sunshine } from './sunshine';\nimport { moonlight } from './moonlight';\nimport type { ThemeColors } from '../types';\n\n/**\n * All available themes\n */\nexport const themes = {\n sunshine,\n moonlight,\n} as const;\n\n/**\n * Get theme by name\n */\nexport function getTheme(name: keyof typeof themes): ThemeColors {\n return themes[name];\n}\n\n/**\n * Check if theme exists\n */\nexport function hasTheme(name: string): name is keyof typeof themes {\n return name in themes;\n}\n",
|
|
9
|
-
"/**\n * CSS Generation Utilities\n * Functions to generate CSS variables and styles from theme definitions\n */\n\nimport type { ThemeColors } from '../types';\n\n/**\n * Generate CSS variables from theme colors\n * Converts theme object to CSS custom properties\n */\nexport function generateCssVariables(theme: ThemeColors): Record<string, string> {\n const cssVars: Record<string, string> = {};\n\n for (const [key, value] of Object.entries(theme)) {\n cssVars[`--color-${key}`] = value;\n }\n\n return cssVars;\n}\n\n/**\n * Convert CSS variables object to string\n */\nexport function cssVarsToString(cssVars: Record<string, string>): string {\n return Object.entries(cssVars)\n .map(([key, value]) => ` ${key}: ${value};`)\n .join('\\n');\n}\n\n/**\n * Generate theme CSS block\n */\nexport function generateThemeBlock(themeName: string, theme: ThemeColors): string {\n const cssVars = generateCssVariables(theme);\n const varsString = cssVarsToString(cssVars);\n\n return `[data-theme=\"${themeName}\"] {\\n${varsString}\\n}`;\n}\n",
|
|
10
|
-
"/**\n * DuskMoonUI - Tailwind CSS Plugin\n * Main entry point for the component library\n */\n\nimport plugin from 'tailwindcss/plugin';\nimport { themes } from './themes';\nimport { generateCssVariables } from './generators';\nimport type { DuskMoonUIOptions, ThemeColors, CustomTheme } from './types';\n\n/**\n * Default plugin options\n */\nconst defaultOptions: DuskMoonUIOptions = {\n themes: ['sunshine', 'moonlight'],\n darkTheme: 'moonlight',\n prefix: '',\n components: 'all',\n utilities: true,\n rtl: false,\n styled: true,\n base: true,\n};\n\n/**\n * DuskMoonUI Tailwind CSS Plugin\n */\nconst duskmoonuiPlugin = plugin.withOptions<Partial<DuskMoonUIOptions>>(\n (options: Partial<DuskMoonUIOptions> = {}) => {\n const config: DuskMoonUIOptions = { ...defaultOptions, ...options };\n\n return ({ addBase }: { addBase: (styles: Record<string, Record<string, string>>) => void }) => {\n // Inject theme colors as CSS variables\n const selectedThemes = config.themes || ['sunshine', 'moonlight'];\n const baseStyles: Record<string, Record<string, string>> = {};\n\n selectedThemes.forEach((themeConfig) => {\n let themeName: string;\n let themeColors: ThemeColors | CustomTheme | undefined;\n\n if (typeof themeConfig === 'string') {\n themeName = themeConfig;\n themeColors = themes[themeConfig as keyof typeof themes];\n } else {\n // Custom theme object\n const entry = Object.entries(themeConfig)[0];\n if (entry) {\n const [name, colors] = entry;\n themeName = name;\n themeColors = colors;\n } else {\n return;\n }\n }\n\n if (themeColors) {\n const cssVars = generateCssVariables(themeColors as ThemeColors);\n baseStyles[`[data-theme=\"${themeName}\"]`] = cssVars;\n }\n });\n\n if (config.base) {\n addBase(baseStyles);\n }\n\n // TODO: Add component generation\n // TODO: Add utility generation\n };\n },\n (_options: Partial<DuskMoonUIOptions> = {}) => {\n // Extend Tailwind config\n return {\n theme: {\n extend: {\n colors: {\n // Map color variables to Tailwind's color system\n primary: 'hsl(var(--color-primary) / <alpha-value>)',\n 'primary-focus': 'hsl(var(--color-primary-focus) / <alpha-value>)',\n 'primary-content': 'hsl(var(--color-primary-content) / <alpha-value>)',\n\n secondary: 'hsl(var(--color-secondary) / <alpha-value>)',\n 'secondary-focus': 'hsl(var(--color-secondary-focus) / <alpha-value>)',\n 'secondary-content': 'hsl(var(--color-secondary-content) / <alpha-value>)',\n\n tertiary: 'hsl(var(--color-tertiary) / <alpha-value>)',\n 'tertiary-focus': 'hsl(var(--color-tertiary-focus) / <alpha-value>)',\n 'tertiary-content': 'hsl(var(--color-tertiary-content) / <alpha-value>)',\n\n // Add more colors as needed\n },\n },\n },\n };\n }\n) as ReturnType<typeof plugin.withOptions<Partial<DuskMoonUIOptions>>>;\n\nexport default duskmoonuiPlugin;\n\n// Export types\nexport type {\n ThemeColors,\n ThemeName,\n DuskMoonUIOptions,\n ColorRole,\n SemanticColor,\n SurfaceLevel,\n ComponentSize,\n ComponentVariant,\n} from './types';\n\n// Export themes\nexport { themes } from './themes';\n"
|
|
11
|
-
],
|
|
12
|
-
"mappings": "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",
|
|
13
|
-
"debugId": "35DBFA0829735D7764756E2164756E21",
|
|
14
|
-
"names": []
|
|
15
|
-
}
|