@3mo/card 0.2.1 → 0.2.3

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.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.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({ 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 };
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 };
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.es2021.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.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.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.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/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/color-string/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/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/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":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","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":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"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":"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","impliedFormat":99},{"version":"5a4af5e4727864a08625d5c892d7cba8916d205c7f0c68e15eda5d6579968497","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":"64eadb7a84951a80b7aaedef30839bd2357eeebb609bc7c16cf5fac9d290f377","impliedFormat":99},{"version":"c42f9b18f5f559b133cf9b409f678afb30df9c6498865aae9a1abad0f1e727a8","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":"1a9cb39dab7fb76a9b2ffa1d72bc718ceef75d0aee9a25160a134800a1515531","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":"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","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":"eaf52bbfaaf5eddc1261af3717d4db20bb47a2235dac970f2e824f69f6230cbf","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":"9ee13abb39c50c2f45b5362dbadc55334e82dfc9789cfc070808e10dc5f60000","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"f749812878fecfa53cfc13b36e5d35086fb6377983a9df44175da83ccc23af1f","affectsGlobalScope":true,"impliedFormat":1},{"version":"03c04ba2137908b3b6219ecadc3471d4e39bb9030e6404510ee6e87a3b590a2d","impliedFormat":1},{"version":"772ff00e189d93488d1ca6f0f4dfba77bd090a99ed31e19a14bc16fad4078e48","affectsGlobalScope":true,"impliedFormat":1},{"version":"d9b1fa0da9fbff85402c3ee794bcfe6d7cfef2fa053761b7d83989cdb7f9b26d","impliedFormat":1},{"version":"ac0c7cb0a4c1bec60be2c0460b3bda1e674eaf2c98312d7b6f16a0bb58718e2d","impliedFormat":1},{"version":"7e2181a6fc140b4525d5a45c204477c37fa78a635558e88552c68f76a4325403","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"0ea59475772c2a8fdeb1f41ad9b02025aff6423003ec7eaf8129ee846f438aee","impliedFormat":1},{"version":"276b547eeb8eeeee9a446a3bfa6e07d1c0199269bdcf33813abab1281394a9cb","impliedFormat":1},{"version":"c999f7816955f75b447823e3e4085f699600e2a4a3327907df9af65b0a9c0df6","impliedFormat":1},{"version":"64361245fe025cbbad90451dd3698f7e6822d465ef568cbee3a4d8ddb52e7cda","impliedFormat":1},{"version":"8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","impliedFormat":1},{"version":"9b814e0806922056145bedb096f11b73bdce70cc871f3ccfc4ce00b2cba75718","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"2013a2215691096d953ce7cefbc71a6cd31ef14be092cd003792714c5cd23bde","affectsGlobalScope":true,"impliedFormat":1},{"version":"60155c38ec392043962a90006153f7e31187b93411f2d8f9b35f595e98b8d75f","impliedFormat":1},{"version":"2ad6a251b6ef19fd1f8498f83bb7b265033bd52287e1f6569d09544f18806713","impliedFormat":1},{"version":"bfa08f2c30c475aef1c9451855ba6b2acfdc64f61950a38fae75806d66fb85c2","impliedFormat":1},{"version":"159807eb55a9439f9a675bd493788190a6203b5f36c315f8c3acbfcb875c7072","impliedFormat":1},{"version":"fe31b2b31ac5453fc7b8eef32b62017e55b214ceb884f0b177f442af92e84682","impliedFormat":1},{"version":"dd72576c8ea64d55af46a386068503d3cfcecce84ed7e1cbd4ff4081ba67fafc","impliedFormat":1},{"version":"125af9d85cb9d5e508353f10a8d52f01652d2d48b2cea54789a33e5b4d289c1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"70a7e8a7880d55396285e4b85ff5bdf3af3083176abe07f944967836f2a43188","impliedFormat":1},{"version":"3570df7c6f3a976109f55b596a2d88c2f87e0574cd1502272594ee5c4e56d0ef","impliedFormat":1},{"version":"850e95721334c2aa7697b08782f443ec4286274e5024169d4443933544f359d7","impliedFormat":1},{"version":"74e6cd21f7b5e29fab05060ea24e2b90aa254f16f3f62ccd7055bdb8fc7b2ff5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5761c90b0cabdd6bd1f5fb1c3bf942088fdd39e18ed35dbe39b0c34bc733bf13","affectsGlobalScope":true,"impliedFormat":1},{"version":"1eb6c5569d41e6021832d0a8a71f45fecbc13d03ad7d306da485999148b64955","impliedFormat":1},{"version":"c05ef0ecf06540ad3039515c10d3b27f9380639ced40f4093fd073e1b5ff21d9","impliedFormat":1},{"version":"fd25a0d3e6448b61d33e1fe4e0667a1a87a77e53570b65a454937cf2dc92f967","impliedFormat":1},{"version":"c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","impliedFormat":1},{"version":"24a68c38b5c66d6a6883624342560d88db670e97824b397e78d9dac121aa8bae","impliedFormat":1},{"version":"9a134dbb29f0af914d90b23f609b39019d66ed53db7d492ab6b04c67114559da","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"7b3781fbdfddbee8dba55ccee5aa74a7c8d6701ade11d49ab7d8cb1fcefe669e","impliedFormat":1},{"version":"c4aab2ec3a249f2a4caa9cbdb099752a80daf999b79d85aa3504cdfd6e559476","impliedFormat":1},{"version":"666d3f264db693828f6edc2eb53ae6013e40f6e39278ca209c7a8a99ac91b62f","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","impliedFormat":1},{"version":"c764a6cf523d13f2304a23216cd1084e28c041eebabd8aa9b2a9d99866c668c0","impliedFormat":1},{"version":"1272a5c2bd05961adc473e905332b7a422b00485c10b41c752f7fcf6835e3436","impliedFormat":1},{"version":"30ef92bf8135ce36ba1231fe41715276f2a40be72a478ddeb862bc16672e8680","impliedFormat":1},{"version":"4ace0a30a70fe5963442d75ea6e69f525671ae76f6e57ab7556c44839b4237e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f03dbf03c001fb3ac1c9bea6dde049dfff27ef8886cc4a886374aacf2e997d","affectsGlobalScope":true,"impliedFormat":1},{"version":"66bfb3de947abf4b117ee849c245425dbe494d6903e28f9ded566e91c9d05d77","impliedFormat":1},{"version":"c28d4f58131b93d60e087b86148d4e0c9d9b5c49c23ff1a9d1a9594fdedd5d08","impliedFormat":1},{"version":"c6b5d7f259544c91024ecf2b17138574a3f6ff2476468fafd7f957d2b68d6d98","impliedFormat":1},{"version":"1ec27c4b695590464113276d174f873e260e468ef226b7dc18f9193875fa559d","affectsGlobalScope":true,"impliedFormat":1},{"version":"33da4ee2ab9fdd9ef8b3fc526d871ce02ae8c825283f5695e7cad507c087b97c","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"71709584ed5ed7d236dc225441ec4634ffc6c718853e04b9c27b9ea121459044","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","impliedFormat":1},{"version":"2d1323c55cb7a4f2cf73f03797b26645a7657dd0217beb41b0079b0490ec3370","impliedFormat":1},{"version":"9992bf6c132b08048ec136537caea10fdefa29f615bde9e04ff314e4de6792ab","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"76e9656e6ab408f2d3baefc6d2aa8969c768e426dd577f4abae4cf0d2fce1cbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c230a07d657b3c65ad79e819b0c362a8ebcc0730f9a3d552a26ea632e2bfd53","impliedFormat":1},{"version":"117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","impliedFormat":1},{"version":"efdced704bd09db6984a2a26e3573bc43cdc2379bdef3bcff6cff77efe8ba82b","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dea2650c477f53d503a27f78ed17b13d7184c2f922eb4d3367ccf52634765467","impliedFormat":1},{"version":"e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","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":"1d96568a72657f762763c920d3804868db48d638abd87ddcd82bcb200ef9625c","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":"5774751340e987a6a9e4a5dcc03ff68a6515adc2b91423e1af2f660fc8f30e81","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"c8a34d0c858532a9fab7f0b65f3cff6507df055a0cd8b965c4fd5667b5a0cf7d","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":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","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":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","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":[133,134],"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":[[58,61,62,181],[98,99,181],[61,181],[101,181],[181],[120,121,122,123,181],[61,115,181],[61,101,115,181],[115,116,117,118,181],[57,58,61,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,100,102,106,110,114,119,124,181],[103,104,105,181],[72,181],[108,181],[108,109,181],[57,107,125,181],[111,112,113,181],[61,111,181],[61,72,111,181],[54,181],[62,181],[54,62,181],[54,62,70,181],[52,53,181],[154,181,188,189],[145,181,188],[154,156,181,188,192],[180,181,188,199],[154,181,188],[181,204,206],[181,203,204,205],[151,154,181,188,196,197,198],[181,190,198,199,208],[151,152,181,188,210],[152,181,188],[181,213],[181,193,215,216],[151,154,156,159,169,180,181,188],[181,221],[181,222],[181,226,228,229,230,231,232,233,234,235,236,237,238],[181,226,227,229,230,231,232,233,234,235,236,237,238],[181,227,228,229,230,231,232,233,234,235,236,237,238],[181,226,227,228,230,231,232,233,234,235,236,237,238],[181,226,227,228,229,231,232,233,234,235,236,237,238],[181,226,227,228,229,230,232,233,234,235,236,237,238],[181,226,227,228,229,230,231,233,234,235,236,237,238],[181,226,227,228,229,230,231,232,234,235,236,237,238],[181,226,227,228,229,230,231,232,233,235,236,237,238],[181,226,227,228,229,230,231,232,233,234,236,237,238],[181,226,227,228,229,230,231,232,233,234,235,237,238],[181,226,227,228,229,230,231,232,233,234,235,236,238],[181,226,227,228,229,230,231,232,233,234,235,236,237],[154,180,181,188,241,242],[135,181],[138,181],[139,144,172,181],[140,151,152,159,169,180,181],[140,141,151,159,181],[142,181],[143,144,152,160,181],[144,169,177,181],[145,147,151,159,181],[146,181],[147,148,181],[151,181],[149,151,181],[151,152,153,169,180,181],[151,152,153,166,169,172,181],[181,185],[147,151,154,159,169,180,181],[151,152,154,155,159,169,177,180,181],[154,156,169,177,180,181],[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,186,187],[151,157,181],[158,180,181],[147,151,159,169,181],[160,181],[161,181],[138,162,181],[163,179,181,185],[164,181],[165,181],[151,166,167,181],[166,168,181,183],[139,151,169,170,171,172,181],[139,169,171,181],[169,170,181],[172,181],[173,181],[169,181],[151,175,176,181],[175,176,181],[144,159,169,177,181],[178,181],[159,179,181],[139,154,165,180,181],[144,181],[169,181,182],[181,183],[181,184],[139,144,151,153,162,169,180,181,183,185],[169,181,186],[181,250,289],[181,250,274,289],[181,289],[181,250],[181,250,275,289],[181,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,286,287,288],[181,275,289],[152,169,181,188,195],[152,181,209],[154,181,188,195],[55,181],[181,192],[181,188,296,297,298,299,300,301,302,303,304,305,306],[181,295,296,305],[181,296,305],[181,292,295,296,305],[181,295,296,297,298,299,300,301,302,303,304,306],[181,296],[144,181,295,305],[144,181,188,192,215,293,294,307],[151,154,156,169,177,180,181,186,188],[181,311],[154,169,181,188],[54,58,181],[57,58,181],[58,181],[57,58,77,181],[57,58,76,181],[57,181],[57,58,93,181],[56,57,181],[63,64,65,66,67,68,69,70,71,181],[54,58,59,60,181],[73,181],[51,125,127,129,132,181],[51,133,181],[51,125,181],[51,107,125,181],[51,130,131,181],[51,128,181],[51,126,181],[58,125,127,129,132],[133]],"referencedMap":[[99,1],[100,2],[98,3],[101,3],[102,4],[123,5],[120,5],[122,5],[124,6],[121,5],[116,7],[118,8],[115,5],[117,5],[119,9],[125,10],[106,11],[103,3],[104,3],[105,12],[109,13],[110,14],[108,15],[97,5],[114,16],[112,17],[113,18],[111,3],[52,5],[62,19],[63,20],[66,21],[64,21],[68,21],[71,22],[70,5],[69,21],[67,21],[65,20],[53,5],[54,23],[190,24],[191,25],[193,26],[194,5],[200,27],[189,28],[201,5],[202,28],[207,29],[203,5],[206,30],[204,5],[199,31],[209,32],[211,33],[212,34],[214,35],[218,5],[217,36],[219,37],[220,5],[221,5],[222,38],[223,39],[224,5],[205,5],[225,5],[227,40],[228,41],[226,42],[229,43],[230,44],[231,45],[232,46],[233,47],[234,48],[235,49],[236,50],[237,51],[238,52],[239,35],[195,5],[210,5],[240,5],[242,5],[243,53],[135,54],[136,54],[138,55],[139,56],[140,57],[141,58],[142,59],[143,60],[144,61],[145,62],[146,63],[147,64],[148,64],[150,65],[149,66],[151,65],[152,67],[153,68],[137,69],[187,5],[154,70],[155,71],[156,72],[188,73],[157,74],[158,75],[159,76],[160,77],[161,78],[162,79],[163,80],[164,81],[165,82],[166,83],[167,83],[168,84],[169,85],[171,86],[170,87],[172,88],[173,89],[174,90],[175,91],[176,92],[177,93],[178,94],[179,95],[180,96],[181,97],[182,98],[183,99],[184,100],[185,101],[186,102],[244,5],[245,65],[246,5],[247,5],[248,5],[198,5],[197,5],[216,5],[249,5],[274,103],[275,104],[250,105],[253,105],[272,103],[273,103],[263,103],[262,106],[260,103],[255,103],[268,103],[266,103],[270,103],[254,103],[267,103],[271,103],[256,103],[257,103],[269,103],[251,103],[258,103],[259,103],[261,103],[265,103],[276,107],[264,103],[252,103],[289,108],[288,5],[283,107],[285,109],[284,107],[277,107],[278,107],[280,107],[282,107],[286,109],[287,109],[279,109],[281,109],[196,110],[290,111],[208,112],[291,28],[292,5],[293,5],[56,113],[55,5],[215,114],[213,5],[309,5],[307,115],[306,116],[297,117],[298,118],[305,119],[299,118],[300,117],[301,117],[302,117],[303,120],[296,121],[304,116],[295,5],[308,122],[310,123],[311,5],[312,124],[294,5],[107,5],[241,125],[59,126],[76,127],[75,127],[57,128],[78,129],[77,130],[79,127],[80,5],[81,127],[82,127],[83,128],[84,5],[85,131],[86,127],[87,5],[88,5],[89,130],[90,127],[91,127],[92,127],[93,127],[94,132],[95,130],[96,5],[60,5],[58,133],[73,128],[72,134],[61,135],[74,136],[192,5],[51,5],[49,5],[50,5],[9,5],[10,5],[12,5],[11,5],[2,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[20,5],[3,5],[4,5],[24,5],[21,5],[22,5],[23,5],[25,5],[26,5],[27,5],[5,5],[28,5],[29,5],[30,5],[31,5],[6,5],[35,5],[32,5],[33,5],[34,5],[36,5],[7,5],[37,5],[42,5],[43,5],[38,5],[39,5],[40,5],[41,5],[8,5],[47,5],[44,5],[45,5],[46,5],[1,5],[48,5],[133,137],[134,138],[130,139],[131,140],[132,141],[128,139],[129,142],[127,143],[126,139]],"exportedModulesMap":[[99,1],[100,2],[98,3],[101,3],[102,4],[123,5],[120,5],[122,5],[124,6],[121,5],[116,7],[118,8],[115,5],[117,5],[119,9],[125,10],[106,11],[103,3],[104,3],[105,12],[109,13],[110,14],[108,15],[97,5],[114,16],[112,17],[113,18],[111,3],[52,5],[62,19],[63,20],[66,21],[64,21],[68,21],[71,22],[70,5],[69,21],[67,21],[65,20],[53,5],[54,23],[190,24],[191,25],[193,26],[194,5],[200,27],[189,28],[201,5],[202,28],[207,29],[203,5],[206,30],[204,5],[199,31],[209,32],[211,33],[212,34],[214,35],[218,5],[217,36],[219,37],[220,5],[221,5],[222,38],[223,39],[224,5],[205,5],[225,5],[227,40],[228,41],[226,42],[229,43],[230,44],[231,45],[232,46],[233,47],[234,48],[235,49],[236,50],[237,51],[238,52],[239,35],[195,5],[210,5],[240,5],[242,5],[243,53],[135,54],[136,54],[138,55],[139,56],[140,57],[141,58],[142,59],[143,60],[144,61],[145,62],[146,63],[147,64],[148,64],[150,65],[149,66],[151,65],[152,67],[153,68],[137,69],[187,5],[154,70],[155,71],[156,72],[188,73],[157,74],[158,75],[159,76],[160,77],[161,78],[162,79],[163,80],[164,81],[165,82],[166,83],[167,83],[168,84],[169,85],[171,86],[170,87],[172,88],[173,89],[174,90],[175,91],[176,92],[177,93],[178,94],[179,95],[180,96],[181,97],[182,98],[183,99],[184,100],[185,101],[186,102],[244,5],[245,65],[246,5],[247,5],[248,5],[198,5],[197,5],[216,5],[249,5],[274,103],[275,104],[250,105],[253,105],[272,103],[273,103],[263,103],[262,106],[260,103],[255,103],[268,103],[266,103],[270,103],[254,103],[267,103],[271,103],[256,103],[257,103],[269,103],[251,103],[258,103],[259,103],[261,103],[265,103],[276,107],[264,103],[252,103],[289,108],[288,5],[283,107],[285,109],[284,107],[277,107],[278,107],[280,107],[282,107],[286,109],[287,109],[279,109],[281,109],[196,110],[290,111],[208,112],[291,28],[292,5],[293,5],[56,113],[55,5],[215,114],[213,5],[309,5],[307,115],[306,116],[297,117],[298,118],[305,119],[299,118],[300,117],[301,117],[302,117],[303,120],[296,121],[304,116],[295,5],[308,122],[310,123],[311,5],[312,124],[294,5],[107,5],[241,125],[59,126],[76,127],[75,127],[57,128],[78,129],[77,130],[79,127],[80,5],[81,127],[82,127],[83,128],[84,5],[85,131],[86,127],[87,5],[88,5],[89,130],[90,127],[91,127],[92,127],[93,127],[94,132],[95,130],[96,5],[60,5],[58,133],[73,128],[72,134],[61,135],[74,136],[192,5],[51,5],[49,5],[50,5],[9,5],[10,5],[12,5],[11,5],[2,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[19,5],[20,5],[3,5],[4,5],[24,5],[21,5],[22,5],[23,5],[25,5],[26,5],[27,5],[5,5],[28,5],[29,5],[30,5],[31,5],[6,5],[35,5],[32,5],[33,5],[34,5],[36,5],[7,5],[37,5],[42,5],[43,5],[38,5],[39,5],[40,5],[41,5],[8,5],[47,5],[44,5],[45,5],[46,5],[1,5],[48,5],[133,144],[134,145],[130,139],[131,140],[132,141],[128,139],[129,142],[127,143],[126,139]],"semanticDiagnosticsPerFile":[99,100,98,101,102,123,120,122,124,121,116,118,115,117,119,125,106,103,104,105,109,110,108,97,114,112,113,111,52,62,63,66,64,68,71,70,69,67,65,53,54,190,191,193,194,200,189,201,202,207,203,206,204,199,209,211,212,214,218,217,219,220,221,222,223,224,205,225,227,228,226,229,230,231,232,233,234,235,236,237,238,239,195,210,240,242,243,135,136,138,139,140,141,142,143,144,145,146,147,148,150,149,151,152,153,137,187,154,155,156,188,157,158,159,160,161,162,163,164,165,166,167,168,169,171,170,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,244,245,246,247,248,198,197,216,249,274,275,250,253,272,273,263,262,260,255,268,266,270,254,267,271,256,257,269,251,258,259,261,265,276,264,252,289,288,283,285,284,277,278,280,282,286,287,279,281,196,290,208,291,292,293,56,55,215,213,309,307,306,297,298,305,299,300,301,302,303,296,304,295,308,310,311,312,294,107,241,59,76,75,57,78,77,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,60,58,73,72,61,74,192,51,49,50,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,133,134,130,131,132,128,129,127,126]},"version":"5.0.4"}
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@3mo/card",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
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/tree/main/packages/Card"
7
+ "url": "https://github.com/3mo-esolutions/web-components"
8
8
  },
