@spectrum-web-components/icons-ui 0.8.8 → 0.8.11

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 (51) hide show
  1. package/README.md +1 -1
  2. package/bin/build.js +1 -1
  3. package/package.json +7 -7
  4. package/src/elements/IconArrow100.js.map +1 -1
  5. package/src/elements/IconArrow200.js.map +1 -1
  6. package/src/elements/IconArrow300.js.map +1 -1
  7. package/src/elements/IconArrow400.js.map +1 -1
  8. package/src/elements/IconArrow500.js.map +1 -1
  9. package/src/elements/IconArrow600.js.map +1 -1
  10. package/src/elements/IconArrow75.js.map +1 -1
  11. package/src/elements/IconAsterisk100.js.map +1 -1
  12. package/src/elements/IconAsterisk200.js.map +1 -1
  13. package/src/elements/IconAsterisk300.js.map +1 -1
  14. package/src/elements/IconAsterisk75.js.map +1 -1
  15. package/src/elements/IconCheckmark100.js.map +1 -1
  16. package/src/elements/IconCheckmark200.js.map +1 -1
  17. package/src/elements/IconCheckmark300.js.map +1 -1
  18. package/src/elements/IconCheckmark400.js.map +1 -1
  19. package/src/elements/IconCheckmark50.js.map +1 -1
  20. package/src/elements/IconCheckmark500.js.map +1 -1
  21. package/src/elements/IconCheckmark600.js.map +1 -1
  22. package/src/elements/IconCheckmark75.js.map +1 -1
  23. package/src/elements/IconChevron100.js.map +1 -1
  24. package/src/elements/IconChevron200.js.map +1 -1
  25. package/src/elements/IconChevron300.js.map +1 -1
  26. package/src/elements/IconChevron400.js.map +1 -1
  27. package/src/elements/IconChevron500.js.map +1 -1
  28. package/src/elements/IconChevron600.js.map +1 -1
  29. package/src/elements/IconChevron75.js.map +1 -1
  30. package/src/elements/IconCornerTriangle100.js.map +1 -1
  31. package/src/elements/IconCornerTriangle200.js.map +1 -1
  32. package/src/elements/IconCornerTriangle300.js.map +1 -1
  33. package/src/elements/IconCornerTriangle75.js.map +1 -1
  34. package/src/elements/IconCross100.js.map +1 -1
  35. package/src/elements/IconCross200.js.map +1 -1
  36. package/src/elements/IconCross300.js.map +1 -1
  37. package/src/elements/IconCross400.js.map +1 -1
  38. package/src/elements/IconCross500.js.map +1 -1
  39. package/src/elements/IconCross600.js.map +1 -1
  40. package/src/elements/IconCross75.js.map +1 -1
  41. package/src/elements/IconDash100.js.map +1 -1
  42. package/src/elements/IconDash200.js.map +1 -1
  43. package/src/elements/IconDash300.js.map +1 -1
  44. package/src/elements/IconDash400.js.map +1 -1
  45. package/src/elements/IconDash50.js.map +1 -1
  46. package/src/elements/IconDash500.js.map +1 -1
  47. package/src/elements/IconDash600.js.map +1 -1
  48. package/src/elements/IconDash75.js.map +1 -1
  49. package/src/elements/IconDoubleGripper.js.map +1 -1
  50. package/src/elements/IconSingleGripper.js.map +1 -1
  51. package/src/elements/IconTripleGripper.js.map +1 -1
package/README.md CHANGED
@@ -78,7 +78,7 @@ import '@spectrum-web-components/icon';
78
78
  import { Arrow75Icon } from '@spectrum-web-components/icons-ui';
79
79
 
