@3mo/card 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Card/Card.d.ts +62 -62
- package/dist/Card/Card.d.ts.map +1 -1
- package/dist/Card/index.d.ts +1 -1
- package/dist/Card.d.ts +62 -62
- package/dist/Card.d.ts.map +1 -1
- package/dist/Card.js +99 -99
- package/dist/Flex/AsteriskSyntaxStyleHandler.d.ts +9 -0
- package/dist/Flex/AsteriskSyntaxStyleHandler.d.ts.map +1 -0
- package/dist/Flex/Flex.d.ts +38 -38
- package/dist/Flex/Flex.d.ts.map +1 -1
- package/dist/Flex/index.d.ts +2 -1
- package/dist/Flex/index.d.ts.map +1 -1
- package/dist/Heading/Heading.d.ts +28 -28
- package/dist/Heading/index.d.ts +1 -1
- package/dist/SlotController/SlotController.d.ts +18 -18
- package/dist/SlotController/SlotController.d.ts.map +1 -1
- package/dist/SlotController/index.d.ts +1 -1
- package/dist/bundle.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +2 -2
package/dist/Card/Card.d.ts
CHANGED
|
@@ -1,63 +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
|
-
}
|
|
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
63
|
//# sourceMappingURL=Card.d.ts.map
|
package/dist/Card/Card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../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;
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../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;IACL,IAAI,WAAkB;IACvC,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"}
|
package/dist/Card/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './Card.js';
|
|
1
|
+
export * from './Card.js';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/Card.d.ts
CHANGED
|
@@ -1,63 +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
|
-
}
|
|
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
63
|
//# sourceMappingURL=Card.d.ts.map
|
package/dist/Card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../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;
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../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;IACL,IAAI,WAAkB;IACvC,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,kCAsEzB;IAED,cAAuB,QAAQ,yCAS9B;IAED,SAAS,KAAK,aAAa,0CAO1B;IAED,SAAS,KAAK,cAAc,0CAgB3B;IAED,SAAS,KAAK,2BAA2B,yCAQxC;IAED,SAAS,KAAK,4BAA4B,yCAQzC;IAED,SAAS,KAAK,+BAA+B,yCAQ5C;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"}
|
package/dist/Card.js
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { component, html, property, Component, css, nothing, style, unsafeCSS } from '@a11d/lit';
|
|
3
|
-
import { SlotController } from '@3mo/slot-controller';
|
|
4
|
-
import '@3mo/heading';
|
|
5
|
-
import '@3mo/flex';
|
|
6
|
-
/**
|
|
7
|
-
* @element mo-card
|
|
8
|
-
*
|
|
9
|
-
* @attr type
|
|
10
|
-
* @attr heading
|
|
11
|
-
* @attr subHeading
|
|
12
|
-
* @attr avatar
|
|
13
|
-
* @attr image
|
|
14
|
-
*
|
|
15
|
-
* @slot action - Actions in the header
|
|
16
|
-
* @slot heading - Custom heading in the header
|
|
17
|
-
* @slot subHeading - Custom subHeading in the header
|
|
18
|
-
* @slot avatar - Custom avatar in the header
|
|
19
|
-
* @slot header - The header. Using this will lead to slots 'heading', 'subHeading', 'avatar' and 'action's not working.
|
|
20
|
-
* @slot media - Embedded media
|
|
21
|
-
* @slot - Body / Content
|
|
22
|
-
* @slot footer - Actions in the footer
|
|
23
|
-
*
|
|
24
|
-
* @cssprop --mo-card-header-padding - Padding of the header
|
|
25
|
-
* @cssprop --mo-card-avatar-background - Color of the avatar
|
|
26
|
-
* @cssprop --mo-card-avatar-color - Text color of the avatar
|
|
27
|
-
* @cssprop --mo-card-body-padding - Padding of the body
|
|
28
|
-
* @cssprop --mo-card-footer-padding - Padding of the footer
|
|
29
|
-
*
|
|
30
|
-
* @csspart media - Embedded media
|
|
31
|
-
* @csspart header - The header
|
|
32
|
-
* @csspart avatar - The avatar
|
|
33
|
-
* @csspart heading - The heading
|
|
34
|
-
* @csspart subHeading - The subHeading
|
|
35
|
-
* @csspart footer - The footer
|
|
36
|
-
*/
|
|
37
|
-
let Card = class Card extends Component {
|
|
38
|
-
constructor() {
|
|
39
|
-
super(...arguments);
|
|
40
|
-
this.type = "filled" /* CardType.Filled */;
|
|
41
|
-
this.slotController = new SlotController(this);
|
|
42
|
-
}
|
|
43
|
-
static get styles() {
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { component, html, property, Component, css, nothing, style, unsafeCSS } from '@a11d/lit';
|
|
3
|
+
import { SlotController } from '@3mo/slot-controller';
|
|
4
|
+
import '@3mo/heading';
|
|
5
|
+
import '@3mo/flex';
|
|
6
|
+
/**
|
|
7
|
+
* @element mo-card
|
|
8
|
+
*
|
|
9
|
+
* @attr type
|
|
10
|
+
* @attr heading
|
|
11
|
+
* @attr subHeading
|
|
12
|
+
* @attr avatar
|
|
13
|
+
* @attr image
|
|
14
|
+
*
|
|
15
|
+
* @slot action - Actions in the header
|
|
16
|
+
* @slot heading - Custom heading in the header
|
|
17
|
+
* @slot subHeading - Custom subHeading in the header
|
|
18
|
+
* @slot avatar - Custom avatar in the header
|
|
19
|
+
* @slot header - The header. Using this will lead to slots 'heading', 'subHeading', 'avatar' and 'action's not working.
|
|
20
|
+
* @slot media - Embedded media
|
|
21
|
+
* @slot - Body / Content
|
|
22
|
+
* @slot footer - Actions in the footer
|
|
23
|
+
*
|
|
24
|
+
* @cssprop --mo-card-header-padding - Padding of the header
|
|
25
|
+
* @cssprop --mo-card-avatar-background - Color of the avatar
|
|
26
|
+
* @cssprop --mo-card-avatar-color - Text color of the avatar
|
|
27
|
+
* @cssprop --mo-card-body-padding - Padding of the body
|
|
28
|
+
* @cssprop --mo-card-footer-padding - Padding of the footer
|
|
29
|
+
*
|
|
30
|
+
* @csspart media - Embedded media
|
|
31
|
+
* @csspart header - The header
|
|
32
|
+
* @csspart avatar - The avatar
|
|
33
|
+
* @csspart heading - The heading
|
|
34
|
+
* @csspart subHeading - The subHeading
|
|
35
|
+
* @csspart footer - The footer
|
|
36
|
+
*/
|
|
37
|
+
let Card = class Card extends Component {
|
|
38
|
+
constructor() {
|
|
39
|
+
super(...arguments);
|
|
40
|
+
this.type = "filled" /* CardType.Filled */;
|
|
41
|
+
this.slotController = new SlotController(this);
|
|
42
|
+
}
|
|
43
|
+
static get styles() {
|
|
44
44
|
return css `
|
|
45
45
|
:host {
|
|
46
46
|
display: block;
|
|
@@ -109,9 +109,9 @@ let Card = class Card extends Component {
|
|
|
109
109
|
display: block;
|
|
110
110
|
padding: var(--mo-card-footer-padding, 8px);
|
|
111
111
|
}
|
|
112
|
-
`;
|
|
113
|
-
}
|
|
114
|
-
get template() {
|
|
112
|
+
`;
|
|
113
|
+
}
|
|
114
|
+
get template() {
|
|
115
115
|
return html `
|
|
116
116
|
<mo-flex ${style({ width: '100%', height: '100%' })}>
|
|
117
117
|
${this.mediaTemplate}
|
|
@@ -119,22 +119,22 @@ let Card = class Card extends Component {
|
|
|
119
119
|
${this.bodyTemplate}
|
|
120
120
|
${this.footerTemplate}
|
|
121
121
|
</mo-flex>
|
|
122
|
-
`;
|
|
123
|
-
}
|
|
124
|
-
get mediaTemplate() {
|
|
125
|
-
const hasMedia = !!this.image || this.slotController.hasAssignedElements('media');
|
|
122
|
+
`;
|
|
123
|
+
}
|
|
124
|
+
get mediaTemplate() {
|
|
125
|
+
const hasMedia = !!this.image || this.slotController.hasAssignedElements('media');
|
|
126
126
|
return !hasMedia ? nothing : html `
|
|
127
127
|
<slot part='media' name='media'>
|
|
128
128
|
${!this.image ? nothing : html `<img part='media' src=${this.image} />`}
|
|
129
129
|
</slot>
|
|
130
|
-
`;
|
|
131
|
-
}
|
|
132
|
-
get headerTemplate() {
|
|
133
|
-
const hasHeader = this.slotController.hasAssignedElements('header')
|
|
134
|
-
|| !!this.avatar || !!this.heading || !!this.subHeading
|
|
135
|
-
|| this.slotController.hasAssignedElements('avatar') || this.slotController.hasAssignedElements('heading')
|
|
136
|
-
|| this.slotController.hasAssignedElements('subHeading') || this.slotController.hasAssignedElements('action');
|
|
137
|
-
hasHeader ? this.setAttribute('hasHeader', '') : this.removeAttribute('hasHeader');
|
|
130
|
+
`;
|
|
131
|
+
}
|
|
132
|
+
get headerTemplate() {
|
|
133
|
+
const hasHeader = this.slotController.hasAssignedElements('header')
|
|
134
|
+
|| !!this.avatar || !!this.heading || !!this.subHeading
|
|
135
|
+
|| this.slotController.hasAssignedElements('avatar') || this.slotController.hasAssignedElements('heading')
|
|
136
|
+
|| this.slotController.hasAssignedElements('subHeading') || this.slotController.hasAssignedElements('action');
|
|
137
|
+
hasHeader ? this.setAttribute('hasHeader', '') : this.removeAttribute('hasHeader');
|
|
138
138
|
return !hasHeader ? nothing : html `
|
|
139
139
|
<slot part='header' name='header'>
|
|
140
140
|
${this.defaultHeaderAvatarTemplate}
|
|
@@ -144,62 +144,62 @@ let Card = class Card extends Component {
|
|
|
144
144
|
</mo-flex>
|
|
145
145
|
${this.defaultHeaderActionTemplate}
|
|
146
146
|
</slot>
|
|
147
|
-
`;
|
|
148
|
-
}
|
|
149
|
-
get defaultHeaderAvatarTemplate() {
|
|
147
|
+
`;
|
|
148
|
+
}
|
|
149
|
+
get defaultHeaderAvatarTemplate() {
|
|
150
150
|
return html `
|
|
151
151
|
<slot name='avatar'>
|
|
152
152
|
${!this.avatar ? nothing : html `
|
|
153
153
|
<div part='avatar' ${style({ marginInlineEnd: '6px' })}>${this.avatar}</div>
|
|
154
154
|
`}
|
|
155
155
|
</slot>
|
|
156
|
-
`;
|
|
157
|
-
}
|
|
158
|
-
get defaultHeaderHeadingTemplate() {
|
|
156
|
+
`;
|
|
157
|
+
}
|
|
158
|
+
get defaultHeaderHeadingTemplate() {
|
|
159
159
|
return html `
|
|
160
160
|
<slot name='heading'>
|
|
161
161
|
${!this.heading ? nothing : html `
|
|
162
162
|
<mo-heading part='heading' typography='heading4' ${style({ fontWeight: '500' })}>${this.heading}</mo-heading>
|
|
163
163
|
`}
|
|
164
164
|
</slot>
|
|
165
|
-
`;
|
|
166
|
-
}
|
|
167
|
-
get defaultHeaderSubHeadingTemplate() {
|
|
165
|
+
`;
|
|
166
|
+
}
|
|
167
|
+
get defaultHeaderSubHeadingTemplate() {
|
|
168
168
|
return html `
|
|
169
169
|
<slot name='subHeading'>
|
|
170
170
|
${!this.subHeading ? nothing : html `
|
|
171
171
|
<mo-heading part='subHeading' typography='heading6' ${style({ fontWeight: '400', color: 'rgb(121, 121, 121)' })}>${this.subHeading}</mo-heading>
|
|
172
172
|
`}
|
|
173
173
|
</slot>
|
|
174
|
-
`;
|
|
175
|
-
}
|
|
176
|
-
get defaultHeaderActionTemplate() {
|
|
177
|
-
return html `<slot name='action'></slot>`;
|
|
178
|
-
}
|
|
179
|
-
get bodyTemplate() {
|
|
180
|
-
this.slotController.hasAssignedContent('') ? this.setAttribute('hasBody', '') : this.removeAttribute('hasBody');
|
|
181
|
-
return html `<slot></slot>`;
|
|
182
|
-
}
|
|
183
|
-
get footerTemplate() {
|
|
184
|
-
return !this.slotController.hasAssignedElements('footer') ? nothing : html `<slot part='footer' name='footer'></slot>`;
|
|
185
|
-
}
|
|
186
|
-
};
|
|
187
|
-
__decorate([
|
|
188
|
-
property()
|
|
189
|
-
], Card.prototype, "type", void 0);
|
|
190
|
-
__decorate([
|
|
191
|
-
property()
|
|
192
|
-
], Card.prototype, "heading", void 0);
|
|
193
|
-
__decorate([
|
|
194
|
-
property()
|
|
195
|
-
], Card.prototype, "subHeading", void 0);
|
|
196
|
-
__decorate([
|
|
197
|
-
property()
|
|
198
|
-
], Card.prototype, "avatar", void 0);
|
|
199
|
-
__decorate([
|
|
200
|
-
property()
|
|
201
|
-
], Card.prototype, "image", void 0);
|
|
202
|
-
Card = __decorate([
|
|
203
|
-
component('mo-card')
|
|
204
|
-
], Card);
|
|
205
|
-
export { Card };
|
|
174
|
+
`;
|
|
175
|
+
}
|
|
176
|
+
get defaultHeaderActionTemplate() {
|
|
177
|
+
return html `<slot name='action'></slot>`;
|
|
178
|
+
}
|
|
179
|
+
get bodyTemplate() {
|
|
180
|
+
this.slotController.hasAssignedContent('') ? this.setAttribute('hasBody', '') : this.removeAttribute('hasBody');
|
|
181
|
+
return html `<slot></slot>`;
|
|
182
|
+
}
|
|
183
|
+
get footerTemplate() {
|
|
184
|
+
return !this.slotController.hasAssignedElements('footer') ? nothing : html `<slot part='footer' name='footer'></slot>`;
|
|
185
|
+
}
|
|
186
|
+
};
|
|
187
|
+
__decorate([
|
|
188
|
+
property({ reflect: true })
|
|
189
|
+
], Card.prototype, "type", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
property()
|
|
192
|
+
], Card.prototype, "heading", void 0);
|
|
193
|
+
__decorate([
|
|
194
|
+
property()
|
|
195
|
+
], Card.prototype, "subHeading", void 0);
|
|
196
|
+
__decorate([
|
|
197
|
+
property()
|
|
198
|
+
], Card.prototype, "avatar", void 0);
|
|
199
|
+
__decorate([
|
|
200
|
+
property()
|
|
201
|
+
], Card.prototype, "image", void 0);
|
|
202
|
+
Card = __decorate([
|
|
203
|
+
component('mo-card')
|
|
204
|
+
], Card);
|
|
205
|
+
export { Card };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type StyleEntry, type StyleHandler } from '@a11d/lit';
|
|
2
|
+
export declare class AsteriskSyntaxStyleHandler implements StyleHandler {
|
|
3
|
+
private static readonly supportedKeys;
|
|
4
|
+
static readonly regex: RegExp;
|
|
5
|
+
static getProportion(value: string): number;
|
|
6
|
+
handles(_: HTMLElement, [key, value]: StyleEntry): boolean;
|
|
7
|
+
apply(element: HTMLElement, [, value]: StyleEntry): void;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=AsteriskSyntaxStyleHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AsteriskSyntaxStyleHandler.d.ts","sourceRoot":"","sources":["../../../Flex/AsteriskSyntaxStyleHandler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAgB,KAAK,YAAY,EAAE,MAAM,WAAW,CAAA;AAE5E,qBACa,0BAA2B,YAAW,YAAY;IAC9D,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAuC;IAE5E,MAAM,CAAC,QAAQ,CAAC,KAAK,SAAkC;IACvD,MAAM,CAAC,aAAa,CAAC,KAAK,EAAE,MAAM;IAIlC,OAAO,CAAC,CAAC,EAAE,WAAW,EAAE,CAAC,GAAG,EAAE,KAAK,CAAC,EAAE,UAAU;IAIhD,KAAK,CAAC,OAAO,EAAE,WAAW,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,UAAU;CAIjD"}
|
package/dist/Flex/Flex.d.ts
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { Component } from '@a11d/lit';
|
|
2
|
-
import type * as CSS from 'csstype';
|
|
3
|
-
export
|
|
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
|
-
}
|
|
1
|
+
import { Component } from '@a11d/lit';
|
|
2
|
+
import type * as CSS from 'csstype';
|
|
3
|
+
export 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
39
|
//# sourceMappingURL=Flex.d.ts.map
|
package/dist/Flex/Flex.d.ts.map
CHANGED
|
@@ -1 +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,
|
|
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,MAAM,MAAM,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"}
|
package/dist/Flex/index.d.ts
CHANGED
package/dist/Flex/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Flex/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Flex/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAA;AAC/C,cAAc,WAAW,CAAA"}
|
|
@@ -1,29 +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
|
-
}
|
|
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
29
|
//# sourceMappingURL=Heading.d.ts.map
|
package/dist/Heading/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './Heading.js';
|
|
1
|
+
export * from './Heading.js';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,19 +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
|
-
}
|
|
1
|
+
import { Controller, type 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
19
|
//# sourceMappingURL=SlotController.d.ts.map
|
|
@@ -1 +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;
|
|
1
|
+
{"version":3,"file":"SlotController.d.ts","sourceRoot":"","sources":["../../../SlotController/SlotController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,sBAAsB,EAAE,MAAM,WAAW,CAAA;AAEnE,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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './SlotController.js';
|
|
1
|
+
export * from './SlotController.js';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/bundle.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";function t(t,e,s,i){var n,r=arguments.length,o=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,s):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,s,i);else for(var l=t.length-1;l>=0;l--)(n=t[l])&&(o=(r<3?n(o):r>3?n(e,s,o):n(e,s))||o);return r>3&&o&&Object.defineProperty(e,s,o),o}const e=window,s=e.ShadowRoot&&(void 0===e.ShadyCSS||e.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,i=Symbol(),n=new WeakMap;class r{constructor(t,e,s){if(this._$cssResult$=!0,s!==i)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(s&&void 0===t){const s=void 0!==e&&1===e.length;s&&(t=n.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),s&&n.set(e,t))}return t}toString(){return this.cssText}}const o=t=>new r("string"==typeof t?t:t+"",void 0,i),l=(t,...e)=>{const s=1===t.length?t[0]:e.reduce(((e,s,i)=>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.")})(s)+t[i+1]),t[0]);return new r(s,t,i)},a=s?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return o(e)})(t):t;var h;const d=window,c=d.trustedTypes,u=c?c.emptyScript:"",p=d.reactiveElementPolyfillSupport,v={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 s=t;switch(e){case Boolean:s=null!==t;break;case Number:s=null===t?null:Number(t);break;case Object:case Array:try{s=JSON.parse(t)}catch(t){s=null}}return s}},f=(t,e)=>e!==t&&(e==e||t==t),g={attribute:!0,type:String,converter:v,reflect:!1,hasChanged:f};class y 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,s)=>{const i=this._$Ep(s,e);void 0!==i&&(this._$Ev.set(i,s),t.push(i))})),t}static createProperty(t,e=g){if(e.state&&(e.attribute=!1),this.finalize(),this.elementProperties.set(t,e),!e.noAccessor&&!this.prototype.hasOwnProperty(t)){const s="symbol"==typeof t?Symbol():"__"+t,i=this.getPropertyDescriptor(t,s,e);void 0!==i&&Object.defineProperty(this.prototype,t,i)}}static getPropertyDescriptor(t,e,s){return{get(){return this[e]},set(i){const n=this[t];this[e]=i,this.requestUpdate(t,n,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||g}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 s of e)this.createProperty(s,t[s])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const s=new Set(t.flat(1/0).reverse());for(const t of s)e.unshift(a(t))}else void 0!==t&&e.push(a(t));return e}static _$Ep(t,e){const s=e.attribute;return!1===s?void 0:"string"==typeof s?s:"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,s;(null!==(e=this._$ES)&&void 0!==e?e:this._$ES=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(s=t.hostConnected)||void 0===s||s.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 i=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return((t,i)=>{s?t.adoptedStyleSheets=i.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):i.forEach((s=>{const i=document.createElement("style"),n=e.litNonce;void 0!==n&&i.setAttribute("nonce",n),i.textContent=s.cssText,t.appendChild(i)}))})(i,this.constructor.elementStyles),i}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,s){this._$AK(t,s)}_$EO(t,e,s=g){var i;const n=this.constructor._$Ep(t,s);if(void 0!==n&&!0===s.reflect){const r=(void 0!==(null===(i=s.converter)||void 0===i?void 0:i.toAttribute)?s.converter:v).toAttribute(e,s.type);this._$El=t,null==r?this.removeAttribute(n):this.setAttribute(n,r),this._$El=null}}_$AK(t,e){var s;const i=this.constructor,n=i._$Ev.get(t);if(void 0!==n&&this._$El!==n){const t=i.getPropertyOptions(n),r="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==(null===(s=t.converter)||void 0===s?void 0:s.fromAttribute)?t.converter:v;this._$El=n,this[n]=r.fromAttribute(e,t.type),this._$El=null}}requestUpdate(t,e,s){let i=!0;void 0!==t&&(((s=s||this.constructor.getPropertyOptions(t)).hasChanged||f)(this[t],e)?(this._$AL.has(t)||this._$AL.set(t,e),!0===s.reflect&&this._$El!==t&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(t,s))):i=!1),!this.isUpdatePending&&i&&(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 s=this._$AL;try{e=this.shouldUpdate(s),e?(this.willUpdate(s),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(s)):this._$Ek()}catch(t){throw e=!1,this._$Ek(),t}e&&this._$AE(s)}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.finalized=!0,y.elementProperties=new Map,y.elementStyles=[],y.shadowRootOptions={mode:"open"},null==p||p({ReactiveElement:y}),(null!==(h=d.reactiveElementVersions)&&void 0!==h?h:d.reactiveElementVersions=[]).push("1.4.1");const m=window,_=m.trustedTypes,A=_?_.createPolicy("lit-html",{createHTML:t=>t}):void 0,b=`lit$${(Math.random()+"").slice(9)}$`,C="?"+b,w=`<${C}>`,x=document,E=(t="")=>x.createComment(t),S=t=>null===t||"object"!=typeof t&&"function"!=typeof t,H=Array.isArray,T=t=>H(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]),k=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,P=/-->/g,N=/>/g,M=RegExp(">|[ \t\n\f\r](?:([^\\s\"'>=/]+)([ \t\n\f\r]*=[ \t\n\f\r]*(?:[^ \t\n\f\r\"'`<>=]|(\"|')|))|$)","g"),O=/'/g,U=/"/g,j=/^(?:script|style|textarea|title)$/i,R=t=>(e,...s)=>({_$litType$:t,strings:e,values:s}),z=R(1),D=R(2),L=Symbol.for("lit-noChange"),B=Symbol.for("lit-nothing"),I=new WeakMap,K=(t,e,s)=>{var i,n;const r=null!==(i=null==s?void 0:s.renderBefore)&&void 0!==i?i:e;let o=r._$litPart$;if(void 0===o){const t=null!==(n=null==s?void 0:s.renderBefore)&&void 0!==n?n:null;r._$litPart$=o=new Z(e.insertBefore(E(),t),t,void 0,null!=s?s:{})}return o._$AI(t),o},V=x.createTreeWalker(x,129,null,!1),Y=(t,e)=>{const s=t.length-1,i=[];let n,r=2===e?"<svg>":"",o=k;for(let e=0;e<s;e++){const s=t[e];let l,a,h=-1,d=0;for(;d<s.length&&(o.lastIndex=d,a=o.exec(s),null!==a);)d=o.lastIndex,o===k?"!--"===a[1]?o=P:void 0!==a[1]?o=N:void 0!==a[2]?(j.test(a[2])&&(n=RegExp("</"+a[2],"g")),o=M):void 0!==a[3]&&(o=M):o===M?">"===a[0]?(o=null!=n?n:k,h=-1):void 0===a[1]?h=-2:(h=o.lastIndex-a[2].length,l=a[1],o=void 0===a[3]?M:'"'===a[3]?U:O):o===U||o===O?o=M:o===P||o===N?o=k:(o=M,n=void 0);const c=o===M&&t[e+1].startsWith("/>")?" ":"";r+=o===k?s+w:h>=0?(i.push(l),s.slice(0,h)+"$lit$"+s.slice(h)+b+c):s+b+(-2===h?(i.push(void 0),e):c)}const l=r+(t[s]||"<?>")+(2===e?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==A?A.createHTML(l):l,i]};class W{constructor({strings:t,_$litType$:e},s){let i;this.parts=[];let n=0,r=0;const o=t.length-1,l=this.parts,[a,h]=Y(t,e);if(this.el=W.createElement(a,s),V.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(i=V.nextNode())&&l.length<o;){if(1===i.nodeType){if(i.hasAttributes()){const t=[];for(const e of i.getAttributeNames())if(e.endsWith("$lit$")||e.startsWith(b)){const s=h[r++];if(t.push(e),void 0!==s){const t=i.getAttribute(s.toLowerCase()+"$lit$").split(b),e=/([.?@])?(.*)/.exec(s);l.push({type:1,index:n,name:e[2],strings:t,ctor:"."===e[1]?J:"?"===e[1]?G:"@"===e[1]?tt:F})}else l.push({type:6,index:n})}for(const e of t)i.removeAttribute(e)}if(j.test(i.tagName)){const t=i.textContent.split(b),e=t.length-1;if(e>0){i.textContent=_?_.emptyScript:"";for(let s=0;s<e;s++)i.append(t[s],E()),V.nextNode(),l.push({type:2,index:++n});i.append(t[e],E())}}}else if(8===i.nodeType)if(i.data===C)l.push({type:2,index:n});else{let t=-1;for(;-1!==(t=i.data.indexOf(b,t+1));)l.push({type:7,index:n}),t+=b.length-1}n++}}static createElement(t,e){const s=x.createElement("template");return s.innerHTML=t,s}}function q(t,e,s=t,i){var n,r,o,l;if(e===L)return e;let a=void 0!==i?null===(n=s._$Cl)||void 0===n?void 0:n[i]:s._$Cu;const h=S(e)?void 0:e._$litDirective$;return(null==a?void 0:a.constructor)!==h&&(null===(r=null==a?void 0:a._$AO)||void 0===r||r.call(a,!1),void 0===h?a=void 0:(a=new h(t),a._$AT(t,s,i)),void 0!==i?(null!==(o=(l=s)._$Cl)&&void 0!==o?o:l._$Cl=[])[i]=a:s._$Cu=a),void 0!==a&&(e=q(t,a._$AS(t,e.values),a,i)),e}class X{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:s},parts:i}=this._$AD,n=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:x).importNode(s,!0);V.currentNode=n;let r=V.nextNode(),o=0,l=0,a=i[0];for(;void 0!==a;){if(o===a.index){let e;2===a.type?e=new Z(r,r.nextSibling,this,t):1===a.type?e=new a.ctor(r,a.name,a.strings,this,t):6===a.type&&(e=new et(r,this,t)),this.v.push(e),a=i[++l]}o!==(null==a?void 0:a.index)&&(r=V.nextNode(),o++)}return n}m(t){let e=0;for(const s of this.v)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,e),e+=s.strings.length-2):s._$AI(t[e])),e++}}class Z{constructor(t,e,s,i){var n;this.type=2,this._$AH=B,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=s,this.options=i,this._$C_=null===(n=null==i?void 0:i.isConnected)||void 0===n||n}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=q(this,t,e),S(t)?t===B||null==t||""===t?(this._$AH!==B&&this._$AR(),this._$AH=B):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!==B&&S(this._$AH)?this._$AA.nextSibling.data=t:this.k(x.createTextNode(t)),this._$AH=t}T(t){var e;const{values:s,_$litType$:i}=t,n="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=W.createElement(i.h,this.options)),i);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===n)this._$AH.m(s);else{const t=new X(n,this),e=t.p(this.options);t.m(s),this.k(e),this._$AH=t}}_$AC(t){let e=I.get(t.strings);return void 0===e&&I.set(t.strings,e=new W(t)),e}O(t){H(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let s,i=0;for(const n of t)i===e.length?e.push(s=new Z(this.S(E()),this.S(E()),this,this.options)):s=e[i],s._$AI(n),i++;i<e.length&&(this._$AR(s&&s._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,e){var s;for(null===(s=this._$AP)||void 0===s||s.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 F{constructor(t,e,s,i,n){this.type=1,this._$AH=B,this._$AN=void 0,this.element=t,this.name=e,this._$AM=i,this.options=n,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=B}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,s,i){const n=this.strings;let r=!1;if(void 0===n)t=q(this,t,e,0),r=!S(t)||t!==this._$AH&&t!==L,r&&(this._$AH=t);else{const i=t;let o,l;for(t=n[0],o=0;o<n.length-1;o++)l=q(this,i[s+o],e,o),l===L&&(l=this._$AH[o]),r||(r=!S(l)||l!==this._$AH[o]),l===B?t=B:t!==B&&(t+=(null!=l?l:"")+n[o+1]),this._$AH[o]=l}r&&!i&&this.P(t)}P(t){t===B?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class J extends F{constructor(){super(...arguments),this.type=3}P(t){this.element[this.name]=t===B?void 0:t}}const Q=_?_.emptyScript:"";class G extends F{constructor(){super(...arguments),this.type=4}P(t){t&&t!==B?this.element.setAttribute(this.name,Q):this.element.removeAttribute(this.name)}}class tt extends F{constructor(t,e,s,i,n){super(t,e,s,i,n),this.type=5}_$AI(t,e=this){var s;if((t=null!==(s=q(this,t,e,0))&&void 0!==s?s:B)===L)return;const i=this._$AH,n=t===B&&i!==B||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,r=t!==B&&(i===B||n);n&&this.element.removeEventListener(this.name,this,i),r&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,s;"function"==typeof this._$AH?this._$AH.call(null!==(s=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==s?s:this.element,t):this._$AH.handleEvent(t)}}class et{constructor(t,e,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){q(this,t)}}const st={A:"$lit$",M:b,C,L:1,R:Y,D:X,V:T,I:q,H:Z,N:F,U:G,B:tt,F:J,W:et},it=m.litHtmlPolyfillSupport;var nt,rt;null==it||it(W,Z),(null!==($=m.litHtmlVersions)&&void 0!==$?$:m.litHtmlVersions=[]).push("2.3.1");class ot extends y{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,e;const s=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=s.firstChild),s}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=K(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}}ot.finalized=!0,ot._$litElement$=!0,null===(nt=globalThis.litElementHydrateSupport)||void 0===nt||nt.call(globalThis,{LitElement:ot});const lt=globalThis.litElementPolyfillSupport;null==lt||lt({LitElement:ot});(null!==(rt=globalThis.litElementVersions)&&void 0!==rt?rt:globalThis.litElementVersions=[]).push("3.2.2");const at=(t,e)=>"method"===e.kind&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(s){s.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(s){s.createProperty(e.key,t)}};var ht;null===(ht=window.HTMLSlotElement)||void 0===ht||ht.prototype.assignedElements;const dt=Symbol.for(""),ct=t=>{if((null==t?void 0:t.r)===dt)return null==t?void 0:t._$litStatic$},ut=new Map,pt=t=>(e,...s)=>{const i=s.length;let n,r;const o=[],l=[];let a,h=0,d=!1;for(;h<i;){for(a=e[h];h<i&&void 0!==(r=s[h],n=ct(r));)a+=n+e[++h],d=!0;l.push(r),o.push(a),h++}if(h===i&&o.push(e[i]),d){const t=o.join("$$lit$$");void 0===(e=ut.get(t))&&(o.raw=o,ut.set(t,e=o)),s=l}return t(e,...s)},{H:vt}=(pt(z),pt(D),st),ft=(t,e)=>void 0===e?void 0!==(null==t?void 0:t._$litType$):(null==t?void 0:t._$litType$)===e,gt=t=>void 0===t.strings,yt=()=>document.createComment(""),$t=(t,e,s)=>{var i;const n=t._$AA.parentNode,r=void 0===e?t._$AB:e._$AA;if(void 0===s){const e=n.insertBefore(yt(),r),i=n.insertBefore(yt(),r);s=new vt(e,i,t,t.options)}else{const e=s._$AB.nextSibling,o=s._$AM,l=o!==t;if(l){let e;null===(i=s._$AQ)||void 0===i||i.call(s,t),s._$AM=t,void 0!==s._$AP&&(e=t._$AU)!==o._$AU&&s._$AP(e)}if(e!==r||l){let t=s._$AA;for(;t!==e;){const e=t.nextSibling;n.insertBefore(t,r),t=e}}}return s},mt=(t,e,s=t)=>(t._$AI(e,s),t),_t={},At=(t,e=_t)=>t._$AH=e,bt=t=>t._$AH,Ct=t=>{var e;null===(e=t._$AP)||void 0===e||e.call(t,!1,!0);let s=t._$AA;const i=t._$AB.nextSibling;for(;s!==i;){const t=s.nextSibling;s.remove(),s=t}},wt=t=>{t._$AR()},xt=1,Et=2,St=3,Ht=4,Tt=6,kt=t=>(...e)=>({_$litDirective$:t,values:e});class Pt{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,s){this._$Ct=t,this._$AM=e,this._$Ci=s}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}const Nt=(t,e)=>{var s,i;const n=t._$AN;if(void 0===n)return!1;for(const t of n)null===(i=(s=t)._$AO)||void 0===i||i.call(s,e,!1),Nt(t,e);return!0},Mt=t=>{let e,s;do{if(void 0===(e=t._$AM))break;s=e._$AN,s.delete(t),t=e}while(0===(null==s?void 0:s.size))},Ot=t=>{for(let e;e=t._$AM;t=e){let s=e._$AN;if(void 0===s)e._$AN=s=new Set;else if(s.has(t))break;s.add(t),Rt(e)}};function Ut(t){void 0!==this._$AN?(Mt(this),this._$AM=t,Ot(this)):this._$AM=t}function jt(t,e=!1,s=0){const i=this._$AH,n=this._$AN;if(void 0!==n&&0!==n.size)if(e)if(Array.isArray(i))for(let t=s;t<i.length;t++)Nt(i[t],!1),Mt(i[t]);else null!=i&&(Nt(i,!1),Mt(i));else Nt(this,t)}const Rt=t=>{var e,s,i,n;t.type==Et&&(null!==(e=(i=t)._$AP)&&void 0!==e||(i._$AP=jt),null!==(s=(n=t)._$AQ)&&void 0!==s||(n._$AQ=Ut))};class zt extends Pt{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,s){super._$AT(t,e,s),Ot(this),this.isConnected=t._$AU}_$AO(t,e=!0){var s,i;t!==this.isConnected&&(this.isConnected=t,t?null===(s=this.reconnected)||void 0===s||s.call(this):null===(i=this.disconnected)||void 0===i||i.call(this)),e&&(Nt(this,t),Mt(this))}setValue(t){if(gt(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 Dt{constructor(t){this.Y=t}disconnect(){this.Y=void 0}reconnect(t){this.Y=t}deref(){return this.Y}}class Lt{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 Bt extends zt{constructor(){super(...arguments),this._$CK=new Dt(this),this._$CX=new Lt}render(t,e){return L}update(t,[e,s]){if(this.isConnected||this.disconnected(),e===this._$CJ)return;this._$CJ=e;let i=0;const{_$CK:n,_$CX:r}=this;return(async(t,e)=>{for await(const s of t)if(!1===await e(s))return})(e,(async t=>{for(;r.get();)await r.get();const o=n.deref();if(void 0!==o){if(o._$CJ!==e)return!1;void 0!==s&&(t=s(t,i)),o.commitValue(t,i),i++}return!0})),L}commitValue(t,e){this.setValue(t)}disconnected(){this._$CK.disconnect(),this._$CX.pause()}reconnected(){this._$CK.reconnect(this),this._$CX.resume()}}kt(Bt),kt(class extends Bt{constructor(t){if(super(t),t.type!==Et)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&&wt(this._$Ctt);const s=$t(this._$Ctt);mt(s,t)}}),kt(class extends Pt{constructor(t){super(t),this.et=new WeakMap}render(t){return[t]}update(t,[e]){if(ft(this.it)&&(!ft(e)||this.it.strings!==e.strings)){const e=bt(t).pop();let s=this.et.get(this.it.strings);if(void 0===s){const t=document.createDocumentFragment();s=K(B,t),s.setConnected(!1),this.et.set(this.it.strings,s)}At(s,[e]),$t(s,void 0,e)}if(ft(e)){if(!ft(this.it)||this.it.strings!==e.strings){const s=this.et.get(e.strings);if(void 0!==s){const e=bt(s).pop();wt(t),$t(t,void 0,e),At(t,[e])}}this.it=e}else this.it=void 0;return this.render(e)}}),kt(class extends Pt{constructor(t){var e;if(super(t),t.type!==xt||"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 s,i;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===(s=this.st)||void 0===s?void 0:s.has(t))&&this.nt.add(t);return this.render(e)}const n=t.element.classList;this.nt.forEach((t=>{t in e||(n.remove(t),this.nt.delete(t))}));for(const t in e){const s=!!e[t];s===this.nt.has(t)||(null===(i=this.st)||void 0===i?void 0:i.has(t))||(s?(n.add(t),this.nt.add(t)):(n.remove(t),this.nt.delete(t)))}return L}});const It={};kt(class extends Pt{constructor(){super(...arguments),this.ot=It}render(t,e){return e()}update(t,[e,s]){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,s)}}),kt(class extends Pt{constructor(){super(...arguments),this.key=B}render(t,e){return this.key=t,e}update(t,[e,s]){return e!==this.key&&(At(t),this.key=e),s}}),kt(class extends Pt{constructor(t){if(super(t),t.type!==St&&t.type!==xt&&t.type!==Ht)throw Error("The `live` directive is not allowed on child or event bindings");if(!gt(t))throw Error("`live` bindings can only contain a single expression")}render(t){return t}update(t,[e]){if(e===L||e===B)return e;const s=t.element,i=t.name;if(t.type===St){if(e===s[i])return L}else if(t.type===Ht){if(!!e===s.hasAttribute(i))return L}else if(t.type===xt&&s.getAttribute(i)===e+"")return L;return At(t),e}});const Kt=new WeakMap,Vt=(kt(class extends zt{render(t){return B}update(t,[e]){var s;const i=e!==this.Y;return i&&void 0!==this.Y&&this.rt(void 0),(i||this.lt!==this.dt)&&(this.Y=e,this.ct=null===(s=t.options)||void 0===s?void 0:s.host,this.rt(this.dt=t.element)),B}rt(t){var e;if("function"==typeof this.Y){const s=null!==(e=this.ct)&&void 0!==e?e:globalThis;let i=Kt.get(s);void 0===i&&(i=new WeakMap,Kt.set(s,i)),void 0!==i.get(this.Y)&&this.Y.call(this.ct,void 0),i.set(this.Y,t),void 0!==t&&this.Y.call(this.ct,t)}else this.Y.value=t}get lt(){var t,e,s;return"function"==typeof this.Y?null===(e=Kt.get(null!==(t=this.ct)&&void 0!==t?t:globalThis))||void 0===e?void 0:e.get(this.Y):null===(s=this.Y)||void 0===s?void 0:s.value}disconnected(){this.lt===this.dt&&this.rt(void 0)}reconnected(){this.rt(this.dt)}}),(t,e,s)=>{const i=new Map;for(let n=e;n<=s;n++)i.set(t[n],n);return i});kt(class extends Pt{constructor(t){if(super(t),t.type!==Et)throw Error("repeat() can only be used in text expressions")}ht(t,e,s){let i;void 0===s?s=e:void 0!==e&&(i=e);const n=[],r=[];let o=0;for(const e of t)n[o]=i?i(e,o):o,r[o]=s(e,o),o++;return{values:r,keys:n}}render(t,e,s){return this.ht(t,e,s).values}update(t,[e,s,i]){var n;const r=bt(t),{values:o,keys:l}=this.ht(e,s,i);if(!Array.isArray(r))return this.ut=l,o;const a=null!==(n=this.ut)&&void 0!==n?n:this.ut=[],h=[];let d,c,u=0,p=r.length-1,v=0,f=o.length-1;for(;u<=p&&v<=f;)if(null===r[u])u++;else if(null===r[p])p--;else if(a[u]===l[v])h[v]=mt(r[u],o[v]),u++,v++;else if(a[p]===l[f])h[f]=mt(r[p],o[f]),p--,f--;else if(a[u]===l[f])h[f]=mt(r[u],o[f]),$t(t,h[f+1],r[u]),u++,f--;else if(a[p]===l[v])h[v]=mt(r[p],o[v]),$t(t,r[u],r[p]),p--,v++;else if(void 0===d&&(d=Vt(l,v,f),c=Vt(a,u,p)),d.has(a[u]))if(d.has(a[p])){const e=c.get(l[v]),s=void 0!==e?r[e]:null;if(null===s){const e=$t(t,r[u]);mt(e,o[v]),h[v]=e}else h[v]=mt(s,o[v]),$t(t,r[u],s),r[e]=null;v++}else Ct(r[p]),p--;else Ct(r[u]),u++;for(;v<=f;){const e=$t(t,h[f+1]);mt(e,o[v]),h[v++]=e}for(;u<=p;){const t=r[u++];null!==t&&Ct(t)}return this.ut=l,At(t,h),L}}),kt(class extends Pt{constructor(t){var e;if(super(t),t.type!==xt||"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,s)=>{const i=t[s];return null==i?e:e+`${s=s.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${i};`}),"")}update(t,[e]){const{style:s}=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("-")?s.removeProperty(t):s[t]="")}));for(const t in e){const i=e[t];null!=i&&(this.vt.add(t),t.includes("-")?s.setProperty(t,i):s[t]=i)}return L}}),kt(class extends Pt{constructor(t){if(super(t),t.type!==Et)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 Yt extends Pt{constructor(t){if(super(t),this.it=B,t.type!==Et)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===B||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:[]}}}Yt.directiveName="unsafeHTML",Yt.resultType=1;kt(Yt);class Wt extends Yt{}Wt.directiveName="unsafeSVG",Wt.resultType=2;kt(Wt);const qt=t=>!(t=>null===t||"object"!=typeof t&&"function"!=typeof t)(t)&&"function"==typeof t.then;kt(class extends zt{constructor(){super(...arguments),this._$Cwt=1073741823,this._$Cyt=[],this._$CK=new Dt(this),this._$CX=new Lt}render(...t){var e;return null!==(e=t.find((t=>!qt(t))))&&void 0!==e?e:L}update(t,e){const s=this._$Cyt;let i=s.length;this._$Cyt=e;const n=this._$CK,r=this._$CX;this.isConnected||this.disconnected();for(let t=0;t<e.length&&!(t>this._$Cwt);t++){const o=e[t];if(!qt(o))return this._$Cwt=t,o;t<i&&o===s[t]||(this._$Cwt=1073741823,i=0,Promise.resolve(o).then((async t=>{for(;r.get();)await r.get();const e=n.deref();if(void 0!==e){const s=e._$Cyt.indexOf(o);s>-1&&s<e._$Cwt&&(e._$Cwt=s,e.setValue(t))}})))}return L}disconnected(){this._$CK.disconnect(),this._$CX.pause()}reconnected(){this._$CK.reconnect(this),this._$CX.resume()}});const Xt=B,Zt=t=>e=>"function"==typeof e?((t,e)=>(customElements.define(t,e),e))(t,e):((t,e)=>{const{kind:s,elements:i}=e;return{kind:s,elements:i,finisher(e){customElements.define(t,e)}}})(t,e);class Ft extends ot{initialized(){}connected(){}disconnected(){}get template(){return Xt}render(){return this.template}firstUpdated(t){super.firstUpdated(t),this.initialized()}connectedCallback(){super.connectedCallback(),this.connected()}disconnectedCallback(){super.disconnectedCallback(),this.disconnected()}}const Jt=()=>t=>{const e=new t;Qt.handlers.add(e)};class Qt extends Pt{constructor(t){if(super(t),t.type!==Tt)throw new Error("observeMutation can only be used on an element");const e=t;this.element=e.element}render(t){for(const[e,s]of Object.entries(t)){([...Qt.handlers].find((t=>t.handles(this.element,[e,s])))??Qt.defaultHandler).apply(this.element,[e,s])}}}Qt.handlers=new Set,Qt.defaultHandler=new class{handles(){return!0}apply(t,[e,s]){t.style[e]=null==s?"":s}};const Gt=kt(Qt);var te;let ee=te=class{static getProportion(t){return Number(t.replace(te.regex,"$1")||1)}handles(t,[e,s]){return te.supportedKeys.has(e)&&te.regex.test(s)}apply(t,[,e]){const s=te.getProportion(e);t.style.flexGrow=String(s)}};ee.supportedKeys=new Set(["width","height"]),ee.regex=/^\s*(0|[1-9][0-9]*)?\s*\*\s*$/,ee=te=t([Jt()],ee);let se=class{handles(t,[e]){return e.startsWith("--")}apply(t,[e,s]){t.style.setProperty(e,s)}};se=t([Jt()],se);const ie=new Map([[Array,(t,e)=>[...e??[],...t]],[Set,(t,e)=>new Set([...e??[],...t])],[Map,(t,e)=>new Map([...e??[],...t])]]),ne=(t,e)=>e?Object.assign(t,e):t;const re=({constructorPropertyKey:t,prototype:e,initialValue:s,lifecycleHooks:i,inheritanceHandler:n})=>{const r=e,o=e.constructor,l=Object.getOwnPropertyDescriptor(o,t)?.value;if(l)return l;const a=n??function(t){const e="constructor"in t?t.constructor:void 0;return ie.get(e)??ne}(s),h=a(s,o[t]);Object.defineProperty(o,t,{value:h});for(const[t,e]of i??[]){const s=r[t];r[t]=function(...t){s.call(this,...t),e.call(this,h,...t)}}return h},oe=Symbol("updatedObservers"),le=t=>(e,s)=>{re({prototype:e,constructorPropertyKey:oe,initialValue:new Map,lifecycleHooks:new Map([["updated",function(t,e){for(const[s,i]of e){const e=s,n=t?.get(e);void 0!==n&&n.call(this,this[e],i)}}]])}).set(s,t)},ae=t=>(e,s)=>(t?.updated&&le(t.updated)(e,s),function(t){return(e,s)=>void 0!==s?((t,e,s)=>{e.constructor.createProperty(s,t)})(t,e,s):at(t,e)}(t)(e,s));const he=Symbol("eventListeners"),de=ot.prototype.connectedCallback;ot.prototype.connectedCallback=function(){de.call(this);const t=ue(this);for(const{type:e,target:s,options:i,descriptor:n,propertyKey:r}of t?.values()??[])fe.call(this,r,n),pe.call(this,s)?.addEventListener(e,ve.call(this,r),i)};const ce=ot.prototype.disconnectedCallback;function ue(t){return t.constructor[he]}function pe(t){return"function"==typeof t?t.call(this):t??this}function ve(t){return Object.getOwnPropertyDescriptor(this,ge(t))?.value}function fe(t,e){const s=e?"function"==typeof e.get?e.get:e.value:Object.getOwnPropertyDescriptor(this,t)?.value;if(!1===ye(s))throw new TypeError(`${this.constructor}.${t} is not a function`);Object.defineProperty(this,ge(t),{value:s.bind(this),configurable:!0,enumerable:!1,writable:!1})}ot.prototype.disconnectedCallback=function(){ce.call(this);const t=ue(this);for(const{type:e,target:s,options:i,propertyKey:n}of t?.values()??[])pe.call(this,s)?.removeEventListener(e,ve.call(this,n),i)};const ge=t=>`$BOUND_${t}$`,ye=t=>{const e="function"==typeof t,s="object"==typeof t&&null!==t&&"handleEvent"in t&&"function"==typeof t.handleEvent;return e||s};class $e 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 s=null===(e=this.host.shadowRoot)||void 0===e?void 0:e.querySelector(t?`slot[name="${t}"]`:"slot:not([name])");return s?this.extractNodesFromSlot(s):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 me=class extends Ft{constructor(){super(...arguments),this.typography="heading3"}static get styles(){return l`: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 z`<slot></slot>`}};var _e;t([ae({reflect:!0})],me.prototype,"typography",void 0),me=t([Zt("mo-heading")],me);let Ae=_e=class extends Ft{get direction(){var t;return(null===(t=[..._e.flexDirectionByDirections].find((([,t])=>this.style.flexDirection===t)))||void 0===t?void 0:t[0])||"vertical"}set direction(t){this.style.flexDirection=_e.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 l`:host{display:flex;flex-direction:column;flex-wrap:nowrap}`}get template(){return z`<slot></slot>`}};Ae.flexDirectionByDirections=new Map([["horizontal","row"],["horizontal-reversed","row-reverse"],["vertical","column"],["vertical-reversed","column-reverse"]]),t([ae()],Ae.prototype,"direction",null),t([ae()],Ae.prototype,"wrap",null),t([ae()],Ae.prototype,"gap",null),t([ae()],Ae.prototype,"justifyItems",null),t([ae()],Ae.prototype,"justifyContent",null),t([ae()],Ae.prototype,"alignItems",null),t([ae()],Ae.prototype,"alignContent",null),Ae=_e=t([Zt("mo-flex")],Ae);let be=class extends Ft{constructor(){super(...arguments),this.type="filled",this.slotController=new $e(this)}static get styles(){return l`:host{display:block;border-radius:var(--mo-border-radius,4px)}:host([type="${o("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="${o("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 z`<mo-flex ${Gt({width:"100%",height:"100%"})}>${this.mediaTemplate} ${this.headerTemplate} ${this.bodyTemplate} ${this.footerTemplate}</mo-flex>`}get mediaTemplate(){return!!this.image||this.slotController.hasAssignedElements("media")?z`<slot part="media" name="media">${this.image?z`<img part="media" src="${this.image}">`:Xt}</slot>`:Xt}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?z`<slot part="header" name="header">${this.defaultHeaderAvatarTemplate}<mo-flex justifyContent="space-around" ${Gt({width:"*"})}>${this.defaultHeaderHeadingTemplate} ${this.defaultHeaderSubHeadingTemplate}</mo-flex>${this.defaultHeaderActionTemplate}</slot>`:Xt}get defaultHeaderAvatarTemplate(){return z`<slot name="avatar">${this.avatar?z`<div part="avatar" ${Gt({marginInlineEnd:"6px"})}>${this.avatar}</div>`:Xt}</slot>`}get defaultHeaderHeadingTemplate(){return z`<slot name="heading">${this.heading?z`<mo-heading part="heading" typography="heading4" ${Gt({fontWeight:"500"})}>${this.heading}</mo-heading>`:Xt}</slot>`}get defaultHeaderSubHeadingTemplate(){return z`<slot name="subHeading">${this.subHeading?z`<mo-heading part="subHeading" typography="heading6" ${Gt({fontWeight:"400",color:"rgb(121, 121, 121)"})}>${this.subHeading}</mo-heading>`:Xt}</slot>`}get defaultHeaderActionTemplate(){return z`<slot name="action"></slot>`}get bodyTemplate(){return this.slotController.hasAssignedContent("")?this.setAttribute("hasBody",""):this.removeAttribute("hasBody"),z`<slot></slot>`}get footerTemplate(){return this.slotController.hasAssignedElements("footer")?z`<slot part="footer" name="footer"></slot>`:Xt}};t([ae()],be.prototype,"type",void 0),t([ae()],be.prototype,"heading",void 0),t([ae()],be.prototype,"subHeading",void 0),t([ae()],be.prototype,"avatar",void 0),t([ae()],be.prototype,"image",void 0),be=t([Zt("mo-card")],be)})();
|
|
1
|
+
(()=>{"use strict";function t(t,e,s,i){var n,r=arguments.length,o=r<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,s):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,s,i);else for(var l=t.length-1;l>=0;l--)(n=t[l])&&(o=(r<3?n(o):r>3?n(e,s,o):n(e,s))||o);return r>3&&o&&Object.defineProperty(e,s,o),o}Object.create;Object.create;const e=window,s=e.ShadowRoot&&(void 0===e.ShadyCSS||e.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,i=Symbol(),n=new WeakMap;class r{constructor(t,e,s){if(this._$cssResult$=!0,s!==i)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(s&&void 0===t){const s=void 0!==e&&1===e.length;s&&(t=n.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),s&&n.set(e,t))}return t}toString(){return this.cssText}}const o=t=>new r("string"==typeof t?t:t+"",void 0,i),l=(t,...e)=>{const s=1===t.length?t[0]:e.reduce(((e,s,i)=>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.")})(s)+t[i+1]),t[0]);return new r(s,t,i)},a=s?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const s of t.cssRules)e+=s.cssText;return o(e)})(t):t;var h;const d=window,c=d.trustedTypes,u=c?c.emptyScript:"",p=d.reactiveElementPolyfillSupport,v={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 s=t;switch(e){case Boolean:s=null!==t;break;case Number:s=null===t?null:Number(t);break;case Object:case Array:try{s=JSON.parse(t)}catch(t){s=null}}return s}},f=(t,e)=>e!==t&&(e==e||t==t),g={attribute:!0,type:String,converter:v,reflect:!1,hasChanged:f};class $ extends HTMLElement{constructor(){super(),this._$Ei=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$El=null,this.u()}static addInitializer(t){var e;this.finalize(),(null!==(e=this.h)&&void 0!==e?e:this.h=[]).push(t)}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach(((e,s)=>{const i=this._$Ep(s,e);void 0!==i&&(this._$Ev.set(i,s),t.push(i))})),t}static createProperty(t,e=g){if(e.state&&(e.attribute=!1),this.finalize(),this.elementProperties.set(t,e),!e.noAccessor&&!this.prototype.hasOwnProperty(t)){const s="symbol"==typeof t?Symbol():"__"+t,i=this.getPropertyDescriptor(t,s,e);void 0!==i&&Object.defineProperty(this.prototype,t,i)}}static getPropertyDescriptor(t,e,s){return{get(){return this[e]},set(i){const n=this[t];this[e]=i,this.requestUpdate(t,n,s)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||g}static finalize(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),void 0!==t.h&&(this.h=[...t.h]),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 s of e)this.createProperty(s,t[s])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const s=new Set(t.flat(1/0).reverse());for(const t of s)e.unshift(a(t))}else void 0!==t&&e.push(a(t));return e}static _$Ep(t,e){const s=e.attribute;return!1===s?void 0:"string"==typeof s?s:"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,s;(null!==(e=this._$ES)&&void 0!==e?e:this._$ES=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(s=t.hostConnected)||void 0===s||s.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 i=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return((t,i)=>{s?t.adoptedStyleSheets=i.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):i.forEach((s=>{const i=document.createElement("style"),n=e.litNonce;void 0!==n&&i.setAttribute("nonce",n),i.textContent=s.cssText,t.appendChild(i)}))})(i,this.constructor.elementStyles),i}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,s){this._$AK(t,s)}_$EO(t,e,s=g){var i;const n=this.constructor._$Ep(t,s);if(void 0!==n&&!0===s.reflect){const r=(void 0!==(null===(i=s.converter)||void 0===i?void 0:i.toAttribute)?s.converter:v).toAttribute(e,s.type);this._$El=t,null==r?this.removeAttribute(n):this.setAttribute(n,r),this._$El=null}}_$AK(t,e){var s;const i=this.constructor,n=i._$Ev.get(t);if(void 0!==n&&this._$El!==n){const t=i.getPropertyOptions(n),r="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==(null===(s=t.converter)||void 0===s?void 0:s.fromAttribute)?t.converter:v;this._$El=n,this[n]=r.fromAttribute(e,t.type),this._$El=null}}requestUpdate(t,e,s){let i=!0;void 0!==t&&(((s=s||this.constructor.getPropertyOptions(t)).hasChanged||f)(this[t],e)?(this._$AL.has(t)||this._$AL.set(t,e),!0===s.reflect&&this._$El!==t&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(t,s))):i=!1),!this.isUpdatePending&&i&&(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 s=this._$AL;try{e=this.shouldUpdate(s),e?(this.willUpdate(s),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(s)):this._$Ek()}catch(t){throw e=!1,this._$Ek(),t}e&&this._$AE(s)}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 m;$.finalized=!0,$.elementProperties=new Map,$.elementStyles=[],$.shadowRootOptions={mode:"open"},null==p||p({ReactiveElement:$}),(null!==(h=d.reactiveElementVersions)&&void 0!==h?h:d.reactiveElementVersions=[]).push("1.6.1");const y=window,_=y.trustedTypes,A=_?_.createPolicy("lit-html",{createHTML:t=>t}):void 0,b=`lit$${(Math.random()+"").slice(9)}$`,C="?"+b,x=`<${C}>`,w=document,E=(t="")=>w.createComment(t),S=t=>null===t||"object"!=typeof t&&"function"!=typeof t,T=Array.isArray,H=t=>T(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]),N=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,k=/-->/g,P=/>/g,M=RegExp(">|[ \t\n\f\r](?:([^\\s\"'>=/]+)([ \t\n\f\r]*=[ \t\n\f\r]*(?:[^ \t\n\f\r\"'`<>=]|(\"|')|))|$)","g"),U=/'/g,O=/"/g,j=/^(?:script|style|textarea|title)$/i,R=t=>(e,...s)=>({_$litType$:t,strings:e,values:s}),z=R(1),I=R(2),B=Symbol.for("lit-noChange"),D=Symbol.for("lit-nothing"),L=new WeakMap,V=w.createTreeWalker(w,129,null,!1),Y=(t,e)=>{const s=t.length-1,i=[];let n,r=2===e?"<svg>":"",o=N;for(let e=0;e<s;e++){const s=t[e];let l,a,h=-1,d=0;for(;d<s.length&&(o.lastIndex=d,a=o.exec(s),null!==a);)d=o.lastIndex,o===N?"!--"===a[1]?o=k:void 0!==a[1]?o=P:void 0!==a[2]?(j.test(a[2])&&(n=RegExp("</"+a[2],"g")),o=M):void 0!==a[3]&&(o=M):o===M?">"===a[0]?(o=null!=n?n:N,h=-1):void 0===a[1]?h=-2:(h=o.lastIndex-a[2].length,l=a[1],o=void 0===a[3]?M:'"'===a[3]?O:U):o===O||o===U?o=M:o===k||o===P?o=N:(o=M,n=void 0);const c=o===M&&t[e+1].startsWith("/>")?" ":"";r+=o===N?s+x:h>=0?(i.push(l),s.slice(0,h)+"$lit$"+s.slice(h)+b+c):s+b+(-2===h?(i.push(void 0),e):c)}const l=r+(t[s]||"<?>")+(2===e?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==A?A.createHTML(l):l,i]};class W{constructor({strings:t,_$litType$:e},s){let i;this.parts=[];let n=0,r=0;const o=t.length-1,l=this.parts,[a,h]=Y(t,e);if(this.el=W.createElement(a,s),V.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(i=V.nextNode())&&l.length<o;){if(1===i.nodeType){if(i.hasAttributes()){const t=[];for(const e of i.getAttributeNames())if(e.endsWith("$lit$")||e.startsWith(b)){const s=h[r++];if(t.push(e),void 0!==s){const t=i.getAttribute(s.toLowerCase()+"$lit$").split(b),e=/([.?@])?(.*)/.exec(s);l.push({type:1,index:n,name:e[2],strings:t,ctor:"."===e[1]?F:"?"===e[1]?Q:"@"===e[1]?G:Z})}else l.push({type:6,index:n})}for(const e of t)i.removeAttribute(e)}if(j.test(i.tagName)){const t=i.textContent.split(b),e=t.length-1;if(e>0){i.textContent=_?_.emptyScript:"";for(let s=0;s<e;s++)i.append(t[s],E()),V.nextNode(),l.push({type:2,index:++n});i.append(t[e],E())}}}else if(8===i.nodeType)if(i.data===C)l.push({type:2,index:n});else{let t=-1;for(;-1!==(t=i.data.indexOf(b,t+1));)l.push({type:7,index:n}),t+=b.length-1}n++}}static createElement(t,e){const s=w.createElement("template");return s.innerHTML=t,s}}function K(t,e,s=t,i){var n,r,o,l;if(e===B)return e;let a=void 0!==i?null===(n=s._$Co)||void 0===n?void 0:n[i]:s._$Cl;const h=S(e)?void 0:e._$litDirective$;return(null==a?void 0:a.constructor)!==h&&(null===(r=null==a?void 0:a._$AO)||void 0===r||r.call(a,!1),void 0===h?a=void 0:(a=new h(t),a._$AT(t,s,i)),void 0!==i?(null!==(o=(l=s)._$Co)&&void 0!==o?o:l._$Co=[])[i]=a:s._$Cl=a),void 0!==a&&(e=K(t,a._$AS(t,e.values),a,i)),e}class q{constructor(t,e){this.u=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}v(t){var e;const{el:{content:s},parts:i}=this._$AD,n=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:w).importNode(s,!0);V.currentNode=n;let r=V.nextNode(),o=0,l=0,a=i[0];for(;void 0!==a;){if(o===a.index){let e;2===a.type?e=new X(r,r.nextSibling,this,t):1===a.type?e=new a.ctor(r,a.name,a.strings,this,t):6===a.type&&(e=new tt(r,this,t)),this.u.push(e),a=i[++l]}o!==(null==a?void 0:a.index)&&(r=V.nextNode(),o++)}return n}p(t){let e=0;for(const s of this.u)void 0!==s&&(void 0!==s.strings?(s._$AI(t,s,e),e+=s.strings.length-2):s._$AI(t[e])),e++}}class X{constructor(t,e,s,i){var n;this.type=2,this._$AH=D,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=s,this.options=i,this._$Cm=null===(n=null==i?void 0:i.isConnected)||void 0===n||n}get _$AU(){var t,e;return null!==(e=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==e?e:this._$Cm}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=K(this,t,e),S(t)?t===D||null==t||""===t?(this._$AH!==D&&this._$AR(),this._$AH=D):t!==this._$AH&&t!==B&&this.g(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):H(t)?this.k(t):this.g(t)}O(t,e=this._$AB){return this._$AA.parentNode.insertBefore(t,e)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}g(t){this._$AH!==D&&S(this._$AH)?this._$AA.nextSibling.data=t:this.T(w.createTextNode(t)),this._$AH=t}$(t){var e;const{values:s,_$litType$:i}=t,n="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=W.createElement(i.h,this.options)),i);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===n)this._$AH.p(s);else{const t=new q(n,this),e=t.v(this.options);t.p(s),this.T(e),this._$AH=t}}_$AC(t){let e=L.get(t.strings);return void 0===e&&L.set(t.strings,e=new W(t)),e}k(t){T(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let s,i=0;for(const n of t)i===e.length?e.push(s=new X(this.O(E()),this.O(E()),this,this.options)):s=e[i],s._$AI(n),i++;i<e.length&&(this._$AR(s&&s._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,e){var s;for(null===(s=this._$AP)||void 0===s||s.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._$Cm=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}}class Z{constructor(t,e,s,i,n){this.type=1,this._$AH=D,this._$AN=void 0,this.element=t,this.name=e,this._$AM=i,this.options=n,s.length>2||""!==s[0]||""!==s[1]?(this._$AH=Array(s.length-1).fill(new String),this.strings=s):this._$AH=D}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,s,i){const n=this.strings;let r=!1;if(void 0===n)t=K(this,t,e,0),r=!S(t)||t!==this._$AH&&t!==B,r&&(this._$AH=t);else{const i=t;let o,l;for(t=n[0],o=0;o<n.length-1;o++)l=K(this,i[s+o],e,o),l===B&&(l=this._$AH[o]),r||(r=!S(l)||l!==this._$AH[o]),l===D?t=D:t!==D&&(t+=(null!=l?l:"")+n[o+1]),this._$AH[o]=l}r&&!i&&this.j(t)}j(t){t===D?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class F extends Z{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===D?void 0:t}}const J=_?_.emptyScript:"";class Q extends Z{constructor(){super(...arguments),this.type=4}j(t){t&&t!==D?this.element.setAttribute(this.name,J):this.element.removeAttribute(this.name)}}class G extends Z{constructor(t,e,s,i,n){super(t,e,s,i,n),this.type=5}_$AI(t,e=this){var s;if((t=null!==(s=K(this,t,e,0))&&void 0!==s?s:D)===B)return;const i=this._$AH,n=t===D&&i!==D||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,r=t!==D&&(i===D||n);n&&this.element.removeEventListener(this.name,this,i),r&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,s;"function"==typeof this._$AH?this._$AH.call(null!==(s=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==s?s:this.element,t):this._$AH.handleEvent(t)}}class tt{constructor(t,e,s){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=s}get _$AU(){return this._$AM._$AU}_$AI(t){K(this,t)}}const et={P:"$lit$",A:b,M:C,C:1,L:Y,R:q,D:H,V:K,I:X,H:Z,N:Q,U:G,B:F,F:tt},st=y.litHtmlPolyfillSupport;null==st||st(W,X),(null!==(m=y.litHtmlVersions)&&void 0!==m?m:y.litHtmlVersions=[]).push("2.6.1");const it=(t,e,s)=>{var i,n;const r=null!==(i=null==s?void 0:s.renderBefore)&&void 0!==i?i:e;let o=r._$litPart$;if(void 0===o){const t=null!==(n=null==s?void 0:s.renderBefore)&&void 0!==n?n:null;r._$litPart$=o=new X(e.insertBefore(E(),t),t,void 0,null!=s?s:{})}return o._$AI(t),o};var nt,rt;class ot extends ${constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,e;const s=super.createRenderRoot();return null!==(t=(e=this.renderOptions).renderBefore)&&void 0!==t||(e.renderBefore=s.firstChild),s}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=it(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 B}}ot.finalized=!0,ot._$litElement$=!0,null===(nt=globalThis.litElementHydrateSupport)||void 0===nt||nt.call(globalThis,{LitElement:ot});const lt=globalThis.litElementPolyfillSupport;null==lt||lt({LitElement:ot});(null!==(rt=globalThis.litElementVersions)&&void 0!==rt?rt:globalThis.litElementVersions=[]).push("3.2.2");const at=(t,e)=>"method"===e.kind&&e.descriptor&&!("value"in e.descriptor)?{...e,finisher(s){s.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(s){s.createProperty(e.key,t)}};var ht;null===(ht=window.HTMLSlotElement)||void 0===ht||ht.prototype.assignedElements;const dt=Symbol.for(""),ct=t=>{if((null==t?void 0:t.r)===dt)return null==t?void 0:t._$litStatic$},ut=new Map,pt=t=>(e,...s)=>{const i=s.length;let n,r;const o=[],l=[];let a,h=0,d=!1;for(;h<i;){for(a=e[h];h<i&&void 0!==(r=s[h],n=ct(r));)a+=n+e[++h],d=!0;l.push(r),o.push(a),h++}if(h===i&&o.push(e[i]),d){const t=o.join("$$lit$$");void 0===(e=ut.get(t))&&(o.raw=o,ut.set(t,e=o)),s=l}return t(e,...s)},{I:vt}=(pt(z),pt(I),et),ft=(t,e)=>void 0===e?void 0!==(null==t?void 0:t._$litType$):(null==t?void 0:t._$litType$)===e,gt=t=>void 0===t.strings,$t=()=>document.createComment(""),mt=(t,e,s)=>{var i;const n=t._$AA.parentNode,r=void 0===e?t._$AB:e._$AA;if(void 0===s){const e=n.insertBefore($t(),r),i=n.insertBefore($t(),r);s=new vt(e,i,t,t.options)}else{const e=s._$AB.nextSibling,o=s._$AM,l=o!==t;if(l){let e;null===(i=s._$AQ)||void 0===i||i.call(s,t),s._$AM=t,void 0!==s._$AP&&(e=t._$AU)!==o._$AU&&s._$AP(e)}if(e!==r||l){let t=s._$AA;for(;t!==e;){const e=t.nextSibling;n.insertBefore(t,r),t=e}}}return s},yt=(t,e,s=t)=>(t._$AI(e,s),t),_t={},At=(t,e=_t)=>t._$AH=e,bt=t=>t._$AH,Ct=t=>{var e;null===(e=t._$AP)||void 0===e||e.call(t,!1,!0);let s=t._$AA;const i=t._$AB.nextSibling;for(;s!==i;){const t=s.nextSibling;s.remove(),s=t}},xt=t=>{t._$AR()},wt=1,Et=2,St=3,Tt=4,Ht=6,Nt=t=>(...e)=>({_$litDirective$:t,values:e});class kt{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,s){this._$Ct=t,this._$AM=e,this._$Ci=s}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}}const Pt=(t,e)=>{var s,i;const n=t._$AN;if(void 0===n)return!1;for(const t of n)null===(i=(s=t)._$AO)||void 0===i||i.call(s,e,!1),Pt(t,e);return!0},Mt=t=>{let e,s;do{if(void 0===(e=t._$AM))break;s=e._$AN,s.delete(t),t=e}while(0===(null==s?void 0:s.size))},Ut=t=>{for(let e;e=t._$AM;t=e){let s=e._$AN;if(void 0===s)e._$AN=s=new Set;else if(s.has(t))break;s.add(t),Rt(e)}};function Ot(t){void 0!==this._$AN?(Mt(this),this._$AM=t,Ut(this)):this._$AM=t}function jt(t,e=!1,s=0){const i=this._$AH,n=this._$AN;if(void 0!==n&&0!==n.size)if(e)if(Array.isArray(i))for(let t=s;t<i.length;t++)Pt(i[t],!1),Mt(i[t]);else null!=i&&(Pt(i,!1),Mt(i));else Pt(this,t)}const Rt=t=>{var e,s,i,n;t.type==Et&&(null!==(e=(i=t)._$AP)&&void 0!==e||(i._$AP=jt),null!==(s=(n=t)._$AQ)&&void 0!==s||(n._$AQ=Ot))};class zt extends kt{constructor(){super(...arguments),this._$AN=void 0}_$AT(t,e,s){super._$AT(t,e,s),Ut(this),this.isConnected=t._$AU}_$AO(t,e=!0){var s,i;t!==this.isConnected&&(this.isConnected=t,t?null===(s=this.reconnected)||void 0===s||s.call(this):null===(i=this.disconnected)||void 0===i||i.call(this)),e&&(Pt(this,t),Mt(this))}setValue(t){if(gt(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 It{constructor(t){this.Y=t}disconnect(){this.Y=void 0}reconnect(t){this.Y=t}deref(){return this.Y}}class Bt{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 Dt extends zt{constructor(){super(...arguments),this._$CK=new It(this),this._$CX=new Bt}render(t,e){return B}update(t,[e,s]){if(this.isConnected||this.disconnected(),e===this._$CJ)return;this._$CJ=e;let i=0;const{_$CK:n,_$CX:r}=this;return(async(t,e)=>{for await(const s of t)if(!1===await e(s))return})(e,(async t=>{for(;r.get();)await r.get();const o=n.deref();if(void 0!==o){if(o._$CJ!==e)return!1;void 0!==s&&(t=s(t,i)),o.commitValue(t,i),i++}return!0})),B}commitValue(t,e){this.setValue(t)}disconnected(){this._$CK.disconnect(),this._$CX.pause()}reconnected(){this._$CK.reconnect(this),this._$CX.resume()}}Nt(Dt),Nt(class extends Dt{constructor(t){if(super(t),t.type!==Et)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&&xt(this._$Ctt);const s=mt(this._$Ctt);yt(s,t)}}),Nt(class extends kt{constructor(t){super(t),this.et=new WeakMap}render(t){return[t]}update(t,[e]){if(ft(this.it)&&(!ft(e)||this.it.strings!==e.strings)){const e=bt(t).pop();let s=this.et.get(this.it.strings);if(void 0===s){const t=document.createDocumentFragment();s=it(D,t),s.setConnected(!1),this.et.set(this.it.strings,s)}At(s,[e]),mt(s,void 0,e)}if(ft(e)){if(!ft(this.it)||this.it.strings!==e.strings){const s=this.et.get(e.strings);if(void 0!==s){const e=bt(s).pop();xt(t),mt(t,void 0,e),At(t,[e])}}this.it=e}else this.it=void 0;return this.render(e)}}),Nt(class extends kt{constructor(t){var e;if(super(t),t.type!==wt||"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 s,i;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===(s=this.st)||void 0===s?void 0:s.has(t))&&this.nt.add(t);return this.render(e)}const n=t.element.classList;this.nt.forEach((t=>{t in e||(n.remove(t),this.nt.delete(t))}));for(const t in e){const s=!!e[t];s===this.nt.has(t)||(null===(i=this.st)||void 0===i?void 0:i.has(t))||(s?(n.add(t),this.nt.add(t)):(n.remove(t),this.nt.delete(t)))}return B}});const Lt={};Nt(class extends kt{constructor(){super(...arguments),this.ot=Lt}render(t,e){return e()}update(t,[e,s]){if(Array.isArray(e)){if(Array.isArray(this.ot)&&this.ot.length===e.length&&e.every(((t,e)=>t===this.ot[e])))return B}else if(this.ot===e)return B;return this.ot=Array.isArray(e)?Array.from(e):e,this.render(e,s)}}),Nt(class extends kt{constructor(){super(...arguments),this.key=D}render(t,e){return this.key=t,e}update(t,[e,s]){return e!==this.key&&(At(t),this.key=e),s}}),Nt(class extends kt{constructor(t){if(super(t),t.type!==St&&t.type!==wt&&t.type!==Tt)throw Error("The `live` directive is not allowed on child or event bindings");if(!gt(t))throw Error("`live` bindings can only contain a single expression")}render(t){return t}update(t,[e]){if(e===B||e===D)return e;const s=t.element,i=t.name;if(t.type===St){if(e===s[i])return B}else if(t.type===Tt){if(!!e===s.hasAttribute(i))return B}else if(t.type===wt&&s.getAttribute(i)===e+"")return B;return At(t),e}});const Vt=new WeakMap,Yt=(Nt(class extends zt{render(t){return D}update(t,[e]){var s;const i=e!==this.Y;return i&&void 0!==this.Y&&this.rt(void 0),(i||this.lt!==this.ct)&&(this.Y=e,this.dt=null===(s=t.options)||void 0===s?void 0:s.host,this.rt(this.ct=t.element)),D}rt(t){var e;if("function"==typeof this.Y){const s=null!==(e=this.dt)&&void 0!==e?e:globalThis;let i=Vt.get(s);void 0===i&&(i=new WeakMap,Vt.set(s,i)),void 0!==i.get(this.Y)&&this.Y.call(this.dt,void 0),i.set(this.Y,t),void 0!==t&&this.Y.call(this.dt,t)}else this.Y.value=t}get lt(){var t,e,s;return"function"==typeof this.Y?null===(e=Vt.get(null!==(t=this.dt)&&void 0!==t?t:globalThis))||void 0===e?void 0:e.get(this.Y):null===(s=this.Y)||void 0===s?void 0:s.value}disconnected(){this.lt===this.ct&&this.rt(void 0)}reconnected(){this.rt(this.ct)}}),(t,e,s)=>{const i=new Map;for(let n=e;n<=s;n++)i.set(t[n],n);return i});Nt(class extends kt{constructor(t){if(super(t),t.type!==Et)throw Error("repeat() can only be used in text expressions")}ht(t,e,s){let i;void 0===s?s=e:void 0!==e&&(i=e);const n=[],r=[];let o=0;for(const e of t)n[o]=i?i(e,o):o,r[o]=s(e,o),o++;return{values:r,keys:n}}render(t,e,s){return this.ht(t,e,s).values}update(t,[e,s,i]){var n;const r=bt(t),{values:o,keys:l}=this.ht(e,s,i);if(!Array.isArray(r))return this.ut=l,o;const a=null!==(n=this.ut)&&void 0!==n?n:this.ut=[],h=[];let d,c,u=0,p=r.length-1,v=0,f=o.length-1;for(;u<=p&&v<=f;)if(null===r[u])u++;else if(null===r[p])p--;else if(a[u]===l[v])h[v]=yt(r[u],o[v]),u++,v++;else if(a[p]===l[f])h[f]=yt(r[p],o[f]),p--,f--;else if(a[u]===l[f])h[f]=yt(r[u],o[f]),mt(t,h[f+1],r[u]),u++,f--;else if(a[p]===l[v])h[v]=yt(r[p],o[v]),mt(t,r[u],r[p]),p--,v++;else if(void 0===d&&(d=Yt(l,v,f),c=Yt(a,u,p)),d.has(a[u]))if(d.has(a[p])){const e=c.get(l[v]),s=void 0!==e?r[e]:null;if(null===s){const e=mt(t,r[u]);yt(e,o[v]),h[v]=e}else h[v]=yt(s,o[v]),mt(t,r[u],s),r[e]=null;v++}else Ct(r[p]),p--;else Ct(r[u]),u++;for(;v<=f;){const e=mt(t,h[f+1]);yt(e,o[v]),h[v++]=e}for(;u<=p;){const t=r[u++];null!==t&&Ct(t)}return this.ut=l,At(t,h),B}}),Nt(class extends kt{constructor(t){var e;if(super(t),t.type!==wt||"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,s)=>{const i=t[s];return null==i?e:e+`${s=s.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${i};`}),"")}update(t,[e]){const{style:s}=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("-")?s.removeProperty(t):s[t]="")}));for(const t in e){const i=e[t];null!=i&&(this.vt.add(t),t.includes("-")?s.setProperty(t,i):s[t]=i)}return B}}),Nt(class extends kt{constructor(t){if(super(t),t.type!==Et)throw Error("templateContent can only be used in child bindings")}render(t){return this.ft===t?B:(this.ft=t,document.importNode(t.content,!0))}});class Wt extends kt{constructor(t){if(super(t),this.it=D,t.type!==Et)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===D||null==t)return this._t=void 0,this.it=t;if(t===B)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:[]}}}Wt.directiveName="unsafeHTML",Wt.resultType=1;Nt(Wt);class Kt extends Wt{}Kt.directiveName="unsafeSVG",Kt.resultType=2;Nt(Kt);const qt=t=>!(t=>null===t||"object"!=typeof t&&"function"!=typeof t)(t)&&"function"==typeof t.then;Nt(class extends zt{constructor(){super(...arguments),this._$Cwt=1073741823,this._$Cyt=[],this._$CK=new It(this),this._$CX=new Bt}render(...t){var e;return null!==(e=t.find((t=>!qt(t))))&&void 0!==e?e:B}update(t,e){const s=this._$Cyt;let i=s.length;this._$Cyt=e;const n=this._$CK,r=this._$CX;this.isConnected||this.disconnected();for(let t=0;t<e.length&&!(t>this._$Cwt);t++){const o=e[t];if(!qt(o))return this._$Cwt=t,o;t<i&&o===s[t]||(this._$Cwt=1073741823,i=0,Promise.resolve(o).then((async t=>{for(;r.get();)await r.get();const e=n.deref();if(void 0!==e){const s=e._$Cyt.indexOf(o);s>-1&&s<e._$Cwt&&(e._$Cwt=s,e.setValue(t))}})))}return B}disconnected(){this._$CK.disconnect(),this._$CX.pause()}reconnected(){this._$CK.reconnect(this),this._$CX.resume()}});const Xt=D,Zt=t=>e=>"function"==typeof e?((t,e)=>(customElements.define(t,e),e))(t,e):((t,e)=>{const{kind:s,elements:i}=e;return{kind:s,elements:i,finisher(e){customElements.define(t,e)}}})(t,e);class Ft extends ot{initialized(){}connected(){}disconnected(){}get template(){return Xt}render(){return this.template}firstUpdated(t){super.firstUpdated(t),this.initialized()}connectedCallback(){super.connectedCallback(),this.connected()}disconnectedCallback(){super.disconnectedCallback(),this.disconnected()}}class Jt{constructor(t){this.host=t,this.host.addController(this)}}const Qt=()=>t=>{const e=new t;Gt.handlers.add(e)};class Gt extends kt{constructor(t){if(super(t),t.type!==Ht)throw new Error("style directive can only be used on an element");const e=t;this.element=e.element}render(t){for(const[e,s]of Object.entries(t)){([...Gt.handlers].find((t=>t.handles(this.element,[e,s])))??Gt.defaultHandler).apply(this.element,[e,s])}}}Gt.handlers=new Set,Gt.defaultHandler=new class{handles(){return!0}apply(t,[e,s]){t.style[e]=null==s?"":s}};const te=Nt(Gt);let ee=class{handles(t,[e]){return e.startsWith("--")}apply(t,[e,s]){t.style.setProperty(e,s)}};ee=t([Qt()],ee);const se=t=>(e,s)=>{e.constructor.addInitializer((e=>e.addController(new class extends Jt{constructor(){super(e),this.hasChanged=!1}get value(){return this.host[s]}hostUpdate(){this.value!==this.oldValue&&(this.hasChanged=!0)}hostUpdated(){this.hasChanged&&(this.hasChanged=!1,t.call(this.host,this.value,this.oldValue),this.oldValue=this.value)}})))},ie=t=>(e,s)=>(t?.updated&&se(t.updated)(e,s),function(t){return(e,s)=>void 0!==s?((t,e,s)=>{e.constructor.createProperty(s,t)})(t,e,s):at(t,e)}(t)(e,s));class ne extends Jt{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 s=null===(e=this.host.shadowRoot)||void 0===e?void 0:e.querySelector(t?`slot[name="${t}"]`:"slot:not([name])");return s?this.extractNodesFromSlot(s):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 re=class extends Ft{constructor(){super(...arguments),this.typography="heading3"}static get styles(){return l`: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 z`<slot></slot>`}};var oe;t([ie({reflect:!0})],re.prototype,"typography",void 0),re=t([Zt("mo-heading")],re);let le=oe=class{static getProportion(t){return Number(t.replace(oe.regex,"$1")||1)}handles(t,[e,s]){return oe.supportedKeys.has(e)&&oe.regex.test(s)}apply(t,[,e]){const s=oe.getProportion(e);t.style.flexGrow=String(s)}};var ae;le.supportedKeys=new Set(["width","height"]),le.regex=/^\s*(0|[1-9][0-9]*)?\s*\*\s*$/,le=oe=t([Qt()],le);let he=ae=class extends Ft{get direction(){var t;return(null===(t=[...ae.flexDirectionByDirections].find((([,t])=>this.style.flexDirection===t)))||void 0===t?void 0:t[0])||"vertical"}set direction(t){this.style.flexDirection=ae.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 l`:host{display:flex;flex-direction:column;flex-wrap:nowrap}`}get template(){return z`<slot></slot>`}};he.flexDirectionByDirections=new Map([["horizontal","row"],["horizontal-reversed","row-reverse"],["vertical","column"],["vertical-reversed","column-reverse"]]),t([ie()],he.prototype,"direction",null),t([ie()],he.prototype,"wrap",null),t([ie()],he.prototype,"gap",null),t([ie()],he.prototype,"justifyItems",null),t([ie()],he.prototype,"justifyContent",null),t([ie()],he.prototype,"alignItems",null),t([ie()],he.prototype,"alignContent",null),he=ae=t([Zt("mo-flex")],he);let de=class extends Ft{constructor(){super(...arguments),this.type="filled",this.slotController=new ne(this)}static get styles(){return l`:host{display:block;border-radius:var(--mo-border-radius,4px)}:host([type="${o("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="${o("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 z`<mo-flex ${te({width:"100%",height:"100%"})}>${this.mediaTemplate} ${this.headerTemplate} ${this.bodyTemplate} ${this.footerTemplate}</mo-flex>`}get mediaTemplate(){return!!this.image||this.slotController.hasAssignedElements("media")?z`<slot part="media" name="media">${this.image?z`<img part="media" src="${this.image}">`:Xt}</slot>`:Xt}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?z`<slot part="header" name="header">${this.defaultHeaderAvatarTemplate}<mo-flex justifyContent="space-around" ${te({width:"*"})}>${this.defaultHeaderHeadingTemplate} ${this.defaultHeaderSubHeadingTemplate}</mo-flex>${this.defaultHeaderActionTemplate}</slot>`:Xt}get defaultHeaderAvatarTemplate(){return z`<slot name="avatar">${this.avatar?z`<div part="avatar" ${te({marginInlineEnd:"6px"})}>${this.avatar}</div>`:Xt}</slot>`}get defaultHeaderHeadingTemplate(){return z`<slot name="heading">${this.heading?z`<mo-heading part="heading" typography="heading4" ${te({fontWeight:"500"})}>${this.heading}</mo-heading>`:Xt}</slot>`}get defaultHeaderSubHeadingTemplate(){return z`<slot name="subHeading">${this.subHeading?z`<mo-heading part="subHeading" typography="heading6" ${te({fontWeight:"400",color:"rgb(121, 121, 121)"})}>${this.subHeading}</mo-heading>`:Xt}</slot>`}get defaultHeaderActionTemplate(){return z`<slot name="action"></slot>`}get bodyTemplate(){return this.slotController.hasAssignedContent("")?this.setAttribute("hasBody",""):this.removeAttribute("hasBody"),z`<slot></slot>`}get footerTemplate(){return this.slotController.hasAssignedElements("footer")?z`<slot part="footer" name="footer"></slot>`:Xt}};t([ie({reflect:!0})],de.prototype,"type",void 0),t([ie()],de.prototype,"heading",void 0),t([ie()],de.prototype,"subHeading",void 0),t([ie()],de.prototype,"avatar",void 0),t([ie()],de.prototype,"image",void 0),de=t([Zt("mo-card")],de)})();
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './Card.js';
|
|
1
|
+
export * from './Card.js';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './Card.js';
|
|
1
|
+
export * from './Card.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/development/css-tag.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/development/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../../../node_modules/lit-element/development/lit-element.d.ts","../../../node_modules/lit-html/development/is-server.d.ts","../../../node_modules/lit/development/index.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/development/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/development/decorators.d.ts","../../../node_modules/lit-html/development/static.d.ts","../../../node_modules/lit/development/static-html.d.ts","../../../node_modules/lit-html/development/directive-helpers.d.ts","../../../node_modules/lit-html/development/async-directive.d.ts","../../../node_modules/lit-html/development/directives/async-replace.d.ts","../../../node_modules/lit-html/development/directives/async-append.d.ts","../../../node_modules/lit-html/development/directives/cache.d.ts","../../../node_modules/lit-html/development/directives/choose.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../../../node_modules/lit-html/development/directives/guard.d.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit-html/development/directives/join.d.ts","../../../node_modules/lit-html/development/directives/keyed.d.ts","../../../node_modules/lit-html/development/directives/live.d.ts","../../../node_modules/lit-html/development/directives/map.d.ts","../../../node_modules/lit-html/development/directives/range.d.ts","../../../node_modules/lit-html/development/directives/ref.d.ts","../../../node_modules/lit-html/development/directives/repeat.d.ts","../../../node_modules/lit-html/development/directives/style-map.d.ts","../../../node_modules/lit-html/development/directives/template-content.d.ts","../../../node_modules/lit-html/development/directives/unsafe-html.d.ts","../../../node_modules/lit-html/development/directives/unsafe-svg.d.ts","../../../node_modules/lit-html/development/directives/until.d.ts","../../../node_modules/lit-html/development/directives/when.d.ts","../../../node_modules/@a11d/lit/dist/types.d.ts","../../../node_modules/@a11d/lit/dist/component/nothing.d.ts","../../../node_modules/@a11d/lit/dist/component/component.d.ts","../../../node_modules/@a11d/lit/dist/component/index.d.ts","../../../node_modules/@a11d/lit/dist/controller/controller.d.ts","../../../node_modules/@a11d/lit/dist/controller/index.d.ts","../../../node_modules/@a11d/lit/dist/query/query.d.ts","../../../node_modules/@a11d/lit/dist/query/queryall.d.ts","../../../node_modules/@a11d/lit/dist/query/queryallasnodelist.d.ts","../../../node_modules/@a11d/lit/dist/query/index.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@a11d/lit/dist/style/style.d.ts","../../../node_modules/@a11d/lit/dist/style/custompropertystylehandler.d.ts","../../../node_modules/@a11d/lit/dist/style/index.d.ts","../../../node_modules/@a11d/lit/dist/updated/updated.d.ts","../../../node_modules/@a11d/lit/dist/updated/property.d.ts","../../../node_modules/@a11d/lit/dist/updated/state.d.ts","../../../node_modules/@a11d/lit/dist/updated/index.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/eventlistenertarget.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/eventlistener.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/extracteventhandler.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/eventlistenercontroller.d.ts","../../../node_modules/@a11d/lit/dist/eventlistener/index.d.ts","../../../node_modules/@a11d/lit/dist/event/eventdispatcher.d.ts","../../../node_modules/@a11d/lit/dist/event/pureeventdispatcher.d.ts","../../../node_modules/@a11d/lit/dist/event/htmlelementeventdispatcher.d.ts","../../../node_modules/@a11d/lit/dist/event/event.d.ts","../../../node_modules/@a11d/lit/dist/event/index.d.ts","../../../node_modules/@a11d/lit/dist/index.d.ts","../../slotcontroller/slotcontroller.ts","../../slotcontroller/index.ts","../../heading/heading.ts","../../heading/index.ts","../../flex/asterisksyntaxstylehandler.ts","../../flex/flex.ts","../../flex/index.ts","../card.ts","../index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/clean-css/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cookie/index.d.ts","../../../node_modules/@types/cors/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/relateurl/index.d.ts","../../../node_modules/@types/html-minifier/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/is-function/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jasmine/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/npmlog/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/pretty-hrtime/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/tapable/index.d.ts","../../../node_modules/anymatch/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/source.d.ts","../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts","../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts","../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts","../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts","../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts","../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts","../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/webpack/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true,"impliedFormat":1},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586","impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","impliedFormat":99},{"version":"5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","impliedFormat":99},{"version":"d27ead0e913b4225279e8beb10450ecaf54af5ed145a6ecbbed18bb130815006","impliedFormat":99},{"version":"2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38","impliedFormat":1},{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3f822bef2bc0bd1b3a972ddba6f547bf825863c9f6b7327abd59a0729ce7d7d","impliedFormat":99},{"version":"b17fe7307e44c14967984032979f9858d9a98c3e27028007f29cb8d2bdb0332f","impliedFormat":99},{"version":"4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","impliedFormat":99},{"version":"1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","impliedFormat":99},{"version":"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","impliedFormat":99},{"version":"4b8e8a20b14b5ae700743222a80ab3dcb44822d269b29a7779fe25fe1f0f87a3","impliedFormat":99},{"version":"d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","impliedFormat":99},{"version":"411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","impliedFormat":99},{"version":"6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","impliedFormat":99},{"version":"938dd6c2b518b1ae8598db5e2bc7db03be0c6a774c4cb846ca92b51bb353e019","impliedFormat":99},{"version":"d36d25c50d6bff81a153e87b70c07285955fba8a9d317c453dc74aad826e8cbb","impliedFormat":99},{"version":"effe65dcf890703716bead4f38170fcbe769cb49e8c8260c11b8c402cac443e1","impliedFormat":99},{"version":"0848a16732172391d2d0210f754b66ac925cd7c1b501ad8e4fd405e6ade688a8","impliedFormat":99},{"version":"bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","impliedFormat":99},{"version":"e8265198b29dccb14667214f65f77c5e4744a8797f75d96bcf8b150b23a56705","impliedFormat":99},{"version":"a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","impliedFormat":99},{"version":"bbc354c6a2740b087f1139e88e90309de480c5390362e2f0d32a145d8d7cf539","impliedFormat":99},{"version":"15c9478a8a3d630ac5e738aca25fca15d0842aaeb97fb1a9c1e80eddc5a0e14c","impliedFormat":99},{"version":"fc0799f40673a00eda78d2e4d1c89aee7e8fa72a68b736cec3ab1ccc54d4cc76","impliedFormat":99},{"version":"0bd3ab2e39530bd36d76eaee2166623e9280fb80d6f2fd31cab80d6d444ec29a","impliedFormat":99},{"version":"8ac4cf12b1be6335c272e8a0b4b1847e03adda3b7870aebeeddd44204c020d86","impliedFormat":99},{"version":"f45c48c0408187f2261d7f86ef92654e0615efd0c161983e900bd58d9cfa1eba","impliedFormat":99},{"version":"89069f48799198a4faeddffd2324ddd831fc8e099b5b1917bfeee379c2013773","impliedFormat":99},{"version":"c129757c71727fdcc3cba63f2daf16c375bdd72905062f75dd2da0c8a9003be4","impliedFormat":99},{"version":"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","impliedFormat":99},{"version":"78ff0bc9b3e12c71af9cb45078452ae777c0fd7653a51fcbcf7126c17801170f","impliedFormat":99},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"f599ef6a8f8678be036ae5ac26b00657664ed26d9e0ebaf9244739b267410646","impliedFormat":99},{"version":"5a30f5ba1701cbb29cb2ff3aca0064a8b0b8b4398d30caad7a0c5ace9636854e","impliedFormat":99},{"version":"6d1d62eec2761a26d0b1ecb3f2fb0e7c549ca975bfec7d62ace252d5415d7646","impliedFormat":99},{"version":"f0d4da8c4cc589095f0c2dc87ba5cd73394c382b54793357b6cf821dbd26c8e4","impliedFormat":99},{"version":"8eda58842fed4ca236afe50dd183d569d2cf0cb99be517e955c1c033d8b6bd58","impliedFormat":99},{"version":"5ab260f41bbd61e51a501a54a9c255ccd2c7eba9b857827e60e2abc21e604dc7","impliedFormat":99},{"version":"3e3c92a1eb358f0abd3ef107f6101b985b8f786ad8a3d87c1215c0704e493616","impliedFormat":99},{"version":"8dd4e138149125dc155176b74312deb81a1adc7717ba2de966e93eb161c15c16","impliedFormat":99},{"version":"c50cdef58c53c1f6ccddb43b206fb327857af2bac581192d325ee8df817638d5","impliedFormat":99},{"version":"053a19c91aaa80cc06d7113a41b7e776972bc1f31a4c7246e0164f6041918979","impliedFormat":99},{"version":"ccf24cd06f3a6ed653dbfcfd162241399c727bfedd91ce5e6fabfa1e1796c37e","impliedFormat":99},{"version":"d58ccd9064506e6b18e5deb6d80d775caa48447a2af4f26b5b1258a23470a574","impliedFormat":99},{"version":"2145b5a1d55b65d7468b4b7aab3ebb9441b9933baf76a7f09477fba2e3d24131","impliedFormat":99},{"version":"eaf71303faefce7c63f3da861d339223be2e958279aaa97368310b9751dad0bc","affectsGlobalScope":true,"impliedFormat":99},{"version":"e7cced15e4b925db8163736482d9b94c360292708fe5c23337399c993e7fe467","impliedFormat":99},{"version":"897b6cfbdd419d1b097bae2046d561c6daa88ef3fcdb38a7c15abdb3d72486a6","impliedFormat":99},{"version":"29b4dec65519308a54baf0eb25c283780d99edd1de21977d076287ef12812cff","impliedFormat":99},{"version":"de097f57fc69df69563d86f1cdf6efa95cd2439de37780ea44607998b9ffd346","impliedFormat":99},{"version":"927f5e39c8cae873fb3cdbb93b4cc5d302decbfb8f5d9b2113988dcf8a150371","impliedFormat":99},{"version":"b5eff6ee2627a0823b3f6721dff0799638053af3e00f3c69321a35c990cb2a3a","impliedFormat":99},{"version":"d805d6516df5747712a1a2ce3b63ac704a5a74bc18c97476ab16687571ee7f87","impliedFormat":99},{"version":"dba12ebd03d0b06be80194e5ef9e83f87405ebfbffe263bd1c612174a7b72520","impliedFormat":99},{"version":"d9d368ee6bb0e1679b9272bcf6dd00a97ef64dc381ed5e60d6120d8eef00e278","impliedFormat":99},{"version":"1c29793071152b207c01ea1954e343be9a44d85234447b2b236acae9e709a383","impliedFormat":1},{"version":"fb0904dac39e543e79a205ffa6542acae56c1b75b8226496a0cb2add1ce3fbd8","impliedFormat":99},{"version":"e05ca0f0182a4f2eec95d6e3ac4be24f463cf18ca667ee3760e56bb62b5e7c66","impliedFormat":99},{"version":"b7c61d25584bff3e0323487ef667d0889a8cb91f65c82131c2ce696064a28db2","impliedFormat":99},{"version":"7c92e5def3eacf27f9ff98e77b8b1018ecf54e8933dc612eb3215db7f0f31c43","impliedFormat":99},{"version":"cf3be859d20ff27b0555a6b720a1c7b1401eab9bd3e4bd006421aa86191a41bd","impliedFormat":99},{"version":"9a61960c52594a209431a0175c3e4ccc949122d3f7b416972cfcf31bc8e60bf1","impliedFormat":99},{"version":"de1f4ff92d8c421b5d6d26bb848007a52c66a51d426c3bcc7d26781f1a8dc7d9","impliedFormat":99},{"version":"111268277716746b65ab5166f24df33648a989a2c7116a2312e03ca328d06d01","impliedFormat":99},{"version":"52b9bef7fbab53ca48ec58f7784eb07617f0e322d8648fdf17b205bd612b3bad","impliedFormat":99},{"version":"019a7d171d48aec3d22b042b4f4a1699af13f34f26e3177ef5fdae9f6af072ee","impliedFormat":99},{"version":"fc2bd60d17f9e6d1277bebd5a651bce5822291c149568c121e606d7f53349a1a","impliedFormat":99},{"version":"ca0b61ddd472250bfdf1a1258208a69ad014e66daf2862b47b4c835945243bd3","impliedFormat":99},{"version":"9a3edeb212dd00a8a24c582d780f831bb779ea9ae4fa34b4279561887d4bd066","affectsGlobalScope":true,"impliedFormat":99},{"version":"72d30486d50c5624b446418a54c93ef2cdfb781ee5801fec3ef642094498c640","impliedFormat":99},{"version":"091729c3d769cc65f63d535d4998222f16da87311f5f6fc49e407b1dbd39d274","impliedFormat":99},{"version":"e4d538ed427096d8326aeefaf4870b8ba01330dc2a3bf08b2c719062c50fa9ec","impliedFormat":99},{"version":"673a6be5d1871dc1c26385ffb6bee5cee8c914195502e67c7a830c8058ea3a22","impliedFormat":99},{"version":"316dc3227824fdf0bf060cd652ea678ae1e572638064c5aaeab803b2c5bd6dd9","impliedFormat":99},{"version":"fbc5af9bdc3392f32eed66f0d1a56ff1f051f8e82b28d7fc6188131536dc754e","impliedFormat":99},{"version":"f9f7be1de4a7cb83707bc3c74b641e278172d84081ba8345004f6026376933a6","impliedFormat":99},{"version":"303c79de0b0ea4ddce5affd698181f3199c4b2228d131bbfa743417554f020d0","affectsGlobalScope":true,"impliedFormat":99},{"version":"1d0335d504bfdd8174c78f758dc01b28fa03a67d8af9190fcfa025509e8c088a","impliedFormat":99},{"version":"0aa902366da2f22035aca5bcec49a095b32fce42addc8b2582e1cbc61a0947b7","impliedFormat":99},{"version":"05c32b90a0e9f8823579cb3909cbfb5dad5966adf4def482ca81c22cf3977a70","affectsGlobalScope":true,"impliedFormat":99},{"version":"2c781921c00d19d6d0115c4fd0a358b5d45d52f6e4630f6f690018e3e210fa75","impliedFormat":99},{"version":"addd5e29b8bf5d0f74b4101aa165a05554388d20c96009b79d13d8b86dc6262e","signature":"c59f062514a3cbf3a248e652c3662e2e3303936bc1a31b511d38aa017272bebe","affectsGlobalScope":true,"impliedFormat":99},{"version":"850fd58496ef160b082dd8970e05254d2e0132050cd1394e920553159affb708","signature":"d88bcc391e6a2096f295c3c84f54bf1826996e6e51b7c61ca3ece6c3c0f739d8","impliedFormat":99},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"54ba7456adb777a685250cd144115ea51379784012ba1311255b715c6bdcff2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"5450889a3b688f9da80e7c96963b2cfebc6097e8e95790a23a48558b61e6aea7","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","impliedFormat":1},{"version":"04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","impliedFormat":1},{"version":"2d1323c55cb7a4f2cf73f03797b26645a7657dd0217beb41b0079b0490ec3370","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"c5dd1fef4cd4aaffc78786047bed5ae6fc1200d19a1946cbc4e2d3ed4d62c8fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","impliedFormat":1},{"version":"efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"e793f85164d47950e32731e98897e3e6b285339c5fa1b3a3ddd1711a54f371b1","impliedFormat":1},{"version":"e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","impliedFormat":1},{"version":"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","impliedFormat":1},{"version":"951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","impliedFormat":1},{"version":"e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","impliedFormat":1},{"version":"43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","impliedFormat":1},{"version":"cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","impliedFormat":1},{"version":"3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","impliedFormat":1},{"version":"9dcd1a6ae84def6ce3e80b27a367912e5b8e9f15c039143820ab76f7ceb8f3ab","impliedFormat":1},{"version":"0def05b4e59413659e7f1cad8b0e32858d7d272a4701457e7fea95618f6ef7db","impliedFormat":1},{"version":"3f6bff86e78e065dad71ca8e395824703f56977f7309139127e58718d7915410","impliedFormat":1},{"version":"ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","impliedFormat":1},{"version":"54c9959f2d8ba97a5fcc4345ac2fca6f1bc20fe5764570b7fef37bea107bc70b","impliedFormat":1},{"version":"de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","impliedFormat":1},{"version":"8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","impliedFormat":1},{"version":"7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","impliedFormat":1},{"version":"f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","impliedFormat":1},{"version":"6746c740192f7ea0efb8cd17be737f09ae11ec6322d35103dcb269959dc57026","affectsGlobalScope":true,"impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","impliedFormat":1},{"version":"0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77","impliedFormat":1},{"version":"3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","impliedFormat":1},{"version":"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","impliedFormat":1},{"version":"c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","impliedFormat":1},{"version":"c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","impliedFormat":1},{"version":"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","impliedFormat":1},{"version":"3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","impliedFormat":1},{"version":"eac647a94fb1f09789e12dfecb52dcd678d05159a4796b4e415aa15892f3b103","impliedFormat":1},{"version":"b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","impliedFormat":1},{"version":"8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","impliedFormat":1},{"version":"ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","impliedFormat":1},{"version":"083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","impliedFormat":1},{"version":"274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","impliedFormat":1},{"version":"6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","impliedFormat":1},{"version":"5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","impliedFormat":1},{"version":"f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","impliedFormat":1},{"version":"0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","impliedFormat":1},{"version":"05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","impliedFormat":1},{"version":"e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","impliedFormat":1},{"version":"d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","impliedFormat":1},{"version":"e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","impliedFormat":1},{"version":"1fc49547f60101e7fac0d9113a52c29178be082d46d7525009aebafdbb170a69","impliedFormat":1},{"version":"401845ce10d4d9848a8e39f5004446eef7c3db2de5e9341b8a17c9b00aefcc0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","impliedFormat":1},{"version":"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","impliedFormat":1},{"version":"9cdb157e06005f2614aa42ddd4d6b46a3623145349bbac5dd1ee221fb71dcc25","impliedFormat":1}],"root":[131,132],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"module":199,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":4},"fileIdsList":[[56,59,60,179],[96,97,179],[59,179],[99,179],[179],[118,119,120,121,179],[59,113,179],[59,99,113,179],[113,114,115,116,179],[55,56,59,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,98,100,104,108,112,117,122,179],[101,102,103,179],[70,179],[106,179],[106,107,179],[55,105,123,179],[109,110,111,179],[59,109,179],[59,70,109,179],[52,179],[60,179],[52,60,179],[52,60,68,179],[50,51,179],[152,179,186,187],[143,179,186],[152,154,179,186,190],[178,179,186,194],[152,179,186],[179,199,201],[179,198,199,200],[149,152,179,186,192,193],[179,188,193,194,205],[149,150,179,186,207],[150,179,186],[179,210],[179,191,212,213],[149,152,154,157,167,178,179,186],[179,218],[179,219],[179,223,225,226,227,228,229,230,231,232,233,234,235],[179,223,224,226,227,228,229,230,231,232,233,234,235],[179,224,225,226,227,228,229,230,231,232,233,234,235],[179,223,224,225,227,228,229,230,231,232,233,234,235],[179,223,224,225,226,228,229,230,231,232,233,234,235],[179,223,224,225,226,227,229,230,231,232,233,234,235],[179,223,224,225,226,227,228,230,231,232,233,234,235],[179,223,224,225,226,227,228,229,231,232,233,234,235],[179,223,224,225,226,227,228,229,230,232,233,234,235],[179,223,224,225,226,227,228,229,230,231,233,234,235],[179,223,224,225,226,227,228,229,230,231,232,234,235],[179,223,224,225,226,227,228,229,230,231,232,233,235],[179,223,224,225,226,227,228,229,230,231,232,233,234],[179,203],[179,204],[152,178,179,186,238,239],[133,179],[136,179],[137,142,170,179],[138,149,150,157,167,178,179],[138,139,149,157,179],[140,179],[141,142,150,158,179],[142,167,175,179],[143,145,149,157,179],[144,179],[145,146,179],[149,179],[147,149,179],[149,150,151,167,178,179],[149,150,151,164,167,170,179],[179,183],[145,152,157,167,178,179],[149,150,152,153,157,167,175,178,179],[152,154,167,175,178,179],[133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185],[149,155,179],[156,178,179],[145,149,157,167,179],[158,179],[159,179],[136,160,179],[161,177,179,183],[162,179],[163,179],[149,164,165,179],[164,166,179,181],[137,149,167,168,169,170,179],[137,167,169,179],[167,168,179],[170,179],[171,179],[149,173,174,179],[173,174,179],[142,157,167,175,179],[176,179],[157,177,179],[137,152,163,178,179],[142,179],[167,179,180],[179,181],[179,182],[137,142,149,151,160,167,178,179,181,183],[167,179,184],[179,247,286],[179,247,271,286],[179,286],[179,247],[179,247,272,286],[179,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285],[179,272,286],[150,179,206],[152,179,186,204],[53,179],[179,190],[179,186,293,294,295,296,297,298,299,300,301,302,303],[179,292,293,302],[179,293,302],[179,289,292,293,302],[179,292,293,294,295,296,297,298,299,300,301,303],[179,293],[142,179,292,302],[142,179,186,190,212,290,291,304],[149,152,154,167,175,178,179,184,186],[179,308],[152,167,179,186],[52,56,179],[55,56,179],[56,179],[55,56,75,179],[55,56,74,179],[55,179],[55,56,91,179],[54,55,179],[61,62,63,64,65,66,67,68,69,179],[52,56,57,58,179],[71,179],[49,123,125,127,130,179],[49,131,179],[49,123,179],[49,105,123,179],[49,128,129,179],[49,126,179],[49,124,179],[56,123,125,127,130],[131]],"referencedMap":[[97,1],[98,2],[96,3],[99,3],[100,4],[121,5],[118,5],[120,5],[122,6],[119,5],[114,7],[116,8],[113,5],[115,5],[117,9],[123,10],[104,11],[101,3],[102,3],[103,12],[107,13],[108,14],[106,15],[95,5],[112,16],[110,17],[111,18],[109,3],[50,5],[60,19],[61,20],[64,21],[62,21],[66,21],[69,22],[68,5],[67,21],[65,21],[63,20],[51,5],[52,23],[188,24],[189,25],[191,26],[195,27],[187,28],[196,5],[197,28],[202,29],[198,5],[201,30],[199,5],[194,31],[206,32],[208,33],[209,34],[211,35],[215,5],[214,36],[216,37],[217,5],[218,5],[219,38],[220,39],[221,5],[200,5],[222,5],[224,40],[225,41],[223,42],[226,43],[227,44],[228,45],[229,46],[230,47],[231,48],[232,49],[233,50],[234,51],[235,52],[236,35],[204,53],[203,54],[207,5],[237,5],[239,5],[240,55],[133,56],[134,56],[136,57],[137,58],[138,59],[139,60],[140,61],[141,62],[142,63],[143,64],[144,65],[145,66],[146,66],[148,67],[147,68],[149,67],[150,69],[151,70],[135,71],[185,5],[152,72],[153,73],[154,74],[186,75],[155,76],[156,77],[157,78],[158,79],[159,80],[160,81],[161,82],[162,83],[163,84],[164,85],[165,85],[166,86],[167,87],[169,88],[168,89],[170,90],[171,91],[172,5],[173,92],[174,93],[175,94],[176,95],[177,96],[178,97],[179,98],[180,99],[181,100],[182,101],[183,102],[184,103],[241,5],[242,67],[243,5],[244,5],[245,5],[193,5],[192,5],[213,5],[246,5],[271,104],[272,105],[247,106],[250,106],[269,104],[270,104],[260,104],[259,107],[257,104],[252,104],[265,104],[263,104],[267,104],[251,104],[264,104],[268,104],[253,104],[254,104],[266,104],[248,104],[255,104],[256,104],[258,104],[262,104],[273,108],[261,104],[249,104],[286,109],[285,5],[280,108],[282,110],[281,108],[274,108],[275,108],[277,108],[279,108],[283,110],[284,110],[276,110],[278,110],[287,111],[205,112],[288,28],[289,5],[290,5],[54,113],[53,5],[212,114],[210,5],[306,5],[304,115],[303,116],[294,117],[295,118],[302,119],[296,118],[297,117],[298,117],[299,117],[300,120],[293,121],[301,116],[292,5],[305,122],[307,123],[308,5],[309,124],[291,5],[105,5],[238,125],[57,126],[74,127],[73,127],[55,128],[76,129],[75,130],[77,127],[78,5],[79,127],[80,127],[81,128],[82,5],[83,131],[84,127],[85,5],[86,5],[87,130],[88,127],[89,127],[90,127],[91,127],[92,132],[93,130],[94,5],[58,5],[56,133],[71,128],[70,134],[59,135],[72,136],[190,5],[49,5],[46,5],[47,5],[8,5],[9,5],[13,5],[12,5],[2,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[3,5],[4,5],[48,5],[25,5],[22,5],[23,5],[24,5],[26,5],[27,5],[28,5],[5,5],[29,5],[30,5],[31,5],[32,5],[6,5],[36,5],[33,5],[34,5],[35,5],[37,5],[7,5],[38,5],[43,5],[44,5],[39,5],[40,5],[41,5],[42,5],[1,5],[45,5],[11,5],[10,5],[131,137],[132,138],[128,139],[129,140],[130,141],[126,139],[127,142],[125,143],[124,139]],"exportedModulesMap":[[97,1],[98,2],[96,3],[99,3],[100,4],[121,5],[118,5],[120,5],[122,6],[119,5],[114,7],[116,8],[113,5],[115,5],[117,9],[123,10],[104,11],[101,3],[102,3],[103,12],[107,13],[108,14],[106,15],[95,5],[112,16],[110,17],[111,18],[109,3],[50,5],[60,19],[61,20],[64,21],[62,21],[66,21],[69,22],[68,5],[67,21],[65,21],[63,20],[51,5],[52,23],[188,24],[189,25],[191,26],[195,27],[187,28],[196,5],[197,28],[202,29],[198,5],[201,30],[199,5],[194,31],[206,32],[208,33],[209,34],[211,35],[215,5],[214,36],[216,37],[217,5],[218,5],[219,38],[220,39],[221,5],[200,5],[222,5],[224,40],[225,41],[223,42],[226,43],[227,44],[228,45],[229,46],[230,47],[231,48],[232,49],[233,50],[234,51],[235,52],[236,35],[204,53],[203,54],[207,5],[237,5],[239,5],[240,55],[133,56],[134,56],[136,57],[137,58],[138,59],[139,60],[140,61],[141,62],[142,63],[143,64],[144,65],[145,66],[146,66],[148,67],[147,68],[149,67],[150,69],[151,70],[135,71],[185,5],[152,72],[153,73],[154,74],[186,75],[155,76],[156,77],[157,78],[158,79],[159,80],[160,81],[161,82],[162,83],[163,84],[164,85],[165,85],[166,86],[167,87],[169,88],[168,89],[170,90],[171,91],[172,5],[173,92],[174,93],[175,94],[176,95],[177,96],[178,97],[179,98],[180,99],[181,100],[182,101],[183,102],[184,103],[241,5],[242,67],[243,5],[244,5],[245,5],[193,5],[192,5],[213,5],[246,5],[271,104],[272,105],[247,106],[250,106],[269,104],[270,104],[260,104],[259,107],[257,104],[252,104],[265,104],[263,104],[267,104],[251,104],[264,104],[268,104],[253,104],[254,104],[266,104],[248,104],[255,104],[256,104],[258,104],[262,104],[273,108],[261,104],[249,104],[286,109],[285,5],[280,108],[282,110],[281,108],[274,108],[275,108],[277,108],[279,108],[283,110],[284,110],[276,110],[278,110],[287,111],[205,112],[288,28],[289,5],[290,5],[54,113],[53,5],[212,114],[210,5],[306,5],[304,115],[303,116],[294,117],[295,118],[302,119],[296,118],[297,117],[298,117],[299,117],[300,120],[293,121],[301,116],[292,5],[305,122],[307,123],[308,5],[309,124],[291,5],[105,5],[238,125],[57,126],[74,127],[73,127],[55,128],[76,129],[75,130],[77,127],[78,5],[79,127],[80,127],[81,128],[82,5],[83,131],[84,127],[85,5],[86,5],[87,130],[88,127],[89,127],[90,127],[91,127],[92,132],[93,130],[94,5],[58,5],[56,133],[71,128],[70,134],[59,135],[72,136],[190,5],[49,5],[46,5],[47,5],[8,5],[9,5],[13,5],[12,5],[2,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[3,5],[4,5],[48,5],[25,5],[22,5],[23,5],[24,5],[26,5],[27,5],[28,5],[5,5],[29,5],[30,5],[31,5],[32,5],[6,5],[36,5],[33,5],[34,5],[35,5],[37,5],[7,5],[38,5],[43,5],[44,5],[39,5],[40,5],[41,5],[42,5],[1,5],[45,5],[11,5],[10,5],[131,144],[132,145],[128,139],[129,140],[130,141],[126,139],[127,142],[125,143],[124,139]],"semanticDiagnosticsPerFile":[97,98,96,99,100,121,118,120,122,119,114,116,113,115,117,123,104,101,102,103,107,108,106,95,112,110,111,109,50,60,61,64,62,66,69,68,67,65,63,51,52,188,189,191,195,187,196,197,202,198,201,199,194,206,208,209,211,215,214,216,217,218,219,220,221,200,222,224,225,223,226,227,228,229,230,231,232,233,234,235,236,204,203,207,237,239,240,133,134,136,137,138,139,140,141,142,143,144,145,146,148,147,149,150,151,135,185,152,153,154,186,155,156,157,158,159,160,161,162,163,164,165,166,167,169,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,241,242,243,244,245,193,192,213,246,271,272,247,250,269,270,260,259,257,252,265,263,267,251,264,268,253,254,266,248,255,256,258,262,273,261,249,286,285,280,282,281,274,275,277,279,283,284,276,278,287,205,288,289,290,54,53,212,210,306,304,303,294,295,302,296,297,298,299,300,293,301,292,305,307,308,309,291,105,238,57,74,73,55,76,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,58,56,71,70,59,72,190,49,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,48,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,131,132,128,129,130,126,127,125,124]},"version":"5.0.2"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@3mo/card",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A card web-component based on Material Design.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/3mo-esolutions/web-components
|
|
7
|
+
"url": "https://github.com/3mo-esolutions/web-components"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lit",
|