@mhmo91/schmancy 0.2.103 → 0.2.104

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.
@@ -1 +1 @@
1
- {"version":3,"file":"chips-BFv-U4jV.cjs","sources":["../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/chip.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/chip-set.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/chip-set-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/chip-set.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/elevated-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/elevation/internal/elevation.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/elevation/internal/elevation-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/elevation/elevation.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/multi-action-chip.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/trailing-icons.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/filter-chip.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/filter-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/selectable-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/shared-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/trailing-icon-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/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","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]}
1
+ {"version":3,"file":"chips-oAoJx3xK.cjs","sources":["../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/chip.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/chip-set.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/chip-set-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/chip-set.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/elevated-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/elevation/internal/elevation.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/elevation/internal/elevation-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/elevation/elevation.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/multi-action-chip.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/trailing-icons.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/filter-chip.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/filter-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/selectable-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/shared-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/node_modules/@material/web/chips/internal/trailing-icon-styles.js","../../../../.yarn/berry/cache/@material-web-npm-2.2.0-6c67e37c0d-10c0.zip/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\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","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","e","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]}
package/dist/chips.cjs CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";require("./chips-BFv-U4jV.cjs");
1
+ "use strict";require("./chips-oAoJx3xK.cjs");
2
2
  //# sourceMappingURL=chips.cjs.map
package/dist/chips.js CHANGED
@@ -1,2 +1,2 @@
1
- import "./chips-Dgp6TkFj.js";
1
+ import "./chips-BRgVxSAK.js";
2
2
  //# sourceMappingURL=chips.js.map
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./teleport.component-nl0mT31B.cjs");Object.defineProperty(exports,"SchmancyContentDrawer",{enumerable:!0,get:()=>e.SchmancyContentDrawer}),exports.SchmancyContentDrawerID=e.SchmancyContentDrawerID,Object.defineProperty(exports,"SchmancyContentDrawerMain",{enumerable:!0,get:()=>e.SchmancyContentDrawerMain}),exports.SchmancyContentDrawerMaxHeight=e.SchmancyContentDrawerMaxHeight,exports.SchmancyContentDrawerMinWidth=e.SchmancyContentDrawerMinWidth,Object.defineProperty(exports,"SchmancyContentDrawerSheet",{enumerable:!0,get:()=>e.SchmancyContentDrawerSheet}),exports.SchmancyContentDrawerSheetMode=e.SchmancyContentDrawerSheetMode,exports.SchmancyContentDrawerSheetState=e.SchmancyContentDrawerSheetState,exports.schmancyContentDrawer=e.schmancyContentDrawer;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./teleport.component-DL_aASxo.cjs");Object.defineProperty(exports,"SchmancyContentDrawer",{enumerable:!0,get:()=>e.SchmancyContentDrawer}),exports.SchmancyContentDrawerID=e.SchmancyContentDrawerID,Object.defineProperty(exports,"SchmancyContentDrawerMain",{enumerable:!0,get:()=>e.SchmancyContentDrawerMain}),exports.SchmancyContentDrawerMaxHeight=e.SchmancyContentDrawerMaxHeight,exports.SchmancyContentDrawerMinWidth=e.SchmancyContentDrawerMinWidth,Object.defineProperty(exports,"SchmancyContentDrawerSheet",{enumerable:!0,get:()=>e.SchmancyContentDrawerSheet}),exports.SchmancyContentDrawerSheetMode=e.SchmancyContentDrawerSheetMode,exports.SchmancyContentDrawerSheetState=e.SchmancyContentDrawerSheetState,exports.schmancyContentDrawer=e.schmancyContentDrawer;
2
2
  //# sourceMappingURL=content-drawer.cjs.map
@@ -1,4 +1,4 @@
1
- import { e as n, b as t, f as r, c, d as h, g as S, S as o, a as s, s as m } from "./teleport.component-B0u2GdDI.js";
1
+ import { e as n, b as t, f as r, c, d as h, g as S, S as o, a as s, s as m } from "./teleport.component-fFlS00qb.js";
2
2
  export {
3
3
  n as SchmancyContentDrawer,
4
4
  t as SchmancyContentDrawerID,
package/dist/index.cjs CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),require("./animated-text-DMvZ91Pi.cjs");const r=require("./area.component-u1833ygY.cjs");require("./autocomplete-2xI-YGmY.cjs"),require("./spinner-C5tyUoUH.cjs");const y=require("./icon-button-Cb44AXI8.cjs"),e=require("./teleport.component-nl0mT31B.cjs"),b=require("./checkbox-Dii2nqhC.cjs");require("./chips-BFv-U4jV.cjs");const l=require("./payment-card-form--b3A-llt.cjs");require("./date-range-CrgRRdGS.cjs");const o=require("./delay-DORzS-xz.cjs"),c=require("./ripple-C2BHbhcS.cjs");require("./divider-AD7B5zhm.cjs"),require("./form-gVJ0RRu0.cjs"),require("./icon-BPuovSPn.cjs"),require("./input-C8b7bCcP.cjs");const t=require("./flex-CZr7oQ9Y.cjs"),a=require("./list-80LJZy4q.cjs");require("./menu-D_sTXBbO.cjs");const m=require("./_notification-BMl7x5RW.cjs"),S=require("./outlet-C7rjq28x.cjs");require("./option-CzgSfsqO.cjs");const p=require("./radio-group-Bby3q70w.cjs"),d=require("./rxjs-utils.cjs");require("rxjs"),require("./index-DyJ0oDpR.cjs");const f=require("./select-BLjr99KM.cjs"),n=require("./sheet-oAe0B1jm.cjs"),h=require("./slider-7tOxo-JN.cjs"),u=require("./surface-DQzIpP6p.cjs");require("./table-svmLYHeN.cjs"),require("./tabs-group-1zlDT88I.cjs"),require("./textarea-hCVSw5xF.cjs");const i=require("./theme.component-B3Bkeuj8.cjs"),g=require("./theme.interface-Xg5Zi46a.cjs");require("./theme-button-0_Dyv3N3.cjs");const q=require("./tree-dGVAUSaR.cjs"),O=require("./types.cjs"),w=require("./typewriter-CJHUghKa.cjs"),D=require("./typography-BmwF96eo.cjs"),s=require("./intersection-CVvaDv96.cjs");exports.FINDING_MORTIES=r.FINDING_MORTIES,exports.HERE_RICKY=r.HERE_RICKY,exports.HISTORY_STRATEGY=r.HISTORY_STRATEGY,Object.defineProperty(exports,"SchmancyArea",{enumerable:!0,get:()=>r.SchmancyArea}),exports.area=r.area,exports.routerHistory=r.routerHistory,Object.defineProperty(exports,"SchmancyButton",{enumerable:!0,get:()=>y.SchmancyButton}),Object.defineProperty(exports,"SchmnacyIconButton",{enumerable:!0,get:()=>y.SchmnacyIconButton}),exports.$drawer=e.$drawer,exports.HereMorty=e.HereMorty,Object.defineProperty(exports,"SchmancyContentDrawer",{enumerable:!0,get:()=>e.SchmancyContentDrawer}),exports.SchmancyContentDrawerID=e.SchmancyContentDrawerID,Object.defineProperty(exports,"SchmancyContentDrawerMain",{enumerable:!0,get:()=>e.SchmancyContentDrawerMain}),exports.SchmancyContentDrawerMaxHeight=e.SchmancyContentDrawerMaxHeight,exports.SchmancyContentDrawerMinWidth=e.SchmancyContentDrawerMinWidth,Object.defineProperty(exports,"SchmancyContentDrawerSheet",{enumerable:!0,get:()=>e.SchmancyContentDrawerSheet}),exports.SchmancyContentDrawerSheetMode=e.SchmancyContentDrawerSheetMode,exports.SchmancyContentDrawerSheetState=e.SchmancyContentDrawerSheetState,Object.defineProperty(exports,"SchmancyDrawerAppbar",{enumerable:!0,get:()=>e.SchmancyDrawerAppbar}),exports.SchmancyDrawerNavbarMode=e.SchmancyDrawerNavbarMode,exports.SchmancyDrawerNavbarState=e.SchmancyDrawerNavbarState,Object.defineProperty(exports,"SchmancyNavigationDrawer",{enumerable:!0,get:()=>e.SchmancyNavigationDrawer}),Object.defineProperty(exports,"SchmancyNavigationDrawerContent",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerContent}),Object.defineProperty(exports,"SchmancyNavigationDrawerSidebar",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerSidebar}),Object.defineProperty(exports,"SchmancyTeleportation",{enumerable:!0,get:()=>e.SchmancyTeleportation}),exports.WhereAreYouRicky=e.WhereAreYouRicky,exports.schmancyContentDrawer=e.schmancyContentDrawer,exports.schmancyNavDrawer=e.schmancyNavDrawer,exports.teleport=e.teleport,Object.defineProperty(exports,"SchmancyCheckbox",{enumerable:!0,get:()=>b.SchmancyCheckbox}),Object.defineProperty(exports,"SchmancyPaymentCardForm",{enumerable:!0,get:()=>l.SchmancyPaymentCardForm}),Object.defineProperty(exports,"SchmancyDelay",{enumerable:!0,get:()=>o.SchmancyDelay}),exports.delayContext=o.delayContext,exports.color=c.color,exports.fullHeight=c.fullHeight,exports.ripple=c.ripple,Object.defineProperty(exports,"SchmancyFlex",{enumerable:!0,get:()=>t.SchmancyFlex}),Object.defineProperty(exports,"SchmancyFlexV2",{enumerable:!0,get:()=>t.SchmancyFlexV2}),Object.defineProperty(exports,"SchmancyGrid",{enumerable:!0,get:()=>t.SchmancyGrid}),Object.defineProperty(exports,"SchmancyScroll",{enumerable:!0,get:()=>t.SchmancyScroll}),Object.defineProperty(exports,"List",{enumerable:!0,get:()=>a.List}),Object.defineProperty(exports,"SchmancyListItem",{enumerable:!0,get:()=>a.SchmancyListItem}),exports.SchmancyListTypeContext=a.SchmancyListTypeContext,exports.$notify=m.$notify,exports.notify=m.notify,Object.defineProperty(exports,"SchmancyNotification",{enumerable:!0,get:()=>S.SchmancyNotification}),Object.defineProperty(exports,"SchmancyNotificationOutlet",{enumerable:!0,get:()=>S.SchmancyNotificationOutlet}),Object.defineProperty(exports,"RadioGroup",{enumerable:!0,get:()=>p.RadioGroup}),exports.mutationObserver=d.mutationObserver,Object.defineProperty(exports,"SchmancySelect",{enumerable:!0,get:()=>f.SchmancySelect}),exports.SchmancySheetPosition=n.SchmancySheetPosition,exports.SheetHereMorty=n.SheetHereMorty,exports.SheetWhereAreYouRicky=n.SheetWhereAreYouRicky,exports.sheet=n.sheet,Object.defineProperty(exports,"SchmancySlide",{enumerable:!0,get:()=>h.SchmancySlide}),Object.defineProperty(exports,"SchmancySlider",{enumerable:!0,get:()=>h.SchmancySlider}),Object.defineProperty(exports,"SchmancySurface",{enumerable:!0,get:()=>u.SchmancySurface}),exports.SchmancySurfaceTypeContext=u.SchmancySurfaceTypeContext,Object.defineProperty(exports,"SchmancyThemeComponent",{enumerable:!0,get:()=>i.SchmancyThemeComponent}),exports.formateTheme=i.formateTheme,exports.tailwindStyles=i.tailwindStyles,exports.SchmancyTheme=g.SchmancyTheme,Object.defineProperty(exports,"SchmancyTree",{enumerable:!0,get:()=>q.SchmancyTree}),exports.SchmancyEvents=O.SchmancyEvents,Object.defineProperty(exports,"TypewriterElement",{enumerable:!0,get:()=>w.TypewriterElement}),Object.defineProperty(exports,"SchmancyTypography",{enumerable:!0,get:()=>D.SchmancyTypography}),exports.intersection$=s.intersection$;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),require("./animated-text-DMvZ91Pi.cjs");const r=require("./area.component-u1833ygY.cjs");require("./autocomplete-2xI-YGmY.cjs"),require("./spinner-C5tyUoUH.cjs");const y=require("./icon-button-Cb44AXI8.cjs"),e=require("./teleport.component-DL_aASxo.cjs"),b=require("./checkbox-Dii2nqhC.cjs");require("./chips-oAoJx3xK.cjs");const l=require("./payment-card-form--b3A-llt.cjs");require("./date-range-CrgRRdGS.cjs");const o=require("./delay-DORzS-xz.cjs"),c=require("./ripple-C2BHbhcS.cjs");require("./divider-AD7B5zhm.cjs"),require("./form-gVJ0RRu0.cjs"),require("./icon-BPuovSPn.cjs"),require("./input-C8b7bCcP.cjs");const t=require("./flex-CZr7oQ9Y.cjs"),a=require("./list-80LJZy4q.cjs");require("./menu-D_sTXBbO.cjs");const m=require("./_notification-BMl7x5RW.cjs"),S=require("./outlet-C7rjq28x.cjs");require("./option-CzgSfsqO.cjs");const p=require("./radio-group-Bby3q70w.cjs"),d=require("./rxjs-utils.cjs");require("rxjs"),require("./index-DyJ0oDpR.cjs");const f=require("./select-BLjr99KM.cjs"),n=require("./sheet-oAe0B1jm.cjs"),h=require("./slider-7tOxo-JN.cjs"),u=require("./surface-DQzIpP6p.cjs");require("./table-svmLYHeN.cjs"),require("./tabs-group-1zlDT88I.cjs"),require("./textarea-hCVSw5xF.cjs");const i=require("./theme.component-B3Bkeuj8.cjs"),g=require("./theme.interface-Xg5Zi46a.cjs");require("./theme-button-0_Dyv3N3.cjs");const q=require("./tree-dGVAUSaR.cjs"),O=require("./types.cjs"),w=require("./typewriter-CJHUghKa.cjs"),D=require("./typography-BmwF96eo.cjs"),s=require("./intersection-CVvaDv96.cjs");exports.FINDING_MORTIES=r.FINDING_MORTIES,exports.HERE_RICKY=r.HERE_RICKY,exports.HISTORY_STRATEGY=r.HISTORY_STRATEGY,Object.defineProperty(exports,"SchmancyArea",{enumerable:!0,get:()=>r.SchmancyArea}),exports.area=r.area,exports.routerHistory=r.routerHistory,Object.defineProperty(exports,"SchmancyButton",{enumerable:!0,get:()=>y.SchmancyButton}),Object.defineProperty(exports,"SchmnacyIconButton",{enumerable:!0,get:()=>y.SchmnacyIconButton}),exports.$drawer=e.$drawer,exports.HereMorty=e.HereMorty,Object.defineProperty(exports,"SchmancyContentDrawer",{enumerable:!0,get:()=>e.SchmancyContentDrawer}),exports.SchmancyContentDrawerID=e.SchmancyContentDrawerID,Object.defineProperty(exports,"SchmancyContentDrawerMain",{enumerable:!0,get:()=>e.SchmancyContentDrawerMain}),exports.SchmancyContentDrawerMaxHeight=e.SchmancyContentDrawerMaxHeight,exports.SchmancyContentDrawerMinWidth=e.SchmancyContentDrawerMinWidth,Object.defineProperty(exports,"SchmancyContentDrawerSheet",{enumerable:!0,get:()=>e.SchmancyContentDrawerSheet}),exports.SchmancyContentDrawerSheetMode=e.SchmancyContentDrawerSheetMode,exports.SchmancyContentDrawerSheetState=e.SchmancyContentDrawerSheetState,Object.defineProperty(exports,"SchmancyDrawerAppbar",{enumerable:!0,get:()=>e.SchmancyDrawerAppbar}),exports.SchmancyDrawerNavbarMode=e.SchmancyDrawerNavbarMode,exports.SchmancyDrawerNavbarState=e.SchmancyDrawerNavbarState,Object.defineProperty(exports,"SchmancyNavigationDrawer",{enumerable:!0,get:()=>e.SchmancyNavigationDrawer}),Object.defineProperty(exports,"SchmancyNavigationDrawerContent",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerContent}),Object.defineProperty(exports,"SchmancyNavigationDrawerSidebar",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerSidebar}),Object.defineProperty(exports,"SchmancyTeleportation",{enumerable:!0,get:()=>e.SchmancyTeleportation}),exports.WhereAreYouRicky=e.WhereAreYouRicky,exports.schmancyContentDrawer=e.schmancyContentDrawer,exports.schmancyNavDrawer=e.schmancyNavDrawer,exports.teleport=e.teleport,Object.defineProperty(exports,"SchmancyCheckbox",{enumerable:!0,get:()=>b.SchmancyCheckbox}),Object.defineProperty(exports,"SchmancyPaymentCardForm",{enumerable:!0,get:()=>l.SchmancyPaymentCardForm}),Object.defineProperty(exports,"SchmancyDelay",{enumerable:!0,get:()=>o.SchmancyDelay}),exports.delayContext=o.delayContext,exports.color=c.color,exports.fullHeight=c.fullHeight,exports.ripple=c.ripple,Object.defineProperty(exports,"SchmancyFlex",{enumerable:!0,get:()=>t.SchmancyFlex}),Object.defineProperty(exports,"SchmancyFlexV2",{enumerable:!0,get:()=>t.SchmancyFlexV2}),Object.defineProperty(exports,"SchmancyGrid",{enumerable:!0,get:()=>t.SchmancyGrid}),Object.defineProperty(exports,"SchmancyScroll",{enumerable:!0,get:()=>t.SchmancyScroll}),Object.defineProperty(exports,"List",{enumerable:!0,get:()=>a.List}),Object.defineProperty(exports,"SchmancyListItem",{enumerable:!0,get:()=>a.SchmancyListItem}),exports.SchmancyListTypeContext=a.SchmancyListTypeContext,exports.$notify=m.$notify,exports.notify=m.notify,Object.defineProperty(exports,"SchmancyNotification",{enumerable:!0,get:()=>S.SchmancyNotification}),Object.defineProperty(exports,"SchmancyNotificationOutlet",{enumerable:!0,get:()=>S.SchmancyNotificationOutlet}),Object.defineProperty(exports,"RadioGroup",{enumerable:!0,get:()=>p.RadioGroup}),exports.mutationObserver=d.mutationObserver,Object.defineProperty(exports,"SchmancySelect",{enumerable:!0,get:()=>f.SchmancySelect}),exports.SchmancySheetPosition=n.SchmancySheetPosition,exports.SheetHereMorty=n.SheetHereMorty,exports.SheetWhereAreYouRicky=n.SheetWhereAreYouRicky,exports.sheet=n.sheet,Object.defineProperty(exports,"SchmancySlide",{enumerable:!0,get:()=>h.SchmancySlide}),Object.defineProperty(exports,"SchmancySlider",{enumerable:!0,get:()=>h.SchmancySlider}),Object.defineProperty(exports,"SchmancySurface",{enumerable:!0,get:()=>u.SchmancySurface}),exports.SchmancySurfaceTypeContext=u.SchmancySurfaceTypeContext,Object.defineProperty(exports,"SchmancyThemeComponent",{enumerable:!0,get:()=>i.SchmancyThemeComponent}),exports.formateTheme=i.formateTheme,exports.tailwindStyles=i.tailwindStyles,exports.SchmancyTheme=g.SchmancyTheme,Object.defineProperty(exports,"SchmancyTree",{enumerable:!0,get:()=>q.SchmancyTree}),exports.SchmancyEvents=O.SchmancyEvents,Object.defineProperty(exports,"TypewriterElement",{enumerable:!0,get:()=>w.TypewriterElement}),Object.defineProperty(exports,"SchmancyTypography",{enumerable:!0,get:()=>D.SchmancyTypography}),exports.intersection$=s.intersection$;
2
2
  //# sourceMappingURL=index.cjs.map
