@govtechsg/sgds-web-component 3.0.1 → 3.0.2

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 (49) hide show
  1. package/components/Alert/index.umd.js +501 -425
  2. package/components/Alert/index.umd.js.map +1 -1
  3. package/components/Breadcrumb/index.umd.js +501 -425
  4. package/components/Breadcrumb/index.umd.js.map +1 -1
  5. package/components/ComboBox/combo-box.js +1 -1
  6. package/components/ComboBox/index.umd.js +502 -426
  7. package/components/ComboBox/index.umd.js.map +1 -1
  8. package/components/Datepicker/index.umd.js +501 -425
  9. package/components/Datepicker/index.umd.js.map +1 -1
  10. package/components/Dropdown/index.umd.js +501 -425
  11. package/components/Dropdown/index.umd.js.map +1 -1
  12. package/components/FileUpload/index.umd.js +501 -425
  13. package/components/FileUpload/index.umd.js.map +1 -1
  14. package/components/Icon/icon-registry.d.ts +187 -141
  15. package/components/Icon/icon-registry.js +500 -284
  16. package/components/Icon/icon-registry.js.map +1 -1
  17. package/components/Icon/index.umd.js +501 -425
  18. package/components/Icon/index.umd.js.map +1 -1
  19. package/components/Icon/sgds-icon.js +1 -1
  20. package/components/Icon/sgds-icon.js.map +1 -1
  21. package/components/IconButton/index.umd.js +501 -425
  22. package/components/IconButton/index.umd.js.map +1 -1
  23. package/components/Input/index.umd.js +501 -425
  24. package/components/Input/index.umd.js.map +1 -1
  25. package/components/Mainnav/index.umd.js +501 -425
  26. package/components/Mainnav/index.umd.js.map +1 -1
  27. package/components/Pagination/index.umd.js +501 -425
  28. package/components/Pagination/index.umd.js.map +1 -1
  29. package/components/QuantityToggle/index.umd.js +501 -425
  30. package/components/QuantityToggle/index.umd.js.map +1 -1
  31. package/components/Sidenav/index.umd.js +501 -425
  32. package/components/Sidenav/index.umd.js.map +1 -1
  33. package/components/Stepper/index.umd.js +501 -425
  34. package/components/Stepper/index.umd.js.map +1 -1
  35. package/components/index.umd.js +502 -426
  36. package/components/index.umd.js.map +1 -1
  37. package/index.umd.js +502 -426
  38. package/index.umd.js.map +1 -1
  39. package/package.json +1 -1
  40. package/react/components/ComboBox/combo-box.cjs.js +1 -1
  41. package/react/components/ComboBox/combo-box.js +1 -1
  42. package/react/components/Icon/icon-registry.cjs.js +500 -424
  43. package/react/components/Icon/icon-registry.cjs.js.map +1 -1
  44. package/react/components/Icon/icon-registry.js +500 -284
  45. package/react/components/Icon/icon-registry.js.map +1 -1
  46. package/react/components/Icon/sgds-icon.cjs.js +1 -1
  47. package/react/components/Icon/sgds-icon.cjs.js.map +1 -1
  48. package/react/components/Icon/sgds-icon.js +1 -1
  49. package/react/components/Icon/sgds-icon.js.map +1 -1
