@symbo.ls/scratch 2.10.224 → 2.10.225

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 (41) hide show
  1. package/dist/cjs/defaultConfig/animation.js +3 -1
  2. package/dist/cjs/defaultConfig/cases.js +3 -1
  3. package/dist/cjs/defaultConfig/color.js +4 -8
  4. package/dist/cjs/defaultConfig/document.js +3 -1
  5. package/dist/cjs/defaultConfig/font-family.js +5 -9
  6. package/dist/cjs/defaultConfig/font.js +3 -10
  7. package/dist/cjs/defaultConfig/icons.js +3 -1
  8. package/dist/cjs/defaultConfig/index.js +184 -19
  9. package/dist/cjs/defaultConfig/media.js +3 -1
  10. package/dist/cjs/defaultConfig/responsive.js +4 -2
  11. package/dist/cjs/defaultConfig/sequence.js +3 -1
  12. package/dist/cjs/defaultConfig/spacing.js +53 -6
  13. package/dist/cjs/defaultConfig/svg.js +4 -2
  14. package/dist/cjs/defaultConfig/theme.js +3 -13
  15. package/dist/cjs/defaultConfig/timing.js +35 -4
  16. package/dist/cjs/defaultConfig/typography.js +35 -4
  17. package/dist/cjs/defaultConfig/unit.js +3 -1
  18. package/dist/cjs/factory.js +999 -10
  19. package/dist/cjs/index.js +2462 -6
  20. package/dist/cjs/set.js +2172 -45
  21. package/dist/cjs/system/color.js +1162 -44
  22. package/dist/cjs/system/document.js +1062 -11
  23. package/dist/cjs/system/font.js +1093 -17
  24. package/dist/cjs/system/index.js +2136 -10
  25. package/dist/cjs/system/reset.js +1131 -20
  26. package/dist/cjs/system/spacing.js +1274 -33
  27. package/dist/cjs/system/svg.js +1104 -25
  28. package/dist/cjs/system/theme.js +1187 -68
  29. package/dist/cjs/system/timing.js +1255 -19
  30. package/dist/cjs/system/typography.js +1270 -28
  31. package/dist/cjs/tests/index.js +4 -2
  32. package/dist/cjs/utils/color.js +68 -16
  33. package/dist/cjs/utils/font.js +11 -9
  34. package/dist/cjs/utils/index.js +1508 -7
  35. package/dist/cjs/utils/sequence.js +1051 -19
  36. package/dist/cjs/utils/sprite.js +815 -4
  37. package/dist/cjs/utils/theme.js +3 -1
  38. package/dist/cjs/utils/var.js +1044 -21
  39. package/package.json +3 -3
  40. package/src/index.js +4 -0
  41. package/src/utils/color.js +3 -0
@@ -1,8 +1,13 @@
1
1
  "use strict";
2
+ var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
5
7
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __commonJS = (cb, mod) => function __require() {
9
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
10
+ };
6
11
  var __export = (target, all) => {
7
12
  for (var name in all)
8
13
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -15,7 +20,813 @@ var __copyProps = (to, from, except, desc) => {
15
20
  }
16
21
  return to;
17
22
  };
