@salty-css/core 0.0.1-alpha.13 → 0.0.1-alpha.130

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.
Files changed (48) hide show
  1. package/.saltyrc.schema.json +40 -0
  2. package/README.md +143 -26
  3. package/bin/bin-util.d.ts +2 -0
  4. package/bin/index.cjs +2 -0
  5. package/bin/index.d.ts +2 -0
  6. package/bin/index.js +3 -0
  7. package/bin/logger.d.ts +2 -0
  8. package/bin/main.cjs +11 -0
  9. package/bin/main.d.ts +1 -0
  10. package/bin/main.js +260 -0
  11. package/bin/prettier.d.ts +1 -0
  12. package/compiler/get-files.d.ts +3 -0
  13. package/compiler/index.cjs +1 -11
  14. package/compiler/index.d.ts +4 -6
  15. package/compiler/index.js +16 -180
  16. package/config/config-types.d.ts +15 -5
  17. package/dash-case-BJEkFEGQ.cjs +1 -0
  18. package/dash-case-DBThphLm.js +19 -0
  19. package/generator/index.cjs +1 -1
  20. package/generator/index.js +40 -17
  21. package/generator/parse-templates.d.ts +2 -0
  22. package/generator/style-generator.d.ts +14 -4
  23. package/index-84Wroia-.cjs +1 -0
  24. package/index-BrNi5uoh.cjs +21 -0
  25. package/index-D_732b92.js +4 -0
  26. package/index-XN7f6bdr.js +305 -0
  27. package/package.json +20 -2
  28. package/parse-templates-BuKrl3n7.js +100 -0
  29. package/parse-templates-DIOn-gO_.cjs +8 -0
  30. package/pascal-case-BQpR5PdN.js +6 -0
  31. package/pascal-case-iWoaJWwT.cjs +1 -0
  32. package/react-styled-file-CGVf5n1B.js +11 -0
  33. package/react-styled-file-Dkubsz-U.cjs +8 -0
  34. package/react-vanilla-file-CCXbsjIb.js +18 -0
  35. package/react-vanilla-file-CG_WJLam.cjs +15 -0
  36. package/salty.config-BhBY_oOk.js +10 -0
  37. package/salty.config-Dk6ZcCxI.cjs +7 -0
  38. package/templates/salty-reset.d.ts +2 -0
  39. package/types/index.d.ts +48 -21
  40. package/util/camel-case.d.ts +1 -0
  41. package/util/dot-case.d.ts +1 -0
  42. package/util/index.cjs +1 -1
  43. package/util/index.d.ts +2 -0
  44. package/util/index.js +7 -15
  45. package/util/module-type.d.ts +1 -0
  46. package/util/pascal-case.d.ts +1 -0
  47. package/parse-templates-BOSK0Tb6.js +0 -90
  48. package/parse-templates-BY1Xai-_.cjs +0 -8
