@funstack/static 0.0.1-alpha.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.
Files changed (36) hide show
  1. package/dist/build-BhjMQ5b5.mjs +5 -0
  2. package/dist/build2-BFobw-wK.mjs +5269 -0
  3. package/dist/build2-BFobw-wK.mjs.map +1 -0
  4. package/dist/chunk-CVYhg9ik.mjs +45 -0
  5. package/dist/chunk-ezxmLbPQ-BTJgBwYB.mjs +29 -0
  6. package/dist/chunk-ezxmLbPQ-BTJgBwYB.mjs.map +1 -0
  7. package/dist/chunk-yG6w5hYl.mjs +41 -0
  8. package/dist/chunk-yG6w5hYl.mjs.map +1 -0
  9. package/dist/config-ChWWLT6T.mjs +41331 -0
  10. package/dist/config-ChWWLT6T.mjs.map +1 -0
  11. package/dist/dist-CijqjcI1.mjs +6699 -0
  12. package/dist/dist-CijqjcI1.mjs.map +1 -0
  13. package/dist/false-CW0Ab7Sy.mjs +6 -0
  14. package/dist/false-CW0Ab7Sy.mjs.map +1 -0
  15. package/dist/false-CoaQMKhH.mjs +3 -0
  16. package/dist/index.d.mts +30 -0
  17. package/dist/index.d.mts.map +1 -0
  18. package/dist/index.mjs +6083 -0
  19. package/dist/index.mjs.map +1 -0
  20. package/dist/lib-BY2rcZzh.mjs +366 -0
  21. package/dist/lib-BY2rcZzh.mjs.map +1 -0
  22. package/dist/node-entry-Elsz8XBx.mjs +18443 -0
  23. package/dist/node-entry-Elsz8XBx.mjs.map +1 -0
  24. package/dist/parseAst-C9pD5vU6.mjs +2109 -0
  25. package/dist/parseAst-C9pD5vU6.mjs.map +1 -0
  26. package/dist/picocolors-BxaHL81J-CyL9Yrra.mjs +74 -0
  27. package/dist/picocolors-BxaHL81J-CyL9Yrra.mjs.map +1 -0
  28. package/dist/postcss-CQ0jlpM-.mjs +5439 -0
  29. package/dist/postcss-CQ0jlpM-.mjs.map +1 -0
  30. package/dist/postcss-import-D8PxJXZF.mjs +452 -0
  31. package/dist/postcss-import-D8PxJXZF.mjs.map +1 -0
  32. package/dist/rollup-Cs2z7Zqk.mjs +9 -0
  33. package/dist/rollup-Cs2z7Zqk.mjs.map +1 -0
  34. package/dist/watch-70G_ECVN.mjs +7044 -0
  35. package/dist/watch-70G_ECVN.mjs.map +1 -0
  36. package/package.json +48 -0
