@mhmo91/schmancy 0.2.56 → 0.2.58
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.cjs +1 -1
- package/dist/card.js +1 -1
- package/dist/{chips-BCnmMiOe.cjs → chips-BbMv4qYo.cjs} +27 -26
- package/dist/{chips-BCnmMiOe.cjs.map → chips-BbMv4qYo.cjs.map} +1 -1
- package/dist/{chips-CtFyJEw0.js → chips-DLKWllS2.js} +42 -40
- package/dist/{chips-CtFyJEw0.js.map → chips-DLKWllS2.js.map} +1 -1
- package/dist/chips.cjs +1 -1
- package/dist/chips.js +1 -1
- package/dist/content-drawer.cjs +1 -1
- package/dist/content-drawer.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +3 -3
- package/dist/nav-drawer.cjs +1 -1
- package/dist/nav-drawer.js +1 -1
- package/dist/{select-DLZUW_cj.cjs → select-B_G2xt3n.cjs} +3 -2
- package/dist/select-B_G2xt3n.cjs.map +1 -0
- package/dist/{select-Dlyf_fVO.js → select-Dn-WETnI.js} +7 -6
- package/dist/select-Dn-WETnI.js.map +1 -0
- package/dist/select.cjs +1 -1
- package/dist/select.js +1 -1
- package/dist/teleport.cjs +1 -1
- package/dist/{teleport.component-DYShDwLi.cjs → teleport.component-BKdHmXBi.cjs} +2 -2
- package/dist/{teleport.component-DYShDwLi.cjs.map → teleport.component-BKdHmXBi.cjs.map} +1 -1
- package/dist/{teleport.component-DP75QrFI.js → teleport.component-DZNBBuCJ.js} +3 -3
- package/dist/{teleport.component-DP75QrFI.js.map → teleport.component-DZNBBuCJ.js.map} +1 -1
- package/dist/teleport.js +1 -1
- package/package.json +1 -1
- package/types/src/chips/chip.d.ts +2 -0
- package/types/src/directives/visibility.d.ts +11 -0
- package/types/src/select/select.d.ts +1 -0
- package/dist/select-DLZUW_cj.cjs.map +0 -1
- package/dist/select-Dlyf_fVO.js.map +0 -1
package/dist/card.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";require("./teleport.component-
|
|
1
|
+
"use strict";require("./teleport.component-BKdHmXBi.cjs");
|
|
2
2
|
//# sourceMappingURL=card.cjs.map
|
package/dist/card.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import "./teleport.component-
|
|
1
|
+
import "./teleport.component-DZNBBuCJ.js";
|
|
2
2
|
//# sourceMappingURL=card.js.map
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
"use strict";require("rxjs");const
|
|
2
|
-
<div class="container ${
|
|
1
|
+
"use strict";require("rxjs");const A=require("lit/directives/class-map.js");require("lit/directives/style-map.js");const L=require("./litElement.mixin-UoPWmzJY.cjs");require("./tailwind.mixin-Bkx1Uuxe.cjs");const r=require("lit"),o=require("lit/decorators.js"),c=require("./redispatch-event-yBlefmeU.cjs"),E=c.mixinDelegatesAria(r.LitElement);class v extends E{get rippleDisabled(){return this.disabled||this.softDisabled}constructor(){super(),this.disabled=!1,this.softDisabled=!1,this.alwaysFocusable=!1,this.label="",this.hasIcon=!1,r.isServer||this.addEventListener("click",this.handleClick.bind(this))}focus(e){this.disabled&&!this.alwaysFocusable||super.focus(e)}render(){return r.html`
|
|
2
|
+
<div class="container ${A.classMap(this.getContainerClasses())}">
|
|
3
3
|
${this.renderContainerContent()}
|
|
4
4
|
</div>
|
|
5
|
-
`}updated(e){e.has("disabled")&&e.get("disabled")!==void 0&&this.dispatchEvent(new Event("update-focus",{bubbles:!0}))}getContainerClasses(){return{disabled:this.disabled||this.softDisabled,"has-icon":this.hasIcon}}renderContainerContent(){return
|
|
5
|
+
`}updated(e){e.has("disabled")&&e.get("disabled")!==void 0&&this.dispatchEvent(new Event("update-focus",{bubbles:!0}))}getContainerClasses(){return{disabled:this.disabled||this.softDisabled,"has-icon":this.hasIcon}}renderContainerContent(){return r.html`
|
|
6
6
|
${this.renderOutline()}
|
|
7
7
|
<md-focus-ring part="focus-ring" for=${this.primaryId}></md-focus-ring>
|
|
8
8
|
<md-ripple
|
|
9
9
|
for=${this.primaryId}
|
|
10
10
|
?disabled=${this.rippleDisabled}></md-ripple>
|
|
11
11
|
${this.renderPrimaryAction(this.renderPrimaryContent())}
|
|
12
|
-
`}renderOutline(){return
|
|
12
|
+
`}renderOutline(){return r.html`<span class="outline"></span>`}renderLeadingIcon(){return r.html`<slot name="icon" @slotchange=${this.handleIconChange}></slot>`}renderPrimaryContent(){return r.html`
|
|
13
13
|
<span class="leading icon" aria-hidden="true">
|
|
14
14
|
${this.renderLeadingIcon()}
|
|
15
15
|
</span>
|
|
16
16
|
<span class="label">
|
|
17
17
|
<span class="label-text" id="label">
|
|
18
|
-
${this.label?this.label:
|
|
18
|
+
${this.label?this.label:r.html`<slot></slot>`}
|
|
19
19
|
</span>
|
|
20
20
|
</span>
|
|
21
21
|
<span class="touch"></span>
|
|
22
|
-
`}handleIconChange(e){const i=e.target;this.hasIcon=i.assignedElements({flatten:!0}).length>0}handleClick(e){if(this.softDisabled||this.disabled&&this.alwaysFocusable)return e.stopImmediatePropagation(),void e.preventDefault()}}v.shadowRootOptions={...
|
|
23
|
-
`;let x=class extends
|
|
24
|
-
`;class D extends
|
|
25
|
-
`;let C=class extends D{};C.styles=[z],C=c.i([
|
|
22
|
+
`}handleIconChange(e){const i=e.target;this.hasIcon=i.assignedElements({flatten:!0}).length>0}handleClick(e){if(this.softDisabled||this.disabled&&this.alwaysFocusable)return e.stopImmediatePropagation(),void e.preventDefault()}}v.shadowRootOptions={...r.LitElement.shadowRootOptions,delegatesFocus:!0},c.i([o.property({type:Boolean,reflect:!0})],v.prototype,"disabled",void 0),c.i([o.property({type:Boolean,attribute:"soft-disabled",reflect:!0})],v.prototype,"softDisabled",void 0),c.i([o.property({type:Boolean,attribute:"always-focusable"})],v.prototype,"alwaysFocusable",void 0),c.i([o.property()],v.prototype,"label",void 0),c.i([o.property({type:Boolean,reflect:!0,attribute:"has-icon"})],v.prototype,"hasIcon",void 0);class $ extends r.LitElement{get chips(){return this.childElements.filter(e=>e instanceof v)}constructor(){super(),this.internals=this.attachInternals(),r.isServer||(this.addEventListener("focusin",this.updateTabIndices.bind(this)),this.addEventListener("update-focus",this.updateTabIndices.bind(this)),this.addEventListener("keydown",this.handleKeyDown.bind(this)),this.internals.role="toolbar")}render(){return r.html`<slot @slotchange=${this.updateTabIndices}></slot>`}handleKeyDown(e){const i=e.key==="ArrowLeft",a=e.key==="ArrowRight",l=e.key==="Home",n=e.key==="End";if(!(i||a||l||n))return;const{chips:s}=this;if(s.length<2)return;if(e.preventDefault(),l||n)return s[l?0:s.length-1].focus({trailing:n}),void this.updateTabIndices();const h=getComputedStyle(this).direction==="rtl"?i:a,y=s.find(g=>g.matches(":focus-within"));if(!y)return(h?s[0]:s[s.length-1]).focus({trailing:!h}),void this.updateTabIndices();const w=s.indexOf(y);let p=h?w+1:w-1;for(;p!==w;){p>=s.length?p=0:p<0&&(p=s.length-1);const g=s[p];if(!g.disabled||g.alwaysFocusable){g.focus({trailing:!h}),this.updateTabIndices();break}h?p++:p--}}updateTabIndices(){const{chips:e}=this;let i;for(const a of e){const l=a.alwaysFocusable||!a.disabled;a.matches(":focus-within")&&l?i=a:(l&&!i&&(i=a),a.tabIndex=-1)}i&&(i.tabIndex=0)}}c.i([o.queryAssignedElements()],$.prototype,"childElements",void 0);const I=r.css`:host{display:flex;flex-wrap:wrap;gap:8px}
|
|
23
|
+
`;let x=class extends ${};x.styles=[I],x=c.i([o.customElement("md-chip-set")],x);const T=r.css`.elevated{--md-elevation-level: var(--_elevated-container-elevation);--md-elevation-shadow-color: var(--_elevated-container-shadow-color)}.elevated::before{background:var(--_elevated-container-color)}.elevated:hover{--md-elevation-level: var(--_elevated-hover-container-elevation)}.elevated:focus-within{--md-elevation-level: var(--_elevated-focus-container-elevation)}.elevated:active{--md-elevation-level: var(--_elevated-pressed-container-elevation)}.elevated.disabled{--md-elevation-level: var(--_elevated-disabled-container-elevation)}.elevated.disabled::before{background:var(--_elevated-disabled-container-color);opacity:var(--_elevated-disabled-container-opacity)}@media(forced-colors: active){.elevated md-elevation{border:1px solid CanvasText}.elevated.disabled md-elevation{border-color:GrayText}}
|
|
24
|
+
`;class D extends r.LitElement{connectedCallback(){super.connectedCallback(),this.setAttribute("aria-hidden","true")}render(){return r.html`<span class="shadow"></span>`}}const z=r.css`:host,.shadow,.shadow::before,.shadow::after{border-radius:inherit;inset:0;position:absolute;transition-duration:inherit;transition-property:inherit;transition-timing-function:inherit}:host{display:flex;pointer-events:none;transition-property:box-shadow,opacity}.shadow::before,.shadow::after{content:"";transition-property:box-shadow,opacity;--_level: var(--md-elevation-level, 0);--_shadow-color: var(--md-elevation-shadow-color, var(--md-sys-color-shadow, #000))}.shadow::before{box-shadow:0px calc(1px*(clamp(0,var(--_level),1) + clamp(0,var(--_level) - 3,1) + 2*clamp(0,var(--_level) - 4,1))) calc(1px*(2*clamp(0,var(--_level),1) + clamp(0,var(--_level) - 2,1) + clamp(0,var(--_level) - 4,1))) 0px var(--_shadow-color);opacity:.3}.shadow::after{box-shadow:0px calc(1px*(clamp(0,var(--_level),1) + clamp(0,var(--_level) - 1,1) + 2*clamp(0,var(--_level) - 2,3))) calc(1px*(3*clamp(0,var(--_level),2) + 2*clamp(0,var(--_level) - 2,3))) calc(1px*(clamp(0,var(--_level),4) + 2*clamp(0,var(--_level) - 4,1))) var(--_shadow-color);opacity:.15}
|
|
25
|
+
`;let C=class extends D{};C.styles=[z],C=c.i([o.customElement("md-elevation")],C);const _="aria-label-remove";class O extends v{get ariaLabelRemove(){if(this.hasAttribute(_))return this.getAttribute(_);const{ariaLabel:e}=this;return e||this.label?`Remove ${e||this.label}`:null}set ariaLabelRemove(e){e!==this.ariaLabelRemove&&(e===null?this.removeAttribute(_):this.setAttribute(_,e),this.requestUpdate())}constructor(){super(),this.handleTrailingActionFocus=this.handleTrailingActionFocus.bind(this),r.isServer||this.addEventListener("keydown",this.handleKeyDown.bind(this))}focus(e){(this.alwaysFocusable||!this.disabled)&&(e!=null&&e.trailing)&&this.trailingAction?this.trailingAction.focus(e):super.focus(e)}renderContainerContent(){return r.html`
|
|
26
26
|
${super.renderContainerContent()}
|
|
27
27
|
${this.renderTrailingAction(this.handleTrailingActionFocus)}
|
|
28
|
-
`}handleKeyDown(e){var
|
|
28
|
+
`}handleKeyDown(e){var h,y;const i=e.key==="ArrowLeft",a=e.key==="ArrowRight";if(!i&&!a||!this.primaryAction||!this.trailingAction)return;const l=getComputedStyle(this).direction==="rtl"?i:a,n=(h=this.primaryAction)==null?void 0:h.matches(":focus-within"),s=(y=this.trailingAction)==null?void 0:y.matches(":focus-within");l&&s||!l&&n||(e.preventDefault(),e.stopPropagation(),(l?this.trailingAction:this.primaryAction).focus())}handleTrailingActionFocus(){const{primaryAction:e,trailingAction:i}=this;e&&i&&(e.tabIndex=-1,i.addEventListener("focusout",()=>{e.tabIndex=0},{once:!0}))}}function q({ariaLabel:t,disabled:e,focusListener:i,tabbable:a=!1}){return r.html`
|
|
29
29
|
<span id="remove-label" hidden aria-hidden="true">Remove</span>
|
|
30
30
|
<button
|
|
31
31
|
class="trailing action"
|
|
32
|
-
aria-label=${r
|
|
33
|
-
aria-labelledby=${r
|
|
34
|
-
tabindex=${a?
|
|
32
|
+
aria-label=${t||r.nothing}
|
|
33
|
+
aria-labelledby=${t?r.nothing:"remove-label label"}
|
|
34
|
+
tabindex=${a?r.nothing:-1}
|
|
35
35
|
@click=${B}
|
|
36
36
|
@focus=${i}>
|
|
37
37
|
<md-focus-ring part="trailing-focus-ring"></md-focus-ring>
|
|
@@ -46,37 +46,38 @@
|
|
|
46
46
|
</span>
|
|
47
47
|
<span class="touch"></span>
|
|
48
48
|
</button>
|
|
49
|
-
`}function B(
|
|
49
|
+
`}function B(t){this.disabled||this.softDisabled||(t.stopPropagation(),!this.dispatchEvent(new Event("remove",{cancelable:!0}))||this.remove())}class m extends O{constructor(){super(...arguments),this.elevated=!1,this.removable=!1,this.selected=!1,this.hasSelectedIcon=!1}get primaryId(){return"button"}getContainerClasses(){return{...super.getContainerClasses(),elevated:this.elevated,selected:this.selected,"has-trailing":this.removable,"has-icon":this.hasIcon||this.selected}}renderPrimaryAction(e){const{ariaLabel:i}=this;return r.html`
|
|
50
50
|
<button
|
|
51
51
|
class="primary action"
|
|
52
52
|
id="button"
|
|
53
|
-
aria-label=${i||
|
|
53
|
+
aria-label=${i||r.nothing}
|
|
54
54
|
aria-pressed=${this.selected}
|
|
55
|
-
aria-disabled=${this.softDisabled||
|
|
55
|
+
aria-disabled=${this.softDisabled||r.nothing}
|
|
56
56
|
?disabled=${this.disabled&&!this.alwaysFocusable}
|
|
57
57
|
@click=${this.handleClickOnChild}
|
|
58
58
|
>${e}</button
|
|
59
59
|
>
|
|
60
|
-
`}renderLeadingIcon(){return this.selected?
|
|
60
|
+
`}renderLeadingIcon(){return this.selected?r.html`
|
|
61
61
|
<slot name="selected-icon">
|
|
62
62
|
<svg class="checkmark" viewBox="0 0 18 18" aria-hidden="true">
|
|
63
63
|
<path
|
|
64
64
|
d="M6.75012 12.1274L3.62262 8.99988L2.55762 10.0574L6.75012 14.2499L15.7501 5.24988L14.6926 4.19238L6.75012 12.1274Z" />
|
|
65
65
|
</svg>
|
|
66
66
|
</slot>
|
|
67
|
-
`:super.renderLeadingIcon()}renderTrailingAction(e){return this.removable?q({focusListener:e,ariaLabel:this.ariaLabelRemove,disabled:this.disabled||this.softDisabled}):
|
|
68
|
-
`,
|
|
69
|
-
`,
|
|
70
|
-
`,S=
|
|
71
|
-
`;let k=class extends
|
|
67
|
+
`:super.renderLeadingIcon()}renderTrailingAction(e){return this.removable?q({focusListener:e,ariaLabel:this.ariaLabelRemove,disabled:this.disabled||this.softDisabled}):r.nothing}renderOutline(){return this.elevated?r.html`<md-elevation part="elevation"></md-elevation>`:super.renderOutline()}handleClickOnChild(e){if(this.disabled||this.softDisabled)return;const i=this.selected;this.selected=!this.selected,!c.redispatchEvent(this,e)&&(this.selected=i)}}c.i([o.property({type:Boolean})],m.prototype,"elevated",void 0),c.i([o.property({type:Boolean})],m.prototype,"removable",void 0),c.i([o.property({type:Boolean,reflect:!0})],m.prototype,"selected",void 0),c.i([o.property({type:Boolean,reflect:!0,attribute:"has-selected-icon"})],m.prototype,"hasSelectedIcon",void 0),c.i([o.query(".primary.action")],m.prototype,"primaryAction",void 0),c.i([o.query(".trailing.action")],m.prototype,"trailingAction",void 0);const F=r.css`:host{--_container-height: var(--md-filter-chip-container-height, 32px);--_disabled-label-text-color: var(--md-filter-chip-disabled-label-text-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-label-text-opacity: var(--md-filter-chip-disabled-label-text-opacity, 0.38);--_elevated-container-elevation: var(--md-filter-chip-elevated-container-elevation, 1);--_elevated-container-shadow-color: var(--md-filter-chip-elevated-container-shadow-color, var(--md-sys-color-shadow, #000));--_elevated-disabled-container-color: var(--md-filter-chip-elevated-disabled-container-color, var(--md-sys-color-on-surface, #1d1b20));--_elevated-disabled-container-elevation: var(--md-filter-chip-elevated-disabled-container-elevation, 0);--_elevated-disabled-container-opacity: var(--md-filter-chip-elevated-disabled-container-opacity, 0.12);--_elevated-focus-container-elevation: var(--md-filter-chip-elevated-focus-container-elevation, 1);--_elevated-hover-container-elevation: var(--md-filter-chip-elevated-hover-container-elevation, 2);--_elevated-pressed-container-elevation: var(--md-filter-chip-elevated-pressed-container-elevation, 1);--_elevated-selected-container-color: var(--md-filter-chip-elevated-selected-container-color, var(--md-sys-color-secondary-container, #e8def8));--_label-text-font: var(--md-filter-chip-label-text-font, var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, Roboto)));--_label-text-line-height: var(--md-filter-chip-label-text-line-height, var(--md-sys-typescale-label-large-line-height, 1.25rem));--_label-text-size: var(--md-filter-chip-label-text-size, var(--md-sys-typescale-label-large-size, 0.875rem));--_label-text-weight: var(--md-filter-chip-label-text-weight, var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500)));--_selected-focus-label-text-color: var(--md-filter-chip-selected-focus-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-label-text-color: var(--md-filter-chip-selected-hover-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-state-layer-color: var(--md-filter-chip-selected-hover-state-layer-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-state-layer-opacity: var(--md-filter-chip-selected-hover-state-layer-opacity, 0.08);--_selected-label-text-color: var(--md-filter-chip-selected-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-label-text-color: var(--md-filter-chip-selected-pressed-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-state-layer-color: var(--md-filter-chip-selected-pressed-state-layer-color, var(--md-sys-color-on-surface-variant, #49454f));--_selected-pressed-state-layer-opacity: var(--md-filter-chip-selected-pressed-state-layer-opacity, 0.12);--_elevated-container-color: var(--md-filter-chip-elevated-container-color, var(--md-sys-color-surface-container-low, #f7f2fa));--_disabled-outline-color: var(--md-filter-chip-disabled-outline-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-outline-opacity: var(--md-filter-chip-disabled-outline-opacity, 0.12);--_disabled-selected-container-color: var(--md-filter-chip-disabled-selected-container-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-selected-container-opacity: var(--md-filter-chip-disabled-selected-container-opacity, 0.12);--_focus-outline-color: var(--md-filter-chip-focus-outline-color, var(--md-sys-color-on-surface-variant, #49454f));--_outline-color: var(--md-filter-chip-outline-color, var(--md-sys-color-outline, #79747e));--_outline-width: var(--md-filter-chip-outline-width, 1px);--_selected-container-color: var(--md-filter-chip-selected-container-color, var(--md-sys-color-secondary-container, #e8def8));--_selected-outline-width: var(--md-filter-chip-selected-outline-width, 0px);--_focus-label-text-color: var(--md-filter-chip-focus-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-label-text-color: var(--md-filter-chip-hover-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-state-layer-color: var(--md-filter-chip-hover-state-layer-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-state-layer-opacity: var(--md-filter-chip-hover-state-layer-opacity, 0.08);--_label-text-color: var(--md-filter-chip-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-label-text-color: var(--md-filter-chip-pressed-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-state-layer-color: var(--md-filter-chip-pressed-state-layer-color, var(--md-sys-color-on-secondary-container, #1d192b));--_pressed-state-layer-opacity: var(--md-filter-chip-pressed-state-layer-opacity, 0.12);--_icon-size: var(--md-filter-chip-icon-size, 18px);--_disabled-leading-icon-color: var(--md-filter-chip-disabled-leading-icon-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-leading-icon-opacity: var(--md-filter-chip-disabled-leading-icon-opacity, 0.38);--_selected-focus-leading-icon-color: var(--md-filter-chip-selected-focus-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-leading-icon-color: var(--md-filter-chip-selected-hover-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-leading-icon-color: var(--md-filter-chip-selected-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-leading-icon-color: var(--md-filter-chip-selected-pressed-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_focus-leading-icon-color: var(--md-filter-chip-focus-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_hover-leading-icon-color: var(--md-filter-chip-hover-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_leading-icon-color: var(--md-filter-chip-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_pressed-leading-icon-color: var(--md-filter-chip-pressed-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_disabled-trailing-icon-color: var(--md-filter-chip-disabled-trailing-icon-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-trailing-icon-opacity: var(--md-filter-chip-disabled-trailing-icon-opacity, 0.38);--_selected-focus-trailing-icon-color: var(--md-filter-chip-selected-focus-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-trailing-icon-color: var(--md-filter-chip-selected-hover-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-trailing-icon-color: var(--md-filter-chip-selected-pressed-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-trailing-icon-color: var(--md-filter-chip-selected-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_focus-trailing-icon-color: var(--md-filter-chip-focus-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-trailing-icon-color: var(--md-filter-chip-hover-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-trailing-icon-color: var(--md-filter-chip-pressed-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_trailing-icon-color: var(--md-filter-chip-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_container-shape-start-start: var(--md-filter-chip-container-shape-start-start, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-start-end: var(--md-filter-chip-container-shape-start-end, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-end-end: var(--md-filter-chip-container-shape-end-end, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-end-start: var(--md-filter-chip-container-shape-end-start, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_leading-space: var(--md-filter-chip-leading-space, 16px);--_trailing-space: var(--md-filter-chip-trailing-space, 16px);--_icon-label-space: var(--md-filter-chip-icon-label-space, 8px);--_with-leading-icon-leading-space: var(--md-filter-chip-with-leading-icon-leading-space, 8px);--_with-trailing-icon-trailing-space: var(--md-filter-chip-with-trailing-icon-trailing-space, 8px)}.selected.elevated::before{background:var(--_elevated-selected-container-color)}.checkmark{height:var(--_icon-size);width:var(--_icon-size)}.disabled .checkmark{opacity:var(--_disabled-leading-icon-opacity)}@media(forced-colors: active){.disabled .checkmark{opacity:1}}
|
|
68
|
+
`,P=r.css`.selected{--md-ripple-hover-color: var(--_selected-hover-state-layer-color);--md-ripple-hover-opacity: var(--_selected-hover-state-layer-opacity);--md-ripple-pressed-color: var(--_selected-pressed-state-layer-color);--md-ripple-pressed-opacity: var(--_selected-pressed-state-layer-opacity)}:where(.selected)::before{background:var(--_selected-container-color)}:where(.selected) .outline{border-width:var(--_selected-outline-width)}:where(.selected.disabled)::before{background:var(--_disabled-selected-container-color);opacity:var(--_disabled-selected-container-opacity)}:where(.selected) .label{color:var(--_selected-label-text-color)}:where(.selected:hover) .label{color:var(--_selected-hover-label-text-color)}:where(.selected:focus) .label{color:var(--_selected-focus-label-text-color)}:where(.selected:active) .label{color:var(--_selected-pressed-label-text-color)}:where(.selected) .leading.icon{color:var(--_selected-leading-icon-color)}:where(.selected:hover) .leading.icon{color:var(--_selected-hover-leading-icon-color)}:where(.selected:focus) .leading.icon{color:var(--_selected-focus-leading-icon-color)}:where(.selected:active) .leading.icon{color:var(--_selected-pressed-leading-icon-color)}@media(forced-colors: active){:where(.selected:not(.elevated))::before{border:1px solid CanvasText}:where(.selected) .outline{border-width:1px}}
|
|
69
|
+
`,R=r.css`:host{border-start-start-radius:var(--_container-shape-start-start);border-start-end-radius:var(--_container-shape-start-end);border-end-start-radius:var(--_container-shape-end-start);border-end-end-radius:var(--_container-shape-end-end);display:inline-flex;height:var(--_container-height);cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);--md-ripple-hover-color: var(--_hover-state-layer-color);--md-ripple-hover-opacity: var(--_hover-state-layer-opacity);--md-ripple-pressed-color: var(--_pressed-state-layer-color);--md-ripple-pressed-opacity: var(--_pressed-state-layer-opacity)}:host(:is([disabled],[soft-disabled])){pointer-events:none}:host([touch-target=wrapper]){margin:max(0px,(48px - var(--_container-height))/2) 0}md-focus-ring{--md-focus-ring-shape-start-start: var(--_container-shape-start-start);--md-focus-ring-shape-start-end: var(--_container-shape-start-end);--md-focus-ring-shape-end-end: var(--_container-shape-end-end);--md-focus-ring-shape-end-start: var(--_container-shape-end-start)}.container{border-radius:inherit;box-sizing:border-box;display:flex;height:100%;position:relative;width:100%}.container::before{border-radius:inherit;content:"";inset:0;pointer-events:none;position:absolute}.container:not(.disabled){cursor:pointer}.container.disabled{pointer-events:none}.cell{display:flex}.action{align-items:baseline;appearance:none;background:none;border:none;border-radius:inherit;display:flex;outline:none;padding:0;position:relative;text-decoration:none}.primary.action{min-width:0;padding-inline-start:var(--_leading-space);padding-inline-end:var(--_trailing-space)}.has-icon .primary.action{padding-inline-start:var(--_with-leading-icon-leading-space)}.touch{height:48px;inset:50% 0 0;position:absolute;transform:translateY(-50%);width:100%}:host([touch-target=none]) .touch{display:none}.outline{border:var(--_outline-width) solid var(--_outline-color);border-radius:inherit;inset:0;pointer-events:none;position:absolute}:where(:focus) .outline{border-color:var(--_focus-outline-color)}:where(.disabled) .outline{border-color:var(--_disabled-outline-color);opacity:var(--_disabled-outline-opacity)}md-ripple{border-radius:inherit}.label,.icon,.touch{z-index:1}.label{align-items:center;color:var(--_label-text-color);display:flex;font-family:var(--_label-text-font);font-size:var(--_label-text-size);font-weight:var(--_label-text-weight);height:100%;line-height:var(--_label-text-line-height);overflow:hidden;user-select:none}.label-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:where(:hover) .label{color:var(--_hover-label-text-color)}:where(:focus) .label{color:var(--_focus-label-text-color)}:where(:active) .label{color:var(--_pressed-label-text-color)}:where(.disabled) .label{color:var(--_disabled-label-text-color);opacity:var(--_disabled-label-text-opacity)}.icon{align-self:center;display:flex;fill:currentColor;position:relative}.icon ::slotted(:first-child){font-size:var(--_icon-size);height:var(--_icon-size);width:var(--_icon-size)}.leading.icon{color:var(--_leading-icon-color)}.leading.icon ::slotted(*),.leading.icon svg{margin-inline-end:var(--_icon-label-space)}:where(:hover) .leading.icon{color:var(--_hover-leading-icon-color)}:where(:focus) .leading.icon{color:var(--_focus-leading-icon-color)}:where(:active) .leading.icon{color:var(--_pressed-leading-icon-color)}:where(.disabled) .leading.icon{color:var(--_disabled-leading-icon-color);opacity:var(--_disabled-leading-icon-opacity)}@media(forced-colors: active){:where(.disabled) :is(.label,.outline,.leading.icon){color:GrayText;opacity:1}}a,button{text-transform:inherit}a,button:not(:disabled,[aria-disabled=true]){cursor:inherit}
|
|
70
|
+
`,S=r.css`.trailing.action{align-items:center;justify-content:center;padding-inline-start:var(--_icon-label-space);padding-inline-end:var(--_with-trailing-icon-trailing-space)}.trailing.action :is(md-ripple,md-focus-ring){border-radius:50%;height:calc(1.3333333333*var(--_icon-size));width:calc(1.3333333333*var(--_icon-size))}.trailing.action md-focus-ring{inset:unset}.has-trailing .primary.action{padding-inline-end:0}.trailing.icon{color:var(--_trailing-icon-color);height:var(--_icon-size);width:var(--_icon-size)}:where(:hover) .trailing.icon{color:var(--_hover-trailing-icon-color)}:where(:focus) .trailing.icon{color:var(--_focus-trailing-icon-color)}:where(:active) .trailing.icon{color:var(--_pressed-trailing-icon-color)}:where(.disabled) .trailing.icon{color:var(--_disabled-trailing-icon-color);opacity:var(--_disabled-trailing-icon-opacity)}:where(.selected) .trailing.icon{color:var(--_selected-trailing-icon-color)}:where(.selected:hover) .trailing.icon{color:var(--_selected-hover-trailing-icon-color)}:where(.selected:focus) .trailing.icon{color:var(--_selected-focus-trailing-icon-color)}:where(.selected:active) .trailing.icon{color:var(--_selected-pressed-trailing-icon-color)}@media(forced-colors: active){.trailing.icon{color:ButtonText}:where(.disabled) .trailing.icon{color:GrayText;opacity:1}}
|
|
71
|
+
`;let k=class extends m{};k.styles=[R,T,S,P,F],k=c.i([o.customElement("md-filter-chip")],k);var j=Object.defineProperty,U=Object.getOwnPropertyDescriptor,u=(t,e,i,a)=>{for(var l,n=a>1?void 0:a?U(e,i):e,s=t.length-1;s>=0;s--)(l=t[s])&&(n=(a?l(e,i,n):l(n))||n);return a&&n&&j(e,i,n),n};let d=class extends L.$LitElement(){constructor(){super(),this.label="",this.value="",this.selected=!1,this.icon="",this.readOnly=!1,this.disabled=!1;try{this.internals=this.attachInternals()}catch{this.internals=void 0}}get form(){var t;return(t=this.internals)==null?void 0:t.form}render(){return r.html`
|
|
72
72
|
<md-filter-chip
|
|
73
|
+
.disabled=${this.disabled}
|
|
73
74
|
label="${this.label}"
|
|
74
|
-
@click=${
|
|
75
|
+
@click=${t=>{if(this.readOnly)return t.preventDefault(),void t.stopPropagation();this.selected=!this.selected,this.dispatchEvent(new CustomEvent("change",{detail:{value:this.value,selected:this.selected},bubbles:!0}))}}
|
|
75
76
|
?selected=${this.selected}
|
|
76
77
|
>
|
|
77
78
|
${this.icon}
|
|
78
79
|
</md-filter-chip>
|
|
79
|
-
`}};
|
|
80
|
+
`}};d.shadowRootOptions={...r.LitElement.shadowRootOptions,delegatesFocus:!0},d.formAssociated=!0,u([o.property({type:String,reflect:!0})],d.prototype,"label",2),u([o.property({type:String,reflect:!0})],d.prototype,"value",2),u([o.property({type:Boolean,reflect:!0})],d.prototype,"selected",2),u([o.property({type:String,reflect:!0})],d.prototype,"icon",2),u([o.property({type:Boolean,reflect:!0})],d.prototype,"readOnly",2),u([o.property({type:Boolean,reflect:!0})],d.prototype,"disabled",2),d=u([o.customElement("schmancy-chip")],d);var K=Object.defineProperty,G=Object.getOwnPropertyDescriptor,f=(t,e,i,a)=>{for(var l,n=a>1?void 0:a?G(e,i):e,s=t.length-1;s>=0;s--)(l=t[s])&&(n=(a?l(e,i,n):l(n))||n);return a&&n&&K(e,i,n),n};let b=class extends L.$LitElement(r.css``){constructor(){super(...arguments),this.multi=!1,this.values=[],this.value=""}async change(t){t.preventDefault(),t.stopPropagation();const{value:e,selected:i}=t.detail;if(this.multi){if(i){this.values=[...this.values,e];const a=this.chips.find(l=>l.value===e);a&&(a.selected=!0)}else{this.values=this.values.filter(l=>l!==e);const a=this.chips.find(l=>l.value===e);a&&(a.selected=!1)}this.requestUpdate()}else{const{value:a,selected:l}=t.detail;this.value=l?a:"";const n=this.chips.find(s=>s.value===a);n.selected=l||!1,this.chips.forEach(s=>{this.value&&this.value===s.value?s.selected=!0:s.selected=!1}),this.requestUpdate()}this.dispatchEvent(new CustomEvent("change",{detail:this.multi?this.values:this.value,bubbles:!0}))}firstUpdated(t){super.firstUpdated(t),this.hydrateTabs()}attributeChangedCallback(t,e,i){super.attributeChangedCallback(t,e,i),(t==="values"||t==="value")&&this.hydrateTabs()}hydrateTabs(){this.chips.forEach(t=>{this.multi?this.values.includes(t.value)?t.selected=!0:t.selected=!1:this.value===t.value?t.selected=!0:t.selected=!1})}render(){return r.html` <md-chip-set @change=${this.change}>
|
|
80
81
|
<slot @slotchange=${()=>this.hydrateTabs()}></slot>
|
|
81
|
-
</md-chip-set>`}};
|
|
82
|
-
//# sourceMappingURL=chips-
|
|
82
|
+
</md-chip-set>`}};f([o.query("md-chip-set")],b.prototype,"chipSet",2),f([o.property({type:Boolean,reflect:!0})],b.prototype,"multi",2),f([o.property({type:Array,reflect:!0})],b.prototype,"values",2),f([o.property({type:String,reflect:!0})],b.prototype,"value",2),f([o.queryAssignedElements({selector:"schmancy-chip",flatten:!0})],b.prototype,"chips",2),b=f([o.customElement("schmancy-chips")],b);
|
|
83
|
+
//# sourceMappingURL=chips-BbMv4qYo.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chips-BCnmMiOe.cjs","sources":["../node_modules/@material/web/chips/internal/chip.js","../node_modules/@material/web/chips/internal/chip-set.js","../node_modules/@material/web/chips/internal/chip-set-styles.js","../node_modules/@material/web/chips/chip-set.js","../node_modules/@material/web/chips/internal/elevated-styles.js","../node_modules/@material/web/elevation/internal/elevation.js","../node_modules/@material/web/elevation/internal/elevation-styles.js","../node_modules/@material/web/elevation/elevation.js","../node_modules/@material/web/chips/internal/multi-action-chip.js","../node_modules/@material/web/chips/internal/trailing-icons.js","../node_modules/@material/web/chips/internal/filter-chip.js","../node_modules/@material/web/chips/internal/filter-styles.js","../node_modules/@material/web/chips/internal/selectable-styles.js","../node_modules/@material/web/chips/internal/shared-styles.js","../node_modules/@material/web/chips/internal/trailing-icon-styles.js","../node_modules/@material/web/chips/filter-chip.js","../src/chips/chip.ts","../src/chips/chips.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport '../../focus/md-focus-ring.js';\nimport '../../ripple/ripple.js';\nimport { html, isServer, LitElement } from 'lit';\nimport { property } from 'lit/decorators.js';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { mixinDelegatesAria } from '../../internal/aria/delegate.js';\n// Separate variable needed for closure.\nconst chipBaseClass = mixinDelegatesAria(LitElement);\n/**\n * A chip component.\n *\n * @fires update-focus {Event} Dispatched when `disabled` is toggled. --bubbles\n */\nexport class Chip extends chipBaseClass {\n /**\n * Whether or not the primary ripple is disabled (defaults to `disabled`).\n * Some chip actions such as links cannot be disabled.\n */\n get rippleDisabled() {\n return this.disabled || this.softDisabled;\n }\n constructor() {\n super();\n /**\n * Whether or not the chip is disabled.\n *\n * Disabled chips are not focusable, unless `always-focusable` is set.\n */\n this.disabled = false;\n /**\n * Whether or not the chip is \"soft-disabled\" (disabled but still\n * focusable).\n *\n * Use this when a chip needs increased visibility when disabled. See\n * https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_disabled_controls\n * for more guidance on when this is needed.\n */\n this.softDisabled = false;\n /**\n * When true, allow disabled chips to be focused with arrow keys.\n *\n * Add this when a chip needs increased visibility when disabled. See\n * https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_disabled_controls\n * for more guidance on when this is needed.\n *\n * @deprecated Use `softDisabled` instead of `alwaysFocusable` + `disabled`.\n */\n this.alwaysFocusable = false;\n // TODO(b/350810013): remove the label property.\n /**\n * The label of the chip.\n *\n * @deprecated Set text as content of the chip instead.\n */\n this.label = '';\n /**\n * Only needed for SSR.\n *\n * Add this attribute when a chip has a `slot=\"icon\"` to avoid a Flash Of\n * Unstyled Content.\n */\n this.hasIcon = false;\n if (!isServer) {\n this.addEventListener('click', this.handleClick.bind(this));\n }\n }\n focus(options) {\n if (this.disabled && !this.alwaysFocusable) {\n return;\n }\n super.focus(options);\n }\n render() {\n return html `\n <div class=\"container ${classMap(this.getContainerClasses())}\">\n ${this.renderContainerContent()}\n </div>\n `;\n }\n updated(changed) {\n if (changed.has('disabled') && changed.get('disabled') !== undefined) {\n this.dispatchEvent(new Event('update-focus', { bubbles: true }));\n }\n }\n getContainerClasses() {\n return {\n 'disabled': this.disabled || this.softDisabled,\n 'has-icon': this.hasIcon,\n };\n }\n renderContainerContent() {\n return html `\n ${this.renderOutline()}\n <md-focus-ring part=\"focus-ring\" for=${this.primaryId}></md-focus-ring>\n <md-ripple\n for=${this.primaryId}\n ?disabled=${this.rippleDisabled}></md-ripple>\n ${this.renderPrimaryAction(this.renderPrimaryContent())}\n `;\n }\n renderOutline() {\n return html `<span class=\"outline\"></span>`;\n }\n renderLeadingIcon() {\n return html `<slot name=\"icon\" @slotchange=${this.handleIconChange}></slot>`;\n }\n renderPrimaryContent() {\n return html `\n <span class=\"leading icon\" aria-hidden=\"true\">\n ${this.renderLeadingIcon()}\n </span>\n <span class=\"label\">\n <span class=\"label-text\" id=\"label\">\n ${this.label ? this.label : html `<slot></slot>`}\n </span>\n </span>\n <span class=\"touch\"></span>\n `;\n }\n handleIconChange(event) {\n const slot = event.target;\n this.hasIcon = slot.assignedElements({ flatten: true }).length > 0;\n }\n handleClick(event) {\n // If the chip is soft-disabled or disabled + always-focusable, we need to\n // explicitly prevent the click from propagating to other event listeners\n // as well as prevent the default action.\n if (this.softDisabled || (this.disabled && this.alwaysFocusable)) {\n event.stopImmediatePropagation();\n event.preventDefault();\n return;\n }\n }\n}\n/** @nocollapse */\nChip.shadowRootOptions = {\n ...LitElement.shadowRootOptions,\n delegatesFocus: true,\n};\n__decorate([\n property({ type: Boolean, reflect: true })\n], Chip.prototype, \"disabled\", void 0);\n__decorate([\n property({ type: Boolean, attribute: 'soft-disabled', reflect: true })\n], Chip.prototype, \"softDisabled\", void 0);\n__decorate([\n property({ type: Boolean, attribute: 'always-focusable' })\n], Chip.prototype, \"alwaysFocusable\", void 0);\n__decorate([\n property()\n], Chip.prototype, \"label\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true, attribute: 'has-icon' })\n], Chip.prototype, \"hasIcon\", void 0);\n//# sourceMappingURL=chip.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { html, isServer, LitElement } from 'lit';\nimport { queryAssignedElements } from 'lit/decorators.js';\nimport { Chip } from './chip.js';\n/**\n * A chip set component.\n */\nexport class ChipSet extends LitElement {\n get chips() {\n return this.childElements.filter((child) => child instanceof Chip);\n }\n constructor() {\n super();\n this.internals = \n // Cast needed for closure\n this.attachInternals();\n if (!isServer) {\n this.addEventListener('focusin', this.updateTabIndices.bind(this));\n this.addEventListener('update-focus', this.updateTabIndices.bind(this));\n this.addEventListener('keydown', this.handleKeyDown.bind(this));\n this.internals.role = 'toolbar';\n }\n }\n render() {\n return html `<slot @slotchange=${this.updateTabIndices}></slot>`;\n }\n handleKeyDown(event) {\n const isLeft = event.key === 'ArrowLeft';\n const isRight = event.key === 'ArrowRight';\n const isHome = event.key === 'Home';\n const isEnd = event.key === 'End';\n // Ignore non-navigation keys\n if (!isLeft && !isRight && !isHome && !isEnd) {\n return;\n }\n const { chips } = this;\n // Don't try to select another chip if there aren't any.\n if (chips.length < 2) {\n return;\n }\n // Prevent default interactions, such as scrolling.\n event.preventDefault();\n if (isHome || isEnd) {\n const index = isHome ? 0 : chips.length - 1;\n chips[index].focus({ trailing: isEnd });\n this.updateTabIndices();\n return;\n }\n // Check if moving forwards or backwards\n const isRtl = getComputedStyle(this).direction === 'rtl';\n const forwards = isRtl ? isLeft : isRight;\n const focusedChip = chips.find((chip) => chip.matches(':focus-within'));\n if (!focusedChip) {\n // If there is not already a chip focused, select the first or last chip\n // based on the direction we're traveling.\n const nextChip = forwards ? chips[0] : chips[chips.length - 1];\n nextChip.focus({ trailing: !forwards });\n this.updateTabIndices();\n return;\n }\n const currentIndex = chips.indexOf(focusedChip);\n let nextIndex = forwards ? currentIndex + 1 : currentIndex - 1;\n // Search for the next sibling that is not disabled to select.\n // If we return to the host index, there is nothing to select.\n while (nextIndex !== currentIndex) {\n if (nextIndex >= chips.length) {\n // Return to start if moving past the last item.\n nextIndex = 0;\n }\n else if (nextIndex < 0) {\n // Go to end if moving before the first item.\n nextIndex = chips.length - 1;\n }\n // Check if the next sibling is disabled. If so,\n // move the index and continue searching.\n //\n // Some toolbar items may be focusable when disabled for increased\n // visibility.\n const nextChip = chips[nextIndex];\n if (nextChip.disabled && !nextChip.alwaysFocusable) {\n if (forwards) {\n nextIndex++;\n }\n else {\n nextIndex--;\n }\n continue;\n }\n nextChip.focus({ trailing: !forwards });\n this.updateTabIndices();\n break;\n }\n }\n updateTabIndices() {\n // The chip that should be focusable is either the chip that currently has\n // focus or the first chip that can be focused.\n const { chips } = this;\n let chipToFocus;\n for (const chip of chips) {\n const isChipFocusable = chip.alwaysFocusable || !chip.disabled;\n const chipIsFocused = chip.matches(':focus-within');\n if (chipIsFocused && isChipFocusable) {\n // Found the first chip that is actively focused. This overrides the\n // first focusable chip found.\n chipToFocus = chip;\n continue;\n }\n if (isChipFocusable && !chipToFocus) {\n chipToFocus = chip;\n }\n // Disable non-focused chips. If we disable all of them, we'll grant focus\n // to the first focusable child that was found.\n chip.tabIndex = -1;\n }\n if (chipToFocus) {\n chipToFocus.tabIndex = 0;\n }\n }\n}\n__decorate([\n queryAssignedElements()\n], ChipSet.prototype, \"childElements\", void 0);\n//# sourceMappingURL=chip-set.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/chip-set-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host{display:flex;flex-wrap:wrap;gap:8px}\n`;\n//# sourceMappingURL=chip-set-styles.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { customElement } from 'lit/decorators.js';\nimport { ChipSet } from './internal/chip-set.js';\nimport { styles } from './internal/chip-set-styles.js';\n/**\n * TODO(b/243982145): add docs\n *\n * @final\n * @suppress {visibility}\n */\nexport let MdChipSet = class MdChipSet extends ChipSet {\n};\nMdChipSet.styles = [styles];\nMdChipSet = __decorate([\n customElement('md-chip-set')\n], MdChipSet);\n//# sourceMappingURL=chip-set.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/elevated-styles.css.\nimport { css } from 'lit';\nexport const styles = css `.elevated{--md-elevation-level: var(--_elevated-container-elevation);--md-elevation-shadow-color: var(--_elevated-container-shadow-color)}.elevated::before{background:var(--_elevated-container-color)}.elevated:hover{--md-elevation-level: var(--_elevated-hover-container-elevation)}.elevated:focus-within{--md-elevation-level: var(--_elevated-focus-container-elevation)}.elevated:active{--md-elevation-level: var(--_elevated-pressed-container-elevation)}.elevated.disabled{--md-elevation-level: var(--_elevated-disabled-container-elevation)}.elevated.disabled::before{background:var(--_elevated-disabled-container-color);opacity:var(--_elevated-disabled-container-opacity)}@media(forced-colors: active){.elevated md-elevation{border:1px solid CanvasText}.elevated.disabled md-elevation{border-color:GrayText}}\n`;\n//# sourceMappingURL=elevated-styles.js.map","/**\n * @license\n * Copyright 2022 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { html, LitElement } from 'lit';\n/**\n * A component for elevation.\n */\nexport class Elevation extends LitElement {\n connectedCallback() {\n super.connectedCallback();\n // Needed for VoiceOver, which will create a \"group\" if the element is a\n // sibling to other content.\n this.setAttribute('aria-hidden', 'true');\n }\n render() {\n return html `<span class=\"shadow\"></span>`;\n }\n}\n//# sourceMappingURL=elevation.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./elevation/internal/elevation-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host,.shadow,.shadow::before,.shadow::after{border-radius:inherit;inset:0;position:absolute;transition-duration:inherit;transition-property:inherit;transition-timing-function:inherit}:host{display:flex;pointer-events:none;transition-property:box-shadow,opacity}.shadow::before,.shadow::after{content:\"\";transition-property:box-shadow,opacity;--_level: var(--md-elevation-level, 0);--_shadow-color: var(--md-elevation-shadow-color, var(--md-sys-color-shadow, #000))}.shadow::before{box-shadow:0px calc(1px*(clamp(0,var(--_level),1) + clamp(0,var(--_level) - 3,1) + 2*clamp(0,var(--_level) - 4,1))) calc(1px*(2*clamp(0,var(--_level),1) + clamp(0,var(--_level) - 2,1) + clamp(0,var(--_level) - 4,1))) 0px var(--_shadow-color);opacity:.3}.shadow::after{box-shadow:0px calc(1px*(clamp(0,var(--_level),1) + clamp(0,var(--_level) - 1,1) + 2*clamp(0,var(--_level) - 2,3))) calc(1px*(3*clamp(0,var(--_level),2) + 2*clamp(0,var(--_level) - 2,3))) calc(1px*(clamp(0,var(--_level),4) + 2*clamp(0,var(--_level) - 4,1))) var(--_shadow-color);opacity:.15}\n`;\n//# sourceMappingURL=elevation-styles.js.map","/**\n * @license\n * Copyright 2022 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { customElement } from 'lit/decorators.js';\nimport { Elevation } from './internal/elevation.js';\nimport { styles } from './internal/elevation-styles.js';\n/**\n * The `<md-elevation>` custom element with default styles.\n *\n * Elevation is the relative distance between two surfaces along the z-axis.\n *\n * @final\n * @suppress {visibility}\n */\nexport let MdElevation = class MdElevation extends Elevation {\n};\nMdElevation.styles = [styles];\nMdElevation = __decorate([\n customElement('md-elevation')\n], MdElevation);\n//# sourceMappingURL=elevation.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { html, isServer } from 'lit';\nimport { Chip } from './chip.js';\nconst ARIA_LABEL_REMOVE = 'aria-label-remove';\n/**\n * A chip component with multiple actions.\n */\nexport class MultiActionChip extends Chip {\n get ariaLabelRemove() {\n if (this.hasAttribute(ARIA_LABEL_REMOVE)) {\n return this.getAttribute(ARIA_LABEL_REMOVE);\n }\n const { ariaLabel } = this;\n // TODO(b/350810013): remove `this.label` when label property is removed.\n if (ariaLabel || this.label) {\n return `Remove ${ariaLabel || this.label}`;\n }\n return null;\n }\n set ariaLabelRemove(ariaLabel) {\n const prev = this.ariaLabelRemove;\n if (ariaLabel === prev) {\n return;\n }\n if (ariaLabel === null) {\n this.removeAttribute(ARIA_LABEL_REMOVE);\n }\n else {\n this.setAttribute(ARIA_LABEL_REMOVE, ariaLabel);\n }\n this.requestUpdate();\n }\n constructor() {\n super();\n this.handleTrailingActionFocus = this.handleTrailingActionFocus.bind(this);\n if (!isServer) {\n this.addEventListener('keydown', this.handleKeyDown.bind(this));\n }\n }\n focus(options) {\n const isFocusable = this.alwaysFocusable || !this.disabled;\n if (isFocusable && options?.trailing && this.trailingAction) {\n this.trailingAction.focus(options);\n return;\n }\n super.focus(options);\n }\n renderContainerContent() {\n return html `\n ${super.renderContainerContent()}\n ${this.renderTrailingAction(this.handleTrailingActionFocus)}\n `;\n }\n handleKeyDown(event) {\n const isLeft = event.key === 'ArrowLeft';\n const isRight = event.key === 'ArrowRight';\n // Ignore non-navigation keys.\n if (!isLeft && !isRight) {\n return;\n }\n if (!this.primaryAction || !this.trailingAction) {\n // Does not have multiple actions.\n return;\n }\n // Check if moving forwards or backwards\n const isRtl = getComputedStyle(this).direction === 'rtl';\n const forwards = isRtl ? isLeft : isRight;\n const isPrimaryFocused = this.primaryAction?.matches(':focus-within');\n const isTrailingFocused = this.trailingAction?.matches(':focus-within');\n if ((forwards && isTrailingFocused) || (!forwards && isPrimaryFocused)) {\n // Moving outside of the chip, it will be handled by the chip set.\n return;\n }\n // Prevent default interactions, such as scrolling.\n event.preventDefault();\n // Don't let the chip set handle this navigation event.\n event.stopPropagation();\n const actionToFocus = forwards ? this.trailingAction : this.primaryAction;\n actionToFocus.focus();\n }\n handleTrailingActionFocus() {\n const { primaryAction, trailingAction } = this;\n if (!primaryAction || !trailingAction) {\n return;\n }\n // Temporarily turn off the primary action's focusability. This allows\n // shift+tab from the trailing action to move to the previous chip rather\n // than the primary action in the same chip.\n primaryAction.tabIndex = -1;\n trailingAction.addEventListener('focusout', () => {\n primaryAction.tabIndex = 0;\n }, { once: true });\n }\n}\n//# sourceMappingURL=multi-action-chip.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport '../../focus/md-focus-ring.js';\nimport '../../ripple/ripple.js';\nimport { html, nothing } from 'lit';\n/** @protected */\nexport function renderRemoveButton({ ariaLabel, disabled, focusListener, tabbable = false, }) {\n // When an aria-label is not provided, we use two spans with aria-labelledby\n // to create the \"Remove <textContent>\" label for the remove button. The first\n // is this #remove-label span, the second is the chip's #label slot span.\n return html `\n <span id=\"remove-label\" hidden aria-hidden=\"true\">Remove</span>\n <button\n class=\"trailing action\"\n aria-label=${ariaLabel || nothing}\n aria-labelledby=${!ariaLabel ? 'remove-label label' : nothing}\n tabindex=${!tabbable ? -1 : nothing}\n @click=${handleRemoveClick}\n @focus=${focusListener}>\n <md-focus-ring part=\"trailing-focus-ring\"></md-focus-ring>\n <md-ripple ?disabled=${disabled}></md-ripple>\n <span class=\"trailing icon\" aria-hidden=\"true\">\n <slot name=\"remove-trailing-icon\">\n <svg viewBox=\"0 96 960 960\">\n <path\n d=\"m249 849-42-42 231-231-231-231 42-42 231 231 231-231 42 42-231 231 231 231-42 42-231-231-231 231Z\" />\n </svg>\n </slot>\n </span>\n <span class=\"touch\"></span>\n </button>\n `;\n}\nfunction handleRemoveClick(event) {\n if (this.disabled || this.softDisabled) {\n return;\n }\n event.stopPropagation();\n const preventDefault = !this.dispatchEvent(new Event('remove', { cancelable: true }));\n if (preventDefault) {\n return;\n }\n this.remove();\n}\n//# sourceMappingURL=trailing-icons.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport '../../elevation/elevation.js';\nimport { html, nothing } from 'lit';\nimport { property, query } from 'lit/decorators.js';\nimport { redispatchEvent } from '../../internal/events/redispatch-event.js';\nimport { MultiActionChip } from './multi-action-chip.js';\nimport { renderRemoveButton } from './trailing-icons.js';\n/**\n * A filter chip component.\n *\n * @fires remove {Event} Dispatched when the remove button is clicked.\n */\nexport class FilterChip extends MultiActionChip {\n constructor() {\n super(...arguments);\n this.elevated = false;\n this.removable = false;\n this.selected = false;\n /**\n * Only needed for SSR.\n *\n * Add this attribute when a filter chip has a `slot=\"selected-icon\"` to avoid\n * a Flash Of Unstyled Content.\n */\n this.hasSelectedIcon = false;\n }\n get primaryId() {\n return 'button';\n }\n getContainerClasses() {\n return {\n ...super.getContainerClasses(),\n elevated: this.elevated,\n selected: this.selected,\n 'has-trailing': this.removable,\n 'has-icon': this.hasIcon || this.selected,\n };\n }\n renderPrimaryAction(content) {\n const { ariaLabel } = this;\n return html `\n <button\n class=\"primary action\"\n id=\"button\"\n aria-label=${ariaLabel || nothing}\n aria-pressed=${this.selected}\n aria-disabled=${this.softDisabled || nothing}\n ?disabled=${this.disabled && !this.alwaysFocusable}\n @click=${this.handleClickOnChild}\n >${content}</button\n >\n `;\n }\n renderLeadingIcon() {\n if (!this.selected) {\n return super.renderLeadingIcon();\n }\n return html `\n <slot name=\"selected-icon\">\n <svg class=\"checkmark\" viewBox=\"0 0 18 18\" aria-hidden=\"true\">\n <path\n d=\"M6.75012 12.1274L3.62262 8.99988L2.55762 10.0574L6.75012 14.2499L15.7501 5.24988L14.6926 4.19238L6.75012 12.1274Z\" />\n </svg>\n </slot>\n `;\n }\n renderTrailingAction(focusListener) {\n if (this.removable) {\n return renderRemoveButton({\n focusListener,\n ariaLabel: this.ariaLabelRemove,\n disabled: this.disabled || this.softDisabled,\n });\n }\n return nothing;\n }\n renderOutline() {\n if (this.elevated) {\n return html `<md-elevation part=\"elevation\"></md-elevation>`;\n }\n return super.renderOutline();\n }\n handleClickOnChild(event) {\n if (this.disabled || this.softDisabled) {\n return;\n }\n // Store prevValue to revert in case `chip.selected` is changed during an\n // event listener.\n const prevValue = this.selected;\n this.selected = !this.selected;\n const preventDefault = !redispatchEvent(this, event);\n if (preventDefault) {\n // We should not do `this.selected = !this.selected`, since a client\n // click listener could change its value. Instead, always revert to the\n // original value.\n this.selected = prevValue;\n return;\n }\n }\n}\n__decorate([\n property({ type: Boolean })\n], FilterChip.prototype, \"elevated\", void 0);\n__decorate([\n property({ type: Boolean })\n], FilterChip.prototype, \"removable\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true })\n], FilterChip.prototype, \"selected\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true, attribute: 'has-selected-icon' })\n], FilterChip.prototype, \"hasSelectedIcon\", void 0);\n__decorate([\n query('.primary.action')\n], FilterChip.prototype, \"primaryAction\", void 0);\n__decorate([\n query('.trailing.action')\n], FilterChip.prototype, \"trailingAction\", void 0);\n//# sourceMappingURL=filter-chip.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/filter-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host{--_container-height: var(--md-filter-chip-container-height, 32px);--_disabled-label-text-color: var(--md-filter-chip-disabled-label-text-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-label-text-opacity: var(--md-filter-chip-disabled-label-text-opacity, 0.38);--_elevated-container-elevation: var(--md-filter-chip-elevated-container-elevation, 1);--_elevated-container-shadow-color: var(--md-filter-chip-elevated-container-shadow-color, var(--md-sys-color-shadow, #000));--_elevated-disabled-container-color: var(--md-filter-chip-elevated-disabled-container-color, var(--md-sys-color-on-surface, #1d1b20));--_elevated-disabled-container-elevation: var(--md-filter-chip-elevated-disabled-container-elevation, 0);--_elevated-disabled-container-opacity: var(--md-filter-chip-elevated-disabled-container-opacity, 0.12);--_elevated-focus-container-elevation: var(--md-filter-chip-elevated-focus-container-elevation, 1);--_elevated-hover-container-elevation: var(--md-filter-chip-elevated-hover-container-elevation, 2);--_elevated-pressed-container-elevation: var(--md-filter-chip-elevated-pressed-container-elevation, 1);--_elevated-selected-container-color: var(--md-filter-chip-elevated-selected-container-color, var(--md-sys-color-secondary-container, #e8def8));--_label-text-font: var(--md-filter-chip-label-text-font, var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, Roboto)));--_label-text-line-height: var(--md-filter-chip-label-text-line-height, var(--md-sys-typescale-label-large-line-height, 1.25rem));--_label-text-size: var(--md-filter-chip-label-text-size, var(--md-sys-typescale-label-large-size, 0.875rem));--_label-text-weight: var(--md-filter-chip-label-text-weight, var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500)));--_selected-focus-label-text-color: var(--md-filter-chip-selected-focus-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-label-text-color: var(--md-filter-chip-selected-hover-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-state-layer-color: var(--md-filter-chip-selected-hover-state-layer-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-state-layer-opacity: var(--md-filter-chip-selected-hover-state-layer-opacity, 0.08);--_selected-label-text-color: var(--md-filter-chip-selected-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-label-text-color: var(--md-filter-chip-selected-pressed-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-state-layer-color: var(--md-filter-chip-selected-pressed-state-layer-color, var(--md-sys-color-on-surface-variant, #49454f));--_selected-pressed-state-layer-opacity: var(--md-filter-chip-selected-pressed-state-layer-opacity, 0.12);--_elevated-container-color: var(--md-filter-chip-elevated-container-color, var(--md-sys-color-surface-container-low, #f7f2fa));--_disabled-outline-color: var(--md-filter-chip-disabled-outline-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-outline-opacity: var(--md-filter-chip-disabled-outline-opacity, 0.12);--_disabled-selected-container-color: var(--md-filter-chip-disabled-selected-container-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-selected-container-opacity: var(--md-filter-chip-disabled-selected-container-opacity, 0.12);--_focus-outline-color: var(--md-filter-chip-focus-outline-color, var(--md-sys-color-on-surface-variant, #49454f));--_outline-color: var(--md-filter-chip-outline-color, var(--md-sys-color-outline, #79747e));--_outline-width: var(--md-filter-chip-outline-width, 1px);--_selected-container-color: var(--md-filter-chip-selected-container-color, var(--md-sys-color-secondary-container, #e8def8));--_selected-outline-width: var(--md-filter-chip-selected-outline-width, 0px);--_focus-label-text-color: var(--md-filter-chip-focus-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-label-text-color: var(--md-filter-chip-hover-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-state-layer-color: var(--md-filter-chip-hover-state-layer-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-state-layer-opacity: var(--md-filter-chip-hover-state-layer-opacity, 0.08);--_label-text-color: var(--md-filter-chip-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-label-text-color: var(--md-filter-chip-pressed-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-state-layer-color: var(--md-filter-chip-pressed-state-layer-color, var(--md-sys-color-on-secondary-container, #1d192b));--_pressed-state-layer-opacity: var(--md-filter-chip-pressed-state-layer-opacity, 0.12);--_icon-size: var(--md-filter-chip-icon-size, 18px);--_disabled-leading-icon-color: var(--md-filter-chip-disabled-leading-icon-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-leading-icon-opacity: var(--md-filter-chip-disabled-leading-icon-opacity, 0.38);--_selected-focus-leading-icon-color: var(--md-filter-chip-selected-focus-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-leading-icon-color: var(--md-filter-chip-selected-hover-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-leading-icon-color: var(--md-filter-chip-selected-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-leading-icon-color: var(--md-filter-chip-selected-pressed-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_focus-leading-icon-color: var(--md-filter-chip-focus-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_hover-leading-icon-color: var(--md-filter-chip-hover-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_leading-icon-color: var(--md-filter-chip-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_pressed-leading-icon-color: var(--md-filter-chip-pressed-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_disabled-trailing-icon-color: var(--md-filter-chip-disabled-trailing-icon-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-trailing-icon-opacity: var(--md-filter-chip-disabled-trailing-icon-opacity, 0.38);--_selected-focus-trailing-icon-color: var(--md-filter-chip-selected-focus-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-trailing-icon-color: var(--md-filter-chip-selected-hover-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-trailing-icon-color: var(--md-filter-chip-selected-pressed-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-trailing-icon-color: var(--md-filter-chip-selected-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_focus-trailing-icon-color: var(--md-filter-chip-focus-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-trailing-icon-color: var(--md-filter-chip-hover-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-trailing-icon-color: var(--md-filter-chip-pressed-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_trailing-icon-color: var(--md-filter-chip-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_container-shape-start-start: var(--md-filter-chip-container-shape-start-start, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-start-end: var(--md-filter-chip-container-shape-start-end, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-end-end: var(--md-filter-chip-container-shape-end-end, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-end-start: var(--md-filter-chip-container-shape-end-start, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_leading-space: var(--md-filter-chip-leading-space, 16px);--_trailing-space: var(--md-filter-chip-trailing-space, 16px);--_icon-label-space: var(--md-filter-chip-icon-label-space, 8px);--_with-leading-icon-leading-space: var(--md-filter-chip-with-leading-icon-leading-space, 8px);--_with-trailing-icon-trailing-space: var(--md-filter-chip-with-trailing-icon-trailing-space, 8px)}.selected.elevated::before{background:var(--_elevated-selected-container-color)}.checkmark{height:var(--_icon-size);width:var(--_icon-size)}.disabled .checkmark{opacity:var(--_disabled-leading-icon-opacity)}@media(forced-colors: active){.disabled .checkmark{opacity:1}}\n`;\n//# sourceMappingURL=filter-styles.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/selectable-styles.css.\nimport { css } from 'lit';\nexport const styles = css `.selected{--md-ripple-hover-color: var(--_selected-hover-state-layer-color);--md-ripple-hover-opacity: var(--_selected-hover-state-layer-opacity);--md-ripple-pressed-color: var(--_selected-pressed-state-layer-color);--md-ripple-pressed-opacity: var(--_selected-pressed-state-layer-opacity)}:where(.selected)::before{background:var(--_selected-container-color)}:where(.selected) .outline{border-width:var(--_selected-outline-width)}:where(.selected.disabled)::before{background:var(--_disabled-selected-container-color);opacity:var(--_disabled-selected-container-opacity)}:where(.selected) .label{color:var(--_selected-label-text-color)}:where(.selected:hover) .label{color:var(--_selected-hover-label-text-color)}:where(.selected:focus) .label{color:var(--_selected-focus-label-text-color)}:where(.selected:active) .label{color:var(--_selected-pressed-label-text-color)}:where(.selected) .leading.icon{color:var(--_selected-leading-icon-color)}:where(.selected:hover) .leading.icon{color:var(--_selected-hover-leading-icon-color)}:where(.selected:focus) .leading.icon{color:var(--_selected-focus-leading-icon-color)}:where(.selected:active) .leading.icon{color:var(--_selected-pressed-leading-icon-color)}@media(forced-colors: active){:where(.selected:not(.elevated))::before{border:1px solid CanvasText}:where(.selected) .outline{border-width:1px}}\n`;\n//# sourceMappingURL=selectable-styles.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/shared-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host{border-start-start-radius:var(--_container-shape-start-start);border-start-end-radius:var(--_container-shape-start-end);border-end-start-radius:var(--_container-shape-end-start);border-end-end-radius:var(--_container-shape-end-end);display:inline-flex;height:var(--_container-height);cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);--md-ripple-hover-color: var(--_hover-state-layer-color);--md-ripple-hover-opacity: var(--_hover-state-layer-opacity);--md-ripple-pressed-color: var(--_pressed-state-layer-color);--md-ripple-pressed-opacity: var(--_pressed-state-layer-opacity)}:host(:is([disabled],[soft-disabled])){pointer-events:none}:host([touch-target=wrapper]){margin:max(0px,(48px - var(--_container-height))/2) 0}md-focus-ring{--md-focus-ring-shape-start-start: var(--_container-shape-start-start);--md-focus-ring-shape-start-end: var(--_container-shape-start-end);--md-focus-ring-shape-end-end: var(--_container-shape-end-end);--md-focus-ring-shape-end-start: var(--_container-shape-end-start)}.container{border-radius:inherit;box-sizing:border-box;display:flex;height:100%;position:relative;width:100%}.container::before{border-radius:inherit;content:\"\";inset:0;pointer-events:none;position:absolute}.container:not(.disabled){cursor:pointer}.container.disabled{pointer-events:none}.cell{display:flex}.action{align-items:baseline;appearance:none;background:none;border:none;border-radius:inherit;display:flex;outline:none;padding:0;position:relative;text-decoration:none}.primary.action{min-width:0;padding-inline-start:var(--_leading-space);padding-inline-end:var(--_trailing-space)}.has-icon .primary.action{padding-inline-start:var(--_with-leading-icon-leading-space)}.touch{height:48px;inset:50% 0 0;position:absolute;transform:translateY(-50%);width:100%}:host([touch-target=none]) .touch{display:none}.outline{border:var(--_outline-width) solid var(--_outline-color);border-radius:inherit;inset:0;pointer-events:none;position:absolute}:where(:focus) .outline{border-color:var(--_focus-outline-color)}:where(.disabled) .outline{border-color:var(--_disabled-outline-color);opacity:var(--_disabled-outline-opacity)}md-ripple{border-radius:inherit}.label,.icon,.touch{z-index:1}.label{align-items:center;color:var(--_label-text-color);display:flex;font-family:var(--_label-text-font);font-size:var(--_label-text-size);font-weight:var(--_label-text-weight);height:100%;line-height:var(--_label-text-line-height);overflow:hidden;user-select:none}.label-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:where(:hover) .label{color:var(--_hover-label-text-color)}:where(:focus) .label{color:var(--_focus-label-text-color)}:where(:active) .label{color:var(--_pressed-label-text-color)}:where(.disabled) .label{color:var(--_disabled-label-text-color);opacity:var(--_disabled-label-text-opacity)}.icon{align-self:center;display:flex;fill:currentColor;position:relative}.icon ::slotted(:first-child){font-size:var(--_icon-size);height:var(--_icon-size);width:var(--_icon-size)}.leading.icon{color:var(--_leading-icon-color)}.leading.icon ::slotted(*),.leading.icon svg{margin-inline-end:var(--_icon-label-space)}:where(:hover) .leading.icon{color:var(--_hover-leading-icon-color)}:where(:focus) .leading.icon{color:var(--_focus-leading-icon-color)}:where(:active) .leading.icon{color:var(--_pressed-leading-icon-color)}:where(.disabled) .leading.icon{color:var(--_disabled-leading-icon-color);opacity:var(--_disabled-leading-icon-opacity)}@media(forced-colors: active){:where(.disabled) :is(.label,.outline,.leading.icon){color:GrayText;opacity:1}}a,button{text-transform:inherit}a,button:not(:disabled,[aria-disabled=true]){cursor:inherit}\n`;\n//# sourceMappingURL=shared-styles.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/trailing-icon-styles.css.\nimport { css } from 'lit';\nexport const styles = css `.trailing.action{align-items:center;justify-content:center;padding-inline-start:var(--_icon-label-space);padding-inline-end:var(--_with-trailing-icon-trailing-space)}.trailing.action :is(md-ripple,md-focus-ring){border-radius:50%;height:calc(1.3333333333*var(--_icon-size));width:calc(1.3333333333*var(--_icon-size))}.trailing.action md-focus-ring{inset:unset}.has-trailing .primary.action{padding-inline-end:0}.trailing.icon{color:var(--_trailing-icon-color);height:var(--_icon-size);width:var(--_icon-size)}:where(:hover) .trailing.icon{color:var(--_hover-trailing-icon-color)}:where(:focus) .trailing.icon{color:var(--_focus-trailing-icon-color)}:where(:active) .trailing.icon{color:var(--_pressed-trailing-icon-color)}:where(.disabled) .trailing.icon{color:var(--_disabled-trailing-icon-color);opacity:var(--_disabled-trailing-icon-opacity)}:where(.selected) .trailing.icon{color:var(--_selected-trailing-icon-color)}:where(.selected:hover) .trailing.icon{color:var(--_selected-hover-trailing-icon-color)}:where(.selected:focus) .trailing.icon{color:var(--_selected-focus-trailing-icon-color)}:where(.selected:active) .trailing.icon{color:var(--_selected-pressed-trailing-icon-color)}@media(forced-colors: active){.trailing.icon{color:ButtonText}:where(.disabled) .trailing.icon{color:GrayText;opacity:1}}\n`;\n//# sourceMappingURL=trailing-icon-styles.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { customElement } from 'lit/decorators.js';\nimport { styles as elevatedStyles } from './internal/elevated-styles.js';\nimport { FilterChip } from './internal/filter-chip.js';\nimport { styles } from './internal/filter-styles.js';\nimport { styles as selectableStyles } from './internal/selectable-styles.js';\nimport { styles as sharedStyles } from './internal/shared-styles.js';\nimport { styles as trailingIconStyles } from './internal/trailing-icon-styles.js';\n/**\n * TODO(b/243982145): add docs\n *\n * @final\n * @suppress {visibility}\n */\nexport let MdFilterChip = class MdFilterChip extends FilterChip {\n};\nMdFilterChip.styles = [\n sharedStyles,\n elevatedStyles,\n trailingIconStyles,\n selectableStyles,\n styles,\n];\nMdFilterChip = __decorate([\n customElement('md-filter-chip')\n], MdFilterChip);\n//# sourceMappingURL=filter-chip.js.map","import '@material/web/chips/chip-set.js'\nimport '@material/web/chips/filter-chip.js'\nimport { $LitElement } from '@mixins/index'\nimport { html, LitElement } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\n@customElement('schmancy-chip')\nexport default class SchmancyChip extends $LitElement() {\n\t// Removed unused query for md-chip-set\n\n\t@property({ type: String, reflect: true })\n\tlabel: string = ''\n\n\t@property({ type: String, reflect: true })\n\tvalue: string = ''\n\n\t@property({ type: Boolean, reflect: true })\n\tselected: boolean = false\n\n\t@property({ type: String, reflect: true })\n\ticon: string = ''\n\n\tconstructor() {\n\t\tsuper()\n\t\ttry {\n\t\t\tthis.internals = this.attachInternals()\n\t\t} catch {\n\t\t\tthis.internals = undefined\n\t\t}\n\t}\n\n\tprotected static shadowRootOptions = {\n\t\t...LitElement.shadowRootOptions,\n\t\tdelegatesFocus: true,\n\t}\n\n\tstatic formAssociated = true\n\tinternals: ElementInternals | undefined\n\tget form() {\n\t\treturn this.internals?.form\n\t}\n\n\tprotected render(): unknown {\n\t\treturn html`\n\t\t\t<md-filter-chip\n\t\t\t\tlabel=\"${this.label}\"\n\t\t\t\t@click=${() => {\n\t\t\t\t\t// Toggle selection and dispatch a change event\n\t\t\t\t\tthis.selected = !this.selected\n\t\t\t\t\tthis.dispatchEvent(\n\t\t\t\t\t\tnew CustomEvent<SchmancyChipChangeEvent>('change', {\n\t\t\t\t\t\t\tdetail: { value: this.value, selected: this.selected },\n\t\t\t\t\t\t\tbubbles: true,\n\t\t\t\t\t\t}),\n\t\t\t\t\t)\n\t\t\t\t}}\n\t\t\t\t?selected=${this.selected}\n\t\t\t>\n\t\t\t\t${this.icon}\n\t\t\t</md-filter-chip>\n\t\t`\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t'schmancy-chip': SchmancyChip\n\t}\n}\n\nexport type SchmancyChipChangeEvent = { value: string; selected: boolean }\n","import '@material/web/chips/chip-set.js'\nimport '@material/web/chips/filter-chip.js'\nimport { ChipSet } from '@material/web/chips/internal/chip-set'\nimport { $LitElement } from '@mixins/index'\nimport { css, html, PropertyValues } from 'lit'\nimport { customElement, property, query, queryAssignedElements } from 'lit/decorators.js'\nimport SchmancyChip, { SchmancyChipChangeEvent } from './chip'\n@customElement('schmancy-chips')\nexport default class SchmancyChips extends $LitElement(css``) {\n\t@query('md-chip-set') chipSet!: ChipSet\n\n\t@property({\n\t\ttype: Boolean,\n\t\treflect: true,\n\t})\n\tmulti = false\n\n\t@property({\n\t\ttype: Array,\n\t\treflect: true,\n\t})\n\tvalues: string[] = []\n\n\t@property({\n\t\ttype: String,\n\t\treflect: true,\n\t})\n\tvalue: string = ''\n\n\t@queryAssignedElements({\n\t\tselector: 'schmancy-chip',\n\t\tflatten: true,\n\t})\n\tchips!: SchmancyChip[]\n\n\tasync change(e: CustomEvent<SchmancyChipChangeEvent>) {\n\t\te.preventDefault()\n\t\te.stopPropagation()\n\t\tconst { value, selected } = e.detail\n\t\tif (this.multi) {\n\t\t\tif (selected) {\n\t\t\t\tthis.values = [...this.values, value]\n\t\t\t\t// find the chip that was selected\n\t\t\t\tconst chip = this.chips.find(c => c.value === value)\n\t\t\t\t// if it exists, select it\n\t\t\t\tif (chip) chip.selected = true\n\t\t\t} else {\n\t\t\t\tthis.values = this.values.filter(v => v !== value)\n\t\t\t\t// find the chip that was deselected\n\t\t\t\tconst chip = this.chips.find(c => c.value === value)\n\t\t\t\t// if it exists, deselect it\n\t\t\t\tif (chip) chip.selected = false\n\t\t\t}\n\t\t\tthis.requestUpdate()\n\t\t} else {\n\t\t\tconst { value, selected } = e.detail\n\t\t\tthis.value = selected ? value : ''\n\t\t\tconst chip = this.chips.find(c => c.value === value)\n\t\t\tif (selected) chip.selected = selected\n\t\t\telse chip.selected = false\n\t\t\t// deselect all other chips\n\t\t\tthis.chips.forEach(c => {\n\t\t\t\tif (this.value && this.value === c.value) c.selected = true\n\t\t\t\telse c.selected = false\n\t\t\t})\n\t\t\tthis.requestUpdate()\n\t\t}\n\t\tthis.dispatchEvent(\n\t\t\tnew CustomEvent<SchmancyChipsChangeEvent>('change', {\n\t\t\t\tdetail: this.multi ? this.values : this.value,\n\t\t\t\tbubbles: true,\n\t\t\t}),\n\t\t)\n\t}\n\n\tprotected firstUpdated(_changedProperties: PropertyValues): void {\n\t\tsuper.firstUpdated(_changedProperties)\n\t\tthis.hydrateTabs()\n\t}\n\n\t// attribute changes\n\t// when values change, update the selected chips\n\tattributeChangedCallback(name: string, old: string, value: string): void {\n\t\tsuper.attributeChangedCallback(name, old, value)\n\t\tif (name === 'values') {\n\t\t\tthis.hydrateTabs()\n\t\t} else if (name === 'value') {\n\t\t\tthis.hydrateTabs()\n\t\t}\n\t}\n\n\thydrateTabs() {\n\t\tthis.chips.forEach(chip => {\n\t\t\tif (this.multi) {\n\t\t\t\tif (this.values.includes(chip.value)) chip.selected = true\n\t\t\t\telse chip.selected = false\n\t\t\t} else {\n\t\t\t\tif (this.value === chip.value) chip.selected = true\n\t\t\t\telse chip.selected = false\n\t\t\t}\n\t\t})\n\t}\n\n\tprotected render(): unknown {\n\t\treturn html` <md-chip-set @change=${this.change}>\n\t\t\t<slot @slotchange=${() => this.hydrateTabs()}></slot>\n\t\t</md-chip-set>`\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t'schmancy-chips': SchmancyChips\n\t}\n}\nexport type SchmancyChipsChangeEvent = string | Array<string>\n"],"names":["chipBaseClass","mixinDelegatesAria","LitElement","Chip","this","disabled","softDisabled","super","alwaysFocusable","label","hasIcon","isServer","addEventListener","handleClick","bind","options","focus","html","classMap","getContainerClasses","renderContainerContent","changed","has","get","dispatchEvent","Event","bubbles","renderOutline","primaryId","rippleDisabled","renderPrimaryAction","renderPrimaryContent","handleIconChange","renderLeadingIcon","event","slot","target","assignedElements","flatten","length","stopImmediatePropagation","preventDefault","shadowRootOptions","delegatesFocus","__decorate","property","type","Boolean","reflect","prototype","attribute","undefined","ChipSet","childElements","filter","child","internals","attachInternals","updateTabIndices","handleKeyDown","role","isLeft","key","isRight","isHome","isEnd","chips","trailing","forwards","getComputedStyle","direction","focusedChip","find","chip","matches","currentIndex","indexOf","nextIndex","nextChip","chipToFocus","isChipFocusable","tabIndex","queryAssignedElements","styles","css","MdChipSet","customElement","Elevation","connectedCallback","setAttribute","render","MdElevation","ARIA_LABEL_REMOVE","MultiActionChip","ariaLabelRemove","hasAttribute","getAttribute","ariaLabel","removeAttribute","requestUpdate","constructor","handleTrailingActionFocus","trailingAction","renderTrailingAction","primaryAction","isPrimaryFocused","isTrailingFocused","stopPropagation","once","renderRemoveButton","focusListener","tabbable","nothing","handleRemoveClick","cancelable","remove","FilterChip","arguments","elevated","removable","selected","hasSelectedIcon","content","handleClickOnChild","prevValue","redispatchEvent","query","MdFilterChip","sharedStyles","elevatedStyles","trailingIconStyles","selectableStyles","SchmancyChip","$LitElement","value","icon","form","CustomEvent","detail","formAssociated","__decorateClass","String","SchmancyChips","multi","values","e","c","v","forEach","_changedProperties","firstUpdated","hydrateTabs","name","old","attributeChangedCallback","includes","change","Array","selector"],"mappings":"kTAaMA,EAAgBC,EAAkBA,mBAACC,YAMlC,EAAA,MAAMC,UAAaH,CAAAA,CAKtB,oBACI,CAAA,OAAOI,KAAKC,UAAYD,KAAKE,YACrC,CACI,aACIC,CAAAA,MAAAA,EAMAH,KAAKC,SAAW,GAShBD,KAAKE,aAAe,GAUpBF,KAAKI,gBAAkB,GAOvBJ,KAAKK,MAAQ,GAObL,KAAKM,QAAAA,GACAC,EAAAA,UACDP,KAAKQ,iBAAiB,QAASR,KAAKS,YAAYC,KAAKV,IAEjE,CAAA,CAAA,CACI,MAAMW,EAAAA,CACEX,KAAKC,UAAaD,CAAAA,KAAKI,iBAG3BD,MAAMS,MAAMD,CACpB,CAAA,CACI,QACI,CAAA,OAAOE;8BACeC,WAASd,KAAKe,oBAAAA,CAAAA,CAAAA;AAAAA,UAClCf,KAAKgB,uBAAAA,CAAAA;AAAAA;AAAAA,KAGf,CACI,QAAQC,EAAAA,CACAA,EAAQC,IAAI,aAAeD,EAAQE,IAAI,UAAA,YACvCnB,KAAKoB,cAAc,IAAIC,MAAM,eAAgB,CAAEC,QAAS,EAAA,CAAA,CAAA,CAEpE,CACI,sBACI,MAAO,CACHrB,SAAYD,KAAKC,UAAYD,KAAKE,aAClC,WAAYF,KAAKM,QAE7B,CACI,wBACI,CAAA,OAAOO;QACPb,KAAKuB,cAAAA,CAAAA;AAAAA,6CACgCvB,KAAKwB,SAAAA;AAAAA;AAAAA,cAEpCxB,KAAKwB,SAAAA;AAAAA,oBACCxB,KAAKyB,cAAAA;AAAAA,QACjBzB,KAAK0B,oBAAoB1B,KAAK2B,qBAAAA,CAAAA,CAAAA;AAAAA,KAEtC,CACI,gBACI,OAAOd,EAAAA,mCACf,CACI,mBACI,CAAA,OAAOA,EAAIA,qCAAkCb,KAAK4B,gBAC1D,UAAA,CACI,sBACI,CAAA,OAAOf;;UAELb,KAAK6B,kBAAAA,CAAAA;AAAAA;AAAAA;AAAAA;AAAAA,YAIH7B,KAAKK,MAAQL,KAAKK,MAAQQ,EAAAA,mBAAK;AAAA;AAAA;AAAA;AAAA,KAK3C,CACI,iBAAiBiB,EAAAA,CACb,MAAMC,EAAOD,EAAME,OACnBhC,KAAKM,QAAUyB,EAAKE,iBAAiB,CAAEC,QAAS,EAAA,CAAA,EAAQC,OAAS,CACzE,CACI,YAAYL,EAAAA,CAIR,GAAI9B,KAAKE,cAAiBF,KAAKC,UAAYD,KAAKI,gBAG5C,OAFA0B,EAAMM,yBACNN,EAAAA,KAAAA,EAAMO,gBAGlB,CAGAtC,CAAAA,EAAKuC,kBAAoB,CAClBxC,GAAAA,EAAUA,WAACwC,kBACdC,eAAAA,IAEJC,EAAAA,EAAW,CACPC,EAAAA,SAAS,CAAEC,KAAMC,QAASC,QAAS,EAAA,CAAA,CAAA,EACpC7C,EAAK8C,UAAW,WAAA,MACnBL,EAAAA,EAAAA,EAAW,CACPC,EAAQA,SAAC,CAAEC,KAAMC,QAASG,UAAW,gBAAiBF,QAAS,EAAA,CAAA,CAAA,EAChE7C,EAAK8C,UAAW,eAAA,QACnBL,EAAAA,EAAW,CACPC,EAAAA,SAAS,CAAEC,KAAMC,QAASG,UAAW,kBACtC/C,CAAAA,CAAAA,EAAAA,EAAK8C,UAAW,kBAAmBE,MAAAA,EACtCP,EAAAA,EAAW,CACPC,EAAQA,SAAAA,CAAAA,EACT1C,EAAK8C,UAAW,QAAA,QACnBL,EAAAA,EAAW,CACPC,EAAQA,SAAC,CAAEC,KAAMC,QAASC,QAAS,GAAME,UAAW,UACrD/C,CAAAA,CAAAA,EAAAA,EAAK8C,UAAW,UAAWE,MAAAA,ECnJvB,MAAMC,UAAgBlD,EAAAA,UACzB,CAAA,IAAA,QACI,OAAOE,KAAKiD,cAAcC,OAAQC,GAAUA,aAAiBpD,CACrE,CAAA,CACI,aACII,CAAAA,MAAAA,EACAH,KAAKoD,UAELpD,KAAKqD,kBACA9C,EAAAA,WACDP,KAAKQ,iBAAiB,UAAWR,KAAKsD,iBAAiB5C,KAAKV,IAC5DA,CAAAA,EAAAA,KAAKQ,iBAAiB,eAAgBR,KAAKsD,iBAAiB5C,KAAKV,OACjEA,KAAKQ,iBAAiB,UAAWR,KAAKuD,cAAc7C,KAAKV,IACzDA,CAAAA,EAAAA,KAAKoD,UAAUI,KAAO,UAElC,CACI,SACI,OAAO3C,EAAIA,yBAAsBb,KAAKsD,0BAC9C,CACI,cAAcxB,EACV,CAAA,MAAM2B,EAAS3B,EAAM4B,MAAQ,YACvBC,EAAU7B,EAAM4B,MAAQ,aACxBE,EAAS9B,EAAM4B,MAAQ,OACvBG,EAAQ/B,EAAM4B,MAAQ,MAE5B,GAAA,EAAKD,GAAWE,GAAYC,GAAWC,GACnC,OAEJ,MAAMC,MAAEA,CAAAA,EAAU9D,KAElB,GAAI8D,EAAM3B,OAAS,EACf,OAIJ,GADAL,EAAMO,iBACFuB,GAAUC,EAIV,OAFAC,EADcF,EAAS,EAAIE,EAAM3B,OAAS,CAC7BvB,EAAAA,MAAM,CAAEmD,SAAUF,CAAAA,CAAAA,EAAAA,KAC/B7D,KAAKsD,iBAEjB,EAEQ,MACMU,EADQC,iBAAiBjE,IAAAA,EAAMkE,YAAc,MAC1BT,EAASE,EAC5BQ,EAAcL,EAAMM,KAAMC,GAASA,EAAKC,QAAQ,eACtD,CAAA,EAAA,GAAA,CAAKH,EAMD,OAHiBH,EAAWF,EAAM,CAAA,EAAKA,EAAMA,EAAM3B,OAAS,CACnDvB,GAAAA,MAAM,CAAEmD,SAAWC,CAAAA,CAAAA,CAAAA,EAAAA,KAC5BhE,KAAKsD,iBAEjB,EACQ,MAAMiB,EAAeT,EAAMU,QAAQL,CACnC,EAAA,IAAIM,EAAYT,EAAWO,EAAe,EAAIA,EAAe,EAG7D,KAAOE,IAAcF,GAAc,CAC3BE,GAAaX,EAAM3B,OAEnBsC,EAAY,EAEPA,EAAY,IAEjBA,EAAYX,EAAM3B,OAAS,GAO/B,MAAMuC,EAAWZ,EAAMW,CAAAA,EACvB,IAAIC,EAASzE,UAAayE,EAAStE,gBAAnC,CASAsE,EAAS9D,MAAM,CAAEmD,SAAWC,CAAAA,CAAAA,CAAAA,EAC5BhE,KAAKsD,iBACL,EAAA,KAHZ,CAPoBU,EACAS,IAGAA,GAOpB,CACA,CACI,kBAGI,CAAA,KAAA,CAAMX,MAAEA,CAAU9D,EAAAA,KAClB,IAAI2E,EACJ,UAAWN,KAAQP,EAAO,CACtB,MAAMc,EAAkBP,EAAKjE,iBAAAA,CAAoBiE,EAAKpE,SAChCoE,EAAKC,QAAQ,eACdM,GAAAA,EAGjBD,EAAcN,GAGdO,GAAAA,CAAoBD,IACpBA,EAAcN,GAIlBA,EAAKQ,SAAAA,GACjB,CACYF,IACAA,EAAYE,SAAW,EAEnC,EAEArC,EAAAA,EAAW,CACPsC,EAAqBA,sBAAAA,CAAAA,EACtB9B,EAAQH,UAAW,gBAAA,QCvHf,MAAMkC,EAASC,EAAGA;AAAAA,ECQlB,IAAIC,EAAY,cAAwBjC,CAAAA,CAAAA,EAE/CiC,EAAUF,OAAS,CAACA,GACpBE,EAAYzC,IAAW,CACnB0C,EAAAA,cAAc,aAAA,CAAA,EACfD,GCbI,MAAMF,EAASC,EAAGA;AAAAA,ECElB,MAAMG,UAAkBrF,EAAAA,UAC3B,CAAA,oBACIK,MAAMiF,kBAAAA,EAGNpF,KAAKqF,aAAa,cAAe,MAAA,CACzC,CACI,QAAAC,CACI,OAAOzE,EAAAA,kCACf,CCXO,CAAA,MAAMkE,EAASC,EAAGA;AAAAA,ECUlB,IAAIO,EAAc,cAA0BJ,CAEnDI,CAAAA,EAAAA,EAAYR,OAAS,CAACA,CAAAA,EACtBQ,EAAc/C,IAAW,CACrB0C,EAAAA,cAAc,cAAA,CAAA,EACfK,CCfH,EAAA,MAAMC,EAAoB,oBAInB,MAAMC,UAAwB1F,CAAAA,CACjC,IAAI2F,iBAAAA,CACA,GAAI1F,KAAK2F,aAAaH,CAClB,EAAA,OAAOxF,KAAK4F,aAAaJ,CAAAA,EAE7B,MAAMK,UAAEA,CAAAA,EAAc7F,KAEtB,OAAI6F,GAAa7F,KAAKK,MACX,UAAUwF,GAAa7F,KAAKK,KAAAA,GAEhC,IACf,CACI,oBAAoBwF,EAAAA,CAEZA,IADS7F,KAAK0F,kBAIdG,IAAc,KACd7F,KAAK8F,gBAAgBN,GAGrBxF,KAAKqF,aAAaG,EAAmBK,CAEzC7F,EAAAA,KAAK+F,cACb,EAAA,CACI,aAAAC,CACI7F,QACAH,KAAKiG,0BAA4BjG,KAAKiG,0BAA0BvF,KAAKV,IAAAA,EAChEO,EAAAA,UACDP,KAAKQ,iBAAiB,UAAWR,KAAKuD,cAAc7C,KAAKV,IAErE,CAAA,CAAA,CACI,MAAMW,EACkBX,EAAAA,KAAKI,kBAAoBJ,KAAKC,YAC/BU,WAASoD,WAAY/D,KAAKkG,eACzClG,KAAKkG,eAAetF,MAAMD,CAG9BR,EAAAA,MAAMS,MAAMD,CAAAA,CACpB,CACI,wBAAAK,CACI,OAAOH;QACPV,MAAMa,uBAAAA,CAAAA;AAAAA,QACNhB,KAAKmG,qBAAqBnG,KAAKiG,yBAAAA,CAAAA;AAAAA,KAEvC,CACI,cAAcnE,EACV,SAAA,MAAM2B,EAAS3B,EAAM4B,MAAQ,YACvBC,EAAU7B,EAAM4B,MAAQ,aAK9B,GAHA,CAAKD,IAAWE,IAGX3D,KAAKoG,eAAAA,CAAkBpG,KAAKkG,eAE7B,OAGJ,MACMlC,EADQC,iBAAiBjE,IAAMkE,EAAAA,YAAc,MAC1BT,EAASE,EAC5B0C,GAAmBrG,EAAAA,KAAKoG,gBAALpG,YAAAA,EAAoBsE,QAAQ,iBAC/CgC,GAAoBtG,EAAAA,KAAKkG,iBAALlG,YAAAA,EAAqBsE,QAAQ,iBAClDN,GAAYsC,GAAAA,CAAwBtC,GAAYqC,IAKrDvE,EAAMO,iBAENP,EAAMyE,gBAAAA,GACgBvC,EAAWhE,KAAKkG,eAAiBlG,KAAKoG,eAC9CxF,MAAAA,EACtB,CACI,2BAAAqF,CACI,MAAMG,cAAEA,EAAaF,eAAEA,CAAmBlG,EAAAA,KACrCoG,GAAkBF,IAMvBE,EAAcvB,SAAa,GAC3BqB,EAAe1F,iBAAiB,WAAY,IACxC4F,CAAAA,EAAcvB,SAAW,CAAC,EAC3B,CAAE2B,KAAM,EAAA,CAAA,EACnB,ECvFO,SAASC,EAAAA,CAAmBZ,UAAEA,EAAS5F,SAAEA,EAAQyG,cAAEA,EAAaC,SAAEA,EAAW,EAAA,EAAA,CAIhF,OAAO9F;;;;mBAIQgF,GAAae,EAAOA,OAAAA;AAAAA,wBACdf,EAAmCe,EAAOA,QAA9B,oBAAA;AAAA,iBACnBD,EAAgBC,EAAOA,QAAZ,EAAA;AAAA,eACdC,CAAAA;AAAAA,eACAH,CAAAA;AAAAA;AAAAA,6BAEczG,CAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA;AAAAA,GAY7B,CACA,SAAS4G,EAAkB/E,EAAAA,CACnB9B,KAAKC,UAAYD,KAAKE,eAG1B4B,EAAMyE,mBACkBvG,KAAKoB,cAAc,IAAIC,MAAM,SAAU,CAAEyF,WAAAA,EAIjE9G,CAAAA,CAAAA,GAAAA,KAAK+G,SACT,CC7BO,MAAMC,UAAmBvB,CAAAA,CAC5B,aACItF,CAAAA,MAAAA,GAAS8G,SACTjH,EAAAA,KAAKkH,YACLlH,KAAKmH,UAAY,GACjBnH,KAAKoH,SAAW,GAOhBpH,KAAKqH,gBAAAA,EACb,CACI,IAAA,WACI,CAAA,MAAO,QACf,CACI,qBACI,CAAA,MAAO,IACAlH,MAAMY,oBAAAA,EACTmG,SAAUlH,KAAKkH,SACfE,SAAUpH,KAAKoH,SACf,eAAgBpH,KAAKmH,UACrB,WAAYnH,KAAKM,SAAWN,KAAKoH,QAE7C,CAAA,CACI,oBAAoBE,GAChB,KAAMzB,CAAAA,UAAEA,GAAc7F,KACtB,OAAOa;;;;qBAIMgF,GAAae,EAAOA,OAAAA;AAAAA,uBAClB5G,KAAKoH,QAAAA;AAAAA,wBACJpH,KAAKE,cAAgB0G,EAAOA,OAAAA;AAAAA,oBAChC5G,KAAKC,WAAaD,KAAKI,eAAAA;AAAAA,iBAC1BJ,KAAKuH,kBAAAA;AAAAA,WACXD,CAAAA;AAAAA;AAAAA,KAGX,CACI,mBACI,CAAA,OAAKtH,KAAKoH,SAGHvG;;;;;;;MAFIV,MAAM0B,kBAUzB,CAAA,CACI,qBAAqB6E,EACjB,CAAA,OAAI1G,KAAKmH,UACEV,EAAmB,CACtBC,cACAb,EAAAA,UAAW7F,KAAK0F,gBAChBzF,SAAUD,KAAKC,UAAYD,KAAKE,YAAAA,CAAAA,EAGjC0G,EAAOA,OACtB,CACI,eACI,CAAA,OAAI5G,KAAKkH,SACErG,EAAAA,qDAEJV,MAAMoB,cAAAA,CACrB,CACI,mBAAmBO,EAAAA,CACf,GAAI9B,KAAKC,UAAYD,KAAKE,aACtB,OAIJ,MAAMsH,EAAYxH,KAAKoH,SACvBpH,KAAKoH,SAAYpH,CAAAA,KAAKoH,SACEK,CAAAA,kBAAgBzH,KAAM8B,CAK1C9B,IAAAA,KAAKoH,SAAWI,EAG5B,CAAA,CAEAhF,EAAAA,EAAW,CACPC,WAAS,CAAEC,KAAMC,OAClBqE,CAAAA,CAAAA,EAAAA,EAAWnE,UAAW,WAAA,MACzBL,EAAAA,EAAAA,EAAW,CACPC,WAAS,CAAEC,KAAMC,OAClBqE,CAAAA,CAAAA,EAAAA,EAAWnE,UAAW,YAAA,QACzBL,EAAAA,EAAW,CACPC,EAAAA,SAAS,CAAEC,KAAMC,QAASC,UAC3BoE,CAAAA,CAAAA,EAAAA,EAAWnE,UAAW,WAAA,MACzBL,EAAAA,EAAAA,EAAW,CACPC,EAAQA,SAAC,CAAEC,KAAMC,QAASC,QAAS,GAAME,UAAW,mBAAA,CAAA,CAAA,EACrDkE,EAAWnE,UAAW,kBAAmBE,MAAAA,EAC5CP,EAAAA,EAAW,CACPkF,EAAAA,MAAM,iBACPV,CAAAA,EAAAA,EAAWnE,UAAW,gBAAA,MACzBL,EAAAA,EAAAA,EAAW,CACPkF,EAAAA,MAAM,kBAAA,CAAA,EACPV,EAAWnE,UAAW,iBAAkBE,MAAAA,ECnHpC,MAAMgC,EAASC,EAAGA;AAAAA,ECAZD,EAASC,EAAGA;AAAAA,ECAZD,EAASC,EAAGA;AAAAA,ECAZD,EAASC,EAAGA;AAAAA,ECYlB,IAAI2C,EAAe,cAA2BX,CAAAA,CAAAA,EAErDW,EAAa5C,OAAS,CAClB6C,EACAC,EACAC,EACAC,EACAhD,CAEJ4C,EAAAA,EAAenF,IAAW,CACtB0C,EAAAA,cAAc,gBACfyC,CAAAA,EAAAA,CAAAA,kMCvBH,IAAqBK,EAArB,cAA0CC,EAAAA,YAAAA,CAAAA,CAezC,aAAAjC,CACO7F,MAZSH,EAAAA,KAAAK,MAAA,GAGAL,KAAAkI,MAAA,GAGIlI,KAAAoH,YAGLpH,KAAAmI,KAAA,GAIV,GACEnI,CAAAA,KAAAoD,UAAYpD,KAAKqD,gBAAgB,CAAA,MAEtCrD,CAAAA,KAAKoD,UAAYL,MAAA,CAClB,CAUD,IAAA,MACC,OAAA,OAAO/C,EAAAA,KAAKoD,YAALpD,YAAAA,EAAgBoI,IAAA,CAGd,QAAA9C,CACF,OAAAzE,EAAAA;AAAAA;AAAAA,aAEIb,KAAKK,KAAAA;AAAAA,aACL,IAAA,CAEHL,KAAAoH,SAAYpH,CAAAA,KAAKoH,SACjBpH,KAAAoB,cACJ,IAAIiH,YAAqC,SAAU,CAClDC,OAAQ,CAAEJ,MAAOlI,KAAKkI,MAAOd,SAAUpH,KAAKoH,QAAAA,EAC5C9F,UAEF,CAAA,CAAA,CAAA,CAAA;AAAA,gBAEWtB,KAAKoH,QAAAA;AAAAA;AAAAA,MAEfpH,KAAKmI,IAAAA;AAAAA;AAAAA,GAAI,CAAA,EAnDMH,EAwBH1F,kBAAoB,CAAA,GACjCxC,EAAWA,WAAAwC,kBACdC,eAAgB,EAAA,EA1BGyF,EA6BbO,eAAAA,GAzBPC,EAAA,CADC/F,EAAAA,SAAS,CAAEC,KAAM+F,OAAQ7F,QAAAA,EAHNoF,CAAAA,CAAAA,EAAAA,EAIpBnF,UAAA,QAAA,CAAA,EAGA2F,EAAA,CADC/F,EAAAA,SAAS,CAAEC,KAAM+F,OAAQ7F,UANNoF,CAAAA,CAAAA,EAAAA,EAOpBnF,UAAA,QAAA,CAAA,EAGA2F,EAAA,CADC/F,EAAAA,SAAS,CAAEC,KAAMC,QAASC,QAAAA,EATPoF,CAAAA,CAAAA,EAAAA,EAUpBnF,UAAA,WAAA,CAAA,EAGA2F,EAAA,CADC/F,EAAAA,SAAS,CAAEC,KAAM+F,OAAQ7F,QAAAA,MAZNoF,EAapBnF,UAAA,OAAA,CAAA,EAboBmF,EAArBQ,EAAA,CADCtD,EAAAA,cAAc,eAAA,CAAA,EACM8C,mMCCrB,IAAqBU,EAArB,cAA2CT,EAAAA,YAAYjD,EAAAA,KAAvD,CAAA,CAAA,cAAA7E,MAAA8G,GAAAA,SAAAA,EAOSjH,KAAA2I,MAAAA,GAMR3I,KAAA4I,OAAmB,GAMH5I,KAAAkI,MAAA,EAAA,CAQhB,MAAA,OAAaW,EAAAA,CACZA,EAAExG,eACFwG,EAAAA,EAAEtC,kBACF,KAAM2B,CAAAA,MAAEA,EAAAd,SAAOA,CAAAA,EAAayB,EAAEP,OAC9B,GAAItI,KAAK2I,MAAO,CACf,GAAIvB,EAAU,CACbpH,KAAK4I,OAAS,CAAI5I,GAAAA,KAAK4I,OAAQV,CAE/B,EAAA,MAAM7D,EAAOrE,KAAK8D,MAAMM,KAAU0E,GAAAA,EAAEZ,QAAUA,GAE1C7D,MAAW+C,YAAW,KACpB,CACNpH,KAAK4I,OAAS5I,KAAK4I,OAAO1F,OAAO6F,GAAKA,IAAMb,CAE5C,EAAA,MAAM7D,EAAOrE,KAAK8D,MAAMM,KAAU0E,GAAAA,EAAEZ,QAAUA,CAAAA,EAE1C7D,MAAW+C,SAAAA,GAAW,CAE3BpH,KAAK+F,cAAc,CAAA,KACb,CACN,KAAQmC,CAAAA,MAAAA,EAAOd,SAAAA,GAAayB,EAAEP,OACzBtI,KAAAkI,MAAQd,EAAWc,EAAQ,GAChC,MAAM7D,EAAOrE,KAAK8D,MAAMM,KAAU0E,GAAAA,EAAEZ,QAAUA,KAC3Bd,SAAfA,MAGCpH,KAAA8D,MAAMkF,QAAaF,GAAAA,CACnB9I,KAAKkI,OAASlI,KAAKkI,QAAUY,EAAEZ,QAASd,SAAAA,KACrCA,SAAAA,EAAW,CAAA,EAEnBpH,KAAK+F,cAAc,CAAA,CAEf/F,KAAAoB,cACJ,IAAIiH,YAAsC,SAAU,CACnDC,OAAQtI,KAAK2I,MAAQ3I,KAAK4I,OAAS5I,KAAKkI,MACxC5G,UAEF,CAAA,CAAA,CAAA,CAGS,aAAa2H,GACtB9I,MAAM+I,aAAaD,GACnBjJ,KAAKmJ,YAAAA,CAAY,CAKlB,yBAAyBC,EAAcC,EAAanB,GAC7C/H,MAAAmJ,yBAAyBF,EAAMC,EAAKnB,CAAAA,GACtCkB,IAAS,UAEFA,IAAS,UADnBpJ,KAAKmJ,aAGN,CAGD,aACMnJ,CAAAA,KAAA8D,MAAMkF,QAAgB3E,GAAAA,CACtBrE,KAAK2I,MACJ3I,KAAK4I,OAAOW,SAASlF,EAAK6D,SAAad,cACjCA,SAAW,GAEjBpH,KAAKkI,QAAU7D,EAAK6D,QAAYd,SAAAA,KAC1BA,SAAAA,EAAW,CAAA,CAEtB,CAGQ,QAAA9B,CACF,OAAAzE,+BAA6Bb,KAAKwJ,MAAAA;AAAAA,uBACpB,IAAMxJ,KAAKmJ,YAAAA,CAAAA;AAAAA,iBAAa,CAAA,EAhGxBX,EAAA,CAArBd,EAAAA,MAAM,aADagB,CAAAA,EAAAA,EACE7F,UAAA,UAAA,CAMtB2F,EAAAA,EAAA,CAJC/F,WAAS,CACTC,KAAMC,QACNC,QAAAA,EALmB8F,CAAAA,CAAAA,EAAAA,EAOpB7F,UAAA,QAAA,GAMA2F,EAAA,CAJC/F,WAAS,CACTC,KAAM+G,MACN7G,QAAAA,MAXmB8F,EAapB7F,UAAA,SAAA,CAAA,EAMA2F,EAAA,CAJC/F,WAAS,CACTC,KAAM+F,OACN7F,QAAAA,EAjBmB8F,CAAAA,CAAAA,EAAAA,EAmBpB7F,UAAA,QAAA,GAMA2F,EAAA,CAJC1D,wBAAsB,CACtB4E,SAAU,gBACVxH,QAAAA,MAvBmBwG,EAyBpB7F,UAAA,QAAA,CAAA,EAzBoB6F,EAArBF,EAAA,CADCtD,EAAAA,cAAc,gBACMwD,CAAAA,EAAAA,CAAAA","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]}
|
|
1
|
+
{"version":3,"file":"chips-BbMv4qYo.cjs","sources":["../node_modules/@material/web/chips/internal/chip.js","../node_modules/@material/web/chips/internal/chip-set.js","../node_modules/@material/web/chips/internal/chip-set-styles.js","../node_modules/@material/web/chips/chip-set.js","../node_modules/@material/web/chips/internal/elevated-styles.js","../node_modules/@material/web/elevation/internal/elevation.js","../node_modules/@material/web/elevation/internal/elevation-styles.js","../node_modules/@material/web/elevation/elevation.js","../node_modules/@material/web/chips/internal/multi-action-chip.js","../node_modules/@material/web/chips/internal/trailing-icons.js","../node_modules/@material/web/chips/internal/filter-chip.js","../node_modules/@material/web/chips/internal/filter-styles.js","../node_modules/@material/web/chips/internal/selectable-styles.js","../node_modules/@material/web/chips/internal/shared-styles.js","../node_modules/@material/web/chips/internal/trailing-icon-styles.js","../node_modules/@material/web/chips/filter-chip.js","../src/chips/chip.ts","../src/chips/chips.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport '../../focus/md-focus-ring.js';\nimport '../../ripple/ripple.js';\nimport { html, isServer, LitElement } from 'lit';\nimport { property } from 'lit/decorators.js';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { mixinDelegatesAria } from '../../internal/aria/delegate.js';\n// Separate variable needed for closure.\nconst chipBaseClass = mixinDelegatesAria(LitElement);\n/**\n * A chip component.\n *\n * @fires update-focus {Event} Dispatched when `disabled` is toggled. --bubbles\n */\nexport class Chip extends chipBaseClass {\n /**\n * Whether or not the primary ripple is disabled (defaults to `disabled`).\n * Some chip actions such as links cannot be disabled.\n */\n get rippleDisabled() {\n return this.disabled || this.softDisabled;\n }\n constructor() {\n super();\n /**\n * Whether or not the chip is disabled.\n *\n * Disabled chips are not focusable, unless `always-focusable` is set.\n */\n this.disabled = false;\n /**\n * Whether or not the chip is \"soft-disabled\" (disabled but still\n * focusable).\n *\n * Use this when a chip needs increased visibility when disabled. See\n * https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_disabled_controls\n * for more guidance on when this is needed.\n */\n this.softDisabled = false;\n /**\n * When true, allow disabled chips to be focused with arrow keys.\n *\n * Add this when a chip needs increased visibility when disabled. See\n * https://www.w3.org/WAI/ARIA/apg/practices/keyboard-interface/#kbd_disabled_controls\n * for more guidance on when this is needed.\n *\n * @deprecated Use `softDisabled` instead of `alwaysFocusable` + `disabled`.\n */\n this.alwaysFocusable = false;\n // TODO(b/350810013): remove the label property.\n /**\n * The label of the chip.\n *\n * @deprecated Set text as content of the chip instead.\n */\n this.label = '';\n /**\n * Only needed for SSR.\n *\n * Add this attribute when a chip has a `slot=\"icon\"` to avoid a Flash Of\n * Unstyled Content.\n */\n this.hasIcon = false;\n if (!isServer) {\n this.addEventListener('click', this.handleClick.bind(this));\n }\n }\n focus(options) {\n if (this.disabled && !this.alwaysFocusable) {\n return;\n }\n super.focus(options);\n }\n render() {\n return html `\n <div class=\"container ${classMap(this.getContainerClasses())}\">\n ${this.renderContainerContent()}\n </div>\n `;\n }\n updated(changed) {\n if (changed.has('disabled') && changed.get('disabled') !== undefined) {\n this.dispatchEvent(new Event('update-focus', { bubbles: true }));\n }\n }\n getContainerClasses() {\n return {\n 'disabled': this.disabled || this.softDisabled,\n 'has-icon': this.hasIcon,\n };\n }\n renderContainerContent() {\n return html `\n ${this.renderOutline()}\n <md-focus-ring part=\"focus-ring\" for=${this.primaryId}></md-focus-ring>\n <md-ripple\n for=${this.primaryId}\n ?disabled=${this.rippleDisabled}></md-ripple>\n ${this.renderPrimaryAction(this.renderPrimaryContent())}\n `;\n }\n renderOutline() {\n return html `<span class=\"outline\"></span>`;\n }\n renderLeadingIcon() {\n return html `<slot name=\"icon\" @slotchange=${this.handleIconChange}></slot>`;\n }\n renderPrimaryContent() {\n return html `\n <span class=\"leading icon\" aria-hidden=\"true\">\n ${this.renderLeadingIcon()}\n </span>\n <span class=\"label\">\n <span class=\"label-text\" id=\"label\">\n ${this.label ? this.label : html `<slot></slot>`}\n </span>\n </span>\n <span class=\"touch\"></span>\n `;\n }\n handleIconChange(event) {\n const slot = event.target;\n this.hasIcon = slot.assignedElements({ flatten: true }).length > 0;\n }\n handleClick(event) {\n // If the chip is soft-disabled or disabled + always-focusable, we need to\n // explicitly prevent the click from propagating to other event listeners\n // as well as prevent the default action.\n if (this.softDisabled || (this.disabled && this.alwaysFocusable)) {\n event.stopImmediatePropagation();\n event.preventDefault();\n return;\n }\n }\n}\n/** @nocollapse */\nChip.shadowRootOptions = {\n ...LitElement.shadowRootOptions,\n delegatesFocus: true,\n};\n__decorate([\n property({ type: Boolean, reflect: true })\n], Chip.prototype, \"disabled\", void 0);\n__decorate([\n property({ type: Boolean, attribute: 'soft-disabled', reflect: true })\n], Chip.prototype, \"softDisabled\", void 0);\n__decorate([\n property({ type: Boolean, attribute: 'always-focusable' })\n], Chip.prototype, \"alwaysFocusable\", void 0);\n__decorate([\n property()\n], Chip.prototype, \"label\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true, attribute: 'has-icon' })\n], Chip.prototype, \"hasIcon\", void 0);\n//# sourceMappingURL=chip.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { html, isServer, LitElement } from 'lit';\nimport { queryAssignedElements } from 'lit/decorators.js';\nimport { Chip } from './chip.js';\n/**\n * A chip set component.\n */\nexport class ChipSet extends LitElement {\n get chips() {\n return this.childElements.filter((child) => child instanceof Chip);\n }\n constructor() {\n super();\n this.internals = \n // Cast needed for closure\n this.attachInternals();\n if (!isServer) {\n this.addEventListener('focusin', this.updateTabIndices.bind(this));\n this.addEventListener('update-focus', this.updateTabIndices.bind(this));\n this.addEventListener('keydown', this.handleKeyDown.bind(this));\n this.internals.role = 'toolbar';\n }\n }\n render() {\n return html `<slot @slotchange=${this.updateTabIndices}></slot>`;\n }\n handleKeyDown(event) {\n const isLeft = event.key === 'ArrowLeft';\n const isRight = event.key === 'ArrowRight';\n const isHome = event.key === 'Home';\n const isEnd = event.key === 'End';\n // Ignore non-navigation keys\n if (!isLeft && !isRight && !isHome && !isEnd) {\n return;\n }\n const { chips } = this;\n // Don't try to select another chip if there aren't any.\n if (chips.length < 2) {\n return;\n }\n // Prevent default interactions, such as scrolling.\n event.preventDefault();\n if (isHome || isEnd) {\n const index = isHome ? 0 : chips.length - 1;\n chips[index].focus({ trailing: isEnd });\n this.updateTabIndices();\n return;\n }\n // Check if moving forwards or backwards\n const isRtl = getComputedStyle(this).direction === 'rtl';\n const forwards = isRtl ? isLeft : isRight;\n const focusedChip = chips.find((chip) => chip.matches(':focus-within'));\n if (!focusedChip) {\n // If there is not already a chip focused, select the first or last chip\n // based on the direction we're traveling.\n const nextChip = forwards ? chips[0] : chips[chips.length - 1];\n nextChip.focus({ trailing: !forwards });\n this.updateTabIndices();\n return;\n }\n const currentIndex = chips.indexOf(focusedChip);\n let nextIndex = forwards ? currentIndex + 1 : currentIndex - 1;\n // Search for the next sibling that is not disabled to select.\n // If we return to the host index, there is nothing to select.\n while (nextIndex !== currentIndex) {\n if (nextIndex >= chips.length) {\n // Return to start if moving past the last item.\n nextIndex = 0;\n }\n else if (nextIndex < 0) {\n // Go to end if moving before the first item.\n nextIndex = chips.length - 1;\n }\n // Check if the next sibling is disabled. If so,\n // move the index and continue searching.\n //\n // Some toolbar items may be focusable when disabled for increased\n // visibility.\n const nextChip = chips[nextIndex];\n if (nextChip.disabled && !nextChip.alwaysFocusable) {\n if (forwards) {\n nextIndex++;\n }\n else {\n nextIndex--;\n }\n continue;\n }\n nextChip.focus({ trailing: !forwards });\n this.updateTabIndices();\n break;\n }\n }\n updateTabIndices() {\n // The chip that should be focusable is either the chip that currently has\n // focus or the first chip that can be focused.\n const { chips } = this;\n let chipToFocus;\n for (const chip of chips) {\n const isChipFocusable = chip.alwaysFocusable || !chip.disabled;\n const chipIsFocused = chip.matches(':focus-within');\n if (chipIsFocused && isChipFocusable) {\n // Found the first chip that is actively focused. This overrides the\n // first focusable chip found.\n chipToFocus = chip;\n continue;\n }\n if (isChipFocusable && !chipToFocus) {\n chipToFocus = chip;\n }\n // Disable non-focused chips. If we disable all of them, we'll grant focus\n // to the first focusable child that was found.\n chip.tabIndex = -1;\n }\n if (chipToFocus) {\n chipToFocus.tabIndex = 0;\n }\n }\n}\n__decorate([\n queryAssignedElements()\n], ChipSet.prototype, \"childElements\", void 0);\n//# sourceMappingURL=chip-set.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/chip-set-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host{display:flex;flex-wrap:wrap;gap:8px}\n`;\n//# sourceMappingURL=chip-set-styles.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { customElement } from 'lit/decorators.js';\nimport { ChipSet } from './internal/chip-set.js';\nimport { styles } from './internal/chip-set-styles.js';\n/**\n * TODO(b/243982145): add docs\n *\n * @final\n * @suppress {visibility}\n */\nexport let MdChipSet = class MdChipSet extends ChipSet {\n};\nMdChipSet.styles = [styles];\nMdChipSet = __decorate([\n customElement('md-chip-set')\n], MdChipSet);\n//# sourceMappingURL=chip-set.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/elevated-styles.css.\nimport { css } from 'lit';\nexport const styles = css `.elevated{--md-elevation-level: var(--_elevated-container-elevation);--md-elevation-shadow-color: var(--_elevated-container-shadow-color)}.elevated::before{background:var(--_elevated-container-color)}.elevated:hover{--md-elevation-level: var(--_elevated-hover-container-elevation)}.elevated:focus-within{--md-elevation-level: var(--_elevated-focus-container-elevation)}.elevated:active{--md-elevation-level: var(--_elevated-pressed-container-elevation)}.elevated.disabled{--md-elevation-level: var(--_elevated-disabled-container-elevation)}.elevated.disabled::before{background:var(--_elevated-disabled-container-color);opacity:var(--_elevated-disabled-container-opacity)}@media(forced-colors: active){.elevated md-elevation{border:1px solid CanvasText}.elevated.disabled md-elevation{border-color:GrayText}}\n`;\n//# sourceMappingURL=elevated-styles.js.map","/**\n * @license\n * Copyright 2022 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { html, LitElement } from 'lit';\n/**\n * A component for elevation.\n */\nexport class Elevation extends LitElement {\n connectedCallback() {\n super.connectedCallback();\n // Needed for VoiceOver, which will create a \"group\" if the element is a\n // sibling to other content.\n this.setAttribute('aria-hidden', 'true');\n }\n render() {\n return html `<span class=\"shadow\"></span>`;\n }\n}\n//# sourceMappingURL=elevation.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./elevation/internal/elevation-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host,.shadow,.shadow::before,.shadow::after{border-radius:inherit;inset:0;position:absolute;transition-duration:inherit;transition-property:inherit;transition-timing-function:inherit}:host{display:flex;pointer-events:none;transition-property:box-shadow,opacity}.shadow::before,.shadow::after{content:\"\";transition-property:box-shadow,opacity;--_level: var(--md-elevation-level, 0);--_shadow-color: var(--md-elevation-shadow-color, var(--md-sys-color-shadow, #000))}.shadow::before{box-shadow:0px calc(1px*(clamp(0,var(--_level),1) + clamp(0,var(--_level) - 3,1) + 2*clamp(0,var(--_level) - 4,1))) calc(1px*(2*clamp(0,var(--_level),1) + clamp(0,var(--_level) - 2,1) + clamp(0,var(--_level) - 4,1))) 0px var(--_shadow-color);opacity:.3}.shadow::after{box-shadow:0px calc(1px*(clamp(0,var(--_level),1) + clamp(0,var(--_level) - 1,1) + 2*clamp(0,var(--_level) - 2,3))) calc(1px*(3*clamp(0,var(--_level),2) + 2*clamp(0,var(--_level) - 2,3))) calc(1px*(clamp(0,var(--_level),4) + 2*clamp(0,var(--_level) - 4,1))) var(--_shadow-color);opacity:.15}\n`;\n//# sourceMappingURL=elevation-styles.js.map","/**\n * @license\n * Copyright 2022 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { customElement } from 'lit/decorators.js';\nimport { Elevation } from './internal/elevation.js';\nimport { styles } from './internal/elevation-styles.js';\n/**\n * The `<md-elevation>` custom element with default styles.\n *\n * Elevation is the relative distance between two surfaces along the z-axis.\n *\n * @final\n * @suppress {visibility}\n */\nexport let MdElevation = class MdElevation extends Elevation {\n};\nMdElevation.styles = [styles];\nMdElevation = __decorate([\n customElement('md-elevation')\n], MdElevation);\n//# sourceMappingURL=elevation.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { html, isServer } from 'lit';\nimport { Chip } from './chip.js';\nconst ARIA_LABEL_REMOVE = 'aria-label-remove';\n/**\n * A chip component with multiple actions.\n */\nexport class MultiActionChip extends Chip {\n get ariaLabelRemove() {\n if (this.hasAttribute(ARIA_LABEL_REMOVE)) {\n return this.getAttribute(ARIA_LABEL_REMOVE);\n }\n const { ariaLabel } = this;\n // TODO(b/350810013): remove `this.label` when label property is removed.\n if (ariaLabel || this.label) {\n return `Remove ${ariaLabel || this.label}`;\n }\n return null;\n }\n set ariaLabelRemove(ariaLabel) {\n const prev = this.ariaLabelRemove;\n if (ariaLabel === prev) {\n return;\n }\n if (ariaLabel === null) {\n this.removeAttribute(ARIA_LABEL_REMOVE);\n }\n else {\n this.setAttribute(ARIA_LABEL_REMOVE, ariaLabel);\n }\n this.requestUpdate();\n }\n constructor() {\n super();\n this.handleTrailingActionFocus = this.handleTrailingActionFocus.bind(this);\n if (!isServer) {\n this.addEventListener('keydown', this.handleKeyDown.bind(this));\n }\n }\n focus(options) {\n const isFocusable = this.alwaysFocusable || !this.disabled;\n if (isFocusable && options?.trailing && this.trailingAction) {\n this.trailingAction.focus(options);\n return;\n }\n super.focus(options);\n }\n renderContainerContent() {\n return html `\n ${super.renderContainerContent()}\n ${this.renderTrailingAction(this.handleTrailingActionFocus)}\n `;\n }\n handleKeyDown(event) {\n const isLeft = event.key === 'ArrowLeft';\n const isRight = event.key === 'ArrowRight';\n // Ignore non-navigation keys.\n if (!isLeft && !isRight) {\n return;\n }\n if (!this.primaryAction || !this.trailingAction) {\n // Does not have multiple actions.\n return;\n }\n // Check if moving forwards or backwards\n const isRtl = getComputedStyle(this).direction === 'rtl';\n const forwards = isRtl ? isLeft : isRight;\n const isPrimaryFocused = this.primaryAction?.matches(':focus-within');\n const isTrailingFocused = this.trailingAction?.matches(':focus-within');\n if ((forwards && isTrailingFocused) || (!forwards && isPrimaryFocused)) {\n // Moving outside of the chip, it will be handled by the chip set.\n return;\n }\n // Prevent default interactions, such as scrolling.\n event.preventDefault();\n // Don't let the chip set handle this navigation event.\n event.stopPropagation();\n const actionToFocus = forwards ? this.trailingAction : this.primaryAction;\n actionToFocus.focus();\n }\n handleTrailingActionFocus() {\n const { primaryAction, trailingAction } = this;\n if (!primaryAction || !trailingAction) {\n return;\n }\n // Temporarily turn off the primary action's focusability. This allows\n // shift+tab from the trailing action to move to the previous chip rather\n // than the primary action in the same chip.\n primaryAction.tabIndex = -1;\n trailingAction.addEventListener('focusout', () => {\n primaryAction.tabIndex = 0;\n }, { once: true });\n }\n}\n//# sourceMappingURL=multi-action-chip.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport '../../focus/md-focus-ring.js';\nimport '../../ripple/ripple.js';\nimport { html, nothing } from 'lit';\n/** @protected */\nexport function renderRemoveButton({ ariaLabel, disabled, focusListener, tabbable = false, }) {\n // When an aria-label is not provided, we use two spans with aria-labelledby\n // to create the \"Remove <textContent>\" label for the remove button. The first\n // is this #remove-label span, the second is the chip's #label slot span.\n return html `\n <span id=\"remove-label\" hidden aria-hidden=\"true\">Remove</span>\n <button\n class=\"trailing action\"\n aria-label=${ariaLabel || nothing}\n aria-labelledby=${!ariaLabel ? 'remove-label label' : nothing}\n tabindex=${!tabbable ? -1 : nothing}\n @click=${handleRemoveClick}\n @focus=${focusListener}>\n <md-focus-ring part=\"trailing-focus-ring\"></md-focus-ring>\n <md-ripple ?disabled=${disabled}></md-ripple>\n <span class=\"trailing icon\" aria-hidden=\"true\">\n <slot name=\"remove-trailing-icon\">\n <svg viewBox=\"0 96 960 960\">\n <path\n d=\"m249 849-42-42 231-231-231-231 42-42 231 231 231-231 42 42-231 231 231 231-42 42-231-231-231 231Z\" />\n </svg>\n </slot>\n </span>\n <span class=\"touch\"></span>\n </button>\n `;\n}\nfunction handleRemoveClick(event) {\n if (this.disabled || this.softDisabled) {\n return;\n }\n event.stopPropagation();\n const preventDefault = !this.dispatchEvent(new Event('remove', { cancelable: true }));\n if (preventDefault) {\n return;\n }\n this.remove();\n}\n//# sourceMappingURL=trailing-icons.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport '../../elevation/elevation.js';\nimport { html, nothing } from 'lit';\nimport { property, query } from 'lit/decorators.js';\nimport { redispatchEvent } from '../../internal/events/redispatch-event.js';\nimport { MultiActionChip } from './multi-action-chip.js';\nimport { renderRemoveButton } from './trailing-icons.js';\n/**\n * A filter chip component.\n *\n * @fires remove {Event} Dispatched when the remove button is clicked.\n */\nexport class FilterChip extends MultiActionChip {\n constructor() {\n super(...arguments);\n this.elevated = false;\n this.removable = false;\n this.selected = false;\n /**\n * Only needed for SSR.\n *\n * Add this attribute when a filter chip has a `slot=\"selected-icon\"` to avoid\n * a Flash Of Unstyled Content.\n */\n this.hasSelectedIcon = false;\n }\n get primaryId() {\n return 'button';\n }\n getContainerClasses() {\n return {\n ...super.getContainerClasses(),\n elevated: this.elevated,\n selected: this.selected,\n 'has-trailing': this.removable,\n 'has-icon': this.hasIcon || this.selected,\n };\n }\n renderPrimaryAction(content) {\n const { ariaLabel } = this;\n return html `\n <button\n class=\"primary action\"\n id=\"button\"\n aria-label=${ariaLabel || nothing}\n aria-pressed=${this.selected}\n aria-disabled=${this.softDisabled || nothing}\n ?disabled=${this.disabled && !this.alwaysFocusable}\n @click=${this.handleClickOnChild}\n >${content}</button\n >\n `;\n }\n renderLeadingIcon() {\n if (!this.selected) {\n return super.renderLeadingIcon();\n }\n return html `\n <slot name=\"selected-icon\">\n <svg class=\"checkmark\" viewBox=\"0 0 18 18\" aria-hidden=\"true\">\n <path\n d=\"M6.75012 12.1274L3.62262 8.99988L2.55762 10.0574L6.75012 14.2499L15.7501 5.24988L14.6926 4.19238L6.75012 12.1274Z\" />\n </svg>\n </slot>\n `;\n }\n renderTrailingAction(focusListener) {\n if (this.removable) {\n return renderRemoveButton({\n focusListener,\n ariaLabel: this.ariaLabelRemove,\n disabled: this.disabled || this.softDisabled,\n });\n }\n return nothing;\n }\n renderOutline() {\n if (this.elevated) {\n return html `<md-elevation part=\"elevation\"></md-elevation>`;\n }\n return super.renderOutline();\n }\n handleClickOnChild(event) {\n if (this.disabled || this.softDisabled) {\n return;\n }\n // Store prevValue to revert in case `chip.selected` is changed during an\n // event listener.\n const prevValue = this.selected;\n this.selected = !this.selected;\n const preventDefault = !redispatchEvent(this, event);\n if (preventDefault) {\n // We should not do `this.selected = !this.selected`, since a client\n // click listener could change its value. Instead, always revert to the\n // original value.\n this.selected = prevValue;\n return;\n }\n }\n}\n__decorate([\n property({ type: Boolean })\n], FilterChip.prototype, \"elevated\", void 0);\n__decorate([\n property({ type: Boolean })\n], FilterChip.prototype, \"removable\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true })\n], FilterChip.prototype, \"selected\", void 0);\n__decorate([\n property({ type: Boolean, reflect: true, attribute: 'has-selected-icon' })\n], FilterChip.prototype, \"hasSelectedIcon\", void 0);\n__decorate([\n query('.primary.action')\n], FilterChip.prototype, \"primaryAction\", void 0);\n__decorate([\n query('.trailing.action')\n], FilterChip.prototype, \"trailingAction\", void 0);\n//# sourceMappingURL=filter-chip.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/filter-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host{--_container-height: var(--md-filter-chip-container-height, 32px);--_disabled-label-text-color: var(--md-filter-chip-disabled-label-text-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-label-text-opacity: var(--md-filter-chip-disabled-label-text-opacity, 0.38);--_elevated-container-elevation: var(--md-filter-chip-elevated-container-elevation, 1);--_elevated-container-shadow-color: var(--md-filter-chip-elevated-container-shadow-color, var(--md-sys-color-shadow, #000));--_elevated-disabled-container-color: var(--md-filter-chip-elevated-disabled-container-color, var(--md-sys-color-on-surface, #1d1b20));--_elevated-disabled-container-elevation: var(--md-filter-chip-elevated-disabled-container-elevation, 0);--_elevated-disabled-container-opacity: var(--md-filter-chip-elevated-disabled-container-opacity, 0.12);--_elevated-focus-container-elevation: var(--md-filter-chip-elevated-focus-container-elevation, 1);--_elevated-hover-container-elevation: var(--md-filter-chip-elevated-hover-container-elevation, 2);--_elevated-pressed-container-elevation: var(--md-filter-chip-elevated-pressed-container-elevation, 1);--_elevated-selected-container-color: var(--md-filter-chip-elevated-selected-container-color, var(--md-sys-color-secondary-container, #e8def8));--_label-text-font: var(--md-filter-chip-label-text-font, var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, Roboto)));--_label-text-line-height: var(--md-filter-chip-label-text-line-height, var(--md-sys-typescale-label-large-line-height, 1.25rem));--_label-text-size: var(--md-filter-chip-label-text-size, var(--md-sys-typescale-label-large-size, 0.875rem));--_label-text-weight: var(--md-filter-chip-label-text-weight, var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500)));--_selected-focus-label-text-color: var(--md-filter-chip-selected-focus-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-label-text-color: var(--md-filter-chip-selected-hover-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-state-layer-color: var(--md-filter-chip-selected-hover-state-layer-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-state-layer-opacity: var(--md-filter-chip-selected-hover-state-layer-opacity, 0.08);--_selected-label-text-color: var(--md-filter-chip-selected-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-label-text-color: var(--md-filter-chip-selected-pressed-label-text-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-state-layer-color: var(--md-filter-chip-selected-pressed-state-layer-color, var(--md-sys-color-on-surface-variant, #49454f));--_selected-pressed-state-layer-opacity: var(--md-filter-chip-selected-pressed-state-layer-opacity, 0.12);--_elevated-container-color: var(--md-filter-chip-elevated-container-color, var(--md-sys-color-surface-container-low, #f7f2fa));--_disabled-outline-color: var(--md-filter-chip-disabled-outline-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-outline-opacity: var(--md-filter-chip-disabled-outline-opacity, 0.12);--_disabled-selected-container-color: var(--md-filter-chip-disabled-selected-container-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-selected-container-opacity: var(--md-filter-chip-disabled-selected-container-opacity, 0.12);--_focus-outline-color: var(--md-filter-chip-focus-outline-color, var(--md-sys-color-on-surface-variant, #49454f));--_outline-color: var(--md-filter-chip-outline-color, var(--md-sys-color-outline, #79747e));--_outline-width: var(--md-filter-chip-outline-width, 1px);--_selected-container-color: var(--md-filter-chip-selected-container-color, var(--md-sys-color-secondary-container, #e8def8));--_selected-outline-width: var(--md-filter-chip-selected-outline-width, 0px);--_focus-label-text-color: var(--md-filter-chip-focus-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-label-text-color: var(--md-filter-chip-hover-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-state-layer-color: var(--md-filter-chip-hover-state-layer-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-state-layer-opacity: var(--md-filter-chip-hover-state-layer-opacity, 0.08);--_label-text-color: var(--md-filter-chip-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-label-text-color: var(--md-filter-chip-pressed-label-text-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-state-layer-color: var(--md-filter-chip-pressed-state-layer-color, var(--md-sys-color-on-secondary-container, #1d192b));--_pressed-state-layer-opacity: var(--md-filter-chip-pressed-state-layer-opacity, 0.12);--_icon-size: var(--md-filter-chip-icon-size, 18px);--_disabled-leading-icon-color: var(--md-filter-chip-disabled-leading-icon-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-leading-icon-opacity: var(--md-filter-chip-disabled-leading-icon-opacity, 0.38);--_selected-focus-leading-icon-color: var(--md-filter-chip-selected-focus-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-leading-icon-color: var(--md-filter-chip-selected-hover-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-leading-icon-color: var(--md-filter-chip-selected-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-leading-icon-color: var(--md-filter-chip-selected-pressed-leading-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_focus-leading-icon-color: var(--md-filter-chip-focus-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_hover-leading-icon-color: var(--md-filter-chip-hover-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_leading-icon-color: var(--md-filter-chip-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_pressed-leading-icon-color: var(--md-filter-chip-pressed-leading-icon-color, var(--md-sys-color-primary, #6750a4));--_disabled-trailing-icon-color: var(--md-filter-chip-disabled-trailing-icon-color, var(--md-sys-color-on-surface, #1d1b20));--_disabled-trailing-icon-opacity: var(--md-filter-chip-disabled-trailing-icon-opacity, 0.38);--_selected-focus-trailing-icon-color: var(--md-filter-chip-selected-focus-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-hover-trailing-icon-color: var(--md-filter-chip-selected-hover-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-pressed-trailing-icon-color: var(--md-filter-chip-selected-pressed-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_selected-trailing-icon-color: var(--md-filter-chip-selected-trailing-icon-color, var(--md-sys-color-on-secondary-container, #1d192b));--_focus-trailing-icon-color: var(--md-filter-chip-focus-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_hover-trailing-icon-color: var(--md-filter-chip-hover-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_pressed-trailing-icon-color: var(--md-filter-chip-pressed-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_trailing-icon-color: var(--md-filter-chip-trailing-icon-color, var(--md-sys-color-on-surface-variant, #49454f));--_container-shape-start-start: var(--md-filter-chip-container-shape-start-start, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-start-end: var(--md-filter-chip-container-shape-start-end, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-end-end: var(--md-filter-chip-container-shape-end-end, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_container-shape-end-start: var(--md-filter-chip-container-shape-end-start, var(--md-filter-chip-container-shape, var(--md-sys-shape-corner-small, 8px)));--_leading-space: var(--md-filter-chip-leading-space, 16px);--_trailing-space: var(--md-filter-chip-trailing-space, 16px);--_icon-label-space: var(--md-filter-chip-icon-label-space, 8px);--_with-leading-icon-leading-space: var(--md-filter-chip-with-leading-icon-leading-space, 8px);--_with-trailing-icon-trailing-space: var(--md-filter-chip-with-trailing-icon-trailing-space, 8px)}.selected.elevated::before{background:var(--_elevated-selected-container-color)}.checkmark{height:var(--_icon-size);width:var(--_icon-size)}.disabled .checkmark{opacity:var(--_disabled-leading-icon-opacity)}@media(forced-colors: active){.disabled .checkmark{opacity:1}}\n`;\n//# sourceMappingURL=filter-styles.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/selectable-styles.css.\nimport { css } from 'lit';\nexport const styles = css `.selected{--md-ripple-hover-color: var(--_selected-hover-state-layer-color);--md-ripple-hover-opacity: var(--_selected-hover-state-layer-opacity);--md-ripple-pressed-color: var(--_selected-pressed-state-layer-color);--md-ripple-pressed-opacity: var(--_selected-pressed-state-layer-opacity)}:where(.selected)::before{background:var(--_selected-container-color)}:where(.selected) .outline{border-width:var(--_selected-outline-width)}:where(.selected.disabled)::before{background:var(--_disabled-selected-container-color);opacity:var(--_disabled-selected-container-opacity)}:where(.selected) .label{color:var(--_selected-label-text-color)}:where(.selected:hover) .label{color:var(--_selected-hover-label-text-color)}:where(.selected:focus) .label{color:var(--_selected-focus-label-text-color)}:where(.selected:active) .label{color:var(--_selected-pressed-label-text-color)}:where(.selected) .leading.icon{color:var(--_selected-leading-icon-color)}:where(.selected:hover) .leading.icon{color:var(--_selected-hover-leading-icon-color)}:where(.selected:focus) .leading.icon{color:var(--_selected-focus-leading-icon-color)}:where(.selected:active) .leading.icon{color:var(--_selected-pressed-leading-icon-color)}@media(forced-colors: active){:where(.selected:not(.elevated))::before{border:1px solid CanvasText}:where(.selected) .outline{border-width:1px}}\n`;\n//# sourceMappingURL=selectable-styles.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/shared-styles.css.\nimport { css } from 'lit';\nexport const styles = css `:host{border-start-start-radius:var(--_container-shape-start-start);border-start-end-radius:var(--_container-shape-start-end);border-end-start-radius:var(--_container-shape-end-start);border-end-end-radius:var(--_container-shape-end-end);display:inline-flex;height:var(--_container-height);cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);--md-ripple-hover-color: var(--_hover-state-layer-color);--md-ripple-hover-opacity: var(--_hover-state-layer-opacity);--md-ripple-pressed-color: var(--_pressed-state-layer-color);--md-ripple-pressed-opacity: var(--_pressed-state-layer-opacity)}:host(:is([disabled],[soft-disabled])){pointer-events:none}:host([touch-target=wrapper]){margin:max(0px,(48px - var(--_container-height))/2) 0}md-focus-ring{--md-focus-ring-shape-start-start: var(--_container-shape-start-start);--md-focus-ring-shape-start-end: var(--_container-shape-start-end);--md-focus-ring-shape-end-end: var(--_container-shape-end-end);--md-focus-ring-shape-end-start: var(--_container-shape-end-start)}.container{border-radius:inherit;box-sizing:border-box;display:flex;height:100%;position:relative;width:100%}.container::before{border-radius:inherit;content:\"\";inset:0;pointer-events:none;position:absolute}.container:not(.disabled){cursor:pointer}.container.disabled{pointer-events:none}.cell{display:flex}.action{align-items:baseline;appearance:none;background:none;border:none;border-radius:inherit;display:flex;outline:none;padding:0;position:relative;text-decoration:none}.primary.action{min-width:0;padding-inline-start:var(--_leading-space);padding-inline-end:var(--_trailing-space)}.has-icon .primary.action{padding-inline-start:var(--_with-leading-icon-leading-space)}.touch{height:48px;inset:50% 0 0;position:absolute;transform:translateY(-50%);width:100%}:host([touch-target=none]) .touch{display:none}.outline{border:var(--_outline-width) solid var(--_outline-color);border-radius:inherit;inset:0;pointer-events:none;position:absolute}:where(:focus) .outline{border-color:var(--_focus-outline-color)}:where(.disabled) .outline{border-color:var(--_disabled-outline-color);opacity:var(--_disabled-outline-opacity)}md-ripple{border-radius:inherit}.label,.icon,.touch{z-index:1}.label{align-items:center;color:var(--_label-text-color);display:flex;font-family:var(--_label-text-font);font-size:var(--_label-text-size);font-weight:var(--_label-text-weight);height:100%;line-height:var(--_label-text-line-height);overflow:hidden;user-select:none}.label-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:where(:hover) .label{color:var(--_hover-label-text-color)}:where(:focus) .label{color:var(--_focus-label-text-color)}:where(:active) .label{color:var(--_pressed-label-text-color)}:where(.disabled) .label{color:var(--_disabled-label-text-color);opacity:var(--_disabled-label-text-opacity)}.icon{align-self:center;display:flex;fill:currentColor;position:relative}.icon ::slotted(:first-child){font-size:var(--_icon-size);height:var(--_icon-size);width:var(--_icon-size)}.leading.icon{color:var(--_leading-icon-color)}.leading.icon ::slotted(*),.leading.icon svg{margin-inline-end:var(--_icon-label-space)}:where(:hover) .leading.icon{color:var(--_hover-leading-icon-color)}:where(:focus) .leading.icon{color:var(--_focus-leading-icon-color)}:where(:active) .leading.icon{color:var(--_pressed-leading-icon-color)}:where(.disabled) .leading.icon{color:var(--_disabled-leading-icon-color);opacity:var(--_disabled-leading-icon-opacity)}@media(forced-colors: active){:where(.disabled) :is(.label,.outline,.leading.icon){color:GrayText;opacity:1}}a,button{text-transform:inherit}a,button:not(:disabled,[aria-disabled=true]){cursor:inherit}\n`;\n//# sourceMappingURL=shared-styles.js.map","/**\n * @license\n * Copyright 2024 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\n// Generated stylesheet for ./chips/internal/trailing-icon-styles.css.\nimport { css } from 'lit';\nexport const styles = css `.trailing.action{align-items:center;justify-content:center;padding-inline-start:var(--_icon-label-space);padding-inline-end:var(--_with-trailing-icon-trailing-space)}.trailing.action :is(md-ripple,md-focus-ring){border-radius:50%;height:calc(1.3333333333*var(--_icon-size));width:calc(1.3333333333*var(--_icon-size))}.trailing.action md-focus-ring{inset:unset}.has-trailing .primary.action{padding-inline-end:0}.trailing.icon{color:var(--_trailing-icon-color);height:var(--_icon-size);width:var(--_icon-size)}:where(:hover) .trailing.icon{color:var(--_hover-trailing-icon-color)}:where(:focus) .trailing.icon{color:var(--_focus-trailing-icon-color)}:where(:active) .trailing.icon{color:var(--_pressed-trailing-icon-color)}:where(.disabled) .trailing.icon{color:var(--_disabled-trailing-icon-color);opacity:var(--_disabled-trailing-icon-opacity)}:where(.selected) .trailing.icon{color:var(--_selected-trailing-icon-color)}:where(.selected:hover) .trailing.icon{color:var(--_selected-hover-trailing-icon-color)}:where(.selected:focus) .trailing.icon{color:var(--_selected-focus-trailing-icon-color)}:where(.selected:active) .trailing.icon{color:var(--_selected-pressed-trailing-icon-color)}@media(forced-colors: active){.trailing.icon{color:ButtonText}:where(.disabled) .trailing.icon{color:GrayText;opacity:1}}\n`;\n//# sourceMappingURL=trailing-icon-styles.js.map","/**\n * @license\n * Copyright 2023 Google LLC\n * SPDX-License-Identifier: Apache-2.0\n */\nimport { __decorate } from \"tslib\";\nimport { customElement } from 'lit/decorators.js';\nimport { styles as elevatedStyles } from './internal/elevated-styles.js';\nimport { FilterChip } from './internal/filter-chip.js';\nimport { styles } from './internal/filter-styles.js';\nimport { styles as selectableStyles } from './internal/selectable-styles.js';\nimport { styles as sharedStyles } from './internal/shared-styles.js';\nimport { styles as trailingIconStyles } from './internal/trailing-icon-styles.js';\n/**\n * TODO(b/243982145): add docs\n *\n * @final\n * @suppress {visibility}\n */\nexport let MdFilterChip = class MdFilterChip extends FilterChip {\n};\nMdFilterChip.styles = [\n sharedStyles,\n elevatedStyles,\n trailingIconStyles,\n selectableStyles,\n styles,\n];\nMdFilterChip = __decorate([\n customElement('md-filter-chip')\n], MdFilterChip);\n//# sourceMappingURL=filter-chip.js.map","import '@material/web/chips/chip-set.js'\nimport '@material/web/chips/filter-chip.js'\nimport { $LitElement } from '@mixins/index'\nimport { html, LitElement } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\n@customElement('schmancy-chip')\nexport default class SchmancyChip extends $LitElement() {\n\t// Removed unused query for md-chip-set\n\n\t@property({ type: String, reflect: true })\n\tlabel: string = ''\n\n\t@property({ type: String, reflect: true })\n\tvalue: string = ''\n\n\t@property({ type: Boolean, reflect: true })\n\tselected: boolean = false\n\n\t@property({ type: String, reflect: true })\n\ticon: string = ''\n\n\t@property({ type: Boolean, reflect: true })\n\treadOnly: boolean = false\n\n\t@property({ type: Boolean, reflect: true })\n\tdisabled: boolean = false\n\tconstructor() {\n\t\tsuper()\n\t\ttry {\n\t\t\tthis.internals = this.attachInternals()\n\t\t} catch {\n\t\t\tthis.internals = undefined\n\t\t}\n\t}\n\n\tprotected static shadowRootOptions = {\n\t\t...LitElement.shadowRootOptions,\n\t\tdelegatesFocus: true,\n\t}\n\n\tstatic formAssociated = true\n\tinternals: ElementInternals | undefined\n\tget form() {\n\t\treturn this.internals?.form\n\t}\n\n\tprotected render(): unknown {\n\t\treturn html`\n\t\t\t<md-filter-chip\n\t\t\t\t.disabled=${this.disabled}\n\t\t\t\tlabel=\"${this.label}\"\n\t\t\t\t@click=${(e: Event) => {\n\t\t\t\t\tif (this.readOnly) {\n\t\t\t\t\t\te.preventDefault()\n\t\t\t\t\t\te.stopPropagation()\n\t\t\t\t\t\treturn\n\t\t\t\t\t}\n\t\t\t\t\t// Toggle selection and dispatch a change event\n\t\t\t\t\tthis.selected = !this.selected\n\t\t\t\t\tthis.dispatchEvent(\n\t\t\t\t\t\tnew CustomEvent<SchmancyChipChangeEvent>('change', {\n\t\t\t\t\t\t\tdetail: { value: this.value, selected: this.selected },\n\t\t\t\t\t\t\tbubbles: true,\n\t\t\t\t\t\t}),\n\t\t\t\t\t)\n\t\t\t\t}}\n\t\t\t\t?selected=${this.selected}\n\t\t\t>\n\t\t\t\t${this.icon}\n\t\t\t</md-filter-chip>\n\t\t`\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t'schmancy-chip': SchmancyChip\n\t}\n}\n\nexport type SchmancyChipChangeEvent = { value: string; selected: boolean }\n","import '@material/web/chips/chip-set.js'\nimport '@material/web/chips/filter-chip.js'\nimport { ChipSet } from '@material/web/chips/internal/chip-set'\nimport { $LitElement } from '@mixins/index'\nimport { css, html, PropertyValues } from 'lit'\nimport { customElement, property, query, queryAssignedElements } from 'lit/decorators.js'\nimport SchmancyChip, { SchmancyChipChangeEvent } from './chip'\n@customElement('schmancy-chips')\nexport default class SchmancyChips extends $LitElement(css``) {\n\t@query('md-chip-set') chipSet!: ChipSet\n\n\t@property({\n\t\ttype: Boolean,\n\t\treflect: true,\n\t})\n\tmulti = false\n\n\t@property({\n\t\ttype: Array,\n\t\treflect: true,\n\t})\n\tvalues: string[] = []\n\n\t@property({\n\t\ttype: String,\n\t\treflect: true,\n\t})\n\tvalue: string = ''\n\n\t@queryAssignedElements({\n\t\tselector: 'schmancy-chip',\n\t\tflatten: true,\n\t})\n\tchips!: SchmancyChip[]\n\n\tasync change(e: CustomEvent<SchmancyChipChangeEvent>) {\n\t\te.preventDefault()\n\t\te.stopPropagation()\n\t\tconst { value, selected } = e.detail\n\t\tif (this.multi) {\n\t\t\tif (selected) {\n\t\t\t\tthis.values = [...this.values, value]\n\t\t\t\t// find the chip that was selected\n\t\t\t\tconst chip = this.chips.find(c => c.value === value)\n\t\t\t\t// if it exists, select it\n\t\t\t\tif (chip) chip.selected = true\n\t\t\t} else {\n\t\t\t\tthis.values = this.values.filter(v => v !== value)\n\t\t\t\t// find the chip that was deselected\n\t\t\t\tconst chip = this.chips.find(c => c.value === value)\n\t\t\t\t// if it exists, deselect it\n\t\t\t\tif (chip) chip.selected = false\n\t\t\t}\n\t\t\tthis.requestUpdate()\n\t\t} else {\n\t\t\tconst { value, selected } = e.detail\n\t\t\tthis.value = selected ? value : ''\n\t\t\tconst chip = this.chips.find(c => c.value === value)\n\t\t\tif (selected) chip.selected = selected\n\t\t\telse chip.selected = false\n\t\t\t// deselect all other chips\n\t\t\tthis.chips.forEach(c => {\n\t\t\t\tif (this.value && this.value === c.value) c.selected = true\n\t\t\t\telse c.selected = false\n\t\t\t})\n\t\t\tthis.requestUpdate()\n\t\t}\n\t\tthis.dispatchEvent(\n\t\t\tnew CustomEvent<SchmancyChipsChangeEvent>('change', {\n\t\t\t\tdetail: this.multi ? this.values : this.value,\n\t\t\t\tbubbles: true,\n\t\t\t}),\n\t\t)\n\t}\n\n\tprotected firstUpdated(_changedProperties: PropertyValues): void {\n\t\tsuper.firstUpdated(_changedProperties)\n\t\tthis.hydrateTabs()\n\t}\n\n\t// attribute changes\n\t// when values change, update the selected chips\n\tattributeChangedCallback(name: string, old: string, value: string): void {\n\t\tsuper.attributeChangedCallback(name, old, value)\n\t\tif (name === 'values') {\n\t\t\tthis.hydrateTabs()\n\t\t} else if (name === 'value') {\n\t\t\tthis.hydrateTabs()\n\t\t}\n\t}\n\n\thydrateTabs() {\n\t\tthis.chips.forEach(chip => {\n\t\t\tif (this.multi) {\n\t\t\t\tif (this.values.includes(chip.value)) chip.selected = true\n\t\t\t\telse chip.selected = false\n\t\t\t} else {\n\t\t\t\tif (this.value === chip.value) chip.selected = true\n\t\t\t\telse chip.selected = false\n\t\t\t}\n\t\t})\n\t}\n\n\tprotected render(): unknown {\n\t\treturn html` <md-chip-set @change=${this.change}>\n\t\t\t<slot @slotchange=${() => this.hydrateTabs()}></slot>\n\t\t</md-chip-set>`\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t'schmancy-chips': SchmancyChips\n\t}\n}\nexport type SchmancyChipsChangeEvent = string | Array<string>\n"],"names":["chipBaseClass","mixinDelegatesAria","LitElement","Chip","this","disabled","softDisabled","super","alwaysFocusable","label","hasIcon","isServer","addEventListener","handleClick","bind","options","focus","html","classMap","getContainerClasses","renderContainerContent","changed","has","get","dispatchEvent","Event","bubbles","renderOutline","primaryId","rippleDisabled","renderPrimaryAction","renderPrimaryContent","handleIconChange","renderLeadingIcon","event","slot","target","assignedElements","flatten","length","stopImmediatePropagation","preventDefault","shadowRootOptions","delegatesFocus","__decorate","property","type","Boolean","reflect","prototype","attribute","undefined","ChipSet","childElements","filter","child","internals","attachInternals","updateTabIndices","handleKeyDown","role","isLeft","key","isRight","isHome","isEnd","chips","trailing","forwards","getComputedStyle","direction","focusedChip","find","chip","matches","currentIndex","indexOf","nextIndex","nextChip","chipToFocus","isChipFocusable","tabIndex","queryAssignedElements","styles","css","MdChipSet","customElement","Elevation","connectedCallback","setAttribute","render","MdElevation","ARIA_LABEL_REMOVE","MultiActionChip","ariaLabelRemove","hasAttribute","getAttribute","ariaLabel","removeAttribute","requestUpdate","constructor","handleTrailingActionFocus","trailingAction","renderTrailingAction","primaryAction","isPrimaryFocused","isTrailingFocused","stopPropagation","once","renderRemoveButton","focusListener","tabbable","nothing","handleRemoveClick","cancelable","remove","FilterChip","arguments","elevated","removable","selected","hasSelectedIcon","content","handleClickOnChild","prevValue","redispatchEvent","query","MdFilterChip","sharedStyles","elevatedStyles","trailingIconStyles","selectableStyles","SchmancyChip","$LitElement","value","icon","readOnly","form","e","CustomEvent","detail","formAssociated","__decorateClass","String","SchmancyChips","multi","values","c","v","forEach","_changedProperties","firstUpdated","hydrateTabs","name","old","attributeChangedCallback","includes","change","Array","selector"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]}
|