daisyui 2.0.0-next.2 → 2.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 +107 -89
- package/dist/full.css +1 -111
- package/dist/styled.css +1 -2059
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/themes.css +1 -2
- package/dist/unstyled.css +1 -511
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/dist/utilities-styled.js +1 -1
- package/dist/utilities-unstyled.js +1 -1
- package/dist/utilities.js +1 -1
- package/package.json +7 -9
- package/src/colors/colorNames.js +34 -0
- package/{colors → src}/colors/index.js +17 -18
- package/{colors → src/colors}/themes.js +274 -273
- package/{colors → src}/colors/windi.js +6 -6
- package/src/index.js +227 -0
- package/colors/colorNames.js +0 -35
- package/colors/colors/colorNames.js +0 -35
- package/colors/colors/themes.js +0 -881
- package/colors/index.js +0 -53
- package/colors/windi.js +0 -12
- package/index.js +0 -159
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
const colorValues = require(
|
|
1
|
+
const colorValues = require("./colorNames");
|
|
2
2
|
|
|
3
3
|
let colorObject = {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
4
|
+
transparent: "transparent",
|
|
5
|
+
current: "currentColor",
|
|
6
|
+
};
|
|
7
7
|
|
|
8
8
|
for (const [key, item] of Object.entries(colorValues)) {
|
|
9
|
-
colorObject[key] = `hsla(var(${item}) / var(--tw-bg-opacity, 1))
|
|
9
|
+
colorObject[key] = `hsla(var(${item}) / var(--tw-bg-opacity, 1))`;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
module.exports = colorObject
|
|
12
|
+
module.exports = colorObject;
|
package/src/index.js
ADDED
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
const daisyuiInfo = require("../package.json");
|
|
2
|
+
const colors = require("./colors/index");
|
|
3
|
+
const utilities = require("../dist/utilities");
|
|
4
|
+
const base = require("../dist/base");
|
|
5
|
+
const unstyled = require("../dist/unstyled");
|
|
6
|
+
const unstyledRtl = require("../dist/unstyled.rtl");
|
|
7
|
+
const styled = require("../dist/styled");
|
|
8
|
+
const styledRtl = require("../dist/styled.rtl");
|
|
9
|
+
const utilitiesUnstyled = require("../dist/utilities-unstyled");
|
|
10
|
+
const utilitiesStyled = require("../dist/utilities-styled");
|
|
11
|
+
const themes = require("./colors/themes");
|
|
12
|
+
const colorNames = require("./colors/colorNames");
|
|
13
|
+
const Color = require("color");
|
|
14
|
+
|
|
15
|
+
const mainFunction = ({ addBase, addComponents, addUtilities, config }) => {
|
|
16
|
+
let diasyuiIncludedItems = [];
|
|
17
|
+
let logs = false;
|
|
18
|
+
if (config("daisyui.logs") != false) {
|
|
19
|
+
logs = true;
|
|
20
|
+
}
|
|
21
|
+
if (logs) {
|
|
22
|
+
console.log();
|
|
23
|
+
console.log(
|
|
24
|
+
"\x1b[35m%s\x1b[0m",
|
|
25
|
+
"🌼 daisyUI components " + daisyuiInfo.version,
|
|
26
|
+
"\x1b[0m",
|
|
27
|
+
daisyuiInfo.homepage
|
|
28
|
+
);
|
|
29
|
+
console.group();
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// inject @base style
|
|
33
|
+
if (config("daisyui.base") != false) {
|
|
34
|
+
addBase(base);
|
|
35
|
+
diasyuiIncludedItems.push("base");
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// inject components
|
|
39
|
+
// because rollupjs doesn't supprt dynamic require
|
|
40
|
+
let file = styled;
|
|
41
|
+
if (config("daisyui.styled") == false && config("daisyui.rtl") != true) {
|
|
42
|
+
diasyuiIncludedItems.push("unstyled components");
|
|
43
|
+
file = unstyled;
|
|
44
|
+
} else if (
|
|
45
|
+
config("daisyui.styled") == false &&
|
|
46
|
+
config("daisyui.rtl") == true
|
|
47
|
+
) {
|
|
48
|
+
diasyuiIncludedItems.push("unstyled components");
|
|
49
|
+
console.log("\x1b[36m%s\x1b[0m", " Direction:", "\x1b[0m", "RTL");
|
|
50
|
+
file = unstyledRtl;
|
|
51
|
+
} else if (
|
|
52
|
+
config("daisyui.styled") != false &&
|
|
53
|
+
config("daisyui.rtl") != true
|
|
54
|
+
) {
|
|
55
|
+
diasyuiIncludedItems.push("components");
|
|
56
|
+
file = styled;
|
|
57
|
+
} else if (
|
|
58
|
+
config("daisyui.styled") !== false &&
|
|
59
|
+
config("daisyui.rtl") == true
|
|
60
|
+
) {
|
|
61
|
+
diasyuiIncludedItems.push("components");
|
|
62
|
+
console.log("\x1b[36m%s\x1b[0m", " Direction:", "\x1b[0m", "RTL");
|
|
63
|
+
file = styledRtl;
|
|
64
|
+
}
|
|
65
|
+
addComponents(file);
|
|
66
|
+
|
|
67
|
+
let includedThemesObj = new Object();
|
|
68
|
+
|
|
69
|
+
function convertThemeColorsToHsl(input) {
|
|
70
|
+
let resultObj = {};
|
|
71
|
+
if (typeof input === "object" && input !== null) {
|
|
72
|
+
Object.entries(input).forEach(([rule, value]) => {
|
|
73
|
+
if (colorNames.hasOwnProperty(rule)) {
|
|
74
|
+
const hslArray = Color(value).hsl().round().array();
|
|
75
|
+
resultObj[colorNames[rule]] =
|
|
76
|
+
hslArray[0] + " " + hslArray[1] + "%" + " " + hslArray[2] + "%";
|
|
77
|
+
} else {
|
|
78
|
+
resultObj[rule] = value;
|
|
79
|
+
// console.log(input)
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
return resultObj;
|
|
83
|
+
}
|
|
84
|
+
return input;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// add light themes
|
|
88
|
+
if (config("daisyui.themes") == false) {
|
|
89
|
+
Object.entries(themes).forEach(([theme, index]) => {
|
|
90
|
+
includedThemesObj[theme] = convertThemeColorsToHsl(themes[theme]);
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// add default themes
|
|
95
|
+
if (config("daisyui.themes") != false) {
|
|
96
|
+
Object.entries(themes).forEach(([theme, index]) => {
|
|
97
|
+
includedThemesObj[theme] = convertThemeColorsToHsl(themes[theme]);
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// add custom themes
|
|
102
|
+
if (Array.isArray(config("daisyui.themes"))) {
|
|
103
|
+
config("daisyui.themes").forEach((item, index) => {
|
|
104
|
+
if (typeof item === "object" && item !== null) {
|
|
105
|
+
Object.entries(item).forEach(([customThemeName, customThemevalue]) => {
|
|
106
|
+
includedThemesObj["[data-theme=" + customThemeName + "]"] =
|
|
107
|
+
convertThemeColorsToHsl(customThemevalue);
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
let themeOrder = [];
|
|
114
|
+
if (Array.isArray(config("daisyui.themes"))) {
|
|
115
|
+
config("daisyui.themes").forEach((theme, index) => {
|
|
116
|
+
if (typeof theme === "object" && theme !== null) {
|
|
117
|
+
Object.entries(theme).forEach(([customThemeName, customThemevalue]) => {
|
|
118
|
+
themeOrder.push(customThemeName);
|
|
119
|
+
});
|
|
120
|
+
} else if (
|
|
121
|
+
includedThemesObj.hasOwnProperty("[data-theme=" + theme + "]")
|
|
122
|
+
) {
|
|
123
|
+
themeOrder.push(theme);
|
|
124
|
+
}
|
|
125
|
+
});
|
|
126
|
+
} else if (config("daisyui.themes") != false) {
|
|
127
|
+
themeOrder = [
|
|
128
|
+
"light",
|
|
129
|
+
"dark",
|
|
130
|
+
"cupcake",
|
|
131
|
+
"bumblebee",
|
|
132
|
+
"emerald",
|
|
133
|
+
"corporate",
|
|
134
|
+
"synthwave",
|
|
135
|
+
"retro",
|
|
136
|
+
"cyberpunk",
|
|
137
|
+
"valentine",
|
|
138
|
+
"halloween",
|
|
139
|
+
"garden",
|
|
140
|
+
"forest",
|
|
141
|
+
"aqua",
|
|
142
|
+
"lofi",
|
|
143
|
+
"pastel",
|
|
144
|
+
"fantasy",
|
|
145
|
+
"wireframe",
|
|
146
|
+
"black",
|
|
147
|
+
"luxury",
|
|
148
|
+
"dracula",
|
|
149
|
+
"cmyk",
|
|
150
|
+
];
|
|
151
|
+
} else if (config("daisyui.themes") == false) {
|
|
152
|
+
themeOrder.push("light");
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
// inject themes in order
|
|
156
|
+
themeOrder.forEach((themeName, index) => {
|
|
157
|
+
if (index === 0) {
|
|
158
|
+
// first theme as root
|
|
159
|
+
addBase({
|
|
160
|
+
[":root"]: includedThemesObj["[data-theme=" + themeName + "]"],
|
|
161
|
+
});
|
|
162
|
+
} else if (index === 1) {
|
|
163
|
+
// auto dark
|
|
164
|
+
if (config("daisyui.darkTheme")) {
|
|
165
|
+
if (
|
|
166
|
+
themeOrder[0] != config("daisyui.darkTheme") &&
|
|
167
|
+
themeOrder.includes(config("daisyui.darkTheme"))
|
|
168
|
+
) {
|
|
169
|
+
addBase({
|
|
170
|
+
["@media (prefers-color-scheme: dark)"]: {
|
|
171
|
+
[":root"]:
|
|
172
|
+
includedThemesObj[
|
|
173
|
+
`[data-theme=${config("daisyui.darkTheme")}]`
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
} else {
|
|
179
|
+
if (themeOrder[0] != "dark" && themeOrder.includes("dark")) {
|
|
180
|
+
addBase({
|
|
181
|
+
["@media (prefers-color-scheme: dark)"]: {
|
|
182
|
+
[":root"]: includedThemesObj["[data-theme=dark]"],
|
|
183
|
+
},
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
// theme 0 with name
|
|
188
|
+
addBase({
|
|
189
|
+
["[data-theme=" + themeOrder[0] + "]"]:
|
|
190
|
+
includedThemesObj["[data-theme=" + themeOrder[0] + "]"],
|
|
191
|
+
});
|
|
192
|
+
// theme 1 with name
|
|
193
|
+
addBase({
|
|
194
|
+
["[data-theme=" + themeOrder[1] + "]"]:
|
|
195
|
+
includedThemesObj["[data-theme=" + themeOrder[1] + "]"],
|
|
196
|
+
});
|
|
197
|
+
} else {
|
|
198
|
+
addBase({
|
|
199
|
+
["[data-theme=" + themeName + "]"]:
|
|
200
|
+
includedThemesObj["[data-theme=" + themeName + "]"],
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
});
|
|
204
|
+
diasyuiIncludedItems.push("themes[" + themeOrder.length + "]");
|
|
205
|
+
|
|
206
|
+
// inject @utilities style needed by components
|
|
207
|
+
if (config("daisyui.utils") != false) {
|
|
208
|
+
addComponents(utilities, { variants: ["responsive"] });
|
|
209
|
+
addComponents(utilitiesUnstyled, { variants: ["responsive"] });
|
|
210
|
+
addComponents(utilitiesStyled, { variants: ["responsive"] });
|
|
211
|
+
diasyuiIncludedItems.push("utilities");
|
|
212
|
+
}
|
|
213
|
+
if (logs) {
|
|
214
|
+
console.log(
|
|
215
|
+
"\x1b[32m%s\x1b[0m",
|
|
216
|
+
"✔︎ Including:",
|
|
217
|
+
"\x1b[0m",
|
|
218
|
+
"" + diasyuiIncludedItems.join(", ")
|
|
219
|
+
);
|
|
220
|
+
console.log();
|
|
221
|
+
console.groupEnd();
|
|
222
|
+
}
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
module.exports = require("tailwindcss/plugin")(mainFunction, {
|
|
226
|
+
theme: { extend: { colors } },
|
|
227
|
+
});
|
package/colors/colorNames.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
"primary" : "--p",
|
|
3
|
-
"primary-focus" : "--pf",
|
|
4
|
-
"primary-content" : "--pc",
|
|
5
|
-
|
|
6
|
-
"secondary" : "--s",
|
|
7
|
-
"secondary-focus" : "--sf",
|
|
8
|
-
"secondary-content" : "--sc",
|
|
9
|
-
|
|
10
|
-
"accent" : "--a",
|
|
11
|
-
"accent-focus" : "--af",
|
|
12
|
-
"accent-content" : "--ac",
|
|
13
|
-
|
|
14
|
-
"neutral" : "--n",
|
|
15
|
-
"neutral-focus" : "--nf",
|
|
16
|
-
"neutral-content" : "--nc",
|
|
17
|
-
|
|
18
|
-
"base-100" : "--b1",
|
|
19
|
-
"base-200" : "--b2",
|
|
20
|
-
"base-300" : "--b3",
|
|
21
|
-
"base-content" : "--bc",
|
|
22
|
-
|
|
23
|
-
"info" : "--in",
|
|
24
|
-
"info-content" : "--inc",
|
|
25
|
-
|
|
26
|
-
"success" : "--su",
|
|
27
|
-
"success-content" : "--suc",
|
|
28
|
-
|
|
29
|
-
"warning" : "--wa",
|
|
30
|
-
"warning-content" : "--wac",
|
|
31
|
-
|
|
32
|
-
"error" : "--er",
|
|
33
|
-
"error-content" : "--erc",
|
|
34
|
-
|
|
35
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
"primary" : "--p",
|
|
3
|
-
"primary-focus" : "--pf",
|
|
4
|
-
"primary-content" : "--pc",
|
|
5
|
-
|
|
6
|
-
"secondary" : "--s",
|
|
7
|
-
"secondary-focus" : "--sf",
|
|
8
|
-
"secondary-content" : "--sc",
|
|
9
|
-
|
|
10
|
-
"accent" : "--a",
|
|
11
|
-
"accent-focus" : "--af",
|
|
12
|
-
"accent-content" : "--ac",
|
|
13
|
-
|
|
14
|
-
"neutral" : "--n",
|
|
15
|
-
"neutral-focus" : "--nf",
|
|
16
|
-
"neutral-content" : "--nc",
|
|
17
|
-
|
|
18
|
-
"base-100" : "--b1",
|
|
19
|
-
"base-200" : "--b2",
|
|
20
|
-
"base-300" : "--b3",
|
|
21
|
-
"base-content" : "--bc",
|
|
22
|
-
|
|
23
|
-
"info" : "--in",
|
|
24
|
-
"info-content" : "--inc",
|
|
25
|
-
|
|
26
|
-
"success" : "--su",
|
|
27
|
-
"success-content" : "--suc",
|
|
28
|
-
|
|
29
|
-
"warning" : "--wa",
|
|
30
|
-
"warning-content" : "--wac",
|
|
31
|
-
|
|
32
|
-
"error" : "--er",
|
|
33
|
-
"error-content" : "--erc",
|
|
34
|
-
|
|
35
|
-
}
|