23
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
24
+ // If the importer is in node compatibility mode or this is not an ESM
25
+ // file that has been converted to a CommonJS file using a Babel-
26
+ // compatible transform (i.e. "__esModule" has not been set), then set
27
+ // "default" to the CommonJS "module.exports" for node compatibility.
28
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
29
+ mod
30
+ ));
18
31
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
32
+
33
+ // ../../node_modules/@domql/globals/dist/cjs/index.js
34
+ var require_cjs = __commonJS({
35
+ "../../node_modules/@domql/globals/dist/cjs/index.js"(exports, module2) {
36
+ "use strict";
37
+ var __defProp2 = Object.defineProperty;
38
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
39
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
40
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
41
+ var __export2 = (target, all) => {
42
+ for (var name in all)
43
+ __defProp2(target, name, { get: all[name], enumerable: true });
44
+ };
45
+ var __copyProps2 = (to, from, except, desc) => {
46
+ if (from && typeof from === "object" || typeof from === "function") {
47
+ for (let key of __getOwnPropNames2(from))
48
+ if (!__hasOwnProp2.call(to, key) && key !== except)
49
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
50
+ }
51
+ return to;
52
+ };
53
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
54
+ var globals_exports = {};
55
+ __export2(globals_exports, {
56
+ document: () => document3,
57
+ global: () => global,
58
+ self: () => self,
59
+ window: () => window3
60
+ });
61
+ module2.exports = __toCommonJS2(globals_exports);
62
+ var global = globalThis;
63
+ var self = globalThis;
64
+ var window3 = globalThis;
65
+ var document3 = window3.document;
66
+ }
67
+ });
68
+
69
+ // ../../node_modules/@domql/tags/dist/cjs/htmlTags.js
70
+ var require_htmlTags = __commonJS({
71
+ "../../node_modules/@domql/tags/dist/cjs/htmlTags.js"(exports, module2) {
72
+ "use strict";
73
+ var __defProp2 = Object.defineProperty;
74
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
75
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
76
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
77
+ var __export2 = (target, all) => {
78
+ for (var name in all)
79
+ __defProp2(target, name, { get: all[name], enumerable: true });
80
+ };
81
+ var __copyProps2 = (to, from, except, desc) => {
82
+ if (from && typeof from === "object" || typeof from === "function") {
83
+ for (let key of __getOwnPropNames2(from))
84
+ if (!__hasOwnProp2.call(to, key) && key !== except)
85
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
86
+ }
87
+ return to;
88
+ };
89
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
90
+ var htmlTags_exports = {};
91
+ __export2(htmlTags_exports, {
92
+ HTML_TAGS: () => HTML_TAGS
93
+ });
94
+ module2.exports = __toCommonJS2(htmlTags_exports);
95
+ var HTML_TAGS = {
96
+ root: [
97
+ "body",
98
+ "html"
99
+ ],
100
+ head: [
101
+ "title",
102
+ "base",
103
+ "meta",
104
+ "style"
105
+ ],
106
+ body: [
107
+ "string",
108
+ "fragment",
109
+ "a",
110
+ "abbr",
111
+ "acronym",
112
+ "address",
113
+ "applet",
114
+ "area",
115
+ "article",
116
+ "aside",
117
+ "audio",
118
+ "b",
119
+ "basefont",
120
+ "bdi",
121
+ "bdo",
122
+ "big",
123
+ "blockquote",
124
+ "br",
125
+ "button",
126
+ "canvas",
127
+ "caption",
128
+ "center",
129
+ "cite",
130
+ "code",
131
+ "col",
132
+ "colgroup",
133
+ "data",
134
+ "datalist",
135
+ "dd",
136
+ "del",
137
+ "details",
138
+ "dfn",
139
+ "dialog",
140
+ "dir",
141
+ "div",
142
+ "dl",
143
+ "dt",
144
+ "em",
145
+ "embed",
146
+ "fieldset",
147
+ "figcaption",
148
+ "figure",
149
+ "font",
150
+ "footer",
151
+ "form",
152
+ "frame",
153
+ "frameset",
154
+ "h1",
155
+ "h2",
156
+ "h3",
157
+ "h4",
158
+ "h5",
159
+ "h6",
160
+ "head",
161
+ "header",
162
+ "hr",
163
+ "i",
164
+ "iframe",
165
+ "img",
166
+ "input",
167
+ "ins",
168
+ "kbd",
169
+ "label",
170
+ "legend",
171
+ "li",
172
+ "link",
173
+ "main",
174
+ "map",
175
+ "mark",
176
+ "meter",
177
+ "nav",
178
+ "noframes",
179
+ "noscript",
180
+ "object",
181
+ "ol",
182
+ "optgroup",
183
+ "option",
184
+ "output",
185
+ "p",
186
+ "param",
187
+ "picture",
188
+ "pre",
189
+ "progress",
190
+ "q",
191
+ "rp",
192
+ "rt",
193
+ "ruby",
194
+ "s",
195
+ "samp",
196
+ "script",
197
+ "section",
198
+ "select",
199
+ "small",
200
+ "source",
201
+ "span",
202
+ "strike",
203
+ "strong",
204
+ "sub",
205
+ "summary",
206
+ "sup",
207
+ "table",
208
+ "tbody",
209
+ "td",
210
+ "template",
211
+ "textarea",
212
+ "tfoot",
213
+ "th",
214
+ "thead",
215
+ "time",
216
+ "tr",
217
+ "track",
218
+ "tt",
219
+ "u",
220
+ "ul",
221
+ "var",
222
+ "video",
223
+ "wbr",
224
+ // SVG
225
+ "svg",
226
+ "path"
227
+ ]
228
+ };
229
+ }
230
+ });
231
+
232
+ // ../../node_modules/@domql/tags/dist/cjs/index.js
233
+ var require_cjs2 = __commonJS({
234
+ "../../node_modules/@domql/tags/dist/cjs/index.js"(exports, module2) {
235
+ "use strict";
236
+ var __defProp2 = Object.defineProperty;
237
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
238
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
239
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
240
+ var __copyProps2 = (to, from, except, desc) => {
241
+ if (from && typeof from === "object" || typeof from === "function") {
242
+ for (let key of __getOwnPropNames2(from))
243
+ if (!__hasOwnProp2.call(to, key) && key !== except)
244
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
245
+ }
246
+ return to;
247
+ };
248
+ var __reExport = (target, mod, secondTarget) => (__copyProps2(target, mod, "default"), secondTarget && __copyProps2(secondTarget, mod, "default"));
249
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
250
+ var tags_exports = {};
251
+ module2.exports = __toCommonJS2(tags_exports);
252
+ __reExport(tags_exports, require_htmlTags(), module2.exports);
253
+ }
254
+ });
255
+
256
+ // ../../node_modules/@domql/utils/dist/cjs/types.js
257
+ var require_types = __commonJS({
258
+ "../../node_modules/@domql/utils/dist/cjs/types.js"(exports, module2) {
259
+ "use strict";
260
+ var __defProp2 = Object.defineProperty;
261
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
262
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
263
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
264
+ var __export2 = (target, all) => {
265
+ for (var name in all)
266
+ __defProp2(target, name, { get: all[name], enumerable: true });
267
+ };
268
+ var __copyProps2 = (to, from, except, desc) => {
269
+ if (from && typeof from === "object" || typeof from === "function") {
270
+ for (let key of __getOwnPropNames2(from))
271
+ if (!__hasOwnProp2.call(to, key) && key !== except)
272
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
273
+ }
274
+ return to;
275
+ };
276
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
277
+ var types_exports = {};
278
+ __export2(types_exports, {
279
+ TYPES: () => TYPES,
280
+ is: () => is,
281
+ isArray: () => isArray3,
282
+ isBoolean: () => isBoolean,
283
+ isDefined: () => isDefined2,
284
+ isFunction: () => isFunction,
285
+ isHtmlElement: () => isHtmlElement,
286
+ isNode: () => isNode,
287
+ isNot: () => isNot,
288
+ isNull: () => isNull,
289
+ isNumber: () => isNumber,
290
+ isObject: () => isObject3,
291
+ isObjectLike: () => isObjectLike2,
292
+ isString: () => isString5,
293
+ isUndefined: () => isUndefined,
294
+ isValidHtmlTag: () => isValidHtmlTag
295
+ });
296
+ module2.exports = __toCommonJS2(types_exports);
297
+ var import_globals2 = require_cjs();
298
+ var import_tags = require_cjs2();
299
+ var isValidHtmlTag = (arg) => import_tags.HTML_TAGS.body.indexOf(arg);
300
+ var isObject3 = (arg) => {
301
+ if (arg === null)
302
+ return false;
303
+ return typeof arg === "object" && arg.constructor === Object;
304
+ };
305
+ var isString5 = (arg) => typeof arg === "string";
306
+ var isNumber = (arg) => typeof arg === "number";
307
+ var isFunction = (arg) => typeof arg === "function";
308
+ var isBoolean = (arg) => arg === true || arg === false;
309
+ var isNull = (arg) => arg === null;
310
+ var isArray3 = (arg) => Array.isArray(arg);
311
+ var isObjectLike2 = (arg) => {
312
+ if (arg === null)
313
+ return false;
314
+ return typeof arg === "object";
315
+ };
316
+ var isNode = (obj) => {
317
+ return typeof import_globals2.window.Node === "object" ? obj instanceof import_globals2.window.Node : obj && typeof obj === "object" && typeof obj.nodeType === "number" && typeof obj.nodeName === "string";
318
+ };
319
+ var isHtmlElement = (obj) => {
320
+ return typeof import_globals2.window.HTMLElement === "object" ? obj instanceof import_globals2.window.HTMLElement : obj && typeof obj === "object" && obj !== null && obj.nodeType === 1 && typeof obj.nodeName === "string";
321
+ };
322
+ var isDefined2 = (arg) => {
323
+ return isObject3(arg) || isObjectLike2(arg) || isString5(arg) || isNumber(arg) || isFunction(arg) || isArray3(arg) || isObjectLike2(arg) || isBoolean(arg) || isNull(arg);
324
+ };
325
+ var isUndefined = (arg) => {
326
+ return arg === void 0;
327
+ };
328
+ var TYPES = {
329
+ boolean: isBoolean,
330
+ array: isArray3,
331
+ object: isObject3,
332
+ string: isString5,
333
+ number: isNumber,
334
+ null: isNull,
335
+ function: isFunction,
336
+ objectLike: isObjectLike2,
337
+ node: isNode,
338
+ htmlElement: isHtmlElement,
339
+ defined: isDefined2
340
+ };
341
+ var is = (arg) => {
342
+ return (...args) => {
343
+ return args.map((val) => TYPES[val](arg)).filter((v) => v).length > 0;
344
+ };
345
+ };
346
+ var isNot = (arg) => {
347
+ return (...args) => {
348
+ return args.map((val) => TYPES[val](arg)).filter((v) => v).length === 0;
349
+ };
350
+ };
351
+ }
352
+ });
353
+
354
+ // ../../node_modules/@domql/utils/dist/cjs/object.js
355
+ var require_object = __commonJS({
356
+ "../../node_modules/@domql/utils/dist/cjs/object.js"(exports, module2) {
357
+ "use strict";
358
+ var __defProp2 = Object.defineProperty;
359
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
360
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
361
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
362
+ var __export2 = (target, all) => {
363
+ for (var name in all)
364
+ __defProp2(target, name, { get: all[name], enumerable: true });
365
+ };
366
+ var __copyProps2 = (to, from, except, desc) => {
367
+ if (from && typeof from === "object" || typeof from === "function") {
368
+ for (let key of __getOwnPropNames2(from))
369
+ if (!__hasOwnProp2.call(to, key) && key !== except)
370
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
371
+ }
372
+ return to;
373
+ };
374
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
375
+ var object_exports = {};
376
+ __export2(object_exports, {
377
+ clone: () => clone,
378
+ deepClone: () => deepClone2,
379
+ deepCloneExclude: () => deepCloneExclude,
380
+ deepDestringify: () => deepDestringify,
381
+ deepMerge: () => deepMerge,
382
+ deepStringify: () => deepStringify,
383
+ diff: () => diff,
384
+ exec: () => exec,
385
+ flattenRecursive: () => flattenRecursive,
386
+ isEqualDeep: () => isEqualDeep,
387
+ map: () => map,
388
+ merge: () => merge2,
389
+ mergeAndCloneIfArray: () => mergeAndCloneIfArray,
390
+ mergeArray: () => mergeArray,
391
+ mergeArrayExclude: () => mergeArrayExclude,
392
+ mergeIfExisted: () => mergeIfExisted,
393
+ overwrite: () => overwrite,
394
+ overwriteDeep: () => overwriteDeep,
395
+ overwriteObj: () => overwriteObj
396
+ });
397
+ module2.exports = __toCommonJS2(object_exports);
398
+ var import_globals2 = require_cjs();
399
+ var import_types = require_types();
400
+ var exec = (param, element, state, context) => {
401
+ if ((0, import_types.isFunction)(param)) {
402
+ return param(
403
+ element,
404
+ state || element.state,
405
+ context || element.context
406
+ );
407
+ }
408
+ return param;
409
+ };
410
+ var map = (obj, extention, element) => {
411
+ for (const e in extention) {
412
+ obj[e] = exec(extention[e], element);
413
+ }
414
+ };
415
+ var merge2 = (element, obj) => {
416
+ for (const e in obj) {
417
+ const elementProp = element[e];
418
+ const objProp = obj[e];
419
+ if (elementProp === void 0) {
420
+ element[e] = objProp;
421
+ }
422
+ }
423
+ return element;
424
+ };
425
+ var deepMerge = (element, extend) => {
426
+ for (const e in extend) {
427
+ const extendProp = extend[e];
428
+ if (e === "parent" || e === "props")
429
+ continue;
430
+ if (element[e] === void 0) {
431
+ element[e] = extendProp;
432
+ } else if ((0, import_types.isObjectLike)(element[e]) && (0, import_types.isObjectLike)(extendProp)) {
433
+ deepMerge(element[e], extendProp);
434
+ } else {
435
+ element[e] = extendProp;
436
+ }
437
+ }
438
+ return element;
439
+ };
440
+ var clone = (obj) => {
441
+ const o = {};
442
+ for (const prop in obj) {
443
+ if (prop === "node")
444
+ continue;
445
+ o[prop] = obj[prop];
446
+ }
447
+ return o;
448
+ };
449
+ var deepCloneExclude = (obj, exclude = []) => {
450
+ if ((0, import_types.isArray)(obj)) {
451
+ return obj.map((x) => deepCloneExclude(x, exclude));
452
+ }
453
+ const o = {};
454
+ for (const k in obj) {
455
+ if (exclude.indexOf(k) > -1)
456
+ continue;
457
+ let v = obj[k];
458
+ if (k === "extend" && (0, import_types.isArray)(v)) {
459
+ v = mergeArrayExclude(v, exclude);
460
+ }
461
+ if ((0, import_types.isArray)(v)) {
462
+ o[k] = v.map((x) => deepCloneExclude(x, exclude));
463
+ } else if ((0, import_types.isObject)(v)) {
464
+ o[k] = deepCloneExclude(v, exclude);
465
+ } else
466
+ o[k] = v;
467
+ }
468
+ return o;
469
+ };
470
+ var mergeArrayExclude = (arr, excl = []) => {
471
+ return arr.reduce((acc, curr) => deepMerge(acc, deepCloneExclude(curr, excl)), {});
472
+ };
473
+ var deepClone2 = (obj) => {
474
+ if ((0, import_types.isArray)(obj)) {
475
+ return obj.map(deepClone2);
476
+ }
477
+ const o = {};
478
+ for (const prop in obj) {
479
+ let objProp = obj[prop];
480
+ if (prop === "extend" && (0, import_types.isArray)(objProp)) {
481
+ objProp = mergeArray(objProp);
482
+ }
483
+ if ((0, import_types.isArray)(objProp)) {
484
+ o[prop] = objProp.map((v) => (0, import_types.isObject)(v) ? deepClone2(v) : v);
485
+ } else if ((0, import_types.isObject)(objProp)) {
486
+ o[prop] = deepClone2(objProp);
487
+ } else
488
+ o[prop] = objProp;
489
+ }
490
+ return o;
491
+ };
492
+ var deepStringify = (obj, stringified = {}) => {
493
+ for (const prop in obj) {
494
+ const objProp = obj[prop];
495
+ if ((0, import_types.isFunction)(objProp)) {
496
+ stringified[prop] = objProp.toString();
497
+ } else if ((0, import_types.isObject)(objProp)) {
498
+ stringified[prop] = {};
499
+ deepStringify(objProp, stringified[prop]);
500
+ } else if ((0, import_types.isArray)(objProp)) {
501
+ stringified[prop] = [];
502
+ objProp.forEach((v, i) => {
503
+ if ((0, import_types.isObject)(v)) {
504
+ stringified[prop][i] = {};
505
+ deepStringify(v, stringified[prop][i]);
506
+ } else if ((0, import_types.isFunction)(v)) {
507
+ stringified[prop][i] = v.toString();
508
+ } else {
509
+ stringified[prop][i] = v;
510
+ }
511
+ });
512
+ } else {
513
+ stringified[prop] = objProp;
514
+ }
515
+ }
516
+ return stringified;
517
+ };
518
+ var deepDestringify = (obj, stringified = {}) => {
519
+ for (const prop in obj) {
520
+ const objProp = obj[prop];
521
+ if ((0, import_types.isString)(objProp)) {
522
+ if (objProp.includes("=>") || objProp.includes("function") || objProp.startsWith("(")) {
523
+ try {
524
+ const evalProp = import_globals2.window.eval(`(${objProp})`);
525
+ stringified[prop] = evalProp;
526
+ } catch (e) {
527
+ if (e)
528
+ stringified[prop] = objProp;
529
+ }
530
+ } else {
531
+ stringified[prop] = objProp;
532
+ }
533
+ } else if ((0, import_types.isArray)(objProp)) {
534
+ stringified[prop] = [];
535
+ objProp.forEach((arrProp) => {
536
+ if ((0, import_types.isString)(arrProp)) {
537
+ if (arrProp.includes("=>") || arrProp.includes("function") || arrProp.startsWith("(")) {
538
+ try {
539
+ const evalProp = import_globals2.window.eval(`(${arrProp})`);
540
+ stringified[prop].push(evalProp);
541
+ } catch (e) {
542
+ if (e)
543
+ stringified[prop].push(arrProp);
544
+ }
545
+ } else {
546
+ stringified[prop].push(arrProp);
547
+ }
548
+ } else if ((0, import_types.isObject)(arrProp)) {
549
+ stringified[prop].push(deepDestringify(arrProp));
550
+ } else {
551
+ stringified[prop].push(arrProp);
552
+ }
553
+ });
554
+ } else if ((0, import_types.isObject)(objProp)) {
555
+ stringified[prop] = deepDestringify(objProp, stringified[prop]);
556
+ } else {
557
+ stringified[prop] = objProp;
558
+ }
559
+ }
560
+ return stringified;
561
+ };
562
+ var overwrite = (element, params, options) => {
563
+ const { ref } = element;
564
+ const changes = {};
565
+ for (const e in params) {
566
+ if (e === "props")
567
+ continue;
568
+ const elementProp = element[e];
569
+ const paramsProp = params[e];
570
+ if (paramsProp) {
571
+ ref.__cache[e] = changes[e] = elementProp;
572
+ ref[e] = paramsProp;
573
+ }
574
+ }
575
+ return changes;
576
+ };
577
+ var diff = (obj, original, cache) => {
578
+ const changes = cache || {};
579
+ for (const e in obj) {
580
+ if (e === "ref")
581
+ continue;
582
+ const originalProp = original[e];
583
+ const objProp = obj[e];
584
+ if ((0, import_types.isObjectLike)(originalProp) && (0, import_types.isObjectLike)(objProp)) {
585
+ changes[e] = {};
586
+ diff(originalProp, objProp, changes[e]);
587
+ } else if (objProp !== void 0) {
588
+ changes[e] = objProp;
589
+ }
590
+ }
591
+ return changes;
592
+ };
593
+ var overwriteObj = (params, obj) => {
594
+ const changes = {};
595
+ for (const e in params) {
596
+ const objProp = obj[e];
597
+ const paramsProp = params[e];
598
+ if (paramsProp) {
599
+ obj[e] = changes[e] = objProp;
600
+ }
601
+ }
602
+ return changes;
603
+ };
604
+ var overwriteDeep = (params, obj) => {
605
+ for (const e in params) {
606
+ const objProp = obj[e];
607
+ const paramsProp = params[e];
608
+ if ((0, import_types.isObjectLike)(objProp) && (0, import_types.isObjectLike)(paramsProp)) {
609
+ overwriteDeep(paramsProp, objProp);
610
+ } else if (paramsProp !== void 0) {
611
+ obj[e] = paramsProp;
612
+ }
613
+ }
614
+ return obj;
615
+ };
616
+ var mergeIfExisted = (a, b) => {
617
+ if ((0, import_types.isObjectLike)(a) && (0, import_types.isObjectLike)(b))
618
+ return deepMerge(a, b);
619
+ return a || b;
620
+ };
621
+ var mergeArray = (arr) => {
622
+ return arr.reduce((a, c) => deepMerge(a, deepClone2(c)), {});
623
+ };
624
+ var mergeAndCloneIfArray = (obj) => {
625
+ return (0, import_types.isArray)(obj) ? mergeArray(obj) : deepClone2(obj);
626
+ };
627
+ var flattenRecursive = (param, prop, stack = []) => {
628
+ const objectized = mergeAndCloneIfArray(param);
629
+ stack.push(objectized);
630
+ const extendOfExtend = objectized[prop];
631
+ if (extendOfExtend)
632
+ flattenRecursive(extendOfExtend, prop, stack);
633
+ delete objectized[prop];
634
+ return stack;
635
+ };
636
+ var isEqualDeep = (param, element) => {
637
+ if (param === element)
638
+ return true;
639
+ if (!param || !element)
640
+ return false;
641
+ for (const prop in param) {
642
+ const paramProp = param[prop];
643
+ const elementProp = element[prop];
644
+ if ((0, import_types.isObjectLike)(paramProp)) {
645
+ const isEqual = isEqualDeep(paramProp, elementProp);
646
+ if (!isEqual)
647
+ return false;
648
+ } else {
649
+ const isEqual = paramProp === elementProp;
650
+ if (!isEqual)
651
+ return false;
652
+ }
653
+ }
654
+ return true;
655
+ };
656
+ }
657
+ });
658
+
659
+ // ../../node_modules/@domql/utils/dist/cjs/function.js
660
+ var require_function = __commonJS({
661
+ "../../node_modules/@domql/utils/dist/cjs/function.js"(exports, module2) {
662
+ "use strict";
663
+ var __defProp2 = Object.defineProperty;
664
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
665
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
666
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
667
+ var __export2 = (target, all) => {
668
+ for (var name in all)
669
+ __defProp2(target, name, { get: all[name], enumerable: true });
670
+ };
671
+ var __copyProps2 = (to, from, except, desc) => {
672
+ if (from && typeof from === "object" || typeof from === "function") {
673
+ for (let key of __getOwnPropNames2(from))
674
+ if (!__hasOwnProp2.call(to, key) && key !== except)
675
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
676
+ }
677
+ return to;
678
+ };
679
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
680
+ var function_exports = {};
681
+ __export2(function_exports, {
682
+ debounce: () => debounce,
683
+ memoize: () => memoize
684
+ });
685
+ module2.exports = __toCommonJS2(function_exports);
686
+ var debounce = (element, func, timeout = 300) => {
687
+ let timer;
688
+ return (...args) => {
689
+ clearTimeout(timer);
690
+ timer = setTimeout(() => {
691
+ func.apply(element, args);
692
+ }, timeout);
693
+ };
694
+ };
695
+ var memoize = (fn) => {
696
+ const cache = {};
697
+ return (...args) => {
698
+ const n = args[0];
699
+ if (n in cache) {
700
+ return cache[n];
701
+ } else {
702
+ const result = fn(n);
703
+ cache[n] = result;
704
+ return result;
705
+ }
706
+ };
707
+ };
708
+ }
709
+ });
710
+
711
+ // ../../node_modules/@domql/utils/dist/cjs/array.js
712
+ var require_array = __commonJS({
713
+ "../../node_modules/@domql/utils/dist/cjs/array.js"() {
714
+ "use strict";
715
+ }
716
+ });
717
+
718
+ // ../../node_modules/@domql/utils/dist/cjs/node.js
719
+ var require_node = __commonJS({
720
+ "../../node_modules/@domql/utils/dist/cjs/node.js"(exports, module2) {
721
+ "use strict";
722
+ var __defProp2 = Object.defineProperty;
723
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
724
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
725
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
726
+ var __export2 = (target, all) => {
727
+ for (var name in all)
728
+ __defProp2(target, name, { get: all[name], enumerable: true });
729
+ };
730
+ var __copyProps2 = (to, from, except, desc) => {
731
+ if (from && typeof from === "object" || typeof from === "function") {
732
+ for (let key of __getOwnPropNames2(from))
733
+ if (!__hasOwnProp2.call(to, key) && key !== except)
734
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
735
+ }
736
+ return to;
737
+ };
738
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
739
+ var node_exports = {};
740
+ __export2(node_exports, {
741
+ cleanWithNode: () => cleanWithNode,
742
+ createID: () => createID,
743
+ createSnapshotId: () => createSnapshotId
744
+ });
745
+ module2.exports = __toCommonJS2(node_exports);
746
+ var cleanWithNode = (extend) => delete extend.node && extend;
747
+ var createID = function() {
748
+ let index = 0;
749
+ function newId() {
750
+ index++;
751
+ return index;
752
+ }
753
+ return newId;
754
+ }();
755
+ var createSnapshotId = createID;
756
+ }
757
+ });
758
+
759
+ // ../../node_modules/@domql/utils/dist/cjs/log.js
760
+ var require_log = __commonJS({
761
+ "../../node_modules/@domql/utils/dist/cjs/log.js"(exports, module2) {
762
+ "use strict";
763
+ var __defProp2 = Object.defineProperty;
764
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
765
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
766
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
767
+ var __export2 = (target, all) => {
768
+ for (var name in all)
769
+ __defProp2(target, name, { get: all[name], enumerable: true });
770
+ };
771
+ var __copyProps2 = (to, from, except, desc) => {
772
+ if (from && typeof from === "object" || typeof from === "function") {
773
+ for (let key of __getOwnPropNames2(from))
774
+ if (!__hasOwnProp2.call(to, key) && key !== except)
775
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
776
+ }
777
+ return to;
778
+ };
779
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
780
+ var log_exports = {};
781
+ __export2(log_exports, {
782
+ logGroupIf: () => logGroupIf,
783
+ logIf: () => logIf
784
+ });
785
+ module2.exports = __toCommonJS2(log_exports);
786
+ var logIf = (bool, ...arg) => {
787
+ if (bool)
788
+ arg.map((v) => console.log(v));
789
+ };
790
+ var logGroupIf = (bool, key, ...arg) => {
791
+ if (bool) {
792
+ console.group(key);
793
+ arg.map((v) => console.log(v));
794
+ console.groupEnd(key);
795
+ }
796
+ };
797
+ }
798
+ });
799
+
800
+ // ../../node_modules/@domql/utils/dist/cjs/index.js
801
+ var require_cjs3 = __commonJS({
802
+ "../../node_modules/@domql/utils/dist/cjs/index.js"(exports, module2) {
803
+ "use strict";
804
+ var __defProp2 = Object.defineProperty;
805
+ var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
806
+ var __getOwnPropNames2 = Object.getOwnPropertyNames;
807
+ var __hasOwnProp2 = Object.prototype.hasOwnProperty;
808
+ var __copyProps2 = (to, from, except, desc) => {
809
+ if (from && typeof from === "object" || typeof from === "function") {
810
+ for (let key of __getOwnPropNames2(from))
811
+ if (!__hasOwnProp2.call(to, key) && key !== except)
812
+ __defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
813
+ }
814
+ return to;
815
+ };
816
+ var __reExport = (target, mod, secondTarget) => (__copyProps2(target, mod, "default"), secondTarget && __copyProps2(secondTarget, mod, "default"));
817
+ var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
818
+ var utils_exports = {};
819
+ module2.exports = __toCommonJS2(utils_exports);
820
+ __reExport(utils_exports, require_types(), module2.exports);
821
+ __reExport(utils_exports, require_object(), module2.exports);
822
+ __reExport(utils_exports, require_function(), module2.exports);
823
+ __reExport(utils_exports, require_array(), module2.exports);
824
+ __reExport(utils_exports, require_node(), module2.exports);
825
+ __reExport(utils_exports, require_log(), module2.exports);
826
+ }
827
+ });
828
+
829
+ // src/system/spacing.js
19
830
  var spacing_exports = {};
