@symbo.ls/scratch 2.11.237 → 2.11.247

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.
@@ -248,7 +248,7 @@ var require_types = __commonJS({
248
248
  isFunction: () => isFunction,
249
249
  isNot: () => isNot,
250
250
  isNull: () => isNull,
251
- isNumber: () => isNumber2,
251
+ isNumber: () => isNumber3,
252
252
  isObject: () => isObject4,
253
253
  isObjectLike: () => isObjectLike2,
254
254
  isString: () => isString5,
@@ -262,7 +262,7 @@ var require_types = __commonJS({
262
262
  return typeof arg === "object" && arg.constructor === Object;
263
263
  };
264
264
  var isString5 = (arg) => typeof arg === "string";
265
- var isNumber2 = (arg) => typeof arg === "number";
265
+ var isNumber3 = (arg) => typeof arg === "number";
266
266
  var isFunction = (arg) => typeof arg === "function";
267
267
  var isBoolean = (arg) => arg === true || arg === false;
268
268
  var isNull = (arg) => arg === null;
@@ -274,7 +274,7 @@ var require_types = __commonJS({
274
274
  return typeof arg === "object";
275
275
  };
276
276
  var isDefined2 = (arg) => {
277
- return isObject4(arg) || isObjectLike2(arg) || isString5(arg) || isNumber2(arg) || isFunction(arg) || isArray4(arg) || isObjectLike2(arg) || isBoolean(arg) || isDate(arg) || isNull(arg);
277
+ return isObject4(arg) || isObjectLike2(arg) || isString5(arg) || isNumber3(arg) || isFunction(arg) || isArray4(arg) || isObjectLike2(arg) || isBoolean(arg) || isDate(arg) || isNull(arg);
278
278
  };
279
279
  var isUndefined = (arg) => {
280
280
  return arg === void 0;
@@ -285,7 +285,7 @@ var require_types = __commonJS({
285
285
  object: isObject4,
286
286
  string: isString5,
287
287
  date: isDate,
288
- number: isNumber2,
288
+ number: isNumber3,
289
289
  null: isNull,
290
290
  function: isFunction,
291
291
  objectLike: isObjectLike2,
@@ -443,7 +443,8 @@ var require_string = __commonJS({
443
443
  var string_exports = {};
444
444
  __export2(string_exports, {
445
445
  replaceLiteralsWithObjectFields: () => replaceLiteralsWithObjectFields,
446
- stringIncludesAny: () => stringIncludesAny
446
+ stringIncludesAny: () => stringIncludesAny,
447
+ trimStringFromSymbols: () => trimStringFromSymbols
447
448
  });
448
449
  module2.exports = __toCommonJS2(string_exports);
449
450
  var stringIncludesAny = (str, characters) => {
@@ -454,6 +455,10 @@ var require_string = __commonJS({
454
455
  }
455
456
  return false;
456
457
  };
458
+ var trimStringFromSymbols = (str, characters) => {
459
+ const pattern = new RegExp(`[${characters.join("\\")}]`, "g");
460
+ return str.replace(pattern, "");
461
+ };
457
462
  var brackRegex = /\{\{\s*((?:\.\.\/)+)?([^}\s]+)\s*\}\}/g;
458
463
  var replaceLiteralsWithObjectFields = (str, state) => {
459
464
  if (!str.includes("{{"))
@@ -505,6 +510,7 @@ var require_object = __commonJS({
505
510
  clone: () => clone,
506
511
  deepClone: () => deepClone2,
507
512
  deepCloneExclude: () => deepCloneExclude,
513
+ deepCloneWithExtnd: () => deepCloneWithExtnd,
508
514
  deepContains: () => deepContains,
509
515
  deepDestringify: () => deepDestringify,
510
516
  deepDiff: () => deepDiff,
@@ -635,6 +641,23 @@ var require_object = __commonJS({
635
641
  }
636
642
  return o;
637
643
  };
644
+ var deepCloneWithExtnd = (obj, excludeFrom = [], cleanUndefined = false) => {
645
+ const o = (0, import_types.isArray)(obj) ? [] : {};
646
+ for (const prop in obj) {
647
+ if (prop === "__proto__")
648
+ continue;
649
+ if (excludeFrom.includes(prop) || prop.startsWith("__"))
650
+ continue;
651
+ const objProp = obj[prop];
652
+ if (cleanUndefined && (0, import_types.isUndefined)(objProp))
653
+ continue;
654
+ if ((0, import_types.isObjectLike)(objProp)) {
655
+ o[prop] = deepCloneWithExtnd(objProp, excludeFrom, cleanUndefined);
656
+ } else
657
+ o[prop] = objProp;
658
+ }
659
+ return o;
660
+ };
638
661
  var deepStringify = (obj, stringified = {}) => {
639
662
  for (const prop in obj) {
640
663
  const objProp = obj[prop];
@@ -665,7 +688,7 @@ var require_object = __commonJS({
665
688
  const spaces = " ".repeat(indent);
666
689
  let str = "{\n";
667
690
  for (const [key, value] of Object.entries(obj)) {
668
- const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!"]);
691
+ const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!", " "]);
669
692
  const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
670
693
  str += `${spaces} ${stringedKey}: `;
671
694
  if ((0, import_types.isArray)(value)) {
@@ -1710,26 +1733,6 @@ var FONT_FACE = {};
1710
1733
  // src/defaultConfig/media.js
1711
1734
  var MEDIA = {
1712
1735
  tv: "(min-width: 2780px)",
1713
- screenL: "(max-width: 1920px)",
1714
- "screenL<": "(min-width: 1920px)",
1715
- screenM: "(max-width: 1680px)",
1716
- "screenM<": "(min-width: 1680px)",
1717
- screenS: "(max-width: 1440px)",
1718
- "screenS<": "(min-width: 1440px)",
1719
- tabletL: "(max-width: 1366px)",
1720
- "tabletL<": "(min-width: 1366px)",
1721
- tabletM: "(max-width: 1280px)",
1722
- "tabletM<": "(min-width: 1280px)",
1723
- tabletS: "(max-width: 1024px)",
1724
- "tabletS<": "(min-width: 1024px)",
1725
- mobileL: "(max-width: 768px)",
1726
- "mobileL<": "(min-width: 768px)",
1727
- mobileM: "(max-width: 560px)",
1728
- "mobileM<": "(min-width: 560px)",
1729
- mobileS: "(max-width: 480px)",
1730
- "mobileS<": "(min-width: 480px)",
1731
- mobileXS: "(max-width: 375px)",
1732
- "mobileXS<": "(min-width: 375px)",
1733
1736
  light: "(prefers-color-scheme: light)",
1734
1737
  dark: "(prefers-color-scheme: dark)",
1735
1738
  print: "print"
@@ -212,7 +212,7 @@ var require_types = __commonJS({
212
212
  isFunction: () => isFunction,
213
213
  isNot: () => isNot,
214
214
  isNull: () => isNull,
215
- isNumber: () => isNumber,
215
+ isNumber: () => isNumber2,
216
216
  isObject: () => isObject4,
217
217
  isObjectLike: () => isObjectLike,
218
218
  isString: () => isString3,
@@ -226,7 +226,7 @@ var require_types = __commonJS({
226
226
  return typeof arg === "object" && arg.constructor === Object;
227
227
  };
228
228
  var isString3 = (arg) => typeof arg === "string";
229
- var isNumber = (arg) => typeof arg === "number";
229
+ var isNumber2 = (arg) => typeof arg === "number";
230
230
  var isFunction = (arg) => typeof arg === "function";
231
231
  var isBoolean = (arg) => arg === true || arg === false;
232
232
  var isNull = (arg) => arg === null;
@@ -238,7 +238,7 @@ var require_types = __commonJS({
238
238
  return typeof arg === "object";
239
239
  };
240
240
  var isDefined2 = (arg) => {
241
- return isObject4(arg) || isObjectLike(arg) || isString3(arg) || isNumber(arg) || isFunction(arg) || isArray3(arg) || isObjectLike(arg) || isBoolean(arg) || isDate(arg) || isNull(arg);
241
+ return isObject4(arg) || isObjectLike(arg) || isString3(arg) || isNumber2(arg) || isFunction(arg) || isArray3(arg) || isObjectLike(arg) || isBoolean(arg) || isDate(arg) || isNull(arg);
242
242
  };
243
243
  var isUndefined = (arg) => {
244
244
  return arg === void 0;
@@ -249,7 +249,7 @@ var require_types = __commonJS({
249
249
  object: isObject4,
250
250
  string: isString3,
251
251
  date: isDate,
252
- number: isNumber,
252
+ number: isNumber2,
253
253
  null: isNull,
254
254
  function: isFunction,
255
255
  objectLike: isObjectLike,
@@ -407,7 +407,8 @@ var require_string = __commonJS({
407
407
  var string_exports = {};
408
408
  __export2(string_exports, {
409
409
  replaceLiteralsWithObjectFields: () => replaceLiteralsWithObjectFields,
410
- stringIncludesAny: () => stringIncludesAny
410
+ stringIncludesAny: () => stringIncludesAny,
411
+ trimStringFromSymbols: () => trimStringFromSymbols
411
412
  });
412
413
  module2.exports = __toCommonJS2(string_exports);
413
414
  var stringIncludesAny = (str, characters) => {
@@ -418,6 +419,10 @@ var require_string = __commonJS({
418
419
  }
419
420
  return false;
420
421
  };
422
+ var trimStringFromSymbols = (str, characters) => {
423
+ const pattern = new RegExp(`[${characters.join("\\")}]`, "g");
424
+ return str.replace(pattern, "");
425
+ };
421
426
  var brackRegex = /\{\{\s*((?:\.\.\/)+)?([^}\s]+)\s*\}\}/g;
422
427
  var replaceLiteralsWithObjectFields = (str, state) => {
423
428
  if (!str.includes("{{"))
@@ -469,6 +474,7 @@ var require_object = __commonJS({
469
474
  clone: () => clone,
470
475
  deepClone: () => deepClone2,
471
476
  deepCloneExclude: () => deepCloneExclude,
477
+ deepCloneWithExtnd: () => deepCloneWithExtnd,
472
478
  deepContains: () => deepContains,
473
479
  deepDestringify: () => deepDestringify,
474
480
  deepDiff: () => deepDiff,
@@ -599,6 +605,23 @@ var require_object = __commonJS({
599
605
  }
600
606
  return o;
601
607
  };
608
+ var deepCloneWithExtnd = (obj, excludeFrom = [], cleanUndefined = false) => {
609
+ const o = (0, import_types.isArray)(obj) ? [] : {};
610
+ for (const prop in obj) {
611
+ if (prop === "__proto__")
612
+ continue;
613
+ if (excludeFrom.includes(prop) || prop.startsWith("__"))
614
+ continue;
615
+ const objProp = obj[prop];
616
+ if (cleanUndefined && (0, import_types.isUndefined)(objProp))
617
+ continue;
618
+ if ((0, import_types.isObjectLike)(objProp)) {
619
+ o[prop] = deepCloneWithExtnd(objProp, excludeFrom, cleanUndefined);
620
+ } else
621
+ o[prop] = objProp;
622
+ }
623
+ return o;
624
+ };
602
625
  var deepStringify = (obj, stringified = {}) => {
603
626
  for (const prop in obj) {
604
627
  const objProp = obj[prop];
@@ -629,7 +652,7 @@ var require_object = __commonJS({
629
652
  const spaces = " ".repeat(indent);
630
653
  let str = "{\n";
631
654
  for (const [key, value] of Object.entries(obj)) {
632
- const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!"]);
655
+ const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!", " "]);
633
656
  const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
634
657
  str += `${spaces} ${stringedKey}: `;
635
658
  if ((0, import_types.isArray)(value)) {
@@ -1433,26 +1456,6 @@ var FONT_FACE = {};
1433
1456
  // src/defaultConfig/media.js
1434
1457
  var MEDIA = {
1435
1458
  tv: "(min-width: 2780px)",
1436
- screenL: "(max-width: 1920px)",
1437
- "screenL<": "(min-width: 1920px)",
1438
- screenM: "(max-width: 1680px)",
1439
- "screenM<": "(min-width: 1680px)",
1440
- screenS: "(max-width: 1440px)",
1441
- "screenS<": "(min-width: 1440px)",
1442
- tabletL: "(max-width: 1366px)",
1443
- "tabletL<": "(min-width: 1366px)",
1444
- tabletM: "(max-width: 1280px)",
1445
- "tabletM<": "(min-width: 1280px)",
1446
- tabletS: "(max-width: 1024px)",
1447
- "tabletS<": "(min-width: 1024px)",
1448
- mobileL: "(max-width: 768px)",
1449
- "mobileL<": "(min-width: 768px)",
1450
- mobileM: "(max-width: 560px)",
1451
- "mobileM<": "(min-width: 560px)",
1452
- mobileS: "(max-width: 480px)",
1453
- "mobileS<": "(min-width: 480px)",
1454
- mobileXS: "(max-width: 375px)",
1455
- "mobileXS<": "(min-width: 375px)",
1456
1459
  light: "(prefers-color-scheme: light)",
1457
1460
  dark: "(prefers-color-scheme: dark)",
1458
1461
  print: "print"
@@ -407,7 +407,8 @@ var require_string = __commonJS({
407
407
  var string_exports = {};
408
408
  __export2(string_exports, {
409
409
  replaceLiteralsWithObjectFields: () => replaceLiteralsWithObjectFields,
410
- stringIncludesAny: () => stringIncludesAny
410
+ stringIncludesAny: () => stringIncludesAny,
411
+ trimStringFromSymbols: () => trimStringFromSymbols
411
412
  });
412
413
  module2.exports = __toCommonJS2(string_exports);
413
414
  var stringIncludesAny = (str, characters) => {
@@ -418,6 +419,10 @@ var require_string = __commonJS({
418
419
  }
419
420
  return false;
420
421
  };
422
+ var trimStringFromSymbols = (str, characters) => {
423
+ const pattern = new RegExp(`[${characters.join("\\")}]`, "g");
424
+ return str.replace(pattern, "");
425
+ };
421
426
  var brackRegex = /\{\{\s*((?:\.\.\/)+)?([^}\s]+)\s*\}\}/g;
422
427
  var replaceLiteralsWithObjectFields = (str, state) => {
423
428
  if (!str.includes("{{"))
@@ -469,6 +474,7 @@ var require_object = __commonJS({
469
474
  clone: () => clone,
470
475
  deepClone: () => deepClone2,
471
476
  deepCloneExclude: () => deepCloneExclude,
477
+ deepCloneWithExtnd: () => deepCloneWithExtnd,
472
478
  deepContains: () => deepContains,
473
479
  deepDestringify: () => deepDestringify,
474
480
  deepDiff: () => deepDiff,
@@ -599,6 +605,23 @@ var require_object = __commonJS({
599
605
  }
600
606
  return o;
601
607
  };
608
+ var deepCloneWithExtnd = (obj, excludeFrom = [], cleanUndefined = false) => {
609
+ const o = (0, import_types.isArray)(obj) ? [] : {};
610
+ for (const prop in obj) {
611
+ if (prop === "__proto__")
612
+ continue;
613
+ if (excludeFrom.includes(prop) || prop.startsWith("__"))
614
+ continue;
615
+ const objProp = obj[prop];
616
+ if (cleanUndefined && (0, import_types.isUndefined)(objProp))
617
+ continue;
618
+ if ((0, import_types.isObjectLike)(objProp)) {
619
+ o[prop] = deepCloneWithExtnd(objProp, excludeFrom, cleanUndefined);
620
+ } else
621
+ o[prop] = objProp;
622
+ }
623
+ return o;
624
+ };
602
625
  var deepStringify = (obj, stringified = {}) => {
603
626
  for (const prop in obj) {
604
627
  const objProp = obj[prop];
@@ -629,7 +652,7 @@ var require_object = __commonJS({
629
652
  const spaces = " ".repeat(indent);
630
653
  let str = "{\n";
631
654
  for (const [key, value] of Object.entries(obj)) {
632
- const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!"]);
655
+ const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!", " "]);
633
656
  const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
634
657
  str += `${spaces} ${stringedKey}: `;
635
658
  if ((0, import_types.isArray)(value)) {
@@ -1415,26 +1438,6 @@ var FONT_FACE = {};
1415
1438
  // src/defaultConfig/media.js
1416
1439
  var MEDIA = {
1417
1440
  tv: "(min-width: 2780px)",
1418
- screenL: "(max-width: 1920px)",
1419
- "screenL<": "(min-width: 1920px)",
1420
- screenM: "(max-width: 1680px)",
1421
- "screenM<": "(min-width: 1680px)",
1422
- screenS: "(max-width: 1440px)",
1423
- "screenS<": "(min-width: 1440px)",
1424
- tabletL: "(max-width: 1366px)",
1425
- "tabletL<": "(min-width: 1366px)",
1426
- tabletM: "(max-width: 1280px)",
1427
- "tabletM<": "(min-width: 1280px)",
1428
- tabletS: "(max-width: 1024px)",
1429
- "tabletS<": "(min-width: 1024px)",
1430
- mobileL: "(max-width: 768px)",
1431
- "mobileL<": "(min-width: 768px)",
1432
- mobileM: "(max-width: 560px)",
1433
- "mobileM<": "(min-width: 560px)",
1434
- mobileS: "(max-width: 480px)",
1435
- "mobileS<": "(min-width: 480px)",
1436
- mobileXS: "(max-width: 375px)",
1437
- "mobileXS<": "(min-width: 375px)",
1438
1441
  light: "(prefers-color-scheme: light)",
1439
1442
  dark: "(prefers-color-scheme: dark)",
1440
1443
  print: "print"
@@ -212,7 +212,7 @@ var require_types = __commonJS({
212
212
  isFunction: () => isFunction,
213
213
  isNot: () => isNot,
214
214
  isNull: () => isNull,
215
- isNumber: () => isNumber,
215
+ isNumber: () => isNumber2,
216
216
  isObject: () => isObject4,
217
217
  isObjectLike: () => isObjectLike2,
218
218
  isString: () => isString3,
@@ -226,7 +226,7 @@ var require_types = __commonJS({
226
226
  return typeof arg === "object" && arg.constructor === Object;
227
227
  };
228
228
  var isString3 = (arg) => typeof arg === "string";
229
- var isNumber = (arg) => typeof arg === "number";
229
+ var isNumber2 = (arg) => typeof arg === "number";
230
230
  var isFunction = (arg) => typeof arg === "function";
231
231
  var isBoolean = (arg) => arg === true || arg === false;
232
232
  var isNull = (arg) => arg === null;
@@ -238,7 +238,7 @@ var require_types = __commonJS({
238
238
  return typeof arg === "object";
239
239
  };
240
240
  var isDefined2 = (arg) => {
241
- return isObject4(arg) || isObjectLike2(arg) || isString3(arg) || isNumber(arg) || isFunction(arg) || isArray3(arg) || isObjectLike2(arg) || isBoolean(arg) || isDate(arg) || isNull(arg);
241
+ return isObject4(arg) || isObjectLike2(arg) || isString3(arg) || isNumber2(arg) || isFunction(arg) || isArray3(arg) || isObjectLike2(arg) || isBoolean(arg) || isDate(arg) || isNull(arg);
242
242
  };
243
243
  var isUndefined = (arg) => {
244
244
  return arg === void 0;
@@ -249,7 +249,7 @@ var require_types = __commonJS({
249
249
  object: isObject4,
250
250
  string: isString3,
251
251
  date: isDate,
252
- number: isNumber,
252
+ number: isNumber2,
253
253
  null: isNull,
254
254
  function: isFunction,
255
255
  objectLike: isObjectLike2,
@@ -407,7 +407,8 @@ var require_string = __commonJS({
407
407
  var string_exports = {};
408
408
  __export2(string_exports, {
409
409
  replaceLiteralsWithObjectFields: () => replaceLiteralsWithObjectFields,
410
- stringIncludesAny: () => stringIncludesAny
410
+ stringIncludesAny: () => stringIncludesAny,
411
+ trimStringFromSymbols: () => trimStringFromSymbols
411
412
  });
412
413
  module2.exports = __toCommonJS2(string_exports);
413
414
  var stringIncludesAny = (str, characters) => {
@@ -418,6 +419,10 @@ var require_string = __commonJS({
418
419
  }
419
420
  return false;
420
421
  };
422
+ var trimStringFromSymbols = (str, characters) => {
423
+ const pattern = new RegExp(`[${characters.join("\\")}]`, "g");
424
+ return str.replace(pattern, "");
425
+ };
421
426
  var brackRegex = /\{\{\s*((?:\.\.\/)+)?([^}\s]+)\s*\}\}/g;
422
427
  var replaceLiteralsWithObjectFields = (str, state) => {
423
428
  if (!str.includes("{{"))
@@ -469,6 +474,7 @@ var require_object = __commonJS({
469
474
  clone: () => clone,
470
475
  deepClone: () => deepClone2,
471
476
  deepCloneExclude: () => deepCloneExclude,
477
+ deepCloneWithExtnd: () => deepCloneWithExtnd,
472
478
  deepContains: () => deepContains,
473
479
  deepDestringify: () => deepDestringify,
474
480
  deepDiff: () => deepDiff,
@@ -599,6 +605,23 @@ var require_object = __commonJS({
599
605
  }
600
606
  return o;
601
607
  };
608
+ var deepCloneWithExtnd = (obj, excludeFrom = [], cleanUndefined = false) => {
609
+ const o = (0, import_types.isArray)(obj) ? [] : {};
610
+ for (const prop in obj) {
611
+ if (prop === "__proto__")
612
+ continue;
613
+ if (excludeFrom.includes(prop) || prop.startsWith("__"))
614
+ continue;
615
+ const objProp = obj[prop];
616
+ if (cleanUndefined && (0, import_types.isUndefined)(objProp))
617
+ continue;
618
+ if ((0, import_types.isObjectLike)(objProp)) {
619
+ o[prop] = deepCloneWithExtnd(objProp, excludeFrom, cleanUndefined);
620
+ } else
621
+ o[prop] = objProp;
622
+ }
623
+ return o;
624
+ };
602
625
  var deepStringify = (obj, stringified = {}) => {
603
626
  for (const prop in obj) {
604
627
  const objProp = obj[prop];
@@ -629,7 +652,7 @@ var require_object = __commonJS({
629
652
  const spaces = " ".repeat(indent);
630
653
  let str = "{\n";
631
654
  for (const [key, value] of Object.entries(obj)) {
632
- const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!"]);
655
+ const keyNotAllowdChars = (0, import_string.stringIncludesAny)(key, ["&", "*", "-", ":", "@", ".", "/", "!", " "]);
633
656
  const stringedKey = keyNotAllowdChars ? `'${key}'` : key;
634
657
  str += `${spaces} ${stringedKey}: `;
635
658
  if ((0, import_types.isArray)(value)) {
@@ -1417,26 +1440,6 @@ var FONT_FACE = {};
1417
1440
  // src/defaultConfig/media.js
1418
1441
  var MEDIA = {
1419
1442
  tv: "(min-width: 2780px)",
1420
- screenL: "(max-width: 1920px)",
1421
- "screenL<": "(min-width: 1920px)",
1422
- screenM: "(max-width: 1680px)",
1423
- "screenM<": "(min-width: 1680px)",
1424
- screenS: "(max-width: 1440px)",
1425
- "screenS<": "(min-width: 1440px)",
1426
- tabletL: "(max-width: 1366px)",
1427
- "tabletL<": "(min-width: 1366px)",
1428
- tabletM: "(max-width: 1280px)",
1429
- "tabletM<": "(min-width: 1280px)",
1430
- tabletS: "(max-width: 1024px)",
1431
- "tabletS<": "(min-width: 1024px)",
1432
- mobileL: "(max-width: 768px)",
1433
- "mobileL<": "(min-width: 768px)",
1434
- mobileM: "(max-width: 560px)",
1435
- "mobileM<": "(min-width: 560px)",
1436
- mobileS: "(max-width: 480px)",
1437
- "mobileS<": "(min-width: 480px)",
1438
- mobileXS: "(max-width: 375px)",
1439
- "mobileXS<": "(min-width: 375px)",
1440
1443
  light: "(prefers-color-scheme: light)",
1441
1444
  dark: "(prefers-color-scheme: dark)",
1442
1445
  print: "print"
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@symbo.ls/scratch",
3
3
  "description": "Φ / CSS framework and methodology.",
4
4
  "author": "symbo.ls",
5
- "version": "2.11.237",
5
+ "version": "2.11.247",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
@@ -29,5 +29,5 @@
29
29
  "@symbo.ls/utils": "latest",
30
30
  "color-contrast-checker": "^1.5.0"
31
31
  },
32
- "gitHead": "e2d0c518a5b969d0c0924afd284b2f7f63b6a214"
32
+ "gitHead": "8d02fd2978b0ae207eab84fcb3f5e2be11351e61"
33
33
  }
@@ -3,27 +3,6 @@
3
3
  export const MEDIA = {
4
4
  tv: '(min-width: 2780px)',
5
5
 
6
- screenL: '(max-width: 1920px)',
7
- 'screenL<': '(min-width: 1920px)',
8
- screenM: '(max-width: 1680px)',
9
- 'screenM<': '(min-width: 1680px)',
10
- screenS: '(max-width: 1440px)',
11
- 'screenS<': '(min-width: 1440px)',
12
- tabletL: '(max-width: 1366px)',
13
- 'tabletL<': '(min-width: 1366px)',
14
- tabletM: '(max-width: 1280px)',
15
- 'tabletM<': '(min-width: 1280px)',
16
- tabletS: '(max-width: 1024px)',
17
- 'tabletS<': '(min-width: 1024px)',
18
- mobileL: '(max-width: 768px)',
19
- 'mobileL<': '(min-width: 768px)',
20
- mobileM: '(max-width: 560px)',
21
- 'mobileM<': '(min-width: 560px)',
22
- mobileS: '(max-width: 480px)',
23
- 'mobileS<': '(min-width: 480px)',
24
- mobileXS: '(max-width: 375px)',
25
- 'mobileXS<': '(min-width: 375px)',
26
-
27
6
  light: '(prefers-color-scheme: light)',
28
7
  dark: '(prefers-color-scheme: dark)',
29
8