80
80
  class ElementWithIcon extends LitElement {
81
- protected render(): TemplateResult {
81
+ protected override render(): TemplateResult {
82
82
  return html`
83
83
  <sp-icon>
84
84
  ${Arrow75Icon()}
package/bin/build.js CHANGED
@@ -171,7 +171,7 @@ glob(`${rootDir}/node_modules/${iconsPath}/**.svg`, (error, icons) => {
171
171
  * @element ${iconElementName}
172
172
  */
173
173
  export class Icon${ComponentName} extends IconBase {
174
- protected render(): TemplateResult {
174
+ protected override render(): TemplateResult {
175
175
  setCustomTemplateLiteralTag(html);
176
176
  return ${ComponentName}Icon() as TemplateResult;
177
177
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/icons-ui",
3
- "version": "0.8.8",
3
+ "version": "0.8.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -44,17 +44,17 @@
44
44
  "lit-html"
45
45
  ],
46
46
  "dependencies": {
47
- "@spectrum-web-components/base": "^0.5.6",
48
- "@spectrum-web-components/icon": "^0.11.8",
49
- "@spectrum-web-components/iconset": "^0.6.6",
47
+ "@spectrum-web-components/base": "^0.5.8",
48
+ "@spectrum-web-components/icon": "^0.11.11",
49
+ "@spectrum-web-components/iconset": "^0.6.8",
50
50
  "tslib": "^2.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@spectrum-css/icon": "^3.0.21",
53
+ "@spectrum-css/icon": "^3.0.23",
54
54
  "case": "^1.6.1",
55
55
  "cheerio": "^1.0.0-rc.2",
56
56
  "fs": "^0.0.1-security",
57
- "glob": "^7.1.3",
57
+ "glob": "^8.0.3",
58
58
  "path": "^0.12.7",
59
59
  "prettier": "^2.4.1"
60
60
  },
@@ -64,5 +64,5 @@
64
64
  "./src/index.js",
65
65
  "./icons/*"
66
66
  ],
67
- "gitHead": "8f5ea3556e160b6e30815edb2414dc5a5999a925"
67
+ "gitHead": "3be62133721efba844cd7032566a2c49ed6d9875"
68
68
  }
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow100.js","sourceRoot":"","sources":["IconArrow100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow100Icon } from '../icons/Arrow100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow100\n */\nexport class IconArrow100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow100.js","sourceRoot":"","sources":["IconArrow100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow100Icon } from '../icons/Arrow100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow100\n */\nexport class IconArrow100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow200.js","sourceRoot":"","sources":["IconArrow200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow200Icon } from '../icons/Arrow200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow200\n */\nexport class IconArrow200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow200.js","sourceRoot":"","sources":["IconArrow200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow200Icon } from '../icons/Arrow200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow200\n */\nexport class IconArrow200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow300.js","sourceRoot":"","sources":["IconArrow300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow300Icon } from '../icons/Arrow300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow300\n */\nexport class IconArrow300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow300.js","sourceRoot":"","sources":["IconArrow300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow300Icon } from '../icons/Arrow300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow300\n */\nexport class IconArrow300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow400.js","sourceRoot":"","sources":["IconArrow400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow400Icon } from '../icons/Arrow400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow400\n */\nexport class IconArrow400 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow400Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow400.js","sourceRoot":"","sources":["IconArrow400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow400Icon } from '../icons/Arrow400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow400\n */\nexport class IconArrow400 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow400Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow500.js","sourceRoot":"","sources":["IconArrow500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow500Icon } from '../icons/Arrow500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow500\n */\nexport class IconArrow500 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow500Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow500.js","sourceRoot":"","sources":["IconArrow500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow500Icon } from '../icons/Arrow500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow500\n */\nexport class IconArrow500 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow500Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow600.js","sourceRoot":"","sources":["IconArrow600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow600Icon } from '../icons/Arrow600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow600\n */\nexport class IconArrow600 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow600Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow600.js","sourceRoot":"","sources":["IconArrow600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow600Icon } from '../icons/Arrow600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow600\n */\nexport class IconArrow600 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow600Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconArrow75.js","sourceRoot":"","sources":["IconArrow75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow75Icon } from '../icons/Arrow75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow75\n */\nexport class IconArrow75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconArrow75.js","sourceRoot":"","sources":["IconArrow75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Arrow75Icon } from '../icons/Arrow75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-arrow75\n */\nexport class IconArrow75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Arrow75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconAsterisk100.js","sourceRoot":"","sources":["IconAsterisk100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACjC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk100Icon } from '../icons/Asterisk100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk100\n */\nexport class IconAsterisk100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconAsterisk100.js","sourceRoot":"","sources":["IconAsterisk100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACxB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk100Icon } from '../icons/Asterisk100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk100\n */\nexport class IconAsterisk100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconAsterisk200.js","sourceRoot":"","sources":["IconAsterisk200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACjC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk200Icon } from '../icons/Asterisk200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk200\n */\nexport class IconAsterisk200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconAsterisk200.js","sourceRoot":"","sources":["IconAsterisk200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACxB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk200Icon } from '../icons/Asterisk200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk200\n */\nexport class IconAsterisk200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconAsterisk300.js","sourceRoot":"","sources":["IconAsterisk300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACjC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk300Icon } from '../icons/Asterisk300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk300\n */\nexport class IconAsterisk300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconAsterisk300.js","sourceRoot":"","sources":["IconAsterisk300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACxB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk300Icon } from '../icons/Asterisk300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk300\n */\nexport class IconAsterisk300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconAsterisk75.js","sourceRoot":"","sources":["IconAsterisk75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk75Icon } from '../icons/Asterisk75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk75\n */\nexport class IconAsterisk75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconAsterisk75.js","sourceRoot":"","sources":["IconAsterisk75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Asterisk75Icon } from '../icons/Asterisk75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-asterisk75\n */\nexport class IconAsterisk75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Asterisk75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark100.js","sourceRoot":"","sources":["IconCheckmark100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAClC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark100Icon } from '../icons/Checkmark100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark100\n */\nexport class IconCheckmark100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark100.js","sourceRoot":"","sources":["IconCheckmark100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IACzB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark100Icon } from '../icons/Checkmark100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark100\n */\nexport class IconCheckmark100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark200.js","sourceRoot":"","sources":["IconCheckmark200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAClC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark200Icon } from '../icons/Checkmark200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark200\n */\nexport class IconCheckmark200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark200.js","sourceRoot":"","sources":["IconCheckmark200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IACzB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark200Icon } from '../icons/Checkmark200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark200\n */\nexport class IconCheckmark200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark300.js","sourceRoot":"","sources":["IconCheckmark300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAClC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark300Icon } from '../icons/Checkmark300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark300\n */\nexport class IconCheckmark300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark300.js","sourceRoot":"","sources":["IconCheckmark300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IACzB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark300Icon } from '../icons/Checkmark300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark300\n */\nexport class IconCheckmark300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark400.js","sourceRoot":"","sources":["IconCheckmark400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAClC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark400Icon } from '../icons/Checkmark400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark400\n */\nexport class IconCheckmark400 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark400Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark400.js","sourceRoot":"","sources":["IconCheckmark400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IACzB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark400Icon } from '../icons/Checkmark400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark400\n */\nexport class IconCheckmark400 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark400Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark50.js","sourceRoot":"","sources":["IconCheckmark50.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACjC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark50Icon } from '../icons/Checkmark50.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark50\n */\nexport class IconCheckmark50 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark50Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark50.js","sourceRoot":"","sources":["IconCheckmark50.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACxB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark50Icon } from '../icons/Checkmark50.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark50\n */\nexport class IconCheckmark50 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark50Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark500.js","sourceRoot":"","sources":["IconCheckmark500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAClC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark500Icon } from '../icons/Checkmark500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark500\n */\nexport class IconCheckmark500 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark500Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark500.js","sourceRoot":"","sources":["IconCheckmark500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IACzB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark500Icon } from '../icons/Checkmark500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark500\n */\nexport class IconCheckmark500 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark500Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark600.js","sourceRoot":"","sources":["IconCheckmark600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAClC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark600Icon } from '../icons/Checkmark600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark600\n */\nexport class IconCheckmark600 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark600Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark600.js","sourceRoot":"","sources":["IconCheckmark600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IACzB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,gBAAgB,EAAoB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark600Icon } from '../icons/Checkmark600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark600\n */\nexport class IconCheckmark600 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark600Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCheckmark75.js","sourceRoot":"","sources":["IconCheckmark75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACjC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark75Icon } from '../icons/Checkmark75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark75\n */\nexport class IconCheckmark75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCheckmark75.js","sourceRoot":"","sources":["IconCheckmark75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IACxB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,eAAe,EAAoB,CAAC;IAC7C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Checkmark75Icon } from '../icons/Checkmark75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-checkmark75\n */\nexport class IconCheckmark75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Checkmark75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron100.js","sourceRoot":"","sources":["IconChevron100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron100Icon } from '../icons/Chevron100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron100\n */\nexport class IconChevron100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron100.js","sourceRoot":"","sources":["IconChevron100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron100Icon } from '../icons/Chevron100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron100\n */\nexport class IconChevron100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron200.js","sourceRoot":"","sources":["IconChevron200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron200Icon } from '../icons/Chevron200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron200\n */\nexport class IconChevron200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron200.js","sourceRoot":"","sources":["IconChevron200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron200Icon } from '../icons/Chevron200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron200\n */\nexport class IconChevron200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron300.js","sourceRoot":"","sources":["IconChevron300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron300Icon } from '../icons/Chevron300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron300\n */\nexport class IconChevron300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron300.js","sourceRoot":"","sources":["IconChevron300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron300Icon } from '../icons/Chevron300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron300\n */\nexport class IconChevron300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron400.js","sourceRoot":"","sources":["IconChevron400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron400Icon } from '../icons/Chevron400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron400\n */\nexport class IconChevron400 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron400Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron400.js","sourceRoot":"","sources":["IconChevron400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron400Icon } from '../icons/Chevron400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron400\n */\nexport class IconChevron400 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron400Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron500.js","sourceRoot":"","sources":["IconChevron500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron500Icon } from '../icons/Chevron500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron500\n */\nexport class IconChevron500 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron500Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron500.js","sourceRoot":"","sources":["IconChevron500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron500Icon } from '../icons/Chevron500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron500\n */\nexport class IconChevron500 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron500Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron600.js","sourceRoot":"","sources":["IconChevron600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IAChC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron600Icon } from '../icons/Chevron600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron600\n */\nexport class IconChevron600 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron600Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron600.js","sourceRoot":"","sources":["IconChevron600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,cAAe,SAAQ,QAAQ;IACvB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,cAAc,EAAoB,CAAC;IAC5C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron600Icon } from '../icons/Chevron600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron600\n */\nexport class IconChevron600 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron600Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconChevron75.js","sourceRoot":"","sources":["IconChevron75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,aAAc,SAAQ,QAAQ;IAC/B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,aAAa,EAAoB,CAAC;IAC3C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron75Icon } from '../icons/Chevron75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron75\n */\nexport class IconChevron75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconChevron75.js","sourceRoot":"","sources":["IconChevron75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,aAAc,SAAQ,QAAQ;IACtB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,aAAa,EAAoB,CAAC;IAC3C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Chevron75Icon } from '../icons/Chevron75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-chevron75\n */\nexport class IconChevron75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Chevron75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCornerTriangle100.js","sourceRoot":"","sources":["IconCornerTriangle100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,qBAAsB,SAAQ,QAAQ;IACvC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,qBAAqB,EAAoB,CAAC;IACnD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle100Icon } from '../icons/CornerTriangle100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle100\n */\nexport class IconCornerTriangle100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCornerTriangle100.js","sourceRoot":"","sources":["IconCornerTriangle100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,qBAAsB,SAAQ,QAAQ;IAC9B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,qBAAqB,EAAoB,CAAC;IACnD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle100Icon } from '../icons/CornerTriangle100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle100\n */\nexport class IconCornerTriangle100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCornerTriangle200.js","sourceRoot":"","sources":["IconCornerTriangle200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,qBAAsB,SAAQ,QAAQ;IACvC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,qBAAqB,EAAoB,CAAC;IACnD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle200Icon } from '../icons/CornerTriangle200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle200\n */\nexport class IconCornerTriangle200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCornerTriangle200.js","sourceRoot":"","sources":["IconCornerTriangle200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,qBAAsB,SAAQ,QAAQ;IAC9B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,qBAAqB,EAAoB,CAAC;IACnD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle200Icon } from '../icons/CornerTriangle200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle200\n */\nexport class IconCornerTriangle200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCornerTriangle300.js","sourceRoot":"","sources":["IconCornerTriangle300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,qBAAsB,SAAQ,QAAQ;IACvC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,qBAAqB,EAAoB,CAAC;IACnD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle300Icon } from '../icons/CornerTriangle300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle300\n */\nexport class IconCornerTriangle300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCornerTriangle300.js","sourceRoot":"","sources":["IconCornerTriangle300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,qBAAsB,SAAQ,QAAQ;IAC9B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,qBAAqB,EAAoB,CAAC;IACnD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle300Icon } from '../icons/CornerTriangle300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle300\n */\nexport class IconCornerTriangle300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCornerTriangle75.js","sourceRoot":"","sources":["IconCornerTriangle75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACpE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,oBAAqB,SAAQ,QAAQ;IACtC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,oBAAoB,EAAoB,CAAC;IAClD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle75Icon } from '../icons/CornerTriangle75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle75\n */\nexport class IconCornerTriangle75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCornerTriangle75.js","sourceRoot":"","sources":["IconCornerTriangle75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACpE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,oBAAqB,SAAQ,QAAQ;IAC7B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,oBAAoB,EAAoB,CAAC;IAClD,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { CornerTriangle75Icon } from '../icons/CornerTriangle75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-corner-triangle75\n */\nexport class IconCornerTriangle75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return CornerTriangle75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross100.js","sourceRoot":"","sources":["IconCross100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross100Icon } from '../icons/Cross100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross100\n */\nexport class IconCross100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross100.js","sourceRoot":"","sources":["IconCross100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross100Icon } from '../icons/Cross100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross100\n */\nexport class IconCross100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross200.js","sourceRoot":"","sources":["IconCross200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross200Icon } from '../icons/Cross200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross200\n */\nexport class IconCross200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross200.js","sourceRoot":"","sources":["IconCross200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross200Icon } from '../icons/Cross200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross200\n */\nexport class IconCross200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross300.js","sourceRoot":"","sources":["IconCross300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross300Icon } from '../icons/Cross300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross300\n */\nexport class IconCross300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross300.js","sourceRoot":"","sources":["IconCross300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross300Icon } from '../icons/Cross300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross300\n */\nexport class IconCross300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross400.js","sourceRoot":"","sources":["IconCross400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross400Icon } from '../icons/Cross400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross400\n */\nexport class IconCross400 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross400Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross400.js","sourceRoot":"","sources":["IconCross400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross400Icon } from '../icons/Cross400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross400\n */\nexport class IconCross400 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross400Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross500.js","sourceRoot":"","sources":["IconCross500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross500Icon } from '../icons/Cross500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross500\n */\nexport class IconCross500 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross500Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross500.js","sourceRoot":"","sources":["IconCross500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross500Icon } from '../icons/Cross500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross500\n */\nexport class IconCross500 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross500Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross600.js","sourceRoot":"","sources":["IconCross600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IAC9B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross600Icon } from '../icons/Cross600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross600\n */\nexport class IconCross600 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross600Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross600.js","sourceRoot":"","sources":["IconCross600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,YAAa,SAAQ,QAAQ;IACrB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,YAAY,EAAoB,CAAC;IAC1C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross600Icon } from '../icons/Cross600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross600\n */\nexport class IconCross600 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross600Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconCross75.js","sourceRoot":"","sources":["IconCross75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross75Icon } from '../icons/Cross75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross75\n */\nexport class IconCross75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconCross75.js","sourceRoot":"","sources":["IconCross75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Cross75Icon } from '../icons/Cross75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-cross75\n */\nexport class IconCross75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Cross75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash100.js","sourceRoot":"","sources":["IconDash100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash100Icon } from '../icons/Dash100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash100\n */\nexport class IconDash100 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash100Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash100.js","sourceRoot":"","sources":["IconDash100.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash100Icon } from '../icons/Dash100.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash100\n */\nexport class IconDash100 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash100Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash200.js","sourceRoot":"","sources":["IconDash200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash200Icon } from '../icons/Dash200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash200\n */\nexport class IconDash200 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash200Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash200.js","sourceRoot":"","sources":["IconDash200.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash200Icon } from '../icons/Dash200.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash200\n */\nexport class IconDash200 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash200Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash300.js","sourceRoot":"","sources":["IconDash300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash300Icon } from '../icons/Dash300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash300\n */\nexport class IconDash300 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash300Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash300.js","sourceRoot":"","sources":["IconDash300.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash300Icon } from '../icons/Dash300.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash300\n */\nexport class IconDash300 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash300Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash400.js","sourceRoot":"","sources":["IconDash400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash400Icon } from '../icons/Dash400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash400\n */\nexport class IconDash400 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash400Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash400.js","sourceRoot":"","sources":["IconDash400.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash400Icon } from '../icons/Dash400.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash400\n */\nexport class IconDash400 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash400Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash50.js","sourceRoot":"","sources":["IconDash50.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,UAAW,SAAQ,QAAQ;IAC5B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,UAAU,EAAoB,CAAC;IACxC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash50Icon } from '../icons/Dash50.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash50\n */\nexport class IconDash50 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash50Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash50.js","sourceRoot":"","sources":["IconDash50.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,UAAW,SAAQ,QAAQ;IACnB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,UAAU,EAAoB,CAAC;IACxC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash50Icon } from '../icons/Dash50.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash50\n */\nexport class IconDash50 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash50Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash500.js","sourceRoot":"","sources":["IconDash500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash500Icon } from '../icons/Dash500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash500\n */\nexport class IconDash500 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash500Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash500.js","sourceRoot":"","sources":["IconDash500.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash500Icon } from '../icons/Dash500.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash500\n */\nexport class IconDash500 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash500Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash600.js","sourceRoot":"","sources":["IconDash600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IAC7B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash600Icon } from '../icons/Dash600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash600\n */\nexport class IconDash600 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash600Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash600.js","sourceRoot":"","sources":["IconDash600.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,WAAY,SAAQ,QAAQ;IACpB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,WAAW,EAAoB,CAAC;IACzC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash600Icon } from '../icons/Dash600.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash600\n */\nexport class IconDash600 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash600Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDash75.js","sourceRoot":"","sources":["IconDash75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,UAAW,SAAQ,QAAQ;IAC5B,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,UAAU,EAAoB,CAAC;IACxC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash75Icon } from '../icons/Dash75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash75\n */\nexport class IconDash75 extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash75Icon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDash75.js","sourceRoot":"","sources":["IconDash75.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,UAAW,SAAQ,QAAQ;IACnB,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,UAAU,EAAoB,CAAC;IACxC,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { Dash75Icon } from '../icons/Dash75.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-dash75\n */\nexport class IconDash75 extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return Dash75Icon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconDoubleGripper.js","sourceRoot":"","sources":["IconDoubleGripper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IACnC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,iBAAiB,EAAoB,CAAC;IAC/C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { DoubleGripperIcon } from '../icons/DoubleGripper.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-double-gripper\n */\nexport class IconDoubleGripper extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return DoubleGripperIcon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconDoubleGripper.js","sourceRoot":"","sources":["IconDoubleGripper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IAC1B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,iBAAiB,EAAoB,CAAC;IAC/C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { DoubleGripperIcon } from '../icons/DoubleGripper.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-double-gripper\n */\nexport class IconDoubleGripper extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return DoubleGripperIcon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconSingleGripper.js","sourceRoot":"","sources":["IconSingleGripper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IACnC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,iBAAiB,EAAoB,CAAC;IAC/C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { SingleGripperIcon } from '../icons/SingleGripper.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-single-gripper\n */\nexport class IconSingleGripper extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return SingleGripperIcon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconSingleGripper.js","sourceRoot":"","sources":["IconSingleGripper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IAC1B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,iBAAiB,EAAoB,CAAC;IAC/C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { SingleGripperIcon } from '../icons/SingleGripper.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-single-gripper\n */\nexport class IconSingleGripper extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return SingleGripperIcon() as TemplateResult;\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"IconTripleGripper.js","sourceRoot":"","sources":["IconTripleGripper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IACnC,MAAM;QACd,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,iBAAiB,EAAoB,CAAC;IAC/C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { TripleGripperIcon } from '../icons/TripleGripper.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-triple-gripper\n */\nexport class IconTripleGripper extends IconBase {\n protected render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return TripleGripperIcon() as TemplateResult;\n }\n}\n"]}
1
+ {"version":3,"file":"IconTripleGripper.js","sourceRoot":"","sources":["IconTripleGripper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,EAAE,IAAI,EAAkB,MAAM,+BAA+B,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEzD,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAE/D;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IAC1B,MAAM;QACvB,2BAA2B,CAAC,IAAI,CAAC,CAAC;QAClC,OAAO,iBAAiB,EAAoB,CAAC;IAC/C,CAAC;CACF","sourcesContent":["/*\nCopyright 2020 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { html, TemplateResult } from '@spectrum-web-components/base';\nimport { IconBase } from '@spectrum-web-components/icon';\n\nimport { TripleGripperIcon } from '../icons/TripleGripper.js';\nimport { setCustomTemplateLiteralTag } from '../custom-tag.js';\n\n/**\n * @element sp-icon-triple-gripper\n */\nexport class IconTripleGripper extends IconBase {\n protected override render(): TemplateResult {\n setCustomTemplateLiteralTag(html);\n return TripleGripperIcon() as TemplateResult;\n }\n}\n"]}