@brad-frost-web/eddie-web-components 0.19.1 → 0.19.4
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.
- package/components/EdElement.js +5 -5
- package/components/EdFormElement.js +2 -2
- package/components/accordion/accordion.js +4 -4
- package/components/accordion-panel/accordion-panel.js +2 -2
- package/components/alert/alert.js +1 -1
- package/components/badge/badge.js +1 -1
- package/components/band/band.js +1 -1
- package/components/black-friday-banner/black-friday-banner.js +1 -1
- package/components/black-friday-modal/black-friday-modal.js +1 -1
- package/components/box/box.js +1 -1
- package/components/breadcrumbs/breadcrumbs.js +4 -4
- package/components/breadcrumbs-item/breadcrumbs-item.js +1 -1
- package/components/button/button.js +1 -1
- package/components/button-group/button-group.js +6 -6
- package/components/card/card.js +1 -1
- package/components/checkbox-field/checkbox-field.js +1 -1
- package/components/checkbox-field-item/checkbox-field-item.js +2 -2
- package/components/counter/counter.js +13 -13
- package/components/drawer/drawer.js +1 -1
- package/components/feature/feature.js +1 -1
- package/components/field-note/field-note.js +1 -1
- package/components/file-upload/file-upload.js +2 -2
- package/components/footer/footer.js +4 -4
- package/components/global-nav/global-nav.js +1 -1
- package/components/global-nav-item/global-nav-item.js +1 -1
- package/components/grid/grid.js +1 -1
- package/components/grid-item/grid-item.js +1 -1
- package/components/header/header.js +1 -1
- package/components/heading/heading.js +1 -1
- package/components/hero/hero.js +1 -1
- package/components/hr/hr.js +1 -1
- package/components/icon/icon.js +1 -1
- package/components/icon-link-list/icon-link-list.js +1 -1
- package/components/icon-link-list-item/icon-link-list-item.js +8 -8
- package/components/index.browser.js +1 -1
- package/components/inline-checkbox/inline-checkbox.js +2 -2
- package/components/key-value-table/key-value-table.js +1 -1
- package/components/key-value-table-row/key-value-table-row.js +1 -1
- package/components/layout/layout.js +1 -1
- package/components/layout-container/layout-container.js +1 -1
- package/components/layout-section/layout-section.js +1 -1
- package/components/linelength-container/linelength-container.js +1 -1
- package/components/link-list/link-list.js +1 -1
- package/components/link-list-item/link-list-item.js +1 -1
- package/components/list/list.js +1 -1
- package/components/list-item/list-item.js +1 -1
- package/components/loading-indicator/loading-indicator.js +1 -1
- package/components/logo/logo.js +4 -4
- package/components/main/main.js +4 -4
- package/components/media-block/media-block.js +5 -5
- package/components/modal/modal.js +1 -1
- package/components/nav-container/nav-container.js +1 -1
- package/components/page-header/page-header.js +1 -1
- package/components/pagination/pagination.js +1 -1
- package/components/pagination-item/pagination-item.js +1 -1
- package/components/primary-nav/primary-nav.js +1 -1
- package/components/primary-nav-item/primary-nav-item.js +1 -1
- package/components/radio-field/radio-field.js +8 -8
- package/components/radio-field-item/radio-field-item.js +2 -2
- package/components/search-form/search-form.js +2 -2
- package/components/section/section.js +4 -4
- package/components/select-field/select-field.js +2 -2
- package/components/show-hide/show-hide.js +1 -1
- package/components/show-more/show-more.js +1 -1
- package/components/skeleton/skeleton.js +1 -1
- package/components/tab/tab.js +1 -1
- package/components/table/table.js +1 -1
- package/components/table-body/table-body.js +4 -4
- package/components/table-cell/table-cell.js +4 -4
- package/components/table-header/table-header.js +1 -1
- package/components/table-header-cell/table-header-cell.js +1 -1
- package/components/table-object/table-object.js +1 -1
- package/components/table-row/table-row.js +1 -1
- package/components/tabs/tabs.js +2 -2
- package/components/tag/tag.js +6 -6
- package/components/tag-list/tag-list.js +1 -1
- package/components/text-field/text-field.js +6 -6
- package/components/text-link/text-link.js +1 -1
- package/components/text-passage/text-passage.js +1 -1
- package/components/textarea-field/textarea-field.js +2 -2
- package/components/toast/toast.js +1 -1
- package/components/toggle/toggle.js +10 -10
- package/components/toolbar/toolbar.js +1 -1
- package/components/tooltip/tooltip.js +1 -1
- package/components/tooltip-trigger/tooltip-trigger.js +1 -1
- package/components/utility-nav/utility-nav.js +4 -4
- package/components/utility-nav-item/utility-nav-item.js +1 -1
- package/package.json +6 -1
package/components/EdElement.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import i from "classnames";
|
|
2
2
|
import { LitElement as p, html as m } from "lit";
|
|
3
|
-
import { property as
|
|
4
|
-
var
|
|
3
|
+
import { property as u } from "lit/decorators.js";
|
|
4
|
+
var a = Object.defineProperty, d = (n, t, r, l) => {
|
|
5
5
|
for (var e = void 0, s = n.length - 1, o; s >= 0; s--)
|
|
6
6
|
(o = n[s]) && (e = o(t, r, e) || e);
|
|
7
|
-
return e &&
|
|
7
|
+
return e && a(t, r, e), e;
|
|
8
8
|
};
|
|
9
9
|
class f extends p {
|
|
10
10
|
/**
|
|
@@ -56,8 +56,8 @@ class f extends p {
|
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
d([
|
|
59
|
-
|
|
59
|
+
u()
|
|
60
60
|
], f.prototype, "styleModifier");
|
|
61
61
|
export {
|
|
62
|
-
f as
|
|
62
|
+
f as EdElement
|
|
63
63
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { property as h } from "lit/decorators.js";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as d } from "./EdElement.js";
|
|
3
3
|
var p = Object.defineProperty, o = Object.getOwnPropertyDescriptor, n = (r, t, i, f) => {
|
|
4
4
|
for (var e = o(t, i), s = r.length - 1, u; s >= 0; s--)
|
|
5
5
|
(u = r[s]) && (e = u(t, i, e) || e);
|
|
@@ -42,5 +42,5 @@ n([
|
|
|
42
42
|
h()
|
|
43
43
|
], a.prototype, "value");
|
|
44
44
|
export {
|
|
45
|
-
a as
|
|
45
|
+
a as EdFormElement
|
|
46
46
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { unsafeCSS as d, html as i } from "lit";
|
|
2
|
-
import { property as
|
|
3
|
-
import {
|
|
2
|
+
import { property as l } from "lit/decorators.js";
|
|
3
|
+
import { EdElement as a } from "../EdElement.js";
|
|
4
4
|
const m = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-accordion--inverted{color:var(--ed-theme-color-content-knockout);--ed-accordion-panel-button-hover-text-color: var(--ed-theme-color-content-subtle)}";
|
|
5
5
|
var h = Object.defineProperty, p = (t, o, n, f) => {
|
|
6
6
|
for (var e = void 0, r = t.length - 1, s; r >= 0; r--)
|
|
7
7
|
(s = t[r]) && (e = s(o, n, e) || e);
|
|
8
8
|
return e && h(o, n, e), e;
|
|
9
9
|
};
|
|
10
|
-
class c extends
|
|
10
|
+
class c extends a {
|
|
11
11
|
static get styles() {
|
|
12
12
|
return d(m.toString());
|
|
13
13
|
}
|
|
@@ -23,7 +23,7 @@ class c extends l {
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
p([
|
|
26
|
-
|
|
26
|
+
l({ type: Boolean })
|
|
27
27
|
], c.prototype, "inverted");
|
|
28
28
|
customElements.get("ed-accordion") === void 0 && customElements.define("ed-accordion", c);
|
|
29
29
|
export {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { unsafeCSS as c, html as h } from "lit";
|
|
2
2
|
import { property as o } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { nanoid as l } from "../index.browser.js";
|
|
4
|
+
import { EdElement as p } from "../EdElement.js";
|
|
5
5
|
import "../icon/icon.js";
|
|
6
6
|
const m = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-accordion-panel{border-block-end:var(--ed-theme-border-width-sm) solid var(--ed-theme-color-border-subtle)}.ed-c-accordion-panel__button{display:flex;align-items:center;appearance:none;background:none;border:none;padding:1rem 0;width:100%;cursor:pointer;color:inherit;overflow-x:hidden;transition:color var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-c-accordion-panel__button:hover,.ed-c-accordion-panel__button:focus{color:var(--ed-accordion-panel-button-hover-text-color, var(--ed-theme-color-content-default-hover))}ed-icon{margin-inline-start:auto;transition:transform var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-c-accordion-panel.ed-is-active ed-icon{transform:rotate(-180deg)}.ed-c-accordion-panel__body{margin:0;padding:0;overflow:hidden;visibility:hidden;transition:height var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease),visibility var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-c-accordion-panel.ed-is-active .ed-c-accordion-panel__body{visibility:visible}.ed-c-accordion-panel__body-inner{padding-block-end:1rem;padding-block-start:1rem}.ed-c-accordion--condensed .ed-c-accordion-panel__body-inner{padding-block-start:.5rem;padding-block-end:.5rem}";
|
|
7
7
|
var b = Object.defineProperty, a = (n, t, s, u) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import l from "classnames";
|
|
2
2
|
import { unsafeCSS as c, html as g } from "lit";
|
|
3
3
|
import { property as i } from "lit/decorators.js";
|
|
4
|
-
import {
|
|
4
|
+
import { EdElement as h } from "../EdElement.js";
|
|
5
5
|
const m = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-badge{font-family:var(--ed-theme-typography-label-default-font-family);font-weight:var(--ed-theme-typography-label-default-font-weight);font-size:var(--ed-theme-typography-label-default-font-size);line-height:var(--ed-theme-typography-label-default-line-height);letter-spacing:var(--ed-theme-typography-label-default-letter-spacing);text-transform:var(--ed-theme-typography-label-default-text-transform);background:var(--ed-theme-color-background-utility-info);color:var(--ed-theme-color-content-default);display:inline-flex;border-radius:var(--ed-theme-border-radius-md);padding:.5rem}.ed-c-badge--success{background:var(--ed-theme-color-background-utility-success)}.ed-c-badge--warning{background:var(--ed-theme-color-background-utility-warning)}.ed-c-badge--error{background:var(--ed-theme-color-background-utility-error)}";
|
|
6
6
|
var f = Object.defineProperty, s = (r, t, d, u) => {
|
|
7
7
|
for (var e = void 0, a = r.length - 1, n; a >= 0; a--)
|
package/components/band/band.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as s, html as c } from "lit";
|
|
2
2
|
import { property as b } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as i } from "../EdElement.js";
|
|
4
4
|
const m = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-band{background:var(--ed-theme-color-background-subtle);padding:1.5rem 0}@media all and (min-width:75rem){.ed-c-band{padding:2rem 0}}.ed-c-band--brand{background:var(--ed-theme-color-background-brand)}.ed-c-band--brand-knockout{color:var(--ed-theme-color-content-knockout);background:var(--ed-theme-color-background-brand-knockout)}";
|
|
5
5
|
var l = Object.defineProperty, u = (r, n, o, h) => {
|
|
6
6
|
for (var e = void 0, d = r.length - 1, t; d >= 0; d--)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { unsafeCSS as o, html as t } from "lit";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as n } from "../EdElement.js";
|
|
3
3
|
import "../layout-container/layout-container.js";
|
|
4
4
|
const r = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-black-friday-banner{width:100%;padding:1rem 0;background:var(--ed-theme-color-background-brand-knockout);color:var(--ed-theme-color-content-knockout)}::slotted(a){color:var(--ed-theme-color-content-knockout)}::slotted(a):hover,::slotted(a):focus{text-decoration:none}";
|
|
5
5
|
class a extends n {
|
package/components/box/box.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { unsafeCSS as o, html as r } from "lit";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as t } from "../EdElement.js";
|
|
3
3
|
const d = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-box{flex-direction:column;padding:1rem;height:100%;width:100%;border-width:var(--ed-theme-border-width-sm);border-style:solid;border-color:var(--ed-theme-color-border-subtle);border-radius:var(--ed-theme-border-radius-md);box-shadow:var(--ed-theme-box-shadow-md);background:var(--ed-theme-color-background-default)}";
|
|
4
4
|
class s extends t {
|
|
5
5
|
static get styles() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { unsafeCSS as s, html as t } from "lit";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as r } from "../EdElement.js";
|
|
3
3
|
const m = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-breadcrumbs__list{display:flex;margin:-.5rem 0 0 -.5rem;padding:0;list-style:none}.ed-c-breadcrumbs__list ::slotted(ed-breadcrumbs-item){margin-inline-start:.5rem;margin-block-start:.5rem}";
|
|
4
|
-
class
|
|
4
|
+
class o extends r {
|
|
5
5
|
static get styles() {
|
|
6
6
|
return s(m.toString());
|
|
7
7
|
}
|
|
@@ -16,7 +16,7 @@ class a extends r {
|
|
|
16
16
|
`;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
customElements.get("ed-breadcrumbs") === void 0 && customElements.define("ed-breadcrumbs",
|
|
19
|
+
customElements.get("ed-breadcrumbs") === void 0 && customElements.define("ed-breadcrumbs", o);
|
|
20
20
|
export {
|
|
21
|
-
|
|
21
|
+
o as EdBreadcrumbs
|
|
22
22
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { unsafeCSS as c, html as n } from "lit";
|
|
2
2
|
import { ifDefined as d } from "lit-html/directives/if-defined.js";
|
|
3
3
|
import { property as m } from "lit/decorators.js";
|
|
4
|
-
import {
|
|
4
|
+
import { EdElement as h } from "../EdElement.js";
|
|
5
5
|
const b = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-breadcrumbs__item{display:inline-flex;align-items:center;font-family:var(--ed-theme-typography-body-sm-font-family);font-weight:var(--ed-theme-typography-body-sm-font-weight);font-size:var(--ed-theme-typography-body-sm-font-size);line-height:var(--ed-theme-typography-body-sm-line-height);letter-spacing:var(--ed-theme-typography-body-sm-letter-spacing);text-transform:var(--ed-theme-typography-body-sm-text-transform)}:host(:last-child) .ed-c-breadcrumbs__item{color:var(--ed-theme-color-content-subtle)}.ed-c-breadcrumbs__link{margin-inline-end:.5rem;text-decoration:none;color:var(--ed-theme-link-color-content-default)}.ed-c-breadcrumbs__link:hover,.ed-c-breadcrumbs__link:focus{text-decoration:underline;color:var(--ed-theme-link-color-content-hover)}ed-icon{--ed-icon-fill: var(--ed-theme-color-content-subtle);--ed-icon-height: .5rem;--ed-icon-width: .5rem}";
|
|
6
6
|
var f = Object.defineProperty, l = (r, t, s, p) => {
|
|
7
7
|
for (var e = void 0, o = r.length - 1, a; o >= 0; o--)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EdFormElement as b } from "../EdFormElement.js";
|
|
2
2
|
import { unsafeCSS as m, nothing as a, html as l } from "lit";
|
|
3
3
|
import { property as r, query as u } from "lit/decorators.js";
|
|
4
4
|
import { ifDefined as p } from "lit-html/directives/if-defined.js";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { unsafeCSS as d, html as
|
|
2
|
-
import { property as
|
|
3
|
-
import {
|
|
1
|
+
import { unsafeCSS as d, html as l } from "lit";
|
|
2
|
+
import { property as u } from "lit/decorators.js";
|
|
3
|
+
import { EdElement as a } from "../EdElement.js";
|
|
4
4
|
const m = '@charset "UTF-8";:root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-button-group{display:flex;align-items:center}.ed-c-button-group ::slotted(ed-button){margin-inline-end:1rem}.ed-c-button-group ::slotted(ed-button:last-child){margin-inline-end:0}.ed-c-button-group--stacked{flex-direction:column;align-items:initial}.ed-c-button-group--stacked ::slotted(ed-button){margin-block-end:.5rem}.ed-c-button-group--stacked ::slotted(ed-button:last-child){margin-block-end:0}.ed-c-button-group--responsive ::slotted(ed-button){margin-block-end:.5rem;margin-inline-end:0}@media all and (min-width:48rem){.ed-c-button-group--responsive ::slotted(ed-button){margin-inline-end:1rem;margin-block-end:0}}@media all and (max-width:48rem){.ed-c-button-group--responsive{flex-direction:column;align-items:initial}}';
|
|
5
5
|
var c = Object.defineProperty, b = (o, t, r, p) => {
|
|
6
6
|
for (var e = void 0, n = o.length - 1, i; n >= 0; n--)
|
|
7
7
|
(i = o[n]) && (e = i(t, r, e) || e);
|
|
8
8
|
return e && c(t, r, e), e;
|
|
9
9
|
};
|
|
10
|
-
class s extends
|
|
10
|
+
class s extends a {
|
|
11
11
|
constructor() {
|
|
12
12
|
super(...arguments), this.behavior = void 0;
|
|
13
13
|
}
|
|
@@ -19,7 +19,7 @@ class s extends u {
|
|
|
19
19
|
"ed-c-button-group--stacked": this.behavior === "stacked",
|
|
20
20
|
"ed-c-button-group--responsive": this.behavior === "responsive"
|
|
21
21
|
});
|
|
22
|
-
return
|
|
22
|
+
return l`
|
|
23
23
|
<div class="${t}">
|
|
24
24
|
<slot></slot>
|
|
25
25
|
</div>
|
|
@@ -27,7 +27,7 @@ class s extends u {
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
b([
|
|
30
|
-
|
|
30
|
+
u()
|
|
31
31
|
], s.prototype, "behavior");
|
|
32
32
|
customElements.get("ed-button-group") === void 0 && customElements.define("ed-button-group", s);
|
|
33
33
|
export {
|
package/components/card/card.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as l, html as o } from "lit";
|
|
2
2
|
import { property as i } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as m } from "../EdElement.js";
|
|
4
4
|
const h = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-card{display:flex;flex-direction:column;height:100%;width:100%;border-width:var(--ed-theme-border-width-sm);border-style:solid;border-color:var(--ed-theme-color-border-subtle);border-radius:var(--ed-theme-border-radius-md);box-shadow:var(--ed-theme-box-shadow-md);background:var(--ed-theme-color-background-default)}.ed-c-card--bare{border:0;padding:0;box-shadow:none}.ed-c-card--align-center{text-align:center;align-items:center;justify-content:center}::slotted(img){width:100%}.ed-c-card__header{display:block;flex:none}.ed-c-card__body{display:block;padding:1rem;flex:1 0 auto}.ed-c-card--bare .ed-c-card__body{padding:0}.ed-c-card__footer{display:block;flex:none;padding:1rem}.ed-c-card--bare .ed-c-card__footer{padding:0}";
|
|
5
5
|
var b = Object.defineProperty, n = (r, d, s, f) => {
|
|
6
6
|
for (var e = void 0, t = r.length - 1, c; t >= 0; t--)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EdFormElement as l } from "../EdFormElement.js";
|
|
2
2
|
import { unsafeCSS as h, html as b } from "lit";
|
|
3
3
|
import { property as t, query as p } from "lit/decorators.js";
|
|
4
4
|
import { ifDefined as m } from "lit-html/directives/if-defined.js";
|
|
5
|
-
import {
|
|
5
|
+
import { nanoid as s } from "../index.browser.js";
|
|
6
6
|
import "../icon/icon.js";
|
|
7
7
|
const k = `@charset "UTF-8";:root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}ed-checkbox-field-item{display:contents}.ed-c-checkbox-field-item{display:flex;position:relative;margin:.75rem 0 0;padding:0}:host(:first-child) .ed-c-checkbox-field-item{margin-block-start:0}.ed-c-checkbox-field-item__label{font-family:var(--ed-theme-typography-body-default-font-family);font-weight:var(--ed-theme-typography-body-default-font-weight);font-size:var(--ed-theme-typography-body-default-font-size);line-height:var(--ed-theme-typography-body-default-line-height);letter-spacing:var(--ed-theme-typography-body-default-letter-spacing);text-transform:var(--ed-theme-typography-body-default-text-transform);position:relative;inset-block-start:1px;margin-inline-start:.5rem;flex:1}.ed-c-checkbox__input{display:block;margin:0;z-index:4;width:1.5rem;height:1.5rem;cursor:pointer;opacity:0}.ed-c-checkbox__input:disabled{cursor:not-allowed}.ed-c-checkbox__custom-check{position:absolute;inset-block-start:0;inset-inline-end:0;inset-block-end:0;inset-inline-start:0;width:1.5rem;height:1.5rem;flex-shrink:0;z-index:1}.ed-c-checkbox__custom-check:before{content:"";position:absolute;inset-block-start:0;inset-inline-end:0;inset-block-end:0;inset-inline-start:0;z-index:1;display:block;border:var(--ed-theme-border-width-sm) solid var(--ed-theme-form-color-border-default);background-color:var(--ed-theme-form-color-background-default);border-radius:var(--ed-theme-border-radius-sm)}.ed-c-checkbox__input:hover+.ed-c-checkbox__custom-check:before{border-color:var(--ed-theme-form-color-border-hover)}.ed-c-checkbox__input:disabled+.ed-c-checkbox__custom-check:before{border-color:var(--ed-theme-color-border-disabled);background-color:var(--ed-theme-color-background-disabled);cursor:not-allowed}.ed-c-checkbox__input:checked+.ed-c-checkbox__custom-check:before{background-color:var(--ed-theme-color-background-brand-knockout);border-color:transparent}.ed-c-checkbox__input:checked:hover+.ed-c-checkbox__custom-check:before{background-color:var(--ed-theme-color-background-brand-hover);border-color:transparent}.ed-c-checkbox__input:checked:disabled+.ed-c-checkbox__custom-check:before{background-color:var(--ed-theme-color-background-brand-disabled);border-color:transparent}.ed-c-checkbox__input:focus-visible+.ed-c-checkbox__custom-check:before{outline:var(--ed-theme-border-width-lg) solid var(--ed-theme-focus-ring-color-border-default);outline-offset:var(--ed-theme-offset-focus-ring, .25rem )}.ed-c-checkbox__custom-check ed-icon{--ed-icon-fill: var(--ed-theme-color-content-knockout);position:absolute;inset-block-start:.25rem;inset-inline-end:.25rem;display:block;background-repeat:no-repeat;opacity:0;z-index:2}.ed-c-checkbox__input:checked+.ed-c-checkbox__custom-check ed-icon{opacity:1}.ed-is-indeterminate .ed-c-checkbox__input:not(:checked):hover+.ed-c-checkbox__custom-check:before{background-color:var(--ed-theme-color-background-brand-hover);border-color:transparent}.ed-is-indeterminate .ed-c-checkbox__input:not(:checked):disabled+.ed-c-checkbox__custom-check:before{background-color:var(--ed-theme-color-background-brand-disabled);border-color:transparent}.ed-is-indeterminate .ed-c-checkbox__input:not(:checked)+.ed-c-checkbox__custom-check:before{background-color:var(--ed-theme-color-background-brand);border-color:transparent}.ed-is-indeterminate .ed-c-checkbox__input:not(:checked)+.ed-c-checkbox__custom-check:after{opacity:1;width:10px;height:4px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 1.52'%3E%3Cpath d='M9.24,1.52H.76A.76.76,0,0,1,.76,0H9.24a.76.76,0,0,1,0,1.52Z' fill='%23ffffff'/%3E%3C/svg%3E")}`;
|
|
8
8
|
var u = Object.defineProperty, o = (d, r, a, f) => {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EdElement as h } from "../EdElement.js";
|
|
2
2
|
import { unsafeCSS as m, html as l } from "lit";
|
|
3
3
|
import { property as t } from "lit/decorators.js";
|
|
4
|
-
import { ifDefined as
|
|
5
|
-
import {
|
|
4
|
+
import { ifDefined as n } from "lit-html/directives/if-defined.js";
|
|
5
|
+
import { nanoid as u } from "../index.browser.js";
|
|
6
6
|
import "../button/button.js";
|
|
7
7
|
const p = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-counter__label{font-family:var(--ed-theme-typography-label-default-font-family);font-weight:var(--ed-theme-typography-label-default-font-weight);font-size:var(--ed-theme-typography-label-default-font-size);line-height:var(--ed-theme-typography-label-default-line-height);letter-spacing:var(--ed-theme-typography-label-default-letter-spacing);text-transform:var(--ed-theme-typography-label-default-text-transform);display:block;margin-block-end:.5rem}.ed-c-counter.ed-is-error .ed-c-counter__label{color:var(--ed-theme-color-content-utility-error)}.ed-c-counter.ed-is-success .ed-c-counter__label{color:var(--ed-theme-color-content-utility-success)}.ed-c-counter__body{display:flex;max-width:14rem}.ed-c-counter__input{-webkit-appearance:none;width:100%;border-width:var(--ed-theme-border-width-sm);border-style:solid;border-color:var(--ed-theme-form-color-border-default);border-radius:var(--ed-theme-border-radius-sm);outline:none;padding:.8125rem .5rem;font-family:var(--ed-theme-typography-body-default-font-family);font-weight:var(--ed-theme-typography-body-default-font-weight);font-size:var(--ed-theme-typography-body-default-font-size);line-height:var(--ed-theme-typography-body-default-line-height);letter-spacing:var(--ed-theme-typography-body-default-letter-spacing);text-transform:var(--ed-theme-typography-body-default-text-transform);color:var(--ed-theme-form-color-content-default);background-color:var(--ed-theme-form-color-background-default);transition:border-color var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease),background-color var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease),box-shadow var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-c-counter__input:hover{border-color:var(--ed-theme-color-border-brand);background-color:var(--ed-theme-form-color-background-hover)}.ed-c-counter__input:focus:not(:disabled){border-color:var(--ed-theme-form-color-border-focus)}.ed-c-counter__input:not(:placeholder-shown):focus:not(:disabled){border-color:var(--ed-theme-form-color-border-focus);background-color:var(--ed-theme-form-color-background-hover)}.ed-is-error .ed-c-counter__input:not(:placeholder-shown):focus:not(:disabled){background-color:var(--ed-theme-color-background-utility-error)}.ed-is-success .ed-c-counter__input:not(:placeholder-shown):focus:not(:disabled){background-color:var(--ed-theme-color-background-utility-success)}.ed-c-counter__input:active:not(:disabled){border-color:var(--ed-theme-form-color-border)}.ed-c-counter__input:disabled{background-color:var(--ed-theme-color-background-subtle);border-color:var(--ed-theme-color-border-disabled);color:var(--ed-theme-color-content-disabled);cursor:not-allowed}.ed-c-counter__input:disabled~.ed-c-text-field__label,.ed-c-counter__input:disabled:hover~.ed-c-text-field__label,.ed-c-counter__input:disabled::placeholder{color:var(--ed-theme-color-content-disabled)}.ed-c-counter__input:focus-visible{outline:var(--ed-theme-border-width-lg) solid var(--ed-theme-focus-ring-color-border-default);outline-offset:var(--ed-theme-offset-focus-ring, .25rem )}.ed-c-counter__input::placeholder{font-family:var(--ed-theme-typography-body-sm-font-family);font-weight:var(--ed-theme-typography-body-sm-font-weight);font-size:var(--ed-theme-typography-body-sm-font-size);line-height:var(--ed-theme-typography-body-sm-line-height);letter-spacing:var(--ed-theme-typography-body-sm-letter-spacing);text-transform:var(--ed-theme-typography-body-sm-text-transform);color:var(--ed-theme-color-content-subtle);transition:color var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-is-error .ed-c-counter__input::placeholder{color:var(--ed-theme-color-content-utility-error)}.ed-is-error .ed-c-counter__input:hover::placeholder{color:var(--ed-theme-color-content-utility-error-hover)}.ed-is-error .ed-c-counter__input{color:var(--ed-theme-color-content-default);border-color:var(--ed-theme-color-border-utility-error);background-color:var(--ed-theme-color-background-utility-error)}.ed-is-error .ed-c-counter__input:hover,.ed-is-error .ed-c-counter__input:focus{background-color:var(--ed-theme-color-background-utility-error)}.ed-is-error .ed-c-counter__input:not(:focus){color:var(--ed-theme-color-content-default)}.ed-is-success .ed-c-counter__input{color:var(--ed-theme-color-content-default);border-color:var(--ed-theme-color-border-utility-success);background-color:var(--ed-theme-color-background-utility-success)}.ed-is-success .ed-c-counter__input:hover,.ed-is-success .ed-c-counter__input:focus{background-color:var(--ed-theme-color-background-utility-success)}.ed-c-counter__input{width:100%;padding:.5rem;text-align:center}.ed-c-counter__input+.ed-c-counter__button{margin-inline-start:.5rem}.ed-c-counter__button+.ed-c-counter__input{margin-inline-start:.5rem}";
|
|
8
8
|
var b = Object.defineProperty, o = (i, r, d, y) => {
|
|
9
|
-
for (var
|
|
10
|
-
(s = i[c]) && (
|
|
11
|
-
return
|
|
9
|
+
for (var a = void 0, c = i.length - 1, s; c >= 0; c--)
|
|
10
|
+
(s = i[c]) && (a = s(r, d, a) || a);
|
|
11
|
+
return a && b(r, d, a), a;
|
|
12
12
|
};
|
|
13
13
|
class e extends h {
|
|
14
14
|
constructor() {
|
|
@@ -68,18 +68,18 @@ class e extends h {
|
|
|
68
68
|
<input
|
|
69
69
|
class="ed-c-counter__input"
|
|
70
70
|
type="text"
|
|
71
|
-
min=${
|
|
72
|
-
max=${
|
|
71
|
+
min=${n(this.min)}
|
|
72
|
+
max=${n(this.max)}
|
|
73
73
|
id="${this.fieldId}"
|
|
74
74
|
pattern="[0-9]*"
|
|
75
|
-
name="${
|
|
75
|
+
name="${n(this.name)}"
|
|
76
76
|
.value="${this.count}"
|
|
77
77
|
@change=${(d) => this.onChange(d)}
|
|
78
78
|
?required="${this.required}"
|
|
79
79
|
?disabled="${this.disabled}"
|
|
80
80
|
?readonly=${this.readOnly}
|
|
81
|
-
aria-describedby="${
|
|
82
|
-
placeholder="${
|
|
81
|
+
aria-describedby="${n(this.ariaDescribedBy)}"
|
|
82
|
+
placeholder="${n(this.placeholder)}"
|
|
83
83
|
/>
|
|
84
84
|
<ed-button
|
|
85
85
|
class="ed-c-counter__button"
|
|
@@ -93,8 +93,8 @@ class e extends h {
|
|
|
93
93
|
</div>
|
|
94
94
|
${this.fieldNote && l`<ed-field-note
|
|
95
95
|
?inverted=${this.inverted}
|
|
96
|
-
id=${
|
|
97
|
-
iconName=${
|
|
96
|
+
id=${n(this.ariaDescribedBy)}
|
|
97
|
+
iconName=${n(this.iconName)}
|
|
98
98
|
?isSuccess=${this.isSuccess}
|
|
99
99
|
?isError=${this.isError}
|
|
100
100
|
>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as m, html as l } from "lit";
|
|
2
2
|
import { property as a } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as c } from "../EdElement.js";
|
|
4
4
|
const f = '@charset "UTF-8";:root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-feature{display:flex;flex-direction:column;align-items:stretch;color:var(--ed-theme-color-content-default);border-radius:var(--ed-theme-border-radius-md)}@media all and (min-width:48rem){.ed-c-feature{flex-direction:row}}.ed-c-feature--inverted{color:var(--ed-theme-color-content-knockout)}.ed-c-feature__body{margin-block-end:2rem}@media all and (min-width:48rem){.ed-c-feature__body{display:flex;flex-direction:column;flex:1;padding-inline-end:2rem;margin-block-end:0}}.ed-c-feature__media{width:100%}@media all and (min-width:48rem){.ed-c-feature__media{width:45%}}.ed-c-feature__image{display:block;width:100%}';
|
|
5
5
|
var u = Object.defineProperty, o = (d, t, n, h) => {
|
|
6
6
|
for (var e = void 0, i = d.length - 1, s; i >= 0; i--)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EdFormElement as w } from "../EdFormElement.js";
|
|
2
2
|
import { unsafeCSS as z, nothing as _, html as h } from "lit";
|
|
3
3
|
import { property as l, state as v, query as F } from "lit/decorators.js";
|
|
4
4
|
import { ifDefined as f } from "lit/directives/if-defined.js";
|
|
5
|
-
import {
|
|
5
|
+
import { nanoid as g } from "../index.browser.js";
|
|
6
6
|
import "../button/button.js";
|
|
7
7
|
import "../field-note/field-note.js";
|
|
8
8
|
import "../icon/icon.js";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { unsafeCSS as o, html as t } from "lit";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as r } from "../EdElement.js";
|
|
3
3
|
import "../layout-container/layout-container.js";
|
|
4
4
|
const s = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-footer{font-family:var(--ed-theme-typography-body-default-font-family);font-weight:var(--ed-theme-typography-body-default-font-weight);font-size:var(--ed-theme-typography-body-default-font-size);line-height:var(--ed-theme-typography-body-default-line-height);letter-spacing:var(--ed-theme-typography-body-default-letter-spacing);text-transform:var(--ed-theme-typography-body-default-text-transform);background:var(--ed-theme-color-background-knockout);color:var(--ed-theme-color-content-knockout)}";
|
|
5
|
-
class
|
|
5
|
+
class d extends r {
|
|
6
6
|
static get styles() {
|
|
7
7
|
return o(s);
|
|
8
8
|
}
|
|
@@ -23,7 +23,7 @@ class a extends r {
|
|
|
23
23
|
`;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
customElements.get("ed-footer") === void 0 && customElements.define("ed-footer",
|
|
26
|
+
customElements.get("ed-footer") === void 0 && customElements.define("ed-footer", d);
|
|
27
27
|
export {
|
|
28
|
-
|
|
28
|
+
d as EdFooter
|
|
29
29
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { unsafeCSS as s, html as t } from "lit";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as l } from "../EdElement.js";
|
|
3
3
|
const o = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-global-nav__list{display:flex;margin:0;padding:0;list-style:none}";
|
|
4
4
|
class a extends l {
|
|
5
5
|
static get styles() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { unsafeCSS as m, html as c } from "lit";
|
|
2
2
|
import { ifDefined as h } from "lit-html/directives/if-defined.js";
|
|
3
3
|
import { property as o, state as v } from "lit/decorators.js";
|
|
4
|
-
import {
|
|
4
|
+
import { EdElement as g } from "../EdElement.js";
|
|
5
5
|
const u = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-global-nav__link{font-family:var(--ed-theme-typography-label-sm-font-family);font-weight:var(--ed-theme-typography-label-sm-font-weight);font-size:var(--ed-theme-typography-label-sm-font-size);line-height:var(--ed-theme-typography-label-sm-line-height);letter-spacing:var(--ed-theme-typography-label-sm-letter-spacing);text-transform:var(--ed-theme-typography-label-sm-text-transform);display:flex;align-items:center;appearance:none;background:none;border:none;width:100%;padding:1rem 2rem;color:var(--ed-theme-color-content-knockout);text-decoration:none;transition:all var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease);cursor:pointer}.ed-c-global-nav__link:hover,.ed-c-global-nav__link:focus{background:var(--ed-theme-color-background-brand);color:var(--ed-theme-color-content-knockout)}.ed-c-global-nav__item.ed-is-active .ed-c-global-nav__link{background:var(--ed-theme-color-background-brand);color:var(--ed-theme-color-content-subtle)}@media all and (min-width:75rem){.ed-c-global-nav__link{padding:.75rem;color:var(--ed-theme-color-content-knockout)}}ed-icon{--ed-icon-height: .75rem;--ed-icon-width: .75rem;margin-inline-start:auto;transition:transform var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-c-global-nav__item.ed-is-active ed-icon{transform:rotate(-180deg)}@media all and (min-width:75rem){ed-icon{margin-inline-start:.5rem}}.ed-c-global-nav__item-panel{visibility:hidden;width:100%;height:0;overflow:hidden;background:transparent;opacity:0;transition:allvar(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease);z-index:-1}@media all and (min-width:75rem){.ed-c-global-nav__item-panel{position:absolute;inset-block-start:100%;inset-inline-start:0;height:auto;box-shadow:var(--ed-theme-box-shadow-md)}}.ed-c-global-nav__item.ed-is-active .ed-c-global-nav__item-panel{display:block;visibility:visible;height:auto;padding-block-start:2rem;padding-block-end:2rem;background:var(--ed-theme-color-background-default);opacity:1;z-index:1;transition:opacity var(--ed-theme-animation-fade-quick) var(--ed-theme-animation-ease)}.ed-c-global-nav__item--megamenu .ed-c-global-nav__item-panel-inner{max-width:70rem;padding-inline-end:2rem;padding-inline-start:2rem;margin:0 auto}";
|
|
6
6
|
var b = Object.defineProperty, n = (l, e, t, r) => {
|
|
7
7
|
for (var i = void 0, d = l.length - 1, s; d >= 0; d--)
|
package/components/grid/grid.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as g, html as o } from "lit";
|
|
2
2
|
import { property as a } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as s } from "../EdElement.js";
|
|
4
4
|
const c = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-grid{display:flex;flex-direction:column;flex-wrap:wrap;margin:-.75rem}.ed-c-grid--gap-none{margin:0}.ed-c-grid--gap-sm{margin:-.25rem}.ed-c-grid--gap-lg{margin:-1rem}.ed-c-grid--side-by-side{flex-direction:row}@media all and (min-width:48rem){.ed-c-grid--2up{flex-direction:row}}@media all and (min-width:23.4375rem){.ed-c-grid--2up.ed-c-grid--break-faster{flex-direction:row}}@media all and (min-width:48rem){.ed-c-grid--2up.ed-c-grid--break-slower{flex-direction:column}}@media all and (min-width:87.5rem){.ed-c-grid--2up.ed-c-grid--break-slower{flex-direction:row}}@media all and (min-width:48rem){.ed-c-grid--3up{flex-direction:row}}@media all and (min-width:60rem){.ed-c-grid--1-3up{flex-direction:row}}@media all and (min-width:48rem){.ed-c-grid--1-3up.ed-c-grid--break-faster{flex-direction:row}}@media all and (min-width:60rem){.ed-c-grid--1-3up.ed-c-grid--break-slower{flex-direction:column}}@media all and (min-width:75rem){.ed-c-grid--1-3up.ed-c-grid--break-slower{flex-direction:row}}@media all and (min-width:23.4375rem){.ed-c-grid--1-2-4up{flex-direction:row}}@media all and (min-width:48rem){.ed-c-grid--1-4up{flex-direction:row}}@media all and (min-width:23.4375rem){.ed-c-grid--4up{flex-direction:row}}.ed-c-grid--2-4-6up{flex-direction:row}::slotted(ed-grid-item){display:block;padding:.75rem}.ed-c-grid--gap-none>::slotted(ed-grid-item){padding:0}.ed-c-grid--gap-sm>::slotted(ed-grid-item){padding:.25rem}.ed-c-grid--gap-lg>::slotted(ed-grid-item){padding:1rem}.ed-c-grid--side-by-side>::slotted(ed-grid-item){width:50%}@media all and (min-width:48rem){.ed-c-grid--2up>::slotted(ed-grid-item){width:50%}}@media all and (min-width:23.4375rem){.ed-c-grid--2up.ed-c-grid--break-faster>::slotted(ed-grid-item){width:50%}}@media all and (min-width:48rem){.ed-c-grid--2up.ed-c-grid--break-slower>::slotted(ed-grid-item){width:100%}}@media all and (min-width:87.5rem){.ed-c-grid--2up.ed-c-grid--break-slower>::slotted(ed-grid-item){width:50%}}@media all and (min-width:48rem){.ed-c-grid--3up>::slotted(ed-grid-item){width:50%}}@media all and (min-width:60rem){.ed-c-grid--3up>::slotted(ed-grid-item){width:33.3333%}}@media all and (min-width:60rem){.ed-c-grid--1-3up>::slotted(ed-grid-item){width:33.3333%}}@media all and (min-width:48rem){.ed-c-grid--1-3up.ed-c-grid--break-faster>::slotted(ed-grid-item){width:33.33%}}@media all and (min-width:60rem){.ed-c-grid--1-3up.ed-c-grid--break-slower>::slotted(ed-grid-item){width:100%}}@media all and (min-width:75rem){.ed-c-grid--1-3up.ed-c-grid--break-slower>::slotted(ed-grid-item){width:33.33%}}@media all and (min-width:23.4375rem){.ed-c-grid--1-2-4up>::slotted(ed-grid-item){width:50%}}@media all and (min-width:60rem){.ed-c-grid--1-2-4up>::slotted(ed-grid-item){width:25%}}@media all and (min-width:48rem){.ed-c-grid--1-4up>::slotted(ed-grid-item){width:25%}}@media all and (min-width:23.4375rem){.ed-c-grid--4up>::slotted(ed-grid-item){width:50%}}@media all and (min-width:48rem){.ed-c-grid--4up>::slotted(ed-grid-item){width:33.3333%}}@media all and (min-width:60rem){.ed-c-grid--4up>::slotted(ed-grid-item){width:25%}}.ed-c-grid--2-4-6up>::slotted(ed-grid-item){width:50%}@media all and (min-width:60rem){.ed-c-grid--2-4-6up>::slotted(ed-grid-item){width:25%}}@media all and (min-width:75rem){.ed-c-grid--2-4-6up>::slotted(ed-grid-item){width:16.66%}}";
|
|
5
5
|
var p = Object.defineProperty, m = (r, e, l, w) => {
|
|
6
6
|
for (var d = void 0, t = r.length - 1, n; t >= 0; t--)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { unsafeCSS as t, html as s } from "lit";
|
|
2
|
-
import {
|
|
2
|
+
import { EdElement as i } from "../EdElement.js";
|
|
3
3
|
const o = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-grid__item{height:100%}";
|
|
4
4
|
class r extends i {
|
|
5
5
|
static get styles() {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as n, html as s } from "lit";
|
|
2
2
|
import { state as l } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as c } from "../EdElement.js";
|
|
4
4
|
const h = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-header{background:var(--ed-theme-color-background-knockout);color:var(--ed-theme-color-content-knockout);position:relative;z-index:3}.ed-c-header__top{position:relative;inset-block-start:0;width:100%;z-index:3}.ed-c-header__top-inner{width:100%}.ed-c-header__middle{position:relative;width:100%;box-shadow:var(--ed-theme-box-shadow-md)}.ed-c-header__middle-inner{display:flex;align-items:center;width:100%}";
|
|
5
5
|
var m = Object.defineProperty, v = (d, t, i, p) => {
|
|
6
6
|
for (var e = void 0, o = d.length - 1, r; o >= 0; o--)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as y, html as a } from "lit";
|
|
2
2
|
import { property as n } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as g } from "../EdElement.js";
|
|
4
4
|
const p = '@charset "UTF-8";:root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6,.ed-c-heading{margin:0}.ed-c-heading--display-xl{font-family:var(--ed-theme-typography-display-xl-mobile-font-family);font-weight:var(--ed-theme-typography-display-xl-mobile-font-weight);font-size:var(--ed-theme-typography-display-xl-mobile-font-size);line-height:var(--ed-theme-typography-display-xl-mobile-line-height);letter-spacing:var(--ed-theme-typography-display-xl-mobile-letter-spacing);text-transform:var(--ed-theme-typography-display-xl-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--display-xl{font-family:var(--ed-theme-typography-display-xl-tablet-font-family);font-weight:var(--ed-theme-typography-display-xl-tablet-font-weight);font-size:var(--ed-theme-typography-display-xl-tablet-font-size);line-height:var(--ed-theme-typography-display-xl-tablet-line-height);letter-spacing:var(--ed-theme-typography-display-xl-tablet-letter-spacing);text-transform:var(--ed-theme-typography-display-xl-tablet-text-transform)}}@media all and (min-width:75rem){.ed-c-heading--display-xl{font-family:var(--ed-theme-typography-display-xl-font-family);font-weight:var(--ed-theme-typography-display-xl-font-weight);font-size:var(--ed-theme-typography-display-xl-font-size);line-height:var(--ed-theme-typography-display-xl-line-height);letter-spacing:var(--ed-theme-typography-display-xl-letter-spacing);text-transform:var(--ed-theme-typography-display-xl-text-transform)}}.ed-c-heading--display-lg{font-family:var(--ed-theme-typography-display-lg-mobile-font-family);font-weight:var(--ed-theme-typography-display-lg-mobile-font-weight);font-size:var(--ed-theme-typography-display-lg-mobile-font-size);line-height:var(--ed-theme-typography-display-lg-mobile-line-height);letter-spacing:var(--ed-theme-typography-display-lg-mobile-letter-spacing);text-transform:var(--ed-theme-typography-display-lg-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--display-lg{font-family:var(--ed-theme-typography-display-lg-font-family);font-weight:var(--ed-theme-typography-display-lg-font-weight);font-size:var(--ed-theme-typography-display-lg-font-size);line-height:var(--ed-theme-typography-display-lg-line-height);letter-spacing:var(--ed-theme-typography-display-lg-letter-spacing);text-transform:var(--ed-theme-typography-display-lg-text-transform)}}.ed-c-heading--display-default{font-family:var(--ed-theme-typography-display-default-mobile-font-family);font-weight:var(--ed-theme-typography-display-default-mobile-font-weight);font-size:var(--ed-theme-typography-display-default-mobile-font-size);line-height:var(--ed-theme-typography-display-default-mobile-line-height);letter-spacing:var(--ed-theme-typography-display-default-mobile-letter-spacing);text-transform:var(--ed-theme-typography-display-default-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--display-default{font-family:var(--ed-theme-typography-display-default-font-family);font-weight:var(--ed-theme-typography-display-default-font-weight);font-size:var(--ed-theme-typography-display-default-font-size);line-height:var(--ed-theme-typography-display-default-line-height);letter-spacing:var(--ed-theme-typography-display-default-letter-spacing);text-transform:var(--ed-theme-typography-display-default-text-transform)}}.ed-c-heading--headline-lg{font-family:var(--ed-theme-typography-headline-lg-mobile-font-family);font-weight:var(--ed-theme-typography-headline-lg-mobile-font-weight);font-size:var(--ed-theme-typography-headline-lg-mobile-font-size);line-height:var(--ed-theme-typography-headline-lg-mobile-line-height);letter-spacing:var(--ed-theme-typography-headline-lg-mobile-letter-spacing);text-transform:var(--ed-theme-typography-headline-lg-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--headline-lg{font-family:var(--ed-theme-typography-headline-lg-font-family);font-weight:var(--ed-theme-typography-headline-lg-font-weight);font-size:var(--ed-theme-typography-headline-lg-font-size);line-height:var(--ed-theme-typography-headline-lg-line-height);letter-spacing:var(--ed-theme-typography-headline-lg-letter-spacing);text-transform:var(--ed-theme-typography-headline-lg-text-transform)}}.ed-c-heading--headline-default{font-family:var(--ed-theme-typography-headline-default-mobile-font-family);font-weight:var(--ed-theme-typography-headline-default-mobile-font-weight);font-size:var(--ed-theme-typography-headline-default-mobile-font-size);line-height:var(--ed-theme-typography-headline-default-mobile-line-height);letter-spacing:var(--ed-theme-typography-headline-default-mobile-letter-spacing);text-transform:var(--ed-theme-typography-headline-default-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--headline-default{font-family:var(--ed-theme-typography-headline-default-font-family);font-weight:var(--ed-theme-typography-headline-default-font-weight);font-size:var(--ed-theme-typography-headline-default-font-size);line-height:var(--ed-theme-typography-headline-default-line-height);letter-spacing:var(--ed-theme-typography-headline-default-letter-spacing);text-transform:var(--ed-theme-typography-headline-default-text-transform)}}.ed-c-heading--headline-sm{font-family:var(--ed-theme-typography-headline-sm-mobile-font-family);font-weight:var(--ed-theme-typography-headline-sm-mobile-font-weight);font-size:var(--ed-theme-typography-headline-sm-mobile-font-size);line-height:var(--ed-theme-typography-headline-sm-mobile-line-height);letter-spacing:var(--ed-theme-typography-headline-sm-mobile-letter-spacing);text-transform:var(--ed-theme-typography-headline-sm-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--headline-sm{font-family:var(--ed-theme-typography-headline-sm-font-family);font-weight:var(--ed-theme-typography-headline-sm-font-weight);font-size:var(--ed-theme-typography-headline-sm-font-size);line-height:var(--ed-theme-typography-headline-sm-line-height);letter-spacing:var(--ed-theme-typography-headline-sm-letter-spacing);text-transform:var(--ed-theme-typography-headline-sm-text-transform)}}.ed-c-heading--title-lg{font-family:var(--ed-theme-typography-title-lg-mobile-font-family);font-weight:var(--ed-theme-typography-title-lg-mobile-font-weight);font-size:var(--ed-theme-typography-title-lg-mobile-font-size);line-height:var(--ed-theme-typography-title-lg-mobile-line-height);letter-spacing:var(--ed-theme-typography-title-lg-mobile-letter-spacing);text-transform:var(--ed-theme-typography-title-lg-mobile-text-transform)}@media all and (min-width:48rem){.ed-c-heading--title-lg{font-family:var(--ed-theme-typography-title-lg-font-family);font-weight:var(--ed-theme-typography-title-lg-font-weight);font-size:var(--ed-theme-typography-title-lg-font-size);line-height:var(--ed-theme-typography-title-lg-line-height);letter-spacing:var(--ed-theme-typography-title-lg-letter-spacing);text-transform:var(--ed-theme-typography-title-lg-text-transform)}}.ed-c-heading--title-default{font-family:var(--ed-theme-typography-title-default-font-family);font-weight:var(--ed-theme-typography-title-default-font-weight);font-size:var(--ed-theme-typography-title-default-font-size);line-height:var(--ed-theme-typography-title-default-line-height);letter-spacing:var(--ed-theme-typography-title-default-letter-spacing);text-transform:var(--ed-theme-typography-title-default-text-transform)}.ed-c-heading--title-sm{font-family:var(--ed-theme-typography-title-sm-font-family);font-weight:var(--ed-theme-typography-title-sm-font-weight);font-size:var(--ed-theme-typography-title-sm-font-size);line-height:var(--ed-theme-typography-title-sm-line-height);letter-spacing:var(--ed-theme-typography-title-sm-letter-spacing);text-transform:var(--ed-theme-typography-title-sm-text-transform)}.ed-c-heading--label-lg{font-family:var(--ed-theme-typography-label-lg-font-family);font-weight:var(--ed-theme-typography-label-lg-font-weight);font-size:var(--ed-theme-typography-label-lg-font-size);line-height:var(--ed-theme-typography-label-lg-line-height);letter-spacing:var(--ed-theme-typography-label-lg-letter-spacing);text-transform:var(--ed-theme-typography-label-lg-text-transform)}.ed-c-heading--label-default{font-family:var(--ed-theme-typography-label-default-font-family);font-weight:var(--ed-theme-typography-label-default-font-weight);font-size:var(--ed-theme-typography-label-default-font-size);line-height:var(--ed-theme-typography-label-default-line-height);letter-spacing:var(--ed-theme-typography-label-default-letter-spacing);text-transform:var(--ed-theme-typography-label-default-text-transform)}.ed-c-heading--label-sm{font-family:var(--ed-theme-typography-label-sm-font-family);font-weight:var(--ed-theme-typography-label-sm-font-weight);font-size:var(--ed-theme-typography-label-sm-font-size);line-height:var(--ed-theme-typography-label-sm-line-height);letter-spacing:var(--ed-theme-typography-label-sm-letter-spacing);text-transform:var(--ed-theme-typography-label-sm-text-transform)}.ed-c-heading--body-lg{font-family:var(--ed-theme-typography-body-lg-font-family);font-weight:var(--ed-theme-typography-body-lg-font-weight);font-size:var(--ed-theme-typography-body-lg-font-size);line-height:var(--ed-theme-typography-body-lg-line-height);letter-spacing:var(--ed-theme-typography-body-lg-letter-spacing);text-transform:var(--ed-theme-typography-body-lg-text-transform)}.ed-c-heading--body-default{font-family:var(--ed-theme-typography-body-default-font-family);font-weight:var(--ed-theme-typography-body-default-font-weight);font-size:var(--ed-theme-typography-body-default-font-size);line-height:var(--ed-theme-typography-body-default-line-height);letter-spacing:var(--ed-theme-typography-body-default-letter-spacing);text-transform:var(--ed-theme-typography-body-default-text-transform)}.ed-c-heading--body-sm{font-family:var(--ed-theme-typography-body-sm-font-family);font-weight:var(--ed-theme-typography-body-sm-font-weight);font-size:var(--ed-theme-typography-body-sm-font-size);line-height:var(--ed-theme-typography-body-sm-line-height);letter-spacing:var(--ed-theme-typography-body-sm-letter-spacing);text-transform:var(--ed-theme-typography-body-sm-text-transform)}.ed-c-heading--meta-default{font-family:var(--ed-theme-typography-meta-default-font-family);font-weight:var(--ed-theme-typography-meta-default-font-weight);font-size:var(--ed-theme-typography-meta-default-font-size);line-height:var(--ed-theme-typography-meta-default-line-height);letter-spacing:var(--ed-theme-typography-meta-default-letter-spacing);text-transform:var(--ed-theme-typography-meta-default-text-transform)}.ed-c-heading--meta-sm{font-family:var(--ed-theme-typography-meta-sm-font-family);font-weight:var(--ed-theme-typography-meta-sm-font-weight);font-size:var(--ed-theme-typography-meta-sm-font-size);line-height:var(--ed-theme-typography-meta-sm-line-height);letter-spacing:var(--ed-theme-typography-meta-sm-letter-spacing);text-transform:var(--ed-theme-typography-meta-sm-text-transform)}';
|
|
5
5
|
var m = Object.defineProperty, o = (i, e, r, s) => {
|
|
6
6
|
for (var t = void 0, h = i.length - 1, d; h >= 0; h--)
|
package/components/hero/hero.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as l, html as m } from "lit";
|
|
2
2
|
import { property as d } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as c } from "../EdElement.js";
|
|
4
4
|
const h = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-hero{position:relative;margin-block-end:2rem}@media all and (min-width:48rem){.ed-c-hero{height:40vh;margin-block-end:0}}.ed-c-hero__image{width:100%;height:100%}@media all and (min-width:48rem){.ed-c-hero__image{position:absolute;inset-block-start:0;inset-inline-start:0;object-fit:cover}}.ed-c-hero__body{display:flex;flex-direction:column;padding-block-start:1rem}@media all and (min-width:48rem){.ed-c-hero__body{position:absolute;align-items:flex-start;justify-content:flex-end;height:100%;padding-block-start:2rem;padding-block-end:2rem}}";
|
|
5
5
|
var g = Object.defineProperty, a = (o, t, s, p) => {
|
|
6
6
|
for (var e = void 0, i = o.length - 1, n; i >= 0; i--)
|
package/components/hr/hr.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as n, html as i } from "lit";
|
|
2
2
|
import { property as a } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as m } from "../EdElement.js";
|
|
4
4
|
const c = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-hr{border-block-start-width:var(--ed-theme-border-width-sm);background:var(--ed-theme-color-content-subtle)}.ed-c-hr--thick{border-block-start-width:var(--ed-theme-border-width-lg)}";
|
|
5
5
|
var l = Object.defineProperty, b = (r, t, s, f) => {
|
|
6
6
|
for (var e = void 0, o = r.length - 1, d; o >= 0; o--)
|
package/components/icon/icon.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as a, html as h } from "lit";
|
|
2
2
|
import { property as i } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as r } from "../EdElement.js";
|
|
4
4
|
const p = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-icon{display:block;fill:var(--ed-icon-fill, currentColor);height:var(--ed-icon-height, 1rem );width:var(--ed-icon-width, 1rem )}", m = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3csvg%20xmlns='http://www.w3.org/2000/svg'%3e%3csymbol%20id='add'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M24%2013.7143H13.7143V24H10.2857V13.7143H0V10.2857H10.2857V0H13.7143V10.2857H24V13.7143Z'/%3e%3c/symbol%3e%3csymbol%20id='arrow-back'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20d='M24%2010.5H5.745L14.13%202.115L12%200L0%2012L12%2024L14.115%2021.885L5.745%2013.5H24V10.5Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/symbol%3e%3csymbol%20id='arrow-forward'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20d='M12%200L9.885%202.115L18.255%2010.5H0V13.5H18.255L9.885%2021.885L12%2024L24%2012L12%200Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/symbol%3e%3csymbol%20id='arrow-up'%20viewBox='0%200%2032%2032'%3e%3ctitle%3earrow-up%3c/title%3e%3cpath%20d='M27.414%2012.586l-10-10c-0.781-0.781-2.047-0.781-2.828%200l-10%2010c-0.781%200.781-0.781%202.047%200%202.828s2.047%200.781%202.828%200l6.586-6.586v19.172c0%201.105%200.895%202%202%202s2-0.895%202-2v-19.172l6.586%206.586c0.39%200.39%200.902%200.586%201.414%200.586s1.024-0.195%201.414-0.586c0.781-0.781%200.781-2.047%200-2.828z'/%3e%3c/symbol%3e%3csymbol%20id='bold-arrow-up'%20viewBox='0%200%2032%2032'%3e%3ctitle%3ebold-arrow-up%3c/title%3e%3cpath%20d='M16%201l-15%2015h9v16h12v-16h9z'/%3e%3c/symbol%3e%3csymbol%20id='calendar'%20viewBox='0%200%2032%2032'%3e%3ctitle%3ecalendar%3c/title%3e%3cpath%20d='M10%2012h4v4h-4zM16%2012h4v4h-4zM22%2012h4v4h-4zM4%2024h4v4h-4zM10%2024h4v4h-4zM16%2024h4v4h-4zM10%2018h4v4h-4zM16%2018h4v4h-4zM22%2018h4v4h-4zM4%2018h4v4h-4zM26%200v2h-4v-2h-14v2h-4v-2h-4v32h30v-32h-4zM28%2030h-26v-22h26v22z'/%3e%3c/symbol%3e%3csymbol%20id='check'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M7.62706%2017.4355L1.93746%2011.7459L0%2013.6697L7.62706%2021.2968L24%204.92382L22.0762%203L7.62706%2017.4355Z'/%3e%3c/symbol%3e%3csymbol%20id='close'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20d='M24%202.41714L21.5829%200L12%209.58286L2.41714%200L0%202.41714L9.58286%2012L0%2021.5829L2.41714%2024L12%2014.4171L21.5829%2024L24%2021.5829L14.4171%2012L24%202.41714Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/symbol%3e%3csymbol%20id='delta-down'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M1.61487%205H22.3851C23.822%205%2024.5405%206.73556%2023.5233%207.75269L13.1422%2018.1419C12.5126%2018.7715%2011.4874%2018.7715%2010.8578%2018.1419L0.476659%207.75269C-0.540462%206.73556%200.177981%205%201.61487%205Z'/%3e%3c/symbol%3e%3csymbol%20id='delta-up'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M22.3828%2018.6107H1.61718C0.179299%2018.6107%20-0.540772%2016.8722%200.475946%2015.8555L10.8587%205.47269C11.489%204.84244%2012.511%204.84244%2013.1412%205.47269L23.524%2015.8555C24.5408%2016.8722%2023.8207%2018.6107%2022.3828%2018.6107Z'/%3e%3c/symbol%3e%3csymbol%20id='download'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2%2024H21.7647V21.1765H2V24ZM21.7647%208.47059H16.1176V0H7.64706V8.47059H2L11.8824%2018.3529L21.7647%208.47059Z'/%3e%3c/symbol%3e%3csymbol%20id='edit'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2019.0007V24H4.99931L19.7439%209.25538L14.7446%204.25608L0%2019.0007ZM23.6101%205.38925C24.13%204.86932%2024.13%204.02944%2023.6101%203.50951L20.4905%200.389946C19.9706%20-0.129982%2019.1307%20-0.129982%2018.6107%200.389946L16.1711%202.82961L21.1704%207.82891L23.6101%205.38925V5.38925Z'/%3e%3c/symbol%3e%3csymbol%20id='ellipsis'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M15.4839%2012.4839C15.4839%2014.4097%2013.9258%2015.9677%2012%2015.9677C10.0742%2015.9677%208.51613%2014.4097%208.51613%2012.4839C8.51613%2010.5581%2010.0742%209%2012%209C13.9258%209%2015.4839%2010.5581%2015.4839%2012.4839ZM20.5161%209C18.5903%209%2017.0323%2010.5581%2017.0323%2012.4839C17.0323%2014.4097%2018.5903%2015.9677%2020.5161%2015.9677C22.4419%2015.9677%2024%2014.4097%2024%2012.4839C24%2010.5581%2022.4419%209%2020.5161%209ZM3.48387%209C1.55806%209%200%2010.5581%200%2012.4839C0%2014.4097%201.55806%2015.9677%203.48387%2015.9677C5.40968%2015.9677%206.96774%2014.4097%206.96774%2012.4839C6.96774%2010.5581%205.40968%209%203.48387%209Z'/%3e%3c/symbol%3e%3csymbol%20id='email'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.6%202H2.4C1.08%202%200.012%203.08%200.012%204.4L0%2018.8C0%2020.12%201.08%2021.2%202.4%2021.2H21.6C22.92%2021.2%2024%2020.12%2024%2018.8V4.4C24%203.08%2022.92%202%2021.6%202ZM21.6%206.8L12%2012.8L2.4%206.8V4.4L12%2010.4L21.6%204.4V6.8Z'/%3e%3c/symbol%3e%3csymbol%20id='error'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M10.8%2015.6H13.2V18H10.8V15.6ZM10.8%206H13.2V13.2H10.8V6ZM11.988%200C5.364%200%200%205.376%200%2012C0%2018.624%205.364%2024%2011.988%2024C18.624%2024%2024%2018.624%2024%2012C24%205.376%2018.624%200%2011.988%200ZM12%2021.6C6.696%2021.6%202.4%2017.304%202.4%2012C2.4%206.696%206.696%202.4%2012%202.4C17.304%202.4%2021.6%206.696%2021.6%2012C21.6%2017.304%2017.304%2021.6%2012%2021.6Z'/%3e%3c/symbol%3e%3csymbol%20id='facebook'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.5847%2013.5L18.2513%209.15656H14.0836V6.33797C14.0836%205.14969%2014.6658%203.99141%2016.5324%203.99141H18.4271V0.293438C18.4271%200.293438%2016.7077%200%2015.0638%200C11.6316%200%209.38815%202.08031%209.38815%205.84625V9.15656H5.573V13.5H9.38815V24H14.0836V13.5H17.5847Z'/%3e%3c/symbol%3e%3csymbol%20id='info'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%200C5.376%200%200%205.376%200%2012C0%2018.624%205.376%2024%2012%2024C18.624%2024%2024%2018.624%2024%2012C24%205.376%2018.624%200%2012%200ZM13.2%2018H10.8V10.8H13.2V18ZM13.2%208.4H10.8V6H13.2V8.4Z'/%3e%3c/symbol%3e%3csymbol%20id='instagram'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20d='M11.9998%200C13.6248%200%2014.6951%200.004%2015.2106%200.012C15.7261%200.02%2016.3043%200.0395%2016.9453%200.0705C17.5863%200.1015%2018.1371%200.164%2018.5976%200.258C19.0581%200.352%2019.4761%200.477%2019.8516%200.633C20.2581%200.7895%2020.6331%200.977%2020.9766%201.1955C21.3201%201.414%2021.6561%201.6875%2021.9846%202.016C22.3131%202.3445%2022.5866%202.6805%2022.8051%203.024C23.0236%203.3675%2023.2111%203.7425%2023.3676%204.149C23.5241%204.524%2023.6491%204.942%2023.7426%205.403C23.8361%205.864%2023.8986%206.41475%2023.9301%207.05525C23.9616%207.69575%2023.9811%208.274%2023.9886%208.79C23.9961%209.306%2024.0001%2010.3762%2024.0006%2012.0007C24.0011%2013.6252%2023.9971%2014.6955%2023.9886%2015.2115C23.9801%2015.7275%2023.9606%2016.3057%2023.9301%2016.9462C23.8996%2017.5868%2023.8371%2018.1375%2023.7426%2018.5985C23.6481%2019.0595%2023.5231%2019.4775%2023.3676%2019.8525C23.2111%2020.259%2023.0236%2020.634%2022.8051%2020.9775C22.5866%2021.321%2022.3131%2021.657%2021.9846%2021.9855C21.6561%2022.314%2021.3201%2022.5875%2020.9766%2022.806C20.6331%2023.0245%2020.2581%2023.212%2019.8516%2023.3685C19.4766%2023.525%2019.0586%2023.65%2018.5976%2023.7435C18.1366%2023.837%2017.5858%2023.8995%2016.9453%2023.931C16.3048%2023.9625%2015.7266%2023.982%2015.2106%2023.9895C14.6946%2023.997%2013.6243%2024.001%2011.9998%2024.0015C10.3753%2024.002%209.30507%2023.998%208.78907%2023.9895C8.27307%2023.981%207.69482%2023.9615%207.05432%2023.931C6.41382%2023.9005%205.86307%2023.838%205.40207%2023.7435C4.94107%2023.649%204.52307%2023.524%204.14807%2023.3685C3.74157%2023.212%203.36657%2023.0245%203.02307%2022.806C2.67957%2022.5875%202.34356%2022.314%202.01507%2021.9855C1.68657%2021.657%201.41307%2021.321%201.19457%2020.9775C0.976065%2020.634%200.788565%2020.259%200.632065%2019.8525C0.475565%2019.4775%200.350565%2019.0595%200.257065%2018.5985C0.163565%2018.1375%200.101065%2017.5868%200.0695651%2016.9462C0.0380651%2016.3057%200.0185651%2015.7275%200.0110651%2015.2115C0.0035651%2014.6955%20-0.000434896%2013.6252%20-0.000934896%2012.0007C-0.0014349%2010.3762%200.0025651%209.306%200.0110651%208.79C0.0195651%208.274%200.0390651%207.69575%200.0695651%207.05525C0.100065%206.41475%200.162565%205.864%200.257065%205.403C0.351565%204.942%200.476565%204.524%200.632065%204.149C0.788565%203.7425%200.976065%203.3675%201.19457%203.024C1.41307%202.6805%201.68657%202.3445%202.01507%202.016C2.34356%201.6875%202.67957%201.414%203.02307%201.1955C3.36657%200.977%203.74157%200.7895%204.14807%200.633C4.52307%200.4765%204.94107%200.3515%205.40207%200.258C5.86307%200.1645%206.41382%200.102%207.05432%200.0705C7.69482%200.039%208.27307%200.0195%208.78907%200.012C9.30507%200.0045%2010.3753%200.0005%2011.9998%200V0ZM11.9998%202.15625C10.3903%202.15625%209.33957%202.16025%208.84756%202.16825C8.35557%202.17625%207.78907%202.19575%207.14807%202.22675C6.57007%202.25825%206.10907%202.31675%205.76507%202.40225C5.42106%202.48775%205.13981%202.56975%204.92132%202.64825C4.63981%202.75775%204.39382%202.88275%204.18332%203.02325C3.97282%203.16375%203.75807%203.33575%203.53907%203.53925C3.33607%203.75825%203.16407%203.973%203.02307%204.1835C2.88207%204.394%202.75707%204.64%202.64807%204.9215C2.57007%205.1405%202.48807%205.42175%202.40207%205.76525C2.31607%206.10875%202.25757%206.56975%202.22657%207.14825C2.19507%207.78875%202.17557%208.35525%202.16807%208.84775C2.16057%209.34025%202.15656%2010.391%202.15606%2012C2.15557%2013.609%202.15956%2014.6597%202.16807%2015.1522C2.17657%2015.6447%202.19607%2016.2113%202.22657%2016.8517C2.25807%2017.4298%202.31657%2017.8907%202.40207%2018.2347C2.48757%2018.5788%202.56957%2018.86%202.64807%2019.0785C2.75757%2019.36%202.88257%2019.606%203.02307%2019.8165C3.16357%2020.027%203.33557%2020.2418%203.53907%2020.4608C3.75807%2020.6637%203.97282%2020.8358%204.18332%2020.9767C4.39382%2021.1178%204.63981%2021.2428%204.92132%2021.3517C5.14032%2021.4298%205.42157%2021.5118%205.76507%2021.5978C6.10856%2021.6838%206.56957%2021.7423%207.14807%2021.7733C7.78857%2021.8048%208.35507%2021.8242%208.84756%2021.8317C9.34007%2021.8392%2010.3908%2021.8433%2011.9998%2021.8438C13.6088%2021.8442%2014.6596%2021.8403%2015.1521%2021.8317C15.6446%2021.8232%2016.2111%2021.8038%2016.8516%2021.7733C17.4296%2021.7418%2017.8906%2021.6833%2018.2346%2021.5978C18.5786%2021.5123%2018.8598%2021.4303%2019.0783%2021.3517C19.3598%2021.2423%2019.6058%2021.1173%2019.8163%2020.9767C20.0268%2020.8363%2020.2416%2020.6642%2020.4606%2020.4608C20.6636%2020.2418%2020.8356%2020.027%2020.9766%2019.8165C21.1176%2019.606%2021.2426%2019.36%2021.3516%2019.0785C21.4296%2018.8595%2021.5116%2018.5782%2021.5976%2018.2347C21.6836%2017.8913%2021.7421%2017.4303%2021.7731%2016.8517C21.8046%2016.2113%2021.8241%2015.6447%2021.8316%2015.1522C21.8391%2014.6597%2021.8431%2013.609%2021.8436%2012C21.8441%2010.391%2021.8401%209.34025%2021.8316%208.84775C21.8231%208.35525%2021.8036%207.78875%2021.7731%207.14825C21.7416%206.57025%2021.6831%206.10925%2021.5976%205.76525C21.5121%205.42125%2021.4301%205.14%2021.3516%204.9215C21.2421%204.64%2021.1171%204.394%2020.9766%204.1835C20.8361%203.973%2020.6641%203.75825%2020.4606%203.53925C20.2416%203.33625%2020.0268%203.16425%2019.8163%203.02325C19.6058%202.88225%2019.3598%202.75725%2019.0783%202.64825C18.8593%202.57025%2018.5781%202.48825%2018.2346%202.40225C17.8911%202.31625%2017.4301%202.25775%2016.8516%202.22675C16.2111%202.19525%2015.6446%202.17575%2015.1521%202.16825C14.6596%202.16075%2013.6088%202.15675%2011.9998%202.15625ZM11.9998%205.83575C12.8438%205.83575%2013.6408%205.99975%2014.3908%206.32775C15.1408%206.64025%2015.7971%207.07775%2016.3596%207.64025C16.9221%208.20275%2017.3596%208.859%2017.6721%209.609C18.0001%2010.359%2018.1641%2011.156%2018.1641%2012C18.1641%2012.844%2018.0001%2013.641%2017.6721%2014.391C17.3596%2015.141%2016.9221%2015.7972%2016.3596%2016.3597C15.7971%2016.9222%2015.1408%2017.3598%2014.3908%2017.6722C13.6408%2018.0002%2012.8438%2018.1642%2011.9998%2018.1642C11.1558%2018.1642%2010.3588%2018.0002%209.60882%2017.6722C8.85882%2017.3598%208.20257%2016.9222%207.64007%2016.3597C7.07757%2015.7972%206.64007%2015.141%206.32757%2014.391C5.99957%2013.641%205.83557%2012.844%205.83557%2012C5.83557%2011.156%205.99957%2010.359%206.32757%209.609C6.64007%208.859%207.07757%208.20275%207.64007%207.64025C8.20257%207.07775%208.85882%206.64025%209.60882%206.32775C10.3588%205.99975%2011.1558%205.83575%2011.9998%205.83575ZM11.9998%2016.008C13.1093%2016.008%2014.0546%2015.6173%2014.8356%2014.8358C15.6166%2014.0542%2016.0073%2013.109%2016.0078%2012C16.0083%2010.891%2015.6176%209.94575%2014.8356%209.16425C14.0536%208.38275%2013.1083%207.992%2011.9998%207.992C10.8913%207.992%209.94606%208.38275%209.16407%209.16425C8.38206%209.94575%207.99132%2010.891%207.99182%2012C7.99232%2013.109%208.38307%2014.0542%209.16407%2014.8358C9.94507%2015.6173%2010.8903%2016.008%2011.9998%2016.008ZM19.8516%205.60175C19.8516%205.99225%2019.7108%206.32825%2019.4293%206.60975C19.1478%206.89125%2018.8041%207.032%2018.3981%207.032C18.0076%207.032%2017.6716%206.89125%2017.3901%206.60975C17.1086%206.32825%2016.9678%205.99225%2016.9678%205.60175C16.9678%205.19525%2017.1086%204.8515%2017.3901%204.5705C17.6716%204.2895%2018.0076%204.14875%2018.3981%204.14825C18.8046%204.14825%2019.1483%204.289%2019.4293%204.5705C19.7103%204.852%2019.8511%205.19575%2019.8516%205.60175Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/symbol%3e%3csymbol%20id='keyboard-arrow-down'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.82%205L12%2014.16L21.18%205L24%207.82L12%2019.82L0%207.82L2.82%205Z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard-arrow-left'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M19%2021.18L9.84%2012L19%202.82L16.18%200L4.18%2012L16.18%2024L19%2021.18Z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard-arrow-right'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5%2021.18L14.16%2012L5%202.82L7.82%200L19.82%2012L7.82%2024L5%2021.18Z'/%3e%3c/symbol%3e%3csymbol%20id='keyboard-arrow-up'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M2.82%2019.82L12%2010.66L21.18%2019.82L24%2017L12%205.00001L0%2017L2.82%2019.82Z'/%3e%3c/symbol%3e%3csymbol%20id='language'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.988%200C5.364%200%200%205.376%200%2012C0%2018.624%205.364%2024%2011.988%2024C18.624%2024%2024%2018.624%2024%2012C24%205.376%2018.624%200%2011.988%200ZM20.304%207.2H16.764C16.38%205.7%2015.828%204.26%2015.108%202.928C17.316%203.684%2019.152%205.22%2020.304%207.2ZM12%202.448C12.996%203.888%2013.776%205.484%2014.292%207.2H9.708C10.224%205.484%2011.004%203.888%2012%202.448ZM2.712%2014.4C2.52%2013.632%202.4%2012.828%202.4%2012C2.4%2011.172%202.52%2010.368%202.712%209.6H6.768C6.672%2010.392%206.6%2011.184%206.6%2012C6.6%2012.816%206.672%2013.608%206.768%2014.4H2.712ZM3.696%2016.8H7.236C7.62%2018.3%208.172%2019.74%208.892%2021.072C6.684%2020.316%204.848%2018.792%203.696%2016.8ZM7.236%207.2H3.696C4.848%205.208%206.684%203.684%208.892%202.928C8.172%204.26%207.62%205.7%207.236%207.2ZM12%2021.552C11.004%2020.112%2010.224%2018.516%209.708%2016.8H14.292C13.776%2018.516%2012.996%2020.112%2012%2021.552ZM14.808%2014.4H9.192C9.084%2013.608%209%2012.816%209%2012C9%2011.184%209.084%2010.38%209.192%209.6H14.808C14.916%2010.38%2015%2011.184%2015%2012C15%2012.816%2014.916%2013.608%2014.808%2014.4ZM15.108%2021.072C15.828%2019.74%2016.38%2018.3%2016.764%2016.8H20.304C19.152%2018.78%2017.316%2020.316%2015.108%2021.072ZM17.232%2014.4C17.328%2013.608%2017.4%2012.816%2017.4%2012C17.4%2011.184%2017.328%2010.392%2017.232%209.6H21.288C21.48%2010.368%2021.6%2011.172%2021.6%2012C21.6%2012.828%2021.48%2013.632%2021.288%2014.4H17.232Z'/%3e%3c/symbol%3e%3csymbol%20id='linkedin'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M5.37214%2023.9999H0.396429V7.97672H5.37214V23.9999ZM2.88161%205.79101C1.29054%205.79101%200%204.47315%200%202.88208C1.13882e-08%202.11783%200.303597%201.38488%200.844003%200.844476C1.38441%200.30407%202.11736%200.000473022%202.88161%200.000473022C3.64586%200.000473022%204.3788%200.30407%204.91921%200.844476C5.45962%201.38488%205.76321%202.11783%205.76321%202.88208C5.76321%204.47315%204.47214%205.79101%202.88161%205.79101ZM23.9946%2023.9999H19.0296V16.1999C19.0296%2014.341%2018.9921%2011.9571%2016.4427%2011.9571C13.8557%2011.9571%2013.4593%2013.9767%2013.4593%2016.066V23.9999H8.48893V7.97672H13.2611V10.1624H13.3307C13.995%208.90351%2015.6177%207.57494%2018.0386%207.57494C23.0743%207.57494%2024%2010.891%2024%2015.1982V23.9999H23.9946Z'/%3e%3c/symbol%3e%3csymbol%20id='location-on'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12.4%200C7.756%200%204%203.756%204%208.4C4%2014.7%2012.4%2024%2012.4%2024C12.4%2024%2020.8%2014.7%2020.8%208.4C20.8%203.756%2017.044%200%2012.4%200ZM12.4%2011.4C10.744%2011.4%209.4%2010.056%209.4%208.4C9.4%206.744%2010.744%205.4%2012.4%205.4C14.056%205.4%2015.4%206.744%2015.4%208.4C15.4%2010.056%2014.056%2011.4%2012.4%2011.4Z'/%3e%3c/symbol%3e%3csymbol%20id='menu'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2020H24V17.3333H0V20ZM0%2013.3333H24V10.6667H0V13.3333ZM0%204V6.66667H24V4H0Z'/%3e%3c/symbol%3e%3csymbol%20id='minus'%20viewBox='0%200%2016%2016'%3e%3cpath%20d='M0%206.5v3c0%200.276%200.224%200.5%200.5%200.5h15c0.276%200%200.5-0.224%200.5-0.5v-3c0-0.276-0.224-0.5-0.5-0.5h-15c-0.276%200-0.5%200.224-0.5%200.5z'/%3e%3c/symbol%3e%3csymbol%20id='notifications'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.8462%2024C13.2%2024%2014.3077%2022.8923%2014.3077%2021.5385H9.38462C9.38462%2022.8923%2010.48%2024%2011.8462%2024ZM19.2308%2016.6154V10.4615C19.2308%206.68308%2017.2123%203.52%2013.6923%202.68308V1.84615C13.6923%200.824615%2012.8677%200%2011.8462%200C10.8246%200%2010%200.824615%2010%201.84615V2.68308C6.46769%203.52%204.46154%206.67077%204.46154%2010.4615V16.6154L2%2019.0769V20.3077H21.6923V19.0769L19.2308%2016.6154Z'/%3e%3c/symbol%3e%3csymbol%20id='open'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M9.81818%208.72727H14.1818V5.45455H17.4545L12%200L6.54545%205.45455H9.81818V8.72727ZM8.72727%209.81818H5.45455V6.54545L0%2012L5.45455%2017.4545V14.1818H8.72727V9.81818ZM24%2012L18.5455%206.54545V9.81818H15.2727V14.1818H18.5455V17.4545L24%2012ZM14.1818%2015.2727H9.81818V18.5455H6.54545L12%2024L17.4545%2018.5455H14.1818V15.2727Z'/%3e%3c/symbol%3e%3csymbol%20id='pause'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M1%2024H7.85714V0H1V24ZM14.7143%200V24H21.5714V0H14.7143Z'/%3e%3c/symbol%3e%3csymbol%20id='person'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12%2012C15.315%2012%2018%209.315%2018%206C18%202.685%2015.315%200%2012%200C8.685%200%206%202.685%206%206C6%209.315%208.685%2012%2012%2012ZM12%2015C7.995%2015%200%2017.01%200%2021V24H24V21C24%2017.01%2016.005%2015%2012%2015Z'/%3e%3c/symbol%3e%3csymbol%20id='pinterest'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M12.5625%200.304688C7.75313%200.304688%203%203.51094%203%208.7C3%2012%204.85625%2013.875%205.98125%2013.875C6.44531%2013.875%206.7125%2012.5813%206.7125%2012.2156C6.7125%2011.7797%205.60156%2010.8516%205.60156%209.0375C5.60156%205.26875%208.47031%202.59688%2012.1828%202.59688C15.375%202.59688%2017.7375%204.41094%2017.7375%207.74375C17.7375%2010.2328%2016.7391%2014.9016%2013.5047%2014.9016C12.3375%2014.9016%2011.3391%2014.0578%2011.3391%2012.8484C11.3391%2011.0766%2012.5766%209.36094%2012.5766%207.53281C12.5766%204.42969%208.175%204.99219%208.175%208.74219C8.175%209.52969%208.27344%2010.4016%208.625%2011.1188C7.97813%2013.9031%206.65625%2018.0516%206.65625%2020.9203C6.65625%2021.8063%206.78281%2022.6781%206.86719%2023.5641C7.02656%2023.7422%206.94688%2023.7234%207.19063%2023.6344C9.55313%2020.4%209.46875%2019.7672%2010.5375%2015.5344C11.1141%2016.6313%2012.6047%2017.2219%2013.7859%2017.2219C18.7641%2017.2219%2021%2012.3703%2021%207.99688C21%203.34219%2016.9781%200.304688%2012.5625%200.304688Z'/%3e%3c/symbol%3e%3csymbol%20id='play-arrow'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M3%200V24L21.8571%2012L3%200Z'/%3e%3c/symbol%3e%3csymbol%20id='play-circle-outline'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20d='M9.6%2017.4L16.8%2012L9.6%206.6V17.4ZM12%200C5.376%200%200%205.376%200%2012C0%2018.624%205.376%2024%2012%2024C18.624%2024%2024%2018.624%2024%2012C24%205.376%2018.624%200%2012%200ZM12%2021.6C6.708%2021.6%202.4%2017.292%202.4%2012C2.4%206.708%206.708%202.4%2012%202.4C17.292%202.4%2021.6%206.708%2021.6%2012C21.6%2017.292%2017.292%2021.6%2012%2021.6Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/symbol%3e%3csymbol%20id='replay'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M11.6%204.8V0L5.6%206L11.6%2012V7.2C15.572%207.2%2018.8%2010.428%2018.8%2014.4C18.8%2018.372%2015.572%2021.6%2011.6%2021.6C7.628%2021.6%204.4%2018.372%204.4%2014.4H2C2%2019.704%206.296%2024%2011.6%2024C16.904%2024%2021.2%2019.704%2021.2%2014.4C21.2%209.096%2016.904%204.8%2011.6%204.8Z'/%3e%3c/symbol%3e%3csymbol%20id='rss-feed'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M6.18%2020C7.38398%2020%208.36%2019.024%208.36%2017.82C8.36%2016.616%207.38398%2015.64%206.18%2015.64C4.97602%2015.64%204%2016.616%204%2017.82C4%2019.024%204.97602%2020%206.18%2020Z'/%3e%3cpath%20d='M4%204.44V7.27C11.03%207.27%2016.73%2012.97%2016.73%2020H19.56C19.56%2011.41%2012.59%204.44%204%204.44ZM4%2010.1V12.93C7.9%2012.93%2011.07%2016.1%2011.07%2020H13.9C13.9%2014.53%209.47%2010.1%204%2010.1Z'/%3e%3c/symbol%3e%3csymbol%20id='search'%20viewBox='0%200%2024%2024'%3e%3cg%20clip-path='url(%23clip0)'%3e%3cpath%20d='M17.1527%2015.0943H16.0686L15.6844%2014.7238C17.0292%2013.1595%2017.8388%2011.1286%2017.8388%208.91938C17.8388%203.99314%2013.8456%200%208.91938%200C3.99314%200%200%203.99314%200%208.91938C0%2013.8456%203.99314%2017.8388%208.91938%2017.8388C11.1286%2017.8388%2013.1595%2017.0292%2014.7238%2015.6844L15.0943%2016.0686V17.1527L21.9554%2024L24%2021.9554L17.1527%2015.0943ZM8.91938%2015.0943C5.50257%2015.0943%202.74443%2012.3362%202.74443%208.91938C2.74443%205.50257%205.50257%202.74443%208.91938%202.74443C12.3362%202.74443%2015.0943%205.50257%2015.0943%208.91938C15.0943%2012.3362%2012.3362%2015.0943%208.91938%2015.0943Z'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0'%3e%3crect%20width='24'%20height='24'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/symbol%3e%3csymbol%20id='spinner'%20viewBox='0%200%2032%2032'%3e%3ctitle%3espinner8%3c/title%3e%3cpath%20d='M16%2032c-4.274%200-8.292-1.664-11.314-4.686s-4.686-7.040-4.686-11.314c0-3.026%200.849-5.973%202.456-8.522%201.563-2.478%203.771-4.48%206.386-5.791l1.344%202.682c-2.126%201.065-3.922%202.693-5.192%204.708-1.305%202.069-1.994%204.462-1.994%206.922%200%207.168%205.832%2013%2013%2013s13-5.832%2013-13c0-2.459-0.69-4.853-1.994-6.922-1.271-2.015-3.066-3.643-5.192-4.708l1.344-2.682c2.615%201.31%204.824%203.313%206.386%205.791%201.607%202.549%202.456%205.495%202.456%208.522%200%204.274-1.664%208.292-4.686%2011.314s-7.040%204.686-11.314%204.686z'/%3e%3c/symbol%3e%3csymbol%20id='square'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M18.2857%204H5.71429C4.76786%204%204%204.76786%204%205.71429V18.2857C4%2019.2321%204.76786%2020%205.71429%2020H18.2857C19.2321%2020%2020%2019.2321%2020%2018.2857V5.71429C20%204.76786%2019.2321%204%2018.2857%204Z'/%3e%3c/symbol%3e%3csymbol%20id='swap'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M17.6667%2018.68V9.33333H15V18.68H11L16.3333%2024L21.6667%2018.68H17.6667ZM8.33333%200L3%205.32H7V14.6667H9.66667V5.32H13.6667L8.33333%200Z'/%3e%3c/symbol%3e%3csymbol%20id='thumb-up'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M0%2022.8182H4.36364V9.72727H0V22.8182ZM24%2010.8182C24%209.61818%2023.0182%208.63636%2021.8182%208.63636H14.9345L15.9709%203.65091L16.0036%203.30182C16.0036%202.85455%2015.8182%202.44%2015.5236%202.14545L14.3673%201L7.18909%208.18909C6.78545%208.58182%206.54545%209.12727%206.54545%209.72727V20.6364C6.54545%2021.8364%207.52727%2022.8182%208.72727%2022.8182H18.5455C19.4509%2022.8182%2020.2255%2022.2727%2020.5527%2021.4873L23.8473%2013.7964C23.9455%2013.5455%2024%2013.2836%2024%2013V10.8182Z'/%3e%3c/symbol%3e%3csymbol%20id='trending-flat'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M24%2012.0526L18.9474%207V10.7895H0V13.3158H18.9474V17.1053L24%2012.0526Z'/%3e%3c/symbol%3e%3csymbol%20id='trending-up'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M16.8%205L19.548%207.748L13.692%2013.604L8.892%208.804L0%2017.708L1.692%2019.4L8.892%2012.2L13.692%2017L21.252%209.452L24%2012.2V5H16.8Z'/%3e%3c/symbol%3e%3csymbol%20id='twitter'%20viewBox='0%200%2024%2024'%3e%3cpath%20d='M21.533%207.11169C21.5482%207.32488%2021.5482%207.53811%2021.5482%207.7513C21.5482%2014.2538%2016.599%2021.7462%207.5533%2021.7462C4.76648%2021.7462%202.17767%2020.9391%200%2019.5381C0.395953%2019.5838%200.776625%2019.599%201.18781%2019.599C3.48727%2019.599%205.60405%2018.8224%207.29441%2017.4975C5.13197%2017.4518%203.31978%2016.0356%202.69541%2014.0863C3%2014.132%203.30455%2014.1624%203.62437%2014.1624C4.06598%2014.1624%204.50764%2014.1015%204.91878%2013.995C2.66498%2013.5381%200.974578%2011.5584%200.974578%209.16753V9.10664C1.62937%209.47213%202.39086%209.70055%203.19791%209.73097C1.87303%208.8477%201.00505%207.34011%201.00505%205.63452C1.00505%204.72083%201.24866%203.88327%201.67508%203.1523C4.09641%206.13706%207.73602%208.08627%2011.8172%208.2995C11.7411%207.93402%2011.6954%207.55335%2011.6954%207.17263C11.6954%204.46194%2013.8883%202.25385%2016.6141%202.25385C18.0304%202.25385%2019.3095%202.84775%2020.208%203.80714C21.3197%203.59395%2022.3857%203.18277%2023.3299%202.61933C22.9643%203.76149%2022.1877%204.72088%2021.1674%205.32997C22.1573%205.22342%2023.1167%204.94925%2023.9999%204.56858C23.33%205.54316%2022.4924%206.41114%2021.533%207.11169Z'/%3e%3c/symbol%3e%3c/svg%3e";
|
|
5
5
|
var L = Object.defineProperty, o = (t, e, s, b) => {
|
|
6
6
|
for (var c = void 0, l = t.length - 1, d; l >= 0; l--)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { unsafeCSS as l, html as d } from "lit";
|
|
2
2
|
import { property as c } from "lit/decorators.js";
|
|
3
|
-
import {
|
|
3
|
+
import { EdElement as m } from "../EdElement.js";
|
|
4
4
|
const a = ":root,:host{--size-base-unit: .5rem}h1,h2,h3,h4,h5,h6{margin:0}*,::slotted(*),*:before,*:after{box-sizing:border-box}.ed-c-icon-link-list{margin:0;padding:0;list-style:none;display:flex;margin:-2rem 0 0 -2rem}.ed-c-icon-link-list ::slotted(ed-icon-link-list-item){margin-inline-start:2rem;margin-block-start:2rem}.ed-c-icon-link-list--inverted{color:var(--ed-theme-color-content-knockout)}ed-icon{--ed-icon-width: 1.5rem ;--ed-icon-height: 1.5rem }";
|
|
5
5
|
var h = Object.defineProperty, p = (i, t, o, f) => {
|
|
6
6
|
for (var e = void 0, n = i.length - 1, r; n >= 0; n--)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EdElement as a } from "../EdElement.js";
|
|
2
2
|
import { unsafeCSS as d, html as f } from "lit";
|
|
3
|
-
import { property as
|
|
4
|
-
import { ifDefined as
|
|
3
|
+
import { property as s } from "lit/decorators.js";
|
|
4
|
+
import { ifDefined as r } from "lit-html/directives/if-defined.js";
|
|
5
5
|
import "../icon/icon.js";
|
|
6
6
|
const p = ":root,:host{--size-base-unit: .5rem}*,::slotted(*),*:before,*:after{box-sizing:border-box}h1,h2,h3,h4,h5,h6{margin:0}.ed-c-icon-link-list__link{color:var(--ed-theme-link-color-content-default)}";
|
|
7
7
|
var h = Object.defineProperty, l = (o, t, m, k) => {
|
|
@@ -17,21 +17,21 @@ class i extends a {
|
|
|
17
17
|
const t = this.componentClassNames("ed-c-icon-link-list__item", {});
|
|
18
18
|
return f`
|
|
19
19
|
<li class="${t}">
|
|
20
|
-
<a class="ed-c-icon-link-list__link" href="${
|
|
21
|
-
<ed-icon name="${
|
|
20
|
+
<a class="ed-c-icon-link-list__link" href="${r(this.href)}" title="${r(this.linkTitle)}">
|
|
21
|
+
<ed-icon name="${r(this.iconName)}"></ed-icon>
|
|
22
22
|
</a>
|
|
23
23
|
</li>
|
|
24
24
|
`;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
l([
|
|
28
|
-
|
|
28
|
+
s()
|
|
29
29
|
], i.prototype, "iconName");
|
|
30
30
|
l([
|
|
31
|
-
|
|
31
|
+
s()
|
|
32
32
|
], i.prototype, "href");
|
|
33
33
|
l([
|
|
34
|
-
|
|
34
|
+
s()
|
|
35
35
|
], i.prototype, "linkTitle");
|
|
36
36
|
customElements.get("ed-icon-link-list-item") === void 0 && customElements.define("ed-icon-link-list-item", i);
|
|
37
37
|
export {
|