entangle-ui 0.6.2 → 0.6.3

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 (52) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +5 -3
  3. package/dist/esm/_virtual/_commonjsHelpers.js +6 -0
  4. package/dist/esm/_virtual/_commonjsHelpers.js.map +1 -0
  5. package/dist/esm/_virtual/cssesc.js +5 -1
  6. package/dist/esm/_virtual/cssesc.js.map +1 -1
  7. package/dist/esm/_virtual/picocolors.js +8 -0
  8. package/dist/esm/_virtual/picocolors.js.map +1 -0
  9. package/dist/esm/_virtual/picocolors2.js +4 -0
  10. package/dist/esm/_virtual/picocolors2.js.map +1 -0
  11. package/dist/esm/index.js +1 -1
  12. package/dist/esm/node_modules/@emotion/hash/dist/emotion-hash.esm.js +56 -0
  13. package/dist/esm/node_modules/@emotion/hash/dist/emotion-hash.esm.js.map +1 -0
  14. package/dist/esm/node_modules/@vanilla-extract/css/adapter/dist/vanilla-extract-css-adapter.esm.js +32 -1
  15. package/dist/esm/node_modules/@vanilla-extract/css/adapter/dist/vanilla-extract-css-adapter.esm.js.map +1 -1
  16. package/dist/esm/node_modules/@vanilla-extract/css/dist/taggedTemplateLiteral-10998315.esm.js +13 -0
  17. package/dist/esm/node_modules/@vanilla-extract/css/dist/taggedTemplateLiteral-10998315.esm.js.map +1 -0
  18. package/dist/esm/node_modules/@vanilla-extract/css/dist/transformCss-fd0786e1.esm.js +837 -3
  19. package/dist/esm/node_modules/@vanilla-extract/css/dist/transformCss-fd0786e1.esm.js.map +1 -1
  20. package/dist/esm/node_modules/@vanilla-extract/css/dist/vanilla-extract-css.esm.js +244 -5
  21. package/dist/esm/node_modules/@vanilla-extract/css/dist/vanilla-extract-css.esm.js.map +1 -1
  22. package/dist/esm/node_modules/@vanilla-extract/css/fileScope/dist/vanilla-extract-css-fileScope.esm.js +18 -0
  23. package/dist/esm/node_modules/@vanilla-extract/css/fileScope/dist/vanilla-extract-css-fileScope.esm.js.map +1 -0
  24. package/dist/esm/node_modules/@vanilla-extract/css/injectStyles/dist/vanilla-extract-css-injectStyles.esm.js +23 -0
  25. package/dist/esm/node_modules/@vanilla-extract/css/injectStyles/dist/vanilla-extract-css-injectStyles.esm.js.map +1 -0
  26. package/dist/esm/node_modules/@vanilla-extract/private/dist/vanilla-extract-private.esm.js +38 -0
  27. package/dist/esm/node_modules/@vanilla-extract/private/dist/vanilla-extract-private.esm.js.map +1 -0
  28. package/dist/esm/node_modules/css-what/lib/es/parse.js +424 -0
  29. package/dist/esm/node_modules/css-what/lib/es/parse.js.map +1 -0
  30. package/dist/esm/node_modules/css-what/lib/es/types.js +29 -0
  31. package/dist/esm/node_modules/css-what/lib/es/types.js.map +1 -0
  32. package/dist/esm/node_modules/dedent/dist/dedent.js +3 -1
  33. package/dist/esm/node_modules/dedent/dist/dedent.js.map +1 -1
  34. package/dist/esm/node_modules/deep-object-diff/mjs/diff.js +40 -0
  35. package/dist/esm/node_modules/deep-object-diff/mjs/diff.js.map +1 -0
  36. package/dist/esm/node_modules/deep-object-diff/mjs/utils.js +9 -0
  37. package/dist/esm/node_modules/deep-object-diff/mjs/utils.js.map +1 -0
  38. package/dist/esm/node_modules/media-query-parser/dist/media-query-parser.esm.js +1386 -0
  39. package/dist/esm/node_modules/media-query-parser/dist/media-query-parser.esm.js.map +1 -0
  40. package/dist/esm/node_modules/modern-ahocorasick/dist/index.js +102 -0
  41. package/dist/esm/node_modules/modern-ahocorasick/dist/index.js.map +1 -0
  42. package/dist/esm/node_modules/picocolors/picocolors.js +87 -0
  43. package/dist/esm/node_modules/picocolors/picocolors.js.map +1 -0
  44. package/dist/esm/theme/createCustomTheme.js +33 -0
  45. package/dist/esm/theme/createCustomTheme.js.map +1 -0
  46. package/dist/esm/utils/objects.js +22 -0
  47. package/dist/esm/utils/objects.js.map +1 -0
  48. package/dist/types/components/primitives/Button/Button.d.ts +1 -1
  49. package/dist/types/components/primitives/IconButton/IconButton.d.ts +1 -1
  50. package/dist/types/index.d.ts +2 -1
  51. package/dist/types/theme/createCustomTheme.d.ts +29 -0
  52. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parse.js","sources":["../../../../../../node_modules/css-what/lib/es/parse.js"],"sourcesContent":["import { SelectorType, AttributeAction, } from \"./types\";\nconst reName = /^[^\\\\#]?(?:\\\\(?:[\\da-f]{1,6}\\s?|.)|[\\w\\-\\u00b0-\\uFFFF])+/;\nconst reEscape = /\\\\([\\da-f]{1,6}\\s?|(\\s)|.)/gi;\nconst actionTypes = new Map([\n [126 /* Tilde */, AttributeAction.Element],\n [94 /* Circumflex */, AttributeAction.Start],\n [36 /* Dollar */, AttributeAction.End],\n [42 /* Asterisk */, AttributeAction.Any],\n [33 /* ExclamationMark */, AttributeAction.Not],\n [124 /* Pipe */, AttributeAction.Hyphen],\n]);\n// Pseudos, whose data property is parsed as well.\nconst unpackPseudos = new Set([\n \"has\",\n \"not\",\n \"matches\",\n \"is\",\n \"where\",\n \"host\",\n \"host-context\",\n]);\n/**\n * Checks whether a specific selector is a traversal.\n * This is useful eg. in swapping the order of elements that\n * are not traversals.\n *\n * @param selector Selector to check.\n */\nexport function isTraversal(selector) {\n switch (selector.type) {\n case SelectorType.Adjacent:\n case SelectorType.Child:\n case SelectorType.Descendant:\n case SelectorType.Parent:\n case SelectorType.Sibling:\n case SelectorType.ColumnCombinator:\n return true;\n default:\n return false;\n }\n}\nconst stripQuotesFromPseudos = new Set([\"contains\", \"icontains\"]);\n// Unescape function taken from https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L152\nfunction funescape(_, escaped, escapedWhitespace) {\n const high = parseInt(escaped, 16) - 0x10000;\n // NaN means non-codepoint\n return high !== high || escapedWhitespace\n ? escaped\n : high < 0\n ? // BMP codepoint\n String.fromCharCode(high + 0x10000)\n : // Supplemental Plane codepoint (surrogate pair)\n String.fromCharCode((high >> 10) | 0xd800, (high & 0x3ff) | 0xdc00);\n}\nfunction unescapeCSS(str) {\n return str.replace(reEscape, funescape);\n}\nfunction isQuote(c) {\n return c === 39 /* SingleQuote */ || c === 34 /* DoubleQuote */;\n}\nfunction isWhitespace(c) {\n return (c === 32 /* Space */ ||\n c === 9 /* Tab */ ||\n c === 10 /* NewLine */ ||\n c === 12 /* FormFeed */ ||\n c === 13 /* CarriageReturn */);\n}\n/**\n * Parses `selector`, optionally with the passed `options`.\n *\n * @param selector Selector to parse.\n * @param options Options for parsing.\n * @returns Returns a two-dimensional array.\n * The first dimension represents selectors separated by commas (eg. `sub1, sub2`),\n * the second contains the relevant tokens for that selector.\n */\nexport function parse(selector) {\n const subselects = [];\n const endIndex = parseSelector(subselects, `${selector}`, 0);\n if (endIndex < selector.length) {\n throw new Error(`Unmatched selector: ${selector.slice(endIndex)}`);\n }\n return subselects;\n}\nfunction parseSelector(subselects, selector, selectorIndex) {\n let tokens = [];\n function getName(offset) {\n const match = selector.slice(selectorIndex + offset).match(reName);\n if (!match) {\n throw new Error(`Expected name, found ${selector.slice(selectorIndex)}`);\n }\n const [name] = match;\n selectorIndex += offset + name.length;\n return unescapeCSS(name);\n }\n function stripWhitespace(offset) {\n selectorIndex += offset;\n while (selectorIndex < selector.length &&\n isWhitespace(selector.charCodeAt(selectorIndex))) {\n selectorIndex++;\n }\n }\n function readValueWithParenthesis() {\n selectorIndex += 1;\n const start = selectorIndex;\n let counter = 1;\n for (; counter > 0 && selectorIndex < selector.length; selectorIndex++) {\n if (selector.charCodeAt(selectorIndex) ===\n 40 /* LeftParenthesis */ &&\n !isEscaped(selectorIndex)) {\n counter++;\n }\n else if (selector.charCodeAt(selectorIndex) ===\n 41 /* RightParenthesis */ &&\n !isEscaped(selectorIndex)) {\n counter--;\n }\n }\n if (counter) {\n throw new Error(\"Parenthesis not matched\");\n }\n return unescapeCSS(selector.slice(start, selectorIndex - 1));\n }\n function isEscaped(pos) {\n let slashCount = 0;\n while (selector.charCodeAt(--pos) === 92 /* BackSlash */)\n slashCount++;\n return (slashCount & 1) === 1;\n }\n function ensureNotTraversal() {\n if (tokens.length > 0 && isTraversal(tokens[tokens.length - 1])) {\n throw new Error(\"Did not expect successive traversals.\");\n }\n }\n function addTraversal(type) {\n if (tokens.length > 0 &&\n tokens[tokens.length - 1].type === SelectorType.Descendant) {\n tokens[tokens.length - 1].type = type;\n return;\n }\n ensureNotTraversal();\n tokens.push({ type });\n }\n function addSpecialAttribute(name, action) {\n tokens.push({\n type: SelectorType.Attribute,\n name,\n action,\n value: getName(1),\n namespace: null,\n ignoreCase: \"quirks\",\n });\n }\n /**\n * We have finished parsing the current part of the selector.\n *\n * Remove descendant tokens at the end if they exist,\n * and return the last index, so that parsing can be\n * picked up from here.\n */\n function finalizeSubselector() {\n if (tokens.length &&\n tokens[tokens.length - 1].type === SelectorType.Descendant) {\n tokens.pop();\n }\n if (tokens.length === 0) {\n throw new Error(\"Empty sub-selector\");\n }\n subselects.push(tokens);\n }\n stripWhitespace(0);\n if (selector.length === selectorIndex) {\n return selectorIndex;\n }\n loop: while (selectorIndex < selector.length) {\n const firstChar = selector.charCodeAt(selectorIndex);\n switch (firstChar) {\n // Whitespace\n case 32 /* Space */:\n case 9 /* Tab */:\n case 10 /* NewLine */:\n case 12 /* FormFeed */:\n case 13 /* CarriageReturn */: {\n if (tokens.length === 0 ||\n tokens[0].type !== SelectorType.Descendant) {\n ensureNotTraversal();\n tokens.push({ type: SelectorType.Descendant });\n }\n stripWhitespace(1);\n break;\n }\n // Traversals\n case 62 /* GreaterThan */: {\n addTraversal(SelectorType.Child);\n stripWhitespace(1);\n break;\n }\n case 60 /* LessThan */: {\n addTraversal(SelectorType.Parent);\n stripWhitespace(1);\n break;\n }\n case 126 /* Tilde */: {\n addTraversal(SelectorType.Sibling);\n stripWhitespace(1);\n break;\n }\n case 43 /* Plus */: {\n addTraversal(SelectorType.Adjacent);\n stripWhitespace(1);\n break;\n }\n // Special attribute selectors: .class, #id\n case 46 /* Period */: {\n addSpecialAttribute(\"class\", AttributeAction.Element);\n break;\n }\n case 35 /* Hash */: {\n addSpecialAttribute(\"id\", AttributeAction.Equals);\n break;\n }\n case 91 /* LeftSquareBracket */: {\n stripWhitespace(1);\n // Determine attribute name and namespace\n let name;\n let namespace = null;\n if (selector.charCodeAt(selectorIndex) === 124 /* Pipe */) {\n // Equivalent to no namespace\n name = getName(1);\n }\n else if (selector.startsWith(\"*|\", selectorIndex)) {\n namespace = \"*\";\n name = getName(2);\n }\n else {\n name = getName(0);\n if (selector.charCodeAt(selectorIndex) === 124 /* Pipe */ &&\n selector.charCodeAt(selectorIndex + 1) !==\n 61 /* Equal */) {\n namespace = name;\n name = getName(1);\n }\n }\n stripWhitespace(0);\n // Determine comparison operation\n let action = AttributeAction.Exists;\n const possibleAction = actionTypes.get(selector.charCodeAt(selectorIndex));\n if (possibleAction) {\n action = possibleAction;\n if (selector.charCodeAt(selectorIndex + 1) !==\n 61 /* Equal */) {\n throw new Error(\"Expected `=`\");\n }\n stripWhitespace(2);\n }\n else if (selector.charCodeAt(selectorIndex) === 61 /* Equal */) {\n action = AttributeAction.Equals;\n stripWhitespace(1);\n }\n // Determine value\n let value = \"\";\n let ignoreCase = null;\n if (action !== \"exists\") {\n if (isQuote(selector.charCodeAt(selectorIndex))) {\n const quote = selector.charCodeAt(selectorIndex);\n let sectionEnd = selectorIndex + 1;\n while (sectionEnd < selector.length &&\n (selector.charCodeAt(sectionEnd) !== quote ||\n isEscaped(sectionEnd))) {\n sectionEnd += 1;\n }\n if (selector.charCodeAt(sectionEnd) !== quote) {\n throw new Error(\"Attribute value didn't end\");\n }\n value = unescapeCSS(selector.slice(selectorIndex + 1, sectionEnd));\n selectorIndex = sectionEnd + 1;\n }\n else {\n const valueStart = selectorIndex;\n while (selectorIndex < selector.length &&\n ((!isWhitespace(selector.charCodeAt(selectorIndex)) &&\n selector.charCodeAt(selectorIndex) !==\n 93 /* RightSquareBracket */) ||\n isEscaped(selectorIndex))) {\n selectorIndex += 1;\n }\n value = unescapeCSS(selector.slice(valueStart, selectorIndex));\n }\n stripWhitespace(0);\n // See if we have a force ignore flag\n const forceIgnore = selector.charCodeAt(selectorIndex) | 0x20;\n // If the forceIgnore flag is set (either `i` or `s`), use that value\n if (forceIgnore === 115 /* LowerS */) {\n ignoreCase = false;\n stripWhitespace(1);\n }\n else if (forceIgnore === 105 /* LowerI */) {\n ignoreCase = true;\n stripWhitespace(1);\n }\n }\n if (selector.charCodeAt(selectorIndex) !==\n 93 /* RightSquareBracket */) {\n throw new Error(\"Attribute selector didn't terminate\");\n }\n selectorIndex += 1;\n const attributeSelector = {\n type: SelectorType.Attribute,\n name,\n action,\n value,\n namespace,\n ignoreCase,\n };\n tokens.push(attributeSelector);\n break;\n }\n case 58 /* Colon */: {\n if (selector.charCodeAt(selectorIndex + 1) === 58 /* Colon */) {\n tokens.push({\n type: SelectorType.PseudoElement,\n name: getName(2).toLowerCase(),\n data: selector.charCodeAt(selectorIndex) ===\n 40 /* LeftParenthesis */\n ? readValueWithParenthesis()\n : null,\n });\n continue;\n }\n const name = getName(1).toLowerCase();\n let data = null;\n if (selector.charCodeAt(selectorIndex) ===\n 40 /* LeftParenthesis */) {\n if (unpackPseudos.has(name)) {\n if (isQuote(selector.charCodeAt(selectorIndex + 1))) {\n throw new Error(`Pseudo-selector ${name} cannot be quoted`);\n }\n data = [];\n selectorIndex = parseSelector(data, selector, selectorIndex + 1);\n if (selector.charCodeAt(selectorIndex) !==\n 41 /* RightParenthesis */) {\n throw new Error(`Missing closing parenthesis in :${name} (${selector})`);\n }\n selectorIndex += 1;\n }\n else {\n data = readValueWithParenthesis();\n if (stripQuotesFromPseudos.has(name)) {\n const quot = data.charCodeAt(0);\n if (quot === data.charCodeAt(data.length - 1) &&\n isQuote(quot)) {\n data = data.slice(1, -1);\n }\n }\n data = unescapeCSS(data);\n }\n }\n tokens.push({ type: SelectorType.Pseudo, name, data });\n break;\n }\n case 44 /* Comma */: {\n finalizeSubselector();\n tokens = [];\n stripWhitespace(1);\n break;\n }\n default: {\n if (selector.startsWith(\"/*\", selectorIndex)) {\n const endIndex = selector.indexOf(\"*/\", selectorIndex + 2);\n if (endIndex < 0) {\n throw new Error(\"Comment was not terminated\");\n }\n selectorIndex = endIndex + 2;\n // Remove leading whitespace\n if (tokens.length === 0) {\n stripWhitespace(0);\n }\n break;\n }\n let namespace = null;\n let name;\n if (firstChar === 42 /* Asterisk */) {\n selectorIndex += 1;\n name = \"*\";\n }\n else if (firstChar === 124 /* Pipe */) {\n name = \"\";\n if (selector.charCodeAt(selectorIndex + 1) === 124 /* Pipe */) {\n addTraversal(SelectorType.ColumnCombinator);\n stripWhitespace(2);\n break;\n }\n }\n else if (reName.test(selector.slice(selectorIndex))) {\n name = getName(0);\n }\n else {\n break loop;\n }\n if (selector.charCodeAt(selectorIndex) === 124 /* Pipe */ &&\n selector.charCodeAt(selectorIndex + 1) !== 124 /* Pipe */) {\n namespace = name;\n if (selector.charCodeAt(selectorIndex + 1) ===\n 42 /* Asterisk */) {\n name = \"*\";\n selectorIndex += 2;\n }\n else {\n name = getName(1);\n }\n }\n tokens.push(name === \"*\"\n ? { type: SelectorType.Universal, namespace }\n : { type: SelectorType.Tag, name, namespace });\n }\n }\n }\n finalizeSubselector();\n return selectorIndex;\n}\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}