9
9
  "keywords": [
10
10
  "lit",
@@ -1,63 +0,0 @@
1
- import { Component } from '@a11d/lit';
2
- import { SlotController } from '@3mo/slot-controller';
3
- import '@3mo/heading';
4
- import '@3mo/flex';
5
- export declare const enum CardType {
6
- Filled = "filled",
7
- Outlined = "outlined"
8
- }
9
- /**
10
- * @element mo-card
11
- *
12
- * @attr type
13
- * @attr heading
14
- * @attr subHeading
15
- * @attr avatar
16
- * @attr image
17
- *
18
- * @slot action - Actions in the header
19
- * @slot heading - Custom heading in the header
20
- * @slot subHeading - Custom subHeading in the header
21
- * @slot avatar - Custom avatar in the header
22
- * @slot header - The header. Using this will lead to slots 'heading', 'subHeading', 'avatar' and 'action's not working.
23
- * @slot media - Embedded media
24
- * @slot - Body / Content
25
- * @slot footer - Actions in the footer
26
- *
27
- * @cssprop --mo-card-header-padding - Padding of the header
28
- * @cssprop --mo-card-avatar-background - Color of the avatar
29
- * @cssprop --mo-card-avatar-color - Text color of the avatar
30
- * @cssprop --mo-card-body-padding - Padding of the body
31
- * @cssprop --mo-card-footer-padding - Padding of the footer
32
- *
33
- * @csspart media - Embedded media
34
- * @csspart header - The header
35
- * @csspart avatar - The avatar
36
- * @csspart heading - The heading
37
- * @csspart subHeading - The subHeading
38
- * @csspart footer - The footer
39
- */
40
- export declare class Card extends Component {
41
- type: CardType;
42
- heading?: string;
43
- subHeading?: string;
44
- avatar?: string;
45
- image?: string;
46
- protected readonly slotController: SlotController;
47
- static get styles(): import("@a11d/lit").CSSResult;
48
- protected get template(): import("lit-html").TemplateResult<1>;
49
- protected get mediaTemplate(): import("lit-html").HTMLTemplateResult;
50
- protected get headerTemplate(): import("lit-html").HTMLTemplateResult;
51
- protected get defaultHeaderAvatarTemplate(): import("lit-html").TemplateResult<1>;
52
- protected get defaultHeaderHeadingTemplate(): import("lit-html").TemplateResult<1>;
53
- protected get defaultHeaderSubHeadingTemplate(): import("lit-html").TemplateResult<1>;
54
- protected get defaultHeaderActionTemplate(): import("lit-html").TemplateResult<1>;
55
- protected get bodyTemplate(): import("lit-html").TemplateResult<1>;
56
- protected get footerTemplate(): import("lit-html").HTMLTemplateResult;
57
- }
58
- declare global {
59
- interface HTMLElementTagNameMap {
60
- 'mo-card': Card;
61
- }
62
- }
63
- //# sourceMappingURL=Card.d.ts.map
@@ -1 +0,0 @@
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"}
@@ -1,2 +0,0 @@
1
- export * from './Card.js';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
@@ -1,39 +0,0 @@
1
- import { Component } from '@a11d/lit';
2
- import type * as CSS from 'csstype';
3
- export declare type FlexDirection = 'horizontal' | 'vertical' | 'horizontal-reversed' | 'vertical-reversed';
4
- /**
5
- * @attr direction
6
- * @attr wrap
7
- * @attr gap
8
- * @attr justifyItems
9
- * @attr justifyContent
10
- * @attr alignItems
11
- * @attr alignContent
12
- *
13
- * @slot - The content of the flex container.
14
- */
15
- export declare class Flex extends Component {
16
- private static readonly flexDirectionByDirections;
17
- get direction(): FlexDirection;
18
- set direction(value: FlexDirection);
19
- get wrap(): CSS.Property.FlexWrap;
20
- set wrap(value: CSS.Property.FlexWrap);
21
- get gap(): CSS.Property.Gap<string>;
22
- set gap(value: CSS.Property.Gap<string>);
23
- get justifyItems(): CSS.Property.JustifyItems;
24
- set justifyItems(value: CSS.Property.JustifyItems);
25
- get justifyContent(): CSS.Property.JustifyContent;
26
- set justifyContent(value: CSS.Property.JustifyContent);
27
- get alignItems(): CSS.Property.AlignItems;
28
- set alignItems(value: CSS.Property.AlignItems);
29
- get alignContent(): CSS.Property.AlignContent;
30
- set alignContent(value: CSS.Property.AlignContent);
31
- static get styles(): import("@a11d/lit").CSSResult;
32
- protected get template(): import("lit-html").TemplateResult<1>;
33
- }
34
- declare global {
35
- interface HTMLElementTagNameMap {
36
- 'mo-flex': Flex;
37
- }
38
- }
39
- //# sourceMappingURL=Flex.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Flex.d.ts","sourceRoot":"","sources":["../../../Flex/Flex.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAuB,MAAM,WAAW,CAAA;AACrE,OAAO,KAAK,KAAK,GAAG,MAAM,SAAS,CAAA;AAEnC,oBAAY,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,qBAAqB,GAAG,mBAAmB,CAAA;AAEnG;;;;;;;;;;GAUG;AACH,qBACa,IAAK,SAAQ,SAAS;IAClC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,yBAAyB,CAK/C;IAEF,IACI,SAAS,kBAA4I;IACzJ,IAAI,SAAS,CAAC,KAAK,eAAA,EAAsF;IAEzG,IACI,IAAI,0BAA0D;IAClE,IAAI,IAAI,CAAC,KAAK,uBAAA,EAAiC;IAE/C,IACI,GAAG,6BAAwD;IAC/D,IAAI,GAAG,CAAC,KAAK,0BAAA,EAA4B;IAEzC,IACI,YAAY,8BAAkE;IAClF,IAAI,YAAY,CAAC,KAAK,2BAAA,EAAqC;IAE3D,IACI,cAAc,gCAAsE;IACxF,IAAI,cAAc,CAAC,KAAK,6BAAA,EAAuC;IAE/D,IACI,UAAU,4BAA8D;IAC5E,IAAI,UAAU,CAAC,KAAK,yBAAA,EAAmC;IAEvD,IACI,YAAY,8BAAkE;IAClF,IAAI,YAAY,CAAC,KAAK,2BAAA,EAAqC;IAE3D,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,SAAS,EAAE,IAAI,CAAA;KACf;CACD"}
@@ -1,2 +0,0 @@
1
- export * from './Flex.js';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Flex/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA"}
@@ -1,29 +0,0 @@
1
- import { Component } from '@a11d/lit';
2
- export declare const enum HeadingTypography {
3
- Heading1 = "heading1",
4
- Heading2 = "heading2",
5
- Heading3 = "heading3",
6
- Heading4 = "heading4",
7
- Heading5 = "heading5",
8
- Heading6 = "heading6",
9
- Subtitle1 = "subtitle1",
10
- Subtitle2 = "subtitle2"
11
- }
12
- /**
13
- * @element mo-heading
14
- *
15
- * @attr typography - The typography of the heading.
16
- *
17
- * @slot - The content of the heading.
18
- */
19
- export declare class Heading extends Component {
20
- typography: HeadingTypography;
21
- static get styles(): import("@a11d/lit").CSSResult;
22
- protected get template(): import("lit-html").TemplateResult<1>;
23
- }
24
- declare global {
25
- interface HTMLElementTagNameMap {
26
- 'mo-heading': Heading;
27
- }
28
- }
29
- //# sourceMappingURL=Heading.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Heading.d.ts","sourceRoot":"","sources":["../../../Heading/Heading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,SAAS,EAAkB,MAAM,WAAW,CAAA;AAErE,0BAAkB,iBAAiB;IAClC,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,SAAS,cAAc;CACvB;AAED;;;;;;GAMG;AACH,qBACa,OAAQ,SAAQ,SAAS;IACR,UAAU,oBAA6B;IAEpE,WAAoB,MAAM,kCAEzB;IAED,cAAuB,QAAQ,yCAE9B;CACD;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,qBAAqB;QAC9B,YAAY,EAAE,OAAO,CAAA;KACrB;CACD"}
@@ -1,2 +0,0 @@
1
- export * from './Heading.js';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../Heading/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA"}
@@ -1,19 +0,0 @@
1
- import { Controller, ReactiveControllerHost } from '@a11d/lit';
2
- export declare class SlotController extends Controller {
3
- protected readonly host: ReactiveControllerHost & Element;
4
- private readonly slotChangeCallback?;
5
- protected readonly mutationObserver: void;
6
- constructor(host: ReactiveControllerHost & Element, slotChangeCallback?: (() => void) | undefined);
7
- getAssignedNodes(slotName: string): Node[];
8
- hasAssignedNodes(slotName: string): boolean;
9
- hasAssignedContent(slotName: string): boolean;
10
- getAssignedElements(slotName: string): Element[];
11
- hasAssignedElements(slotName: string): boolean;
12
- private extractNodesFromSlot;
13
- private extractNodesFromChildren;
14
- hostConnected(): void;
15
- hostDisconnected(): void;
16
- private readonly handleChange;
17
- private handleMutation;
18
- }
19
- //# sourceMappingURL=SlotController.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SlotController.d.ts","sourceRoot":"","sources":["../../../SlotController/SlotController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAA;AAE9D,qBAAa,cAAe,SAAQ,UAAU;uBAML,IAAI,EAAE,sBAAsB,GAAG,OAAO;IAAE,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IALpH,SAAS,CAAC,QAAQ,CAAC,gBAAgB,OAGjC;gBAEsC,IAAI,EAAE,sBAAsB,GAAG,OAAO,EAAmB,kBAAkB,CAAC,SAAQ,IAAI,aAAA;IAIhI,gBAAgB,CAAC,QAAQ,EAAE,MAAM;IAOjC,gBAAgB,CAAC,QAAQ,EAAE,MAAM;IAIjC,kBAAkB,CAAC,QAAQ,EAAE,MAAM;IAKnC,mBAAmB,CAAC,QAAQ,EAAE,MAAM;IAIpC,mBAAmB,CAAC,QAAQ,EAAE,MAAM;IAIpC,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,wBAAwB;IAOvB,aAAa;IAIb,gBAAgB;IAIzB,OAAO,CAAC,QAAQ,CAAC,YAAY,CAG5B;IAED,OAAO,CAAC,cAAc;CAKtB"}
@@ -1,2 +0,0 @@
1
- export * from './SlotController.js';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../SlotController/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
package/dist/bundle.js DELETED
@@ -1 +0,0 @@
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({reflect:!0})],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)})();