20
831
  __export(spacing_exports, {
21
832
  applySpacingSequence: () => applySpacingSequence,
@@ -23,16 +834,446 @@ __export(spacing_exports, {
23
834
  getSpacingByKey: () => getSpacingByKey
24
835
  });
25
836
  module.exports = __toCommonJS(spacing_exports);
26
- var import_utils = require("@symbo.ls/utils");
27
- var import_utils2 = require("@domql/utils");
28
- var import_factory = require("../factory.js");
29
- var import_utils3 = require("../utils");
30
- const runThroughMedia = (sequenceProps) => {
837
+
838
+ // ../utils/src/index.js
839
+ var import_utils2 = __toESM(require_cjs3());
840
+
841
+ // ../utils/src/scaling.js
842
+ var import_utils = __toESM(require_cjs3());
843
+
844
+ // ../utils/src/index.js
845
+ var toDashCase = (val) => val.replace(/[A-Z]/g, (match, offset) => (offset > 0 ? "-" : "") + match.toLowerCase()).replace(".", "-");
846
+ var arrayzeValue = (val) => {
847
+ if ((0, import_utils2.isString)(val))
848
+ return val.split(" ");
849
+ if ((0, import_utils2.isObject)(val))
850
+ return Object.keys(val).map((v) => val[v]);
851
+ if ((0, import_utils2.isArray)(val))
852
+ return val;
853
+ };
854
+
855
+ // src/system/spacing.js
856
+ var import_utils9 = __toESM(require_cjs3(), 1);
857
+
858
+ // src/factory.js
859
+ var import_utils3 = __toESM(require_cjs3(), 1);
860
+
861
+ // src/defaultConfig/index.js
862
+ var defaultConfig_exports = {};
863
+ __export(defaultConfig_exports, {
864
+ ANIMATION: () => ANIMATION,
865
+ BREAKPOINTS: () => BREAKPOINTS,
866
+ CASES: () => CASES,
867
+ COLOR: () => COLOR,
868
+ DEVICES: () => DEVICES,
869
+ DOCUMENT: () => DOCUMENT,
870
+ FONT: () => FONT,
871
+ FONT_FACE: () => FONT_FACE,
872
+ FONT_FAMILY: () => FONT_FAMILY,
873
+ FONT_FAMILY_TYPES: () => FONT_FAMILY_TYPES,
874
+ GRADIENT: () => GRADIENT,
875
+ ICONS: () => ICONS,
876
+ MEDIA: () => MEDIA,
877
+ RESET: () => RESET,
878
+ SEQUENCE: () => SEQUENCE,
879
+ SPACING: () => SPACING,
880
+ SVG: () => SVG,
881
+ SVG_DATA: () => SVG_DATA,
882
+ THEME: () => THEME,
883
+ TIMING: () => TIMING,
884
+ TYPOGRAPHY: () => TYPOGRAPHY,
885
+ UNIT: () => UNIT
886
+ });
887
+
888
+ // src/defaultConfig/sequence.js
889
+ var SEQUENCE = {
890
+ "minor-second": 1.067,
891
+ "major-second": 1.125,
892
+ "minor-third": 1.2,
893
+ "major-third": 1.25,
894
+ "perfect-fourth": 1.333,
895
+ "augmented-fourth": 1.414,
896
+ "perfect-fifth": 1.5,
897
+ "minor-sixth": 1.6,
898
+ phi: 1.618,
899
+ // golden-ratio
900
+ "major-sixth": 1.667,
901
+ "square-root-3": 1.732,
902
+ // theodorus
903
+ "minor-seventh": 1.778,
904
+ "major-seventh": 1.875,
905
+ octave: 2,
906
+ "square-root-5": 2.23,
907
+ // pythagoras
908
+ "major-tenth": 2.5,
909
+ "major-eleventh": 2.667,
910
+ "major-twelfth": 3,
911
+ pi: 3.14,
912
+ // archimedes
913
+ "double-octave": 4
914
+ };
915
+
916
+ // src/defaultConfig/unit.js
917
+ var UNIT = {
918
+ default: "em"
919
+ };
920
+
921
+ // src/defaultConfig/typography.js
922
+ var defaultProps = {
923
+ browserDefault: 16,
924
+ base: 16,
925
+ type: "font-size",
926
+ ratio: SEQUENCE["minor-third"],
927
+ range: [-3, 12],
928
+ h1Matches: 6,
929
+ lineHeight: 1.5,
930
+ unit: "em",
931
+ templates: {},
932
+ sequence: {},
933
+ scales: {},
934
+ vars: {}
935
+ };
936
+ var TYPOGRAPHY = defaultProps;
937
+
938
+ // src/defaultConfig/font.js
939
+ var FONT = {};
940
+
941
+ // src/defaultConfig/font-family.js
942
+ var FONT_FAMILY = {};
943
+ var FONT_FAMILY_TYPES = {
944
+ "sans-serif": "Helvetica, Arial, sans-serif, --system-default",
945
+ serif: "Times New Roman, Georgia, serif, --system-default",
946
+ monospace: "Courier New, monospace, --system-default"
947
+ };
948
+ var FONT_FACE = {};
949
+
950
+ // src/defaultConfig/media.js
951
+ var MEDIA = {
952
+ tv: "(min-width: 2780px)",
953
+ screenL: "(max-width: 1920px)",
954
+ screenM: "(max-width: 1680px)",
955
+ screenS: "(max-width: 1440px)",
956
+ tabletL: "(max-width: 1366px)",
957
+ tabletM: "(max-width: 1280px)",
958
+ tabletS: "(max-width: 1024px)",
959
+ mobileL: "(max-width: 768px)",
960
+ mobileM: "(max-width: 560px)",
961
+ mobileS: "(max-width: 480px)",
962
+ mobileXS: "(max-width: 375px)",
963
+ light: "(prefers-color-scheme: light)",
964
+ dark: "(prefers-color-scheme: dark)",
965
+ print: "print"
966
+ };
967
+
968
+ // src/defaultConfig/spacing.js
969
+ var defaultProps2 = {
970
+ base: TYPOGRAPHY.base,
971
+ type: "spacing",
972
+ ratio: SEQUENCE.phi,
973
+ range: [-5, 15],
974
+ subSequence: true,
975
+ unit: "em",
976
+ sequence: {},
977
+ scales: {},
978
+ vars: {}
979
+ };
980
+ var SPACING = defaultProps2;
981
+
982
+ // src/defaultConfig/color.js
983
+ var COLOR = {};
984
+ var GRADIENT = {};
985
+
986
+ // src/defaultConfig/theme.js
987
+ var THEME = {};
988
+
989
+ // src/defaultConfig/icons.js
990
+ var ICONS = {};
991
+
992
+ // src/defaultConfig/timing.js
993
+ var defaultProps3 = {
994
+ default: 150,
995
+ base: 150,
996
+ type: "timing",
997
+ ratio: SEQUENCE["perfect-fourth"],
998
+ range: [-3, 12],
999
+ unit: "ms",
1000
+ sequence: {},
1001
+ scales: {},
1002
+ vars: {}
1003
+ };
1004
+ var TIMING = defaultProps3;
1005
+
1006
+ // src/defaultConfig/document.js
1007
+ var DOCUMENT = {};
1008
+
1009
+ // src/defaultConfig/responsive.js
1010
+ var BREAKPOINTS = {
1011
+ screenL: 1920,
1012
+ screenM: 1680,
1013
+ screenS: 1440,
1014
+ tabletL: 1366,
1015
+ tabletM: 1280,
1016
+ tabletS: 1024,
1017
+ mobileL: 768,
1018
+ mobileM: 560,
1019
+ mobileS: 480,
1020
+ mobileXS: 375
1021
+ };
1022
+ var DEVICES = {
1023
+ screenL: [1920, 1024],
1024
+ screenM: [1680, 1024],
1025
+ screenS: [1440, 978],
1026
+ tabletL: [1366, 926],
1027
+ tabletM: [1280, 768],
1028
+ tabletS: [1024, 768],
1029
+ mobileL: [768, 375],
1030
+ mobileM: [560, 768],
1031
+ mobileS: [480, 768],
1032
+ mobileXS: [375, 768]
1033
+ };
1034
+
1035
+ // src/defaultConfig/cases.js
1036
+ var CASES = {};
1037
+
1038
+ // src/defaultConfig/animation.js
1039
+ var ANIMATION = {};
1040
+
1041
+ // src/defaultConfig/svg.js
1042
+ var SVG = {};
1043
+ var SVG_DATA = {};
1044
+
1045
+ // src/defaultConfig/index.js
1046
+ var RESET = {};
1047
+
1048
+ // src/factory.js
1049
+ var CSS_VARS = {};
1050
+ var CONFIG = {
1051
+ verbose: false,
1052
+ useVariable: true,
1053
+ useReset: true,
1054
+ CSS_VARS,
1055
+ ...defaultConfig_exports
1056
+ };
1057
+ var cachedConfig = (0, import_utils3.deepClone)(CONFIG);
1058
+ var FACTORY = {
1059
+ active: "0",
1060
+ 0: CONFIG
1061
+ };
1062
+ var getActiveConfig = (def) => {
1063
+ if ((0, import_utils3.isDefined)(def) && !FACTORY[def]) {
1064
+ FACTORY[def] = (0, import_utils3.deepClone)(cachedConfig);
1065
+ return FACTORY[def];
1066
+ }
1067
+ return FACTORY[def || FACTORY.active];
1068
+ };
1069
+
1070
+ // src/utils/color.js
1071
+ var import_globals = __toESM(require_cjs(), 1);
1072
+
1073
+ // src/utils/sequence.js
1074
+ var import_utils4 = __toESM(require_cjs3(), 1);
1075
+ var numToLetterMap = {
1076
+ "-6": "U",
1077
+ "-5": "V",
1078
+ "-4": "W",
1079
+ "-3": "X",
1080
+ "-2": "Y",
1081
+ "-1": "Z",
1082
+ 0: "A",
1083
+ 1: "B",
1084
+ 2: "C",
1085
+ 3: "D",
1086
+ 4: "E",
1087
+ 5: "F",
1088
+ 6: "G",
1089
+ 7: "H",
1090
+ 8: "I",
1091
+ 9: "J",
1092
+ 10: "K",
1093
+ 11: "L",
1094
+ 12: "M",
1095
+ 13: "N",
1096
+ 14: "O",
1097
+ 15: "P",
1098
+ 16: "Q",
1099
+ 17: "R",
1100
+ 18: "S",
1101
+ 19: "T"
1102
+ };
1103
+ var setSequenceValue = (props, sequenceProps) => {
1104
+ const { key, variable, value, scaling, index } = props;
1105
+ sequenceProps.sequence[key] = {
1106
+ key,
1107
+ decimal: ~~(value * 100) / 100,
1108
+ val: ~~value,
1109
+ scaling,
1110
+ index,
1111
+ variable
1112
+ };
1113
+ sequenceProps.scales[key] = scaling;
1114
+ sequenceProps.vars[variable] = scaling + sequenceProps.unit;
1115
+ };
1116
+ var generateSubSequence = (props, sequenceProps) => {
1117
+ const { key, base, value, ratio, variable, index } = props;
1118
+ const next = value * ratio;
1119
+ const diff = next - value;
1120
+ const smallscale = diff / 1.618;
1121
+ const valueRounded = ~~value;
1122
+ const nextRounded = ~~next;
1123
+ const diffRounded = nextRounded - valueRounded;
1124
+ let arr = [];
1125
+ const first = next - smallscale;
1126
+ const second = value + smallscale;
1127
+ const middle = (first + second) / 2;
1128
+ if (diffRounded > 16)
1129
+ arr = [first, middle, second];
1130
+ else
1131
+ arr = [first, second];
1132
+ arr.map((v, k) => {
1133
+ const scaling = ~~(v / base * 1e3) / 1e3;
1134
+ const newVar = variable + (k + 1);
1135
+ const props2 = {
1136
+ key: key + (k + 1),
1137
+ variable: newVar,
1138
+ value: v,
1139
+ scaling,
1140
+ index: index + (k + 1) / 10
1141
+ };
1142
+ return setSequenceValue(props2, sequenceProps);
1143
+ });
1144
+ };
1145
+ var switchSequenceOnNegative = (key, base, ratio) => {
1146
+ return base * Math.pow(ratio, key);
1147
+ };
1148
+ var generateSequence = (sequenceProps) => {
1149
+ const { type, base, ratio, range, subSequence } = sequenceProps;
1150
+ const n = Math.abs(range[0]) + Math.abs(range[1]);
1151
+ const prefix = "--" + (type && type.replace(".", "-")) + "-";
1152
+ for (let i = 0; i <= n; i++) {
1153
+ const key = range[1] - i;
1154
+ const letterKey = numToLetterMap[key];
1155
+ const value = switchSequenceOnNegative(key, base, ratio);
1156
+ const scaling = ~~(value / base * 100) / 100;
1157
+ const variable = prefix + letterKey;
1158
+ const props = {
1159
+ key: letterKey,
1160
+ variable,
1161
+ value,
1162
+ base,
1163
+ scaling,
1164
+ ratio,
1165
+ index: key
1166
+ };
1167
+ setSequenceValue(props, sequenceProps);
1168
+ if (subSequence)
1169
+ generateSubSequence(props, sequenceProps);
1170
+ }
1171
+ return sequenceProps;
1172
+ };
1173
+ var getSequenceValue = (value = "A", sequenceProps) => {
1174
+ const CONFIG2 = getActiveConfig();
1175
+ const { UNIT: UNIT2 } = CONFIG2;
1176
+ const {
1177
+ sequence,
1178
+ unit = UNIT2.default,
1179
+ useVariable
1180
+ } = sequenceProps;
1181
+ if ((0, import_utils4.isString)(value) && value.slice(0, 2) === "--")
1182
+ return `var(${value})`;
1183
+ const prefix = `--${toDashCase(sequenceProps.type.replace(".", "-"))}-`;
1184
+ const startsWithDashOrLetterRegex = /^-?[a-zA-Z]/i;
1185
+ const startsWithDashOrLetter = startsWithDashOrLetterRegex.test(value);
1186
+ if (value === "none" || value === "auto" || value === "unset" || value === "inherit" || value === "fit-content" || value === "min-content" || value === "max-content" || value.includes("calc") || !startsWithDashOrLetter)
1187
+ return value;
1188
+ const letterVal = value.toUpperCase();
1189
+ const isNegative = letterVal.slice(0, 1) === "-" ? "-" : "";
1190
+ let absValue = isNegative ? letterVal.slice(1) : letterVal;
1191
+ let mediaName = "";
1192
+ if (absValue.includes("-")) {
1193
+ mediaName = "-" + absValue.split("-")[1].toLowerCase();
1194
+ absValue = absValue.split("-")[0];
1195
+ }
1196
+ const varValue = (v) => `var(${prefix}${v}${mediaName})`;
1197
+ if (absValue.includes("+")) {
1198
+ const args = absValue.split("+");
1199
+ const [first, second] = args;
1200
+ const joint = `${varValue(first)} + ${varValue(second)}`;
1201
+ return isNegative ? `calc((${joint}) * -1)` : `calc(${joint})`;
1202
+ } else if (absValue.includes("-")) {
1203
+ const args = absValue.split("-");
1204
+ const [first, second] = args;
1205
+ const joint = `${varValue(first)} - ${varValue(second)}`;
1206
+ return isNegative ? `calc((${joint}) * -1)` : `calc(${joint})`;
1207
+ }
1208
+ if (!sequence[absValue] && absValue.length === 2) {
1209
+ if (CONFIG2.verbose)
1210
+ console.warn(absValue, "- value is not found because `subSequence` is set to false");
1211
+ absValue = absValue.slice(0, 1);
1212
+ }
1213
+ if (useVariable || CONFIG2.useVariable) {
1214
+ const varValue2 = `var(${prefix}${absValue}${mediaName})`;
1215
+ return isNegative ? `calc(${varValue2} * -1)` : varValue2;
1216
+ }
1217
+ const sequenceItem = sequence ? sequence[absValue] : null;
1218
+ if (!sequenceItem)
1219
+ return console.warn("can't find", sequence, absValue);
1220
+ if (unit === "ms" || unit === "s") {
1221
+ return isNegative + sequenceItem.val + unit;
1222
+ }
1223
+ return isNegative + sequenceItem.scaling + unit;
1224
+ };
1225
+ var getSequenceValuePropertyPair = (value, propertyName, sequenceProps) => {
1226
+ if (typeof value !== "string") {
1227
+ console.warn(propertyName, value, "is not a string");
1228
+ return {};
1229
+ }
1230
+ if (value === "-" || value === "")
1231
+ return {};
1232
+ return { [propertyName]: getSequenceValue(value, sequenceProps) };
1233
+ };
1234
+
1235
+ // src/utils/var.js
1236
+ var import_utils6 = __toESM(require_cjs3(), 1);
1237
+ var applySequenceVars = (props, mediaName, options = {}) => {
1238
+ const CONFIG2 = getActiveConfig();
1239
+ const { UNIT: UNIT2, MEDIA: MEDIA2, TIMING: TIMING2, CSS_VARS: CSS_VARS2 } = CONFIG2;
1240
+ const unit = props.unit || UNIT2.default;
1241
+ const { sequence, scales } = props;
1242
+ for (const key in sequence) {
1243
+ const item = sequence[key];
1244
+ const value = (props.type === TIMING2.type ? sequence[key].val : scales[key]) + unit;
1245
+ if (mediaName) {
1246
+ const query = MEDIA2[mediaName];
1247
+ if (!query) {
1248
+ if (CONFIG2.verbose)
1249
+ console.warn("Can't find query ", query);
1250
+ }
1251
+ let underMediaQuery = CSS_VARS2[`@media ${query}`];
1252
+ if (!underMediaQuery)
1253
+ underMediaQuery = CSS_VARS2[`@media ${query}`] = {};
1254
+ underMediaQuery[item.variable] = `var(${item.variable + "-" + mediaName})`;
1255
+ CSS_VARS2[item.variable + "-" + mediaName] = value;
1256
+ } else {
1257
+ if (options.useDefault === false) {
1258
+ CSS_VARS2[item.variable] = value;
1259
+ } else {
1260
+ CSS_VARS2[item.variable + "-default"] = value;
1261
+ CSS_VARS2[item.variable] = `var(${item.variable + "-default"})`;
1262
+ }
1263
+ }
1264
+ }
1265
+ };
1266
+
1267
+ // src/utils/sprite.js
1268
+ var import_utils7 = __toESM(require_cjs3(), 1);
1269
+
1270
+ // src/system/spacing.js
1271
+ var runThroughMedia = (sequenceProps) => {
31
1272
  for (const prop in sequenceProps) {
32
1273
  const mediaProps = sequenceProps[prop];
33
1274
  if (prop.slice(0, 1) === "@") {
34
1275
  const { type, base, ratio, range, subSequence, h1Matches, unit } = sequenceProps;
35
- (0, import_utils2.merge)(mediaProps, {
1276
+ (0, import_utils9.merge)(mediaProps, {
36
1277
  type,
37
1278
  base,
38
1279
  ratio,
@@ -45,33 +1286,33 @@ const runThroughMedia = (sequenceProps) => {
45
1286
  templates: {},
46
1287
  vars: {}
47
1288
  });
48
- (0, import_utils3.generateSequence)(mediaProps);
1289
+ generateSequence(mediaProps);
49
1290
  const mediaName = prop.slice(1);
50
- (0, import_utils3.applySequenceVars)(mediaProps, mediaName);
1291
+ applySequenceVars(mediaProps, mediaName);
51
1292
  }
52
1293
  }
53
1294
  };
54
- const applySpacingSequence = () => {
55
- const CONFIG = (0, import_factory.getActiveConfig)();
56
- const { SPACING } = CONFIG;
57
- (0, import_utils3.generateSequence)(SPACING);
58
- (0, import_utils3.applySequenceVars)(SPACING);
59
- runThroughMedia(SPACING);
1295
+ var applySpacingSequence = () => {
1296
+ const CONFIG2 = getActiveConfig();
1297
+ const { SPACING: SPACING2 } = CONFIG2;
1298
+ generateSequence(SPACING2);
1299
+ applySequenceVars(SPACING2);
1300
+ runThroughMedia(SPACING2);
60
1301
  };
61
- const getSequence = (sequenceProps) => {
62
- const CONFIG = (0, import_factory.getActiveConfig)();
63
- const { SPACING } = CONFIG;
1302
+ var getSequence = (sequenceProps) => {
1303
+ const CONFIG2 = getActiveConfig();
1304
+ const { SPACING: SPACING2 } = CONFIG2;
64
1305
  if (!sequenceProps)
65
- return SPACING;
1306
+ return SPACING2;
66
1307
  const hasGenerated = Object.keys(sequenceProps.sequence).length > 0;
67
- return hasGenerated ? sequenceProps : (0, import_utils3.generateSequence)(sequenceProps);
1308
+ return hasGenerated ? sequenceProps : generateSequence(sequenceProps);
68
1309
  };
69
- const getSpacingByKey = (value, propertyName = "padding", sequenceProps) => {
1310
+ var getSpacingByKey = (value, propertyName = "padding", sequenceProps) => {
70
1311
  const sequence = getSequence(sequenceProps);
71
- const stack = (0, import_utils.arrayzeValue)(value);
1312
+ const stack = arrayzeValue(value);
72
1313
  if (!stack)
73
1314
  return;
74
- if ((0, import_utils2.isString)(value) && value.includes("calc")) {
1315
+ if ((0, import_utils9.isString)(value) && value.includes("calc")) {
75
1316
  return { [propertyName]: value };
76
1317
  }
77
1318
  if (stack.length > 1) {
@@ -85,29 +1326,29 @@ const getSpacingByKey = (value, propertyName = "padding", sequenceProps) => {
85
1326
  3: ["BlockStart", "Inline", "BlockEnd"],
86
1327
  4: ["BlockStart", "InlineEnd", "BlockEnd", "InlineStart"]
87
1328
  };
88
- const wrapSequenceValueByDirection = (direction, i) => (0, import_utils3.getSequenceValuePropertyPair)(
1329
+ const wrapSequenceValueByDirection = (direction, i) => getSequenceValuePropertyPair(
89
1330
  stack[i],
90
1331
  propertyName + direction + suffix,
91
1332
  sequence
92
1333
  );
93
1334
  return directions[stack.length].map((dir, key) => wrapSequenceValueByDirection(dir, key));
94
1335
  }
95
- return (0, import_utils3.getSequenceValuePropertyPair)(
1336
+ return getSequenceValuePropertyPair(
96
1337
  value,
97
1338
  propertyName,
98
1339
  sequence
99
1340
  );
100
1341
  };
101
- const getSpacingBasedOnRatio = (props, propertyName, val) => {
102
- const CONFIG = (0, import_factory.getActiveConfig)();
103
- const { SPACING } = CONFIG;
1342
+ var getSpacingBasedOnRatio = (props, propertyName, val) => {
1343
+ const CONFIG2 = getActiveConfig();
1344
+ const { SPACING: SPACING2 } = CONFIG2;
104
1345
  const { spacingRatio, unit } = props;
105
1346
  const value = val || props[propertyName];
106
1347
  if (spacingRatio) {
107
- let sequenceProps = SPACING[spacingRatio];
1348
+ let sequenceProps = SPACING2[spacingRatio];
108
1349
  if (!sequenceProps) {
109
- const { type, base, range, subSequence } = SPACING;
110
- sequenceProps = SPACING[spacingRatio] = (0, import_utils2.merge)({
1350
+ const { type, base, range, subSequence } = SPACING2;
1351
+ sequenceProps = SPACING2[spacingRatio] = (0, import_utils9.merge)({
111
1352
  ratio: spacingRatio,
112
1353
  type: type + "-" + spacingRatio,
113
1354
  unit,
@@ -119,11 +1360,11 @@ const getSpacingBasedOnRatio = (props, propertyName, val) => {
119
1360
  base,
120
1361
  range,
121
1362
  subSequence,
122
- ratio: SPACING.ratio,
123
- unit: SPACING.unit
1363
+ ratio: SPACING2.ratio,
1364
+ unit: SPACING2.unit
124
1365
  });
125
1366
  }
126
- (0, import_utils3.applySequenceVars)(sequenceProps, null, { useDefault: false });
1367
+ applySequenceVars(sequenceProps, null, { useDefault: false });
127
1368
  return getSpacingByKey(value, propertyName, sequenceProps);
128
1369
  }
129
1370
  return getSpacingByKey(value, propertyName);