@@ -0,0 +1,305 @@
1
+ import * as X from "esbuild";
2
+ import { execSync as ce } from "child_process";
3
+ import { t as H, d as R } from "./dash-case-DBThphLm.js";
4
+ import { join as o, parse as I } from "path";
5
+ import { existsSync as Z, writeFileSync as S, mkdirSync as O, readFileSync as J, statSync as ie, readdirSync as le } from "fs";
6
+ import { readFile as pe, writeFile as fe } from "fs/promises";
7
+ import { p as U, a as de, b as ue, c as ge } from "./parse-templates-BuKrl3n7.js";
8
+ import { createLogger as me, format as A, transports as ye } from "winston";
9
+ const Y = (e) => {
10
+ if (!e || e === "/") throw new Error("Could not find package.json file");
11
+ const t = o(e, "package.json");
12
+ return Z(t) ? t : Y(o(e, ".."));
13
+ }, he = async (e) => {
14
+ const t = Y(e);
15
+ return await pe(t, "utf-8").then(JSON.parse).catch(() => {
16
+ });
17
+ }, be = async (e) => {
18
+ const t = await he(e);
19
+ if (t)
20
+ return t.type;
21
+ };
22
+ let v;
23
+ const Q = async (e) => {
24
+ if (v) return v;
25
+ const t = await be(e);
26
+ return t === "module" ? v = "esm" : (t === "commonjs" || import.meta.url.endsWith(".cjs")) && (v = "cjs"), v || "esm";
27
+ }, z = me({
28
+ level: "debug",
29
+ format: A.combine(A.colorize(), A.cli()),
30
+ transports: [new ye.Console({})]
31
+ }), Me = (e) => {
32
+ z.error(e);
33
+ };
34
+ function ee(e) {
35
+ return e ? typeof e != "string" ? ee(String(e)) : e.replace(/[\s-]/g, ".").replace(/[A-Z](?:(?=[^A-Z])|[A-Z]*(?=[A-Z][^A-Z]|$))/g, (t, a) => (a > 0 ? "." : "") + t.toLowerCase()) : "";
36
+ }
37
+ const $e = {
38
+ /** Set box model to border-box */
39
+ "*, *::before, *::after": {
40
+ boxSizing: "border-box"
41
+ },
42
+ /** Remove default margin and padding */
43
+ "*": {
44
+ margin: 0
45
+ },
46
+ /** Remove adjust font properties */
47
+ html: {
48
+ lineHeight: 1.15,
49
+ textSizeAdjust: "100%",
50
+ WebkitFontSmoothing: "antialiased"
51
+ },
52
+ /** Make media elements responsive */
53
+ "img, picture, video, canvas, svg": {
54
+ display: "block",
55
+ maxWidth: "100%"
56
+ },
57
+ /** Avoid overflow of text */
58
+ "p, h1, h2, h3, h4, h5, h6": {
59
+ overflowWrap: "break-word"
60
+ },
61
+ /** Improve text wrapping */
62
+ p: {
63
+ textWrap: "pretty"
64
+ },
65
+ "h1, h2, h3, h4, h5, h6": {
66
+ textWrap: "balance"
67
+ },
68
+ /** Improve button line height */
69
+ button: {
70
+ lineHeight: "1em"
71
+ },
72
+ /** Improve form elements */
73
+ "input, optgroup, select, textarea": {
74
+ fontFamily: "inherit",
75
+ fontSize: "100%",
76
+ lineHeight: "1.15em"
77
+ }
78
+ }, B = {
79
+ externalModules: []
80
+ }, te = (e) => {
81
+ if (B.externalModules.length > 0) return B.externalModules;
82
+ const t = o(e, "salty.config.ts"), r = J(t, "utf8").match(/externalModules:\s?\[(.*)\]/);
83
+ if (!r) return [];
84
+ const l = r[1].split(",").map((s) => s.replace(/['"`]/g, "").trim());
85
+ return B.externalModules = l, l;
86
+ }, W = (e) => o(e, "./saltygen"), Se = ["salty", "css", "styles", "styled"], we = (e = []) => new RegExp(`\\.(${[...Se, ...e].join("|")})\\.`), G = (e, t = []) => we(t).test(e), Fe = async (e) => {
87
+ const t = W(e), a = o(e, "salty.config.ts"), r = o(t, "salty.config.js"), l = await Q(e), s = te(e);
88
+ await X.build({
89
+ entryPoints: [a],
90
+ minify: !0,
91
+ treeShaking: !0,
92
+ bundle: !0,
93
+ outfile: r,
94
+ format: l,
95
+ external: s
96
+ });
97
+ const g = Date.now(), { config: m } = await import(`${r}?t=${g}`);
98
+ return m;
99
+ }, xe = async (e) => {
100
+ const t = await Fe(e), a = /* @__PURE__ */ new Set(), r = (i, f = []) => i ? Object.entries(i).flatMap(([y, d]) => {
101
+ if (!d) return;
102
+ if (typeof d == "object") return r(d, [...f, y]);
103
+ const V = ee(y), _ = R(y), D = [...f, V].join(".");
104
+ a.add(`"${D}"`);
105
+ const x = [...f.map(R), _].join("-"), { result: C } = ge(d);
106
+ return `--${x}: ${C};`;
107
+ }) : [], l = (i) => i ? Object.entries(i).flatMap(([f, y]) => {
108
+ const d = r(y);
109
+ return f === "base" ? d.join("") : `${f} { ${d.join("")} }`;
110
+ }) : [], s = (i) => i ? Object.entries(i).flatMap(([f, y]) => Object.entries(y).flatMap(([d, V]) => {
111
+ const _ = r(V, [f]), D = `.${f}-${d}, [data-${f}="${d}"]`, x = _.join("");
112
+ return `${D} { ${x} }`;
113
+ })) : [], g = r(t.variables), m = l(t.responsiveVariables), w = s(t.conditionalVariables), n = W(e), p = o(n, "css/_variables.css"), h = `:root { ${g.join("")} ${m.join("")} } ${w.join("")}`;
114
+ S(p, h);
115
+ const F = o(n, "css/_global.css"), j = U(t.global, "");
116
+ S(F, `@layer global { ${j} }`);
117
+ const b = o(n, "css/_reset.css"), u = t.reset === "none" ? {} : typeof t.reset == "object" ? t.reset : $e, k = U(u, "");
118
+ S(b, `@layer reset { ${k} }`);
119
+ const c = o(n, "css/_templates.css"), $ = de(t.templates), N = ue(t.templates);
120
+ S(c, $);
121
+ const T = o(n, "types/css-tokens.d.ts"), M = `
122
+ // Variable types
123
+ type VariableTokens = ${[...a].join("|")};
124
+ type PropertyValueToken = \`{\${VariableTokens}}\`;
125
+
126
+ // Template types
127
+ type TemplateTokens = {
128
+ ${Object.entries(N).map(([i, f]) => `${i}?: ${f}`).join(`
129
+ `)}
130
+ }
131
+ `;
132
+ S(T, M);
133
+ }, K = async (e, t, a) => {
134
+ const r = H(t), l = o(a, "./temp");
135
+ Z(l) || O(l);
136
+ const s = I(t);
137
+ let g = J(t, "utf8");
138
+ g = g.replace(/styled\([^"'`{,]+,/g, "styled('div',");
139
+ const m = o(a, "js", r + ".js"), w = te(e), n = await Q(e);
140
+ await X.build({
141
+ stdin: {
142
+ contents: g,
143
+ sourcefile: s.base,
144
+ resolveDir: s.dir,
145
+ loader: "tsx"
146
+ },
147
+ minify: !1,
148
+ treeShaking: !0,
149
+ bundle: !0,
150
+ outfile: m,
151
+ format: n,
152
+ target: ["node20"],
153
+ keepNames: !0,
154
+ external: w,
155
+ packages: "external"
156
+ });
157
+ const p = Date.now();
158
+ return await import(`${m}?t=${p}`);
159
+ }, L = async (e) => {
160
+ const t = W(e), a = o(t, "salty.config.js"), { config: r } = await import(a);
161
+ return r;
162
+ }, se = () => {
163
+ try {
164
+ return process.env.NODE_ENV === "production";
165
+ } catch {
166
+ return !1;
167
+ }
168
+ }, ve = async (e, t = se()) => {
169
+ try {
170
+ const a = Date.now();
171
+ t ? z.info("Generating CSS in production mode! 🔥") : z.info("Generating CSS in development mode! 🚀");
172
+ const r = [], l = [], s = W(e), g = o(s, "index.css");
173
+ (() => {
174
+ Z(s) && ce("rm -rf " + s), O(s), O(o(s, "css")), O(o(s, "types"));
175
+ })(), await xe(e);
176
+ const w = await L(e);
177
+ async function n(c, $) {
178
+ const N = ["node_modules", "saltygen"], T = ie(c);
179
+ if (T.isDirectory()) {
180
+ const E = le(c);
181
+ if (N.some((i) => c.includes(i))) return;
182
+ await Promise.all(E.map((i) => n(o(c, i), o($, i))));
183
+ } else if (T.isFile() && G(c)) {
184
+ const M = await K(e, c, s), i = [];
185
+ Object.entries(M).forEach(([D, x]) => {
186
+ if (x.isKeyframes && x.css) {
187
+ const q = `a_${x.animationName}.css`, re = `css/${q}`, ae = o(s, re);
188
+ r.push(q), S(ae, x.css);
189
+ return;
190
+ }
191
+ if (!x.generator) return;
192
+ const C = x.generator._withBuildContext({
193
+ name: D,
194
+ config: w,
195
+ prod: t
196
+ });
197
+ l[C.priority] || (l[C.priority] = []), l[C.priority].push(C.cssFileName), i.push(C.cssFileName);
198
+ const ne = `css/${C.cssFileName}`, oe = o(s, ne);
199
+ S(oe, C.css);
200
+ });
201
+ const f = i.map((D) => `@import url('./${D}');`).join(`
202
+ `), y = H(c, 6), d = I(c), V = R(d.name), _ = o(s, `css/f_${V}-${y}.css`);
203
+ S(_, f);
204
+ }
205
+ }
206
+ await n(e, s);
207
+ const p = r.map((c) => `@import url('./css/${c}');`).join(`
208
+ `);
209
+ let b = `@layer reset, global, l0, l1, l2, l3, l4, l5, l6, l7, l8;
210
+
211
+ ${["_variables.css", "_reset.css", "_global.css", "_templates.css"].filter((c) => {
212
+ try {
213
+ return J(o(s, "css", c), "utf8").length > 0;
214
+ } catch {
215
+ return !1;
216
+ }
217
+ }).map((c) => `@import url('./css/${c}');`).join(`
218
+ `)}
219
+ ${p}`;
220
+ if (w.importStrategy !== "component") {
221
+ const c = l.flat().map(($) => `@import url('./css/${$}');`).join(`
222
+ `);
223
+ b += c;
224
+ }
225
+ S(g, b);
226
+ const u = Date.now() - a, k = u < 200 ? "🔥" : u < 500 ? "🚀" : u < 1e3 ? "🎉" : u < 2e3 ? "🚗" : u < 5e3 ? "🤔" : "🥴";
227
+ z.info(`Generated CSS in ${u}ms! ${k}`);
228
+ } catch (a) {
229
+ console.error(a);
230
+ }
231
+ }, Ee = async (e, t) => {
232
+ try {
233
+ const a = [], r = o(e, "./saltygen"), l = o(r, "index.css");
234
+ if (G(t)) {
235
+ const g = await L(e), m = await K(e, t, r);
236
+ Object.entries(m).forEach(([F, j]) => {
237
+ if (!j.generator) return;
238
+ const b = j.generator._withBuildContext({
239
+ name: F,
240
+ config: g
241
+ }), P = `css/${b.cssFileName}`, u = o(r, P);
242
+ a.push(b.cssFileName), S(u, b.css);
243
+ });
244
+ const w = J(l, "utf8").split(`
245
+ `), n = a.map((F) => `@import url('../saltygen/css/${F}');`), h = [.../* @__PURE__ */ new Set([...w, ...n])].join(`
246
+ `);
247
+ S(l, h);
248
+ }
249
+ } catch (a) {
250
+ console.error(a);
251
+ }
252
+ }, Ve = async (e, t, a = se()) => {
253
+ try {
254
+ const r = o(e, "./saltygen");
255
+ if (G(t)) {
256
+ const s = J(t, "utf8");
257
+ s.replace(/^(?!export\s)const\s.*/gm, (p) => `export ${p}`) !== s && await fe(t, s);
258
+ const m = await L(e), w = await K(e, t, r);
259
+ let n = s;
260
+ if (Object.entries(w).forEach(([p, h]) => {
261
+ var y;
262
+ if (h.isKeyframes || !h.generator) return;
263
+ const F = h.generator._withBuildContext({
264
+ name: p,
265
+ config: m,
266
+ prod: a
267
+ }), j = new RegExp(`\\s${p}[=\\s]+[^()]+styled\\(([^,]+),`, "g").exec(s);
268
+ if (!j) return console.error("Could not find the original declaration");
269
+ const b = (y = j.at(1)) == null ? void 0 : y.trim(), P = new RegExp(`\\s${p}[=\\s]+styled\\(`, "g").exec(n);
270
+ if (!P) return console.error("Could not find the original declaration");
271
+ const { index: u } = P;
272
+ let k = !1;
273
+ const c = setTimeout(() => k = !0, 5e3);
274
+ let $ = 0, N = !1, T = 0;
275
+ for (; !N && !k; ) {
276
+ const d = n[u + $];
277
+ d === "(" && T++, d === ")" && T--, T === 0 && d === ")" && (N = !0), $ > n.length && (k = !0), $++;
278
+ }
279
+ if (!k) clearTimeout(c);
280
+ else throw new Error("Failed to find the end of the styled call and timed out");
281
+ const E = u + $, M = n.slice(u, E), i = n, f = ` ${p} = styled(${b}, "${F.classNames}", ${JSON.stringify(F.props)});`;
282
+ n = n.replace(M, f), i === n && console.error("Minimize file failed to change content", { name: p, tagName: b });
283
+ }), m.importStrategy === "component") {
284
+ const p = H(t, 6), h = I(t);
285
+ n = `import '../../saltygen/css/${`f_${R(h.name)}-${p}.css`}';
286
+ ${n}`;
287
+ }
288
+ return n = n.replace("{ styled }", "{ styledClient as styled }"), n = n.replace("@salty-css/react/styled", "@salty-css/react/styled-client"), n;
289
+ }
290
+ } catch (r) {
291
+ console.error("Error in minimizeFile:", r);
292
+ }
293
+ };
294
+ export {
295
+ Me as a,
296
+ we as b,
297
+ xe as c,
298
+ K as d,
299
+ Ee as e,
300
+ ve as g,
301
+ G as i,
302
+ z as l,
303
+ Ve as m,
304
+ Se as s
305
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salty-css/core",
3
- "version": "0.0.1-alpha.13",
3
+ "version": "0.0.1-alpha.130",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "typings": "./dist/index.d.ts",
@@ -10,7 +10,12 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "homepage": "https://github.com/margarita-form/salty-css",
13
+ "description": "Core library for Salty CSS. Will be used by other Salty CSS libraries and plugins.",
14
+ "homepage": "https://salty-css.dev/",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/margarita-form/salty-css.git"
18
+ },
14
19
  "bugs": {
15
20
  "url": "https://github.com/margarita-form/salty-css/issues"
16
21
  },
@@ -23,11 +28,18 @@
23
28
  "name": "core"
24
29
  },
25
30
  "peerDependencies": {
31
+ "commander": ">=12.x",
32
+ "ejs": ">=3.x",
26
33
  "esbuild": ">=0.21.x",
34
+ "ora": ">=8.x",
27
35
  "react": ">=18.x || >=19.x",
28
36
  "winston": ">=3.x"
29
37
  },
30
38
  "exports": {
39
+ "./bin/main": {
40
+ "import": "./bin/main.js",
41
+ "require": "./bin/main.cjs"
42
+ },
31
43
  "./compiler": {
32
44
  "import": "./compiler/index.js",
33
45
  "require": "./compiler/index.cjs"
@@ -52,5 +64,11 @@
52
64
  "import": "./util/index.js",
53
65
  "require": "./util/index.cjs"
54
66
  }
67
+ },
68
+ "bin": {
69
+ "salty": "./bin/index.js",
70
+ "salty-css": "./bin/index.js",
71
+ "salty-css-cjs": "./bin/index.cjs",
72
+ "@salty-css/core": "./bin/index.js"
55
73
  }
56
74
  }
@@ -0,0 +1,100 @@
1
+ import { d as O } from "./dash-case-DBThphLm.js";
2
+ const N = (t, e) => {
3
+ if (typeof t != "string") return { result: t };
4
+ if (!e) return { result: t };
5
+ const s = [];
6
+ return Object.values(e).forEach((n) => {
7
+ const { pattern: o, transform: i } = n;
8
+ t = t.replace(o, (d) => {
9
+ const { value: c, css: j } = i(d);
10
+ return j && s.push(j), c;
11
+ });
12
+ }), { result: t, additionalCss: s };
13
+ }, P = (t) => typeof t != "string" ? { result: t } : /\{[^{}]+\}/g.test(t) ? { result: t.replace(/\{([^{}]+)\}/g, (...n) => `var(--${O(n[1].replaceAll(".", "-"))})`) } : { result: t }, a = (t, e, s, n) => {
14
+ if (!t) return "";
15
+ const o = [], i = Object.entries(t).reduce((c, [j, r]) => {
16
+ const f = j.trim();
17
+ if (typeof r == "function" && (r = r()), typeof r == "object") {
18
+ if (!r) return c;
19
+ if (f === "variants")
20
+ return Object.entries(r).forEach(([p, u]) => {
21
+ u && Object.entries(u).forEach(([m, b]) => {
22
+ if (!b) return;
23
+ const y = `${e}.${p}-${m}`, l = a(b, y, s);
24
+ o.push(l);
25
+ });
26
+ }), c;
27
+ if (f === "defaultVariants")
28
+ return c;
29
+ if (f === "compoundVariants")
30
+ return r.forEach((p) => {
31
+ const { css: u, ...m } = p, b = Object.entries(m).reduce((l, [w, W]) => `${l}.${w}-${W}`, e), y = a(u, b, s);
32
+ o.push(y);
33
+ }), c;
34
+ if (f.startsWith("@")) {
35
+ const p = a(r, e, s), u = `${f} {
36
+ ${p.replace(`
37
+ `, `
38
+ `)}
39
+ }`;
40
+ return o.push(u), c;
41
+ }
42
+ const $ = j.includes("&") ? f.replace("&", e) : f.startsWith(":") ? `${e}${f}` : `${e} ${f}`, h = a(r, $, s);
43
+ return o.push(h), c;
44
+ }
45
+ if (n != null && n.templates && n.templates[f]) {
46
+ const h = r.split(".").reduce((p, u) => p[u], n.templates[f]);
47
+ if (h) {
48
+ const p = a(h, "");
49
+ return `${c}${p}`;
50
+ }
51
+ return console.warn(`Template "${f}" with path of "${r}" was not found in config!`), c;
52
+ }
53
+ const S = f.startsWith("-") ? f : O(f), g = ($, h = ";") => c = `${c}${$}${h}`, T = ($) => g(`${S}:${$}`);
54
+ if (typeof r == "number") return T(r);
55
+ if (typeof r != "string")
56
+ if ("toString" in r) r = r.toString();
57
+ else return c;
58
+ const { modifiers: V } = n || {}, k = function* () {
59
+ yield P(r), yield N(r, V);
60
+ }();
61
+ for (const { result: $, additionalCss: h = [] } of k)
62
+ r = $, h.forEach((p) => {
63
+ const u = a(p, "");
64
+ g(u, "");
65
+ });
66
+ return T(r);
67
+ }, "");
68
+ if (!i) return o.join(`
69
+ `);
70
+ if (!e) return i;
71
+ let d = "";
72
+ return s !== void 0 ? d = `@layer l${s} { ${e} { ${i} } }` : d = `${e} { ${i} }`, [d, ...o].join(`
73
+ `);
74
+ }, _ = (t, e = []) => {
75
+ if (!t) return "";
76
+ const s = [], n = {};
77
+ if (Object.entries(t).forEach(([o, i]) => {
78
+ if (typeof i == "object") {
79
+ if (!i) return;
80
+ const d = o.trim(), c = _(i, [...e, d]);
81
+ s.push(c);
82
+ } else
83
+ n[o] = i;
84
+ }), Object.keys(n).length) {
85
+ const o = e.map(O).join("-"), i = a(n, `.${o}`);
86
+ s.push(i);
87
+ }
88
+ return s.join(`
89
+ `);
90
+ }, A = (t) => Object.keys(t), K = (t) => Object.entries(t).reduce((e, [s, n]) => (typeof n == "object" && (e[s] = E(n).map((o) => `"${o}"`).join(" | ")), e), {}), E = (t, e = "", s = /* @__PURE__ */ new Set()) => t ? (Object.entries(t).forEach(([n, o]) => {
91
+ const i = e ? `${e}.${n}` : n;
92
+ return typeof o == "object" ? E(o, i, s) : s.add(e);
93
+ }), [...s]) : [];
94
+ export {
95
+ _ as a,
96
+ K as b,
97
+ P as c,
98
+ A as g,
99
+ a as p
100
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";const T=require("./dash-case-BJEkFEGQ.cjs"),N=(t,e)=>{if(typeof t!="string")return{result:t};if(!e)return{result:t};const r=[];return Object.values(e).forEach(n=>{const{pattern:o,transform:i}=n;t=t.replace(o,d=>{const{value:c,css:j}=i(d);return j&&r.push(j),c})}),{result:t,additionalCss:r}},S=t=>typeof t!="string"?{result:t}:/\{[^{}]+\}/g.test(t)?{result:t.replace(/\{([^{}]+)\}/g,(...n)=>`var(--${T.dashCase(n[1].replaceAll(".","-"))})`)}:{result:t},a=(t,e,r,n)=>{if(!t)return"";const o=[],i=Object.entries(t).reduce((c,[j,s])=>{const p=j.trim();if(typeof s=="function"&&(s=s()),typeof s=="object"){if(!s)return c;if(p==="variants")return Object.entries(s).forEach(([f,u])=>{u&&Object.entries(u).forEach(([l,m])=>{if(!m)return;const y=`${e}.${f}-${l}`,b=a(m,y,r);o.push(b)})}),c;if(p==="defaultVariants")return c;if(p==="compoundVariants")return s.forEach(f=>{const{css:u,...l}=f,m=Object.entries(l).reduce((b,[q,K])=>`${b}.${q}-${K}`,e),y=a(u,m,r);o.push(y)}),c;if(p.startsWith("@")){const f=a(s,e,r),u=`${p} {
2
+ ${f.replace(`
3
+ `,`
4
+ `)}
5
+ }`;return o.push(u),c}const $=j.includes("&")?p.replace("&",e):p.startsWith(":")?`${e}${p}`:`${e} ${p}`,h=a(s,$,r);return o.push(h),c}if(n!=null&&n.templates&&n.templates[p]){const h=s.split(".").reduce((f,u)=>f[u],n.templates[p]);if(h){const f=a(h,"");return`${c}${f}`}return console.warn(`Template "${p}" with path of "${s}" was not found in config!`),c}const k=p.startsWith("-")?p:T.dashCase(p),O=($,h=";")=>c=`${c}${$}${h}`,g=$=>O(`${k}:${$}`);if(typeof s=="number")return g(s);if(typeof s!="string")if("toString"in s)s=s.toString();else return c;const{modifiers:w}=n||{},W=function*(){yield S(s),yield N(s,w)}();for(const{result:$,additionalCss:h=[]}of W)s=$,h.forEach(f=>{const u=a(f,"");O(u,"")});return g(s)},"");if(!i)return o.join(`
6
+ `);if(!e)return i;let d="";return r!==void 0?d=`@layer l${r} { ${e} { ${i} } }`:d=`${e} { ${i} }`,[d,...o].join(`
7
+ `)},E=(t,e=[])=>{if(!t)return"";const r=[],n={};if(Object.entries(t).forEach(([o,i])=>{if(typeof i=="object"){if(!i)return;const d=o.trim(),c=E(i,[...e,d]);r.push(c)}else n[o]=i}),Object.keys(n).length){const o=e.map(T.dashCase).join("-"),i=a(n,`.${o}`);r.push(i)}return r.join(`
8
+ `)},P=t=>Object.keys(t),_=t=>Object.entries(t).reduce((e,[r,n])=>(typeof n=="object"&&(e[r]=V(n).map(o=>`"${o}"`).join(" | ")),e),{}),V=(t,e="",r=new Set)=>t?(Object.entries(t).forEach(([n,o])=>{const i=e?`${e}.${n}`:n;return typeof o=="object"?V(o,i,r):r.add(e)}),[...r]):[];exports.getTemplateKeys=P;exports.getTemplateTypes=_;exports.parseStyles=a;exports.parseTemplates=E;exports.parseValueTokens=S;
@@ -0,0 +1,6 @@
1
+ function p(e) {
2
+ return e ? typeof e != "string" ? p(String(e)) : e.replace(/\s/g, "-").replace(/[-_]([a-z0-9])/g, (a) => a[1].toUpperCase()).replace(/^[a-z]/, (a) => a.toUpperCase()) : "";
3
+ }
4
+ export {
5
+ p
6
+ };
@@ -0,0 +1 @@
1
+ "use strict";function r(e){return e?typeof e!="string"?r(String(e)):e.replace(/\s/g,"-").replace(/[-_]([a-z0-9])/g,a=>a[1].toUpperCase()).replace(/^[a-z]/,a=>a.toUpperCase()):""}exports.pascalCase=r;
@@ -0,0 +1,11 @@
1
+ const e = `import { styled } from "@salty-css/react/styled";
2
+
3
+ export const <%- name %> = styled('<%- tag %>', {
4
+ <% if(className) { %>className: '<%- className %>',<% } %>
5
+ base: {
6
+ // Add your styles here
7
+ }
8
+ })`;
9
+ export {
10
+ e as default
11
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=`import { styled } from "@salty-css/react/styled";
2
+
3
+ export const <%- name %> = styled('<%- tag %>', {
4
+ <% if(className) { %>className: '<%- className %>',<% } %>
5
+ base: {
6
+ // Add your styles here
7
+ }
8
+ })`;exports.default=e;
@@ -0,0 +1,18 @@
1
+ const n = `import { <%- styledComponentName %> } from "./<%- fileName %>.css";
2
+
3
+ interface <%- componentName %>Props {
4
+ text?: string;
5
+ }
6
+
7
+ export const <%- componentName %> = ({ text = 'Lorem ipsum' }: <%- componentName %>Props) => {
8
+ return (
9
+ <<%- styledComponentName %>>
10
+ {text}
11
+ </<%- styledComponentName %>>
12
+ );
13
+ };
14
+
15
+ export default <%- componentName %>;`;
16
+ export {
17
+ n as default
18
+ };
@@ -0,0 +1,15 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=`import { <%- styledComponentName %> } from "./<%- fileName %>.css";
2
+
3
+ interface <%- componentName %>Props {
4
+ text?: string;
5
+ }
6
+
7
+ export const <%- componentName %> = ({ text = 'Lorem ipsum' }: <%- componentName %>Props) => {
8
+ return (
9
+ <<%- styledComponentName %>>
10
+ {text}
11
+ </<%- styledComponentName %>>
12
+ );
13
+ };
14
+
15
+ export default <%- componentName %>;`;exports.default=e;
@@ -0,0 +1,10 @@
1
+ const n = `import { defineConfig } from '@salty-css/core/config';
2
+
3
+ export const config = defineConfig({
4
+ // Add your custom config here
5
+ externalModules: ['react', 'react-dom']
6
+ });
7
+ `;
8
+ export {
9
+ n as default
10
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=`import { defineConfig } from '@salty-css/core/config';
2
+
3
+ export const config = defineConfig({
4
+ // Add your custom config here
5
+ externalModules: ['react', 'react-dom']
6
+ });
7
+ `;exports.default=e;
@@ -0,0 +1,2 @@
1
+ import { GlobalStyles } from '../config/config-types';
2
+ export declare const saltyReset: GlobalStyles;
package/types/index.d.ts CHANGED
@@ -1,32 +1,40 @@
1
- import { AllHTMLAttributes, ReactDOM, ReactNode } from 'react';
1
+ import { ReactNode } from 'react';
2
2
  import { StyleComponentGenerator } from '../generator';
3
- import { OrString } from './util-types';
3
+ import { NeverObj, OrAny, OrString } from './util-types';
4
+ import type * as CSS from 'csstype';
4
5
  export type CreateElementProps = {
5
6
  extend?: Tag<any>;
6
7
  children?: ReactNode;
7
8
  className?: string;
8
9
  element?: string;
9
- passVariantProps?: boolean;
10
- style?: any;
10
+ passProps?: boolean | string | string[];
11
+ style?: CssProperties | {
12
+ [key: string]: PropertyValueToken | NeverObj;
13
+ };
11
14
  /** vks = Variant key set */
12
15
  _vks?: Set<string>;
13
16
  };
14
- export type StyledComponentProps = Record<string, unknown> & CreateElementProps & CssRuntimeValues;
17
+ export type StyledComponentProps = Record<string, unknown> & CreateElementProps;
15
18
  type FnComponent<PROPS extends StyledComponentProps> = {
16
- (props: PROPS): ReactNode;
19
+ (props: OrAny | PROPS): ReactNode;
17
20
  generator?: StyleComponentGenerator;
18
21
  };
19
- export type Tag<PROPS extends StyledComponentProps> = OrString | keyof ReactDOM | FnComponent<PROPS>;
20
- export type CompoundVariant = {
21
- [key: PropertyKey]: any;
22
- css: CssStyles;
22
+ export type Tag<PROPS extends StyledComponentProps> = OrString | keyof HTMLElementTagNameMap | FnComponent<PROPS>;
23
+ type CSSPropertyValueFunction = (params?: any) => any;
24
+ export type CssProperties = {
25
+ [key in keyof CSS.Properties]: CSS.Properties[key] | PropertyValueToken | CSSPropertyValueFunction | NeverObj;
23
26
  };
24
- type InvalidVariantKeys = keyof AllHTMLAttributes<HTMLElement>;
25
- type StyleKeys = keyof Required<AllHTMLAttributes<HTMLElement>>['style'];
26
- export type StyleValue<K extends string> = K extends StyleKeys ? Required<AllHTMLAttributes<HTMLElement>>['style'][K] : never;
27
+ type CssPropertyKeys = keyof CssProperties;
28
+ export type StyleValue<K extends string> = K extends CssPropertyKeys ? CssProperties[K] : never;
29
+ type InvalidVariantKeys = '' | 'css';
27
30
  type VariantOptions = {
28
31
  [key in InvalidVariantKeys]?: never;
29
32
  };
33
+ export type CompoundVariant = {
34
+ [key: PropertyKey]: string | boolean | undefined;
35
+ } | {
36
+ css: CssStyles;
37
+ };
30
38
  type Variants = {
31
39
  variants?: VariantOptions & {
32
40
  [key: PropertyKey]: {
@@ -38,25 +46,44 @@ type Variants = {
38
46
  };
39
47
  compoundVariants?: CompoundVariant[];
40
48
  };
41
- type VariantPropValue<T> = T extends 'true' ? 'true' | true : T;
42
- export type VariantProps<STYLES extends StyledParams> = STYLES['variants'] extends undefined ? {} : {
43
- [K in keyof STYLES['variants']]?: VariantPropValue<keyof STYLES['variants'][K]> | '';
49
+ type BooleanVariantValue = 'true' | 'false' | boolean;
50
+ type VariantPropValue<T> = T extends 'true' ? BooleanVariantValue : T extends 'false' ? BooleanVariantValue : T extends boolean ? BooleanVariantValue : T | '';
51
+ type PickType<T, K extends AllKeys<T>> = T extends {
52
+ [k in K]?: any;
53
+ } ? T[K] : undefined;
54
+ type AllKeys<T> = T extends any ? keyof T : never;
55
+ export type Merge<T> = {
56
+ [k in AllKeys<T>]?: PickType<T, k>;
44
57
  };
45
- export type ParentComponentProps<TAG extends Tag<any>> = TAG extends (props: infer P) => ReactNode ? P : unknown;
46
- export type CssRuntimeValues = {
47
- cssValues?: Record<string, unknown>;
58
+ export type VariantProps<STYLES extends StyledParams, B = STYLES['variants'] extends undefined ? object : STYLES['variants'], C = STYLES['compoundVariants'] extends CompoundVariant[] ? Merge<STYLES['compoundVariants'][number]> : object> = Merge<{
59
+ [K in keyof B]?: K extends 'css' ? never : VariantPropValue<keyof B[K]>;
60
+ } | {
61
+ [K in keyof C]?: K extends 'css' ? never : VariantPropValue<C[K]>;
62
+ }>;
63
+ type CssValuePropKey = `props-${string}`;
64
+ export type ValueProps = {
65
+ [key: CssValuePropKey]: string;
48
66
  };
67
+ export type ParentComponentProps<TAG extends Tag<any>> = TAG extends (props: infer P) => ReactNode ? P : object;
49
68
  type StylePropertyValue = Record<never, never> & unknown;
50
69
  export type CssStyles = {
51
- [key in StyleKeys | OrString]?: StyleValue<key> | StylePropertyValue | PropertyValueToken | CssStyles;
70
+ [key in OrString]?: CssProperties | StylePropertyValue | PropertyValueToken | TemplateTokens | CssStyles;
52
71
  };
53
72
  export type Styles = CssStyles & Variants;
54
73
  export interface GeneratorOptions {
55
74
  className?: string;
56
75
  displayName?: string;
57
76
  element?: string;
77
+ passProps?: boolean | string | string[];
78
+ defaultProps?: Record<PropertyKey, unknown>;
58
79
  }
80
+ interface Base extends CssProperties, CssStyles, CssPseudos, TemplateTokens {
81
+ }
82
+ type Pseudos = CSS.Pseudos | `&${CSS.Pseudos}`;
83
+ type CssPseudos = {
84
+ [P in Pseudos]?: Base;
85
+ };
59
86
  export interface StyledParams extends GeneratorOptions, Variants {
60
- base?: CssStyles;
87
+ base?: Base;
61
88
  }
62
89
  export {};