@justeattakeaway/pie-icons-webc 1.21.5 → 1.23.0

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 (55) hide show
  1. package/dist/IconChevronCollapse.d.ts +21 -0
  2. package/dist/IconChevronCollapse.d.ts.map +1 -0
  3. package/dist/IconChevronCollapse.js +29 -0
  4. package/dist/IconChevronCollapseLarge.d.ts +21 -0
  5. package/dist/IconChevronCollapseLarge.d.ts.map +1 -0
  6. package/dist/IconChevronCollapseLarge.js +29 -0
  7. package/dist/IconColumn.d.ts +21 -0
  8. package/dist/IconColumn.d.ts.map +1 -0
  9. package/dist/IconColumn.js +29 -0
  10. package/dist/IconColumnLarge.d.ts +21 -0
  11. package/dist/IconColumnLarge.d.ts.map +1 -0
  12. package/dist/IconColumnLarge.js +29 -0
  13. package/dist/IconLightningFilled.d.ts +21 -0
  14. package/dist/IconLightningFilled.d.ts.map +1 -0
  15. package/dist/IconLightningFilled.js +29 -0
  16. package/dist/IconLightningFilledLarge.d.ts +21 -0
  17. package/dist/IconLightningFilledLarge.d.ts.map +1 -0
  18. package/dist/IconLightningFilledLarge.js +29 -0
  19. package/dist/IconTreeTrace.d.ts +21 -0
  20. package/dist/IconTreeTrace.d.ts.map +1 -0
  21. package/dist/IconTreeTrace.js +29 -0
  22. package/dist/IconTreeTraceLarge.d.ts +21 -0
  23. package/dist/IconTreeTraceLarge.d.ts.map +1 -0
  24. package/dist/IconTreeTraceLarge.js +29 -0
  25. package/dist/index.d.ts +8 -0
  26. package/dist/index.d.ts.map +1 -1
  27. package/dist/index.js +2010 -1994
  28. package/dist/react/IconChevronCollapse.d.ts +3 -0
  29. package/dist/react/IconChevronCollapse.d.ts.map +1 -0
  30. package/dist/react/IconChevronCollapse.js +13 -0
  31. package/dist/react/IconChevronCollapseLarge.d.ts +3 -0
  32. package/dist/react/IconChevronCollapseLarge.d.ts.map +1 -0
  33. package/dist/react/IconChevronCollapseLarge.js +13 -0
  34. package/dist/react/IconColumn.d.ts +3 -0
  35. package/dist/react/IconColumn.d.ts.map +1 -0
  36. package/dist/react/IconColumn.js +13 -0
  37. package/dist/react/IconColumnLarge.d.ts +3 -0
  38. package/dist/react/IconColumnLarge.d.ts.map +1 -0
  39. package/dist/react/IconColumnLarge.js +13 -0
  40. package/dist/react/IconLightningFilled.d.ts +3 -0
  41. package/dist/react/IconLightningFilled.d.ts.map +1 -0
  42. package/dist/react/IconLightningFilled.js +13 -0
  43. package/dist/react/IconLightningFilledLarge.d.ts +3 -0
  44. package/dist/react/IconLightningFilledLarge.d.ts.map +1 -0
  45. package/dist/react/IconLightningFilledLarge.js +13 -0
  46. package/dist/react/IconTreeTrace.d.ts +3 -0
  47. package/dist/react/IconTreeTrace.d.ts.map +1 -0
  48. package/dist/react/IconTreeTrace.js +13 -0
  49. package/dist/react/IconTreeTraceLarge.d.ts +3 -0
  50. package/dist/react/IconTreeTraceLarge.d.ts.map +1 -0
  51. package/dist/react/IconTreeTraceLarge.js +13 -0
  52. package/dist/react/index.d.ts +8 -0
  53. package/dist/react/index.d.ts.map +1 -1
  54. package/dist/react/index.js +2010 -1994
  55. package/package.json +3 -3
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-chevron-collapse";
5
+ /**
6
+ * @tagname icon-chevron-collapse
7
+ */
8
+ export declare class IconChevronCollapse extends PieIconComponent {
9
+ size: RegularIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconChevronCollapse;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconChevronCollapse.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconChevronCollapse.d.ts","sourceRoot":"","sources":["../icons/IconChevronCollapse.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,0BAA0B,CAAC;AAElD;;GAEG;AACH,qBACa,mBAAoB,SAAQ,gBAAgB;IAE9C,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAA0C;IAI3D,KAAK,SAA0C;IAEtD,SAAS,CAAC,IAAI,SAAyB;IAEvC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,mBAAmB,CAAC;KAC5C;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as h } from "lit";
2
+ import { property as i } from "lit/decorators.js";
3
+ import { PieIconComponent as a } from "./PieIconComponent.js";
4
+ import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
5
+ var v = Object.defineProperty, m = Object.getOwnPropertyDescriptor, c = (n, t, s, o) => {
6
+ for (var e = o > 1 ? void 0 : o ? m(t, s) : t, l = n.length - 1, p; l >= 0; l--)
7
+ (p = n[l]) && (e = (o ? p(t, s, e) : p(e)) || e);
8
+ return o && e && v(t, s, e), e;
9
+ };
10
+ let r = class extends a {
11
+ constructor() {
12
+ super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--chevronCollapse", this.class = "c-pieIcon c-pieIcon--chevronCollapse", this.name = "IconChevronCollapse";
13
+ }
14
+ render() {
15
+ return h`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--chevronCollapse"><path d="M7.972 9.66c.267 0 .524.1.721.281l3.51 3.658-.936.875-3.308-3.387-3.308 3.387-.901-.937 3.5-3.596c.197-.18.454-.28.722-.28Z"></path><path d="m12.244 2.373-3.5 3.596a1.07 1.07 0 0 1-1.444 0L3.79 2.312l.937-.875 3.307 3.385 3.308-3.385.901.936Z"></path></svg>`;
16
+ }
17
+ };
18
+ c([
19
+ i({ type: String, reflect: !0 })
20
+ ], r.prototype, "size", 2);
21
+ c([
22
+ i({ type: String, reflect: !0 })
23
+ ], r.prototype, "class", 2);
24
+ r = c([
25
+ f("icon-chevron-collapse")
26
+ ], r);
27
+ export {
28
+ r as IconChevronCollapse
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-chevron-collapse-large";
5
+ /**
6
+ * @tagname icon-chevron-collapse-large
7
+ */
8
+ export declare class IconChevronCollapseLarge extends PieIconComponent {
9
+ size: LargeIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconChevronCollapseLarge;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconChevronCollapseLarge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconChevronCollapseLarge.d.ts","sourceRoot":"","sources":["../icons/IconChevronCollapseLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,gCAAgC,CAAC;AAExD;;GAEG;AACH,qBACa,wBAAyB,SAAQ,gBAAgB;IAEnD,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAA+C;IAIhE,KAAK,SAA+C;IAE3D,SAAS,CAAC,IAAI,SAA8B;IAE5C,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,wBAAwB,CAAC;KACjD;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as a } from "lit";
2
+ import { property as i } from "lit/decorators.js";
3
+ import { PieIconComponent as h } from "./PieIconComponent.js";
4
+ import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
5
+ var v = Object.defineProperty, g = Object.getOwnPropertyDescriptor, c = (n, r, s, t) => {
6
+ for (var e = t > 1 ? void 0 : t ? g(r, s) : r, l = n.length - 1, p; l >= 0; l--)
7
+ (p = n[l]) && (e = (t ? p(r, s, e) : p(e)) || e);
8
+ return t && e && v(r, s, e), e;
9
+ };
10
+ let o = class extends h {
11
+ constructor() {
12
+ super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--chevronCollapseLarge", this.class = "c-pieIcon c-pieIcon--chevronCollapseLarge", this.name = "IconChevronCollapseLarge";
13
+ }
14
+ render() {
15
+ return a`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--chevronCollapseLarge"><path d="M16 19.9c.488 0 .957.186 1.313.52l7 7.411-1.252 1.208-7.008-7.411h-.097l-7 7.402-1.268-1.199 7-7.411c.355-.334.824-.52 1.312-.52Z"></path><path d="M15.947 10.312h.097l7-7.403 1.268 1.198-7 7.412a1.917 1.917 0 0 1-2.625 0l-7-7.412L8.938 2.9l7.01 7.412Z"></path></svg>`;
16
+ }
17
+ };
18
+ c([
19
+ i({ type: String, reflect: !0 })
20
+ ], o.prototype, "size", 2);
21
+ c([
22
+ i({ type: String, reflect: !0 })
23
+ ], o.prototype, "class", 2);
24
+ o = c([
25
+ f("icon-chevron-collapse-large")
26
+ ], o);
27
+ export {
28
+ o as IconChevronCollapseLarge
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-column";
5
+ /**
6
+ * @tagname icon-column
7
+ */
8
+ export declare class IconColumn extends PieIconComponent {
9
+ size: RegularIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconColumn;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconColumn.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconColumn.d.ts","sourceRoot":"","sources":["../icons/IconColumn.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,gBAAgB,CAAC;AAExC;;GAEG;AACH,qBACa,UAAW,SAAQ,gBAAgB;IAErC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAiC;IAIlD,KAAK,SAAiC;IAE7C,SAAS,CAAC,IAAI,SAAgB;IAE9B,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,UAAU,CAAC;KACnC;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as h } from "lit";
2
+ import { property as l } from "lit/decorators.js";
3
+ import { PieIconComponent as m } from "./PieIconComponent.js";
4
+ import { safeCustomElement as a } from "@justeattakeaway/pie-webc-core";
5
+ var v = Object.defineProperty, f = Object.getOwnPropertyDescriptor, i = (p, t, r, c) => {
6
+ for (var e = c > 1 ? void 0 : c ? f(t, r) : t, s = p.length - 1, n; s >= 0; s--)
7
+ (n = p[s]) && (e = (c ? n(t, r, e) : n(e)) || e);
8
+ return c && e && v(t, r, e), e;
9
+ };
10
+ let o = class extends m {
11
+ constructor() {
12
+ super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--column", this.class = "c-pieIcon c-pieIcon--column", this.name = "IconColumn";
13
+ }
14
+ render() {
15
+ return h`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--column"><path d="M12.594 1.884H10.23c-.84 0-1.531.691-1.531 1.531v9.17c0 .84.691 1.531 1.531 1.531h2.363c.84 0 1.531-.691 1.531-1.531v-9.17c0-.84-.691-1.531-1.531-1.531Zm.219 10.701a.217.217 0 0 1-.22.219h-2.362a.217.217 0 0 1-.219-.219v-9.17c0-.122.097-.219.22-.219h2.362c.122 0 .219.097.219.219v9.17Z"></path><path d="M5.769 1.884H3.406c-.84 0-1.531.691-1.531 1.531v9.17c0 .84.691 1.531 1.531 1.531H5.77c.84 0 1.531-.691 1.531-1.531v-9.17c0-.84-.691-1.531-1.531-1.531Zm.218 10.701a.217.217 0 0 1-.218.219H3.406a.217.217 0 0 1-.219-.219v-9.17c0-.122.097-.219.22-.219h2.362c.122 0 .218.097.218.219v9.17Z"></path></svg>`;
16
+ }
17
+ };
18
+ i([
19
+ l({ type: String, reflect: !0 })
20
+ ], o.prototype, "size", 2);
21
+ i([
22
+ l({ type: String, reflect: !0 })
23
+ ], o.prototype, "class", 2);
24
+ o = i([
25
+ a("icon-column")
26
+ ], o);
27
+ export {
28
+ o as IconColumn
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-column-large";
5
+ /**
6
+ * @tagname icon-column-large
7
+ */
8
+ export declare class IconColumnLarge extends PieIconComponent {
9
+ size: LargeIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconColumnLarge;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconColumnLarge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconColumnLarge.d.ts","sourceRoot":"","sources":["../icons/IconColumnLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,sBAAsB,CAAC;AAE9C;;GAEG;AACH,qBACa,eAAgB,SAAQ,gBAAgB;IAE1C,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAAsC;IAIvD,KAAK,SAAsC;IAElD,SAAS,CAAC,IAAI,SAAqB;IAEnC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,eAAe,CAAC;KACxC;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as p } from "lit";
2
+ import { property as l } from "lit/decorators.js";
3
+ import { PieIconComponent as h } from "./PieIconComponent.js";
4
+ import { safeCustomElement as m } from "@justeattakeaway/pie-webc-core";
5
+ var f = Object.defineProperty, u = Object.getOwnPropertyDescriptor, n = (i, t, s, r) => {
6
+ for (var e = r > 1 ? void 0 : r ? u(t, s) : t, c = i.length - 1, a; c >= 0; c--)
7
+ (a = i[c]) && (e = (r ? a(t, s, e) : a(e)) || e);
8
+ return r && e && f(t, s, e), e;
9
+ };
10
+ let o = class extends h {
11
+ constructor() {
12
+ super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--columnLarge", this.class = "c-pieIcon c-pieIcon--columnLarge", this.name = "IconColumnLarge";
13
+ }
14
+ render() {
15
+ return p`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--columnLarge"><path d="M12.342 4.669H7.293a2.633 2.633 0 0 0-2.625 2.625V24.74a2.633 2.633 0 0 0 2.625 2.625h5.05a2.633 2.633 0 0 0 2.624-2.625V7.294a2.633 2.633 0 0 0-2.625-2.625Zm.875 20.072a.878.878 0 0 1-.875.875H7.293a.878.878 0 0 1-.875-.875V7.294c0-.482.394-.875.875-.875h5.05c.48 0 .874.393.874.875V24.74Z"></path><path d="M24.689 4.669h-5.05a2.633 2.633 0 0 0-2.624 2.625V24.74a2.633 2.633 0 0 0 2.625 2.625h5.049a2.633 2.633 0 0 0 2.625-2.625V7.294a2.633 2.633 0 0 0-2.625-2.625Zm.875 20.072a.878.878 0 0 1-.875.875h-5.05a.878.878 0 0 1-.874-.875V7.294c0-.482.393-.875.875-.875h5.049c.48 0 .875.393.875.875V24.74Z"></path></svg>`;
16
+ }
17
+ };
18
+ n([
19
+ l({ type: String, reflect: !0 })
20
+ ], o.prototype, "size", 2);
21
+ n([
22
+ l({ type: String, reflect: !0 })
23
+ ], o.prototype, "class", 2);
24
+ o = n([
25
+ m("icon-column-large")
26
+ ], o);
27
+ export {
28
+ o as IconColumnLarge
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-lightning-filled";
5
+ /**
6
+ * @tagname icon-lightning-filled
7
+ */
8
+ export declare class IconLightningFilled extends PieIconComponent {
9
+ size: RegularIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconLightningFilled;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconLightningFilled.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconLightningFilled.d.ts","sourceRoot":"","sources":["../icons/IconLightningFilled.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,0BAA0B,CAAC;AAElD;;GAEG;AACH,qBACa,mBAAoB,SAAQ,gBAAgB;IAE9C,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAA0C;IAI3D,KAAK,SAA0C;IAEtD,SAAS,CAAC,IAAI,SAAyB;IAEvC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,mBAAmB,CAAC;KAC5C;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as h } from "lit";
2
+ import { property as c } from "lit/decorators.js";
3
+ import { PieIconComponent as g } from "./PieIconComponent.js";
4
+ import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
5
+ var a = Object.defineProperty, m = Object.getOwnPropertyDescriptor, o = (p, t, r, i) => {
6
+ for (var e = i > 1 ? void 0 : i ? m(t, r) : t, s = p.length - 1, n; s >= 0; s--)
7
+ (n = p[s]) && (e = (i ? n(t, r, e) : n(e)) || e);
8
+ return i && e && a(t, r, e), e;
9
+ };
10
+ let l = class extends g {
11
+ constructor() {
12
+ super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--lightningFilled", this.class = "c-pieIcon c-pieIcon--lightningFilled", this.name = "IconLightningFilled";
13
+ }
14
+ render() {
15
+ return h`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--lightningFilled"><path d="M8.963 6.329V1.438H7.746L3.818 8.954a.875.875 0 0 0 .778 1.286H7.65v4.322h1.479l3.657-6.956a.876.876 0 0 0-.77-1.277H8.963Z"></path></svg>`;
16
+ }
17
+ };
18
+ o([
19
+ c({ type: String, reflect: !0 })
20
+ ], l.prototype, "size", 2);
21
+ o([
22
+ c({ type: String, reflect: !0 })
23
+ ], l.prototype, "class", 2);
24
+ l = o([
25
+ f("icon-lightning-filled")
26
+ ], l);
27
+ export {
28
+ l as IconLightningFilled
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-lightning-filled-large";
5
+ /**
6
+ * @tagname icon-lightning-filled-large
7
+ */
8
+ export declare class IconLightningFilledLarge extends PieIconComponent {
9
+ size: LargeIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconLightningFilledLarge;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconLightningFilledLarge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconLightningFilledLarge.d.ts","sourceRoot":"","sources":["../icons/IconLightningFilledLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,gCAAgC,CAAC;AAExD;;GAEG;AACH,qBACa,wBAAyB,SAAQ,gBAAgB;IAEnD,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAA+C;IAIhE,KAAK,SAA+C;IAE3D,SAAS,CAAC,IAAI,SAA8B;IAE5C,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,wBAAwB,CAAC;KACjD;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as c } from "lit";
2
+ import { property as g } from "lit/decorators.js";
3
+ import { PieIconComponent as h } from "./PieIconComponent.js";
4
+ import { safeCustomElement as a } from "@justeattakeaway/pie-webc-core";
5
+ var f = Object.defineProperty, m = Object.getOwnPropertyDescriptor, o = (p, t, l, i) => {
6
+ for (var e = i > 1 ? void 0 : i ? m(t, l) : t, n = p.length - 1, s; n >= 0; n--)
7
+ (s = p[n]) && (e = (i ? s(t, l, e) : s(e)) || e);
8
+ return i && e && f(t, l, e), e;
9
+ };
10
+ let r = class extends h {
11
+ constructor() {
12
+ super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--lightningFilledLarge", this.class = "c-pieIcon c-pieIcon--lightningFilledLarge", this.name = "IconLightningFilledLarge";
13
+ }
14
+ render() {
15
+ return c`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--lightningFilledLarge"><path d="m14.539 3.75-6.93 13.274a1.75 1.75 0 0 0 1.549 2.563h5.967v8.663h2.354l6.904-13.125a1.75 1.75 0 0 0-1.55-2.564h-5.958V3.75H14.54Z"></path></svg>`;
16
+ }
17
+ };
18
+ o([
19
+ g({ type: String, reflect: !0 })
20
+ ], r.prototype, "size", 2);
21
+ o([
22
+ g({ type: String, reflect: !0 })
23
+ ], r.prototype, "class", 2);
24
+ r = o([
25
+ a("icon-lightning-filled-large")
26
+ ], r);
27
+ export {
28
+ r as IconLightningFilledLarge
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { RegularIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-tree-trace";
5
+ /**
6
+ * @tagname icon-tree-trace
7
+ */
8
+ export declare class IconTreeTrace extends PieIconComponent {
9
+ size: RegularIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconTreeTrace;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconTreeTrace.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconTreeTrace.d.ts","sourceRoot":"","sources":["../icons/IconTreeTrace.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AACrE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,oBAAoB,CAAC;AAE5C;;GAEG;AACH,qBACa,aAAc,SAAQ,gBAAgB;IAExC,IAAI,EAAE,eAAe,CAAQ;IAEpC,SAAS,CAAC,cAAc,SAAoC;IAIrD,KAAK,SAAoC;IAEhD,SAAS,CAAC,IAAI,SAAmB;IAEjC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,aAAa,CAAC;KACtC;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as l } from "lit";
2
+ import { property as n } from "lit/decorators.js";
3
+ import { PieIconComponent as h } from "./PieIconComponent.js";
4
+ import { safeCustomElement as f } from "@justeattakeaway/pie-webc-core";
5
+ var m = Object.defineProperty, v = Object.getOwnPropertyDescriptor, p = (a, r, s, t) => {
6
+ for (var e = t > 1 ? void 0 : t ? v(r, s) : r, o = a.length - 1, i; o >= 0; o--)
7
+ (i = a[o]) && (e = (t ? i(r, s, e) : i(e)) || e);
8
+ return t && e && m(r, s, e), e;
9
+ };
10
+ let c = class extends h {
11
+ constructor() {
12
+ super(...arguments), this.size = "xs", this.defaultClasses = "c-pieIcon c-pieIcon--treeTrace", this.class = "c-pieIcon c-pieIcon--treeTrace", this.name = "IconTreeTrace";
13
+ }
14
+ render() {
15
+ return l`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 16 16" class="c-pieIcon c-pieIcon--treeTrace"><path d="M13.631 3.231a2.17 2.17 0 1 0-4.34 0c0 .963.64 1.777 1.514 2.057v.743c0 .744-.735 1.339-1.339 1.339h-2.93c-.473 0-.937.158-1.34.411V5.288a2.162 2.162 0 0 0-.647-4.226c-1.19 0-2.17.97-2.17 2.17 0 .962.639 1.776 1.514 2.056v5.433a2.167 2.167 0 0 0-1.514 2.056 2.17 2.17 0 1 0 4.34 0c0-.962-.639-1.776-1.514-2.056v-.7c0-.691.753-1.338 1.339-1.338h2.931c1.251 0 2.651-1.13 2.651-2.652v-.743A2.167 2.167 0 0 0 13.64 3.23h-.009ZM4.55 2.374c.472 0 .857.385.857.857a.859.859 0 0 1-.857.858.859.859 0 0 1-.858-.858c0-.472.385-.857.858-.857Zm0 11.261a.859.859 0 0 1-.858-.857.859.859 0 0 1 1.715 0 .859.859 0 0 1-.857.857Zm6.912-9.546a.859.859 0 0 1-.857-.858c0-.472.385-.857.857-.857.473 0 .858.385.858.857a.859.859 0 0 1-.858.858Z"></path></svg>`;
16
+ }
17
+ };
18
+ p([
19
+ n({ type: String, reflect: !0 })
20
+ ], c.prototype, "size", 2);
21
+ p([
22
+ n({ type: String, reflect: !0 })
23
+ ], c.prototype, "class", 2);
24
+ c = p([
25
+ f("icon-tree-trace")
26
+ ], c);
27
+ export {
28
+ c as IconTreeTrace
29
+ };
@@ -0,0 +1,21 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { LargeIconSize } from '@justeattakeaway/pie-icons-configs';
3
+ import { PieIconComponent } from './PieIconComponent.ts';
4
+ declare const componentSelector = "icon-tree-trace-large";
5
+ /**
6
+ * @tagname icon-tree-trace-large
7
+ */
8
+ export declare class IconTreeTraceLarge extends PieIconComponent {
9
+ size: LargeIconSize;
10
+ protected defaultClasses: string;
11
+ class: string;
12
+ protected name: string;
13
+ render(): TemplateResult;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ [componentSelector]: IconTreeTraceLarge;
18
+ }
19
+ }
20
+ export {};
21
+ //# sourceMappingURL=IconTreeTraceLarge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconTreeTraceLarge.d.ts","sourceRoot":"","sources":["../icons/IconTreeTraceLarge.ts"],"names":[],"mappings":"AAAA,OAAO,EACO,cAAc,EACvB,MAAM,KAAK,CAAC;AAEb,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAGzD,QAAA,MAAM,iBAAiB,0BAA0B,CAAC;AAElD;;GAEG;AACH,qBACa,kBAAmB,SAAQ,gBAAgB;IAE7C,IAAI,EAAE,aAAa,CAAM;IAEhC,SAAS,CAAC,cAAc,SAAyC;IAI1D,KAAK,SAAyC;IAErD,SAAS,CAAC,IAAI,SAAwB;IAEtC,MAAM,IAAI,cAAc;CAG3B;AAED,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,qBAAqB;QAC3B,CAAC,iBAAiB,CAAC,EAAE,kBAAkB,CAAC;KAC3C;CACJ"}
@@ -0,0 +1,29 @@
1
+ import { html as l } from "lit";
2
+ import { property as n } from "lit/decorators.js";
3
+ import { PieIconComponent as f } from "./PieIconComponent.js";
4
+ import { safeCustomElement as h } from "@justeattakeaway/pie-webc-core";
5
+ var v = Object.defineProperty, g = Object.getOwnPropertyDescriptor, i = (p, r, s, t) => {
6
+ for (var e = t > 1 ? void 0 : t ? g(r, s) : r, o = p.length - 1, a; o >= 0; o--)
7
+ (a = p[o]) && (e = (t ? a(r, s, e) : a(e)) || e);
8
+ return t && e && v(r, s, e), e;
9
+ };
10
+ let c = class extends f {
11
+ constructor() {
12
+ super(...arguments), this.size = 32, this.defaultClasses = "c-pieIcon c-pieIcon--treeTraceLarge", this.class = "c-pieIcon c-pieIcon--treeTraceLarge", this.name = "IconTreeTraceLarge";
13
+ }
14
+ render() {
15
+ return l`<svg width="${this._svgWidth}" height="${this._svgHeight}" fill="${this.fill}" xmlns="http://www.w3.org/2000/svg" role="presentation" focusable="false" fill="currentColor" viewBox="0 0 32 32" class="c-pieIcon c-pieIcon--treeTraceLarge"><path d="M26.838 6.673a3.805 3.805 0 0 0-3.798-3.798 3.805 3.805 0 0 0-3.797 3.798 3.8 3.8 0 0 0 2.975 3.7v1.567c0 1.794-1.715 3.194-3.194 3.194H13.04c-1.155 0-2.292.525-3.194 1.33v-6.108a3.798 3.798 0 0 0 2.923-3.683A3.805 3.805 0 0 0 8.97 2.875a3.8 3.8 0 0 0-3.797 3.798 3.79 3.79 0 0 0 2.922 3.683v11.27a3.798 3.798 0 0 0-2.922 3.684 3.805 3.805 0 0 0 3.797 3.798 3.805 3.805 0 0 0 3.798-3.798 3.79 3.79 0 0 0-2.923-3.684v-1.549c0-1.548 1.645-3.193 3.194-3.193h5.985c2.336 0 4.944-2.118 4.944-4.944v-1.601c1.645-.42 2.87-1.899 2.87-3.675v.009Zm-19.915 0A2.05 2.05 0 0 1 8.97 4.625a2.05 2.05 0 0 1 2.048 2.048A2.05 2.05 0 0 1 8.97 8.72a2.05 2.05 0 0 1-2.047-2.048Zm4.095 18.637a2.05 2.05 0 0 1-2.048 2.048 2.05 2.05 0 0 1-2.047-2.048 2.05 2.05 0 0 1 2.047-2.047 2.05 2.05 0 0 1 2.048 2.047ZM23.04 8.72a2.05 2.05 0 0 1-2.047-2.048 2.05 2.05 0 0 1 2.047-2.047 2.05 2.05 0 0 1 2.048 2.048A2.05 2.05 0 0 1 23.04 8.72Z"></path></svg>`;
16
+ }
17
+ };
18
+ i([
19
+ n({ type: String, reflect: !0 })
20
+ ], c.prototype, "size", 2);
21
+ i([
22
+ n({ type: String, reflect: !0 })
23
+ ], c.prototype, "class", 2);
24
+ c = i([
25
+ h("icon-tree-trace-large")
26
+ ], c);
27
+ export {
28
+ c as IconTreeTraceLarge
29
+ };
package/dist/index.d.ts CHANGED
@@ -192,6 +192,8 @@ export { IconChequeFilledLarge } from './IconChequeFilledLarge';
192
192
  export { IconChequeFilled } from './IconChequeFilled';
193
193
  export { IconChequeLarge } from './IconChequeLarge';
194
194
  export { IconCheque } from './IconCheque';
195
+ export { IconChevronCollapseLarge } from './IconChevronCollapseLarge';
196
+ export { IconChevronCollapse } from './IconChevronCollapse';
195
197
  export { IconChevronDoubleLeftLarge } from './IconChevronDoubleLeftLarge';
196
198
  export { IconChevronDoubleLeft } from './IconChevronDoubleLeft';
197
199
  export { IconChevronDoubleRightLarge } from './IconChevronDoubleRightLarge';
@@ -243,6 +245,8 @@ export { IconCoinsLarge } from './IconCoinsLarge';
243
245
  export { IconCoins } from './IconCoins';
244
246
  export { IconCollectLarge } from './IconCollectLarge';
245
247
  export { IconCollect } from './IconCollect';
248
+ export { IconColumnLarge } from './IconColumnLarge';
249
+ export { IconColumn } from './IconColumn';
246
250
  export { IconComponentsLarge } from './IconComponentsLarge';
247
251
  export { IconComponents } from './IconComponents';
248
252
  export { IconConsentLarge } from './IconConsentLarge';
@@ -536,6 +540,8 @@ export { IconLeiLarge } from './IconLeiLarge';
536
540
  export { IconLei } from './IconLei';
537
541
  export { IconLevLarge } from './IconLevLarge';
538
542
  export { IconLev } from './IconLev';
543
+ export { IconLightningFilledLarge } from './IconLightningFilledLarge';
544
+ export { IconLightningFilled } from './IconLightningFilled';
539
545
  export { IconLightningLarge } from './IconLightningLarge';
540
546
  export { IconLightning } from './IconLightning';
541
547
  export { IconLinkExternalLarge } from './IconLinkExternalLarge';
@@ -1106,6 +1112,8 @@ export { IconTrashFilledLarge } from './IconTrashFilledLarge';
1106
1112
  export { IconTrashFilled } from './IconTrashFilled';
1107
1113
  export { IconTrashLarge } from './IconTrashLarge';
1108
1114
  export { IconTrash } from './IconTrash';
1115
+ export { IconTreeTraceLarge } from './IconTreeTraceLarge';
1116
+ export { IconTreeTrace } from './IconTreeTrace';
1109
1117
  export { IconTrophyLarge } from './IconTrophyLarge';
1110
1118
  export { IconTrophy } from './IconTrophy';
1111
1119
  export { IconTutorialLarge } from './IconTutorialLarge';