package/dist/index.js CHANGED
@@ -3,9 +3,9 @@ import { F as C, H as d, b as T, S as u, a as b, r as N } from "./area.component
3
3
  import "./autocomplete-DgPHNNK4.js";
4
4
  import "./spinner-BWLmpEe4.js";
5
5
  import { S as R, a as v } from "./icon-button-HBCK5RRi.js";
6
- import { $ as M, H as g, e as E, b as A, f as F, c as Y, d as $, g as k, S as G, a as L, i as O, k as W, l as _, m as B, j as P, n as j, o as K, W as V, s as q, h as z, t as J } from "./teleport.component-B0u2GdDI.js";
6
+ import { $ as M, H as g, e as E, b as A, f as F, c as Y, d as $, g as k, S as G, a as L, i as O, k as W, l as _, m as B, j as P, n as j, o as K, W as V, s as q, h as z, t as J } from "./teleport.component-fFlS00qb.js";
7
7
  import { S as U } from "./checkbox-CKrSzer3.js";
8
- import "./chips-Dgp6TkFj.js";
8
+ import "./chips-BRgVxSAK.js";
9
9
  import { S as Z } from "./payment-card-form-Cxw8K4Bz.js";
10
10
  import "./date-range-B8lM-Gwr.js";
11
11
  import { S as ra, d as ea } from "./delay-DyWOCKIu.js";
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./teleport.component-nl0mT31B.cjs");exports.$drawer=e.$drawer,Object.defineProperty(exports,"SchmancyDrawerAppbar",{enumerable:!0,get:()=>e.SchmancyDrawerAppbar}),exports.SchmancyDrawerNavbarMode=e.SchmancyDrawerNavbarMode,exports.SchmancyDrawerNavbarState=e.SchmancyDrawerNavbarState,Object.defineProperty(exports,"SchmancyNavigationDrawer",{enumerable:!0,get:()=>e.SchmancyNavigationDrawer}),Object.defineProperty(exports,"SchmancyNavigationDrawerContent",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerContent}),Object.defineProperty(exports,"SchmancyNavigationDrawerSidebar",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerSidebar}),exports.schmancyNavDrawer=e.schmancyNavDrawer;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./teleport.component-DL_aASxo.cjs");exports.$drawer=e.$drawer,Object.defineProperty(exports,"SchmancyDrawerAppbar",{enumerable:!0,get:()=>e.SchmancyDrawerAppbar}),exports.SchmancyDrawerNavbarMode=e.SchmancyDrawerNavbarMode,exports.SchmancyDrawerNavbarState=e.SchmancyDrawerNavbarState,Object.defineProperty(exports,"SchmancyNavigationDrawer",{enumerable:!0,get:()=>e.SchmancyNavigationDrawer}),Object.defineProperty(exports,"SchmancyNavigationDrawerContent",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerContent}),Object.defineProperty(exports,"SchmancyNavigationDrawerSidebar",{enumerable:!0,get:()=>e.SchmancyNavigationDrawerSidebar}),exports.schmancyNavDrawer=e.schmancyNavDrawer;
2
2
  //# sourceMappingURL=nav-drawer.cjs.map