@@ -34,7 +34,7 @@ class SgdsIcon extends sgdsElement["default"] {
34
34
  .join("");
35
35
  try {
36
36
  const iconRegistry = await Promise.resolve().then(function () { return require('./icon-registry.cjs.js'); });
37
- const svg = iconRegistry[pascalName];
37
+ const svg = iconRegistry["IconRegistry"][pascalName];
38
38
  if (svg) {
39
39
  this._svgContent = svg;
40
40
  }
@@ -1 +1 @@
1
- {"version":3,"file":"sgds-icon.cjs.js","sources":["../../../../src/components/Icon/sgds-icon.ts"],"sourcesContent":["import SgdsElement from \"../../base/sgds-element\";\nimport { html } from \"lit/static-html.js\";\nimport { property, state } from \"lit/decorators.js\";\nimport { unsafeSVG } from \"lit/directives/unsafe-svg.js\";\nimport iconStyles from \"./icon.css\";\n\n/**\n * @summary Icons offer a form of visual shorthand that we are all familiar with. They can label, inform and aid navigation quickly and effectively in minimal space. Icons must first and foremost communicate meaning. By default, the icon component renders icons from `SgdsIcon` library set\n */\nexport class SgdsIcon extends SgdsElement {\n static styles = [...SgdsElement.styles, iconStyles];\n\n /** The name of the icon from sgds icon library */\n @property({ type: String, reflect: true }) name: string;\n\n /** Specifies a small, medium or large icon, the size is medium by default. */\n @property({ type: String, reflect: true }) size: \"sm\" | \"md\" | \"lg\" | \"xl\" | \"2-xl\" | \"3-xl\" = \"lg\";\n\n /** @internal */\n @state()\n private _svgContent: string | null = null;\n\n async updated(changedProperties: Map<string, any>) {\n if (changedProperties.has(\"name\")) {\n await this._loadSvg(this.name);\n }\n }\n\n private async _loadSvg(name: string): Promise<void> {\n if (name) {\n const pascalName = name\n .split(\"-\")\n .map(name => String(name).charAt(0).toUpperCase() + String(name).slice(1))\n .join(\"\");\n try {\n const iconRegistry = await import(\"./icon-registry\");\n const svg = iconRegistry[pascalName];\n if (svg) {\n this._svgContent = svg;\n } else {\n throw new Error(\"icon `name` not found\");\n }\n } catch (error) {\n console.error(`Unable to load icon: ${name}.`, error);\n }\n }\n }\n\n render() {\n return html`${unsafeSVG(this._svgContent)}`;\n }\n}\n\nexport default SgdsIcon;\n"],"names":["SgdsElement","html","unsafeSVG","iconStyles","__decorate","property","state"],"mappings":";;;;;;;;;;;;AAMA;;AAEG;AACG,MAAO,QAAS,SAAQA,sBAAW,CAAA;AAAzC,IAAA,WAAA,GAAA;;;QAO6C,IAAI,CAAA,IAAA,GAAgD,IAAI,CAAC;;QAI5F,IAAW,CAAA,WAAA,GAAkB,IAAI,CAAC;KA+B3C;IA7BC,MAAM,OAAO,CAAC,iBAAmC,EAAA;AAC/C,QAAA,IAAI,iBAAiB,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE;YACjC,MAAM,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAChC;KACF;IAEO,MAAM,QAAQ,CAAC,IAAY,EAAA;QACjC,IAAI,IAAI,EAAE;YACR,MAAM,UAAU,GAAG,IAAI;iBACpB,KAAK,CAAC,GAAG,CAAC;iBACV,GAAG,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;iBACzE,IAAI,CAAC,EAAE,CAAC,CAAC;AACZ,YAAA,IAAI;AACF,gBAAA,MAAM,YAAY,GAAG,MAAM,oDAAO,wBAAiB,KAAC,CAAC;AACrD,gBAAA,MAAM,GAAG,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC;gBACrC,IAAI,GAAG,EAAE;AACP,oBAAA,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC;iBACxB;qBAAM;AACL,oBAAA,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;iBAC1C;aACF;YAAC,OAAO,KAAK,EAAE;gBACd,OAAO,CAAC,KAAK,CAAC,CAAA,qBAAA,EAAwB,IAAI,CAAG,CAAA,CAAA,EAAE,KAAK,CAAC,CAAC;aACvD;SACF;KACF;IAED,MAAM,GAAA;QACJ,OAAOC,kBAAI,CAAA,CAAA,EAAGC,sBAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAA,CAAE,CAAC;KAC7C;;AAxCM,QAAM,CAAA,MAAA,GAAG,CAAC,GAAGF,sBAAW,CAAC,MAAM,EAAEG,eAAU,CAArC,CAAuC;AAGTC,gBAAA,CAAA;IAA1CC,sBAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAc,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAGbD,gBAAA,CAAA;IAA1CC,sBAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAA0D,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAI5FD,gBAAA,CAAA;AADP,IAAAE,mBAAK,EAAE;AACkC,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,aAAA,EAAA,KAAA,CAAA,CAAA;;;;;"}
1
+ {"version":3,"file":"sgds-icon.cjs.js","sources":["../../../../src/components/Icon/sgds-icon.ts"],"sourcesContent":["import SgdsElement from \"../../base/sgds-element\";\nimport { html } from \"lit/static-html.js\";\nimport { property, state } from \"lit/decorators.js\";\nimport { unsafeSVG } from \"lit/directives/unsafe-svg.js\";\nimport iconStyles from \"./icon.css\";\n\n/**\n * @summary Icons offer a form of visual shorthand that we are all familiar with. They can label, inform and aid navigation quickly and effectively in minimal space. Icons must first and foremost communicate meaning. By default, the icon component renders icons from `SgdsIcon` library set\n */\nexport class SgdsIcon extends SgdsElement {\n static styles = [...SgdsElement.styles, iconStyles];\n\n /** The name of the icon from sgds icon library */\n @property({ type: String, reflect: true }) name: string;\n\n /** Specifies a small, medium or large icon, the size is medium by default. */\n @property({ type: String, reflect: true }) size: \"sm\" | \"md\" | \"lg\" | \"xl\" | \"2-xl\" | \"3-xl\" = \"lg\";\n\n /** @internal */\n @state()\n private _svgContent: string | null = null;\n\n async updated(changedProperties: Map<string, any>) {\n if (changedProperties.has(\"name\")) {\n await this._loadSvg(this.name);\n }\n }\n\n private async _loadSvg(name: string): Promise<void> {\n if (name) {\n const pascalName = name\n .split(\"-\")\n .map(name => String(name).charAt(0).toUpperCase() + String(name).slice(1))\n .join(\"\");\n try {\n const iconRegistry = await import(\"./icon-registry\");\n const svg = iconRegistry[\"IconRegistry\"][pascalName];\n if (svg) {\n this._svgContent = svg;\n } else {\n throw new Error(\"icon `name` not found\");\n }\n } catch (error) {\n console.error(`Unable to load icon: ${name}.`, error);\n }\n }\n }\n\n render() {\n return html`${unsafeSVG(this._svgContent)}`;\n }\n}\n\nexport default SgdsIcon;\n"],"names":["SgdsElement","html","unsafeSVG","iconStyles","__decorate","property","state"],"mappings":";;;;;;;;;;;;AAMA;;AAEG;AACG,MAAO,QAAS,SAAQA,sBAAW,CAAA;AAAzC,IAAA,WAAA,GAAA;;;QAO6C,IAAI,CAAA,IAAA,GAAgD,IAAI,CAAC;;QAI5F,IAAW,CAAA,WAAA,GAAkB,IAAI,CAAC;KA+B3C;IA7BC,MAAM,OAAO,CAAC,iBAAmC,EAAA;AAC/C,QAAA,IAAI,iBAAiB,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE;YACjC,MAAM,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAChC;KACF;IAEO,MAAM,QAAQ,CAAC,IAAY,EAAA;QACjC,IAAI,IAAI,EAAE;YACR,MAAM,UAAU,GAAG,IAAI;iBACpB,KAAK,CAAC,GAAG,CAAC;iBACV,GAAG,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;iBACzE,IAAI,CAAC,EAAE,CAAC,CAAC;AACZ,YAAA,IAAI;AACF,gBAAA,MAAM,YAAY,GAAG,MAAM,oDAAO,wBAAiB,KAAC,CAAC;gBACrD,MAAM,GAAG,GAAG,YAAY,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,CAAC;gBACrD,IAAI,GAAG,EAAE;AACP,oBAAA,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC;iBACxB;qBAAM;AACL,oBAAA,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;iBAC1C;aACF;YAAC,OAAO,KAAK,EAAE;gBACd,OAAO,CAAC,KAAK,CAAC,CAAA,qBAAA,EAAwB,IAAI,CAAG,CAAA,CAAA,EAAE,KAAK,CAAC,CAAC;aACvD;SACF;KACF;IAED,MAAM,GAAA;QACJ,OAAOC,kBAAI,CAAA,CAAA,EAAGC,sBAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAA,CAAE,CAAC;KAC7C;;AAxCM,QAAM,CAAA,MAAA,GAAG,CAAC,GAAGF,sBAAW,CAAC,MAAM,EAAEG,eAAU,CAArC,CAAuC;AAGTC,gBAAA,CAAA;IAA1CC,sBAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAc,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAGbD,gBAAA,CAAA;IAA1CC,sBAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAA0D,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAI5FD,gBAAA,CAAA;AADP,IAAAE,mBAAK,EAAE;AACkC,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,aAAA,EAAA,KAAA,CAAA,CAAA;;;;;"}
@@ -30,7 +30,7 @@ class SgdsIcon extends SgdsElement {
30
30
  .join("");
31
31
  try {
32
32
  const iconRegistry = await import('./icon-registry.js');
33
- const svg = iconRegistry[pascalName];
33
+ const svg = iconRegistry["IconRegistry"][pascalName];
34
34
  if (svg) {
35
35
  this._svgContent = svg;
36
36
  }
@@ -1 +1 @@
1
- {"version":3,"file":"sgds-icon.js","sources":["../../../../src/components/Icon/sgds-icon.ts"],"sourcesContent":["import SgdsElement from \"../../base/sgds-element\";\nimport { html } from \"lit/static-html.js\";\nimport { property, state } from \"lit/decorators.js\";\nimport { unsafeSVG } from \"lit/directives/unsafe-svg.js\";\nimport iconStyles from \"./icon.css\";\n\n/**\n * @summary Icons offer a form of visual shorthand that we are all familiar with. They can label, inform and aid navigation quickly and effectively in minimal space. Icons must first and foremost communicate meaning. By default, the icon component renders icons from `SgdsIcon` library set\n */\nexport class SgdsIcon extends SgdsElement {\n static styles = [...SgdsElement.styles, iconStyles];\n\n /** The name of the icon from sgds icon library */\n @property({ type: String, reflect: true }) name: string;\n\n /** Specifies a small, medium or large icon, the size is medium by default. */\n @property({ type: String, reflect: true }) size: \"sm\" | \"md\" | \"lg\" | \"xl\" | \"2-xl\" | \"3-xl\" = \"lg\";\n\n /** @internal */\n @state()\n private _svgContent: string | null = null;\n\n async updated(changedProperties: Map<string, any>) {\n if (changedProperties.has(\"name\")) {\n await this._loadSvg(this.name);\n }\n }\n\n private async _loadSvg(name: string): Promise<void> {\n if (name) {\n const pascalName = name\n .split(\"-\")\n .map(name => String(name).charAt(0).toUpperCase() + String(name).slice(1))\n .join(\"\");\n try {\n const iconRegistry = await import(\"./icon-registry\");\n const svg = iconRegistry[pascalName];\n if (svg) {\n this._svgContent = svg;\n } else {\n throw new Error(\"icon `name` not found\");\n }\n } catch (error) {\n console.error(`Unable to load icon: ${name}.`, error);\n }\n }\n }\n\n render() {\n return html`${unsafeSVG(this._svgContent)}`;\n }\n}\n\nexport default SgdsIcon;\n"],"names":["iconStyles"],"mappings":";;;;;;;;AAMA;;AAEG;AACG,MAAO,QAAS,SAAQ,WAAW,CAAA;AAAzC,IAAA,WAAA,GAAA;;;QAO6C,IAAI,CAAA,IAAA,GAAgD,IAAI,CAAC;;QAI5F,IAAW,CAAA,WAAA,GAAkB,IAAI,CAAC;KA+B3C;IA7BC,MAAM,OAAO,CAAC,iBAAmC,EAAA;AAC/C,QAAA,IAAI,iBAAiB,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE;YACjC,MAAM,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAChC;KACF;IAEO,MAAM,QAAQ,CAAC,IAAY,EAAA;QACjC,IAAI,IAAI,EAAE;YACR,MAAM,UAAU,GAAG,IAAI;iBACpB,KAAK,CAAC,GAAG,CAAC;iBACV,GAAG,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;iBACzE,IAAI,CAAC,EAAE,CAAC,CAAC;AACZ,YAAA,IAAI;AACF,gBAAA,MAAM,YAAY,GAAG,MAAM,OAAO,oBAAiB,CAAC,CAAC;AACrD,gBAAA,MAAM,GAAG,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC;gBACrC,IAAI,GAAG,EAAE;AACP,oBAAA,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC;iBACxB;qBAAM;AACL,oBAAA,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;iBAC1C;aACF;YAAC,OAAO,KAAK,EAAE;gBACd,OAAO,CAAC,KAAK,CAAC,CAAA,qBAAA,EAAwB,IAAI,CAAG,CAAA,CAAA,EAAE,KAAK,CAAC,CAAC;aACvD;SACF;KACF;IAED,MAAM,GAAA;QACJ,OAAO,IAAI,CAAA,CAAA,EAAG,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAA,CAAE,CAAC;KAC7C;;AAxCM,QAAM,CAAA,MAAA,GAAG,CAAC,GAAG,WAAW,CAAC,MAAM,EAAEA,QAAU,CAArC,CAAuC;AAGT,UAAA,CAAA;IAA1C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAc,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAGb,UAAA,CAAA;IAA1C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAA0D,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAI5F,UAAA,CAAA;AADP,IAAA,KAAK,EAAE;AACkC,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,aAAA,EAAA,KAAA,CAAA,CAAA;;;;"}
1
+ {"version":3,"file":"sgds-icon.js","sources":["../../../../src/components/Icon/sgds-icon.ts"],"sourcesContent":["import SgdsElement from \"../../base/sgds-element\";\nimport { html } from \"lit/static-html.js\";\nimport { property, state } from \"lit/decorators.js\";\nimport { unsafeSVG } from \"lit/directives/unsafe-svg.js\";\nimport iconStyles from \"./icon.css\";\n\n/**\n * @summary Icons offer a form of visual shorthand that we are all familiar with. They can label, inform and aid navigation quickly and effectively in minimal space. Icons must first and foremost communicate meaning. By default, the icon component renders icons from `SgdsIcon` library set\n */\nexport class SgdsIcon extends SgdsElement {\n static styles = [...SgdsElement.styles, iconStyles];\n\n /** The name of the icon from sgds icon library */\n @property({ type: String, reflect: true }) name: string;\n\n /** Specifies a small, medium or large icon, the size is medium by default. */\n @property({ type: String, reflect: true }) size: \"sm\" | \"md\" | \"lg\" | \"xl\" | \"2-xl\" | \"3-xl\" = \"lg\";\n\n /** @internal */\n @state()\n private _svgContent: string | null = null;\n\n async updated(changedProperties: Map<string, any>) {\n if (changedProperties.has(\"name\")) {\n await this._loadSvg(this.name);\n }\n }\n\n private async _loadSvg(name: string): Promise<void> {\n if (name) {\n const pascalName = name\n .split(\"-\")\n .map(name => String(name).charAt(0).toUpperCase() + String(name).slice(1))\n .join(\"\");\n try {\n const iconRegistry = await import(\"./icon-registry\");\n const svg = iconRegistry[\"IconRegistry\"][pascalName];\n if (svg) {\n this._svgContent = svg;\n } else {\n throw new Error(\"icon `name` not found\");\n }\n } catch (error) {\n console.error(`Unable to load icon: ${name}.`, error);\n }\n }\n }\n\n render() {\n return html`${unsafeSVG(this._svgContent)}`;\n }\n}\n\nexport default SgdsIcon;\n"],"names":["iconStyles"],"mappings":";;;;;;;;AAMA;;AAEG;AACG,MAAO,QAAS,SAAQ,WAAW,CAAA;AAAzC,IAAA,WAAA,GAAA;;;QAO6C,IAAI,CAAA,IAAA,GAAgD,IAAI,CAAC;;QAI5F,IAAW,CAAA,WAAA,GAAkB,IAAI,CAAC;KA+B3C;IA7BC,MAAM,OAAO,CAAC,iBAAmC,EAAA;AAC/C,QAAA,IAAI,iBAAiB,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE;YACjC,MAAM,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;SAChC;KACF;IAEO,MAAM,QAAQ,CAAC,IAAY,EAAA;QACjC,IAAI,IAAI,EAAE;YACR,MAAM,UAAU,GAAG,IAAI;iBACpB,KAAK,CAAC,GAAG,CAAC;iBACV,GAAG,CAAC,IAAI,IAAI,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;iBACzE,IAAI,CAAC,EAAE,CAAC,CAAC;AACZ,YAAA,IAAI;AACF,gBAAA,MAAM,YAAY,GAAG,MAAM,OAAO,oBAAiB,CAAC,CAAC;gBACrD,MAAM,GAAG,GAAG,YAAY,CAAC,cAAc,CAAC,CAAC,UAAU,CAAC,CAAC;gBACrD,IAAI,GAAG,EAAE;AACP,oBAAA,IAAI,CAAC,WAAW,GAAG,GAAG,CAAC;iBACxB;qBAAM;AACL,oBAAA,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;iBAC1C;aACF;YAAC,OAAO,KAAK,EAAE;gBACd,OAAO,CAAC,KAAK,CAAC,CAAA,qBAAA,EAAwB,IAAI,CAAG,CAAA,CAAA,EAAE,KAAK,CAAC,CAAC;aACvD;SACF;KACF;IAED,MAAM,GAAA;QACJ,OAAO,IAAI,CAAA,CAAA,EAAG,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAA,CAAE,CAAC;KAC7C;;AAxCM,QAAM,CAAA,MAAA,GAAG,CAAC,GAAG,WAAW,CAAC,MAAM,EAAEA,QAAU,CAArC,CAAuC;AAGT,UAAA,CAAA;IAA1C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAc,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAGb,UAAA,CAAA;IAA1C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAA0D,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAI5F,UAAA,CAAA;AADP,IAAA,KAAK,EAAE;AACkC,CAAA,EAAA,QAAA,CAAA,SAAA,EAAA,aAAA,EAAA,KAAA,CAAA,CAAA;;;;"}