@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: () => isString4,
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 isString4 = (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) || isString4(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: isString4,
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: () => merge,
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 merge = (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/timing.js
19
830
  var timing_exports = {};
20
831
  __export(timing_exports, {
21
832
  applyTimingSequence: () => applyTimingSequence,
@@ -23,26 +834,451 @@ __export(timing_exports, {
23
834
  getTimingFunction: () => getTimingFunction
24
835
  });
25
836
  module.exports = __toCommonJS(timing_exports);
26
- var import_utils = require("@symbo.ls/utils");
27
- var import_factory = require("../factory.js");
28
- var import_utils2 = require("../utils");
29
- const applyTimingSequence = () => {
30
- const CONFIG = (0, import_factory.getActiveConfig)();
31
- const { TIMING } = CONFIG;
32
- (0, import_utils2.generateSequence)(TIMING);
33
- (0, import_utils2.applySequenceVars)(TIMING);
34
- };
35
- const getTimingFunction = (value) => {
36
- const CONFIG = (0, import_factory.getActiveConfig)();
37
- const { TIMING } = CONFIG;
38
- return TIMING[value] || TIMING[(0, import_utils.toCamelCase)(value)] || value;
39
- };
40
- const getTimingByKey = (value, property = "timing") => {
41
- const CONFIG = (0, import_factory.getActiveConfig)();
42
- const { TIMING } = CONFIG;
43
- return (0, import_utils2.getSequenceValuePropertyPair)(
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 toCamelCase = (str) => {
846
+ return str.replace(/(?:^\w|[A-Z]|\b\w)/g, function(word, index) {
847
+ return index === 0 ? word.toLowerCase() : word.toUpperCase();
848
+ }).replaceAll(/\s+/g, "");
849
+ };
850
+ var toDashCase = (val) => val.replace(/[A-Z]/g, (match, offset) => (offset > 0 ? "-" : "") + match.toLowerCase()).replace(".", "-");
851
+
852
+ // src/factory.js
853
+ var import_utils3 = __toESM(require_cjs3(), 1);
854
+
855
+ // src/defaultConfig/index.js
856
+ var defaultConfig_exports = {};
857
+ __export(defaultConfig_exports, {
858
+ ANIMATION: () => ANIMATION,
859
+ BREAKPOINTS: () => BREAKPOINTS,
860
+ CASES: () => CASES,
861
+ COLOR: () => COLOR,
862
+ DEVICES: () => DEVICES,
863
+ DOCUMENT: () => DOCUMENT,
864
+ FONT: () => FONT,
865
+ FONT_FACE: () => FONT_FACE,
866
+ FONT_FAMILY: () => FONT_FAMILY,
867
+ FONT_FAMILY_TYPES: () => FONT_FAMILY_TYPES,
868
+ GRADIENT: () => GRADIENT,
869
+ ICONS: () => ICONS,
870
+ MEDIA: () => MEDIA,
871
+ RESET: () => RESET,
872
+ SEQUENCE: () => SEQUENCE,
873
+ SPACING: () => SPACING,
874
+ SVG: () => SVG,
875
+ SVG_DATA: () => SVG_DATA,
876
+ THEME: () => THEME,
877
+ TIMING: () => TIMING,
878
+ TYPOGRAPHY: () => TYPOGRAPHY,
879
+ UNIT: () => UNIT
880
+ });
881
+
882
+ // src/defaultConfig/sequence.js
883
+ var SEQUENCE = {
884
+ "minor-second": 1.067,
885
+ "major-second": 1.125,
886
+ "minor-third": 1.2,
887
+ "major-third": 1.25,
888
+ "perfect-fourth": 1.333,
889
+ "augmented-fourth": 1.414,
890
+ "perfect-fifth": 1.5,
891
+ "minor-sixth": 1.6,
892
+ phi: 1.618,
893
+ // golden-ratio
894
+ "major-sixth": 1.667,
895
+ "square-root-3": 1.732,
896
+ // theodorus
897
+ "minor-seventh": 1.778,
898
+ "major-seventh": 1.875,
899
+ octave: 2,
900
+ "square-root-5": 2.23,
901
+ // pythagoras
902
+ "major-tenth": 2.5,
903
+ "major-eleventh": 2.667,
904
+ "major-twelfth": 3,
905
+ pi: 3.14,
906
+ // archimedes
907
+ "double-octave": 4
908
+ };
909
+
910
+ // src/defaultConfig/unit.js
911
+ var UNIT = {
912
+ default: "em"
913
+ };
914
+
915
+ // src/defaultConfig/typography.js
916
+ var defaultProps = {
917
+ browserDefault: 16,
918
+ base: 16,
919
+ type: "font-size",
920
+ ratio: SEQUENCE["minor-third"],
921
+ range: [-3, 12],
922
+ h1Matches: 6,
923
+ lineHeight: 1.5,
924
+ unit: "em",
925
+ templates: {},
926
+ sequence: {},
927
+ scales: {},
928
+ vars: {}
929
+ };
930
+ var TYPOGRAPHY = defaultProps;
931
+
932
+ // src/defaultConfig/font.js
933
+ var FONT = {};
934
+
935
+ // src/defaultConfig/font-family.js
936
+ var FONT_FAMILY = {};
937
+ var FONT_FAMILY_TYPES = {
938
+ "sans-serif": "Helvetica, Arial, sans-serif, --system-default",
939
+ serif: "Times New Roman, Georgia, serif, --system-default",
940
+ monospace: "Courier New, monospace, --system-default"
941
+ };
942
+ var FONT_FACE = {};
943
+
944
+ // src/defaultConfig/media.js
945
+ var MEDIA = {
946
+ tv: "(min-width: 2780px)",
947
+ screenL: "(max-width: 1920px)",
948
+ screenM: "(max-width: 1680px)",
949
+ screenS: "(max-width: 1440px)",
950
+ tabletL: "(max-width: 1366px)",
951
+ tabletM: "(max-width: 1280px)",
952
+ tabletS: "(max-width: 1024px)",
953
+ mobileL: "(max-width: 768px)",
954
+ mobileM: "(max-width: 560px)",
955
+ mobileS: "(max-width: 480px)",
956
+ mobileXS: "(max-width: 375px)",
957
+ light: "(prefers-color-scheme: light)",
958
+ dark: "(prefers-color-scheme: dark)",
959
+ print: "print"
960
+ };
961
+
962
+ // src/defaultConfig/spacing.js
963
+ var defaultProps2 = {
964
+ base: TYPOGRAPHY.base,
965
+ type: "spacing",
966
+ ratio: SEQUENCE.phi,
967
+ range: [-5, 15],
968
+ subSequence: true,
969
+ unit: "em",
970
+ sequence: {},
971
+ scales: {},
972
+ vars: {}
973
+ };
974
+ var SPACING = defaultProps2;
975
+
976
+ // src/defaultConfig/color.js
977
+ var COLOR = {};
978
+ var GRADIENT = {};
979
+
980
+ // src/defaultConfig/theme.js
981
+ var THEME = {};
982
+
983
+ // src/defaultConfig/icons.js
984
+ var ICONS = {};
985
+
986
+ // src/defaultConfig/timing.js
987
+ var defaultProps3 = {
988
+ default: 150,
989
+ base: 150,
990
+ type: "timing",
991
+ ratio: SEQUENCE["perfect-fourth"],
992
+ range: [-3, 12],
993
+ unit: "ms",
994
+ sequence: {},
995
+ scales: {},
996
+ vars: {}
997
+ };
998
+ var TIMING = defaultProps3;
999
+
1000
+ // src/defaultConfig/document.js
1001
+ var DOCUMENT = {};
1002
+
1003
+ // src/defaultConfig/responsive.js
1004
+ var BREAKPOINTS = {
1005
+ screenL: 1920,
1006
+ screenM: 1680,
1007
+ screenS: 1440,
1008
+ tabletL: 1366,
1009
+ tabletM: 1280,
1010
+ tabletS: 1024,
1011
+ mobileL: 768,
1012
+ mobileM: 560,
1013
+ mobileS: 480,
1014
+ mobileXS: 375
1015
+ };
1016
+ var DEVICES = {
1017
+ screenL: [1920, 1024],
1018
+ screenM: [1680, 1024],
1019
+ screenS: [1440, 978],
1020
+ tabletL: [1366, 926],
1021
+ tabletM: [1280, 768],
1022
+ tabletS: [1024, 768],
1023
+ mobileL: [768, 375],
1024
+ mobileM: [560, 768],
1025
+ mobileS: [480, 768],
1026
+ mobileXS: [375, 768]
1027
+ };
1028
+
1029
+ // src/defaultConfig/cases.js
1030
+ var CASES = {};
1031
+
1032
+ // src/defaultConfig/animation.js
1033
+ var ANIMATION = {};
1034
+
1035
+ // src/defaultConfig/svg.js
1036
+ var SVG = {};
1037
+ var SVG_DATA = {};
1038
+
1039
+ // src/defaultConfig/index.js
1040
+ var RESET = {};
1041
+
1042
+ // src/factory.js
1043
+ var CSS_VARS = {};
1044
+ var CONFIG = {
1045
+ verbose: false,
1046
+ useVariable: true,
1047
+ useReset: true,
1048
+ CSS_VARS,
1049
+ ...defaultConfig_exports
1050
+ };
1051
+ var cachedConfig = (0, import_utils3.deepClone)(CONFIG);
1052
+ var FACTORY = {
1053
+ active: "0",
1054
+ 0: CONFIG
1055
+ };
1056
+ var getActiveConfig = (def) => {
1057
+ if ((0, import_utils3.isDefined)(def) && !FACTORY[def]) {
1058
+ FACTORY[def] = (0, import_utils3.deepClone)(cachedConfig);
1059
+ return FACTORY[def];
1060
+ }
1061
+ return FACTORY[def || FACTORY.active];
1062
+ };
1063
+
1064
+ // src/utils/color.js
1065
+ var import_globals = __toESM(require_cjs(), 1);
1066
+
1067
+ // src/utils/sequence.js
1068
+ var import_utils4 = __toESM(require_cjs3(), 1);
1069
+ var numToLetterMap = {
1070
+ "-6": "U",
1071
+ "-5": "V",
1072
+ "-4": "W",
1073
+ "-3": "X",
1074
+ "-2": "Y",
1075
+ "-1": "Z",
1076
+ 0: "A",
1077
+ 1: "B",
1078
+ 2: "C",
1079
+ 3: "D",
1080
+ 4: "E",
1081
+ 5: "F",
1082
+ 6: "G",
1083
+ 7: "H",
1084
+ 8: "I",
1085
+ 9: "J",
1086
+ 10: "K",
1087
+ 11: "L",
1088
+ 12: "M",
1089
+ 13: "N",
1090
+ 14: "O",
1091
+ 15: "P",
1092
+ 16: "Q",
1093
+ 17: "R",
1094
+ 18: "S",
1095
+ 19: "T"
1096
+ };
1097
+ var setSequenceValue = (props, sequenceProps) => {
1098
+ const { key, variable, value, scaling, index } = props;
1099
+ sequenceProps.sequence[key] = {
1100
+ key,
1101
+ decimal: ~~(value * 100) / 100,
1102
+ val: ~~value,
1103
+ scaling,
1104
+ index,
1105
+ variable
1106
+ };
1107
+ sequenceProps.scales[key] = scaling;
1108
+ sequenceProps.vars[variable] = scaling + sequenceProps.unit;
1109
+ };
1110
+ var generateSubSequence = (props, sequenceProps) => {
1111
+ const { key, base, value, ratio, variable, index } = props;
1112
+ const next = value * ratio;
1113
+ const diff = next - value;
1114
+ const smallscale = diff / 1.618;
1115
+ const valueRounded = ~~value;
1116
+ const nextRounded = ~~next;
1117
+ const diffRounded = nextRounded - valueRounded;
1118
+ let arr = [];
1119
+ const first = next - smallscale;
1120
+ const second = value + smallscale;
1121
+ const middle = (first + second) / 2;
1122
+ if (diffRounded > 16)
1123
+ arr = [first, middle, second];
1124
+ else
1125
+ arr = [first, second];
1126
+ arr.map((v, k) => {
1127
+ const scaling = ~~(v / base * 1e3) / 1e3;
1128
+ const newVar = variable + (k + 1);
1129
+ const props2 = {
1130
+ key: key + (k + 1),
1131
+ variable: newVar,
1132
+ value: v,
1133
+ scaling,
1134
+ index: index + (k + 1) / 10
1135
+ };
1136
+ return setSequenceValue(props2, sequenceProps);
1137
+ });
1138
+ };
1139
+ var switchSequenceOnNegative = (key, base, ratio) => {
1140
+ return base * Math.pow(ratio, key);
1141
+ };
1142
+ var generateSequence = (sequenceProps) => {
1143
+ const { type, base, ratio, range, subSequence } = sequenceProps;
1144
+ const n = Math.abs(range[0]) + Math.abs(range[1]);
1145
+ const prefix = "--" + (type && type.replace(".", "-")) + "-";
1146
+ for (let i = 0; i <= n; i++) {
1147
+ const key = range[1] - i;
1148
+ const letterKey = numToLetterMap[key];
1149
+ const value = switchSequenceOnNegative(key, base, ratio);
1150
+ const scaling = ~~(value / base * 100) / 100;
1151
+ const variable = prefix + letterKey;
1152
+ const props = {
1153
+ key: letterKey,
1154
+ variable,
1155
+ value,
1156
+ base,
1157
+ scaling,
1158
+ ratio,
1159
+ index: key
1160
+ };
1161
+ setSequenceValue(props, sequenceProps);
1162
+ if (subSequence)
1163
+ generateSubSequence(props, sequenceProps);
1164
+ }
1165
+ return sequenceProps;
1166
+ };
1167
+ var getSequenceValue = (value = "A", sequenceProps) => {
1168
+ const CONFIG2 = getActiveConfig();
1169
+ const { UNIT: UNIT2 } = CONFIG2;
1170
+ const {
1171
+ sequence,
1172
+ unit = UNIT2.default,
1173
+ useVariable
1174
+ } = sequenceProps;
1175
+ if ((0, import_utils4.isString)(value) && value.slice(0, 2) === "--")
1176
+ return `var(${value})`;
1177
+ const prefix = `--${toDashCase(sequenceProps.type.replace(".", "-"))}-`;
1178
+ const startsWithDashOrLetterRegex = /^-?[a-zA-Z]/i;
1179
+ const startsWithDashOrLetter = startsWithDashOrLetterRegex.test(value);
1180
+ if (value === "none" || value === "auto" || value === "unset" || value === "inherit" || value === "fit-content" || value === "min-content" || value === "max-content" || value.includes("calc") || !startsWithDashOrLetter)
1181
+ return value;
1182
+ const letterVal = value.toUpperCase();
1183
+ const isNegative = letterVal.slice(0, 1) === "-" ? "-" : "";
1184
+ let absValue = isNegative ? letterVal.slice(1) : letterVal;
1185
+ let mediaName = "";
1186
+ if (absValue.includes("-")) {
1187
+ mediaName = "-" + absValue.split("-")[1].toLowerCase();
1188
+ absValue = absValue.split("-")[0];
1189
+ }
1190
+ const varValue = (v) => `var(${prefix}${v}${mediaName})`;
1191
+ if (absValue.includes("+")) {
1192
+ const args = absValue.split("+");
1193
+ const [first, second] = args;
1194
+ const joint = `${varValue(first)} + ${varValue(second)}`;
1195
+ return isNegative ? `calc((${joint}) * -1)` : `calc(${joint})`;
1196
+ } else if (absValue.includes("-")) {
1197
+ const args = absValue.split("-");
1198
+ const [first, second] = args;
1199
+ const joint = `${varValue(first)} - ${varValue(second)}`;
1200
+ return isNegative ? `calc((${joint}) * -1)` : `calc(${joint})`;
1201
+ }
1202
+ if (!sequence[absValue] && absValue.length === 2) {
1203
+ if (CONFIG2.verbose)
1204
+ console.warn(absValue, "- value is not found because `subSequence` is set to false");
1205
+ absValue = absValue.slice(0, 1);
1206
+ }
1207
+ if (useVariable || CONFIG2.useVariable) {
1208
+ const varValue2 = `var(${prefix}${absValue}${mediaName})`;
1209
+ return isNegative ? `calc(${varValue2} * -1)` : varValue2;
1210
+ }
1211
+ const sequenceItem = sequence ? sequence[absValue] : null;
1212
+ if (!sequenceItem)
1213
+ return console.warn("can't find", sequence, absValue);
1214
+ if (unit === "ms" || unit === "s") {
1215
+ return isNegative + sequenceItem.val + unit;
1216
+ }
1217
+ return isNegative + sequenceItem.scaling + unit;
1218
+ };
1219
+ var getSequenceValuePropertyPair = (value, propertyName, sequenceProps) => {
1220
+ if (typeof value !== "string") {
1221
+ console.warn(propertyName, value, "is not a string");
1222
+ return {};
1223
+ }
1224
+ if (value === "-" || value === "")
1225
+ return {};
1226
+ return { [propertyName]: getSequenceValue(value, sequenceProps) };
1227
+ };
1228
+
1229
+ // src/utils/var.js
1230
+ var import_utils6 = __toESM(require_cjs3(), 1);
1231
+ var applySequenceVars = (props, mediaName, options = {}) => {
1232
+ const CONFIG2 = getActiveConfig();
1233
+ const { UNIT: UNIT2, MEDIA: MEDIA2, TIMING: TIMING2, CSS_VARS: CSS_VARS2 } = CONFIG2;
1234
+ const unit = props.unit || UNIT2.default;
1235
+ const { sequence, scales } = props;
1236
+ for (const key in sequence) {
1237
+ const item = sequence[key];
1238
+ const value = (props.type === TIMING2.type ? sequence[key].val : scales[key]) + unit;
1239
+ if (mediaName) {
1240
+ const query = MEDIA2[mediaName];
1241
+ if (!query) {
1242
+ if (CONFIG2.verbose)
1243
+ console.warn("Can't find query ", query);
1244
+ }
1245
+ let underMediaQuery = CSS_VARS2[`@media ${query}`];
1246
+ if (!underMediaQuery)
1247
+ underMediaQuery = CSS_VARS2[`@media ${query}`] = {};
1248
+ underMediaQuery[item.variable] = `var(${item.variable + "-" + mediaName})`;
1249
+ CSS_VARS2[item.variable + "-" + mediaName] = value;
1250
+ } else {
1251
+ if (options.useDefault === false) {
1252
+ CSS_VARS2[item.variable] = value;
1253
+ } else {
1254
+ CSS_VARS2[item.variable + "-default"] = value;
1255
+ CSS_VARS2[item.variable] = `var(${item.variable + "-default"})`;
1256
+ }
1257
+ }
1258
+ }
1259
+ };
1260
+
1261
+ // src/utils/sprite.js
1262
+ var import_utils7 = __toESM(require_cjs3(), 1);
1263
+
1264
+ // src/system/timing.js
1265
+ var applyTimingSequence = () => {
1266
+ const CONFIG2 = getActiveConfig();
1267
+ const { TIMING: TIMING2 } = CONFIG2;
1268
+ generateSequence(TIMING2);
1269
+ applySequenceVars(TIMING2);
1270
+ };
1271
+ var getTimingFunction = (value) => {
1272
+ const CONFIG2 = getActiveConfig();
1273
+ const { TIMING: TIMING2 } = CONFIG2;
1274
+ return TIMING2[value] || TIMING2[toCamelCase(value)] || value;
1275
+ };
1276
+ var getTimingByKey = (value, property = "timing") => {
1277
+ const CONFIG2 = getActiveConfig();
1278
+ const { TIMING: TIMING2 } = CONFIG2;
1279
+ return getSequenceValuePropertyPair(
44
1280
  value,
45
1281
  property,
46
- TIMING
1282
+ TIMING2
47
1283
  );
48
1284
  };