vueless 1.4.11-beta.2 → 1.4.11-beta.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/constants.js +11 -1
- package/package.json +2 -1
- package/types.ts +11 -1
- package/ui.other-theme-color-toggle/storybook/stories.ts +4 -0
package/constants.js
CHANGED
|
@@ -76,7 +76,17 @@ export const STATE_COLORS = [
|
|
|
76
76
|
GRAYSCALE_COLOR,
|
|
77
77
|
];
|
|
78
78
|
export const LAYOUT_COLORS = ["text", "border", "bg"];
|
|
79
|
-
export const NEUTRAL_COLORS = [
|
|
79
|
+
export const NEUTRAL_COLORS = [
|
|
80
|
+
"slate",
|
|
81
|
+
"gray",
|
|
82
|
+
"zinc",
|
|
83
|
+
"neutral",
|
|
84
|
+
"stone",
|
|
85
|
+
"mauve",
|
|
86
|
+
"olive",
|
|
87
|
+
"mist",
|
|
88
|
+
"taupe",
|
|
89
|
+
];
|
|
80
90
|
export const COLOR_SHADES = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950];
|
|
81
91
|
|
|
82
92
|
export const DEFAULT_LIGHT_THEME = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "1.4.11-beta.
|
|
3
|
+
"version": "1.4.11-beta.3",
|
|
4
4
|
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"@vueless/storybook": "^1.6.6",
|
|
63
63
|
"eslint": "^10.2.1",
|
|
64
64
|
"eslint-plugin-storybook": "^10.3.5",
|
|
65
|
+
"eslint-plugin-tailwindcss": "^4.0.0-alpha.7",
|
|
65
66
|
"eslint-plugin-vue": "^10.9.0",
|
|
66
67
|
"globals": "^17.5.0",
|
|
67
68
|
"jsdom": "^29.0.2",
|
package/types.ts
CHANGED
|
@@ -235,7 +235,17 @@ export interface ColorShades {
|
|
|
235
235
|
950: string;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
export type NeutralColorName =
|
|
238
|
+
export type NeutralColorName =
|
|
239
|
+
| "slate"
|
|
240
|
+
| "gray"
|
|
241
|
+
| "zinc"
|
|
242
|
+
| "neutral"
|
|
243
|
+
| "stone"
|
|
244
|
+
| "mauve"
|
|
245
|
+
| "olive"
|
|
246
|
+
| "mist"
|
|
247
|
+
| "taupe"
|
|
248
|
+
| string;
|
|
239
249
|
export type PrimaryColorName =
|
|
240
250
|
| "red"
|
|
241
251
|
| "orange"
|