@3mo/collapsible-card 0.1.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.
- package/README.md +3 -0
- package/dist/Card/Card.d.ts +63 -0
- package/dist/Card/Card.d.ts.map +1 -0
- package/dist/Card/index.d.ts +2 -0
- package/dist/Card/index.d.ts.map +1 -0
- package/dist/CollapsibleCard/CollapsibleCard.d.ts +28 -0
- package/dist/CollapsibleCard/CollapsibleCard.d.ts.map +1 -0
- package/dist/CollapsibleCard/index.d.ts +2 -0
- package/dist/CollapsibleCard/index.d.ts.map +1 -0
- package/dist/CollapsibleCard.d.ts +28 -0
- package/dist/CollapsibleCard.d.ts.map +1 -0
- package/dist/CollapsibleCard.js +74 -0
- package/dist/Flex/Flex.d.ts +39 -0
- package/dist/Flex/Flex.d.ts.map +1 -0
- package/dist/Flex/index.d.ts +2 -0
- package/dist/Flex/index.d.ts.map +1 -0
- package/dist/Heading/Heading.d.ts +29 -0
- package/dist/Heading/Heading.d.ts.map +1 -0
- package/dist/Heading/index.d.ts +2 -0
- package/dist/Heading/index.d.ts.map +1 -0
- package/dist/Icon/Icon.d.ts +33 -0
- package/dist/Icon/Icon.d.ts.map +1 -0
- package/dist/Icon/MaterialIcon.d.ts +2 -0
- package/dist/Icon/MaterialIcon.d.ts.map +1 -0
- package/dist/Icon/index.d.ts +3 -0
- package/dist/Icon/index.d.ts.map +1 -0
- package/dist/IconButton/IconButton.d.ts +24 -0
- package/dist/IconButton/IconButton.d.ts.map +1 -0
- package/dist/IconButton/index.d.ts +3 -0
- package/dist/IconButton/index.d.ts.map +1 -0
- package/dist/SlotController/SlotController.d.ts +19 -0
- package/dist/SlotController/SlotController.d.ts.map +1 -0
- package/dist/SlotController/index.d.ts +2 -0
- package/dist/SlotController/index.d.ts.map +1 -0
- package/dist/Tooltip/Tooltip.d.ts +40 -0
- package/dist/Tooltip/Tooltip.d.ts.map +1 -0
- package/dist/Tooltip/TooltipDirective.d.ts +13 -0
- package/dist/Tooltip/TooltipDirective.d.ts.map +1 -0
- package/dist/Tooltip/TooltipHost.d.ts +11 -0
- package/dist/Tooltip/TooltipHost.d.ts.map +1 -0
- package/dist/Tooltip/index.d.ts +4 -0
- package/dist/Tooltip/index.d.ts.map +1 -0
- package/dist/bundle.js +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1 -0
- package/package.json +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
import { SlotController } from '@3mo/slot-controller';
|
|
3
|
+
import '@3mo/heading';
|
|
4
|
+
import '@3mo/flex';
|
|
5
|
+
export declare const enum CardType {
|
|
6
|
+
Filled = "filled",
|
|
7
|
+
Outlined = "outlined"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* @element mo-card
|
|
11
|
+
*
|
|
12
|
+
* @attr type
|
|
13
|
+
* @attr heading
|
|
14
|
+
* @attr subHeading
|
|
15
|
+
* @attr avatar
|
|
16
|
+
* @attr image
|
|
17
|
+
*
|
|
18
|
+
* @slot action - Actions in the header
|
|
19
|
+
* @slot heading - Custom heading in the header
|
|
20
|
+
* @slot subHeading - Custom subHeading in the header
|
|
21
|
+
* @slot avatar - Custom avatar in the header
|
|
22
|
+
* @slot header - The header. Using this will lead to slots 'heading', 'subHeading', 'avatar' and 'action's not working.
|
|
23
|
+
* @slot media - Embedded media
|
|
24
|
+
* @slot - Body / Content
|
|
25
|
+
* @slot footer - Actions in the footer
|
|
26
|
+
*
|
|
27
|
+
* @cssprop --mo-card-header-padding - Padding of the header
|
|
28
|
+
* @cssprop --mo-card-avatar-background - Color of the avatar
|
|
29
|
+
* @cssprop --mo-card-avatar-color - Text color of the avatar
|
|
30
|
+
* @cssprop --mo-card-body-padding - Padding of the body
|
|
31
|
+
* @cssprop --mo-card-footer-padding - Padding of the footer
|
|
32
|
+
*
|
|
33
|
+
* @csspart media - Embedded media
|
|
34
|
+
* @csspart header - The header
|
|
35
|
+
* @csspart avatar - The avatar
|
|
36
|
+
* @csspart heading - The heading
|
|
37
|
+
* @csspart subHeading - The subHeading
|
|
38
|
+
* @csspart footer - The footer
|
|
39
|
+
*/
|
|
40
|
+
export declare class Card extends Component {
|
|
41
|
+
type: CardType;
|
|
42
|
+
heading?: string;
|
|
43
|
+
subHeading?: string;
|
|
44
|
+
avatar?: string;
|
|
45
|
+
image?: string;
|
|
46
|
+
protected readonly slotController: SlotController;
|
|
47
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
48
|
+
protected get template(): import("lit-html").TemplateResult<1>;
|
|
49
|
+
protected get mediaTemplate(): import("lit-html").HTMLTemplateResult;
|
|
50
|
+
protected get headerTemplate(): import("lit-html").HTMLTemplateResult;
|
|
51
|
+
protected get defaultHeaderAvatarTemplate(): import("lit-html").TemplateResult<1>;
|
|
52
|
+
protected get defaultHeaderHeadingTemplate(): import("lit-html").TemplateResult<1>;
|
|
53
|
+
protected get defaultHeaderSubHeadingTemplate(): import("lit-html").TemplateResult<1>;
|
|
54
|
+
protected get defaultHeaderActionTemplate(): import("lit-html").TemplateResult<1>;
|
|
55
|
+
protected get bodyTemplate(): import("lit-html").TemplateResult<1>;
|
|
56
|
+
protected get footerTemplate(): import("lit-html").HTMLTemplateResult;
|
|
57
|
+
}
|
|
58
|
+
declare global {
|
|
59
|
+
interface HTMLElementTagNameMap {
|
|
60
|
+
'mo-card': Card;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=Card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../Card/Card.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6B,SAAS,EAAkC,MAAM,WAAW,CAAA;AAChG,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AACrD,OAAO,cAAc,CAAA;AACrB,OAAO,WAAW,CAAA;AAElB,0BAAkB,QAAQ;IACzB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACrB;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,qBACa,IAAK,SAAQ,SAAS;IACtB,IAAI,WAAkB;IACtB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IAE1B,SAAS,CAAC,QAAQ,CAAC,cAAc,iBAA2B;IAE5D,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;IAED,SAAS,KAAK,aAAa,0CAG1B;IAED,SAAS,KAAK,cAAc,0CAO3B;IAED,SAAS,KAAK,2BAA2B,yCAExC;IAED,SAAS,KAAK,4BAA4B,yCAEzC;IAED,SAAS,KAAK,+BAA+B,yCAE5C;IAED,SAAS,KAAK,2BAA2B,yCAExC;IAED,SAAS,KAAK,YAAY,yCAGzB;IAED,SAAS,KAAK,cAAc,0CAE3B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,SAAS,EAAE,IAAI,CAAA;KACf;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Card/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Card } from '@3mo/card';
|
|
2
|
+
import '@3mo/icon-button';
|
|
3
|
+
/**
|
|
4
|
+
* @element mo-collapsible-card
|
|
5
|
+
*
|
|
6
|
+
* @attr collapsed
|
|
7
|
+
* @attr disableCollapse
|
|
8
|
+
* @attr showSubHeadingOnlyWhenCollapsed
|
|
9
|
+
*
|
|
10
|
+
* @fires collapse - Dispatched when the card is collapsed or expanded
|
|
11
|
+
*/
|
|
12
|
+
export declare class CollapsibleCard extends Card {
|
|
13
|
+
private readonly collapse;
|
|
14
|
+
collapsed: boolean;
|
|
15
|
+
disableCollapse: boolean;
|
|
16
|
+
showSubHeadingOnlyWhenCollapsed: boolean;
|
|
17
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
18
|
+
protected get defaultHeaderSubHeadingTemplate(): import("lit-html").HTMLTemplateResult;
|
|
19
|
+
protected get defaultHeaderActionTemplate(): import("lit-html").TemplateResult<1>;
|
|
20
|
+
protected get bodyTemplate(): import("lit-html").HTMLTemplateResult;
|
|
21
|
+
protected toggleCollapse(): void;
|
|
22
|
+
}
|
|
23
|
+
declare global {
|
|
24
|
+
interface HTMLElementTagNameMap {
|
|
25
|
+
'mo-collapsible-card': CollapsibleCard;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=CollapsibleCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollapsibleCard.d.ts","sourceRoot":"","sources":["../../CollapsibleCard.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAEhC,OAAO,kBAAkB,CAAA;AAEzB;;;;;;;;GAQG;AACH,qBACa,eAAgB,SAAQ,IAAI;IAC/B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAA2B;IAEjB,SAAS,UAAQ;IAChC,eAAe,UAAQ;IACvB,+BAA+B,UAAQ;IAEpE,WAAoB,MAAM,kCAEzB;IAED,cAAuB,+BAA+B,0CAErD;IAED,cAAuB,2BAA2B,yCAEjD;IAED,cAAuB,YAAY,0CAElC;IAED,SAAS,CAAC,cAAc;CAIxB;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,qBAAqB,EAAE,eAAe,CAAA;KACtC;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Card } from '@3mo/card';
|
|
2
|
+
import '@3mo/icon-button';
|
|
3
|
+
/**
|
|
4
|
+
* @element mo-collapsible-card
|
|
5
|
+
*
|
|
6
|
+
* @attr collapsed
|
|
7
|
+
* @attr disableCollapse
|
|
8
|
+
* @attr showSubHeadingOnlyWhenCollapsed
|
|
9
|
+
*
|
|
10
|
+
* @fires collapse - Dispatched when the card is collapsed or expanded
|
|
11
|
+
*/
|
|
12
|
+
export declare class CollapsibleCard extends Card {
|
|
13
|
+
private readonly collapse;
|
|
14
|
+
collapsed: boolean;
|
|
15
|
+
disableCollapse: boolean;
|
|
16
|
+
showSubHeadingOnlyWhenCollapsed: boolean;
|
|
17
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
18
|
+
protected get defaultHeaderSubHeadingTemplate(): import("lit-html").HTMLTemplateResult;
|
|
19
|
+
protected get defaultHeaderActionTemplate(): import("lit-html").TemplateResult<1>;
|
|
20
|
+
protected get bodyTemplate(): import("lit-html").HTMLTemplateResult;
|
|
21
|
+
protected toggleCollapse(): void;
|
|
22
|
+
}
|
|
23
|
+
declare global {
|
|
24
|
+
interface HTMLElementTagNameMap {
|
|
25
|
+
'mo-collapsible-card': CollapsibleCard;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=CollapsibleCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollapsibleCard.d.ts","sourceRoot":"","sources":["../CollapsibleCard.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAA;AAEhC,OAAO,kBAAkB,CAAA;AAEzB;;;;;;;;GAQG;AACH,qBACa,eAAgB,SAAQ,IAAI;IAC/B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAA2B;IAEjB,SAAS,UAAQ;IAChC,eAAe,UAAQ;IACvB,+BAA+B,UAAQ;IAEpE,WAAoB,MAAM,kCAazB;IAED,cAAuB,+BAA+B,0CAErD;IAED,cAAuB,2BAA2B,yCAWjD;IAED,cAAuB,YAAY,0CAElC;IAED,SAAS,CAAC,cAAc;CAIxB;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,qBAAqB,EAAE,eAAe,CAAA;KACtC;CACD"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { component, css, html, property, nothing, event } from '@a11d/lit';
|
|
3
|
+
import { Card } from '@3mo/card';
|
|
4
|
+
import { tooltip } from '@3mo/tooltip';
|
|
5
|
+
import '@3mo/icon-button';
|
|
6
|
+
/**
|
|
7
|
+
* @element mo-collapsible-card
|
|
8
|
+
*
|
|
9
|
+
* @attr collapsed
|
|
10
|
+
* @attr disableCollapse
|
|
11
|
+
* @attr showSubHeadingOnlyWhenCollapsed
|
|
12
|
+
*
|
|
13
|
+
* @fires collapse - Dispatched when the card is collapsed or expanded
|
|
14
|
+
*/
|
|
15
|
+
let CollapsibleCard = class CollapsibleCard extends Card {
|
|
16
|
+
constructor() {
|
|
17
|
+
super(...arguments);
|
|
18
|
+
this.collapsed = false;
|
|
19
|
+
this.disableCollapse = false;
|
|
20
|
+
this.showSubHeadingOnlyWhenCollapsed = false;
|
|
21
|
+
}
|
|
22
|
+
static get styles() {
|
|
23
|
+
return css `
|
|
24
|
+
${super.styles}
|
|
25
|
+
|
|
26
|
+
:host {
|
|
27
|
+
position: relative;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
:host([collapsed]) {
|
|
31
|
+
flex: unset !important;
|
|
32
|
+
height: unset !important;
|
|
33
|
+
}
|
|
34
|
+
`;
|
|
35
|
+
}
|
|
36
|
+
get defaultHeaderSubHeadingTemplate() {
|
|
37
|
+
return this.showSubHeadingOnlyWhenCollapsed && !this.collapsed ? nothing : super.defaultHeaderSubHeadingTemplate;
|
|
38
|
+
}
|
|
39
|
+
get defaultHeaderActionTemplate() {
|
|
40
|
+
return html `
|
|
41
|
+
${super.defaultHeaderActionTemplate}
|
|
42
|
+
|
|
43
|
+
<mo-icon-button dense
|
|
44
|
+
${tooltip(this.collapsed ? 'Erweitern' : 'Reduzieren')}
|
|
45
|
+
?disabled=${this.disableCollapse}
|
|
46
|
+
icon=${this.collapsed ? 'expand_more' : 'expand_less'}
|
|
47
|
+
@click=${() => this.toggleCollapse()}
|
|
48
|
+
></mo-icon-button>
|
|
49
|
+
`;
|
|
50
|
+
}
|
|
51
|
+
get bodyTemplate() {
|
|
52
|
+
return this.collapsed ? nothing : super.bodyTemplate;
|
|
53
|
+
}
|
|
54
|
+
toggleCollapse() {
|
|
55
|
+
this.collapsed = !this.collapsed;
|
|
56
|
+
this.collapse.dispatch(this.collapsed);
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
__decorate([
|
|
60
|
+
event()
|
|
61
|
+
], CollapsibleCard.prototype, "collapse", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
property({ type: Boolean, reflect: true })
|
|
64
|
+
], CollapsibleCard.prototype, "collapsed", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
property({ type: Boolean })
|
|
67
|
+
], CollapsibleCard.prototype, "disableCollapse", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
property({ type: Boolean })
|
|
70
|
+
], CollapsibleCard.prototype, "showSubHeadingOnlyWhenCollapsed", void 0);
|
|
71
|
+
CollapsibleCard = __decorate([
|
|
72
|
+
component('mo-collapsible-card')
|
|
73
|
+
], CollapsibleCard);
|
|
74
|
+
export { CollapsibleCard };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
import type * as CSS from 'csstype';
|
|
3
|
+
export declare type FlexDirection = 'horizontal' | 'vertical' | 'horizontal-reversed' | 'vertical-reversed';
|
|
4
|
+
/**
|
|
5
|
+
* @attr direction
|
|
6
|
+
* @attr wrap
|
|
7
|
+
* @attr gap
|
|
8
|
+
* @attr justifyItems
|
|
9
|
+
* @attr justifyContent
|
|
10
|
+
* @attr alignItems
|
|
11
|
+
* @attr alignContent
|
|
12
|
+
*
|
|
13
|
+
* @slot - The content of the flex container.
|
|
14
|
+
*/
|
|
15
|
+
export declare class Flex extends Component {
|
|
16
|
+
private static readonly flexDirectionByDirections;
|
|
17
|
+
get direction(): FlexDirection;
|
|
18
|
+
set direction(value: FlexDirection);
|
|
19
|
+
get wrap(): CSS.Property.FlexWrap;
|
|
20
|
+
set wrap(value: CSS.Property.FlexWrap);
|
|
21
|
+
get gap(): CSS.Property.Gap<string>;
|
|
22
|
+
set gap(value: CSS.Property.Gap<string>);
|
|
23
|
+
get justifyItems(): CSS.Property.JustifyItems;
|
|
24
|
+
set justifyItems(value: CSS.Property.JustifyItems);
|
|
25
|
+
get justifyContent(): CSS.Property.JustifyContent;
|
|
26
|
+
set justifyContent(value: CSS.Property.JustifyContent);
|
|
27
|
+
get alignItems(): CSS.Property.AlignItems;
|
|
28
|
+
set alignItems(value: CSS.Property.AlignItems);
|
|
29
|
+
get alignContent(): CSS.Property.AlignContent;
|
|
30
|
+
set alignContent(value: CSS.Property.AlignContent);
|
|
31
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
32
|
+
protected get template(): import("lit-html").TemplateResult<1>;
|
|
33
|
+
}
|
|
34
|
+
declare global {
|
|
35
|
+
interface HTMLElementTagNameMap {
|
|
36
|
+
'mo-flex': Flex;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=Flex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Flex.d.ts","sourceRoot":"","sources":["../../../Flex/Flex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAuB,MAAM,WAAW,CAAA;AACrE,OAAO,KAAK,KAAK,GAAG,MAAM,SAAS,CAAA;AAEnC,oBAAY,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,qBAAqB,GAAG,mBAAmB,CAAA;AAEnG;;;;;;;;;;GAUG;AACH,qBACa,IAAK,SAAQ,SAAS;IAClC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,yBAAyB,CAK/C;IAEF,IACI,SAAS,kBAA4I;IACzJ,IAAI,SAAS,CAAC,KAAK,eAAA,EAAsF;IAEzG,IACI,IAAI,0BAA0D;IAClE,IAAI,IAAI,CAAC,KAAK,uBAAA,EAAiC;IAE/C,IACI,GAAG,6BAAwD;IAC/D,IAAI,GAAG,CAAC,KAAK,0BAAA,EAA4B;IAEzC,IACI,YAAY,8BAAkE;IAClF,IAAI,YAAY,CAAC,KAAK,2BAAA,EAAqC;IAE3D,IACI,cAAc,gCAAsE;IACxF,IAAI,cAAc,CAAC,KAAK,6BAAA,EAAuC;IAE/D,IACI,UAAU,4BAA8D;IAC5E,IAAI,UAAU,CAAC,KAAK,yBAAA,EAAmC;IAEvD,IACI,YAAY,8BAAkE;IAClF,IAAI,YAAY,CAAC,KAAK,2BAAA,EAAqC;IAE3D,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,SAAS,EAAE,IAAI,CAAA;KACf;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Flex/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
export declare const enum HeadingTypography {
|
|
3
|
+
Heading1 = "heading1",
|
|
4
|
+
Heading2 = "heading2",
|
|
5
|
+
Heading3 = "heading3",
|
|
6
|
+
Heading4 = "heading4",
|
|
7
|
+
Heading5 = "heading5",
|
|
8
|
+
Heading6 = "heading6",
|
|
9
|
+
Subtitle1 = "subtitle1",
|
|
10
|
+
Subtitle2 = "subtitle2"
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @element mo-heading
|
|
14
|
+
*
|
|
15
|
+
* @attr typography - The typography of the heading.
|
|
16
|
+
*
|
|
17
|
+
* @slot - The content of the heading.
|
|
18
|
+
*/
|
|
19
|
+
export declare class Heading extends Component {
|
|
20
|
+
typography: HeadingTypography;
|
|
21
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
22
|
+
protected get template(): import("lit-html").TemplateResult<1>;
|
|
23
|
+
}
|
|
24
|
+
declare global {
|
|
25
|
+
interface HTMLElementTagNameMap {
|
|
26
|
+
'mo-heading': Heading;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=Heading.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Heading.d.ts","sourceRoot":"","sources":["../../../Heading/Heading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,SAAS,EAAkB,MAAM,WAAW,CAAA;AAErE,0BAAkB,iBAAiB;IAClC,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,SAAS,cAAc;CACvB;AAED;;;;;;GAMG;AACH,qBACa,OAAQ,SAAQ,SAAS;IACR,UAAU,oBAA6B;IAEpE,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,YAAY,EAAE,OAAO,CAAA;KACrB;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Heading/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
import { MaterialIcon } from './index.js';
|
|
3
|
+
export declare const enum IconVariant {
|
|
4
|
+
Filled = "filled",
|
|
5
|
+
Outlined = "outlined",
|
|
6
|
+
Sharp = "sharp",
|
|
7
|
+
Rounded = "rounded"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* @attr variant - The variant of the icon tied to a specific font.
|
|
11
|
+
* @attr icon - The icon to display.
|
|
12
|
+
*/
|
|
13
|
+
export declare class Icon extends Component {
|
|
14
|
+
static defaultVariant: IconVariant;
|
|
15
|
+
static readonly fontsByVariant: Map<IconVariant, {
|
|
16
|
+
name: string;
|
|
17
|
+
url: string;
|
|
18
|
+
}>;
|
|
19
|
+
private static readonly fontStyleElement;
|
|
20
|
+
private static readonly fontUrls;
|
|
21
|
+
private static get;
|
|
22
|
+
private static ensureAvailable;
|
|
23
|
+
variant: IconVariant;
|
|
24
|
+
icon?: MaterialIcon;
|
|
25
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
26
|
+
protected get template(): import("lit-html").TemplateResult<1>;
|
|
27
|
+
}
|
|
28
|
+
declare global {
|
|
29
|
+
interface HTMLElementTagNameMap {
|
|
30
|
+
'mo-icon': Icon;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=Icon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Icon.d.ts","sourceRoot":"","sources":["../../../Icon/Icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAyC,MAAM,WAAW,CAAA;AAC5E,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAEzC,0BAAkB,WAAW;IAC5B,MAAM,WAAW;IACjB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,OAAO,YAAY;CACnB;AAED;;;GAGG;AACH,qBACa,IAAK,SAAQ,SAAS;IAClC,MAAM,CAAC,cAAc,cAAqB;IAE1C,MAAM,CAAC,QAAQ,CAAC,cAAc;;;OAK5B;IAEF,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAkC;IAC1E,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAOpD,OAAO,CAAC,MAAM,CAAC,GAAG;IAUlB,OAAO,CAAC,MAAM,CAAC,eAAe;IAW4C,OAAO,cAAsB;IAC3F,IAAI,CAAC,EAAE,YAAY,CAAA;IAE/B,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,SAAS,EAAE,IAAI,CAAA;KACf;CACD"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare type MaterialIcon = '10k' | '10mp' | '11mp' | '123' | '12mp' | '13mp' | '14mp' | '15mp' | '16mp' | '17mp' | '18_up_rating' | '18mp' | '19mp' | '1k' | '1k_plus' | '1x_mobiledata' | '20mp' | '21mp' | '22mp' | '23mp' | '24mp' | '2k' | '2k_plus' | '2mp' | '30fps' | '30fps_select' | '360' | '3d_rotation' | '3g_mobiledata' | '3k' | '3k_plus' | '3mp' | '3p' | '4g_mobiledata' | '4g_plus_mobiledata' | '4k' | '4k_plus' | '4mp' | '5g' | '5k' | '5k_plus' | '5mp' | '60fps' | '60fps_select' | '6_ft_apart' | '6k' | '6k_plus' | '6mp' | '7k' | '7k_plus' | '7mp' | '8k' | '8k_plus' | '8mp' | '9k' | '9k_plus' | '9mp' | 'abc' | 'ac_unit' | 'access_alarm' | 'access_alarms' | 'access_time' | 'access_time_filled' | 'accessibility' | 'accessibility_new' | 'accessible' | 'accessible_forward' | 'account_balance' | 'account_balance_wallet' | 'account_box' | 'account_circle' | 'account_tree' | 'ad_units' | 'adb' | 'add' | 'add_a_photo' | 'add_alarm' | 'add_alert' | 'add_box' | 'add_business' | 'add_card' | 'add_chart' | 'add_circle' | 'add_circle_outline' | 'add_comment' | 'add_home' | 'add_home_work' | 'add_ic_call' | 'add_link' | 'add_location' | 'add_location_alt' | 'add_moderator' | 'add_photo_alternate' | 'add_reaction' | 'add_road' | 'add_shopping_cart' | 'add_task' | 'add_to_drive' | 'add_to_home_screen' | 'add_to_photos' | 'add_to_queue' | 'addchart' | 'adf_scanner' | 'adjust' | 'admin_panel_settings' | 'ads_click' | 'agriculture' | 'air' | 'airline_seat_flat' | 'airline_seat_flat_angled' | 'airline_seat_individual_suite' | 'airline_seat_legroom_extra' | 'airline_seat_legroom_normal' | 'airline_seat_legroom_reduced' | 'airline_seat_recline_extra' | 'airline_seat_recline_normal' | 'airline_stops' | 'airlines' | 'airplane_ticket' | 'airplanemode_active' | 'airplanemode_inactive' | 'airplay' | 'airport_shuttle' | 'alarm' | 'alarm_add' | 'alarm_off' | 'alarm_on' | 'album' | 'align_horizontal_center' | 'align_horizontal_left' | 'align_horizontal_right' | 'align_vertical_bottom' | 'align_vertical_center' | 'align_vertical_top' | 'all_inbox' | 'all_inclusive' | 'all_out' | 'alt_route' | 'alternate_email' | 'analytics' | 'anchor' | 'android' | 'animation' | 'announcement' | 'aod' | 'apartment' | 'api' | 'app_blocking' | 'app_registration' | 'app_settings_alt' | 'app_shortcut' | 'approval' | 'apps' | 'apps_outage' | 'architecture' | 'archive' | 'area_chart' | 'arrow_back' | 'arrow_back_ios' | 'arrow_back_ios_new' | 'arrow_circle_down' | 'arrow_circle_left' | 'arrow_circle_right' | 'arrow_circle_up' | 'arrow_downward' | 'arrow_drop_down' | 'arrow_drop_down_circle' | 'arrow_drop_up' | 'arrow_forward' | 'arrow_forward_ios' | 'arrow_left' | 'arrow_outward' | 'arrow_right' | 'arrow_right_alt' | 'arrow_upward' | 'art_track' | 'article' | 'aspect_ratio' | 'assessment' | 'assignment' | 'assignment_ind' | 'assignment_late' | 'assignment_return' | 'assignment_returned' | 'assignment_turned_in' | 'assist_walker' | 'assistant' | 'assistant_direction' | 'assistant_photo' | 'assured_workload' | 'atm' | 'attach_email' | 'attach_file' | 'attach_money' | 'attachment' | 'attractions' | 'attribution' | 'audio_file' | 'audiotrack' | 'auto_awesome' | 'auto_awesome_mosaic' | 'auto_awesome_motion' | 'auto_delete' | 'auto_fix_high' | 'auto_fix_normal' | 'auto_fix_off' | 'auto_graph' | 'auto_mode' | 'auto_stories' | 'autofps_select' | 'autorenew' | 'av_timer' | 'baby_changing_station' | 'back_hand' | 'backpack' | 'backspace' | 'backup' | 'backup_table' | 'badge' | 'bakery_dining' | 'balance' | 'balcony' | 'ballot' | 'bar_chart' | 'batch_prediction' | 'bathroom' | 'bathtub' | 'battery_0_bar' | 'battery_1_bar' | 'battery_2_bar' | 'battery_3_bar' | 'battery_4_bar' | 'battery_5_bar' | 'battery_6_bar' | 'battery_alert' | 'battery_charging_full' | 'battery_full' | 'battery_saver' | 'battery_std' | 'battery_unknown' | 'beach_access' | 'bed' | 'bedroom_baby' | 'bedroom_child' | 'bedroom_parent' | 'bedtime' | 'bedtime_off' | 'beenhere' | 'bento' | 'bike_scooter' | 'biotech' | 'blender' | 'blind' | 'blinds' | 'blinds_closed' | 'block' | 'bloodtype' | 'bluetooth' | 'bluetooth_audio' | 'bluetooth_connected' | 'bluetooth_disabled' | 'bluetooth_drive' | 'bluetooth_searching' | 'blur_circular' | 'blur_linear' | 'blur_off' | 'blur_on' | 'bolt' | 'book' | 'book_online' | 'bookmark' | 'bookmark_add' | 'bookmark_added' | 'bookmark_border' | 'bookmark_remove' | 'bookmarks' | 'border_all' | 'border_bottom' | 'border_clear' | 'border_color' | 'border_horizontal' | 'border_inner' | 'border_left' | 'border_outer' | 'border_right' | 'border_style' | 'border_top' | 'border_vertical' | 'boy' | 'branding_watermark' | 'breakfast_dining' | 'brightness_1' | 'brightness_2' | 'brightness_3' | 'brightness_4' | 'brightness_5' | 'brightness_6' | 'brightness_7' | 'brightness_auto' | 'brightness_high' | 'brightness_low' | 'brightness_medium' | 'broadcast_on_home' | 'broadcast_on_personal' | 'broken_image' | 'browse_gallery' | 'browser_not_supported' | 'browser_updated' | 'brunch_dining' | 'brush' | 'bubble_chart' | 'bug_report' | 'build' | 'build_circle' | 'bungalow' | 'burst_mode' | 'bus_alert' | 'business' | 'business_center' | 'cabin' | 'cable' | 'cached' | 'cake' | 'calculate' | 'calendar_month' | 'calendar_today' | 'calendar_view_day' | 'calendar_view_month' | 'calendar_view_week' | 'call' | 'call_end' | 'call_made' | 'call_merge' | 'call_missed' | 'call_missed_outgoing' | 'call_received' | 'call_split' | 'call_to_action' | 'camera' | 'camera_alt' | 'camera_enhance' | 'camera_front' | 'camera_indoor' | 'camera_outdoor' | 'camera_rear' | 'camera_roll' | 'cameraswitch' | 'campaign' | 'cancel' | 'cancel_presentation' | 'cancel_schedule_send' | 'candlestick_chart' | 'car_crash' | 'car_rental' | 'car_repair' | 'card_giftcard' | 'card_membership' | 'card_travel' | 'carpenter' | 'cases' | 'casino' | 'cast' | 'cast_connected' | 'cast_for_education' | 'castle' | 'catching_pokemon' | 'category' | 'celebration' | 'cell_tower' | 'cell_wifi' | 'center_focus_strong' | 'center_focus_weak' | 'chair' | 'chair_alt' | 'chalet' | 'change_circle' | 'change_history' | 'charging_station' | 'chat' | 'chat_bubble' | 'chat_bubble_outline' | 'check' | 'check_box' | 'check_box_outline_blank' | 'check_circle' | 'check_circle_outline' | 'checklist' | 'checklist_rtl' | 'checkroom' | 'chevron_left' | 'chevron_right' | 'child_care' | 'child_friendly' | 'chrome_reader_mode' | 'church' | 'circle' | 'circle_notifications' | 'class' | 'clean_hands' | 'cleaning_services' | 'clear' | 'clear_all' | 'close' | 'close_fullscreen' | 'closed_caption' | 'closed_caption_disabled' | 'closed_caption_off' | 'cloud' | 'cloud_circle' | 'cloud_done' | 'cloud_download' | 'cloud_off' | 'cloud_queue' | 'cloud_sync' | 'cloud_upload' | 'co2' | 'co_present' | 'code' | 'code_off' | 'coffee' | 'coffee_maker' | 'collections' | 'collections_bookmark' | 'color_lens' | 'colorize' | 'comment' | 'comment_bank' | 'comments_disabled' | 'commit' | 'commute' | 'compare' | 'compare_arrows' | 'compass_calibration' | 'compost' | 'compress' | 'computer' | 'confirmation_number' | 'connect_without_contact' | 'connected_tv' | 'connecting_airports' | 'construction' | 'contact_emergency' | 'contact_mail' | 'contact_page' | 'contact_phone' | 'contact_support' | 'contactless' | 'contacts' | 'content_copy' | 'content_cut' | 'content_paste' | 'content_paste_go' | 'content_paste_off' | 'content_paste_search' | 'contrast' | 'control_camera' | 'control_point' | 'control_point_duplicate' | 'cookie' | 'copy_all' | 'copyright' | 'coronavirus' | 'corporate_fare' | 'cottage' | 'countertops' | 'create' | 'create_new_folder' | 'credit_card' | 'credit_card_off' | 'credit_score' | 'crib' | 'crisis_alert' | 'crop' | 'crop_16_9' | 'crop_3_2' | 'crop_5_4' | 'crop_7_5' | 'crop_din' | 'crop_free' | 'crop_landscape' | 'crop_original' | 'crop_portrait' | 'crop_rotate' | 'crop_square' | 'cruelty_free' | 'css' | 'currency_bitcoin' | 'currency_exchange' | 'currency_franc' | 'currency_lira' | 'currency_pound' | 'currency_ruble' | 'currency_rupee' | 'currency_yen' | 'currency_yuan' | 'curtains' | 'curtains_closed' | 'cyclone' | 'dangerous' | 'dark_mode' | 'dashboard' | 'dashboard_customize' | 'data_array' | 'data_exploration' | 'data_object' | 'data_saver_off' | 'data_saver_on' | 'data_thresholding' | 'data_usage' | 'dataset' | 'dataset_linked' | 'date_range' | 'deblur' | 'deck' | 'dehaze' | 'delete' | 'delete_forever' | 'delete_outline' | 'delete_sweep' | 'delivery_dining' | 'density_large' | 'density_medium' | 'density_small' | 'departure_board' | 'description' | 'deselect' | 'design_services' | 'desk' | 'desktop_access_disabled' | 'desktop_mac' | 'desktop_windows' | 'details' | 'developer_board' | 'developer_board_off' | 'developer_mode' | 'device_hub' | 'device_thermostat' | 'device_unknown' | 'devices' | 'devices_fold' | 'devices_other' | 'dialer_sip' | 'dialpad' | 'diamond' | 'difference' | 'dining' | 'dinner_dining' | 'directions' | 'directions_bike' | 'directions_boat' | 'directions_boat_filled' | 'directions_bus' | 'directions_bus_filled' | 'directions_car' | 'directions_car_filled' | 'directions_off' | 'directions_railway' | 'directions_railway_filled' | 'directions_run' | 'directions_subway' | 'directions_subway_filled' | 'directions_transit' | 'directions_transit_filled' | 'directions_walk' | 'dirty_lens' | 'disabled_by_default' | 'disabled_visible' | 'disc_full' | 'discount' | 'display_settings' | 'diversity_1' | 'diversity_2' | 'diversity_3' | 'dns' | 'do_disturb' | 'do_disturb_alt' | 'do_disturb_off' | 'do_disturb_on' | 'do_not_disturb' | 'do_not_disturb_alt' | 'do_not_disturb_off' | 'do_not_disturb_on' | 'do_not_disturb_on_total_silence' | 'do_not_step' | 'do_not_touch' | 'dock' | 'document_scanner' | 'domain' | 'domain_add' | 'domain_disabled' | 'domain_verification' | 'done' | 'done_all' | 'done_outline' | 'donut_large' | 'donut_small' | 'door_back' | 'door_front' | 'door_sliding' | 'doorbell' | 'double_arrow' | 'downhill_skiing' | 'download' | 'download_done' | 'download_for_offline' | 'downloading' | 'drafts' | 'drag_handle' | 'drag_indicator' | 'draw' | 'drive_eta' | 'drive_file_move' | 'drive_file_move_rtl' | 'drive_file_rename_outline' | 'drive_folder_upload' | 'dry' | 'dry_cleaning' | 'duo' | 'dvr' | 'dynamic_feed' | 'dynamic_form' | 'e_mobiledata' | 'earbuds' | 'earbuds_battery' | 'east' | 'edgesensor_high' | 'edgesensor_low' | 'edit' | 'edit_attributes' | 'edit_calendar' | 'edit_location' | 'edit_location_alt' | 'edit_note' | 'edit_notifications' | 'edit_off' | 'edit_road' | 'egg' | 'egg_alt' | 'eject' | 'elderly' | 'elderly_woman' | 'electric_bike' | 'electric_bolt' | 'electric_car' | 'electric_meter' | 'electric_moped' | 'electric_rickshaw' | 'electric_scooter' | 'electrical_services' | 'elevator' | 'email' | 'emergency' | 'emergency_recording' | 'emergency_share' | 'emoji_emotions' | 'emoji_events' | 'emoji_food_beverage' | 'emoji_nature' | 'emoji_objects' | 'emoji_people' | 'emoji_symbols' | 'emoji_transportation' | 'energy_savings_leaf' | 'engineering' | 'enhanced_encryption' | 'equalizer' | 'error' | 'error_outline' | 'escalator' | 'escalator_warning' | 'euro' | 'euro_symbol' | 'ev_station' | 'event' | 'event_available' | 'event_busy' | 'event_note' | 'event_repeat' | 'event_seat' | 'exit_to_app' | 'expand' | 'expand_circle_down' | 'expand_less' | 'expand_more' | 'explicit' | 'explore' | 'explore_off' | 'exposure' | 'exposure_neg_1' | 'exposure_neg_2' | 'exposure_plus_1' | 'exposure_plus_2' | 'exposure_zero' | 'extension' | 'extension_off' | 'face' | 'face_2' | 'face_3' | 'face_4' | 'face_5' | 'face_6' | 'face_retouching_natural' | 'face_retouching_off' | 'face_unlock' | 'fact_check' | 'factory' | 'family_restroom' | 'fast_forward' | 'fast_rewind' | 'fastfood' | 'favorite' | 'favorite_border' | 'fax' | 'featured_play_list' | 'featured_video' | 'feed' | 'feedback' | 'female' | 'fence' | 'festival' | 'fiber_dvr' | 'fiber_manual_record' | 'fiber_new' | 'fiber_pin' | 'fiber_smart_record' | 'file_copy' | 'file_download' | 'file_download_done' | 'file_download_off' | 'file_open' | 'file_present' | 'file_upload' | 'filter' | 'filter_1' | 'filter_2' | 'filter_3' | 'filter_4' | 'filter_5' | 'filter_6' | 'filter_7' | 'filter_8' | 'filter_9' | 'filter_9_plus' | 'filter_alt' | 'filter_alt_off' | 'filter_b_and_w' | 'filter_center_focus' | 'filter_drama' | 'filter_frames' | 'filter_hdr' | 'filter_list' | 'filter_list_off' | 'filter_none' | 'filter_tilt_shift' | 'filter_vintage' | 'find_in_page' | 'find_replace' | 'fingerprint' | 'fire_extinguisher' | 'fire_hydrant_alt' | 'fire_truck' | 'fireplace' | 'first_page' | 'fit_screen' | 'fitbit' | 'fitness_center' | 'flag' | 'flag_circle' | 'flaky' | 'flare' | 'flash_auto' | 'flash_off' | 'flash_on' | 'flashlight_off' | 'flashlight_on' | 'flatware' | 'flight' | 'flight_class' | 'flight_land' | 'flight_takeoff' | 'flip' | 'flip_camera_android' | 'flip_camera_ios' | 'flip_to_back' | 'flip_to_front' | 'flood' | 'fluorescent' | 'flutter_dash' | 'fmd_bad' | 'fmd_good' | 'folder' | 'folder_copy' | 'folder_delete' | 'folder_off' | 'folder_open' | 'folder_shared' | 'folder_special' | 'folder_zip' | 'follow_the_signs' | 'font_download' | 'font_download_off' | 'food_bank' | 'forest' | 'fork_left' | 'fork_right' | 'format_align_center' | 'format_align_justify' | 'format_align_left' | 'format_align_right' | 'format_bold' | 'format_clear' | 'format_color_fill' | 'format_color_reset' | 'format_color_text' | 'format_indent_decrease' | 'format_indent_increase' | 'format_italic' | 'format_line_spacing' | 'format_list_bulleted' | 'format_list_numbered' | 'format_list_numbered_rtl' | 'format_overline' | 'format_paint' | 'format_quote' | 'format_shapes' | 'format_size' | 'format_strikethrough' | 'format_textdirection_l_to_r' | 'format_textdirection_r_to_l' | 'format_underlined' | 'fort' | 'forum' | 'forward' | 'forward_10' | 'forward_30' | 'forward_5' | 'forward_to_inbox' | 'foundation' | 'free_breakfast' | 'free_cancellation' | 'front_hand' | 'fullscreen' | 'fullscreen_exit' | 'functions' | 'g_mobiledata' | 'g_translate' | 'gamepad' | 'games' | 'garage' | 'gas_meter' | 'gavel' | 'generating_tokens' | 'gesture' | 'get_app' | 'gif' | 'gif_box' | 'girl' | 'gite' | 'golf_course' | 'gpp_bad' | 'gpp_good' | 'gpp_maybe' | 'gps_fixed' | 'gps_not_fixed' | 'gps_off' | 'grade' | 'gradient' | 'grading' | 'grain' | 'graphic_eq' | 'grass' | 'grid_3x3' | 'grid_4x4' | 'grid_goldenratio' | 'grid_off' | 'grid_on' | 'grid_view' | 'group' | 'group_add' | 'group_off' | 'group_remove' | 'group_work' | 'groups' | 'groups_2' | 'groups_3' | 'h_mobiledata' | 'h_plus_mobiledata' | 'hail' | 'handshake' | 'handyman' | 'hardware' | 'hd' | 'hdr_auto' | 'hdr_auto_select' | 'hdr_enhanced_select' | 'hdr_off' | 'hdr_off_select' | 'hdr_on' | 'hdr_on_select' | 'hdr_plus' | 'hdr_strong' | 'hdr_weak' | 'headphones' | 'headphones_battery' | 'headset' | 'headset_mic' | 'headset_off' | 'healing' | 'health_and_safety' | 'hearing' | 'hearing_disabled' | 'heart_broken' | 'heat_pump' | 'height' | 'help' | 'help_center' | 'help_outline' | 'hevc' | 'hexagon' | 'hide_image' | 'hide_source' | 'high_quality' | 'highlight' | 'highlight_alt' | 'highlight_off' | 'hiking' | 'history' | 'history_edu' | 'history_toggle_off' | 'hive' | 'hls' | 'hls_off' | 'holiday_village' | 'home' | 'home_max' | 'home_mini' | 'home_repair_service' | 'home_work' | 'horizontal_distribute' | 'horizontal_rule' | 'horizontal_split' | 'hot_tub' | 'hotel' | 'hotel_class' | 'hourglass_bottom' | 'hourglass_disabled' | 'hourglass_empty' | 'hourglass_full' | 'hourglass_top' | 'house' | 'house_siding' | 'houseboat' | 'how_to_reg' | 'how_to_vote' | 'html' | 'http' | 'https' | 'hub' | 'hvac' | 'ice_skating' | 'icecream' | 'image' | 'image_aspect_ratio' | 'image_not_supported' | 'image_search' | 'imagesearch_roller' | 'import_contacts' | 'import_export' | 'important_devices' | 'inbox' | 'incomplete_circle' | 'indeterminate_check_box' | 'info' | 'input' | 'insert_chart' | 'insert_chart_outlined' | 'insert_comment' | 'insert_drive_file' | 'insert_emoticon' | 'insert_invitation' | 'insert_link' | 'insert_page_break' | 'insert_photo' | 'insights' | 'install_desktop' | 'install_mobile' | 'integration_instructions' | 'interests' | 'interpreter_mode' | 'inventory' | 'inventory_2' | 'invert_colors' | 'invert_colors_off' | 'ios_share' | 'iron' | 'iso' | 'javascript' | 'join_full' | 'join_inner' | 'join_left' | 'join_right' | 'kayaking' | 'kebab_dining' | 'key' | 'key_off' | 'keyboard' | 'keyboard_alt' | 'keyboard_arrow_down' | 'keyboard_arrow_left' | 'keyboard_arrow_right' | 'keyboard_arrow_up' | 'keyboard_backspace' | 'keyboard_capslock' | 'keyboard_command_key' | 'keyboard_control_key' | 'keyboard_double_arrow_down' | 'keyboard_double_arrow_left' | 'keyboard_double_arrow_right' | 'keyboard_double_arrow_up' | 'keyboard_hide' | 'keyboard_option_key' | 'keyboard_return' | 'keyboard_tab' | 'keyboard_voice' | 'king_bed' | 'kitchen' | 'kitesurfing' | 'label' | 'label_important' | 'label_off' | 'lan' | 'landscape' | 'landslide' | 'language' | 'laptop' | 'laptop_chromebook' | 'laptop_mac' | 'laptop_windows' | 'last_page' | 'launch' | 'layers' | 'layers_clear' | 'leaderboard' | 'leak_add' | 'leak_remove' | 'legend_toggle' | 'lens' | 'lens_blur' | 'library_add' | 'library_add_check' | 'library_books' | 'library_music' | 'light' | 'light_mode' | 'lightbulb' | 'lightbulb_circle' | 'line_axis' | 'line_style' | 'line_weight' | 'linear_scale' | 'link' | 'link_off' | 'linked_camera' | 'liquor' | 'list' | 'list_alt' | 'live_help' | 'live_tv' | 'living' | 'local_activity' | 'local_airport' | 'local_atm' | 'local_bar' | 'local_cafe' | 'local_car_wash' | 'local_convenience_store' | 'local_dining' | 'local_drink' | 'local_fire_department' | 'local_florist' | 'local_gas_station' | 'local_grocery_store' | 'local_hospital' | 'local_hotel' | 'local_laundry_service' | 'local_library' | 'local_mall' | 'local_movies' | 'local_offer' | 'local_parking' | 'local_pharmacy' | 'local_phone' | 'local_pizza' | 'local_play' | 'local_police' | 'local_post_office' | 'local_printshop' | 'local_see' | 'local_shipping' | 'local_taxi' | 'location_city' | 'location_disabled' | 'location_off' | 'location_on' | 'location_searching' | 'lock' | 'lock_clock' | 'lock_open' | 'lock_person' | 'lock_reset' | 'login' | 'logo_dev' | 'logout' | 'looks' | 'looks_3' | 'looks_4' | 'looks_5' | 'looks_6' | 'looks_one' | 'looks_two' | 'loop' | 'loupe' | 'low_priority' | 'loyalty' | 'lte_mobiledata' | 'lte_plus_mobiledata' | 'luggage' | 'lunch_dining' | 'lyrics' | 'macro_off' | 'mail' | 'mail_lock' | 'mail_outline' | 'male' | 'man' | 'man_2' | 'man_3' | 'man_4' | 'manage_accounts' | 'manage_history' | 'manage_search' | 'map' | 'maps_home_work' | 'maps_ugc' | 'margin' | 'mark_as_unread' | 'mark_chat_read' | 'mark_chat_unread' | 'mark_email_read' | 'mark_email_unread' | 'mark_unread_chat_alt' | 'markunread' | 'markunread_mailbox' | 'masks' | 'maximize' | 'media_bluetooth_off' | 'media_bluetooth_on' | 'mediation' | 'medical_information' | 'medical_services' | 'medication' | 'medication_liquid' | 'meeting_room' | 'memory' | 'menu' | 'menu_book' | 'menu_open' | 'merge' | 'merge_type' | 'message' | 'mic' | 'mic_external_off' | 'mic_external_on' | 'mic_none' | 'mic_off' | 'microwave' | 'military_tech' | 'minimize' | 'minor_crash' | 'miscellaneous_services' | 'missed_video_call' | 'mms' | 'mobile_friendly' | 'mobile_off' | 'mobile_screen_share' | 'mobiledata_off' | 'mode' | 'mode_comment' | 'mode_edit' | 'mode_edit_outline' | 'mode_fan_off' | 'mode_night' | 'mode_of_travel' | 'mode_standby' | 'model_training' | 'monetization_on' | 'money' | 'money_off' | 'money_off_csred' | 'monitor' | 'monitor_heart' | 'monitor_weight' | 'monochrome_photos' | 'mood' | 'mood_bad' | 'moped' | 'more' | 'more_horiz' | 'more_time' | 'more_vert' | 'mosque' | 'motion_photos_auto' | 'motion_photos_off' | 'motion_photos_on' | 'motion_photos_pause' | 'motion_photos_paused' | 'mouse' | 'move_down' | 'move_to_inbox' | 'move_up' | 'movie' | 'movie_creation' | 'movie_filter' | 'moving' | 'mp' | 'multiline_chart' | 'multiple_stop' | 'museum' | 'music_note' | 'music_off' | 'music_video' | 'my_location' | 'nat' | 'nature' | 'nature_people' | 'navigate_before' | 'navigate_next' | 'navigation' | 'near_me' | 'near_me_disabled' | 'nearby_error' | 'nearby_off' | 'nest_cam_wired_stand' | 'network_cell' | 'network_check' | 'network_locked' | 'network_ping' | 'network_wifi' | 'network_wifi_1_bar' | 'network_wifi_2_bar' | 'network_wifi_3_bar' | 'new_label' | 'new_releases' | 'newspaper' | 'next_plan' | 'next_week' | 'nfc' | 'night_shelter' | 'nightlife' | 'nightlight' | 'nightlight_round' | 'nights_stay' | 'no_accounts' | 'no_adult_content' | 'no_backpack' | 'no_cell' | 'no_crash' | 'no_drinks' | 'no_encryption' | 'no_encryption_gmailerrorred' | 'no_flash' | 'no_food' | 'no_luggage' | 'no_meals' | 'no_meeting_room' | 'no_photography' | 'no_sim' | 'no_stroller' | 'no_transfer' | 'noise_aware' | 'noise_control_off' | 'nordic_walking' | 'north' | 'north_east' | 'north_west' | 'not_accessible' | 'not_interested' | 'not_listed_location' | 'not_started' | 'note' | 'note_add' | 'note_alt' | 'notes' | 'notification_add' | 'notification_important' | 'notifications' | 'notifications_active' | 'notifications_none' | 'notifications_off' | 'notifications_paused' | 'numbers' | 'offline_bolt' | 'offline_pin' | 'offline_share' | 'oil_barrel' | 'on_device_training' | 'ondemand_video' | 'online_prediction' | 'opacity' | 'open_in_browser' | 'open_in_full' | 'open_in_new' | 'open_in_new_off' | 'open_with' | 'other_houses' | 'outbound' | 'outbox' | 'outdoor_grill' | 'outlet' | 'outlined_flag' | 'output' | 'padding' | 'pages' | 'pageview' | 'paid' | 'palette' | 'pan_tool' | 'pan_tool_alt' | 'panorama' | 'panorama_fish_eye' | 'panorama_horizontal' | 'panorama_horizontal_select' | 'panorama_photosphere' | 'panorama_photosphere_select' | 'panorama_vertical' | 'panorama_vertical_select' | 'panorama_wide_angle' | 'panorama_wide_angle_select' | 'paragliding' | 'park' | 'party_mode' | 'password' | 'pattern' | 'pause' | 'pause_circle' | 'pause_circle_filled' | 'pause_circle_outline' | 'pause_presentation' | 'payment' | 'payments' | 'pedal_bike' | 'pending' | 'pending_actions' | 'pentagon' | 'people' | 'people_alt' | 'people_outline' | 'percent' | 'perm_camera_mic' | 'perm_contact_calendar' | 'perm_data_setting' | 'perm_device_information' | 'perm_identity' | 'perm_media' | 'perm_phone_msg' | 'perm_scan_wifi' | 'person' | 'person_2' | 'person_3' | 'person_4' | 'person_add' | 'person_add_alt' | 'person_add_alt_1' | 'person_add_disabled' | 'person_off' | 'person_outline' | 'person_pin' | 'person_pin_circle' | 'person_remove' | 'person_remove_alt_1' | 'person_search' | 'personal_injury' | 'personal_video' | 'pest_control' | 'pest_control_rodent' | 'pets' | 'phishing' | 'phone' | 'phone_android' | 'phone_bluetooth_speaker' | 'phone_callback' | 'phone_disabled' | 'phone_enabled' | 'phone_forwarded' | 'phone_in_talk' | 'phone_iphone' | 'phone_locked' | 'phone_missed' | 'phone_paused' | 'phonelink' | 'phonelink_erase' | 'phonelink_lock' | 'phonelink_off' | 'phonelink_ring' | 'phonelink_setup' | 'photo' | 'photo_album' | 'photo_camera' | 'photo_camera_back' | 'photo_camera_front' | 'photo_filter' | 'photo_library' | 'photo_size_select_actual' | 'photo_size_select_large' | 'photo_size_select_small' | 'php' | 'piano' | 'piano_off' | 'picture_as_pdf' | 'picture_in_picture' | 'picture_in_picture_alt' | 'pie_chart' | 'pie_chart_outline' | 'pin' | 'pin_drop' | 'pin_end' | 'pin_invoke' | 'pinch' | 'pivot_table_chart' | 'pix' | 'place' | 'plagiarism' | 'play_arrow' | 'play_circle' | 'play_circle_filled' | 'play_circle_outline' | 'play_disabled' | 'play_for_work' | 'play_lesson' | 'playlist_add' | 'playlist_add_check' | 'playlist_add_check_circle' | 'playlist_add_circle' | 'playlist_play' | 'playlist_remove' | 'plumbing' | 'plus_one' | 'podcasts' | 'point_of_sale' | 'policy' | 'poll' | 'polyline' | 'polymer' | 'pool' | 'portable_wifi_off' | 'portrait' | 'post_add' | 'power' | 'power_input' | 'power_off' | 'power_settings_new' | 'precision_manufacturing' | 'pregnant_woman' | 'present_to_all' | 'preview' | 'price_change' | 'price_check' | 'print' | 'print_disabled' | 'priority_high' | 'privacy_tip' | 'private_connectivity' | 'production_quantity_limits' | 'propane' | 'propane_tank' | 'psychology' | 'psychology_alt' | 'public' | 'public_off' | 'publish' | 'published_with_changes' | 'punch_clock' | 'push_pin' | 'qr_code' | 'qr_code_2' | 'qr_code_scanner' | 'query_builder' | 'query_stats' | 'question_answer' | 'question_mark' | 'queue' | 'queue_music' | 'queue_play_next' | 'quickreply' | 'quiz' | 'r_mobiledata' | 'radar' | 'radio' | 'radio_button_checked' | 'radio_button_unchecked' | 'railway_alert' | 'ramen_dining' | 'ramp_left' | 'ramp_right' | 'rate_review' | 'raw_off' | 'raw_on' | 'read_more' | 'real_estate_agent' | 'receipt' | 'receipt_long' | 'recent_actors' | 'recommend' | 'record_voice_over' | 'rectangle' | 'recycling' | 'redeem' | 'redo' | 'reduce_capacity' | 'refresh' | 'remember_me' | 'remove' | 'remove_circle' | 'remove_circle_outline' | 'remove_done' | 'remove_from_queue' | 'remove_moderator' | 'remove_red_eye' | 'remove_road' | 'remove_shopping_cart' | 'reorder' | 'repartition' | 'repeat' | 'repeat_on' | 'repeat_one' | 'repeat_one_on' | 'replay' | 'replay_10' | 'replay_30' | 'replay_5' | 'replay_circle_filled' | 'reply' | 'reply_all' | 'report' | 'report_gmailerrorred' | 'report_off' | 'report_problem' | 'request_page' | 'request_quote' | 'reset_tv' | 'restart_alt' | 'restaurant' | 'restaurant_menu' | 'restore' | 'restore_from_trash' | 'restore_page' | 'reviews' | 'rice_bowl' | 'ring_volume' | 'rocket' | 'rocket_launch' | 'roller_shades' | 'roller_shades_closed' | 'roller_skating' | 'roofing' | 'room' | 'room_preferences' | 'room_service' | 'rotate_90_degrees_ccw' | 'rotate_90_degrees_cw' | 'rotate_left' | 'rotate_right' | 'roundabout_left' | 'roundabout_right' | 'rounded_corner' | 'route' | 'router' | 'rowing' | 'rss_feed' | 'rsvp' | 'rtt' | 'rule' | 'rule_folder' | 'run_circle' | 'running_with_errors' | 'rv_hookup' | 'safety_check' | 'safety_divider' | 'sailing' | 'sanitizer' | 'satellite' | 'satellite_alt' | 'save' | 'save_alt' | 'save_as' | 'saved_search' | 'savings' | 'scale' | 'scanner' | 'scatter_plot' | 'schedule' | 'schedule_send' | 'schema' | 'school' | 'science' | 'score' | 'scoreboard' | 'screen_lock_landscape' | 'screen_lock_portrait' | 'screen_lock_rotation' | 'screen_rotation' | 'screen_rotation_alt' | 'screen_search_desktop' | 'screen_share' | 'screenshot' | 'screenshot_monitor' | 'scuba_diving' | 'sd' | 'sd_card' | 'sd_card_alert' | 'sd_storage' | 'search' | 'search_off' | 'security' | 'security_update' | 'security_update_good' | 'security_update_warning' | 'segment' | 'select_all' | 'self_improvement' | 'sell' | 'send' | 'send_and_archive' | 'send_time_extension' | 'send_to_mobile' | 'sensor_door' | 'sensor_occupied' | 'sensor_window' | 'sensors' | 'sensors_off' | 'sentiment_dissatisfied' | 'sentiment_neutral' | 'sentiment_satisfied' | 'sentiment_satisfied_alt' | 'sentiment_very_dissatisfied' | 'sentiment_very_satisfied' | 'set_meal' | 'settings' | 'settings_accessibility' | 'settings_applications' | 'settings_backup_restore' | 'settings_bluetooth' | 'settings_brightness' | 'settings_cell' | 'settings_ethernet' | 'settings_input_antenna' | 'settings_input_component' | 'settings_input_composite' | 'settings_input_hdmi' | 'settings_input_svideo' | 'settings_overscan' | 'settings_phone' | 'settings_power' | 'settings_remote' | 'settings_suggest' | 'settings_system_daydream' | 'settings_voice' | 'severe_cold' | 'shape_line' | 'share' | 'share_location' | 'shield' | 'shield_moon' | 'shop' | 'shop_2' | 'shop_two' | 'shopping_bag' | 'shopping_basket' | 'shopping_cart' | 'shopping_cart_checkout' | 'short_text' | 'shortcut' | 'show_chart' | 'shower' | 'shuffle' | 'shuffle_on' | 'shutter_speed' | 'sick' | 'sign_language' | 'signal_cellular_0_bar' | 'signal_cellular_4_bar' | 'signal_cellular_alt' | 'signal_cellular_alt_1_bar' | 'signal_cellular_alt_2_bar' | 'signal_cellular_connected_no_internet_0_bar' | 'signal_cellular_connected_no_internet_4_bar' | 'signal_cellular_no_sim' | 'signal_cellular_nodata' | 'signal_cellular_null' | 'signal_cellular_off' | 'signal_wifi_0_bar' | 'signal_wifi_4_bar' | 'signal_wifi_4_bar_lock' | 'signal_wifi_bad' | 'signal_wifi_connected_no_internet_4' | 'signal_wifi_off' | 'signal_wifi_statusbar_4_bar' | 'signal_wifi_statusbar_connected_no_internet_4' | 'signal_wifi_statusbar_null' | 'signpost' | 'sim_card' | 'sim_card_alert' | 'sim_card_download' | 'single_bed' | 'sip' | 'skateboarding' | 'skip_next' | 'skip_previous' | 'sledding' | 'slideshow' | 'slow_motion_video' | 'smart_button' | 'smart_display' | 'smart_screen' | 'smart_toy' | 'smartphone' | 'smoke_free' | 'smoking_rooms' | 'sms' | 'sms_failed' | 'snippet_folder' | 'snooze' | 'snowboarding' | 'snowmobile' | 'snowshoeing' | 'soap' | 'social_distance' | 'solar_power' | 'sort' | 'sort_by_alpha' | 'sos' | 'soup_kitchen' | 'source' | 'south' | 'south_america' | 'south_east' | 'south_west' | 'spa' | 'space_bar' | 'space_dashboard' | 'spatial_audio' | 'spatial_audio_off' | 'spatial_tracking' | 'speaker' | 'speaker_group' | 'speaker_notes' | 'speaker_notes_off' | 'speaker_phone' | 'speed' | 'spellcheck' | 'splitscreen' | 'spoke' | 'sports' | 'sports_bar' | 'sports_baseball' | 'sports_basketball' | 'sports_cricket' | 'sports_esports' | 'sports_football' | 'sports_golf' | 'sports_gymnastics' | 'sports_handball' | 'sports_hockey' | 'sports_kabaddi' | 'sports_martial_arts' | 'sports_mma' | 'sports_motorsports' | 'sports_rugby' | 'sports_score' | 'sports_soccer' | 'sports_tennis' | 'sports_volleyball' | 'square' | 'square_foot' | 'ssid_chart' | 'stacked_bar_chart' | 'stacked_line_chart' | 'stadium' | 'stairs' | 'star' | 'star_border' | 'star_border_purple500' | 'star_half' | 'star_outline' | 'star_purple500' | 'star_rate' | 'stars' | 'start' | 'stay_current_landscape' | 'stay_current_portrait' | 'stay_primary_landscape' | 'stay_primary_portrait' | 'sticky_note_2' | 'stop' | 'stop_circle' | 'stop_screen_share' | 'storage' | 'store' | 'store_mall_directory' | 'storefront' | 'storm' | 'straight' | 'straighten' | 'stream' | 'streetview' | 'strikethrough_s' | 'stroller' | 'style' | 'subdirectory_arrow_left' | 'subdirectory_arrow_right' | 'subject' | 'subscript' | 'subscriptions' | 'subtitles' | 'subtitles_off' | 'subway' | 'summarize' | 'superscript' | 'supervised_user_circle' | 'supervisor_account' | 'support' | 'support_agent' | 'surfing' | 'surround_sound' | 'swap_calls' | 'swap_horiz' | 'swap_horizontal_circle' | 'swap_vert' | 'swap_vertical_circle' | 'swipe' | 'swipe_down' | 'swipe_down_alt' | 'swipe_left' | 'swipe_left_alt' | 'swipe_right' | 'swipe_right_alt' | 'swipe_up' | 'swipe_up_alt' | 'swipe_vertical' | 'switch_access_shortcut' | 'switch_access_shortcut_add' | 'switch_account' | 'switch_camera' | 'switch_left' | 'switch_right' | 'switch_video' | 'synagogue' | 'sync' | 'sync_alt' | 'sync_disabled' | 'sync_lock' | 'sync_problem' | 'system_security_update' | 'system_security_update_good' | 'system_security_update_warning' | 'system_update' | 'system_update_alt' | 'tab' | 'tab_unselected' | 'table_bar' | 'table_chart' | 'table_restaurant' | 'table_rows' | 'table_view' | 'tablet' | 'tablet_android' | 'tablet_mac' | 'tag' | 'tag_faces' | 'takeout_dining' | 'tap_and_play' | 'tapas' | 'task' | 'task_alt' | 'taxi_alert' | 'temple_buddhist' | 'temple_hindu' | 'terminal' | 'terrain' | 'text_decrease' | 'text_fields' | 'text_format' | 'text_increase' | 'text_rotate_up' | 'text_rotate_vertical' | 'text_rotation_angledown' | 'text_rotation_angleup' | 'text_rotation_down' | 'text_rotation_none' | 'text_snippet' | 'textsms' | 'texture' | 'theater_comedy' | 'theaters' | 'thermostat' | 'thermostat_auto' | 'thumb_down' | 'thumb_down_alt' | 'thumb_down_off_alt' | 'thumb_up' | 'thumb_up_alt' | 'thumb_up_off_alt' | 'thumbs_up_down' | 'thunderstorm' | 'time_to_leave' | 'timelapse' | 'timeline' | 'timer' | 'timer_10' | 'timer_10_select' | 'timer_3' | 'timer_3_select' | 'timer_off' | 'tips_and_updates' | 'tire_repair' | 'title' | 'toc' | 'today' | 'toggle_off' | 'toggle_on' | 'token' | 'toll' | 'tonality' | 'topic' | 'tornado' | 'touch_app' | 'tour' | 'toys' | 'track_changes' | 'traffic' | 'train' | 'tram' | 'transcribe' | 'transfer_within_a_station' | 'transform' | 'transgender' | 'transit_enterexit' | 'translate' | 'travel_explore' | 'trending_down' | 'trending_flat' | 'trending_up' | 'trip_origin' | 'troubleshoot' | 'try' | 'tsunami' | 'tty' | 'tune' | 'tungsten' | 'turn_left' | 'turn_right' | 'turn_sharp_left' | 'turn_sharp_right' | 'turn_slight_left' | 'turn_slight_right' | 'turned_in' | 'turned_in_not' | 'tv' | 'tv_off' | 'two_wheeler' | 'type_specimen' | 'u_turn_left' | 'u_turn_right' | 'umbrella' | 'unarchive' | 'undo' | 'unfold_less' | 'unfold_less_double' | 'unfold_more' | 'unfold_more_double' | 'unpublished' | 'unsubscribe' | 'upcoming' | 'update' | 'update_disabled' | 'upgrade' | 'upload' | 'upload_file' | 'usb' | 'usb_off' | 'vaccines' | 'vape_free' | 'vaping_rooms' | 'verified' | 'verified_user' | 'vertical_align_bottom' | 'vertical_align_center' | 'vertical_align_top' | 'vertical_distribute' | 'vertical_shades' | 'vertical_shades_closed' | 'vertical_split' | 'vibration' | 'video_call' | 'video_camera_back' | 'video_camera_front' | 'video_chat' | 'video_file' | 'video_label' | 'video_library' | 'video_settings' | 'video_stable' | 'videocam' | 'videocam_off' | 'videogame_asset' | 'videogame_asset_off' | 'view_agenda' | 'view_array' | 'view_carousel' | 'view_column' | 'view_comfy' | 'view_comfy_alt' | 'view_compact' | 'view_compact_alt' | 'view_cozy' | 'view_day' | 'view_headline' | 'view_in_ar' | 'view_kanban' | 'view_list' | 'view_module' | 'view_quilt' | 'view_sidebar' | 'view_stream' | 'view_timeline' | 'view_week' | 'vignette' | 'villa' | 'visibility' | 'visibility_off' | 'voice_chat' | 'voice_over_off' | 'voicemail' | 'volcano' | 'volume_down' | 'volume_mute' | 'volume_off' | 'volume_up' | 'volunteer_activism' | 'vpn_key' | 'vpn_key_off' | 'vpn_lock' | 'vrpano' | 'wallet' | 'wallpaper' | 'warehouse' | 'warning' | 'warning_amber' | 'wash' | 'watch' | 'watch_later' | 'watch_off' | 'water' | 'water_damage' | 'water_drop' | 'waterfall_chart' | 'waves' | 'waving_hand' | 'wb_auto' | 'wb_cloudy' | 'wb_incandescent' | 'wb_iridescent' | 'wb_shade' | 'wb_sunny' | 'wb_twilight' | 'wc' | 'web' | 'web_asset' | 'web_asset_off' | 'web_stories' | 'webhook' | 'weekend' | 'west' | 'whatshot' | 'wheelchair_pickup' | 'where_to_vote' | 'widgets' | 'width_full' | 'width_normal' | 'width_wide' | 'wifi' | 'wifi_1_bar' | 'wifi_2_bar' | 'wifi_calling' | 'wifi_calling_3' | 'wifi_channel' | 'wifi_find' | 'wifi_lock' | 'wifi_off' | 'wifi_password' | 'wifi_protected_setup' | 'wifi_tethering' | 'wifi_tethering_error' | 'wifi_tethering_off' | 'wind_power' | 'window' | 'wine_bar' | 'woman' | 'woman_2' | 'work' | 'work_history' | 'work_off' | 'work_outline' | 'workspace_premium' | 'workspaces' | 'wrap_text' | 'wrong_location' | 'wysiwyg' | 'yard' | 'youtube_searched_for' | 'zoom_in' | 'zoom_in_map' | 'zoom_out' | 'zoom_out_map';
|
|
2
|
+
//# sourceMappingURL=MaterialIcon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MaterialIcon.d.ts","sourceRoot":"","sources":["../../../Icon/MaterialIcon.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Icon/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
import { MaterialIcon } from '@3mo/icon';
|
|
3
|
+
/**
|
|
4
|
+
* @attr icon - The icon to display.
|
|
5
|
+
* @attr disabled - Disables the icon-button.
|
|
6
|
+
* @attr dense - Reduces the size of the icon-button.
|
|
7
|
+
*
|
|
8
|
+
* @slot icon - Use The icon to be displayed inside the button.
|
|
9
|
+
*
|
|
10
|
+
* @csspart button - The native button element wrapping the icon-button.
|
|
11
|
+
*/
|
|
12
|
+
export declare class IconButton extends Component {
|
|
13
|
+
icon: MaterialIcon;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
dense: boolean;
|
|
16
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
17
|
+
protected get template(): import("lit-html").TemplateResult<1>;
|
|
18
|
+
}
|
|
19
|
+
declare global {
|
|
20
|
+
interface HTMLElementTagNameMap {
|
|
21
|
+
'mo-icon-button': IconButton;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../IconButton/IconButton.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAuB,MAAM,WAAW,CAAA;AAErE,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAExC;;;;;;;;GAQG;AACH,qBACa,UAAW,SAAQ,SAAS;IAC5B,IAAI,EAAG,YAAY,CAAA;IACa,QAAQ,UAAQ;IAChB,KAAK,UAAQ;IAEzD,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAQD,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,gBAAgB,EAAE,UAAU,CAAA;KAC5B;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../IconButton/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,CAAA;AAClB,cAAc,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Controller, ReactiveControllerHost } from '@a11d/lit';
|
|
2
|
+
export declare class SlotController extends Controller {
|
|
3
|
+
protected readonly host: ReactiveControllerHost & Element;
|
|
4
|
+
private readonly slotChangeCallback?;
|
|
5
|
+
protected readonly mutationObserver: void;
|
|
6
|
+
constructor(host: ReactiveControllerHost & Element, slotChangeCallback?: (() => void) | undefined);
|
|
7
|
+
getAssignedNodes(slotName: string): Node[];
|
|
8
|
+
hasAssignedNodes(slotName: string): boolean;
|
|
9
|
+
hasAssignedContent(slotName: string): boolean;
|
|
10
|
+
getAssignedElements(slotName: string): Element[];
|
|
11
|
+
hasAssignedElements(slotName: string): boolean;
|
|
12
|
+
private extractNodesFromSlot;
|
|
13
|
+
private extractNodesFromChildren;
|
|
14
|
+
hostConnected(): void;
|
|
15
|
+
hostDisconnected(): void;
|
|
16
|
+
private readonly handleChange;
|
|
17
|
+
private handleMutation;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=SlotController.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SlotController.d.ts","sourceRoot":"","sources":["../../../SlotController/SlotController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAA;AAE9D,qBAAa,cAAe,SAAQ,UAAU;uBAML,IAAI,EAAE,sBAAsB,GAAG,OAAO;IAAE,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IALpH,SAAS,CAAC,QAAQ,CAAC,gBAAgB,OAGjC;gBAEsC,IAAI,EAAE,sBAAsB,GAAG,OAAO,EAAmB,kBAAkB,CAAC,SAAQ,IAAI,aAAA;IAIhI,gBAAgB,CAAC,QAAQ,EAAE,MAAM;IAOjC,gBAAgB,CAAC,QAAQ,EAAE,MAAM;IAIjC,kBAAkB,CAAC,QAAQ,EAAE,MAAM;IAKnC,mBAAmB,CAAC,QAAQ,EAAE,MAAM;IAIpC,mBAAmB,CAAC,QAAQ,EAAE,MAAM;IAIpC,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,wBAAwB;IAOvB,aAAa;IAIb,gBAAgB;IAIzB,OAAO,CAAC,QAAQ,CAAC,YAAY,CAG5B;IAED,OAAO,CAAC,cAAc;CAKtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../SlotController/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
export declare const enum TooltipPosition {
|
|
3
|
+
Top = "top",
|
|
4
|
+
Bottom = "bottom",
|
|
5
|
+
Right = "right",
|
|
6
|
+
Left = "left"
|
|
7
|
+
}
|
|
8
|
+
export declare class Tooltip extends Component {
|
|
9
|
+
private static readonly instancesContainer;
|
|
10
|
+
private static visibleInstance?;
|
|
11
|
+
anchor?: Element;
|
|
12
|
+
position: TooltipPosition;
|
|
13
|
+
protected rich: boolean;
|
|
14
|
+
protected visible: boolean;
|
|
15
|
+
private hover;
|
|
16
|
+
private anchorHover;
|
|
17
|
+
private anchorFocused;
|
|
18
|
+
constructor(anchor?: Element);
|
|
19
|
+
protected handlePointerEnter(): void;
|
|
20
|
+
protected handlePointerLeave(): void;
|
|
21
|
+
connected(): void;
|
|
22
|
+
disconnected(): void;
|
|
23
|
+
private readonly handleAnchorFocus;
|
|
24
|
+
private readonly handleAnchorBlur;
|
|
25
|
+
private readonly handleAnchorPointerEnter;
|
|
26
|
+
private readonly handleAnchorPointerMove;
|
|
27
|
+
private readonly handleAnchorPointerLeave;
|
|
28
|
+
private updatePositionAndVisibility;
|
|
29
|
+
private updateVisibility;
|
|
30
|
+
private updatePosition;
|
|
31
|
+
static get styles(): import("@a11d/lit").CSSResult;
|
|
32
|
+
get template(): import("lit-html").TemplateResult<1>;
|
|
33
|
+
private readonly handleSlotChange;
|
|
34
|
+
}
|
|
35
|
+
declare global {
|
|
36
|
+
interface HTMLElementTagNameMap {
|
|
37
|
+
'mo-tooltip': Tooltip;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../../../Tooltip/Tooltip.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAiD,MAAM,WAAW,CAAA;AAE/F,0BAAkB,eAAe;IAChC,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,IAAI,SAAS;CACb;AAED,qBACa,OAAQ,SAAQ,SAAS;IACrC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,kBAAkB,CAAqB;IAC/D,OAAO,CAAC,MAAM,CAAC,eAAe,CAAC,CAAS;IAEZ,MAAM,CAAC,EAAE,OAAO,CAAA;IACD,QAAQ,kBAAyB;IAEhC,SAAS,CAAC,IAAI,UAAQ;IACtB,SAAS,CAAC,OAAO,UAAQ;IACrE,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,WAAW,CAAQ;IAC3B,OAAO,CAAC,aAAa,CAAQ;gBAEjB,MAAM,CAAC,EAAE,OAAO;IAM5B,SAAS,CAAC,kBAAkB;IAQ5B,SAAS,CAAC,kBAAkB;IAKnB,SAAS;IAWT,YAAY;IAUrB,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAKjC;IAED,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAGhC;IAED,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAGxC;IAED,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAEvC;IAED,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAGxC;IAED,OAAO,CAAC,2BAA2B;IAKnC,OAAO,CAAC,gBAAgB;IAYxB,OAAO,CAAC,cAAc;IA6BtB,WAAoB,MAAM,kCAEzB;IAED,IAAa,QAAQ,yCAEpB;IAED,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAGhC;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,YAAY,EAAE,OAAO,CAAA;KACrB;CACD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AsyncDirective, ElementPart, HTMLTemplateResult, PartInfo } from '@a11d/lit';
|
|
2
|
+
import { TooltipPosition } from './Tooltip.js';
|
|
3
|
+
declare type TooltipDirectiveParameters = [content: string | HTMLTemplateResult, position?: TooltipPosition];
|
|
4
|
+
export declare class TooltipDirective extends AsyncDirective {
|
|
5
|
+
private tooltip?;
|
|
6
|
+
constructor(partInfo: PartInfo);
|
|
7
|
+
update(part: ElementPart, [content, position]: TooltipDirectiveParameters): unknown;
|
|
8
|
+
render(...parameters: TooltipDirectiveParameters): HTMLTemplateResult;
|
|
9
|
+
protected disconnected(): void;
|
|
10
|
+
}
|
|
11
|
+
export declare const tooltip: (content: string | HTMLTemplateResult, position?: TooltipPosition | undefined) => import("lit-html/directive.js").DirectiveResult<typeof TooltipDirective>;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=TooltipDirective.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TooltipDirective.d.ts","sourceRoot":"","sources":["../../../Tooltip/TooltipDirective.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,cAAc,EAAE,WAAW,EAAE,kBAAkB,EAAE,QAAQ,EAA6B,MAAM,WAAW,CAAA;AAC3H,OAAO,EAAW,eAAe,EAAE,MAAM,cAAc,CAAA;AAGvD,aAAK,0BAA0B,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,kBAAkB,EAAE,QAAQ,CAAC,EAAE,eAAe,CAAC,CAAA;AAEpG,qBAAa,gBAAiB,SAAQ,cAAc;IACnD,OAAO,CAAC,OAAO,CAAC,CAAS;gBAEb,QAAQ,EAAE,QAAQ;IAQrB,MAAM,CAAC,IAAI,EAAE,WAAW,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,EAAE,0BAA0B;IAmBlF,MAAM,CAAC,GAAG,UAAU,EAAE,0BAA0B;cAK7B,YAAY;CAG/B;AAED,eAAO,MAAM,OAAO,4JAA8B,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
export declare class TooltipHost extends Component {
|
|
3
|
+
static get instance(): HTMLElement;
|
|
4
|
+
protected get template(): import("lit-html").TemplateResult<1>;
|
|
5
|
+
}
|
|
6
|
+
declare global {
|
|
7
|
+
interface HTMLElementTagNameMap {
|
|
8
|
+
'mo-tooltip-host': TooltipHost;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=TooltipHost.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TooltipHost.d.ts","sourceRoot":"","sources":["../../../Tooltip/TooltipHost.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAmB,MAAM,WAAW,CAAA;AAEtD,qBACa,WAAY,SAAQ,SAAS;IACzC,MAAM,KAAK,QAAQ,gBAElB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,iBAAiB,EAAE,WAAW,CAAA;KAC9B;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Tooltip/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAA;AAChC,cAAc,cAAc,CAAA;AAC5B,cAAc,uBAAuB,CAAA"}
|
package/dist/bundle.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(()=>{"use strict";function t(t,e,i,r){var o,n=arguments.length,s=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,i,r);else for(var a=t.length-1;a>=0;a--)(o=t[a])&&(s=(n<3?o(s):n>3?o(e,i,s):o(e,i))||s);return n>3&&s&&Object.defineProperty(e,i,s),s}const e=window,i=e.ShadowRoot&&(void 0===e.ShadyCSS||e.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),o=new WeakMap;class n{constructor(t,e,i){if(this._$cssResult$=!0,i!==r)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(i&&void 0===t){const i=void 0!==e&&1===e.length;i&&(t=o.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),i&&o.set(e,t))}return t}toString(){return this.cssText}}const s=t=>new n("string"==typeof t?t:t+"",void 0,r),a=(t,...e)=>{const i=1===t.length?t[0]:e.reduce(((e,i,r)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(i)+t[r+1]),t[0]);return new n(i,t,r)},c=i?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return s(e)})(t):t;var l;const d=window,p=d.trustedTypes,u=p?p.emptyScript:"",h=d.reactiveElementPolyfillSupport,m={toAttribute(t,e){switch(e){case Boolean:t=t?u:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let i=t;switch(e){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},f=(t,e)=>e!==t&&(e==e||t==t),v={attribute:!0,type:String,converter:m,reflect:!1,hasChanged:f};class g extends HTMLElement{constructor(){super(),this._$Ei=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$El=null,this.u()}static addInitializer(t){var e;null!==(e=this.h)&&void 0!==e||(this.h=[]),this.h.push(t)}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach(((e,i)=>{const r=this._$Ep(i,e);void 0!==r&&(this._$Ev.set(r,i),t.push(r))})),t}static createProperty(t,e=v){if(e.state&&(e.attribute=!1),this.finalize(),this.elementProperties.set(t,e),!e.noAccessor&&!this.prototype.hasOwnProperty(t)){const i="symbol"==typeof t?Symbol():"__"+t,r=this.getPropertyDescriptor(t,i,e);void 0!==r&&Object.defineProperty(this.prototype,t,r)}}static getPropertyDescriptor(t,e,i){return{get(){return this[e]},set(r){const o=this[t];this[e]=r,this.requestUpdate(t,o,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||v}static finalize(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),this.elementProperties=new Map(t.elementProperties),this._$Ev=new Map,this.hasOwnProperty("properties")){const t=this.properties,e=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const i of e)this.createProperty(i,t[i])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const i=new Set(t.flat(1/0).reverse());for(const t of i)e.unshift(c(t))}else void 0!==t&&e.push(c(t));return e}static _$Ep(t,e){const i=e.attribute;return!1===i?void 0:"string"==typeof i?i:"string"==typeof t?t.toLowerCase():void 0}u(){var t;this._$E_=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$Eg(),this.requestUpdate(),null===(t=this.constructor.h)||void 0===t||t.forEach((t=>t(this)))}addController(t){var e,i;(null!==(e=this._$ES)&&void 0!==e?e:this._$ES=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(i=t.hostConnected)||void 0===i||i.call(t))}removeController(t){var e;null===(e=this._$ES)||void 0===e||e.splice(this._$ES.indexOf(t)>>>0,1)}_$Eg(){this.constructor.elementProperties.forEach(((t,e)=>{this.hasOwnProperty(e)&&(this._$Ei.set(e,this[e]),delete this[e])}))}createRenderRoot(){var t;const r=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return((t,r)=>{i?t.adoptedStyleSheets=r.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):r.forEach((i=>{const r=document.createElement("style"),o=e.litNonce;void 0!==o&&r.setAttribute("nonce",o),r.textContent=i.cssText,t.appendChild(r)}))})(r,this.constructor.elementStyles),r}connectedCallback(){var t;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostConnected)||void 0===e?void 0:e.call(t)}))}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$ES)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostDisconnected)||void 0===e?void 0:e.call(t)}))}attributeChangedCallback(t,e,i){this._$AK(t,i)}_$EO(t,e,i=v){var r;const o=this.constructor._$Ep(t,i);if(void 0!==o&&!0===i.reflect){const n=(void 0!==(null===(r=i.converter)||void 0===r?void 0:r.toAttribute)?i.converter:m).toAttribute(e,i.type);this._$El=t,null==n?this.removeAttribute(o):this.setAttribute(o,n),this._$El=null}}_$AK(t,e){var i;const r=this.constructor,o=r._$Ev.get(t);if(void 0!==o&&this._$El!==o){const t=r.getPropertyOptions(o),n="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==(null===(i=t.converter)||void 0===i?void 0:i.fromAttribute)?t.converter:m;this._$El=o,this[o]=n.fromAttribute(e,t.type),this._$El=null}}requestUpdate(t,e,i){let r=!0;void 0!==t&&(((i=i||this.constructor.getPropertyOptions(t)).hasChanged||f)(this[t],e)?(this._$AL.has(t)||this._$AL.set(t,e),!0===i.reflect&&this._$El!==t&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(t,i))):r=!1),!this.isUpdatePending&&r&&(this._$E_=this._$Ej())}async _$Ej(){this.isUpdatePending=!0;try{await this._$E_}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var t;if(!this.isUpdatePending)return;this.hasUpdated,this._$Ei&&(this._$Ei.forEach(((t,e)=>this[e]=t)),this._$Ei=void 0);let e=!1;const i=this._$AL;try{e=this.shouldUpdate(i),e?(this.willUpdate(i),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var e;return null===(e=t.hostUpdate)||void 0===e?void 0:e.call(t)})),this.update(i)):this._$Ek()}catch(t){throw e=!1,this._$Ek(),t}e&&this._$AE(i)}willUpdate(t){}_$AE(t){var e;null===(e=this._$ES)||void 0===e||e.forEach((t=>{var e;return null===(e=t.hostUpdated)||void 0===e?void 0:e.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$Ek(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$E_}shouldUpdate(t){return!0}update(t){void 0!==this._$EC&&(this._$EC.forEach(((t,e)=>this._$EO(e,this[e],t))),this._$EC=void 0),this._$Ek()}updated(t){}firstUpdated(t){}}var y;g.finalized=!0,g.elementProperties=new Map,g.elementStyles=[],g.shadowRootOptions={mode:"open"},null==h||h({ReactiveElement:g}),(null!==(l=d.reactiveElementVersions)&&void 0!==l?l:d.reactiveElementVersions=[]).push("1.4.1");const b=window,_=b.trustedTypes,A=_?_.createPolicy("lit-html",{createHTML:t=>t}):void 0,$=`lit$${(Math.random()+"").slice(9)}$`,w="?"+$,x=`<${w}>`,C=document,E=(t="")=>C.createComment(t),S=t=>null===t||"object"!=typeof t&&"function"!=typeof t,k=Array.isArray,T=t=>k(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]),H=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,P=/-->/g,R=/>/g,O=RegExp(">|[ \t\n\f\r](?:([^\\s\"'>=/]+)([ \t\n\f\r]*=[ \t\n\f\r]*(?:[^ \t\n\f\r\"'`<>=]|(\"|')|))|$)","g"),M=/'/g,I=/"/g,z=/^(?:script|style|textarea|title)$/i,D=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),F=D(1),N=D(2),L=Symbol.for("lit-noChange"),U=Symbol.for("lit-nothing"),B=new WeakMap,j=(t,e,i)=>{var r,o;const n=null!==(r=null==i?void 0:i.renderBefore)&&void 0!==r?r:e;let s=n._$litPart$;if(void 0===s){const t=null!==(o=null==i?void 0:i.renderBefore)&&void 0!==o?o:null;n._$litPart$=s=new K(e.insertBefore(E(),t),t,void 0,null!=i?i:{})}return s._$AI(t),s},V=C.createTreeWalker(C,129,null,!1),G=(t,e)=>{const i=t.length-1,r=[];let o,n=2===e?"<svg>":"",s=H;for(let e=0;e<i;e++){const i=t[e];let a,c,l=-1,d=0;for(;d<i.length&&(s.lastIndex=d,c=s.exec(i),null!==c);)d=s.lastIndex,s===H?"!--"===c[1]?s=P:void 0!==c[1]?s=R:void 0!==c[2]?(z.test(c[2])&&(o=RegExp("</"+c[2],"g")),s=O):void 0!==c[3]&&(s=O):s===O?">"===c[0]?(s=null!=o?o:H,l=-1):void 0===c[1]?l=-2:(l=s.lastIndex-c[2].length,a=c[1],s=void 0===c[3]?O:'"'===c[3]?I:M):s===I||s===M?s=O:s===P||s===R?s=H:(s=O,o=void 0);const p=s===O&&t[e+1].startsWith("/>")?" ":"";n+=s===H?i+x:l>=0?(r.push(a),i.slice(0,l)+"$lit$"+i.slice(l)+$+p):i+$+(-2===l?(r.push(void 0),e):p)}const a=n+(t[i]||"<?>")+(2===e?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==A?A.createHTML(a):a,r]};class q{constructor({strings:t,_$litType$:e},i){let r;this.parts=[];let o=0,n=0;const s=t.length-1,a=this.parts,[c,l]=G(t,e);if(this.el=q.createElement(c,i),V.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(r=V.nextNode())&&a.length<s;){if(1===r.nodeType){if(r.hasAttributes()){const t=[];for(const e of r.getAttributeNames())if(e.endsWith("$lit$")||e.startsWith($)){const i=l[n++];if(t.push(e),void 0!==i){const t=r.getAttribute(i.toLowerCase()+"$lit$").split($),e=/([.?@])?(.*)/.exec(i);a.push({type:1,index:o,name:e[2],strings:t,ctor:"."===e[1]?Z:"?"===e[1]?Q:"@"===e[1]?tt:X})}else a.push({type:6,index:o})}for(const e of t)r.removeAttribute(e)}if(z.test(r.tagName)){const t=r.textContent.split($),e=t.length-1;if(e>0){r.textContent=_?_.emptyScript:"";for(let i=0;i<e;i++)r.append(t[i],E()),V.nextNode(),a.push({type:2,index:++o});r.append(t[e],E())}}}else if(8===r.nodeType)if(r.data===w)a.push({type:2,index:o});else{let t=-1;for(;-1!==(t=r.data.indexOf($,t+1));)a.push({type:7,index:o}),t+=$.length-1}o++}}static createElement(t,e){const i=C.createElement("template");return i.innerHTML=t,i}}function W(t,e,i=t,r){var o,n,s,a;if(e===L)return e;let c=void 0!==r?null===(o=i._$Cl)||void 0===o?void 0:o[r]:i._$Cu;const l=S(e)?void 0:e._$litDirective$;return(null==c?void 0:c.constructor)!==l&&(null===(n=null==c?void 0:c._$AO)||void 0===n||n.call(c,!1),void 0===l?c=void 0:(c=new l(t),c._$AT(t,i,r)),void 0!==r?(null!==(s=(a=i)._$Cl)&&void 0!==s?s:a._$Cl=[])[r]=c:i._$Cu=c),void 0!==c&&(e=W(t,c._$AS(t,e.values),c,r)),e}class Y{constructor(t,e){this.v=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(t){var e;const{el:{content:i},parts:r}=this._$AD,o=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:C).importNode(i,!0);V.currentNode=o;let n=V.nextNode(),s=0,a=0,c=r[0];for(;void 0!==c;){if(s===c.index){let e;2===c.type?e=new K(n,n.nextSibling,this,t):1===c.type?e=new c.ctor(n,c.name,c.strings,this,t):6===c.type&&(e=new et(n,this,t)),this.v.push(e),c=r[++a]}s!==(null==c?void 0:c.index)&&(n=V.nextNode(),s++)}return o}m(t){let e=0;for(const i of this.v)void 0!==i&&(void 0!==i.strings?(i._$AI(t,i,e),e+=i.strings.length-2):i._$AI(t[e])),e++}}class K{constructor(t,e,i,r){var o;this.type=2,this._$AH=U,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=r,this._$C_=null===(o=null==r?void 0:r.isConnected)||void 0===o||o}get _$AU(){var t,e;return null!==(e=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==e?e:this._$C_}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=W(this,t,e),S(t)?t===U||null==t||""===t?(this._$AH!==U&&this._$AR(),this._$AH=U):t!==this._$AH&&t!==L&&this.$(t):void 0!==t._$litType$?this.T(t):void 0!==t.nodeType?this.k(t):T(t)?this.O(t):this.$(t)}S(t,e=this._$AB){return this._$AA.parentNode.insertBefore(t,e)}k(t){this._$AH!==t&&(this._$AR(),this._$AH=this.S(t))}$(t){this._$AH!==U&&S(this._$AH)?this._$AA.nextSibling.data=t:this.k(C.createTextNode(t)),this._$AH=t}T(t){var e;const{values:i,_$litType$:r}=t,o="number"==typeof r?this._$AC(t):(void 0===r.el&&(r.el=q.createElement(r.h,this.options)),r);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===o)this._$AH.m(i);else{const t=new Y(o,this),e=t.p(this.options);t.m(i),this.k(e),this._$AH=t}}_$AC(t){let e=B.get(t.strings);return void 0===e&&B.set(t.strings,e=new q(t)),e}O(t){k(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,r=0;for(const o of t)r===e.length?e.push(i=new K(this.S(E()),this.S(E()),this,this.options)):i=e[r],i._$AI(o),r++;r<e.length&&(this._$AR(i&&i._$AB.nextSibling,r),e.length=r)}_$AR(t=this._$AA.nextSibling,e){var i;for(null===(i=this._$AP)||void 0===i||i.call(this,!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){var e;void 0===this._$AM&&(this._$C_=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}}class X{constructor(t,e,i,r,o){this.type=1,this._$AH=U,this._$AN=void 0,this.element=t,this.name=e,this._$AM=r,this.options=o,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=U}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,i,r){const o=this.strings;let n=!1;if(void 0===o)t=W(this,t,e,0),n=!S(t)||t!==this._$AH&&t!==L,n&&(this._$AH=t);else{const r=t;let s,a;for(t=o[0],s=0;s<o.length-1;s++)a=W(this,r[i+s],e,s),a===L&&(a=this._$AH[s]),n||(n=!S(a)||a!==this._$AH[s]),a===U?t=U:t!==U&&(t+=(null!=a?a:"")+o[s+1]),this._$AH[s]=a}n&&!r&&this.P(t)}P(t){t===U?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class Z extends X{constructor(){super(...arguments),this.type=3}P(t){this.element[this.name]=t===U?void 0:t}}const J=_?_.emptyScript:"";class Q extends X{constructor(){super(...arguments),this.type=4}P(t){t&&t!==U?this.element.setAttribute(this.name,J):this.element.removeAttribute(this.name)}}class tt extends X{constructor(t,e,i,r,o){super(t,e,i,r,o),this.type=5}_$AI(t,e=this){var i;if((t=null!==(i=W(this,t,e,0))&&void 0!==i?i:U)===L)return;const r=this._$AH,o=t===U&&r!==U||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,n=t!==U&&(r===U||o);o&&this.element.removeEventListener(this.name,this,r),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,i;"function"==typeof this._$AH?this._$AH.call(null!==(i=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==i?i:this.element,t):this._$AH.handleEvent(t)}}class et{constructor(t,e,i){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(t){W(this,t)}}const it={A:"$lit$",M:$,C:w,L:1,R:G,D:Y,V:T,I:W,H:K,N:X,U:Q,B:tt,F:Z,W:et},rt=b.litHtmlPolyfillSupport;var ot,nt;null==rt||rt(q,K),(null!==(y=b.litHtmlVersions)&&void 0!==y?y:b.litHtmlVersions=[]).push("2.3.1");class st extends g{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,e;const i=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=i.firstChild),i}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=j(e,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!1)}render(){return L}}st.finalized=!0,st._$litElement$=!0,null===(ot=globalThis.litElementHydrateSupport)||void 0===ot||ot.call(globalThis,{LitElement:st});const at=globalThis.litElementPolyfillSupport;null==at||at({LitElement:st});(null!==(nt=globalThis.litElementVersions)&&void 0!==nt?nt:globalThis.litElementVersions=[]).push("3.2.2");const ct=t=>e=>"function"==typeof e?((t,e)=>(customElements.define(t,e),e))(t,e):((t,e)=>{const{kind:i,elements:r}=e;return{kind:i,elements:r,finisher(e){customElements.define(t,e)}}})(t,e),lt=(t,e)=>"method"===e.kind&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(i){i.createProperty(e.key,t)}}:{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:e.key,initializer(){"function"==typeof e.initializer&&(this[e.key]=e.initializer.call(this))},finisher(i){i.createProperty(e.key,t)}};function dt(t){return(e,i)=>void 0!==i?((t,e,i)=>{e.constructor.createProperty(i,t)})(t,e,i):lt(t,e)}function pt(t){return dt({...t,state:!0})}const ut=({finisher:t,descriptor:e})=>(i,r)=>{var o;if(void 0===r){const r=null!==(o=i.originalKey)&&void 0!==o?o:i.key,n=null!=e?{kind:"method",placement:"prototype",key:r,descriptor:e(i.key)}:{...i,key:r};return null!=t&&(n.finisher=function(e){t(e,r)}),n}{const o=i.constructor;void 0!==e&&Object.defineProperty(i,r,e(r)),null==t||t(o,r)}};function ht(t){return ut({finisher:(e,i)=>{Object.assign(e.prototype[i],t)}})}function mt(t,e){return ut({descriptor:i=>{const r={get(){var e,i;return null!==(i=null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(t))&&void 0!==i?i:null},enumerable:!0,configurable:!0};if(e){const e="symbol"==typeof i?Symbol():"__"+i;r.get=function(){var i,r;return void 0===this[e]&&(this[e]=null!==(r=null===(i=this.renderRoot)||void 0===i?void 0:i.querySelector(t))&&void 0!==r?r:null),this[e]}}return r}})}var ft;null===(ft=window.HTMLSlotElement)||void 0===ft||ft.prototype.assignedElements;const vt=Symbol.for(""),gt=t=>{if((null==t?void 0:t.r)===vt)return null==t?void 0:t._$litStatic$},yt=new Map,bt=t=>(e,...i)=>{const r=i.length;let o,n;const s=[],a=[];let c,l=0,d=!1;for(;l<r;){for(c=e[l];l<r&&void 0!==(n=i[l],o=gt(n));)c+=o+e[++l],d=!0;a.push(n),s.push(c),l++}if(l===r&&s.push(e[r]),d){const t=s.join("$$lit$$");void 0===(e=yt.get(t))&&(s.raw=s,yt.set(t,e=s)),i=a}return t(e,...i)},{H:_t}=(bt(F),bt(N),it),At=(t,e)=>void 0===e?void 0!==(null==t?void 0:t._$litType$):(null==t?void 0:t._$litType$)===e,$t=t=>void 0===t.strings,wt=()=>document.createComment(""),xt=(t,e,i)=>{var r;const o=t._$AA.parentNode,n=void 0===e?t._$AB:e._$AA;if(void 0===i){const e=o.insertBefore(wt(),n),r=o.insertBefore(wt(),n);i=new _t(e,r,t,t.options)}else{const e=i._$AB.nextSibling,s=i._$AM,a=s!==t;if(a){let e;null===(r=i._$AQ)||void 0===r||r.call(i,t),i._$AM=t,void 0!==i._$AP&&(e=t._$AU)!==s._$AU&&i._$AP(e)}if(e!==n||a){let t=i._$AA;for(;t!==e;){const e=t.nextSibling;o.insertBefore(t,n),t=e}}}return i},Ct=(t,e,i=t)=>(t._$AI(e,i),t),Et={},St=(t,e=Et)=>t._$AH=e,kt=t=>t._$AH,Tt=t=>{var e;null===(e=t._$AP)||void 0===e||e.call(t,!1,!0);let i=t._$AA;const r=t._$AB.nextSibling;for(;i!==r;){const t=i.nextSibling;i.remove(),i=t}},Ht=t=>{t._$AR()},Pt=1,Rt=2,Ot=3,Mt=4,It=6,zt=t=>(...e)=>({_$litDirective$:t,values:e});class Dt{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,i){this._$Ct=t,this._$AM=e,this._$Ci=i}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}const Ft=(t,e)=>{var i,r;const o=t._$AN;if(void 0===o)return!1;for(const t of o)null===(r=(i=t)._$AO)||void 0===r||r.call(i,e,!1),Ft(t,e);return!0},Nt=t=>{let e,i;do{if(void 0===(e=t._$AM))break;i=e._$AN,i.delete(t),t=e}while(0===(null==i?void 0:i.size))},Lt=t=>{for(let e;e=t._$AM;t=e){let i=e._$AN;if(void 0===i)e._$AN=i=new Set;else if(i.has(t))break;i.add(t),jt(e)}};function Ut(t){void 0!==this._$AN?(Nt(this),this._$AM=t,Lt(this)):this._$AM=t}function Bt(t,e=!1,i=0){const r=this._$AH,o=this._$AN;if(void 0!==o&&0!==o.size)if(e)if(Array.isArray(r))for(let t=i;t<r.length;t++)Ft(r[t],!1),Nt(r[t]);else null!=r&&(Ft(r,!1),Nt(r));else Ft(this,t)}const jt=t=>{var e,i,r,o;t.type==Rt&&(null!==(e=(r=t)._$AP)&&void 0!==e||(r._$AP=Bt),null!==(i=(o=t)._$AQ)&&void 0!==i||(o._$AQ=Ut))};class Vt extends Dt{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,i){super._$AT(t,e,i),Lt(this),this.isConnected=t._$AU}_$AO(t,e=!0){var i,r;t!==this.isConnected&&(this.isConnected=t,t?null===(i=this.reconnected)||void 0===i||i.call(this):null===(r=this.disconnected)||void 0===r||r.call(this)),e&&(Ft(this,t),Nt(this))}setValue(t){if($t(this._$Ct))this._$Ct._$AI(t,this);else{const e=[...this._$Ct._$AH];e[this._$Ci]=t,this._$Ct._$AI(e,this,0)}}disconnected(){}reconnected(){}}class Gt{constructor(t){this.Y=t}disconnect(){this.Y=void 0}reconnect(t){this.Y=t}deref(){return this.Y}}class qt{constructor(){this.Z=void 0,this.q=void 0}get(){return this.Z}pause(){var t;null!==(t=this.Z)&&void 0!==t||(this.Z=new Promise((t=>this.q=t)))}resume(){var t;null===(t=this.q)||void 0===t||t.call(this),this.Z=this.q=void 0}}class Wt extends Vt{constructor(){super(...arguments),this._$CK=new Gt(this),this._$CX=new qt}render(t,e){return L}update(t,[e,i]){if(this.isConnected||this.disconnected(),e===this._$CJ)return;this._$CJ=e;let r=0;const{_$CK:o,_$CX:n}=this;return(async(t,e)=>{for await(const i of t)if(!1===await e(i))return})(e,(async t=>{for(;n.get();)await n.get();const s=o.deref();if(void 0!==s){if(s._$CJ!==e)return!1;void 0!==i&&(t=i(t,r)),s.commitValue(t,r),r++}return!0})),L}commitValue(t,e){this.setValue(t)}disconnected(){this._$CK.disconnect(),this._$CX.pause()}reconnected(){this._$CK.reconnect(this),this._$CX.resume()}}zt(Wt),zt(class extends Wt{constructor(t){if(super(t),t.type!==Rt)throw Error("asyncAppend can only be used in child expressions")}update(t,e){return this._$Ctt=t,super.update(t,e)}commitValue(t,e){0===e&&Ht(this._$Ctt);const i=xt(this._$Ctt);Ct(i,t)}}),zt(class extends Dt{constructor(t){super(t),this.et=new WeakMap}render(t){return[t]}update(t,[e]){if(At(this.it)&&(!At(e)||this.it.strings!==e.strings)){const e=kt(t).pop();let i=this.et.get(this.it.strings);if(void 0===i){const t=document.createDocumentFragment();i=j(U,t),i.setConnected(!1),this.et.set(this.it.strings,i)}St(i,[e]),xt(i,void 0,e)}if(At(e)){if(!At(this.it)||this.it.strings!==e.strings){const i=this.et.get(e.strings);if(void 0!==i){const e=kt(i).pop();Ht(t),xt(t,void 0,e),St(t,[e])}}this.it=e}else this.it=void 0;return this.render(e)}});const Yt=zt(class extends Dt{constructor(t){var e;if(super(t),t.type!==Pt||"class"!==t.name||(null===(e=t.strings)||void 0===e?void 0:e.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return" "+Object.keys(t).filter((e=>t[e])).join(" ")+" "}update(t,[e]){var i,r;if(void 0===this.nt){this.nt=new Set,void 0!==t.strings&&(this.st=new Set(t.strings.join(" ").split(/\s/).filter((t=>""!==t))));for(const t in e)e[t]&&!(null===(i=this.st)||void 0===i?void 0:i.has(t))&&this.nt.add(t);return this.render(e)}const o=t.element.classList;this.nt.forEach((t=>{t in e||(o.remove(t),this.nt.delete(t))}));for(const t in e){const i=!!e[t];i===this.nt.has(t)||(null===(r=this.st)||void 0===r?void 0:r.has(t))||(i?(o.add(t),this.nt.add(t)):(o.remove(t),this.nt.delete(t)))}return L}}),Kt={};zt(class extends Dt{constructor(){super(...arguments),this.ot=Kt}render(t,e){return e()}update(t,[e,i]){if(Array.isArray(e)){if(Array.isArray(this.ot)&&this.ot.length===e.length&&e.every(((t,e)=>t===this.ot[e])))return L}else if(this.ot===e)return L;return this.ot=Array.isArray(e)?Array.from(e):e,this.render(e,i)}}),zt(class extends Dt{constructor(){super(...arguments),this.key=U}render(t,e){return this.key=t,e}update(t,[e,i]){return e!==this.key&&(St(t),this.key=e),i}}),zt(class extends Dt{constructor(t){if(super(t),t.type!==Ot&&t.type!==Pt&&t.type!==Mt)throw Error("The `live` directive is not allowed on child or event bindings");if(!$t(t))throw Error("`live` bindings can only contain a single expression")}render(t){return t}update(t,[e]){if(e===L||e===U)return e;const i=t.element,r=t.name;if(t.type===Ot){if(e===i[r])return L}else if(t.type===Mt){if(!!e===i.hasAttribute(r))return L}else if(t.type===Pt&&i.getAttribute(r)===e+"")return L;return St(t),e}});const Xt=new WeakMap,Zt=(zt(class extends Vt{render(t){return U}update(t,[e]){var i;const r=e!==this.Y;return r&&void 0!==this.Y&&this.rt(void 0),(r||this.lt!==this.dt)&&(this.Y=e,this.ct=null===(i=t.options)||void 0===i?void 0:i.host,this.rt(this.dt=t.element)),U}rt(t){var e;if("function"==typeof this.Y){const i=null!==(e=this.ct)&&void 0!==e?e:globalThis;let r=Xt.get(i);void 0===r&&(r=new WeakMap,Xt.set(i,r)),void 0!==r.get(this.Y)&&this.Y.call(this.ct,void 0),r.set(this.Y,t),void 0!==t&&this.Y.call(this.ct,t)}else this.Y.value=t}get lt(){var t,e,i;return"function"==typeof this.Y?null===(e=Xt.get(null!==(t=this.ct)&&void 0!==t?t:globalThis))||void 0===e?void 0:e.get(this.Y):null===(i=this.Y)||void 0===i?void 0:i.value}disconnected(){this.lt===this.dt&&this.rt(void 0)}reconnected(){this.rt(this.dt)}}),(t,e,i)=>{const r=new Map;for(let o=e;o<=i;o++)r.set(t[o],o);return r}),Jt=(zt(class extends Dt{constructor(t){if(super(t),t.type!==Rt)throw Error("repeat() can only be used in text expressions")}ht(t,e,i){let r;void 0===i?i=e:void 0!==e&&(r=e);const o=[],n=[];let s=0;for(const e of t)o[s]=r?r(e,s):s,n[s]=i(e,s),s++;return{values:n,keys:o}}render(t,e,i){return this.ht(t,e,i).values}update(t,[e,i,r]){var o;const n=kt(t),{values:s,keys:a}=this.ht(e,i,r);if(!Array.isArray(n))return this.ut=a,s;const c=null!==(o=this.ut)&&void 0!==o?o:this.ut=[],l=[];let d,p,u=0,h=n.length-1,m=0,f=s.length-1;for(;u<=h&&m<=f;)if(null===n[u])u++;else if(null===n[h])h--;else if(c[u]===a[m])l[m]=Ct(n[u],s[m]),u++,m++;else if(c[h]===a[f])l[f]=Ct(n[h],s[f]),h--,f--;else if(c[u]===a[f])l[f]=Ct(n[u],s[f]),xt(t,l[f+1],n[u]),u++,f--;else if(c[h]===a[m])l[m]=Ct(n[h],s[m]),xt(t,n[u],n[h]),h--,m++;else if(void 0===d&&(d=Zt(a,m,f),p=Zt(c,u,h)),d.has(c[u]))if(d.has(c[h])){const e=p.get(a[m]),i=void 0!==e?n[e]:null;if(null===i){const e=xt(t,n[u]);Ct(e,s[m]),l[m]=e}else l[m]=Ct(i,s[m]),xt(t,n[u],i),n[e]=null;m++}else Tt(n[h]),h--;else Tt(n[u]),u++;for(;m<=f;){const e=xt(t,l[f+1]);Ct(e,s[m]),l[m++]=e}for(;u<=h;){const t=n[u++];null!==t&&Tt(t)}return this.ut=a,St(t,l),L}}),zt(class extends Dt{constructor(t){var e;if(super(t),t.type!==Pt||"style"!==t.name||(null===(e=t.strings)||void 0===e?void 0:e.length)>2)throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(t){return Object.keys(t).reduce(((e,i)=>{const r=t[i];return null==r?e:e+`${i=i.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${r};`}),"")}update(t,[e]){const{style:i}=t.element;if(void 0===this.vt){this.vt=new Set;for(const t in e)this.vt.add(t);return this.render(e)}this.vt.forEach((t=>{null==e[t]&&(this.vt.delete(t),t.includes("-")?i.removeProperty(t):i[t]="")}));for(const t in e){const r=e[t];null!=r&&(this.vt.add(t),t.includes("-")?i.setProperty(t,r):i[t]=r)}return L}}));zt(class extends Dt{constructor(t){if(super(t),t.type!==Rt)throw Error("templateContent can only be used in child bindings")}render(t){return this.ft===t?L:(this.ft=t,document.importNode(t.content,!0))}});class Qt extends Dt{constructor(t){if(super(t),this.it=U,t.type!==Rt)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===U||null==t)return this._t=void 0,this.it=t;if(t===L)return t;if("string"!=typeof t)throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.it)return this._t;this.it=t;const e=[t];return e.raw=e,this._t={_$litType$:this.constructor.resultType,strings:e,values:[]}}}Qt.directiveName="unsafeHTML",Qt.resultType=1;zt(Qt);class te extends Qt{}te.directiveName="unsafeSVG",te.resultType=2;zt(te);const ee=t=>!(t=>null===t||"object"!=typeof t&&"function"!=typeof t)(t)&&"function"==typeof t.then;zt(class extends Vt{constructor(){super(...arguments),this._$Cwt=1073741823,this._$Cyt=[],this._$CK=new Gt(this),this._$CX=new qt}render(...t){var e;return null!==(e=t.find((t=>!ee(t))))&&void 0!==e?e:L}update(t,e){const i=this._$Cyt;let r=i.length;this._$Cyt=e;const o=this._$CK,n=this._$CX;this.isConnected||this.disconnected();for(let t=0;t<e.length&&!(t>this._$Cwt);t++){const s=e[t];if(!ee(s))return this._$Cwt=t,s;t<r&&s===i[t]||(this._$Cwt=1073741823,r=0,Promise.resolve(s).then((async t=>{for(;n.get();)await n.get();const e=o.deref();if(void 0!==e){const i=e._$Cyt.indexOf(s);i>-1&&i<e._$Cwt&&(e._$Cwt=i,e.setValue(t))}})))}return L}disconnected(){this._$CK.disconnect(),this._$CX.pause()}reconnected(){this._$CK.reconnect(this),this._$CX.resume()}});const ie=U,re=ct;class oe extends st{initialized(){}connected(){}disconnected(){}get template(){return ie}render(){return this.template}firstUpdated(t){super.firstUpdated(t),this.initialized()}connectedCallback(){super.connectedCallback(),this.connected()}disconnectedCallback(){super.disconnectedCallback(),this.disconnected()}}const ne=()=>t=>{const e=new t;se.handlers.add(e)};class se extends Dt{constructor(t){if(super(t),t.type!==It)throw new Error("observeMutation can only be used on an element");const e=t;this.element=e.element}render(t){for(const[e,i]of Object.entries(t)){([...se.handlers].find((t=>t.handles(this.element,[e,i])))??se.defaultHandler).apply(this.element,[e,i])}}}se.handlers=new Set,se.defaultHandler=new class{handles(){return!0}apply(t,[e,i]){t.style[e]=null==i?"":i}};const ae=zt(se);var ce;let le=ce=class{static getProportion(t){return Number(t.replace(ce.regex,"$1")||1)}handles(t,[e,i]){return ce.supportedKeys.has(e)&&ce.regex.test(i)}apply(t,[,e]){const i=ce.getProportion(e);t.style.flexGrow=String(i)}};le.supportedKeys=new Set(["width","height"]),le.regex=/^\s*(0|[1-9][0-9]*)?\s*\*\s*$/,le=ce=t([ne()],le);let de=class{handles(t,[e]){return e.startsWith("--")}apply(t,[e,i]){t.style.setProperty(e,i)}};de=t([ne()],de);const pe=new Map([[Array,(t,e)=>[...e??[],...t]],[Set,(t,e)=>new Set([...e??[],...t])],[Map,(t,e)=>new Map([...e??[],...t])]]),ue=(t,e)=>e?Object.assign(t,e):t;const he=({constructorPropertyKey:t,prototype:e,initialValue:i,lifecycleHooks:r,inheritanceHandler:o})=>{const n=e,s=e.constructor,a=Object.getOwnPropertyDescriptor(s,t)?.value;if(a)return a;const c=o??function(t){const e="constructor"in t?t.constructor:void 0;return pe.get(e)??ue}(i),l=c(i,s[t]);Object.defineProperty(s,t,{value:l});for(const[t,e]of r??[]){const i=n[t];n[t]=function(...t){i.call(this,...t),e.call(this,l,...t)}}return l},me=Symbol("updatedObservers"),fe=t=>(e,i)=>{he({prototype:e,constructorPropertyKey:me,initialValue:new Map,lifecycleHooks:new Map([["updated",function(t,e){for(const[i,r]of e){const e=i,o=t?.get(e);void 0!==o&&o.call(this,this[e],r)}}]])}).set(i,t)},ve=t=>(e,i)=>(t?.updated&&fe(t.updated)(e,i),dt(t)(e,i));const ge=Symbol("eventListeners"),ye=(...t)=>(e,i,r)=>{const o=function(t){const e=(t=>"string"==typeof t[0])(t);return{type:e?t[0]:t[0].type,target:e?void 0:t[0].target,options:e?t[1]:t[0].options}}(t);he({prototype:e,constructorPropertyKey:ge,initialValue:new Map}).set(`${o.type}.${i}`,{descriptor:r,propertyKey:i,...o})},be=st.prototype.connectedCallback;st.prototype.connectedCallback=function(){be.call(this);const t=Ae(this);for(const{type:e,target:i,options:r,descriptor:o,propertyKey:n}of t?.values()??[])xe.call(this,n,o),$e.call(this,i)?.addEventListener(e,we.call(this,n),r)};const _e=st.prototype.disconnectedCallback;function Ae(t){return t.constructor[ge]}function $e(t){return"function"==typeof t?t.call(this):t??this}function we(t){return Object.getOwnPropertyDescriptor(this,Ce(t))?.value}function xe(t,e){const i=e?"function"==typeof e.get?e.get:e.value:Object.getOwnPropertyDescriptor(this,t)?.value;if(!1===Ee(i))throw new TypeError(`${this.constructor}.${t} is not a function`);Object.defineProperty(this,Ce(t),{value:i.bind(this),configurable:!0,enumerable:!1,writable:!1})}st.prototype.disconnectedCallback=function(){_e.call(this);const t=Ae(this);for(const{type:e,target:i,options:r,propertyKey:o}of t?.values()??[])$e.call(this,i)?.removeEventListener(e,we.call(this,o),r)};const Ce=t=>`$BOUND_${t}$`,Ee=t=>{const e="function"==typeof t,i="object"==typeof t&&null!==t&&"handleEvent"in t&&"function"==typeof t.handleEvent;return e||i};class Se{constructor(t,e,i){this.element=t,this.type=e,this.options=i,this.handlersMap=new Map}dispatch(t){this.element.dispatchEvent(new CustomEvent(this.type,{detail:t,...this.options}))}subscribe(t){const e=e=>t(e.detail);this.element.addEventListener(this.type,e),this.handlersMap.set(t,e)}unsubscribe(t){const e=this.handlersMap.get(t);e&&this.element.removeEventListener(this.type,e),this.handlersMap.delete(t)}}class ke{constructor(){this.handlers=new Set}subscribe(t){this.handlers.add(t)}unsubscribe(t){this.handlers.delete(t)}dispatch(t){for(const e of this.handlers)e(t)}}class Te extends class{constructor(t){this.host=t,this.host.addController(this)}}{constructor(t,e){super(t),this.host=t,this.slotChangeCallback=e,this.mutationObserver=new MutationObserver(this.handleMutation.bind(this)).observe(this.host,{childList:!0,subtree:!0}),this.handleChange=()=>{var t;this.host.requestUpdate(),null===(t=this.slotChangeCallback)||void 0===t||t.call(this)}}getAssignedNodes(t){var e;const i=null===(e=this.host.shadowRoot)||void 0===e?void 0:e.querySelector(t?`slot[name="${t}"]`:"slot:not([name])");return i?this.extractNodesFromSlot(i):this.extractNodesFromChildren(t)}hasAssignedNodes(t){return this.getAssignedNodes(t).length>0}hasAssignedContent(t){return this.getAssignedNodes(t).some((t=>{var e;return t.nodeType===Node.TEXT_NODE&&(null===(e=t.textContent)||void 0===e?void 0:e.trim())||t.nodeType===Node.ELEMENT_NODE}))}getAssignedElements(t){return this.getAssignedNodes(t).filter((t=>t instanceof Element))}hasAssignedElements(t){return this.getAssignedElements(t).length>0}extractNodesFromSlot(t){return t.assignedNodes().flatMap((t=>t instanceof HTMLSlotElement?this.extractNodesFromSlot(t):[t]))}extractNodesFromChildren(t){return[...this.host.childNodes].filter((t=>{var e;return t instanceof Element||t instanceof Text&&!!(null===(e=t.textContent)||void 0===e?void 0:e.trim())})).filter((e=>e instanceof Element?e.slot===t:!t)).flatMap((t=>t instanceof HTMLSlotElement?t.assignedNodes():[t]))}hostConnected(){var t;null===(t=this.host.shadowRoot)||void 0===t||t.addEventListener("slotchange",this.handleChange)}hostDisconnected(){var t;null===(t=this.host.shadowRoot)||void 0===t||t.removeEventListener("slotchange",this.handleChange)}handleMutation(t){t.some((t=>"childList"===t.type))&&this.handleChange()}}let He=class extends oe{constructor(){super(...arguments),this.typography="heading3"}static get styles(){return a`:host{display:block}:host([typography=heading1]){font-size:min(2.5em,36px);letter-spacing:-.75px;font-weight:300}:host([typography=heading2]){font-size:min(2em,30px);letter-spacing:-.5px;font-weight:300}:host([typography=heading3]){font-size:min(1.8em,24px);letter-spacing:-.25px;font-weight:400}:host([typography=heading4]){font-size:min(1.5em,18px);font-weight:400}:host([typography=heading5]){font-size:min(1.17em,16px);font-weight:500}:host([typography=heading6]){font-size:min(1em,14px);letter-spacing:.15px;font-weight:500}:host([typography=subtitle1]){font-size:min(1.15em,18px);letter-spacing:.15px;font-weight:400}:host([typography=subtitle2]){font-size:min(1em,14px);letter-spacing:.1px;font-weight:400}`}get template(){return F`<slot></slot>`}};var Pe;t([ve({reflect:!0})],He.prototype,"typography",void 0),He=t([re("mo-heading")],He);let Re=Pe=class extends oe{get direction(){var t;return(null===(t=[...Pe.flexDirectionByDirections].find((([,t])=>this.style.flexDirection===t)))||void 0===t?void 0:t[0])||"vertical"}set direction(t){this.style.flexDirection=Pe.flexDirectionByDirections.get(t)||"column"}get wrap(){return this.style.flexWrap}set wrap(t){this.style.flexWrap=t}get gap(){return this.style.gap}set gap(t){this.style.gap=t}get justifyItems(){return this.style.justifyItems}set justifyItems(t){this.style.justifyItems=t}get justifyContent(){return this.style.justifyContent}set justifyContent(t){this.style.justifyContent=t}get alignItems(){return this.style.alignItems}set alignItems(t){this.style.alignItems=t}get alignContent(){return this.style.alignContent}set alignContent(t){this.style.alignContent=t}static get styles(){return a`:host{display:flex;flex-direction:column;flex-wrap:nowrap}`}get template(){return F`<slot></slot>`}};Re.flexDirectionByDirections=new Map([["horizontal","row"],["horizontal-reversed","row-reverse"],["vertical","column"],["vertical-reversed","column-reverse"]]),t([ve()],Re.prototype,"direction",null),t([ve()],Re.prototype,"wrap",null),t([ve()],Re.prototype,"gap",null),t([ve()],Re.prototype,"justifyItems",null),t([ve()],Re.prototype,"justifyContent",null),t([ve()],Re.prototype,"alignItems",null),t([ve()],Re.prototype,"alignContent",null),Re=Pe=t([re("mo-flex")],Re);let Oe=class extends oe{constructor(){super(...arguments),this.type="filled",this.slotController=new Te(this)}static get styles(){return a`:host{display:block;border-radius:var(--mo-border-radius,4px)}:host([type="${s("filled")}"]){background:var(--mo-color-surface,#fff);box-shadow:var(--mo-shadow,rgba(95,81,78,.4) 0 1px 2px 0,rgba(95,81,78,.2) 0 1px 3px 1px)}:host([type="${s("outlined")}"]){border:1px solid var(--mo-color-transparent-gray-3,rgba(0,0,0,.12))}slot[name=header]{display:flex;gap:6px;padding:var(--mo-card-header-padding,16px)}slot[name=heading]{display:block;flex:1}slot[name=media]::slotted(:first-child),slot[name=media]>:first-child{border-radius:var(--mo-border-radius,4px) var(--mo-border-radius,4px) 0 0;display:block;background-size:cover;background-repeat:no-repeat;background-position:center center;width:100%;object-fit:cover}slot:not([name]){display:block;flex:1}div[part=avatar]{height:40px;width:40px;aspect-ratio:1/1;display:flex;user-select:none;justify-content:center;align-items:center;border-radius:50%;font-size:18px;background:var(--mo-card-avatar-background,var(--mo-color-accent,#0077c8));color:var(--mo-card-avatar-color,var(--mo-color-on-accent,#fff))}:host([hasBody]) slot:not([name]){padding:var(--mo-card-body-padding,16px)}:host([hasBody][hasHeader]) slot:not([name]){padding:var(--mo-card-body-padding,0 16px 16px 16px)}slot[name=footer]{display:block;padding:var(--mo-card-footer-padding,8px)}`}get template(){return F`<mo-flex ${ae({width:"100%",height:"100%"})}>${this.mediaTemplate} ${this.headerTemplate} ${this.bodyTemplate} ${this.footerTemplate}</mo-flex>`}get mediaTemplate(){return!!this.image||this.slotController.hasAssignedElements("media")?F`<slot part="media" name="media">${this.image?F`<img part="media" src="${this.image}">`:ie}</slot>`:ie}get headerTemplate(){const t=this.slotController.hasAssignedElements("header")||!!this.avatar||!!this.heading||!!this.subHeading||this.slotController.hasAssignedElements("avatar")||this.slotController.hasAssignedElements("heading")||this.slotController.hasAssignedElements("subHeading")||this.slotController.hasAssignedElements("action");return t?this.setAttribute("hasHeader",""):this.removeAttribute("hasHeader"),t?F`<slot part="header" name="header">${this.defaultHeaderAvatarTemplate}<mo-flex justifyContent="space-around" ${ae({width:"*"})}>${this.defaultHeaderHeadingTemplate} ${this.defaultHeaderSubHeadingTemplate}</mo-flex>${this.defaultHeaderActionTemplate}</slot>`:ie}get defaultHeaderAvatarTemplate(){return F`<slot name="avatar">${this.avatar?F`<div part="avatar" ${ae({marginInlineEnd:"6px"})}>${this.avatar}</div>`:ie}</slot>`}get defaultHeaderHeadingTemplate(){return F`<slot name="heading">${this.heading?F`<mo-heading part="heading" typography="heading4" ${ae({fontWeight:"500"})}>${this.heading}</mo-heading>`:ie}</slot>`}get defaultHeaderSubHeadingTemplate(){return F`<slot name="subHeading">${this.subHeading?F`<mo-heading part="subHeading" typography="heading6" ${ae({fontWeight:"400",color:"rgb(121, 121, 121)"})}>${this.subHeading}</mo-heading>`:ie}</slot>`}get defaultHeaderActionTemplate(){return F`<slot name="action"></slot>`}get bodyTemplate(){return this.slotController.hasAssignedContent("")?this.setAttribute("hasBody",""):this.removeAttribute("hasBody"),F`<slot></slot>`}get footerTemplate(){return this.slotController.hasAssignedElements("footer")?F`<slot part="footer" name="footer"></slot>`:ie}};t([ve()],Oe.prototype,"type",void 0),t([ve()],Oe.prototype,"heading",void 0),t([ve()],Oe.prototype,"subHeading",void 0),t([ve()],Oe.prototype,"avatar",void 0),t([ve()],Oe.prototype,"image",void 0),Oe=t([re("mo-card")],Oe);let Me=class extends oe{static get instance(){var t;return null!==(t=document.querySelector("mo-tooltip-host"))&&void 0!==t?t:document.body}get template(){return F`<slot></slot>`}};var Ie;Me=t([re("mo-tooltip-host")],Me);let ze=Ie=class extends oe{constructor(t){super(),this.position="bottom",this.rich=!1,this.visible=!1,this.hover=!1,this.anchorHover=!1,this.anchorFocused=!1,this.handleAnchorFocus=t=>{var e;(null===(e=t.sourceCapabilities)||void 0===e?void 0:e.firesTouchEvents)||(this.anchorFocused=!0,this.updatePositionAndVisibility())},this.handleAnchorBlur=()=>{this.anchorFocused=!1,this.updatePositionAndVisibility()},this.handleAnchorPointerEnter=()=>{this.anchorHover=!0,this.updatePositionAndVisibility()},this.handleAnchorPointerMove=()=>{this.updatePosition()},this.handleAnchorPointerLeave=()=>{this.anchorHover=!1,this.updatePositionAndVisibility()},this.handleSlotChange=()=>{this.updatePosition(),this.rich=this.childElementCount>0},this.anchor=t}handlePointerEnter(){this.anchorHover&&(this.hover=!0,this.updatePositionAndVisibility())}handlePointerLeave(){this.hover=!1,this.updatePositionAndVisibility()}connected(){var t,e,i,r,o,n,s;Ie.instancesContainer.add(this),null===(t=this.anchor)||void 0===t||t.addEventListener("focus",this.handleAnchorFocus),null===(e=this.anchor)||void 0===e||e.addEventListener("blur",this.handleAnchorBlur),null===(i=this.anchor)||void 0===i||i.addEventListener("pointerenter",this.handleAnchorPointerEnter),null===(r=this.anchor)||void 0===r||r.addEventListener("pointermove",this.handleAnchorPointerMove),null===(o=this.anchor)||void 0===o||o.addEventListener("pointerleave",this.handleAnchorPointerLeave),null===(n=this.anchor)||void 0===n||n.addEventListener("pointerup",this.handleAnchorPointerLeave),null===(s=this.anchor)||void 0===s||s.addEventListener("click",this.handleAnchorPointerLeave)}disconnected(){var t,e,i,r,o,n;Ie.instancesContainer.delete(this),null===(t=this.anchor)||void 0===t||t.removeEventListener("focus",this.handleAnchorFocus),null===(e=this.anchor)||void 0===e||e.removeEventListener("blur",this.handleAnchorBlur),null===(i=this.anchor)||void 0===i||i.removeEventListener("pointerenter",this.handleAnchorPointerEnter),null===(r=this.anchor)||void 0===r||r.removeEventListener("pointermove",this.handleAnchorPointerMove),null===(o=this.anchor)||void 0===o||o.removeEventListener("pointerleave",this.handleAnchorPointerLeave),null===(n=this.anchor)||void 0===n||n.removeEventListener("pointerend",this.handleAnchorPointerLeave)}updatePositionAndVisibility(){this.updatePosition(),this.updateVisibility()}updateVisibility(){const t=this.anchorHover||this.hover||this.anchorFocused;this.visible=t,t&&(Ie.visibleInstance=this);for(const t of[...Ie.instancesContainer.values()].filter((t=>t!==this)))t.visible=Ie.visibleInstance===t}updatePosition(){const{left:t,width:e,top:i,height:r}=this.anchor.getBoundingClientRect(),{height:o,width:n}=this.getBoundingClientRect(),s=t=>Math.max(0,Math.min(t,window.innerWidth-n)),a=t=>Math.max(0,Math.min(t,window.innerHeight-o));switch(this.position){case"top":this.style.left=`${s(t+e/2-n/2)}px`,this.style.top=`${a(i-o)}px`;break;case"bottom":this.style.left=`${s(t+e/2-n/2)}px`,this.style.top=`${a(i+r)}px`;break;case"left":this.style.left=`${s(t-n)}px`,this.style.top=`${a(i+r/2-o/2)}px`;break;case"right":this.style.left=`${s(t+e)}px`,this.style.top=`${a(i+r/2-o/2)}px`}}static get styles(){return a`:host{pointer-events:none;position:fixed;transition-duration:.2s;transition-property:opacity,transform;transition-timing-function:ease-in-out;transform-origin:right center;opacity:0;z-index:99;border-radius:var(--mo-toolbar-border-radius,var(--mo-border-radius,4px))}:host([position="${s("top")}"]){transform:translateY(+10px)}:host([position="${s("bottom")}"]){transform:translateY(-10px)}:host([position="${s("left")}"]){transform:translateX(+10px)}:host([position="${s("right")}"]){transform:translateX(-10px)}:host(:not([rich])){background:var(--mo-tooltip-surface-color,var(--mo-color-surface,rgba(255,255,255,.75)));backdrop-filter:blur(40px);color:var(--mo-color-foreground);box-shadow:var(--mo-tooltip-shadow,var(--mo-shadow-deep,0 5px 5px -3px rgba(95,81,78,.2),0 8px 10px 1px rgba(95,81,78,.14),0 3px 14px 2px rgba(95,81,78,.12)));padding:8px}:host([activate]){transition-delay:1s}:host([visible]){opacity:1;transform:translate(0);transition-delay:0s}slot{display:block}`}get template(){return F`<slot @slotchange="${this.handleSlotChange}"></slot>`}};ze.instancesContainer=new Set,t([ve({type:Object})],ze.prototype,"anchor",void 0),t([ve({type:String,reflect:!0})],ze.prototype,"position",void 0),t([ve({type:Boolean,reflect:!0})],ze.prototype,"rich",void 0),t([ve({type:Boolean,reflect:!0})],ze.prototype,"visible",void 0),t([ye("pointerenter")],ze.prototype,"handlePointerEnter",null),t([ye("pointerleave")],ze.prototype,"handlePointerLeave",null),ze=Ie=t([re("mo-tooltip")],ze);const De=zt(class extends Vt{constructor(t){if(super(t),t.type!==It)throw new Error("tooltip can only be used on an element")}update(t,[e,i]){var r;return this.isConnected&&(null!==(r=this.tooltip)&&void 0!==r||(this.tooltip=new ze(t.element)),i&&(this.tooltip.position=i),"string"==typeof e&&(t.element.ariaLabel=e),j(e,this.tooltip),Me.instance.appendChild(this.tooltip)),super.update(t,[e,i])}render(...t){return ie}disconnected(){var t;null===(t=this.tooltip)||void 0===t||t.remove()}});var Fe;let Ne=Fe=class extends oe{constructor(){super(...arguments),this.variant=Fe.defaultVariant}static get(t){const e=Fe.fontsByVariant.get(t);if(!e)throw new Error(`No font found for variant ${t}`);return e}static ensureAvailable(t){const e=Fe.get(t);Fe.fontUrls.add(e.url);const i=[...Fe.fontUrls].map((t=>`@import '${t}';`));i.some((t=>!1===Fe.fontStyleElement.innerText.includes(t)))&&(Fe.fontStyleElement.innerHTML=i.join("\n"))}static get styles(){return a`:host{display:inline-grid;font-size:24px}span{font-weight:400;font-style:normal;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}`}get template(){return F`<span ${ae({fontFamily:Fe.get(this.variant).name})}>${this.icon}</span>`}};Ne.defaultVariant="filled",Ne.fontsByVariant=new Map([["filled",{name:"Material Icons",url:"https://fonts.googleapis.com/icon?family=Material+Icons"}],["outlined",{name:"Material Icons Outlined",url:"https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"}],["sharp",{name:"Material Icons Sharp",url:"https://fonts.googleapis.com/icon?family=Material+Icons+Sharp"}],["rounded",{name:"Material Icons Round",url:"https://fonts.googleapis.com/icon?family=Material+Icons+Round"}]]),Ne.fontStyleElement=document.createElement("style"),Ne.fontUrls=new Set,document.head.appendChild(Fe.fontStyleElement),Fe.ensureAvailable(Fe.defaultVariant),t([ve({updated(){Fe.ensureAvailable(this.variant)}})],Ne.prototype,"variant",void 0),t([ve()],Ne.prototype,"icon",void 0),Ne=Fe=t([re("mo-icon")],Ne);function Le(t,e,i,r){var o,n=arguments.length,s=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,i,r);else for(var a=t.length-1;a>=0;a--)(o=t[a])&&(s=(n<3?o(s):n>3?o(e,i,s):o(e,i))||s);return n>3&&s&&Object.defineProperty(e,i,s),s}Object.create;Object.create;function Ue(t,e,i,r){var o,n=arguments.length,s=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,i,r);else for(var a=t.length-1;a>=0;a--)(o=t[a])&&(s=(n<3?o(s):n>3?o(e,i,s):o(e,i))||s);return n>3&&s&&Object.defineProperty(e,i,s),s}Object.create;Object.create;function Be(t,e){return(t.matches||t.webkitMatchesSelector||t.msMatchesSelector).call(t,e)}let je=!1;const Ve=()=>{},Ge={get passive(){return je=!0,!1}};document.addEventListener("x",Ve,Ge),document.removeEventListener("x",Ve);class qe extends st{click(){if(this.mdcRoot)return this.mdcRoot.focus(),void this.mdcRoot.click();super.click()}createFoundation(){void 0!==this.mdcFoundation&&this.mdcFoundation.destroy(),this.mdcFoundationClass&&(this.mdcFoundation=new this.mdcFoundationClass(this.createAdapter()),this.mdcFoundation.init())}firstUpdated(){this.createFoundation()}}var We=function(t,e){return We=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i])},We(t,e)};var Ye=function(){return Ye=Object.assign||function(t){for(var e,i=1,r=arguments.length;i<r;i++)for(var o in e=arguments[i])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t},Ye.apply(this,arguments)};Object.create;function Ke(t){var e="function"==typeof Symbol&&Symbol.iterator,i=e&&t[e],r=0;if(i)return i.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}Object.create;var Xe=function(){function t(t){void 0===t&&(t={}),this.adapter=t}return Object.defineProperty(t,"cssClasses",{get:function(){return{}},enumerable:!1,configurable:!0}),Object.defineProperty(t,"strings",{get:function(){return{}},enumerable:!1,configurable:!0}),Object.defineProperty(t,"numbers",{get:function(){return{}},enumerable:!1,configurable:!0}),Object.defineProperty(t,"defaultAdapter",{get:function(){return{}},enumerable:!1,configurable:!0}),t.prototype.init=function(){},t.prototype.destroy=function(){},t}();var Ze={BG_FOCUSED:"mdc-ripple-upgraded--background-focused",FG_ACTIVATION:"mdc-ripple-upgraded--foreground-activation",FG_DEACTIVATION:"mdc-ripple-upgraded--foreground-deactivation",ROOT:"mdc-ripple-upgraded",UNBOUNDED:"mdc-ripple-upgraded--unbounded"},Je={VAR_FG_SCALE:"--mdc-ripple-fg-scale",VAR_FG_SIZE:"--mdc-ripple-fg-size",VAR_FG_TRANSLATE_END:"--mdc-ripple-fg-translate-end",VAR_FG_TRANSLATE_START:"--mdc-ripple-fg-translate-start",VAR_LEFT:"--mdc-ripple-left",VAR_TOP:"--mdc-ripple-top"},Qe={DEACTIVATION_TIMEOUT_MS:225,FG_DEACTIVATION_MS:150,INITIAL_ORIGIN_SCALE:.6,PADDING:10,TAP_DELAY_MS:300};var ti=["touchstart","pointerdown","mousedown","keydown"],ei=["touchend","pointerup","mouseup","contextmenu"],ii=[],ri=function(t){function e(i){var r=t.call(this,Ye(Ye({},e.defaultAdapter),i))||this;return r.activationAnimationHasEnded=!1,r.activationTimer=0,r.fgDeactivationRemovalTimer=0,r.fgScale="0",r.frame={width:0,height:0},r.initialSize=0,r.layoutFrame=0,r.maxRadius=0,r.unboundedCoords={left:0,top:0},r.activationState=r.defaultActivationState(),r.activationTimerCallback=function(){r.activationAnimationHasEnded=!0,r.runDeactivationUXLogicIfReady()},r.activateHandler=function(t){r.activateImpl(t)},r.deactivateHandler=function(){r.deactivateImpl()},r.focusHandler=function(){r.handleFocus()},r.blurHandler=function(){r.handleBlur()},r.resizeHandler=function(){r.layout()},r}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function i(){this.constructor=t}We(t,e),t.prototype=null===e?Object.create(e):(i.prototype=e.prototype,new i)}(e,t),Object.defineProperty(e,"cssClasses",{get:function(){return Ze},enumerable:!1,configurable:!0}),Object.defineProperty(e,"strings",{get:function(){return Je},enumerable:!1,configurable:!0}),Object.defineProperty(e,"numbers",{get:function(){return Qe},enumerable:!1,configurable:!0}),Object.defineProperty(e,"defaultAdapter",{get:function(){return{addClass:function(){},browserSupportsCssVars:function(){return!0},computeBoundingRect:function(){return{top:0,right:0,bottom:0,left:0,width:0,height:0}},containsEventTarget:function(){return!0},deregisterDocumentInteractionHandler:function(){},deregisterInteractionHandler:function(){},deregisterResizeHandler:function(){},getWindowPageOffset:function(){return{x:0,y:0}},isSurfaceActive:function(){return!0},isSurfaceDisabled:function(){return!0},isUnbounded:function(){return!0},registerDocumentInteractionHandler:function(){},registerInteractionHandler:function(){},registerResizeHandler:function(){},removeClass:function(){},updateCssVariable:function(){}}},enumerable:!1,configurable:!0}),e.prototype.init=function(){var t=this,i=this.supportsPressRipple();if(this.registerRootHandlers(i),i){var r=e.cssClasses,o=r.ROOT,n=r.UNBOUNDED;requestAnimationFrame((function(){t.adapter.addClass(o),t.adapter.isUnbounded()&&(t.adapter.addClass(n),t.layoutInternal())}))}},e.prototype.destroy=function(){var t=this;if(this.supportsPressRipple()){this.activationTimer&&(clearTimeout(this.activationTimer),this.activationTimer=0,this.adapter.removeClass(e.cssClasses.FG_ACTIVATION)),this.fgDeactivationRemovalTimer&&(clearTimeout(this.fgDeactivationRemovalTimer),this.fgDeactivationRemovalTimer=0,this.adapter.removeClass(e.cssClasses.FG_DEACTIVATION));var i=e.cssClasses,r=i.ROOT,o=i.UNBOUNDED;requestAnimationFrame((function(){t.adapter.removeClass(r),t.adapter.removeClass(o),t.removeCssVars()}))}this.deregisterRootHandlers(),this.deregisterDeactivationHandlers()},e.prototype.activate=function(t){this.activateImpl(t)},e.prototype.deactivate=function(){this.deactivateImpl()},e.prototype.layout=function(){var t=this;this.layoutFrame&&cancelAnimationFrame(this.layoutFrame),this.layoutFrame=requestAnimationFrame((function(){t.layoutInternal(),t.layoutFrame=0}))},e.prototype.setUnbounded=function(t){var i=e.cssClasses.UNBOUNDED;t?this.adapter.addClass(i):this.adapter.removeClass(i)},e.prototype.handleFocus=function(){var t=this;requestAnimationFrame((function(){return t.adapter.addClass(e.cssClasses.BG_FOCUSED)}))},e.prototype.handleBlur=function(){var t=this;requestAnimationFrame((function(){return t.adapter.removeClass(e.cssClasses.BG_FOCUSED)}))},e.prototype.supportsPressRipple=function(){return this.adapter.browserSupportsCssVars()},e.prototype.defaultActivationState=function(){return{activationEvent:void 0,hasDeactivationUXRun:!1,isActivated:!1,isProgrammatic:!1,wasActivatedByPointer:!1,wasElementMadeActive:!1}},e.prototype.registerRootHandlers=function(t){var e,i;if(t){try{for(var r=Ke(ti),o=r.next();!o.done;o=r.next()){var n=o.value;this.adapter.registerInteractionHandler(n,this.activateHandler)}}catch(t){e={error:t}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(e)throw e.error}}this.adapter.isUnbounded()&&this.adapter.registerResizeHandler(this.resizeHandler)}this.adapter.registerInteractionHandler("focus",this.focusHandler),this.adapter.registerInteractionHandler("blur",this.blurHandler)},e.prototype.registerDeactivationHandlers=function(t){var e,i;if("keydown"===t.type)this.adapter.registerInteractionHandler("keyup",this.deactivateHandler);else try{for(var r=Ke(ei),o=r.next();!o.done;o=r.next()){var n=o.value;this.adapter.registerDocumentInteractionHandler(n,this.deactivateHandler)}}catch(t){e={error:t}}finally{try{o&&!o.done&&(i=r.return)&&i.call(r)}finally{if(e)throw e.error}}},e.prototype.deregisterRootHandlers=function(){var t,e;try{for(var i=Ke(ti),r=i.next();!r.done;r=i.next()){var o=r.value;this.adapter.deregisterInteractionHandler(o,this.activateHandler)}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=i.return)&&e.call(i)}finally{if(t)throw t.error}}this.adapter.deregisterInteractionHandler("focus",this.focusHandler),this.adapter.deregisterInteractionHandler("blur",this.blurHandler),this.adapter.isUnbounded()&&this.adapter.deregisterResizeHandler(this.resizeHandler)},e.prototype.deregisterDeactivationHandlers=function(){var t,e;this.adapter.deregisterInteractionHandler("keyup",this.deactivateHandler);try{for(var i=Ke(ei),r=i.next();!r.done;r=i.next()){var o=r.value;this.adapter.deregisterDocumentInteractionHandler(o,this.deactivateHandler)}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=i.return)&&e.call(i)}finally{if(t)throw t.error}}},e.prototype.removeCssVars=function(){var t=this,i=e.strings;Object.keys(i).forEach((function(e){0===e.indexOf("VAR_")&&t.adapter.updateCssVariable(i[e],null)}))},e.prototype.activateImpl=function(t){var e=this;if(!this.adapter.isSurfaceDisabled()){var i=this.activationState;if(!i.isActivated){var r=this.previousActivationEvent;if(!(r&&void 0!==t&&r.type!==t.type))i.isActivated=!0,i.isProgrammatic=void 0===t,i.activationEvent=t,i.wasActivatedByPointer=!i.isProgrammatic&&(void 0!==t&&("mousedown"===t.type||"touchstart"===t.type||"pointerdown"===t.type)),void 0!==t&&ii.length>0&&ii.some((function(t){return e.adapter.containsEventTarget(t)}))?this.resetActivationState():(void 0!==t&&(ii.push(t.target),this.registerDeactivationHandlers(t)),i.wasElementMadeActive=this.checkElementMadeActive(t),i.wasElementMadeActive&&this.animateActivation(),requestAnimationFrame((function(){ii=[],i.wasElementMadeActive||void 0===t||" "!==t.key&&32!==t.keyCode||(i.wasElementMadeActive=e.checkElementMadeActive(t),i.wasElementMadeActive&&e.animateActivation()),i.wasElementMadeActive||(e.activationState=e.defaultActivationState())})))}}},e.prototype.checkElementMadeActive=function(t){return void 0===t||"keydown"!==t.type||this.adapter.isSurfaceActive()},e.prototype.animateActivation=function(){var t=this,i=e.strings,r=i.VAR_FG_TRANSLATE_START,o=i.VAR_FG_TRANSLATE_END,n=e.cssClasses,s=n.FG_DEACTIVATION,a=n.FG_ACTIVATION,c=e.numbers.DEACTIVATION_TIMEOUT_MS;this.layoutInternal();var l="",d="";if(!this.adapter.isUnbounded()){var p=this.getFgTranslationCoordinates(),u=p.startPoint,h=p.endPoint;l=u.x+"px, "+u.y+"px",d=h.x+"px, "+h.y+"px"}this.adapter.updateCssVariable(r,l),this.adapter.updateCssVariable(o,d),clearTimeout(this.activationTimer),clearTimeout(this.fgDeactivationRemovalTimer),this.rmBoundedActivationClasses(),this.adapter.removeClass(s),this.adapter.computeBoundingRect(),this.adapter.addClass(a),this.activationTimer=setTimeout((function(){t.activationTimerCallback()}),c)},e.prototype.getFgTranslationCoordinates=function(){var t,e=this.activationState,i=e.activationEvent;return t=e.wasActivatedByPointer?function(t,e,i){if(!t)return{x:0,y:0};var r,o,n=e.x,s=e.y,a=n+i.left,c=s+i.top;if("touchstart"===t.type){var l=t;r=l.changedTouches[0].pageX-a,o=l.changedTouches[0].pageY-c}else{var d=t;r=d.pageX-a,o=d.pageY-c}return{x:r,y:o}}(i,this.adapter.getWindowPageOffset(),this.adapter.computeBoundingRect()):{x:this.frame.width/2,y:this.frame.height/2},{startPoint:t={x:t.x-this.initialSize/2,y:t.y-this.initialSize/2},endPoint:{x:this.frame.width/2-this.initialSize/2,y:this.frame.height/2-this.initialSize/2}}},e.prototype.runDeactivationUXLogicIfReady=function(){var t=this,i=e.cssClasses.FG_DEACTIVATION,r=this.activationState,o=r.hasDeactivationUXRun,n=r.isActivated;(o||!n)&&this.activationAnimationHasEnded&&(this.rmBoundedActivationClasses(),this.adapter.addClass(i),this.fgDeactivationRemovalTimer=setTimeout((function(){t.adapter.removeClass(i)}),Qe.FG_DEACTIVATION_MS))},e.prototype.rmBoundedActivationClasses=function(){var t=e.cssClasses.FG_ACTIVATION;this.adapter.removeClass(t),this.activationAnimationHasEnded=!1,this.adapter.computeBoundingRect()},e.prototype.resetActivationState=function(){var t=this;this.previousActivationEvent=this.activationState.activationEvent,this.activationState=this.defaultActivationState(),setTimeout((function(){return t.previousActivationEvent=void 0}),e.numbers.TAP_DELAY_MS)},e.prototype.deactivateImpl=function(){var t=this,e=this.activationState;if(e.isActivated){var i=Ye({},e);e.isProgrammatic?(requestAnimationFrame((function(){t.animateDeactivation(i)})),this.resetActivationState()):(this.deregisterDeactivationHandlers(),requestAnimationFrame((function(){t.activationState.hasDeactivationUXRun=!0,t.animateDeactivation(i),t.resetActivationState()})))}},e.prototype.animateDeactivation=function(t){var e=t.wasActivatedByPointer,i=t.wasElementMadeActive;(e||i)&&this.runDeactivationUXLogicIfReady()},e.prototype.layoutInternal=function(){var t=this;this.frame=this.adapter.computeBoundingRect();var i=Math.max(this.frame.height,this.frame.width);this.maxRadius=this.adapter.isUnbounded()?i:Math.sqrt(Math.pow(t.frame.width,2)+Math.pow(t.frame.height,2))+e.numbers.PADDING;var r=Math.floor(i*e.numbers.INITIAL_ORIGIN_SCALE);this.adapter.isUnbounded()&&r%2!=0?this.initialSize=r-1:this.initialSize=r,this.fgScale=""+this.maxRadius/this.initialSize,this.updateLayoutCssVars()},e.prototype.updateLayoutCssVars=function(){var t=e.strings,i=t.VAR_FG_SIZE,r=t.VAR_LEFT,o=t.VAR_TOP,n=t.VAR_FG_SCALE;this.adapter.updateCssVariable(i,this.initialSize+"px"),this.adapter.updateCssVariable(n,this.fgScale),this.adapter.isUnbounded()&&(this.unboundedCoords={left:Math.round(this.frame.width/2-this.initialSize/2),top:Math.round(this.frame.height/2-this.initialSize/2)},this.adapter.updateCssVariable(r,this.unboundedCoords.left+"px"),this.adapter.updateCssVariable(o,this.unboundedCoords.top+"px"))},e}(Xe);const oi=ri;class ni extends qe{constructor(){super(...arguments),this.primary=!1,this.accent=!1,this.unbounded=!1,this.disabled=!1,this.activated=!1,this.selected=!1,this.internalUseStateLayerCustomProperties=!1,this.hovering=!1,this.bgFocused=!1,this.fgActivation=!1,this.fgDeactivation=!1,this.fgScale="",this.fgSize="",this.translateStart="",this.translateEnd="",this.leftPos="",this.topPos="",this.mdcFoundationClass=oi}get isActive(){return Be(this.parentElement||this,":active")}createAdapter(){return{browserSupportsCssVars:()=>!0,isUnbounded:()=>this.unbounded,isSurfaceActive:()=>this.isActive,isSurfaceDisabled:()=>this.disabled,addClass:t=>{switch(t){case"mdc-ripple-upgraded--background-focused":this.bgFocused=!0;break;case"mdc-ripple-upgraded--foreground-activation":this.fgActivation=!0;break;case"mdc-ripple-upgraded--foreground-deactivation":this.fgDeactivation=!0}},removeClass:t=>{switch(t){case"mdc-ripple-upgraded--background-focused":this.bgFocused=!1;break;case"mdc-ripple-upgraded--foreground-activation":this.fgActivation=!1;break;case"mdc-ripple-upgraded--foreground-deactivation":this.fgDeactivation=!1}},containsEventTarget:()=>!0,registerInteractionHandler:()=>{},deregisterInteractionHandler:()=>{},registerDocumentInteractionHandler:()=>{},deregisterDocumentInteractionHandler:()=>{},registerResizeHandler:()=>{},deregisterResizeHandler:()=>{},updateCssVariable:(t,e)=>{switch(t){case"--mdc-ripple-fg-scale":this.fgScale=e;break;case"--mdc-ripple-fg-size":this.fgSize=e;break;case"--mdc-ripple-fg-translate-end":this.translateEnd=e;break;case"--mdc-ripple-fg-translate-start":this.translateStart=e;break;case"--mdc-ripple-left":this.leftPos=e;break;case"--mdc-ripple-top":this.topPos=e}},computeBoundingRect:()=>(this.parentElement||this).getBoundingClientRect(),getWindowPageOffset:()=>({x:window.pageXOffset,y:window.pageYOffset})}}startPress(t){this.waitForFoundation((()=>{this.mdcFoundation.activate(t)}))}endPress(){this.waitForFoundation((()=>{this.mdcFoundation.deactivate()}))}startFocus(){this.waitForFoundation((()=>{this.mdcFoundation.handleFocus()}))}endFocus(){this.waitForFoundation((()=>{this.mdcFoundation.handleBlur()}))}startHover(){this.hovering=!0}endHover(){this.hovering=!1}waitForFoundation(t){this.mdcFoundation?t():this.updateComplete.then(t)}update(t){t.has("disabled")&&this.disabled&&this.endHover(),super.update(t)}render(){const t=this.activated&&(this.primary||!this.accent),e=this.selected&&(this.primary||!this.accent),i={"mdc-ripple-surface--accent":this.accent,"mdc-ripple-surface--primary--activated":t,"mdc-ripple-surface--accent--activated":this.accent&&this.activated,"mdc-ripple-surface--primary--selected":e,"mdc-ripple-surface--accent--selected":this.accent&&this.selected,"mdc-ripple-surface--disabled":this.disabled,"mdc-ripple-surface--hover":this.hovering,"mdc-ripple-surface--primary":this.primary,"mdc-ripple-surface--selected":this.selected,"mdc-ripple-upgraded--background-focused":this.bgFocused,"mdc-ripple-upgraded--foreground-activation":this.fgActivation,"mdc-ripple-upgraded--foreground-deactivation":this.fgDeactivation,"mdc-ripple-upgraded--unbounded":this.unbounded,"mdc-ripple-surface--internal-use-state-layer-custom-properties":this.internalUseStateLayerCustomProperties};return F`<div class="mdc-ripple-surface mdc-ripple-upgraded ${Yt(i)}" style="${Jt({"--mdc-ripple-fg-scale":this.fgScale,"--mdc-ripple-fg-size":this.fgSize,"--mdc-ripple-fg-translate-end":this.translateEnd,"--mdc-ripple-fg-translate-start":this.translateStart,"--mdc-ripple-left":this.leftPos,"--mdc-ripple-top":this.topPos})}"></div>`}}Ue([mt(".mdc-ripple-surface")],ni.prototype,"mdcRoot",void 0),Ue([dt({type:Boolean})],ni.prototype,"primary",void 0),Ue([dt({type:Boolean})],ni.prototype,"accent",void 0),Ue([dt({type:Boolean})],ni.prototype,"unbounded",void 0),Ue([dt({type:Boolean})],ni.prototype,"disabled",void 0),Ue([dt({type:Boolean})],ni.prototype,"activated",void 0),Ue([dt({type:Boolean})],ni.prototype,"selected",void 0),Ue([dt({type:Boolean})],ni.prototype,"internalUseStateLayerCustomProperties",void 0),Ue([pt()],ni.prototype,"hovering",void 0),Ue([pt()],ni.prototype,"bgFocused",void 0),Ue([pt()],ni.prototype,"fgActivation",void 0),Ue([pt()],ni.prototype,"fgDeactivation",void 0),Ue([pt()],ni.prototype,"fgScale",void 0),Ue([pt()],ni.prototype,"fgSize",void 0),Ue([pt()],ni.prototype,"translateStart",void 0),Ue([pt()],ni.prototype,"translateEnd",void 0),Ue([pt()],ni.prototype,"leftPos",void 0),Ue([pt()],ni.prototype,"topPos",void 0);const si=a`.mdc-ripple-surface{--mdc-ripple-fg-size:0;--mdc-ripple-left:0;--mdc-ripple-top:0;--mdc-ripple-fg-scale:1;--mdc-ripple-fg-translate-end:0;--mdc-ripple-fg-translate-start:0;-webkit-tap-highlight-color:transparent;will-change:transform,opacity;position:relative;outline:0;overflow:hidden}.mdc-ripple-surface::after,.mdc-ripple-surface::before{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:""}.mdc-ripple-surface::before{transition:opacity 15ms linear,background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index,1)}.mdc-ripple-surface::after{z-index:0;z-index:var(--mdc-ripple-z-index,0)}.mdc-ripple-surface.mdc-ripple-upgraded::before{transform:scale(var(--mdc-ripple-fg-scale,1))}.mdc-ripple-surface.mdc-ripple-upgraded::after{top:0;left:0;transform:scale(0);transform-origin:center center}.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after{top:var(--mdc-ripple-top,0);left:var(--mdc-ripple-left,0)}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after{animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after{animation:mdc-ripple-fg-opacity-out 150ms;transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}.mdc-ripple-surface::after,.mdc-ripple-surface::before{top:calc(50% - 100%);left:calc(50% - 100%);width:200%;height:200%}.mdc-ripple-surface.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface[data-mdc-ripple-is-unbounded],.mdc-ripple-upgraded--unbounded{overflow:visible}.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after,.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,.mdc-ripple-upgraded--unbounded::after,.mdc-ripple-upgraded--unbounded::before{top:calc(50% - 50%);left:calc(50% - 50%);width:100%;height:100%}.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::before{top:var(--mdc-ripple-top,calc(50% - 50%));left:var(--mdc-ripple-left,calc(50% - 50%));width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface::after,.mdc-ripple-surface::before{background-color:#000;background-color:var(--mdc-ripple-color,#000)}.mdc-ripple-surface.mdc-ripple-surface--hover::before,.mdc-ripple-surface:hover::before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity,.04)}.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity,.12)}.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity,.12)}.mdc-ripple-surface.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}@keyframes mdc-ripple-fg-radius-in{from{animation-timing-function:cubic-bezier(.4,0,.2,1);transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1)}to{transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}}@keyframes mdc-ripple-fg-opacity-in{from{animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity,0)}}@keyframes mdc-ripple-fg-opacity-out{from{animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity,0)}to{opacity:0}}:host{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;display:block}:host .mdc-ripple-surface{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;will-change:unset}.mdc-ripple-surface--primary::after,.mdc-ripple-surface--primary::before{background-color:#6200ee;background-color:var(--mdc-ripple-color,var(--mdc-theme-primary,#6200ee))}.mdc-ripple-surface--primary.mdc-ripple-surface--hover::before,.mdc-ripple-surface--primary:hover::before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity,.04)}.mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity,.12)}.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity,.12)}.mdc-ripple-surface--primary.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}.mdc-ripple-surface--primary--activated::before{opacity:.12;opacity:var(--mdc-ripple-activated-opacity,.12)}.mdc-ripple-surface--primary--activated::after,.mdc-ripple-surface--primary--activated::before{background-color:#6200ee;background-color:var(--mdc-ripple-color,var(--mdc-theme-primary,#6200ee))}.mdc-ripple-surface--primary--activated.mdc-ripple-surface--hover::before,.mdc-ripple-surface--primary--activated:hover::before{opacity:.16;opacity:var(--mdc-ripple-hover-opacity,.16)}.mdc-ripple-surface--primary--activated.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--primary--activated:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.24;opacity:var(--mdc-ripple-focus-opacity,.24)}.mdc-ripple-surface--primary--activated:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--primary--activated:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.24;opacity:var(--mdc-ripple-press-opacity,.24)}.mdc-ripple-surface--primary--activated.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}.mdc-ripple-surface--primary--selected::before{opacity:.08;opacity:var(--mdc-ripple-selected-opacity,.08)}.mdc-ripple-surface--primary--selected::after,.mdc-ripple-surface--primary--selected::before{background-color:#6200ee;background-color:var(--mdc-ripple-color,var(--mdc-theme-primary,#6200ee))}.mdc-ripple-surface--primary--selected.mdc-ripple-surface--hover::before,.mdc-ripple-surface--primary--selected:hover::before{opacity:.12;opacity:var(--mdc-ripple-hover-opacity,.12)}.mdc-ripple-surface--primary--selected.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--primary--selected:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.2;opacity:var(--mdc-ripple-focus-opacity,.2)}.mdc-ripple-surface--primary--selected:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--primary--selected:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.2;opacity:var(--mdc-ripple-press-opacity,.2)}.mdc-ripple-surface--primary--selected.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.2)}.mdc-ripple-surface--accent::after,.mdc-ripple-surface--accent::before{background-color:#018786;background-color:var(--mdc-ripple-color,var(--mdc-theme-secondary,#018786))}.mdc-ripple-surface--accent.mdc-ripple-surface--hover::before,.mdc-ripple-surface--accent:hover::before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity,.04)}.mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity,.12)}.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity,.12)}.mdc-ripple-surface--accent.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}.mdc-ripple-surface--accent--activated::before{opacity:.12;opacity:var(--mdc-ripple-activated-opacity,.12)}.mdc-ripple-surface--accent--activated::after,.mdc-ripple-surface--accent--activated::before{background-color:#018786;background-color:var(--mdc-ripple-color,var(--mdc-theme-secondary,#018786))}.mdc-ripple-surface--accent--activated.mdc-ripple-surface--hover::before,.mdc-ripple-surface--accent--activated:hover::before{opacity:.16;opacity:var(--mdc-ripple-hover-opacity,.16)}.mdc-ripple-surface--accent--activated.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--accent--activated:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.24;opacity:var(--mdc-ripple-focus-opacity,.24)}.mdc-ripple-surface--accent--activated:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--accent--activated:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.24;opacity:var(--mdc-ripple-press-opacity,.24)}.mdc-ripple-surface--accent--activated.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.24)}.mdc-ripple-surface--accent--selected::before{opacity:.08;opacity:var(--mdc-ripple-selected-opacity,.08)}.mdc-ripple-surface--accent--selected::after,.mdc-ripple-surface--accent--selected::before{background-color:#018786;background-color:var(--mdc-ripple-color,var(--mdc-theme-secondary,#018786))}.mdc-ripple-surface--accent--selected.mdc-ripple-surface--hover::before,.mdc-ripple-surface--accent--selected:hover::before{opacity:.12;opacity:var(--mdc-ripple-hover-opacity,.12)}.mdc-ripple-surface--accent--selected.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--accent--selected:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.2;opacity:var(--mdc-ripple-focus-opacity,.2)}.mdc-ripple-surface--accent--selected:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--accent--selected:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.2;opacity:var(--mdc-ripple-press-opacity,.2)}.mdc-ripple-surface--accent--selected.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.2)}.mdc-ripple-surface--disabled{opacity:0}.mdc-ripple-surface--internal-use-state-layer-custom-properties::after,.mdc-ripple-surface--internal-use-state-layer-custom-properties::before{background-color:#000;background-color:var(--mdc-ripple-hover-state-layer-color,#000)}.mdc-ripple-surface--internal-use-state-layer-custom-properties.mdc-ripple-surface--hover::before,.mdc-ripple-surface--internal-use-state-layer-custom-properties:hover::before{opacity:.04;opacity:var(--mdc-ripple-hover-state-layer-opacity,.04)}.mdc-ripple-surface--internal-use-state-layer-custom-properties.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface--internal-use-state-layer-custom-properties:not(.mdc-ripple-upgraded):focus::before{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-state-layer-opacity,.12)}.mdc-ripple-surface--internal-use-state-layer-custom-properties:not(.mdc-ripple-upgraded)::after{transition:opacity 150ms linear}.mdc-ripple-surface--internal-use-state-layer-custom-properties:not(.mdc-ripple-upgraded):active::after{transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-pressed-state-layer-opacity,.12)}.mdc-ripple-surface--internal-use-state-layer-custom-properties.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-pressed-state-layer-opacity, 0.12)}`;let ai=class extends ni{};function ci(t,e,i){if(void 0!==e)return function(t,e,i){const r=t.constructor;if(!i){const t=`__${e}`;if(!(i=r.getPropertyDescriptor(e,t)))throw new Error("@ariaProperty must be used after a @property decorator")}const o=i;let n="";if(!o.set)throw new Error(`@ariaProperty requires a setter for ${e}`);if(t.dispatchWizEvent)return i;const s={configurable:!0,enumerable:!0,set(t){if(""===n){const t=r.getPropertyOptions(e);n="string"==typeof t.attribute?t.attribute:e}this.hasAttribute(n)&&this.removeAttribute(n),o.set.call(this,t)}};return o.get&&(s.get=function(){return o.get.call(this)}),s}(t,e,i);throw new Error("@ariaProperty only supports TypeScript Decorators")}ai.styles=[si],ai=Ue([ct("mwc-ripple")],ai);class li{constructor(t){this.startPress=e=>{t().then((t=>{t&&t.startPress(e)}))},this.endPress=()=>{t().then((t=>{t&&t.endPress()}))},this.startFocus=()=>{t().then((t=>{t&&t.startFocus()}))},this.endFocus=()=>{t().then((t=>{t&&t.endFocus()}))},this.startHover=()=>{t().then((t=>{t&&t.startHover()}))},this.endHover=()=>{t().then((t=>{t&&t.endHover()}))}}}class di extends st{constructor(){super(...arguments),this.disabled=!1,this.icon="",this.shouldRenderRipple=!1,this.rippleHandlers=new li((()=>(this.shouldRenderRipple=!0,this.ripple)))}renderRipple(){return this.shouldRenderRipple?F`<mwc-ripple .disabled="${this.disabled}" unbounded></mwc-ripple>`:""}focus(){const t=this.buttonElement;t&&(this.rippleHandlers.startFocus(),t.focus())}blur(){const t=this.buttonElement;t&&(this.rippleHandlers.endFocus(),t.blur())}render(){return F`<button class="mdc-icon-button mdc-icon-button--display-flex" aria-label="${this.ariaLabel||this.icon}" aria-haspopup="${(t=>null!=t?t:U)(this.ariaHasPopup)}" ?disabled="${this.disabled}" @focus="${this.handleRippleFocus}" @blur="${this.handleRippleBlur}" @mousedown="${this.handleRippleMouseDown}" @mouseenter="${this.handleRippleMouseEnter}" @mouseleave="${this.handleRippleMouseLeave}" @touchstart="${this.handleRippleTouchStart}" @touchend="${this.handleRippleDeactivate}" @touchcancel="${this.handleRippleDeactivate}">${this.renderRipple()} ${this.icon?F`<i class="material-icons">${this.icon}</i>`:""} <span><slot></slot></span></button>`}handleRippleMouseDown(t){const e=()=>{window.removeEventListener("mouseup",e),this.handleRippleDeactivate()};window.addEventListener("mouseup",e),this.rippleHandlers.startPress(t)}handleRippleTouchStart(t){this.rippleHandlers.startPress(t)}handleRippleDeactivate(){this.rippleHandlers.endPress()}handleRippleMouseEnter(){this.rippleHandlers.startHover()}handleRippleMouseLeave(){this.rippleHandlers.endHover()}handleRippleFocus(){this.rippleHandlers.startFocus()}handleRippleBlur(){this.rippleHandlers.endFocus()}}Le([dt({type:Boolean,reflect:!0})],di.prototype,"disabled",void 0),Le([dt({type:String})],di.prototype,"icon",void 0),Le([ci,dt({type:String,attribute:"aria-label"})],di.prototype,"ariaLabel",void 0),Le([ci,dt({type:String,attribute:"aria-haspopup"})],di.prototype,"ariaHasPopup",void 0),Le([mt("button")],di.prototype,"buttonElement",void 0),Le([function(t){return ut({descriptor:e=>({async get(){var e;return await this.updateComplete,null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(t)},enumerable:!0,configurable:!0})})}("mwc-ripple")],di.prototype,"ripple",void 0),Le([pt()],di.prototype,"shouldRenderRipple",void 0),Le([ht({passive:!0})],di.prototype,"handleRippleMouseDown",null),Le([ht({passive:!0})],di.prototype,"handleRippleTouchStart",null);const pi=a`.material-icons{font-family:var(--mdc-icon-font, "Material Icons");font-weight:400;font-style:normal;font-size:var(--mdc-icon-size,24px);line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.mdc-icon-button{font-size:24px;width:48px;height:48px;padding:12px}.mdc-icon-button .mdc-icon-button__focus-ring{display:none}.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block;max-height:48px;max-width:48px}@media screen and (forced-colors:active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{pointer-events:none;border:2px solid transparent;border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:100%;width:100%}}@media screen and (forced-colors:active)and (forced-colors:active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{border-color:CanvasText}}@media screen and (forced-colors:active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring::after,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring::after{content:"";border:2px solid transparent;border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:calc(100% + 4px);width:calc(100% + 4px)}}@media screen and (forced-colors:active)and (forced-colors:active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring::after,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button.mdc-icon-button--reduced-size .mdc-icon-button__ripple{width:40px;height:40px;margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-icon-button.mdc-icon-button--reduced-size.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button.mdc-icon-button--reduced-size:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{max-height:40px;max-width:40px}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%,-50%)}.mdc-icon-button:disabled{color:rgba(0,0,0,.38);color:var(--mdc-theme-text-disabled-on-light,rgba(0,0,0,.38))}.mdc-icon-button img,.mdc-icon-button svg{width:24px;height:24px}.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:0;background-color:transparent;fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%,-50%)}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:0;position:absolute;top:0;width:100%}.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:0;background-color:transparent;fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%,-50%)}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:0;position:absolute;top:0;width:100%}:host{display:inline-block;outline:0}:host([disabled]){pointer-events:none}.mdc-icon-button ::slotted(*),.mdc-icon-button i,.mdc-icon-button img,.mdc-icon-button svg{display:block}:host{--mdc-ripple-color:currentcolor;-webkit-tap-highlight-color:transparent}.mdc-icon-button,:host{vertical-align:top}.mdc-icon-button{width:var(--mdc-icon-button-size,48px);height:var(--mdc-icon-button-size,48px);padding:calc((var(--mdc-icon-button-size,48px) - var(--mdc-icon-size,24px))/ 2)}.mdc-icon-button ::slotted(*),.mdc-icon-button i,.mdc-icon-button img,.mdc-icon-button svg{display:block;width:var(--mdc-icon-size,24px);height:var(--mdc-icon-size,24px)}`;let ui=class extends di{};ui.styles=[pi],ui=Le([ct("mwc-icon-button")],ui);let hi=class extends oe{constructor(){super(...arguments),this.disabled=!1,this.dense=!1}static get styles(){return a`:host{font-size:20px}:host([disabled]){pointer-events:none}:host,mwc-icon-button{display:inline-block}mwc-icon-button::part(button){padding:.4em}:host([dense]) mwc-icon-button::part(button){padding:.2em}mo-icon{font-size:inherit}`}get template(){return F`<mwc-icon-button exportparts="button" ?disabled="${this.disabled}"><slot name="icon"><mo-icon icon="${this.icon}"></mo-icon></slot></mwc-icon-button>`}};t([ve()],hi.prototype,"icon",void 0),t([ve({type:Boolean,reflect:!0})],hi.prototype,"disabled",void 0),t([ve({type:Boolean,reflect:!0})],hi.prototype,"dense",void 0),hi=t([re("mo-icon-button")],hi),ui.elementStyles.push(a`span{display:inline-grid!important}i{display:none!important}button{width:unset!important;height:unset!important;font-size:inherit!important}::slotted(*){width:unset!important;height:unset!important}`),ui.addInitializer((t=>{t.updateComplete.then((()=>t.buttonElement.part.add("button")))}));let mi=class extends Oe{constructor(){super(...arguments),this.collapsed=!1,this.disableCollapse=!1,this.showSubHeadingOnlyWhenCollapsed=!1}static get styles(){return a`${super.styles}:host{position:relative}:host([collapsed]){flex:unset!important;height:unset!important}`}get defaultHeaderSubHeadingTemplate(){return this.showSubHeadingOnlyWhenCollapsed&&!this.collapsed?ie:super.defaultHeaderSubHeadingTemplate}get defaultHeaderActionTemplate(){return F`${super.defaultHeaderActionTemplate}<mo-icon-button dense ${De(this.collapsed?"Erweitern":"Reduzieren")} ?disabled="${this.disableCollapse}" icon="${this.collapsed?"expand_more":"expand_less"}" @click="${()=>this.toggleCollapse()}"></mo-icon-button>`}get bodyTemplate(){return this.collapsed?ie:super.bodyTemplate}toggleCollapse(){this.collapsed=!this.collapsed,this.collapse.dispatch(this.collapsed)}};var fi;t([(t,e)=>{if(void 0===e)return;const i=`$${e}Event$`;Object.defineProperty(t,e,{get(){return this[i]||(this[i]=this instanceof HTMLElement?new Se(this,e,fi):new ke),this[i]}})}],mi.prototype,"collapse",void 0),t([ve({type:Boolean,reflect:!0})],mi.prototype,"collapsed",void 0),t([ve({type:Boolean})],mi.prototype,"disableCollapse",void 0),t([ve({type:Boolean})],mi.prototype,"showSubHeadingOnlyWhenCollapsed",void 0),mi=t([re("mo-collapsible-card")],mi)})();
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CollapsibleCard.js';
|
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@3mo/collapsible-card",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "An extension of @3mo/card component with support for collapsible state.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/3mo-esolutions/web-components/tree/main/packages/Card"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"lit",
|
|
11
|
+
"web-component",
|
|
12
|
+
"material",
|
|
13
|
+
"card",
|
|
14
|
+
"collapsible"
|
|
15
|
+
],
|
|
16
|
+
"author": "3MO GmbH",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"homepage": "https://www.3mo.de",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"main": "dist/index.js",
|
|
21
|
+
"types": "dist/index.d.ts",
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@a11d/lit": "x",
|
|
27
|
+
"tslib": "x",
|
|
28
|
+
"@3mo/card": "x",
|
|
29
|
+
"@3mo/tooltip": "x",
|
|
30
|
+
"@3mo/icon-button": "x"
|
|
31
|
+
}
|
|
32
|
+
}
|