@symbo.ls/scratch 2.11.36 → 2.11.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/factory.js +127 -9
- package/dist/cjs/index.js +233 -102
- package/dist/cjs/set.js +214 -85
- package/dist/cjs/system/color.js +177 -51
- package/dist/cjs/system/document.js +145 -26
- package/dist/cjs/system/font.js +143 -24
- package/dist/cjs/system/index.js +219 -90
- package/dist/cjs/system/reset.js +164 -42
- package/dist/cjs/system/spacing.js +147 -28
- package/dist/cjs/system/svg.js +147 -28
- package/dist/cjs/system/theme.js +184 -58
- package/dist/cjs/system/timing.js +143 -24
- package/dist/cjs/system/typography.js +147 -28
- package/dist/cjs/transforms/index.js +189 -63
- package/dist/cjs/utils/color.js +1044 -2
- package/dist/cjs/utils/index.js +171 -33
- package/dist/cjs/utils/sequence.js +131 -13
- package/dist/cjs/utils/sprite.js +127 -9
- package/dist/cjs/utils/var.js +127 -9
- package/package.json +2 -2
- package/src/system/color.js +5 -19
- package/src/system/reset.js +7 -3
- package/src/utils/color.js +22 -3
|
@@ -282,13 +282,13 @@ var require_cjs3 = __commonJS({
|
|
|
282
282
|
document: () => document2,
|
|
283
283
|
global: () => global,
|
|
284
284
|
self: () => self,
|
|
285
|
-
window: () =>
|
|
285
|
+
window: () => window
|
|
286
286
|
});
|
|
287
287
|
module2.exports = __toCommonJS2(globals_exports);
|
|
288
288
|
var global = globalThis;
|
|
289
289
|
var self = globalThis;
|
|
290
|
-
var
|
|
291
|
-
var document2 =
|
|
290
|
+
var window = globalThis;
|
|
291
|
+
var document2 = window.document;
|
|
292
292
|
}
|
|
293
293
|
});
|
|
294
294
|
|
|
@@ -443,6 +443,9 @@ var require_array = __commonJS({
|
|
|
443
443
|
var array_exports = {};
|
|
444
444
|
__export2(array_exports, {
|
|
445
445
|
arrayContainsOtherArray: () => arrayContainsOtherArray,
|
|
446
|
+
createNestedObject: () => createNestedObject,
|
|
447
|
+
cutArrayAfterValue: () => cutArrayAfterValue,
|
|
448
|
+
cutArrayBeforeValue: () => cutArrayBeforeValue,
|
|
446
449
|
joinArrays: () => joinArrays,
|
|
447
450
|
mergeAndCloneIfArray: () => mergeAndCloneIfArray,
|
|
448
451
|
mergeArray: () => mergeArray,
|
|
@@ -482,6 +485,73 @@ var require_array = __commonJS({
|
|
|
482
485
|
var mergeAndCloneIfArray = (obj) => {
|
|
483
486
|
return (0, import_types.isArray)(obj) ? mergeArray(obj) : (0, import_object.deepClone)(obj);
|
|
484
487
|
};
|
|
488
|
+
var cutArrayBeforeValue = (arr, value) => {
|
|
489
|
+
const index = arr.indexOf(value);
|
|
490
|
+
if (index !== -1) {
|
|
491
|
+
return arr.slice(0, index);
|
|
492
|
+
}
|
|
493
|
+
return arr;
|
|
494
|
+
};
|
|
495
|
+
var cutArrayAfterValue = (arr, value) => {
|
|
496
|
+
const index = arr.indexOf(value);
|
|
497
|
+
if (index !== -1) {
|
|
498
|
+
return arr.slice(index + 1);
|
|
499
|
+
}
|
|
500
|
+
return arr;
|
|
501
|
+
};
|
|
502
|
+
var createNestedObject = (arr, lastValue) => {
|
|
503
|
+
let nestedObject = {};
|
|
504
|
+
if (arr.length === 0) {
|
|
505
|
+
return lastValue;
|
|
506
|
+
}
|
|
507
|
+
arr.reduce((obj, value, index) => {
|
|
508
|
+
if (!obj[value]) {
|
|
509
|
+
obj[value] = {};
|
|
510
|
+
}
|
|
511
|
+
if (index === arr.length - 1 && lastValue) {
|
|
512
|
+
obj[value] = lastValue;
|
|
513
|
+
}
|
|
514
|
+
return obj[value];
|
|
515
|
+
}, nestedObject);
|
|
516
|
+
return nestedObject;
|
|
517
|
+
};
|
|
518
|
+
}
|
|
519
|
+
});
|
|
520
|
+
|
|
521
|
+
// ../../node_modules/@domql/utils/dist/cjs/string.js
|
|
522
|
+
var require_string = __commonJS({
|
|
523
|
+
"../../node_modules/@domql/utils/dist/cjs/string.js"(exports, module2) {
|
|
524
|
+
"use strict";
|
|
525
|
+
var __defProp2 = Object.defineProperty;
|
|
526
|
+
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
527
|
+
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
528
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
|
529
|
+
var __export2 = (target, all) => {
|
|
530
|
+
for (var name in all)
|
|
531
|
+
__defProp2(target, name, { get: all[name], enumerable: true });
|
|
532
|
+
};
|
|
533
|
+
var __copyProps2 = (to, from, except, desc) => {
|
|
534
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
535
|
+
for (let key of __getOwnPropNames2(from))
|
|
536
|
+
if (!__hasOwnProp2.call(to, key) && key !== except)
|
|
537
|
+
__defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
|
|
538
|
+
}
|
|
539
|
+
return to;
|
|
540
|
+
};
|
|
541
|
+
var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
|
|
542
|
+
var string_exports = {};
|
|
543
|
+
__export2(string_exports, {
|
|
544
|
+
stringIncludesAny: () => stringIncludesAny
|
|
545
|
+
});
|
|
546
|
+
module2.exports = __toCommonJS2(string_exports);
|
|
547
|
+
var stringIncludesAny = (str, characters) => {
|
|
548
|
+
for (const char of characters) {
|
|
549
|
+
if (str.includes(char)) {
|
|
550
|
+
return true;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
return false;
|
|
554
|
+
};
|
|
485
555
|
}
|
|
486
556
|
});
|
|
487
557
|
|
|
@@ -525,15 +595,18 @@ var require_object = __commonJS({
|
|
|
525
595
|
merge: () => merge,
|
|
526
596
|
mergeArrayExclude: () => mergeArrayExclude,
|
|
527
597
|
mergeIfExisted: () => mergeIfExisted,
|
|
598
|
+
objectToString: () => objectToString,
|
|
528
599
|
overwrite: () => overwrite,
|
|
529
600
|
overwriteDeep: () => overwriteDeep,
|
|
530
601
|
overwriteShallow: () => overwriteShallow,
|
|
531
|
-
removeFromObject: () => removeFromObject
|
|
602
|
+
removeFromObject: () => removeFromObject,
|
|
603
|
+
stringToObject: () => stringToObject
|
|
532
604
|
});
|
|
533
605
|
module2.exports = __toCommonJS2(object_exports);
|
|
534
606
|
var import_globals = require_cjs3();
|
|
535
607
|
var import_types = require_types();
|
|
536
608
|
var import_array = require_array();
|
|
609
|
+
var import_string = require_string();
|
|
537
610
|
var exec = (param, element, state, context) => {
|
|
538
611
|
if ((0, import_types.isFunction)(param)) {
|
|
539
612
|
return param(
|
|
@@ -551,7 +624,7 @@ var require_object = __commonJS({
|
|
|
551
624
|
};
|
|
552
625
|
var merge = (element, obj, excludeFrom = []) => {
|
|
553
626
|
for (const e in obj) {
|
|
554
|
-
if (excludeFrom.includes(e) || e.
|
|
627
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
555
628
|
continue;
|
|
556
629
|
const elementProp = element[e];
|
|
557
630
|
const objProp = obj[e];
|
|
@@ -563,7 +636,7 @@ var require_object = __commonJS({
|
|
|
563
636
|
};
|
|
564
637
|
var deepMerge2 = (element, extend, excludeFrom = []) => {
|
|
565
638
|
for (const e in extend) {
|
|
566
|
-
if (excludeFrom.includes(e) || e.
|
|
639
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
567
640
|
continue;
|
|
568
641
|
const elementProp = element[e];
|
|
569
642
|
const extendProp = extend[e];
|
|
@@ -578,7 +651,7 @@ var require_object = __commonJS({
|
|
|
578
651
|
var clone = (obj, excludeFrom = []) => {
|
|
579
652
|
const o = {};
|
|
580
653
|
for (const prop in obj) {
|
|
581
|
-
if (excludeFrom.includes(prop) || prop.
|
|
654
|
+
if (excludeFrom.includes(prop) || prop.startsWith("__"))
|
|
582
655
|
continue;
|
|
583
656
|
o[prop] = obj[prop];
|
|
584
657
|
}
|
|
@@ -590,7 +663,7 @@ var require_object = __commonJS({
|
|
|
590
663
|
}
|
|
591
664
|
const o = {};
|
|
592
665
|
for (const k in obj) {
|
|
593
|
-
if (excludeFrom.includes(k) || k.
|
|
666
|
+
if (excludeFrom.includes(k) || k.startsWith("__"))
|
|
594
667
|
continue;
|
|
595
668
|
let v = obj[k];
|
|
596
669
|
if (k === "extend" && (0, import_types.isArray)(v)) {
|
|
@@ -611,7 +684,7 @@ var require_object = __commonJS({
|
|
|
611
684
|
var deepClone2 = (obj, excludeFrom = []) => {
|
|
612
685
|
const o = (0, import_types.isArray)(obj) ? [] : {};
|
|
613
686
|
for (const prop in obj) {
|
|
614
|
-
if (excludeFrom.includes(prop) || prop.
|
|
687
|
+
if (excludeFrom.includes(prop) || prop.startsWith("__"))
|
|
615
688
|
continue;
|
|
616
689
|
let objProp = obj[prop];
|
|
617
690
|
if (prop === "extend" && (0, import_types.isArray)(objProp)) {
|
|
@@ -650,6 +723,40 @@ var require_object = __commonJS({
|
|
|
650
723
|
}
|
|
651
724
|
return stringified;
|
|
652
725
|
};
|
|
726
|
+
var objectToString = (obj, indent = 0) => {
|
|
727
|
+
const spaces = " ".repeat(indent);
|
|
728
|
+
let str = "{\n";
|
|
729
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
730
|
+
const keyAllowdChars = (0, import_string.stringIncludesAny)(key, ["-", ":", "@", ".", "!"]);
|
|
731
|
+
const stringedKey = keyAllowdChars ? `'${key}'` : key;
|
|
732
|
+
str += `${spaces} ${stringedKey}: `;
|
|
733
|
+
if ((0, import_types.isArray)(value)) {
|
|
734
|
+
str += "[\n";
|
|
735
|
+
for (const element of value) {
|
|
736
|
+
if ((0, import_types.isObject)(element) && element !== null) {
|
|
737
|
+
str += `${spaces} ${objectToString(element, indent + 2)},
|
|
738
|
+
`;
|
|
739
|
+
} else if ((0, import_types.isString)(element)) {
|
|
740
|
+
str += `${spaces} '${element}',
|
|
741
|
+
`;
|
|
742
|
+
} else {
|
|
743
|
+
str += `${spaces} ${element},
|
|
744
|
+
`;
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
str += `${spaces} ]`;
|
|
748
|
+
} else if ((0, import_types.isObject)(value)) {
|
|
749
|
+
str += objectToString(value, indent + 1);
|
|
750
|
+
} else if ((0, import_types.isString)(value)) {
|
|
751
|
+
str += (0, import_string.stringIncludesAny)(value, ["\n", "'"]) ? `\`${value}\`` : `'${value}'`;
|
|
752
|
+
} else {
|
|
753
|
+
str += value;
|
|
754
|
+
}
|
|
755
|
+
str += ",\n";
|
|
756
|
+
}
|
|
757
|
+
str += `${spaces}}`;
|
|
758
|
+
return str;
|
|
759
|
+
};
|
|
653
760
|
var detachFunctionsFromObject = (obj, detached = {}) => {
|
|
654
761
|
for (const prop in obj) {
|
|
655
762
|
const objProp = obj[prop];
|
|
@@ -720,6 +827,16 @@ var require_object = __commonJS({
|
|
|
720
827
|
}
|
|
721
828
|
return stringified;
|
|
722
829
|
};
|
|
830
|
+
var stringToObject = (str) => {
|
|
831
|
+
let obj;
|
|
832
|
+
try {
|
|
833
|
+
obj = import_globals.window.eval("(" + str + ")");
|
|
834
|
+
} catch (e) {
|
|
835
|
+
console.warn(e);
|
|
836
|
+
}
|
|
837
|
+
if (obj)
|
|
838
|
+
return obj;
|
|
839
|
+
};
|
|
723
840
|
var diffObjects = (original, objToDiff, cache) => {
|
|
724
841
|
for (const e in objToDiff) {
|
|
725
842
|
if (e === "ref")
|
|
@@ -765,7 +882,7 @@ var require_object = __commonJS({
|
|
|
765
882
|
const { ref } = element;
|
|
766
883
|
const changes = {};
|
|
767
884
|
for (const e in params) {
|
|
768
|
-
if (excludeFrom.includes(e) || e.
|
|
885
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
769
886
|
continue;
|
|
770
887
|
const elementProp = element[e];
|
|
771
888
|
const paramsProp = params[e];
|
|
@@ -778,7 +895,7 @@ var require_object = __commonJS({
|
|
|
778
895
|
};
|
|
779
896
|
var overwriteShallow = (obj, params, excludeFrom = []) => {
|
|
780
897
|
for (const e in params) {
|
|
781
|
-
if (excludeFrom.includes(e) || e.
|
|
898
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
782
899
|
continue;
|
|
783
900
|
obj[e] = params[e];
|
|
784
901
|
}
|
|
@@ -786,7 +903,7 @@ var require_object = __commonJS({
|
|
|
786
903
|
};
|
|
787
904
|
var overwriteDeep = (obj, params, excludeFrom = []) => {
|
|
788
905
|
for (const e in params) {
|
|
789
|
-
if (excludeFrom.includes(e) || e.
|
|
906
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
790
907
|
continue;
|
|
791
908
|
const objProp = obj[e];
|
|
792
909
|
const paramsProp = params[e];
|
|
@@ -967,6 +1084,7 @@ var require_cjs4 = __commonJS({
|
|
|
967
1084
|
__reExport(utils_exports, require_array(), module2.exports);
|
|
968
1085
|
__reExport(utils_exports, require_node(), module2.exports);
|
|
969
1086
|
__reExport(utils_exports, require_log(), module2.exports);
|
|
1087
|
+
__reExport(utils_exports, require_string(), module2.exports);
|
|
970
1088
|
}
|
|
971
1089
|
});
|
|
972
1090
|
|
|
@@ -991,7 +1109,7 @@ var import_utils2 = __toESM(require_cjs4());
|
|
|
991
1109
|
var import_utils = __toESM(require_cjs4());
|
|
992
1110
|
|
|
993
1111
|
// ../utils/src/index.js
|
|
994
|
-
var toDashCase = (val) => val.replace(/[
|
|
1112
|
+
var toDashCase = (val) => val.replace(/[^a-zA-Z0-9]/g, " ").trim().toLowerCase().replace(/\s+/g, "-").replace(/-+/g, "-").replace(/^-|-$/g, "");
|
|
995
1113
|
|
|
996
1114
|
// src/factory.js
|
|
997
1115
|
var import_utils3 = __toESM(require_cjs4(), 1);
|
package/dist/cjs/utils/sprite.js
CHANGED
|
@@ -443,6 +443,9 @@ var require_array = __commonJS({
|
|
|
443
443
|
var array_exports = {};
|
|
444
444
|
__export2(array_exports, {
|
|
445
445
|
arrayContainsOtherArray: () => arrayContainsOtherArray,
|
|
446
|
+
createNestedObject: () => createNestedObject,
|
|
447
|
+
cutArrayAfterValue: () => cutArrayAfterValue,
|
|
448
|
+
cutArrayBeforeValue: () => cutArrayBeforeValue,
|
|
446
449
|
joinArrays: () => joinArrays,
|
|
447
450
|
mergeAndCloneIfArray: () => mergeAndCloneIfArray,
|
|
448
451
|
mergeArray: () => mergeArray,
|
|
@@ -482,6 +485,73 @@ var require_array = __commonJS({
|
|
|
482
485
|
var mergeAndCloneIfArray = (obj) => {
|
|
483
486
|
return (0, import_types.isArray)(obj) ? mergeArray(obj) : (0, import_object.deepClone)(obj);
|
|
484
487
|
};
|
|
488
|
+
var cutArrayBeforeValue = (arr, value) => {
|
|
489
|
+
const index = arr.indexOf(value);
|
|
490
|
+
if (index !== -1) {
|
|
491
|
+
return arr.slice(0, index);
|
|
492
|
+
}
|
|
493
|
+
return arr;
|
|
494
|
+
};
|
|
495
|
+
var cutArrayAfterValue = (arr, value) => {
|
|
496
|
+
const index = arr.indexOf(value);
|
|
497
|
+
if (index !== -1) {
|
|
498
|
+
return arr.slice(index + 1);
|
|
499
|
+
}
|
|
500
|
+
return arr;
|
|
501
|
+
};
|
|
502
|
+
var createNestedObject = (arr, lastValue) => {
|
|
503
|
+
let nestedObject = {};
|
|
504
|
+
if (arr.length === 0) {
|
|
505
|
+
return lastValue;
|
|
506
|
+
}
|
|
507
|
+
arr.reduce((obj, value, index) => {
|
|
508
|
+
if (!obj[value]) {
|
|
509
|
+
obj[value] = {};
|
|
510
|
+
}
|
|
511
|
+
if (index === arr.length - 1 && lastValue) {
|
|
512
|
+
obj[value] = lastValue;
|
|
513
|
+
}
|
|
514
|
+
return obj[value];
|
|
515
|
+
}, nestedObject);
|
|
516
|
+
return nestedObject;
|
|
517
|
+
};
|
|
518
|
+
}
|
|
519
|
+
});
|
|
520
|
+
|
|
521
|
+
// ../../node_modules/@domql/utils/dist/cjs/string.js
|
|
522
|
+
var require_string = __commonJS({
|
|
523
|
+
"../../node_modules/@domql/utils/dist/cjs/string.js"(exports, module2) {
|
|
524
|
+
"use strict";
|
|
525
|
+
var __defProp2 = Object.defineProperty;
|
|
526
|
+
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
527
|
+
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
528
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
|
529
|
+
var __export2 = (target, all) => {
|
|
530
|
+
for (var name in all)
|
|
531
|
+
__defProp2(target, name, { get: all[name], enumerable: true });
|
|
532
|
+
};
|
|
533
|
+
var __copyProps2 = (to, from, except, desc) => {
|
|
534
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
535
|
+
for (let key of __getOwnPropNames2(from))
|
|
536
|
+
if (!__hasOwnProp2.call(to, key) && key !== except)
|
|
537
|
+
__defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
|
|
538
|
+
}
|
|
539
|
+
return to;
|
|
540
|
+
};
|
|
541
|
+
var __toCommonJS2 = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod);
|
|
542
|
+
var string_exports = {};
|
|
543
|
+
__export2(string_exports, {
|
|
544
|
+
stringIncludesAny: () => stringIncludesAny
|
|
545
|
+
});
|
|
546
|
+
module2.exports = __toCommonJS2(string_exports);
|
|
547
|
+
var stringIncludesAny = (str, characters) => {
|
|
548
|
+
for (const char of characters) {
|
|
549
|
+
if (str.includes(char)) {
|
|
550
|
+
return true;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
return false;
|
|
554
|
+
};
|
|
485
555
|
}
|
|
486
556
|
});
|
|
487
557
|
|
|
@@ -525,15 +595,18 @@ var require_object = __commonJS({
|
|
|
525
595
|
merge: () => merge,
|
|
526
596
|
mergeArrayExclude: () => mergeArrayExclude,
|
|
527
597
|
mergeIfExisted: () => mergeIfExisted,
|
|
598
|
+
objectToString: () => objectToString,
|
|
528
599
|
overwrite: () => overwrite,
|
|
529
600
|
overwriteDeep: () => overwriteDeep,
|
|
530
601
|
overwriteShallow: () => overwriteShallow,
|
|
531
|
-
removeFromObject: () => removeFromObject
|
|
602
|
+
removeFromObject: () => removeFromObject,
|
|
603
|
+
stringToObject: () => stringToObject
|
|
532
604
|
});
|
|
533
605
|
module2.exports = __toCommonJS2(object_exports);
|
|
534
606
|
var import_globals = require_cjs3();
|
|
535
607
|
var import_types = require_types();
|
|
536
608
|
var import_array = require_array();
|
|
609
|
+
var import_string = require_string();
|
|
537
610
|
var exec = (param, element, state, context) => {
|
|
538
611
|
if ((0, import_types.isFunction)(param)) {
|
|
539
612
|
return param(
|
|
@@ -551,7 +624,7 @@ var require_object = __commonJS({
|
|
|
551
624
|
};
|
|
552
625
|
var merge = (element, obj, excludeFrom = []) => {
|
|
553
626
|
for (const e in obj) {
|
|
554
|
-
if (excludeFrom.includes(e) || e.
|
|
627
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
555
628
|
continue;
|
|
556
629
|
const elementProp = element[e];
|
|
557
630
|
const objProp = obj[e];
|
|
@@ -563,7 +636,7 @@ var require_object = __commonJS({
|
|
|
563
636
|
};
|
|
564
637
|
var deepMerge2 = (element, extend, excludeFrom = []) => {
|
|
565
638
|
for (const e in extend) {
|
|
566
|
-
if (excludeFrom.includes(e) || e.
|
|
639
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
567
640
|
continue;
|
|
568
641
|
const elementProp = element[e];
|
|
569
642
|
const extendProp = extend[e];
|
|
@@ -578,7 +651,7 @@ var require_object = __commonJS({
|
|
|
578
651
|
var clone = (obj, excludeFrom = []) => {
|
|
579
652
|
const o = {};
|
|
580
653
|
for (const prop in obj) {
|
|
581
|
-
if (excludeFrom.includes(prop) || prop.
|
|
654
|
+
if (excludeFrom.includes(prop) || prop.startsWith("__"))
|
|
582
655
|
continue;
|
|
583
656
|
o[prop] = obj[prop];
|
|
584
657
|
}
|
|
@@ -590,7 +663,7 @@ var require_object = __commonJS({
|
|
|
590
663
|
}
|
|
591
664
|
const o = {};
|
|
592
665
|
for (const k in obj) {
|
|
593
|
-
if (excludeFrom.includes(k) || k.
|
|
666
|
+
if (excludeFrom.includes(k) || k.startsWith("__"))
|
|
594
667
|
continue;
|
|
595
668
|
let v = obj[k];
|
|
596
669
|
if (k === "extend" && (0, import_types.isArray)(v)) {
|
|
@@ -611,7 +684,7 @@ var require_object = __commonJS({
|
|
|
611
684
|
var deepClone2 = (obj, excludeFrom = []) => {
|
|
612
685
|
const o = (0, import_types.isArray)(obj) ? [] : {};
|
|
613
686
|
for (const prop in obj) {
|
|
614
|
-
if (excludeFrom.includes(prop) || prop.
|
|
687
|
+
if (excludeFrom.includes(prop) || prop.startsWith("__"))
|
|
615
688
|
continue;
|
|
616
689
|
let objProp = obj[prop];
|
|
617
690
|
if (prop === "extend" && (0, import_types.isArray)(objProp)) {
|
|
@@ -650,6 +723,40 @@ var require_object = __commonJS({
|
|
|
650
723
|
}
|
|
651
724
|
return stringified;
|
|
652
725
|
};
|
|
726
|
+
var objectToString = (obj, indent = 0) => {
|
|
727
|
+
const spaces = " ".repeat(indent);
|
|
728
|
+
let str = "{\n";
|
|
729
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
730
|
+
const keyAllowdChars = (0, import_string.stringIncludesAny)(key, ["-", ":", "@", ".", "!"]);
|
|
731
|
+
const stringedKey = keyAllowdChars ? `'${key}'` : key;
|
|
732
|
+
str += `${spaces} ${stringedKey}: `;
|
|
733
|
+
if ((0, import_types.isArray)(value)) {
|
|
734
|
+
str += "[\n";
|
|
735
|
+
for (const element of value) {
|
|
736
|
+
if ((0, import_types.isObject)(element) && element !== null) {
|
|
737
|
+
str += `${spaces} ${objectToString(element, indent + 2)},
|
|
738
|
+
`;
|
|
739
|
+
} else if ((0, import_types.isString)(element)) {
|
|
740
|
+
str += `${spaces} '${element}',
|
|
741
|
+
`;
|
|
742
|
+
} else {
|
|
743
|
+
str += `${spaces} ${element},
|
|
744
|
+
`;
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
str += `${spaces} ]`;
|
|
748
|
+
} else if ((0, import_types.isObject)(value)) {
|
|
749
|
+
str += objectToString(value, indent + 1);
|
|
750
|
+
} else if ((0, import_types.isString)(value)) {
|
|
751
|
+
str += (0, import_string.stringIncludesAny)(value, ["\n", "'"]) ? `\`${value}\`` : `'${value}'`;
|
|
752
|
+
} else {
|
|
753
|
+
str += value;
|
|
754
|
+
}
|
|
755
|
+
str += ",\n";
|
|
756
|
+
}
|
|
757
|
+
str += `${spaces}}`;
|
|
758
|
+
return str;
|
|
759
|
+
};
|
|
653
760
|
var detachFunctionsFromObject = (obj, detached = {}) => {
|
|
654
761
|
for (const prop in obj) {
|
|
655
762
|
const objProp = obj[prop];
|
|
@@ -720,6 +827,16 @@ var require_object = __commonJS({
|
|
|
720
827
|
}
|
|
721
828
|
return stringified;
|
|
722
829
|
};
|
|
830
|
+
var stringToObject = (str) => {
|
|
831
|
+
let obj;
|
|
832
|
+
try {
|
|
833
|
+
obj = import_globals.window.eval("(" + str + ")");
|
|
834
|
+
} catch (e) {
|
|
835
|
+
console.warn(e);
|
|
836
|
+
}
|
|
837
|
+
if (obj)
|
|
838
|
+
return obj;
|
|
839
|
+
};
|
|
723
840
|
var diffObjects = (original, objToDiff, cache) => {
|
|
724
841
|
for (const e in objToDiff) {
|
|
725
842
|
if (e === "ref")
|
|
@@ -765,7 +882,7 @@ var require_object = __commonJS({
|
|
|
765
882
|
const { ref } = element;
|
|
766
883
|
const changes = {};
|
|
767
884
|
for (const e in params) {
|
|
768
|
-
if (excludeFrom.includes(e) || e.
|
|
885
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
769
886
|
continue;
|
|
770
887
|
const elementProp = element[e];
|
|
771
888
|
const paramsProp = params[e];
|
|
@@ -778,7 +895,7 @@ var require_object = __commonJS({
|
|
|
778
895
|
};
|
|
779
896
|
var overwriteShallow = (obj, params, excludeFrom = []) => {
|
|
780
897
|
for (const e in params) {
|
|
781
|
-
if (excludeFrom.includes(e) || e.
|
|
898
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
782
899
|
continue;
|
|
783
900
|
obj[e] = params[e];
|
|
784
901
|
}
|
|
@@ -786,7 +903,7 @@ var require_object = __commonJS({
|
|
|
786
903
|
};
|
|
787
904
|
var overwriteDeep = (obj, params, excludeFrom = []) => {
|
|
788
905
|
for (const e in params) {
|
|
789
|
-
if (excludeFrom.includes(e) || e.
|
|
906
|
+
if (excludeFrom.includes(e) || e.startsWith("__"))
|
|
790
907
|
continue;
|
|
791
908
|
const objProp = obj[e];
|
|
792
909
|
const paramsProp = params[e];
|
|
@@ -967,6 +1084,7 @@ var require_cjs4 = __commonJS({
|
|
|
967
1084
|
__reExport(utils_exports, require_array(), module2.exports);
|
|
968
1085
|
__reExport(utils_exports, require_node(), module2.exports);
|
|
969
1086
|
__reExport(utils_exports, require_log(), module2.exports);
|
|
1087
|
+
__reExport(utils_exports, require_string(), module2.exports);
|
|
970
1088
|
}
|
|
971
1089
|
});
|
|
972
1090
|
|