@@ -0,0 +1,366 @@
1
+ import { t as __commonJSMin } from "./chunk-yG6w5hYl.mjs";
2
+
3
+ //#region ../../node_modules/.pnpm/vite@7.3.1_@types+node@25.0.6_terser@5.44.1/node_modules/vite/dist/node/chunks/lib.js
4
+ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
5
+ var openParentheses = "(".charCodeAt(0);
6
+ var closeParentheses = ")".charCodeAt(0);
7
+ var singleQuote = "'".charCodeAt(0);
8
+ var doubleQuote = "\"".charCodeAt(0);
9
+ var backslash = "\\".charCodeAt(0);
10
+ var slash = "/".charCodeAt(0);
11
+ var comma = ",".charCodeAt(0);
12
+ var colon = ":".charCodeAt(0);
13
+ var star = "*".charCodeAt(0);
14
+ var uLower = "u".charCodeAt(0);
15
+ var uUpper = "U".charCodeAt(0);
16
+ var plus$1 = "+".charCodeAt(0);
17
+ var isUnicodeRange = /^[a-f0-9?-]+$/i;
18
+ module.exports = function(input) {
19
+ var tokens = [];
20
+ var value = input;
21
+ var next, quote, prev, token, escape, escapePos, whitespacePos, parenthesesOpenPos;
22
+ var pos = 0;
23
+ var code = value.charCodeAt(pos);
24
+ var max = value.length;
25
+ var stack = [{ nodes: tokens }];
26
+ var balanced = 0;
27
+ var parent;
28
+ var name = "";
29
+ var before = "";
30
+ var after = "";
31
+ while (pos < max) if (code <= 32) {
32
+ next = pos;
33
+ do {
34
+ next += 1;
35
+ code = value.charCodeAt(next);
36
+ } while (code <= 32);
37
+ token = value.slice(pos, next);
38
+ prev = tokens[tokens.length - 1];
39
+ if (code === closeParentheses && balanced) after = token;
40
+ else if (prev && prev.type === "div") {
41
+ prev.after = token;
42
+ prev.sourceEndIndex += token.length;
43
+ } else if (code === comma || code === colon || code === slash && value.charCodeAt(next + 1) !== star && (!parent || parent && parent.type === "function" && parent.value !== "calc")) before = token;
44
+ else tokens.push({
45
+ type: "space",
46
+ sourceIndex: pos,
47
+ sourceEndIndex: next,
48
+ value: token
49
+ });
50
+ pos = next;
51
+ } else if (code === singleQuote || code === doubleQuote) {
52
+ next = pos;
53
+ quote = code === singleQuote ? "'" : "\"";
54
+ token = {
55
+ type: "string",
56
+ sourceIndex: pos,
57
+ quote
58
+ };
59
+ do {
60
+ escape = false;
61
+ next = value.indexOf(quote, next + 1);
62
+ if (~next) {
63
+ escapePos = next;
64
+ while (value.charCodeAt(escapePos - 1) === backslash) {
65
+ escapePos -= 1;
66
+ escape = !escape;
67
+ }
68
+ } else {
69
+ value += quote;
70
+ next = value.length - 1;
71
+ token.unclosed = true;
72
+ }
73
+ } while (escape);
74
+ token.value = value.slice(pos + 1, next);
75
+ token.sourceEndIndex = token.unclosed ? next : next + 1;
76
+ tokens.push(token);
77
+ pos = next + 1;
78
+ code = value.charCodeAt(pos);
79
+ } else if (code === slash && value.charCodeAt(pos + 1) === star) {
80
+ next = value.indexOf("*/", pos);
81
+ token = {
82
+ type: "comment",
83
+ sourceIndex: pos,
84
+ sourceEndIndex: next + 2
85
+ };
86
+ if (next === -1) {
87
+ token.unclosed = true;
88
+ next = value.length;
89
+ token.sourceEndIndex = next;
90
+ }
91
+ token.value = value.slice(pos + 2, next);
92
+ tokens.push(token);
93
+ pos = next + 2;
94
+ code = value.charCodeAt(pos);
95
+ } else if ((code === slash || code === star) && parent && parent.type === "function" && parent.value === "calc") {
96
+ token = value[pos];
97
+ tokens.push({
98
+ type: "word",
99
+ sourceIndex: pos - before.length,
100
+ sourceEndIndex: pos + token.length,
101
+ value: token
102
+ });
103
+ pos += 1;
104
+ code = value.charCodeAt(pos);
105
+ } else if (code === slash || code === comma || code === colon) {
106
+ token = value[pos];
107
+ tokens.push({
108
+ type: "div",
109
+ sourceIndex: pos - before.length,
110
+ sourceEndIndex: pos + token.length,
111
+ value: token,
112
+ before,
113
+ after: ""
114
+ });
115
+ before = "";
116
+ pos += 1;
117
+ code = value.charCodeAt(pos);
118
+ } else if (openParentheses === code) {
119
+ next = pos;
120
+ do {
121
+ next += 1;
122
+ code = value.charCodeAt(next);
123
+ } while (code <= 32);
124
+ parenthesesOpenPos = pos;
125
+ token = {
126
+ type: "function",
127
+ sourceIndex: pos - name.length,
128
+ value: name,
129
+ before: value.slice(parenthesesOpenPos + 1, next)
130
+ };
131
+ pos = next;
132
+ if (name === "url" && code !== singleQuote && code !== doubleQuote) {
133
+ next -= 1;
134
+ do {
135
+ escape = false;
136
+ next = value.indexOf(")", next + 1);
137
+ if (~next) {
138
+ escapePos = next;
139
+ while (value.charCodeAt(escapePos - 1) === backslash) {
140
+ escapePos -= 1;
141
+ escape = !escape;
142
+ }
143
+ } else {
144
+ value += ")";
145
+ next = value.length - 1;
146
+ token.unclosed = true;
147
+ }
148
+ } while (escape);
149
+ whitespacePos = next;
150
+ do {
151
+ whitespacePos -= 1;
152
+ code = value.charCodeAt(whitespacePos);
153
+ } while (code <= 32);
154
+ if (parenthesesOpenPos < whitespacePos) {
155
+ if (pos !== whitespacePos + 1) token.nodes = [{
156
+ type: "word",
157
+ sourceIndex: pos,
158
+ sourceEndIndex: whitespacePos + 1,
159
+ value: value.slice(pos, whitespacePos + 1)
160
+ }];
161
+ else token.nodes = [];
162
+ if (token.unclosed && whitespacePos + 1 !== next) {
163
+ token.after = "";
164
+ token.nodes.push({
165
+ type: "space",
166
+ sourceIndex: whitespacePos + 1,
167
+ sourceEndIndex: next,
168
+ value: value.slice(whitespacePos + 1, next)
169
+ });
170
+ } else {
171
+ token.after = value.slice(whitespacePos + 1, next);
172
+ token.sourceEndIndex = next;
173
+ }
174
+ } else {
175
+ token.after = "";
176
+ token.nodes = [];
177
+ }
178
+ pos = next + 1;
179
+ token.sourceEndIndex = token.unclosed ? next : pos;
180
+ code = value.charCodeAt(pos);
181
+ tokens.push(token);
182
+ } else {
183
+ balanced += 1;
184
+ token.after = "";
185
+ token.sourceEndIndex = pos + 1;
186
+ tokens.push(token);
187
+ stack.push(token);
188
+ tokens = token.nodes = [];
189
+ parent = token;
190
+ }
191
+ name = "";
192
+ } else if (closeParentheses === code && balanced) {
193
+ pos += 1;
194
+ code = value.charCodeAt(pos);
195
+ parent.after = after;
196
+ parent.sourceEndIndex += after.length;
197
+ after = "";
198
+ balanced -= 1;
199
+ stack[stack.length - 1].sourceEndIndex = pos;
200
+ stack.pop();
201
+ parent = stack[balanced];
202
+ tokens = parent.nodes;
203
+ } else {
204
+ next = pos;
205
+ do {
206
+ if (code === backslash) next += 1;
207
+ next += 1;
208
+ code = value.charCodeAt(next);
209
+ } while (next < max && !(code <= 32 || code === singleQuote || code === doubleQuote || code === comma || code === colon || code === slash || code === openParentheses || code === star && parent && parent.type === "function" && parent.value === "calc" || code === slash && parent.type === "function" && parent.value === "calc" || code === closeParentheses && balanced));
210
+ token = value.slice(pos, next);
211
+ if (openParentheses === code) name = token;
212
+ else if ((uLower === token.charCodeAt(0) || uUpper === token.charCodeAt(0)) && plus$1 === token.charCodeAt(1) && isUnicodeRange.test(token.slice(2))) tokens.push({
213
+ type: "unicode-range",
214
+ sourceIndex: pos,
215
+ sourceEndIndex: next,
216
+ value: token
217
+ });
218
+ else tokens.push({
219
+ type: "word",
220
+ sourceIndex: pos,
221
+ sourceEndIndex: next,
222
+ value: token
223
+ });
224
+ pos = next;
225
+ }
226
+ for (pos = stack.length - 1; pos; pos -= 1) {
227
+ stack[pos].unclosed = true;
228
+ stack[pos].sourceEndIndex = value.length;
229
+ }
230
+ return stack[0].nodes;
231
+ };
232
+ }));
233
+ var require_walk = /* @__PURE__ */ __commonJSMin(((exports, module) => {
234
+ module.exports = function walk$1(nodes, cb, bubble) {
235
+ var i, max, node, result;
236
+ for (i = 0, max = nodes.length; i < max; i += 1) {
237
+ node = nodes[i];
238
+ if (!bubble) result = cb(node, i, nodes);
239
+ if (result !== false && node.type === "function" && Array.isArray(node.nodes)) walk$1(node.nodes, cb, bubble);
240
+ if (bubble) cb(node, i, nodes);
241
+ }
242
+ };
243
+ }));
244
+ var require_stringify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
245
+ function stringifyNode(node, custom) {
246
+ var type = node.type;
247
+ var value = node.value;
248
+ var buf;
249
+ var customResult;
250
+ if (custom && (customResult = custom(node)) !== void 0) return customResult;
251
+ else if (type === "word" || type === "space") return value;
252
+ else if (type === "string") {
253
+ buf = node.quote || "";
254
+ return buf + value + (node.unclosed ? "" : buf);
255
+ } else if (type === "comment") return "/*" + value + (node.unclosed ? "" : "*/");
256
+ else if (type === "div") return (node.before || "") + value + (node.after || "");
257
+ else if (Array.isArray(node.nodes)) {
258
+ buf = stringify$1(node.nodes, custom);
259
+ if (type !== "function") return buf;
260
+ return value + "(" + (node.before || "") + buf + (node.after || "") + (node.unclosed ? "" : ")");
261
+ }
262
+ return value;
263
+ }
264
+ function stringify$1(nodes, custom) {
265
+ var result, i;
266
+ if (Array.isArray(nodes)) {
267
+ result = "";
268
+ for (i = nodes.length - 1; ~i; i -= 1) result = stringifyNode(nodes[i], custom) + result;
269
+ return result;
270
+ }
271
+ return stringifyNode(nodes, custom);
272
+ }
273
+ module.exports = stringify$1;
274
+ }));
275
+ var require_unit = /* @__PURE__ */ __commonJSMin(((exports, module) => {
276
+ var minus = "-".charCodeAt(0);
277
+ var plus = "+".charCodeAt(0);
278
+ var dot = ".".charCodeAt(0);
279
+ var exp = "e".charCodeAt(0);
280
+ var EXP = "E".charCodeAt(0);
281
+ function likeNumber(value) {
282
+ var code = value.charCodeAt(0);
283
+ var nextCode;
284
+ if (code === plus || code === minus) {
285
+ nextCode = value.charCodeAt(1);
286
+ if (nextCode >= 48 && nextCode <= 57) return true;
287
+ var nextNextCode = value.charCodeAt(2);
288
+ if (nextCode === dot && nextNextCode >= 48 && nextNextCode <= 57) return true;
289
+ return false;
290
+ }
291
+ if (code === dot) {
292
+ nextCode = value.charCodeAt(1);
293
+ if (nextCode >= 48 && nextCode <= 57) return true;
294
+ return false;
295
+ }
296
+ if (code >= 48 && code <= 57) return true;
297
+ return false;
298
+ }
299
+ module.exports = function(value) {
300
+ var pos = 0;
301
+ var length = value.length;
302
+ var code;
303
+ var nextCode;
304
+ var nextNextCode;
305
+ if (length === 0 || !likeNumber(value)) return false;
306
+ code = value.charCodeAt(pos);
307
+ if (code === plus || code === minus) pos++;
308
+ while (pos < length) {
309
+ code = value.charCodeAt(pos);
310
+ if (code < 48 || code > 57) break;
311
+ pos += 1;
312
+ }
313
+ code = value.charCodeAt(pos);
314
+ nextCode = value.charCodeAt(pos + 1);
315
+ if (code === dot && nextCode >= 48 && nextCode <= 57) {
316
+ pos += 2;
317
+ while (pos < length) {
318
+ code = value.charCodeAt(pos);
319
+ if (code < 48 || code > 57) break;
320
+ pos += 1;
321
+ }
322
+ }
323
+ code = value.charCodeAt(pos);
324
+ nextCode = value.charCodeAt(pos + 1);
325
+ nextNextCode = value.charCodeAt(pos + 2);
326
+ if ((code === exp || code === EXP) && (nextCode >= 48 && nextCode <= 57 || (nextCode === plus || nextCode === minus) && nextNextCode >= 48 && nextNextCode <= 57)) {
327
+ pos += nextCode === plus || nextCode === minus ? 3 : 2;
328
+ while (pos < length) {
329
+ code = value.charCodeAt(pos);
330
+ if (code < 48 || code > 57) break;
331
+ pos += 1;
332
+ }
333
+ }
334
+ return {
335
+ number: value.slice(0, pos),
336
+ unit: value.slice(pos)
337
+ };
338
+ };
339
+ }));
340
+ var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
341
+ var parse = require_parse();
342
+ var walk = require_walk();
343
+ var stringify = require_stringify();
344
+ function ValueParser(value) {
345
+ if (this instanceof ValueParser) {
346
+ this.nodes = parse(value);
347
+ return this;
348
+ }
349
+ return new ValueParser(value);
350
+ }
351
+ ValueParser.prototype.toString = function() {
352
+ return Array.isArray(this.nodes) ? stringify(this.nodes) : "";
353
+ };
354
+ ValueParser.prototype.walk = function(cb, bubble) {
355
+ walk(this.nodes, cb, bubble);
356
+ return this;
357
+ };
358
+ ValueParser.unit = require_unit();
359
+ ValueParser.walk = walk;
360
+ ValueParser.stringify = stringify;
361
+ module.exports = ValueParser;
362
+ }));
363
+
364
+ //#endregion
365
+ export { require_lib as t };
366
+ //# sourceMappingURL=lib-BY2rcZzh.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lib-BY2rcZzh.mjs","names":[],"sources":["../../../node_modules/.pnpm/vite@7.3.1_@types+node@25.0.6_terser@5.44.1/node_modules/vite/dist/node/chunks/lib.js"],"sourcesContent":["import { t as __commonJSMin } from \"./chunk.js\";\n\n//#region ../../node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/parse.js\nvar require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {\n\tvar openParentheses = \"(\".charCodeAt(0);\n\tvar closeParentheses = \")\".charCodeAt(0);\n\tvar singleQuote = \"'\".charCodeAt(0);\n\tvar doubleQuote = \"\\\"\".charCodeAt(0);\n\tvar backslash = \"\\\\\".charCodeAt(0);\n\tvar slash = \"/\".charCodeAt(0);\n\tvar comma = \",\".charCodeAt(0);\n\tvar colon = \":\".charCodeAt(0);\n\tvar star = \"*\".charCodeAt(0);\n\tvar uLower = \"u\".charCodeAt(0);\n\tvar uUpper = \"U\".charCodeAt(0);\n\tvar plus$1 = \"+\".charCodeAt(0);\n\tvar isUnicodeRange = /^[a-f0-9?-]+$/i;\n\tmodule.exports = function(input) {\n\t\tvar tokens = [];\n\t\tvar value = input;\n\t\tvar next, quote, prev, token, escape, escapePos, whitespacePos, parenthesesOpenPos;\n\t\tvar pos = 0;\n\t\tvar code = value.charCodeAt(pos);\n\t\tvar max = value.length;\n\t\tvar stack = [{ nodes: tokens }];\n\t\tvar balanced = 0;\n\t\tvar parent;\n\t\tvar name = \"\";\n\t\tvar before = \"\";\n\t\tvar after = \"\";\n\t\twhile (pos < max) if (code <= 32) {\n\t\t\tnext = pos;\n\t\t\tdo {\n\t\t\t\tnext += 1;\n\t\t\t\tcode = value.charCodeAt(next);\n\t\t\t} while (code <= 32);\n\t\t\ttoken = value.slice(pos, next);\n\t\t\tprev = tokens[tokens.length - 1];\n\t\t\tif (code === closeParentheses && balanced) after = token;\n\t\t\telse if (prev && prev.type === \"div\") {\n\t\t\t\tprev.after = token;\n\t\t\t\tprev.sourceEndIndex += token.length;\n\t\t\t} else if (code === comma || code === colon || code === slash && value.charCodeAt(next + 1) !== star && (!parent || parent && parent.type === \"function\" && parent.value !== \"calc\")) before = token;\n\t\t\telse tokens.push({\n\t\t\t\ttype: \"space\",\n\t\t\t\tsourceIndex: pos,\n\t\t\t\tsourceEndIndex: next,\n\t\t\t\tvalue: token\n\t\t\t});\n\t\t\tpos = next;\n\t\t} else if (code === singleQuote || code === doubleQuote) {\n\t\t\tnext = pos;\n\t\t\tquote = code === singleQuote ? \"'\" : \"\\\"\";\n\t\t\ttoken = {\n\t\t\t\ttype: \"string\",\n\t\t\t\tsourceIndex: pos,\n\t\t\t\tquote\n\t\t\t};\n\t\t\tdo {\n\t\t\t\tescape = false;\n\t\t\t\tnext = value.indexOf(quote, next + 1);\n\t\t\t\tif (~next) {\n\t\t\t\t\tescapePos = next;\n\t\t\t\t\twhile (value.charCodeAt(escapePos - 1) === backslash) {\n\t\t\t\t\t\tescapePos -= 1;\n\t\t\t\t\t\tescape = !escape;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tvalue += quote;\n\t\t\t\t\tnext = value.length - 1;\n\t\t\t\t\ttoken.unclosed = true;\n\t\t\t\t}\n\t\t\t} while (escape);\n\t\t\ttoken.value = value.slice(pos + 1, next);\n\t\t\ttoken.sourceEndIndex = token.unclosed ? next : next + 1;\n\t\t\ttokens.push(token);\n\t\t\tpos = next + 1;\n\t\t\tcode = value.charCodeAt(pos);\n\t\t} else if (code === slash && value.charCodeAt(pos + 1) === star) {\n\t\t\tnext = value.indexOf(\"*/\", pos);\n\t\t\ttoken = {\n\t\t\t\ttype: \"comment\",\n\t\t\t\tsourceIndex: pos,\n\t\t\t\tsourceEndIndex: next + 2\n\t\t\t};\n\t\t\tif (next === -1) {\n\t\t\t\ttoken.unclosed = true;\n\t\t\t\tnext = value.length;\n\t\t\t\ttoken.sourceEndIndex = next;\n\t\t\t}\n\t\t\ttoken.value = value.slice(pos + 2, next);\n\t\t\ttokens.push(token);\n\t\t\tpos = next + 2;\n\t\t\tcode = value.charCodeAt(pos);\n\t\t} else if ((code === slash || code === star) && parent && parent.type === \"function\" && parent.value === \"calc\") {\n\t\t\ttoken = value[pos];\n\t\t\ttokens.push({\n\t\t\t\ttype: \"word\",\n\t\t\t\tsourceIndex: pos - before.length,\n\t\t\t\tsourceEndIndex: pos + token.length,\n\t\t\t\tvalue: token\n\t\t\t});\n\t\t\tpos += 1;\n\t\t\tcode = value.charCodeAt(pos);\n\t\t} else if (code === slash || code === comma || code === colon) {\n\t\t\ttoken = value[pos];\n\t\t\ttokens.push({\n\t\t\t\ttype: \"div\",\n\t\t\t\tsourceIndex: pos - before.length,\n\t\t\t\tsourceEndIndex: pos + token.length,\n\t\t\t\tvalue: token,\n\t\t\t\tbefore,\n\t\t\t\tafter: \"\"\n\t\t\t});\n\t\t\tbefore = \"\";\n\t\t\tpos += 1;\n\t\t\tcode = value.charCodeAt(pos);\n\t\t} else if (openParentheses === code) {\n\t\t\tnext = pos;\n\t\t\tdo {\n\t\t\t\tnext += 1;\n\t\t\t\tcode = value.charCodeAt(next);\n\t\t\t} while (code <= 32);\n\t\t\tparenthesesOpenPos = pos;\n\t\t\ttoken = {\n\t\t\t\ttype: \"function\",\n\t\t\t\tsourceIndex: pos - name.length,\n\t\t\t\tvalue: name,\n\t\t\t\tbefore: value.slice(parenthesesOpenPos + 1, next)\n\t\t\t};\n\t\t\tpos = next;\n\t\t\tif (name === \"url\" && code !== singleQuote && code !== doubleQuote) {\n\t\t\t\tnext -= 1;\n\t\t\t\tdo {\n\t\t\t\t\tescape = false;\n\t\t\t\t\tnext = value.indexOf(\")\", next + 1);\n\t\t\t\t\tif (~next) {\n\t\t\t\t\t\tescapePos = next;\n\t\t\t\t\t\twhile (value.charCodeAt(escapePos - 1) === backslash) {\n\t\t\t\t\t\t\tescapePos -= 1;\n\t\t\t\t\t\t\tescape = !escape;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvalue += \")\";\n\t\t\t\t\t\tnext = value.length - 1;\n\t\t\t\t\t\ttoken.unclosed = true;\n\t\t\t\t\t}\n\t\t\t\t} while (escape);\n\t\t\t\twhitespacePos = next;\n\t\t\t\tdo {\n\t\t\t\t\twhitespacePos -= 1;\n\t\t\t\t\tcode = value.charCodeAt(whitespacePos);\n\t\t\t\t} while (code <= 32);\n\t\t\t\tif (parenthesesOpenPos < whitespacePos) {\n\t\t\t\t\tif (pos !== whitespacePos + 1) token.nodes = [{\n\t\t\t\t\t\ttype: \"word\",\n\t\t\t\t\t\tsourceIndex: pos,\n\t\t\t\t\t\tsourceEndIndex: whitespacePos + 1,\n\t\t\t\t\t\tvalue: value.slice(pos, whitespacePos + 1)\n\t\t\t\t\t}];\n\t\t\t\t\telse token.nodes = [];\n\t\t\t\t\tif (token.unclosed && whitespacePos + 1 !== next) {\n\t\t\t\t\t\ttoken.after = \"\";\n\t\t\t\t\t\ttoken.nodes.push({\n\t\t\t\t\t\t\ttype: \"space\",\n\t\t\t\t\t\t\tsourceIndex: whitespacePos + 1,\n\t\t\t\t\t\t\tsourceEndIndex: next,\n\t\t\t\t\t\t\tvalue: value.slice(whitespacePos + 1, next)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttoken.after = value.slice(whitespacePos + 1, next);\n\t\t\t\t\t\ttoken.sourceEndIndex = next;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\ttoken.after = \"\";\n\t\t\t\t\ttoken.nodes = [];\n\t\t\t\t}\n\t\t\t\tpos = next + 1;\n\t\t\t\ttoken.sourceEndIndex = token.unclosed ? next : pos;\n\t\t\t\tcode = value.charCodeAt(pos);\n\t\t\t\ttokens.push(token);\n\t\t\t} else {\n\t\t\t\tbalanced += 1;\n\t\t\t\ttoken.after = \"\";\n\t\t\t\ttoken.sourceEndIndex = pos + 1;\n\t\t\t\ttokens.push(token);\n\t\t\t\tstack.push(token);\n\t\t\t\ttokens = token.nodes = [];\n\t\t\t\tparent = token;\n\t\t\t}\n\t\t\tname = \"\";\n\t\t} else if (closeParentheses === code && balanced) {\n\t\t\tpos += 1;\n\t\t\tcode = value.charCodeAt(pos);\n\t\t\tparent.after = after;\n\t\t\tparent.sourceEndIndex += after.length;\n\t\t\tafter = \"\";\n\t\t\tbalanced -= 1;\n\t\t\tstack[stack.length - 1].sourceEndIndex = pos;\n\t\t\tstack.pop();\n\t\t\tparent = stack[balanced];\n\t\t\ttokens = parent.nodes;\n\t\t} else {\n\t\t\tnext = pos;\n\t\t\tdo {\n\t\t\t\tif (code === backslash) next += 1;\n\t\t\t\tnext += 1;\n\t\t\t\tcode = value.charCodeAt(next);\n\t\t\t} while (next < max && !(code <= 32 || code === singleQuote || code === doubleQuote || code === comma || code === colon || code === slash || code === openParentheses || code === star && parent && parent.type === \"function\" && parent.value === \"calc\" || code === slash && parent.type === \"function\" && parent.value === \"calc\" || code === closeParentheses && balanced));\n\t\t\ttoken = value.slice(pos, next);\n\t\t\tif (openParentheses === code) name = token;\n\t\t\telse if ((uLower === token.charCodeAt(0) || uUpper === token.charCodeAt(0)) && plus$1 === token.charCodeAt(1) && isUnicodeRange.test(token.slice(2))) tokens.push({\n\t\t\t\ttype: \"unicode-range\",\n\t\t\t\tsourceIndex: pos,\n\t\t\t\tsourceEndIndex: next,\n\t\t\t\tvalue: token\n\t\t\t});\n\t\t\telse tokens.push({\n\t\t\t\ttype: \"word\",\n\t\t\t\tsourceIndex: pos,\n\t\t\t\tsourceEndIndex: next,\n\t\t\t\tvalue: token\n\t\t\t});\n\t\t\tpos = next;\n\t\t}\n\t\tfor (pos = stack.length - 1; pos; pos -= 1) {\n\t\t\tstack[pos].unclosed = true;\n\t\t\tstack[pos].sourceEndIndex = value.length;\n\t\t}\n\t\treturn stack[0].nodes;\n\t};\n}));\n\n//#endregion\n//#region ../../node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/walk.js\nvar require_walk = /* @__PURE__ */ __commonJSMin(((exports, module) => {\n\tmodule.exports = function walk$1(nodes, cb, bubble) {\n\t\tvar i, max, node, result;\n\t\tfor (i = 0, max = nodes.length; i < max; i += 1) {\n\t\t\tnode = nodes[i];\n\t\t\tif (!bubble) result = cb(node, i, nodes);\n\t\t\tif (result !== false && node.type === \"function\" && Array.isArray(node.nodes)) walk$1(node.nodes, cb, bubble);\n\t\t\tif (bubble) cb(node, i, nodes);\n\t\t}\n\t};\n}));\n\n//#endregion\n//#region ../../node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/stringify.js\nvar require_stringify = /* @__PURE__ */ __commonJSMin(((exports, module) => {\n\tfunction stringifyNode(node, custom) {\n\t\tvar type = node.type;\n\t\tvar value = node.value;\n\t\tvar buf;\n\t\tvar customResult;\n\t\tif (custom && (customResult = custom(node)) !== void 0) return customResult;\n\t\telse if (type === \"word\" || type === \"space\") return value;\n\t\telse if (type === \"string\") {\n\t\t\tbuf = node.quote || \"\";\n\t\t\treturn buf + value + (node.unclosed ? \"\" : buf);\n\t\t} else if (type === \"comment\") return \"/*\" + value + (node.unclosed ? \"\" : \"*/\");\n\t\telse if (type === \"div\") return (node.before || \"\") + value + (node.after || \"\");\n\t\telse if (Array.isArray(node.nodes)) {\n\t\t\tbuf = stringify$1(node.nodes, custom);\n\t\t\tif (type !== \"function\") return buf;\n\t\t\treturn value + \"(\" + (node.before || \"\") + buf + (node.after || \"\") + (node.unclosed ? \"\" : \")\");\n\t\t}\n\t\treturn value;\n\t}\n\tfunction stringify$1(nodes, custom) {\n\t\tvar result, i;\n\t\tif (Array.isArray(nodes)) {\n\t\t\tresult = \"\";\n\t\t\tfor (i = nodes.length - 1; ~i; i -= 1) result = stringifyNode(nodes[i], custom) + result;\n\t\t\treturn result;\n\t\t}\n\t\treturn stringifyNode(nodes, custom);\n\t}\n\tmodule.exports = stringify$1;\n}));\n\n//#endregion\n//#region ../../node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/unit.js\nvar require_unit = /* @__PURE__ */ __commonJSMin(((exports, module) => {\n\tvar minus = \"-\".charCodeAt(0);\n\tvar plus = \"+\".charCodeAt(0);\n\tvar dot = \".\".charCodeAt(0);\n\tvar exp = \"e\".charCodeAt(0);\n\tvar EXP = \"E\".charCodeAt(0);\n\tfunction likeNumber(value) {\n\t\tvar code = value.charCodeAt(0);\n\t\tvar nextCode;\n\t\tif (code === plus || code === minus) {\n\t\t\tnextCode = value.charCodeAt(1);\n\t\t\tif (nextCode >= 48 && nextCode <= 57) return true;\n\t\t\tvar nextNextCode = value.charCodeAt(2);\n\t\t\tif (nextCode === dot && nextNextCode >= 48 && nextNextCode <= 57) return true;\n\t\t\treturn false;\n\t\t}\n\t\tif (code === dot) {\n\t\t\tnextCode = value.charCodeAt(1);\n\t\t\tif (nextCode >= 48 && nextCode <= 57) return true;\n\t\t\treturn false;\n\t\t}\n\t\tif (code >= 48 && code <= 57) return true;\n\t\treturn false;\n\t}\n\tmodule.exports = function(value) {\n\t\tvar pos = 0;\n\t\tvar length = value.length;\n\t\tvar code;\n\t\tvar nextCode;\n\t\tvar nextNextCode;\n\t\tif (length === 0 || !likeNumber(value)) return false;\n\t\tcode = value.charCodeAt(pos);\n\t\tif (code === plus || code === minus) pos++;\n\t\twhile (pos < length) {\n\t\t\tcode = value.charCodeAt(pos);\n\t\t\tif (code < 48 || code > 57) break;\n\t\t\tpos += 1;\n\t\t}\n\t\tcode = value.charCodeAt(pos);\n\t\tnextCode = value.charCodeAt(pos + 1);\n\t\tif (code === dot && nextCode >= 48 && nextCode <= 57) {\n\t\t\tpos += 2;\n\t\t\twhile (pos < length) {\n\t\t\t\tcode = value.charCodeAt(pos);\n\t\t\t\tif (code < 48 || code > 57) break;\n\t\t\t\tpos += 1;\n\t\t\t}\n\t\t}\n\t\tcode = value.charCodeAt(pos);\n\t\tnextCode = value.charCodeAt(pos + 1);\n\t\tnextNextCode = value.charCodeAt(pos + 2);\n\t\tif ((code === exp || code === EXP) && (nextCode >= 48 && nextCode <= 57 || (nextCode === plus || nextCode === minus) && nextNextCode >= 48 && nextNextCode <= 57)) {\n\t\t\tpos += nextCode === plus || nextCode === minus ? 3 : 2;\n\t\t\twhile (pos < length) {\n\t\t\t\tcode = value.charCodeAt(pos);\n\t\t\t\tif (code < 48 || code > 57) break;\n\t\t\t\tpos += 1;\n\t\t\t}\n\t\t}\n\t\treturn {\n\t\t\tnumber: value.slice(0, pos),\n\t\t\tunit: value.slice(pos)\n\t\t};\n\t};\n}));\n\n//#endregion\n//#region ../../node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/index.js\nvar require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {\n\tvar parse = require_parse();\n\tvar walk = require_walk();\n\tvar stringify = require_stringify();\n\tfunction ValueParser(value) {\n\t\tif (this instanceof ValueParser) {\n\t\t\tthis.nodes = parse(value);\n\t\t\treturn this;\n\t\t}\n\t\treturn new ValueParser(value);\n\t}\n\tValueParser.prototype.toString = function() {\n\t\treturn Array.isArray(this.nodes) ? stringify(this.nodes) : \"\";\n\t};\n\tValueParser.prototype.walk = function(cb, bubble) {\n\t\twalk(this.nodes, cb, bubble);\n\t\treturn this;\n\t};\n\tValueParser.unit = require_unit();\n\tValueParser.walk = walk;\n\tValueParser.stringify = stringify;\n\tmodule.exports = ValueParser;\n}));\n\n//#endregion\nexport { require_lib as t };"],"x_google_ignoreList":[0],"mappings":"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"}