@@ -0,0 +1,29 @@
1
+ var SelectorType;
2
+ (function (SelectorType) {
3
+ SelectorType["Attribute"] = "attribute";
4
+ SelectorType["Pseudo"] = "pseudo";
5
+ SelectorType["PseudoElement"] = "pseudo-element";
6
+ SelectorType["Tag"] = "tag";
7
+ SelectorType["Universal"] = "universal";
8
+ // Traversals
9
+ SelectorType["Adjacent"] = "adjacent";
10
+ SelectorType["Child"] = "child";
11
+ SelectorType["Descendant"] = "descendant";
12
+ SelectorType["Parent"] = "parent";
13
+ SelectorType["Sibling"] = "sibling";
14
+ SelectorType["ColumnCombinator"] = "column-combinator";
15
+ })(SelectorType || (SelectorType = {}));
16
+ var AttributeAction;
17
+ (function (AttributeAction) {
18
+ AttributeAction["Any"] = "any";
19
+ AttributeAction["Element"] = "element";
20
+ AttributeAction["End"] = "end";
21
+ AttributeAction["Equals"] = "equals";
22
+ AttributeAction["Exists"] = "exists";
23
+ AttributeAction["Hyphen"] = "hyphen";
24
+ AttributeAction["Not"] = "not";
25
+ AttributeAction["Start"] = "start";
26
+ })(AttributeAction || (AttributeAction = {}));
27
+
28
+ export { AttributeAction, SelectorType };
29
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sources":["../../../../../../node_modules/css-what/lib/es/types.js"],"sourcesContent":["export var SelectorType;\n(function (SelectorType) {\n SelectorType[\"Attribute\"] = \"attribute\";\n SelectorType[\"Pseudo\"] = \"pseudo\";\n SelectorType[\"PseudoElement\"] = \"pseudo-element\";\n SelectorType[\"Tag\"] = \"tag\";\n SelectorType[\"Universal\"] = \"universal\";\n // Traversals\n SelectorType[\"Adjacent\"] = \"adjacent\";\n SelectorType[\"Child\"] = \"child\";\n SelectorType[\"Descendant\"] = \"descendant\";\n SelectorType[\"Parent\"] = \"parent\";\n SelectorType[\"Sibling\"] = \"sibling\";\n SelectorType[\"ColumnCombinator\"] = \"column-combinator\";\n})(SelectorType || (SelectorType = {}));\n/**\n * Modes for ignore case.\n *\n * This could be updated to an enum, and the object is\n * the current stand-in that will allow code to be updated\n * without big changes.\n */\nexport const IgnoreCaseMode = {\n Unknown: null,\n QuirksMode: \"quirks\",\n IgnoreCase: true,\n CaseSensitive: false,\n};\nexport var AttributeAction;\n(function (AttributeAction) {\n AttributeAction[\"Any\"] = \"any\";\n AttributeAction[\"Element\"] = \"element\";\n AttributeAction[\"End\"] = \"end\";\n AttributeAction[\"Equals\"] = \"equals\";\n AttributeAction[\"Exists\"] = \"exists\";\n AttributeAction[\"Hyphen\"] = \"hyphen\";\n AttributeAction[\"Not\"] = \"not\";\n AttributeAction[\"Start\"] = \"start\";\n})(AttributeAction || (AttributeAction = {}));\n"],"names":[],"mappings":"AAAU,IAAC;AACX,CAAC,UAAU,YAAY,EAAE;AACzB,IAAI,YAAY,CAAC,WAAW,CAAC,GAAG,WAAW;AAC3C,IAAI,YAAY,CAAC,QAAQ,CAAC,GAAG,QAAQ;AACrC,IAAI,YAAY,CAAC,eAAe,CAAC,GAAG,gBAAgB;AACpD,IAAI,YAAY,CAAC,KAAK,CAAC,GAAG,KAAK;AAC/B,IAAI,YAAY,CAAC,WAAW,CAAC,GAAG,WAAW;AAC3C;AACA,IAAI,YAAY,CAAC,UAAU,CAAC,GAAG,UAAU;AACzC,IAAI,YAAY,CAAC,OAAO,CAAC,GAAG,OAAO;AACnC,IAAI,YAAY,CAAC,YAAY,CAAC,GAAG,YAAY;AAC7C,IAAI,YAAY,CAAC,QAAQ,CAAC,GAAG,QAAQ;AACrC,IAAI,YAAY,CAAC,SAAS,CAAC,GAAG,SAAS;AACvC,IAAI,YAAY,CAAC,kBAAkB,CAAC,GAAG,mBAAmB;AAC1D,CAAC,EAAE,YAAY,KAAK,YAAY,GAAG,EAAE,CAAC,CAAC;AAc7B,IAAC;AACX,CAAC,UAAU,eAAe,EAAE;AAC5B,IAAI,eAAe,CAAC,KAAK,CAAC,GAAG,KAAK;AAClC,IAAI,eAAe,CAAC,SAAS,CAAC,GAAG,SAAS;AAC1C,IAAI,eAAe,CAAC,KAAK,CAAC,GAAG,KAAK;AAClC,IAAI,eAAe,CAAC,QAAQ,CAAC,GAAG,QAAQ;AACxC,IAAI,eAAe,CAAC,QAAQ,CAAC,GAAG,QAAQ;AACxC,IAAI,eAAe,CAAC,QAAQ,CAAC,GAAG,QAAQ;AACxC,IAAI,eAAe,CAAC,KAAK,CAAC,GAAG,KAAK;AAClC,IAAI,eAAe,CAAC,OAAO,CAAC,GAAG,OAAO;AACtC,CAAC,EAAE,eAAe,KAAK,eAAe,GAAG,EAAE,CAAC,CAAC;;;;","x_google_ignoreList":[0]}
@@ -3,7 +3,7 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
3
3
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
4
  function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
5
5
  function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
6
- createDedent({});
6
+ const dedent = createDedent({});
7
7
  function createDedent(options) {
8
8
  dedent.withOptions = newOptions => createDedent(_objectSpread(_objectSpread({}, options), newOptions));
9
9
  return dedent;
@@ -95,4 +95,6 @@ function alignValue(value, precedingText) {
95
95
  }
96
96
  return value;
97
97
  }
98
+
99
+ export { dedent as default };
98
100
  //# sourceMappingURL=dedent.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dedent.js","sources":["../../../../../node_modules/dedent/dist/dedent.mjs"],"sourcesContent":["function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return typeof key === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (typeof input !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (typeof res !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nconst dedent = createDedent({});\nexport default dedent;\nfunction createDedent(options) {\n dedent.withOptions = newOptions => createDedent(_objectSpread(_objectSpread({}, options), newOptions));\n return dedent;\n function dedent(strings, ...values) {\n const raw = typeof strings === \"string\" ? [strings] : strings.raw;\n const {\n alignValues = false,\n escapeSpecialCharacters = Array.isArray(strings),\n trimWhitespace = true\n } = options;\n\n // first, perform interpolation\n let result = \"\";\n for (let i = 0; i < raw.length; i++) {\n let next = raw[i];\n if (escapeSpecialCharacters) {\n // handle escaped newlines, backticks, and interpolation characters\n next = next.replace(/\\\\\\n[ \\t]*/g, \"\").replace(/\\\\`/g, \"`\").replace(/\\\\\\$/g, \"$\").replace(/\\\\\\{/g, \"{\");\n }\n result += next;\n if (i < values.length) {\n const value = alignValues ? alignValue(values[i], result) : values[i];\n\n // eslint-disable-next-line @typescript-eslint/restrict-plus-operands\n result += value;\n }\n }\n\n // now strip indentation\n const lines = result.split(\"\\n\");\n let mindent = null;\n for (const l of lines) {\n const m = l.match(/^(\\s+)\\S+/);\n if (m) {\n const indent = m[1].length;\n if (!mindent) {\n // this is the first indented line\n mindent = indent;\n } else {\n mindent = Math.min(mindent, indent);\n }\n }\n }\n if (mindent !== null) {\n const m = mindent; // appease TypeScript\n result = lines\n // https://github.com/typescript-eslint/typescript-eslint/issues/7140\n // eslint-disable-next-line @typescript-eslint/prefer-string-starts-ends-with\n .map(l => l[0] === \" \" || l[0] === \"\\t\" ? l.slice(m) : l).join(\"\\n\");\n }\n\n // dedent eats leading and trailing whitespace too\n if (trimWhitespace) {\n result = result.trim();\n }\n\n // handle escaped newlines at the end to ensure they don't get stripped too\n if (escapeSpecialCharacters) {\n result = result.replace(/\\\\n/g, \"\\n\");\n }\n\n // Workaround for Bun issue with Unicode characters\n // https://github.com/oven-sh/bun/issues/8745\n if (typeof Bun !== \"undefined\") {\n result = result.replace(\n // Matches e.g. \\\\u{1f60a} or \\\\u5F1F\n /\\\\u(?:\\{([\\da-fA-F]{1,6})\\}|([\\da-fA-F]{4}))/g, (_, braced, unbraced) => {\n var _ref;\n const hex = (_ref = braced !== null && braced !== void 0 ? braced : unbraced) !== null && _ref !== void 0 ? _ref : \"\";\n return String.fromCodePoint(parseInt(hex, 16));\n });\n }\n return result;\n }\n}\n\n/**\n * Adjusts the indentation of a multi-line interpolated value to match the current line.\n */\nfunction alignValue(value, precedingText) {\n if (typeof value !== \"string\" || !value.includes(\"\\n\")) {\n return value;\n }\n const currentLine = precedingText.slice(precedingText.lastIndexOf(\"\\n\") + 1);\n const indentMatch = currentLine.match(/^(\\s+)/);\n if (indentMatch) {\n const indent = indentMatch[1];\n return value.replace(/\\n/g, `\\n${indent}`);\n }\n return value;\n}\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"dedent.js","sources":["../../../../../node_modules/dedent/dist/dedent.mjs"],"sourcesContent":["function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\nfunction _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\nfunction _toPropertyKey(arg) { var key = _toPrimitive(arg, \"string\"); return typeof key === \"symbol\" ? key : String(key); }\nfunction _toPrimitive(input, hint) { if (typeof input !== \"object\" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || \"default\"); if (typeof res !== \"object\") return res; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (hint === \"string\" ? String : Number)(input); }\nconst dedent = createDedent({});\nexport default dedent;\nfunction createDedent(options) {\n dedent.withOptions = newOptions => createDedent(_objectSpread(_objectSpread({}, options), newOptions));\n return dedent;\n function dedent(strings, ...values) {\n const raw = typeof strings === \"string\" ? [strings] : strings.raw;\n const {\n alignValues = false,\n escapeSpecialCharacters = Array.isArray(strings),\n trimWhitespace = true\n } = options;\n\n // first, perform interpolation\n let result = \"\";\n for (let i = 0; i < raw.length; i++) {\n let next = raw[i];\n if (escapeSpecialCharacters) {\n // handle escaped newlines, backticks, and interpolation characters\n next = next.replace(/\\\\\\n[ \\t]*/g, \"\").replace(/\\\\`/g, \"`\").replace(/\\\\\\$/g, \"$\").replace(/\\\\\\{/g, \"{\");\n }\n result += next;\n if (i < values.length) {\n const value = alignValues ? alignValue(values[i], result) : values[i];\n\n // eslint-disable-next-line @typescript-eslint/restrict-plus-operands\n result += value;\n }\n }\n\n // now strip indentation\n const lines = result.split(\"\\n\");\n let mindent = null;\n for (const l of lines) {\n const m = l.match(/^(\\s+)\\S+/);\n if (m) {\n const indent = m[1].length;\n if (!mindent) {\n // this is the first indented line\n mindent = indent;\n } else {\n mindent = Math.min(mindent, indent);\n }\n }\n }\n if (mindent !== null) {\n const m = mindent; // appease TypeScript\n result = lines\n // https://github.com/typescript-eslint/typescript-eslint/issues/7140\n // eslint-disable-next-line @typescript-eslint/prefer-string-starts-ends-with\n .map(l => l[0] === \" \" || l[0] === \"\\t\" ? l.slice(m) : l).join(\"\\n\");\n }\n\n // dedent eats leading and trailing whitespace too\n if (trimWhitespace) {\n result = result.trim();\n }\n\n // handle escaped newlines at the end to ensure they don't get stripped too\n if (escapeSpecialCharacters) {\n result = result.replace(/\\\\n/g, \"\\n\");\n }\n\n // Workaround for Bun issue with Unicode characters\n // https://github.com/oven-sh/bun/issues/8745\n if (typeof Bun !== \"undefined\") {\n result = result.replace(\n // Matches e.g. \\\\u{1f60a} or \\\\u5F1F\n /\\\\u(?:\\{([\\da-fA-F]{1,6})\\}|([\\da-fA-F]{4}))/g, (_, braced, unbraced) => {\n var _ref;\n const hex = (_ref = braced !== null && braced !== void 0 ? braced : unbraced) !== null && _ref !== void 0 ? _ref : \"\";\n return String.fromCodePoint(parseInt(hex, 16));\n });\n }\n return result;\n }\n}\n\n/**\n * Adjusts the indentation of a multi-line interpolated value to match the current line.\n */\nfunction alignValue(value, precedingText) {\n if (typeof value !== \"string\" || !value.includes(\"\\n\")) {\n return value;\n }\n const currentLine = precedingText.slice(precedingText.lastIndexOf(\"\\n\") + 1);\n const indentMatch = currentLine.match(/^(\\s+)/);\n if (indentMatch) {\n const indent = indentMatch[1];\n return value.replace(/\\n/g, `\\n${indent}`);\n }\n return value;\n}\n"],"names":[],"mappings":"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","x_google_ignoreList":[0]}
@@ -0,0 +1,40 @@
1
+ import { isObject, hasOwnProperty, makeObjectWithoutPrototype, isDate, isEmptyObject } from './utils.js';
2
+
3
+ const diff = (lhs, rhs) => {
4
+ if (lhs === rhs) return {}; // equal return no diff
5
+
6
+ if (!isObject(lhs) || !isObject(rhs)) return rhs; // return updated rhs
7
+
8
+ const deletedValues = Object.keys(lhs).reduce((acc, key) => {
9
+ if (!hasOwnProperty(rhs, key)) {
10
+ acc[key] = undefined;
11
+
12
+ }
13
+
14
+ return acc;
15
+ }, makeObjectWithoutPrototype());
16
+
17
+ if (isDate(lhs) || isDate(rhs)) {
18
+ if (lhs.valueOf() == rhs.valueOf()) return {};
19
+ return rhs;
20
+ }
21
+
22
+ return Object.keys(rhs).reduce((acc, key) => {
23
+ if (!hasOwnProperty(lhs, key)){
24
+ acc[key] = rhs[key]; // return added r key
25
+ return acc;
26
+ }
27
+
28
+ const difference = diff(lhs[key], rhs[key]);
29
+
30
+ // If the difference is empty, and the lhs is an empty object or the rhs is not an empty object
31
+ if (isEmptyObject(difference) && !isDate(difference) && (isEmptyObject(lhs[key]) || !isEmptyObject(rhs[key])))
32
+ return acc; // return no diff
33
+
34
+ acc[key] = difference; // return updated key
35
+ return acc; // return updated key
36
+ }, deletedValues);
37
+ };
38
+
39
+ export { diff as default };
40
+ //# sourceMappingURL=diff.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"diff.js","sources":["../../../../../node_modules/deep-object-diff/mjs/diff.js"],"sourcesContent":["import { isDate, isEmptyObject, isObject, hasOwnProperty, makeObjectWithoutPrototype } from './utils.js';\n\nconst diff = (lhs, rhs) => {\n if (lhs === rhs) return {}; // equal return no diff\n\n if (!isObject(lhs) || !isObject(rhs)) return rhs; // return updated rhs\n\n const deletedValues = Object.keys(lhs).reduce((acc, key) => {\n if (!hasOwnProperty(rhs, key)) {\n acc[key] = undefined;\n \n }\n\n return acc;\n }, makeObjectWithoutPrototype());\n\n if (isDate(lhs) || isDate(rhs)) {\n if (lhs.valueOf() == rhs.valueOf()) return {};\n return rhs;\n }\n\n return Object.keys(rhs).reduce((acc, key) => {\n if (!hasOwnProperty(lhs, key)){\n acc[key] = rhs[key]; // return added r key\n return acc;\n } \n\n const difference = diff(lhs[key], rhs[key]);\n\n // If the difference is empty, and the lhs is an empty object or the rhs is not an empty object\n if (isEmptyObject(difference) && !isDate(difference) && (isEmptyObject(lhs[key]) || !isEmptyObject(rhs[key])))\n return acc; // return no diff\n\n acc[key] = difference // return updated key\n return acc; // return updated key\n }, deletedValues);\n};\n\nexport default diff;\n"],"names":[],"mappings":";;AAEK,MAAC,IAAI,GAAG,CAAC,GAAG,EAAE,GAAG,KAAK;AAC3B,EAAE,IAAI,GAAG,KAAK,GAAG,EAAE,OAAO,EAAE,CAAC;;AAE7B,EAAE,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC;;AAEnD,EAAE,MAAM,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,KAAK;AAC9D,IAAI,IAAI,CAAC,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE;AACnC,MAAM,GAAG,CAAC,GAAG,CAAC,GAAG,SAAS;AAC1B;AACA,IAAI;;AAEJ,IAAI,OAAO,GAAG;AACd,EAAE,CAAC,EAAE,0BAA0B,EAAE,CAAC;;AAElC,EAAE,IAAI,MAAM,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,EAAE;AAClC,IAAI,IAAI,GAAG,CAAC,OAAO,EAAE,IAAI,GAAG,CAAC,OAAO,EAAE,EAAE,OAAO,EAAE;AACjD,IAAI,OAAO,GAAG;AACd,EAAE;;AAEF,EAAE,OAAO,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,KAAK;AAC/C,IAAI,IAAI,CAAC,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;AAClC,MAAM,GAAG,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;AAC1B,MAAM,OAAO,GAAG;AAChB,IAAI,CAAC;;AAEL,IAAI,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;;AAE/C;AACA,IAAI,IAAI,aAAa,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,KAAK,aAAa,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC;AACjH,MAAM,OAAO,GAAG,CAAC;;AAEjB,IAAI,GAAG,CAAC,GAAG,CAAC,GAAG,WAAU;AACzB,IAAI,OAAO,GAAG,CAAC;AACf,EAAE,CAAC,EAAE,aAAa,CAAC;AACnB;;;;","x_google_ignoreList":[0]}
@@ -0,0 +1,9 @@
1
+ const isDate = d => d instanceof Date;
2
+ const isEmpty = o => Object.keys(o).length === 0;
3
+ const isObject = o => o != null && typeof o === 'object';
4
+ const hasOwnProperty = (o, ...args) => Object.prototype.hasOwnProperty.call(o, ...args);
5
+ const isEmptyObject = (o) => isObject(o) && isEmpty(o);
6
+ const makeObjectWithoutPrototype = () => Object.create(null);
7
+
8
+ export { hasOwnProperty, isDate, isEmpty, isEmptyObject, isObject, makeObjectWithoutPrototype };
9
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sources":["../../../../../node_modules/deep-object-diff/mjs/utils.js"],"sourcesContent":["export const isDate = d => d instanceof Date;\nexport const isEmpty = o => Object.keys(o).length === 0;\nexport const isObject = o => o != null && typeof o === 'object';\nexport const hasOwnProperty = (o, ...args) => Object.prototype.hasOwnProperty.call(o, ...args)\nexport const isEmptyObject = (o) => isObject(o) && isEmpty(o);\nexport const makeObjectWithoutPrototype = () => Object.create(null);\n"],"names":[],"mappings":"AAAY,MAAC,MAAM,GAAG,CAAC,IAAI,CAAC,YAAY;AAC5B,MAAC,OAAO,GAAG,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK;AAC1C,MAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,IAAI,IAAI,IAAI,OAAO,CAAC,KAAK;AAC3C,MAAC,cAAc,GAAG,CAAC,CAAC,EAAE,GAAG,IAAI,KAAK,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,GAAG,IAAI;AACjF,MAAC,aAAa,GAAG,CAAC,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC;AAChD,MAAC,0BAA0B,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,IAAI;;;;","x_google_ignoreList":[0]}