@@ -1,4 +1,4 @@
1
- import { $ as c, i as e, k as n, l as m, m as s, j as h, n as i, h as t } from "./teleport.component-B0u2GdDI.js";
1
+ import { $ as c, i as e, k as n, l as m, m as s, j as h, n as i, h as t } from "./teleport.component-fFlS00qb.js";
2
2
  export {
3
3
  c as $drawer,
4
4
  e as SchmancyDrawerAppbar,
package/dist/teleport.cjs CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./teleport.component-nl0mT31B.cjs");exports.HereMorty=e.HereMorty,Object.defineProperty(exports,"SchmancyTeleportation",{enumerable:!0,get:()=>e.SchmancyTeleportation}),exports.WhereAreYouRicky=e.WhereAreYouRicky,exports.teleport=e.teleport;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./teleport.component-DL_aASxo.cjs");exports.HereMorty=e.HereMorty,Object.defineProperty(exports,"SchmancyTeleportation",{enumerable:!0,get:()=>e.SchmancyTeleportation}),exports.WhereAreYouRicky=e.WhereAreYouRicky,exports.teleport=e.teleport;
2
2
  //# sourceMappingURL=teleport.cjs.map
@@ -1,4 +1,4 @@
1
- "use strict";const h=require("lit"),c=require("lit/decorators.js"),n=require("rxjs");require("./animated-text-DMvZ91Pi.cjs");const O=require("./area.component-u1833ygY.cjs");require("./autocomplete-2xI-YGmY.cjs"),require("./spinner-C5tyUoUH.cjs"),require("./icon-button-Cb44AXI8.cjs"),require("lit/directives/class-map.js"),require("lit/directives/style-map.js");const S=require("./tailwind.mixin-BCq9pcGg.cjs"),$=require("./theme.interface-Xg5Zi46a.cjs");require("./checkbox-Dii2nqhC.cjs"),require("./chips-BFv-U4jV.cjs"),require("./payment-card-form--b3A-llt.cjs");const p=require("./types.cjs"),l=require("./provide-DSU87U5x.cjs"),w=require("./litElement.mixin-DA1nq3OE.cjs"),d=require("./consume-Bb7_UzYd.cjs");require("./date-range-CrgRRdGS.cjs"),require("./delay-DORzS-xz.cjs");const b=require("./ripple-C2BHbhcS.cjs");require("./divider-AD7B5zhm.cjs"),require("./form-gVJ0RRu0.cjs"),require("./icon-BPuovSPn.cjs"),require("./input-C8b7bCcP.cjs"),require("./flex-CZr7oQ9Y.cjs"),require("./list-80LJZy4q.cjs"),require("./menu-D_sTXBbO.cjs");const I=require("lit/directives/when.js");require("@floating-ui/dom"),require("./outlet-C7rjq28x.cjs"),require("./option-CzgSfsqO.cjs"),require("./radio-group-Bby3q70w.cjs"),require("./index-DyJ0oDpR.cjs"),require("./select-BLjr99KM.cjs");const U=require("./sheet-oAe0B1jm.cjs");require("./slider-7tOxo-JN.cjs"),require("./surface-DQzIpP6p.cjs"),require("./table-svmLYHeN.cjs"),require("./tabs-group-1zlDT88I.cjs"),require("./textarea-hCVSw5xF.cjs"),require("./theme.component-B3Bkeuj8.cjs"),require("./theme-button-0_Dyv3N3.cjs"),require("./tree-dGVAUSaR.cjs"),require("./typewriter-CJHUghKa.cjs"),require("./typography-BmwF96eo.cjs");const T=require("rxjs/operators");var Y=Object.getOwnPropertyDescriptor;let H=class extends S.TailwindElement(h.css`
1
+ "use strict";const h=require("lit"),c=require("lit/decorators.js"),n=require("rxjs");require("./animated-text-DMvZ91Pi.cjs");const O=require("./area.component-u1833ygY.cjs");require("./autocomplete-2xI-YGmY.cjs"),require("./spinner-C5tyUoUH.cjs"),require("./icon-button-Cb44AXI8.cjs"),require("lit/directives/class-map.js"),require("lit/directives/style-map.js");const S=require("./tailwind.mixin-BCq9pcGg.cjs"),$=require("./theme.interface-Xg5Zi46a.cjs");require("./checkbox-Dii2nqhC.cjs"),require("./chips-oAoJx3xK.cjs"),require("./payment-card-form--b3A-llt.cjs");const p=require("./types.cjs"),l=require("./provide-DSU87U5x.cjs"),w=require("./litElement.mixin-DA1nq3OE.cjs"),d=require("./consume-Bb7_UzYd.cjs");require("./date-range-CrgRRdGS.cjs"),require("./delay-DORzS-xz.cjs");const b=require("./ripple-C2BHbhcS.cjs");require("./divider-AD7B5zhm.cjs"),require("./form-gVJ0RRu0.cjs"),require("./icon-BPuovSPn.cjs"),require("./input-C8b7bCcP.cjs"),require("./flex-CZr7oQ9Y.cjs"),require("./list-80LJZy4q.cjs"),require("./menu-D_sTXBbO.cjs");const I=require("lit/directives/when.js");require("@floating-ui/dom"),require("./outlet-C7rjq28x.cjs"),require("./option-CzgSfsqO.cjs"),require("./radio-group-Bby3q70w.cjs"),require("./index-DyJ0oDpR.cjs"),require("./select-BLjr99KM.cjs");const U=require("./sheet-oAe0B1jm.cjs");require("./slider-7tOxo-JN.cjs"),require("./surface-DQzIpP6p.cjs"),require("./table-svmLYHeN.cjs"),require("./tabs-group-1zlDT88I.cjs"),require("./textarea-hCVSw5xF.cjs"),require("./theme.component-B3Bkeuj8.cjs"),require("./theme-button-0_Dyv3N3.cjs"),require("./tree-dGVAUSaR.cjs"),require("./typewriter-CJHUghKa.cjs"),require("./typography-BmwF96eo.cjs");const T=require("rxjs/operators");var Y=Object.getOwnPropertyDescriptor;let H=class extends S.TailwindElement(h.css`
2
2
  :host {
3
3
  display: block;
4
4
  }
@@ -147,4 +147,4 @@
147
147
  class="${this.classMap({"fixed inset-0 z-49 hidden":!0})}"
148
148
  ></div>
149
149
  `}},u([d.c({context:W,subscribe:!0}),c.state()],exports.SchmancyNavigationDrawerSidebar.prototype,"mode",2),u([d.c({context:j,subscribe:!0}),c.state()],exports.SchmancyNavigationDrawerSidebar.prototype,"drawerState",2),u([c.query("#overlay")],exports.SchmancyNavigationDrawerSidebar.prototype,"overlay",2),u([c.query("nav")],exports.SchmancyNavigationDrawerSidebar.prototype,"nav",2),u([c.property({type:String})],exports.SchmancyNavigationDrawerSidebar.prototype,"width",2),u([c.state()],exports.SchmancyNavigationDrawerSidebar.prototype,"_initialized",2),exports.SchmancyNavigationDrawerSidebar=u([c.customElement("schmancy-nav-drawer-navbar")],exports.SchmancyNavigationDrawerSidebar);const _="whereAreYouRicky",A="hereMorty",f=new class{constructor(){this.activeTeleportations=new Map,this.flipRequests=new n.Subject,this.find=e=>n.zip([n.fromEvent(window,A).pipe(n.filter(t=>!!t.detail.component.uuid&&!!e.id&&t.detail.component.id===e.id&&t.detail.component.uuid!==e.uuid),n.map(t=>t.detail.component),n.take(1)),n.of(e).pipe(n.tap(()=>{window.dispatchEvent(new CustomEvent(_,{detail:{id:e.id,callerID:e.uuid}}))}))]).pipe(n.map(([t])=>t),n.timeout(0)),this.flip=e=>{const{from:t,to:i}=e,s=i.element.style.zIndex;i.element.style.transformOrigin="top left",i.element.style.setProperty("visibility","visible"),i.element.style.zIndex="1000";const a=[{transform:`translate(${t.rect.left-i.rect.left}px, ${t.rect.top-i.rect.top}px) scale(${t.rect.width/i.rect.width}, ${t.rect.height/i.rect.height})`},{transform:"translate(0, 0) scale(1, 1)"}];i.element.animate(a,{duration:250,delay:10,easing:"cubic-bezier(0.455, 0.03, 0.515, 0.955)"}).onfinish=()=>{i.element.style.zIndex=s,i.element.style.transformOrigin=""}},this.flipRequests.pipe(n.bufferTime(1),n.map(e=>e.map(({from:t,to:i,host:s},a)=>({from:t,to:i,host:s,i:a}))),n.concatMap(e=>n.zip(e.map(t=>n.of(this.flip(t)))))).subscribe()}};function B(e){return n.interval(50).pipe(T.map(()=>e.getBoundingClientRect()),T.distinctUntilChanged((t,i)=>t.width===i.width&&t.height===i.height&&t.top===i.top&&t.right===i.right&&t.bottom===i.bottom&&t.left===i.left),T.take(1))}var ye=Object.defineProperty,ue=Object.getOwnPropertyDescriptor,q=(e,t,i,s)=>{for(var a,r=s>1?void 0:s?ue(t,i):t,o=e.length-1;o>=0;o--)(a=e[o])&&(r=(s?a(t,i,r):a(r))||r);return s&&r&&ye(t,i,r),r};exports.SchmancyTeleportation=class extends w.$LitElement(h.css``){constructor(){super(...arguments),this.uuid=Math.floor(Math.random()*Date.now()),this.delay=0,this.debugging=!1}get _slottedChildren(){return this.shadowRoot.querySelector("slot").assignedElements({flatten:!0})}connectedCallback(){if(this.id===void 0)throw new Error("id is required");super.connectedCallback(),n.merge(n.fromEvent(window,O.FINDING_MORTIES).pipe(n.tap({next:()=>{this.dispatchEvent(new CustomEvent(O.HERE_RICKY,{detail:{component:this},bubbles:!0,composed:!0}))}})),n.fromEvent(window,_).pipe(n.tap({next:e=>{e.detail.id===this.id&&this.uuid&&e.detail.callerID!==this.uuid&&this.dispatchEvent(new CustomEvent(A,{detail:{component:this},bubbles:!0,composed:!0}))}}))).pipe(n.takeUntil(this.disconnecting)).subscribe()}async firstUpdated(){n.of(f.activeTeleportations.get(this.id)).pipe(n.filter(e=>!!e),n.takeUntil(this.disconnecting),n.throwIfEmpty()).subscribe({next:e=>{this.style.setProperty("visibility","hidden"),B(this).pipe(n.takeUntil(this.disconnecting)).subscribe({next:t=>{f.activeTeleportations.set(this.id,t),f.flipRequests.next({from:{rect:e},to:{rect:t,element:this._slottedChildren[0]},host:this})}})},error:()=>{this.style.setProperty("visibility","visible"),B(this).pipe(n.takeUntil(this.disconnecting)).subscribe({next:e=>{f.activeTeleportations.set(this.id,e)}})},complete:()=>{}})}render(){return h.html`<slot></slot>`}},q([c.property({type:Number,reflect:!0})],exports.SchmancyTeleportation.prototype,"uuid",2),q([c.property({type:String})],exports.SchmancyTeleportation.prototype,"id",2),q([c.property({type:Number})],exports.SchmancyTeleportation.prototype,"delay",2),exports.SchmancyTeleportation=q([c.customElement("schmancy-teleport")],exports.SchmancyTeleportation),exports.$drawer=ae,exports.HereMorty=A,exports.SchmancyContentDrawerID=X,exports.SchmancyContentDrawerMaxHeight=k,exports.SchmancyContentDrawerMinWidth=N,exports.SchmancyContentDrawerSheetMode=M,exports.SchmancyContentDrawerSheetState=R,exports.SchmancyDrawerNavbarMode=W,exports.SchmancyDrawerNavbarState=j,exports.WhereAreYouRicky=_,exports.schmancyContentDrawer=Z,exports.schmancyNavDrawer=K,exports.teleport=f;
150
- //# sourceMappingURL=teleport.component-nl0mT31B.cjs.map
150
+ //# sourceMappingURL=teleport.component-DL_aASxo.cjs.map