@tylertech/forge 2.24.6 → 2.24.7

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.
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/text-field/text-field-adapter.ts", "../../src/text-field/text-field-foundation.ts", "../../src/text-field/text-field.ts", "../../src/text-field/index.ts"],
4
+ "sourcesContent": ["import { addClass, listenOwnProperty, getActiveElement, createElementAttributeObserver } from '@tylertech/forge-core';\nimport { ITextFieldComponent } from './text-field';\nimport { FieldAdapter, IFieldAdapter } from '../field/field-adapter';\nimport { TEXT_FIELD_CONSTANTS } from './text-field-constants';\nimport { FIELD_CONSTANTS } from '../field/field-constants';\n\nexport interface ITextFieldAdapter extends IFieldAdapter {\n detectTextarea(): void;\n}\n\nexport class TextFieldAdapter extends FieldAdapter implements ITextFieldAdapter {\n protected _inputElements: Array<HTMLInputElement | HTMLTextAreaElement> = [];\n protected _inputMutationObserverInstances: MutationObserver[] = [];\n\n constructor(component: ITextFieldComponent) {\n super(component, TEXT_FIELD_CONSTANTS.selectors.ROOT);\n }\n\n public initialize(): void {\n super.initialize();\n this._inputElements = Array.from(this._component.querySelectorAll('input:not([type=checkbox]):not([type=radio]), textarea'));\n if (this._inputElements.length > 1) {\n this._handleMultiInputs();\n }\n }\n\n public override destroy(): void {\n super.destroy();\n if (this._inputMutationObserverInstances) {\n this._inputMutationObserverInstances.forEach(mo => mo.disconnect());\n }\n }\n\n public detectTextarea(): void {\n this._applyToInputs(input => {\n if (input instanceof HTMLTextAreaElement) {\n this._rootElement.classList.add(TEXT_FIELD_CONSTANTS.classes.TEXTAREA);\n } else {\n this._rootElement.classList.remove(TEXT_FIELD_CONSTANTS.classes.TEXTAREA);\n }\n });\n }\n\n public override addInputListener(type: string, listener: (evt: Event) => void): void {\n this._applyToInputs(input => input.addEventListener(type, listener));\n }\n public override removeInputListener(type: string, listener: (evt: Event) => void): void {\n if (this._inputElements && this._inputElements.length > 0) {\n this._applyToInputs(input => input.removeEventListener(type, listener));\n }\n }\n\n public override setValueChangedListener(context: any, listener: (value: any) => void): void {\n this.destroyValueChangeListener();\n this._applyToInputs(input => {\n const destroyListener = listenOwnProperty(context, input, 'value', listener);\n this._valueChangeListeners.push(destroyListener);\n });\n }\n\n public override inputHasValue(): boolean {\n return this._inputsSome(input => input.value ? input.value.trim().length > 0 : false);\n }\n\n public override hasPlaceholder(): boolean {\n return this._inputsSome(input => input.placeholder ? input.placeholder.trim().length > 0 : false);\n }\n\n public override inputHasFocus(target?: EventTarget | null): boolean {\n const activeElement = getActiveElement(this._component.ownerDocument);\n return this._inputsSome(input => input === target || input === activeElement);\n }\n\n public override setInputClass(className: string): void {\n this._applyToInputs(input => input.classList.add(className));\n }\n\n public override removeInputClass(className: string): void {\n this._applyToInputs(input => input.classList.remove(className));\n }\n\n public override setInputAttributeObserver(listener: (name: string, value: string) => void): void {\n this._applyToInputs(input => {\n const observer = createElementAttributeObserver(input, listener, FIELD_CONSTANTS.observedInputAttributes);\n this._inputMutationObserverInstances.push(observer);\n });\n }\n\n public override isDisabled(): boolean {\n return this._inputsSome(input => input.hasAttribute('disabled'));\n }\n\n public override isReadonly(): boolean {\n return this._inputsSome(input => input.hasAttribute('readonly'));\n }\n\n protected _inputsSome(action: (input: HTMLInputElement) => boolean): boolean {\n return this._inputElements.some(action);\n }\n\n protected _applyToInputs(action: (input: HTMLInputElement, index: number) => void): void {\n this._inputElements.forEach(action);\n }\n\n protected _handleMultiInputs(): void {\n addClass(TEXT_FIELD_CONSTANTS.classes.MULTI_INPUT, this._rootElement);\n this._applyToInputs((input, index) => {\n input.setAttribute(`${TEXT_FIELD_CONSTANTS.attributes.MULTI_INPUT}-${index}`, '');\n if (index % 2 !== 1 && !this._component.querySelector(`[${TEXT_FIELD_CONSTANTS.attributes.MULTI_INPUT_SEPARATOR}]`)) {\n Promise.resolve().then(() => input.insertAdjacentElement('afterend', this._createSeperatorElement()));\n }\n });\n }\n\n private _createSeperatorElement(): HTMLElement {\n const divider = document.createElement('span');\n divider.setAttribute(TEXT_FIELD_CONSTANTS.attributes.MULTI_INPUT_SEPARATOR, '');\n divider.textContent = '-';\n return divider;\n }\n}\n", "import { ITextFieldAdapter } from './text-field-adapter';\nimport { FieldFoundation, IFieldFoundation } from '../field/field-foundation';\n\nexport interface ITextFieldFoundation extends IFieldFoundation {}\n\nexport class TextFieldFoundation extends FieldFoundation implements ITextFieldFoundation {\n constructor(protected _adapter: ITextFieldAdapter) {\n super(_adapter);\n }\n\n public initialize(): void {\n super.initialize();\n this._adapter.detectTextarea();\n }\n}\n", "import { CustomElement, attachShadowTemplate } from '@tylertech/forge-core';\nimport { TextFieldAdapter } from './text-field-adapter';\nimport { TextFieldFoundation } from './text-field-foundation';\nimport { TEXT_FIELD_CONSTANTS } from './text-field-constants';\nimport { FieldComponent, IFieldComponent } from '../field/field';\n\nconst template = '<template><div class=\\\"forge-text-field__wrapper\\\" part=\\\"root\\\"><div class=\\\"forge-text-field forge-field\\\" part=\\\"container\\\"><div class=\\\"forge-text-field__leading-container\\\" part=\\\"leading-container\\\"><slot name=\\\"leading\\\"></slot></div><div class=\\\"forge-field__label-input-container\\\" part=\\\"label-input-container\\\"><slot></slot><slot name=\\\"label\\\"></slot></div><slot name=\\\"trailing\\\"></slot><div class=\\\"forge-field__addon-end-container\\\" part=\\\"addon-end-container\\\"><slot name=\\\"addon-end\\\"></slot></div></div><slot name=\\\"helper-text\\\"></slot></div></template>';\nconst styles = '.forge-field::before{content:\\\"\\\";display:-webkit-box;display:flex;position:absolute;top:0;right:0;left:0;z-index:-1;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%;height:100%;pointer-events:none;border-style:solid;border-style:var(--forge-text-field-border-style,solid);border-width:1px;-webkit-transition:border-color .2s 0s cubic-bezier(0, 0, .2, 1);transition:border-color .2s 0s cubic-bezier(0, 0, .2, 1);background-color:transparent;background-color:var(--forge-text-field-theme-background,transparent);text-align:left}.forge-field[dir=rtl]::before,[dir=rtl] .forge-field::before{text-align:right}.forge-field:not(.forge-field--disabled):not(.forge-field--invalid):not(.forge-field--focused)::before{border-color:rgba(0,0,0,.38);border-color:var(--mdc-theme-text-icon-on-background,rgba(0,0,0,.38))}.forge-field:not(.forge-field--disabled):not(.forge-field--invalid):not(.forge-field--focused):hover::before{border-color:rgba(0,0,0,.87);border-color:var(--mdc-theme-text-primary-on-background,rgba(0,0,0,.87))}.forge-field--focused:not(.forge-field--invalid):not(.forge-field--disabled)::before{border-color:#3f51b5;border-color:var(--mdc-theme-primary,#3f51b5)}.forge-field--invalid:not(.forge-field--disabled)::before{border-color:#b00020;border-color:var(--mdc-theme-error,#b00020)}.forge-field--invalid:not(.forge-field--disabled):not(.forge-field--focused):hover::before{border-color:#db8a98;border-color:var(--forge-theme-error-hover,#db8a98)}.forge-field--disabled::before{border-color:rgba(0,0,0,.12);border-color:var(--mdc-theme-text-disabled-on-background,rgba(0,0,0,.12))}.forge-field:not(.forge-field--shape-rounded){border-radius:4px}.forge-field:not(.forge-field--shape-rounded)::before{border-radius:4px}.forge-field--shape-rounded{border-radius:28px}.forge-field--shape-rounded::before{border-radius:28px}.forge-field--disabled::before{background-color:#f5f5f5;background-color:var(--forge-theme-form-field-disabled-on-background,#f5f5f5)}.forge-field--focused::before{border-color:#3f51b5;border-color:var(--mdc-theme-primary,#3f51b5);border-width:2px}.forge-field__label-input-container{position:relative;-webkit-box-flex:1;flex:1 1 0.0001px;height:100%;display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;-webkit-box-align:center;align-items:center;min-width:0}.forge-field ::slotted(label){color:rgba(0,0,0,.65);color:var(--forge-theme-form-field-label-on-background,rgba(0,0,0,.65));pointer-events:none;right:0;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Roboto,sans-serif;font-family:var(--mdc-typography-subtitle1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-weight:400;font-weight:var(--mdc-typography-subtitle1-font-weight,400);letter-spacing:.009375em;letter-spacing:var(--mdc-typography-subtitle1-letter-spacing, .009375em);text-decoration:inherit;-webkit-text-decoration:var(--mdc-typography-subtitle1-text-decoration,inherit);text-decoration:var(--mdc-typography-subtitle1-text-decoration,inherit);text-transform:inherit;text-transform:var(--mdc-typography-subtitle1-text-transform,inherit);font-size:var(--mdc-typography-subtitle1-font-size, 1rem);position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.1rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform;-webkit-transition:color 150ms cubic-bezier(.4, 0, .2, 1),-webkit-transform 150ms cubic-bezier(.4, 0, .2, 1);transition:color 150ms cubic-bezier(.4, 0, .2, 1),-webkit-transform 150ms cubic-bezier(.4, 0, .2, 1);transition:transform 150ms cubic-bezier(.4, 0, .2, 1),color 150ms cubic-bezier(.4, 0, .2, 1);transition:transform 150ms cubic-bezier(.4, 0, .2, 1),color 150ms cubic-bezier(.4, 0, .2, 1),-webkit-transform 150ms cubic-bezier(.4, 0, .2, 1)}.forge-field ::slotted(label[dir=rtl]),[dir=rtl] .forge-field ::slotted(label){right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.forge-field--dense:not(.forge-field--roomy) ::slotted(label){display:none}.forge-field--required ::slotted(label)::after{content:none}.forge-field--required ::slotted(label)::before{color:#b00020;color:var(--mdc-theme-error,#b00020);content:\\\"*\\\";margin-right:4px}.forge-field:not(.forge-field--dense):not(.forge-field--roomy) ::slotted(label){font-size:1rem}.forge-field--roomy:not(.forge-field--dense) ::slotted(label){font-size:1rem}.forge-field--disabled ::slotted(label){color:rgba(0,0,0,.38);color:var(--forge-theme-label-disabled-on-background,rgba(0,0,0,.38))}.forge-field--invalid:not(.forge-field--disabled) ::slotted(label){color:#b00020;color:var(--mdc-theme-error,#b00020)}.forge-field--focused:not(.forge-field--invalid):not(.forge-field--disabled) ::slotted(label){color:#3f51b5;color:var(--mdc-theme-primary,#3f51b5)}.forge-field:not(.forge-field--dense):not(.forge-field--roomy) ::slotted(label){top:1rem}.forge-field--roomy:not(.forge-field--dense) ::slotted(label){top:1.285rem}.forge-field:not(.forge-field--shape-rounded):not(.forge-field--leading) ::slotted(label){left:12px!important}.forge-field--shape-rounded:not(.forge-field--leading) ::slotted(label){left:32px!important}.forge-field:not(.forge-field--trailing):not(.forge-field--addon-end):not(.forge-field--shape-rounded) ::slotted(label){padding-right:12px}.forge-field:not(.forge-field--trailing):not(.forge-field--addon-end).forge-field--shape-rounded ::slotted(label){padding-right:32px}.forge-field ::slotted(label.forge-floating-label--float-above){color:rgba(0,0,0,.65);color:var(--forge-theme-form-field-label-on-background,rgba(0,0,0,.65))}.forge-field--disabled ::slotted(label.forge-floating-label--float-above){color:rgba(0,0,0,.6);color:var(--forge-theme-form-field-text-disabled-on-background,rgba(0,0,0,.6))}.forge-field--invalid:not(.forge-field--disabled) ::slotted(label.forge-floating-label--float-above){color:#b00020;color:var(--mdc-theme-error,#b00020)}.forge-field--focused:not(.forge-field--invalid):not(.forge-field--disabled) ::slotted(label.forge-floating-label--float-above){color:#3f51b5;color:var(--mdc-theme-primary,#3f51b5)}.forge-field:not(.forge-field--dense):not(.forge-field--roomy) ::slotted(label.forge-floating-label--float-above){-webkit-transform:translateY(-.54rem) scale(.8125);transform:translateY(-.54rem) scale(.8125);cursor:auto}.forge-field--roomy:not(.forge-field--dense) ::slotted(label.forge-floating-label--float-above){-webkit-transform:translateY(-.72rem) scale(.8125);transform:translateY(-.72rem) scale(.8125);cursor:auto}.forge-field:not(.forge-field--dense):not(.forge-field--roomy) ::slotted(label.forge-floating-label--float-above.forge-floating-label--float-above-end-keyframe){-webkit-transition:none;transition:none;font-size:.8125rem;-webkit-transform:translateY(-.62rem) scale(1);transform:translateY(-.62rem) scale(1);cursor:auto}.forge-field--roomy:not(.forge-field--dense) ::slotted(label.forge-floating-label--float-above.forge-floating-label--float-above-end-keyframe){-webkit-transition:none;transition:none;font-size:.8125rem;-webkit-transform:translateY(-.8rem) scale(1);transform:translateY(-.8rem) scale(1);cursor:auto}.forge-field:not(.forge-field--dense):not(.forge-field--roomy) ::slotted(label.forge-floating-label--unfloat-above-start-keyframe){-webkit-transition:none;transition:none;font-size:1rem;-webkit-transform:translateY(-.62rem) scale(.8125);transform:translateY(-.62rem) scale(.8125);cursor:auto}.forge-field--roomy:not(.forge-field--dense) ::slotted(label.forge-floating-label--unfloat-above-start-keyframe){-webkit-transition:none;transition:none;font-size:1rem;-webkit-transform:translateY(-.8rem) scale(.8125);transform:translateY(-.8rem) scale(.8125);cursor:auto}.forge-field ::slotted(input){-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Roboto,sans-serif;font-family:var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-weight:400;font-weight:var(--mdc-typography-body1-font-weight,400);letter-spacing:.03125em;letter-spacing:var(--mdc-typography-body1-letter-spacing, .03125em);text-decoration:inherit;-webkit-text-decoration:var(--mdc-typography-body1-text-decoration,inherit);text-decoration:var(--mdc-typography-body1-text-decoration,inherit);text-transform:inherit;text-transform:var(--mdc-typography-body1-text-transform,inherit);align-self:flex-end;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;-webkit-transition:opacity 150ms 0s cubic-bezier(.4, 0, .2, 1);transition:opacity 150ms 0s cubic-bezier(.4, 0, .2, 1);border:none;background:0 0;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;line-height:normal;min-width:0}.forge-field ::slotted(input)::-webkit-input-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-field ::slotted(input)::-moz-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-field ::slotted(input):-ms-input-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-field ::slotted(input)::-ms-input-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-field ::slotted(input)::placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-field ::slotted(input):invalid{-webkit-box-shadow:none;box-shadow:none}.forge-field ::slotted(input):-webkit-autofill{z-index:auto!important}.forge-field:not(.forge-field--disabled) ::slotted(input){color:rgba(0,0,0,.87);color:var(--mdc-theme-text-primary-on-background,rgba(0,0,0,.87))}.forge-field--disabled ::slotted(input){color:rgba(0,0,0,.6);color:var(--forge-theme-form-field-text-disabled-on-background,rgba(0,0,0,.6));cursor:not-allowed}.forge-field:not(.forge-field--dense):not(.forge-field--roomy) ::slotted(input){font-size:1rem;font-size:var(--forge-field-font-size, 1rem)}.forge-field--roomy:not(.forge-field--dense) ::slotted(input){font-size:1rem;font-size:var(--forge-field-font-size, 1rem)}.forge-field--dense:not(.forge-field--roomy) ::slotted(input){font-size:.875rem;font-size:var(--forge-field-font-size, .875rem)}.forge-field ::slotted(input){padding:0 12px}.forge-field--label ::slotted(input){padding-top:24px}.forge-field--roomy.forge-field--label ::slotted(input){padding-top:29px}.forge-field--shape-rounded:not(.forge-field--leading) ::slotted(input){padding-left:32px}.forge-field--leading ::slotted(input){padding-left:0}.forge-field--label ::slotted(input){padding-bottom:3px}.forge-field--roomy.forge-field--label ::slotted(input){padding-bottom:8px}.forge-field--shape-rounded:not(.forge-field--trailing):not(.forge-field--addon-end) ::slotted(input){padding-right:32px}.forge-field--addon-end ::slotted(input),.forge-field--trailing ::slotted(input){padding-right:0}.forge-field~::slotted([slot=helper-text]){-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Roboto,sans-serif;font-family:var(--mdc-typography-caption-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));line-height:1.25rem;line-height:var(--mdc-typography-caption-line-height, 1.25rem);font-weight:400;font-weight:var(--mdc-typography-caption-font-weight,400);letter-spacing:.0333333333em;letter-spacing:var(--mdc-typography-caption-letter-spacing, .0333333333em);text-decoration:inherit;-webkit-text-decoration:var(--mdc-typography-caption-text-decoration,inherit);text-decoration:var(--mdc-typography-caption-text-decoration,inherit);text-transform:inherit;text-transform:var(--mdc-typography-caption-text-transform,inherit);display:block;min-height:1.5rem;line-height:normal;padding-top:4px;-webkit-box-sizing:border-box;box-sizing:border-box}.forge-field:not(.forge-field--dense):not(.forge-field--roomy)~::slotted([slot=helper-text]){font-size:.75rem}.forge-field--roomy:not(.forge-field--dense)~::slotted([slot=helper-text]){font-size:.875rem}.forge-field--dense:not(.forge-field--roomy)~::slotted([slot=helper-text]){font-size:.75rem}.forge-field~::slotted([slot=helper-text]){color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54))}.forge-field--invalid:not(.forge-field--disabled)~::slotted([slot=helper-text]){color:#b00020;color:var(--mdc-theme-error,#b00020)}.forge-field:not(.forge-field--shape-rounded)~::slotted([slot=helper-text]){margin-left:12px}.forge-field--shape-rounded~::slotted([slot=helper-text]){margin-left:32px}.forge-field ::slotted([slot=leading]){display:-webkit-box;display:flex;align-self:center}.forge-field:not(.forge-field--disabled):not(.forge-field--invalid) ::slotted([slot=leading]){color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54))}.forge-field--invalid:not(.forge-field--disabled) ::slotted([slot=leading]){color:#b00020;color:var(--mdc-theme-error,#b00020)}.forge-field--disabled ::slotted([slot=leading]){color:rgba(0,0,0,.38);color:var(--mdc-theme-text-disabled-on-light,rgba(0,0,0,.38));cursor:not-allowed;pointer-events:none}.forge-field ::slotted([slot=leading]){margin:0 4px}.forge-field ::slotted([slot=leading]:not(forge-icon-button)){padding:6px}.forge-field ::slotted([slot=trailing]){align-self:center}.forge-field:not(.forge-field--disabled):not(.forge-field--invalid) ::slotted([slot=trailing]){color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54))}.forge-field--invalid:not(.forge-field--disabled) ::slotted([slot=trailing]){color:#b00020;color:var(--mdc-theme-error,#b00020)}.forge-field--disabled ::slotted([slot=trailing]){color:rgba(0,0,0,.38);color:var(--mdc-theme-text-disabled-on-light,rgba(0,0,0,.38));cursor:not-allowed;pointer-events:none}.forge-field ::slotted([slot=trailing]){margin:0 4px}.forge-field ::slotted([slot=trailing]:not(forge-icon-button)){padding:6px}.forge-field__addon-end-container{display:none}.forge-field--addon-end .forge-field__addon-end-container{height:100%;width:auto;display:-webkit-box;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;padding:0 4px;border-left-width:1px;border-left-style:solid;-webkit-transition:border-left-color .2s 0s cubic-bezier(0, 0, .2, 1);transition:border-left-color .2s 0s cubic-bezier(0, 0, .2, 1)}.forge-field:not(.forge-field--disabled):not(.forge-field--focused):not(.forge-field--invalid) .forge-field__addon-end-container{border-left-color:rgba(0,0,0,.54);border-left-color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54))}.forge-field:not(.forge-field--disabled):not(.forge-field--focused):not(.forge-field--invalid) .forge-field__addon-end-container:hover{border-left-color:rgba(0,0,0,.87);border-left-color:var(--mdc-theme-text-primary-on-background,rgba(0,0,0,.87))}.forge-field.forge-field--focused:not(.forge-field--invalid):not(.forge-field--disabled) .forge-field__addon-end-container{border-left-color:#3f51b5;border-left-color:var(--mdc-theme-primary,#3f51b5)}.forge-field.forge-field--invalid:not(.forge-field--disabled) .forge-field__addon-end-container{border-left-color:#b00020;border-left-color:var(--mdc-theme-error,#b00020)}.forge-field.forge-field--invalid:not(.forge-field--focused):not(.forge-field--disabled) .forge-field__addon-end-container:hover{border-left-color:#db8a98;border-left-color:var(--forge-theme-error-hover,#db8a98)}.forge-field.forge-field--disabled .forge-field__addon-end-container{border-left-color:rgba(0,0,0,.12);border-left-color:var(--mdc-theme-text-disabled-on-background,rgba(0,0,0,.12))}.forge-field:not(.forge-field--disabled):not(.forge-field--invalid) ::slotted([slot=addon-end]){color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54))}.forge-field--invalid:not(.forge-field--disabled) ::slotted([slot=addon-end]){color:#b00020;color:var(--mdc-theme-error,#b00020)}.forge-field--disabled ::slotted([slot=addon-end]){color:rgba(0,0,0,.38);color:var(--mdc-theme-text-disabled-on-light,rgba(0,0,0,.38));cursor:not-allowed;pointer-events:none}.forge-text-field{-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;position:relative;z-index:1;z-index:var(--forge-z-index-surface,1);margin-top:0;margin-top:var(--forge-text-field-margin-top,0)}.forge-text-field.forge-field--disabled{background-color:#f5f5f5;background-color:var(--forge-theme-form-field-disabled-on-background,#f5f5f5);cursor:not-allowed}.forge-text-field:not(.forge-text-field--textarea):not(.forge-field--dense):not(.forge-field--roomy){height:3rem;height:var(--forge-text-field-height,3rem)}.forge-text-field:not(.forge-text-field--textarea).forge-field--roomy:not(.forge-field--dense){height:3.5rem;height:var(--forge-text-field-height,3.5rem)}.forge-text-field:not(.forge-text-field--textarea).forge-field--dense:not(.forge-field--roomy){height:1.5rem;height:var(--forge-text-field-height,1.5rem)}.forge-text-field__leading-container{display:-webkit-box;display:flex;align-self:center}.forge-text-field--multi-input ::slotted(input:first-of-type){padding-right:0;max-width:110px;min-width:110px;width:110px}.forge-text-field--multi-input ::slotted(input:last-of-type)::-webkit-input-placeholder{padding-left:6px}.forge-text-field--multi-input ::slotted(input:last-of-type)::-moz-placeholder{padding-left:6px}.forge-text-field--multi-input ::slotted(input:last-of-type):-ms-input-placeholder{padding-left:6px}.forge-text-field--multi-input ::slotted(input:last-of-type)::-ms-input-placeholder{padding-left:6px}.forge-text-field--multi-input ::slotted(input:last-of-type)::placeholder{padding-left:6px}.forge-text-field--multi-input ::slotted([data-forge-multi-input-separator]){color:rgba(0,0,0,.87);color:var(--mdc-theme-text-primary-on-background,rgba(0,0,0,.87));border:transparent}.forge-text-field--multi-input.forge-field--label ::slotted([data-forge-multi-input-separator]){margin:20px 0 0 4px}.forge-text-field--multi-input:not(.forge-field--label) ::slotted([data-forge-multi-input-separator]){margin:0 0 0 4px}.forge-text-field.forge-text-field--textarea{height:auto;padding-right:2px;min-height:3rem;min-height:var(--forge-text-field-height,3rem)}.forge-text-field.forge-text-field--textarea ::slotted(textarea){-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:Roboto,sans-serif;font-family:var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));font-size:1rem;font-size:var(--mdc-typography-body1-font-size, 1rem);line-height:1.5rem;line-height:var(--mdc-typography-body1-line-height, 1.5rem);font-weight:400;font-weight:var(--mdc-typography-body1-font-weight,400);letter-spacing:.03125em;letter-spacing:var(--mdc-typography-body1-letter-spacing, .03125em);text-decoration:inherit;-webkit-text-decoration:var(--mdc-typography-body1-text-decoration,inherit);text-decoration:var(--mdc-typography-body1-text-decoration,inherit);text-transform:inherit;text-transform:var(--mdc-typography-body1-text-transform,inherit);align-self:flex-end;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;-webkit-transition:opacity 150ms 0s cubic-bezier(.4, 0, .2, 1);transition:opacity 150ms 0s cubic-bezier(.4, 0, .2, 1);border:none;background:0 0;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:0;line-height:normal;min-width:0;font-size:1rem;margin:28px 0 0;padding:0 12px 8px;overflow:auto;resize:vertical}.forge-text-field.forge-text-field--textarea ::slotted(textarea)::-webkit-input-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-text-field.forge-text-field--textarea ::slotted(textarea)::-moz-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-text-field.forge-text-field--textarea ::slotted(textarea):-ms-input-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-text-field.forge-text-field--textarea ::slotted(textarea)::-ms-input-placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-text-field.forge-text-field--textarea ::slotted(textarea)::placeholder{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-background,rgba(0,0,0,.54));font-size:.875rem}.forge-text-field.forge-text-field--textarea ::slotted(textarea):invalid{-webkit-box-shadow:none;box-shadow:none}.forge-text-field.forge-text-field--textarea ::slotted(textarea):-webkit-autofill{z-index:auto!important}.forge-text-field.forge-text-field--textarea:not(.forge-field--disabled) ::slotted(textarea){color:rgba(0,0,0,.87);color:var(--mdc-theme-text-primary-on-background,rgba(0,0,0,.87))}.forge-text-field.forge-text-field--textarea.forge-field--disabled ::slotted(textarea){color:rgba(0,0,0,.6);color:var(--forge-theme-form-field-text-disabled-on-background,rgba(0,0,0,.6));cursor:not-allowed}:host{display:block;contain:layout}:host([hidden]){display:none}';\n\nexport interface ITextFieldComponent extends IFieldComponent {}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'forge-text-field': ITextFieldComponent;\n }\n}\n\n/**\n * The web component class behind the `<forge-text-field>` custom element.\n * \n * @tag forge-text-field\n */\n@CustomElement({\n name: TEXT_FIELD_CONSTANTS.elementName\n})\nexport class TextFieldComponent extends FieldComponent<TextFieldFoundation> implements ITextFieldComponent {\n constructor() {\n super();\n attachShadowTemplate(this, template, styles);\n this._foundation = new TextFieldFoundation(new TextFieldAdapter(this));\n }\n}\n", "import { defineCustomElement } from '@tylertech/forge-core';\n\nimport { TextFieldComponent } from './text-field';\n\nexport * from './text-field-adapter';\nexport * from './text-field-component-delegate';\nexport * from './text-field-constants';\nexport * from './text-field-foundation';\nexport * from './text-field';\n\nexport function defineTextFieldComponent(): void {\n defineCustomElement(TextFieldComponent);\n}\n"],
5
+ "mappings": "yVAUO,IAAMA,EAAN,cAA+BC,CAA0C,CAI9E,YAAYC,EAAgC,CAC1C,MAAMA,EAAWC,EAAqB,UAAU,IAAI,EAJtD,KAAU,eAAgE,CAAC,EAC3E,KAAU,gCAAsD,CAAC,CAIjE,CAEO,YAAmB,CACxB,MAAM,WAAW,EACjB,KAAK,eAAiB,MAAM,KAAK,KAAK,WAAW,iBAAiB,wDAAwD,CAAC,EACvH,KAAK,eAAe,OAAS,GAC/B,KAAK,mBAAmB,CAE5B,CAEgB,SAAgB,CAC9B,MAAM,QAAQ,EACV,KAAK,iCACP,KAAK,gCAAgC,QAAQC,GAAMA,EAAG,WAAW,CAAC,CAEtE,CAEO,gBAAuB,CAC5B,KAAK,eAAeC,GAAS,CACvBA,aAAiB,oBACnB,KAAK,aAAa,UAAU,IAAIF,EAAqB,QAAQ,QAAQ,EAErE,KAAK,aAAa,UAAU,OAAOA,EAAqB,QAAQ,QAAQ,CAE5E,CAAC,CACH,CAEgB,iBAAiBG,EAAcC,EAAsC,CACnF,KAAK,eAAeF,GAASA,EAAM,iBAAiBC,EAAMC,CAAQ,CAAC,CACrE,CACgB,oBAAoBD,EAAcC,EAAsC,CAClF,KAAK,gBAAkB,KAAK,eAAe,OAAS,GACtD,KAAK,eAAeF,GAASA,EAAM,oBAAoBC,EAAMC,CAAQ,CAAC,CAE1E,CAEgB,wBAAwBC,EAAcD,EAAsC,CAC1F,KAAK,2BAA2B,EAChC,KAAK,eAAeF,GAAS,CAC3B,IAAMI,EAAkBC,EAAkBF,EAASH,EAAO,QAASE,CAAQ,EAC3E,KAAK,sBAAsB,KAAKE,CAAe,CACjD,CAAC,CACH,CAEgB,eAAyB,CACvC,OAAO,KAAK,YAAYJ,GAASA,EAAM,MAAQA,EAAM,MAAM,KAAK,EAAE,OAAS,EAAI,EAAK,CACtF,CAEgB,gBAA0B,CACxC,OAAO,KAAK,YAAYA,GAASA,EAAM,YAAcA,EAAM,YAAY,KAAK,EAAE,OAAS,EAAI,EAAK,CAClG,CAEgB,cAAcM,EAAsC,CAClE,IAAMC,EAAgBC,EAAiB,KAAK,WAAW,aAAa,EACpE,OAAO,KAAK,YAAYR,GAASA,IAAUM,GAAUN,IAAUO,CAAa,CAC9E,CAEgB,cAAcE,EAAyB,CACrD,KAAK,eAAeT,GAASA,EAAM,UAAU,IAAIS,CAAS,CAAC,CAC7D,CAEgB,iBAAiBA,EAAyB,CACxD,KAAK,eAAeT,GAASA,EAAM,UAAU,OAAOS,CAAS,CAAC,CAChE,CAEgB,0BAA0BP,EAAuD,CAC/F,KAAK,eAAeF,GAAS,CAC3B,IAAMU,EAAWC,EAA+BX,EAAOE,EAAUU,EAAgB,uBAAuB,EACxG,KAAK,gCAAgC,KAAKF,CAAQ,CACpD,CAAC,CACH,CAEgB,YAAsB,CACpC,OAAO,KAAK,YAAYV,GAASA,EAAM,aAAa,UAAU,CAAC,CACjE,CAEgB,YAAsB,CACpC,OAAO,KAAK,YAAYA,GAASA,EAAM,aAAa,UAAU,CAAC,CACjE,CAEU,YAAYa,EAAuD,CAC3E,OAAO,KAAK,eAAe,KAAKA,CAAM,CACxC,CAEU,eAAeA,EAAgE,CACvF,KAAK,eAAe,QAAQA,CAAM,CACpC,CAEU,oBAA2B,CACnCC,EAAShB,EAAqB,QAAQ,YAAa,KAAK,YAAY,EACpE,KAAK,eAAe,CAACE,EAAOe,IAAU,CACpCf,EAAM,aAAa,GAAGF,EAAqB,WAAW,eAAeiB,IAAS,EAAE,EAC5EA,EAAQ,IAAM,GAAK,CAAC,KAAK,WAAW,cAAc,IAAIjB,EAAqB,WAAW,wBAAwB,GAChH,QAAQ,QAAQ,EAAE,KAAK,IAAME,EAAM,sBAAsB,WAAY,KAAK,wBAAwB,CAAC,CAAC,CAExG,CAAC,CACH,CAEQ,yBAAuC,CAC7C,IAAMgB,EAAU,SAAS,cAAc,MAAM,EAC7C,OAAAA,EAAQ,aAAalB,EAAqB,WAAW,sBAAuB,EAAE,EAC9EkB,EAAQ,YAAc,IACfA,CACT,CACF,ECnHO,IAAMC,EAAN,cAAkCC,CAAgD,CACvF,YAAsBC,EAA6B,CACjD,MAAMA,CAAQ,EADM,cAAAA,CAEtB,CAEO,YAAmB,CACxB,MAAM,WAAW,EACjB,KAAK,SAAS,eAAe,CAC/B,CACF,ECRA,IAAMC,EAAW,kiBACXC,EAAS,w2pBAkBFC,EAAN,cAAiCC,CAAmE,CACzG,aAAc,CACZ,MAAM,EACNC,EAAqB,KAAMJ,EAAUC,CAAM,EAC3C,KAAK,YAAc,IAAII,EAAoB,IAAIC,EAAiB,IAAI,CAAC,CACvE,CACF,EANaJ,EAANK,EAAA,CAHNC,EAAc,CACb,KAAMC,EAAqB,WAC7B,CAAC,GACYP,GCfN,SAASQ,GAAiC,CAC/CC,EAAoBC,CAAkB,CACxC",
6
+ "names": ["TextFieldAdapter", "FieldAdapter", "component", "TEXT_FIELD_CONSTANTS", "mo", "input", "type", "listener", "context", "destroyListener", "listenOwnProperty", "target", "activeElement", "getActiveElement", "className", "observer", "createElementAttributeObserver", "FIELD_CONSTANTS", "action", "addClass", "index", "divider", "TextFieldFoundation", "FieldFoundation", "_adapter", "template", "styles", "TextFieldComponent", "FieldComponent", "attachShadowTemplate", "TextFieldFoundation", "TextFieldAdapter", "__decorateClass", "CustomElement", "TEXT_FIELD_CONSTANTS", "defineTextFieldComponent", "defineCustomElement", "TextFieldComponent"]
7
+ }
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{b as Z}from"./chunk.H5IFZCUL.js";import{c as pe}from"./chunk.DXA626CF.js";import{a as le,b as ae}from"./chunk.EYGSUZWX.js";import{a as F}from"./chunk.64BPRKXV.js";import{a as re}from"./chunk.IX2UHMIM.js";import{a as oe}from"./chunk.LKL5KWVY.js";import{h as ue,i as de}from"./chunk.YKZ36ELA.js";import{b as se}from"./chunk.RQG6GVOI.js";import{c as ie}from"./chunk.K57IO236.js";import{e as te}from"./chunk.AJTQHK25.js";import{b as ee}from"./chunk.P73BXRKY.js";import{a as C,e as ne}from"./chunk.WCSVKQR2.js";import{c as W,g as K,h as q}from"./chunk.MZLPUI6R.js";import{a as D}from"./chunk.YI4JTY4T.js";import{d as j,l as Q,m as J}from"./chunk.B5TEOESG.js";import{a as z}from"./chunk.2KXSGD3S.js";import{b as $,i as Y,j as X}from"./chunk.KYH5GKVI.js";import{a as R}from"./chunk.UWYANU5D.js";import{a}from"./chunk.KTGSZEAG.js";import{a as H,b as G,c as V}from"./chunk.DL7NX432.js";import{a as N,e as U,g as L}from"./chunk.LJLEPTLU.js";import{m as B,r as M,s as k,u as A}from"./chunk.4LA6HEA7.js";import{a as y,b as h,c as x,j as T,k as f,l as S,n as w,o as P}from"./chunk.J2M2MXP2.js";import{a as E,f as p}from"./chunk.MCIQXNKY.js";var g=`${G}autocomplete`,ve={MODE:"mode",MULTIPLE:"multiple",DEBOUNCE:"debounce",FILTER_ON_FOCUS:"filter-on-focus",FILTER_FOCUS_FIRST:"filter-focus-first",ALLOW_UNMATCHED:"allow-unmatched",POPUP_TARGET:"popup-target",POPUP_CLASSES:"popup-classes",OPTION_LIMIT:"option-limit",OBSERVE_SCROLL:"observe-scroll",OBSERVE_SCROLL_THRESHOLD:"observe-scroll-threshold",SYNC_POPUP_WIDTH:"sync-popup-width",OPEN:"open",MATCH_KEY:"match-key",FILTER_TEXT:"filter-text",DROPDOWN_ICON_OPEN:"data-forge-dropdown-icon-open"},be={INPUT:re.selectors.INPUT,DROPDOWN_ICON:"[data-forge-dropdown-icon],[data-forge-dropdown-icon],[forge-dropdown-icon],.forge-dropdown-icon",CLEAR_BUTTON:"[data-forge-autocomplete-clear],[forge-autocomplete-clear]"},ge={DEFAULT_DEBOUNCE_TIME:500,NUM_SKELETON_ITEMS:3},Oe={CHANGE:`${g}-change`,SELECT:`${g}-select`,SCROLLED_BOTTOM:`${g}-scrolled-bottom`},o={elementName:g,attributes:ve,selectors:be,numbers:ge,events:Oe},ce=(e=>(e.Default="default",e.Stateless="stateless",e))(ce||{});var O=class extends R{constructor(e){super(e);this.setInputElement()}get inputElement(){return this._inputElement}setInputElement(){let e=M(this._component,o.selectors.INPUT,!1);return e.length&&(this._inputElement=e[0]),this._inputElement}setInputAttribute(e,t){this._inputElement.setAttribute(e,t)}addInputListener(e,t){this._inputElement.addEventListener(e,t)}removeInputListener(e,t){this._inputElement.removeEventListener(e,t)}initializeInputAccessibility(e){this._inputElement.setAttribute("autocomplete","off"),this._inputElement.setAttribute("role","combobox"),this._inputElement.setAttribute("aria-live","polite"),this._inputElement.setAttribute("aria-atomic","true"),this._inputElement.setAttribute("aria-haspopup","true"),this._inputElement.setAttribute("aria-expanded","false"),this._inputElement.setAttribute("aria-autocomplete","list"),Y(),X(this._inputElement)}isWrappingChipField(){return!!this._component.querySelector(F.elementName)}show(e,t){this._targetElement=this._getTargetElement(t),this._targetElement&&(this._listDropdown=new ue(this._targetElement,e),this._listDropdown.open(),this._inputElement.setAttribute("aria-expanded","true"),this._inputElement.setAttribute("aria-controls",`list-dropdown-popup-${e.id}`),this._tryToggleDropdownIconRotation(!0))}hide(e){if(!this._listDropdown)return;let{targetElement:t}=this._listDropdown.dropdownElement;t.removeEventListener(C.events.BLUR,e),this.setBusyVisibility(!1),this._tryToggleDropdownIconRotation(!1),this._inputElement.removeAttribute("aria-activedescendant"),this._inputElement.removeAttribute("aria-controls"),this._inputElement.setAttribute("aria-expanded","false"),this._listDropdown.close(),this._listDropdown=void 0}setBusyVisibility(e){var t;(t=this._listDropdown)==null||t.setBusyVisibility(e)}setDismissListener(e){if(!this._listDropdown||!this._listDropdown.dropdownElement)return;let t=this._listDropdown.dropdownElement;t.targetElement&&t.targetElement.addEventListener(C.events.BLUR,e)}focus(){window.requestAnimationFrame(()=>this._inputElement.focus())}setOptions(e){var t;(t=this._listDropdown)==null||t.setOptions(e)}appendOptions(e){var t;(t=this._listDropdown)==null||t.appendOptions(e)}setSelectedText(e){this._inputElement.value=e}getInputValue(){return this._inputElement.value}setInputValue(e){this._inputElement.value=e}selectInputValue(){window.requestAnimationFrame(()=>this._inputElement.select())}isFocusWithinPopup(e){return!this._listDropdown||!this._listDropdown.dropdownElement?!1:this._listDropdown.dropdownElement.contains(e)}hasFocus(){let e=k(this._component.ownerDocument);return e===this._inputElement||this.isFocusWithinPopup(e)}hasInputElement(){return!!this._inputElement}setDropdownIconListener(e,t){window.requestAnimationFrame(()=>{let i=this._component.querySelector(o.selectors.DROPDOWN_ICON);i&&i.addEventListener(e,t)})}removeDropdownIconListener(e,t){let i=this._component.querySelector(o.selectors.DROPDOWN_ICON);i&&i.removeEventListener(e,t)}setClearButtonListener(e,t){window.requestAnimationFrame(()=>{let i=this._component.querySelector(o.selectors.CLEAR_BUTTON);i&&i.addEventListener(e,t)})}removeClearButtonListener(e,t){let i=this._component.querySelector(o.selectors.CLEAR_BUTTON);i&&i.removeEventListener(e,t)}propagateKey(e){var t;(t=this._listDropdown)==null||t.handleKey(e)}updateActiveDescendant(e){!this._targetElement||A(this._inputElement,!!e,"aria-activedescendant",e)}getTargetElementWidth(e){return this._targetElement||(this._targetElement=this._getTargetElement(e)),this._targetElement.getBoundingClientRect().width}getPopupElement(){var e,t;return(t=(e=this._listDropdown)==null?void 0:e.dropdownElement)!=null?t:null}activateFirstOption(){var e;(e=this._listDropdown)==null||e.activateFirstOption()}activateSelectedOption(){var e;(e=this._listDropdown)==null||e.activateSelectedOption()}activateOptionByIndex(e){var t;(t=this._listDropdown)==null||t.activateOption(e)}getActiveOptionIndex(){var e,t;return(t=(e=this._listDropdown)==null?void 0:e.getActiveOptionIndex())!=null?t:null}clearActiveOption(){var e;(e=this._listDropdown)==null||e.clearActiveOption()}setSelectedOptions(e){if(this._listDropdown){let t=e.map(i=>i.value);this._listDropdown.setSelectedValues(t)}}queueDropdownPositionUpdate(){!this.getPopupElement()||window.requestAnimationFrame(()=>{let e=this.getPopupElement();e==null||e.position()})}_getTargetElement(e){return e?this._component.querySelector(e)||this._getDefaultTargetElement():this._getDefaultTargetElement()}_getDefaultTargetElement(){let e=this._component.querySelector("forge-text-field");if(e&&e.shadowRoot){let i=L(e,le.selectors.ROOT);if(i)return i}let t=this._component.querySelector("forge-chip-field");if(t&&t.shadowRoot){let i=L(t,F.selectors.ROOT);if(i)return i}return this._component.querySelector("input")||this._component}_tryToggleDropdownIconRotation(e){let t=this._component.querySelector(o.selectors.DROPDOWN_ICON);t&&A(t,e,o.attributes.DROPDOWN_ICON_OPEN)}};var he=(e=>(e[e.Option=0]="Option",e[e.Group=1]="Group",e))(he||{});function v(u,d){let e=u.some(i=>h(i)&&T(i)&&i.hasOwnProperty("options")&&(i.hasOwnProperty("text")||i.hasOwnProperty("builder"))),t=u.some(i=>h(i)&&T(i)&&i.hasOwnProperty("label")&&i.hasOwnProperty("value"));return e&&d===1||t&&d===0}function _e(u,d){return u.find(e=>e.value===d)}function b(u,d,e=null){return e?!(e in u.value)||!(e in d)?!1:w(u.value[e],d[e]):w(u.value,d)}var I=class extends de{constructor(e){super();this._adapter=e;this._isInitialized=!1;this._isDropdownOpen=!1;this._mode="default";this._multiple=!1;this._debounce=o.numbers.DEFAULT_DEBOUNCE_TIME;this._allowUnmatched=!1;this._filterOnFocus=!0;this._filterFocusFirst=!0;this._options=[];this._filterText="";this._selectedOptions=[];this._values=[];this._pendingFilterPromises=[];this._matchKey=null;this._clickListener=t=>this._onClick(t),this._focusListener=()=>this._onFocus(),this._blurListener=t=>this._onBlur(t),this._keydownListener=t=>this._onKeydown(t),this._dropdownIconClickListener=t=>this._onDropdownIconClick(t),this._dropdownScrollEndListener=()=>this._onDropdownScrollEnd(),this._dropdownIconMouseDownListener=t=>this._onDropdownIconMouseDown(t),this._clearButtonListener=t=>this._onClear(t),this._dismissListener=()=>this._onDismiss(),this._activeChangeListener=t=>this._adapter.updateActiveDescendant(t),this._targetWidthCallback=()=>this._adapter.getTargetElementWidth(this._popupTarget),this._identifier=y()}async initialize(){if(!this._adapter.hasInputElement()&&!this._adapter.setInputElement())throw new Error("An input element is required as a child of the autocomplete component.");if(this._setInputListener(),this._setFilterCallback(),this._attachListeners(),this._initializeAccessibility(),this._values.length){if(!this._selectedOptions.length){try{await this._executeFilter()}catch(e){console.error(e)}this._updateSelectedOptions(this._values)}this._adapter.setSelectedText(this._getSelectedText())}this._isInitialized=!0}disconnect(){this._isInitialized&&(this._detachListeners(),this._isInitialized=!1),this._isDropdownOpen&&this._closeDropdown()}async forceFilter({preserveValue:e}){this._options=[],await this._executeFilter(!0,!0),e&&this._options.push(...this._selectedOptions),this._applyValue(this._values)}_attachListeners(){this._adapter.addInputListener("click",this._clickListener),this._adapter.addInputListener("focus",this._focusListener),this._adapter.addInputListener("blur",this._blurListener),this._adapter.addInputListener("input",this._inputListener),this._adapter.addInputListener("keydown",this._keydownListener),this._adapter.setDropdownIconListener("click",this._dropdownIconClickListener),this._adapter.setDropdownIconListener("mousedown",this._dropdownIconMouseDownListener),this._adapter.setClearButtonListener("click",this._clearButtonListener)}_detachListeners(){this._adapter.removeInputListener("click",this._clickListener),this._adapter.removeInputListener("focus",this._focusListener),this._adapter.removeInputListener("blur",this._blurListener),this._adapter.removeInputListener("input",this._inputListener),this._adapter.removeInputListener("keydown",this._keydownListener),this._adapter.removeDropdownIconListener("click",this._dropdownIconClickListener),this._adapter.removeDropdownIconListener("mousedown",this._dropdownIconMouseDownListener),this._adapter.removeClearButtonListener("click",this._clearButtonListener)}_setInputListener(){this._inputListener=e=>this._onInput(e)}_setFilterCallback(){this._filterFn=h(this._debounce)&&this._debounce>0?P(this._debounceFilter,this._debounce,!1):this._debounceFilter}_initializeAccessibility(){this._adapter.initializeInputAccessibility(this._identifier)}get _flatOptions(){return v(this._options,1)?this._options.reduce((e,t)=>e.concat(t.options),[]):this._options}_onClick(e){!this._isDropdownOpen&&this._filterOnFocus&&this._showDropdown()}_onDropdownIconMouseDown(e){e.preventDefault()}_onDropdownIconClick(e){this._isDropdownOpen?this._closeDropdown():(this._adapter.focus(),window.requestAnimationFrame(()=>this._showDropdown()))}_onClear(e){this._filterText="",this._clearValue(),this._adapter.setSelectedText(this._getSelectedText())}_onDropdownScrollEnd(){this._adapter.emitHostEvent(o.events.SCROLLED_BOTTOM)}_onFocus(){!this._isDropdownOpen&&this._adapter.getInputValue()&&!D.isMobile&&this._adapter.selectInputValue()}_onBlur(e){this._adapter.isFocusWithinPopup(e.relatedTarget)||this._applyBlur()}_applyBlur(){this._isDropdownOpen&&this._closeDropdown(),this._mode!=="stateless"&&(this._selectedOptions.length?this._adapter.setSelectedText(this._getSelectedText()):this._allowUnmatched||(this._filterText="",this._adapter.setSelectedText("")))}_onInput(e){this._selectedOptions.length&&!this._multiple&&(!this._adapter.getInputValue()||this._allowUnmatched)&&!this._adapter.isWrappingChipField()&&(this._selectedOptions=[],this._values=[],this._emitChangeEvent()),this._filterText=this._adapter.getInputValue(),this._filterFn()}async _debounceFilter({checkFocus:e=!0}={}){if(!e&&!this._adapter.hasFocus()){this._pendingFilterPromises=[],this._isDropdownOpen&&this._closeDropdown();return}let t=this._filterText,i=this._executeFilter();this._pendingFilterPromises.push(i),this._isDropdownOpen?this._adapter.setBusyVisibility(!0):this._showDropdown({filter:!1});try{await i}catch(n){this._pendingFilterPromises=[],this._isDropdownOpen&&this._closeDropdown();return}if(t===this._filterText)this._pendingFilterPromises=[],this._onFilterComplete();else{let n=this._pendingFilterPromises.indexOf(i);n!==-1&&this._pendingFilterPromises.splice(n,1)}}_onKeydown(e){switch(e.key){case"Tab":this._isDropdownOpen&&!this._multiple&&this._selectActiveOption(!1);break;case"Esc":case"Escape":this._isDropdownOpen&&(e.preventDefault(),e.stopPropagation(),this._closeDropdown());break;case"Down":case"ArrowDown":e.preventDefault(),this._isDropdownOpen?this._adapter.propagateKey(e.key):this._showDropdown({activateFirst:!0,activateSelected:!0});break;case"Up":case"ArrowUp":e.preventDefault(),this._isDropdownOpen&&this._adapter.propagateKey(e.key);break;case"Enter":case"Home":case"End":this._isDropdownOpen&&(e.key==="Enter"&&e.stopPropagation(),e.preventDefault(),this._adapter.propagateKey(e.key));break;case"Backspace":case"Delete":let t=e.target,i=this._adapter.getInputValue(),n=t.value.substring(t.selectionStart,t.selectionEnd)===t.value,l=i.length===1&&t.selectionEnd===1,c=i.length===1&&t.selectionEnd===0,_=!i||n||l||c;!this._adapter.isWrappingChipField()&&_&&!this._multiple&&this._values.length&&this._clearValue();break}}_executeFilter(e=!0,t=!1){if(!this._filter||typeof this._filter!="function")throw new Error('A filter callback must be provided. Did you set the "filter" property?');let i=this._filter,n=e?this._filterText:"",l=t?this._getValue():null;return new Promise((c,_)=>Promise.resolve(i(n,l)).then(r=>{this._options=r,c(this._options)}).catch(r=>_(`An unexpected error occurred while filtering: ${r}`)))}_onFilterComplete(){if(!this._adapter.hasFocus()){this._isDropdownOpen&&this._closeDropdown();return}if(this._options.length){let e=this._allowUnmatched&&!this._selectedOptions.length;this._dropdownReady({userTriggered:e}),this._filterFocusFirst&&this._filterText&&this._adapter.activateFirstOption()}else this._closeDropdown()}_clearValue(){this._selectedOptions=[],this._values=[],this._isDropdownOpen&&(this._adapter.setSelectedOptions([]),this._adapter.clearActiveOption()),this._emitChangeEvent()}async _showDropdown({filter:e=!0,userTriggered:t=!0,activateFirst:i=!1,activateSelected:n=!1}={}){let l=this._allowUnmatched&&!this._selectedOptions.length;this._isDropdownOpen=!0;let c;if(this._optionBuilder){let r=this._optionBuilder;c=(m,fe)=>r(m,this._filterText,fe)}let _={options:this._options,referenceElement:this._adapter.inputElement,multiple:this._multiple,selectedValues:[...this._values],id:`forge-autocomplete-${this._identifier}`,asyncStyle:"skeleton",optionLimit:this._optionLimit,popupClasses:this._popupClasses,headerBuilder:this._popupHeaderBuilder,footerBuilder:this._popupFooterBuilder,transform:r=>{if(this._filterText){let m=$(r,this._filterText);if(m)return m}return r},allowBusy:!0,optionBuilder:c,syncWidth:this._syncPopupWidth,observeScroll:this._observeScroll,observeScrollThreshold:this._observeScrollThreshold,scrollEndListener:this._dropdownScrollEndListener,activeChangeCallback:this._activeChangeListener,targetWidthCallback:this._targetWidthCallback,selectCallback:r=>this._onSelect(r),closeCallback:()=>this._closeDropdown()};if(this._adapter.show(_,this._popupTarget),this._adapter.toggleHostAttribute(o.attributes.OPEN,this._isDropdownOpen),e){this._options.length&&this._adapter.setBusyVisibility(!0);try{await this._executeFilter(l)}catch(r){console.error(r)}this._updateSelectedOptions(this._values)}this._pendingFilterPromises.length||this._dropdownReady({userTriggered:t,activateFirst:i,activateSelected:n})}_dropdownReady({userTriggered:e=!0,activateFirst:t=!1,activateSelected:i=!1}={}){if(!this._isDropdownOpen||!this._options.length||e&&!this._adapter.hasFocus()){this._closeDropdown();return}this._sortSelectedOptions(),this._adapter.setBusyVisibility(!1),this._adapter.setOptions(this._options),this._adapter.setSelectedOptions(this._selectedOptions),this._adapter.setDismissListener(this._dismissListener),i&&this._selectedOptions.length?this._adapter.activateSelectedOption():t&&this._adapter.activateFirstOption()}_closeDropdown(){this._multiple&&(this._filterText=""),this._isDropdownOpen=!1,this._adapter.hide(this._dismissListener),this._sortSelectedOptions(),this._adapter.toggleHostAttribute(o.attributes.OPEN,this._isDropdownOpen)}_sortSelectedOptions(){if(this._multiple&&this._selectedOptions.length&&v(this._options,0)){let e=[],t=[];this._options.forEach(i=>{this._selectedOptions.find(n=>b(n,i.value,this._matchKey))?e.push(i):t.push(i)}),this._options=[...e,...t]}}async _onSelect(e,t=!0){if(this._valueChanging)return;if(this._mode==="stateless"){let n={value:e};this._adapter.emitHostEvent(o.events.SELECT,n,!0,!0)&&(this._filterText="",this._multiple||this._closeDropdown());return}let i=()=>{let l=this._flatOptions.find(r=>b(r,e,this._matchKey)),c=l?l.value:"",_=l?l.label:"";if(this._multiple){let r=_e(this._selectedOptions,c);if(r){let m=this._selectedOptions.indexOf(r);this._selectedOptions.splice(m,1)}else this._selectedOptions.push(l)}else h(c)?(this._selectedOptions[0]=l,this._filterText=_):(this._selectedOptions=[],this._filterText="");this._isDropdownOpen&&this._adapter.setSelectedOptions(this._selectedOptions),this._values=this._selectedOptions.map(r=>r.value),this._adapter.setSelectedText(this._getSelectedText()),!D.isMobile&&t&&this._adapter.selectInputValue(),this._emitChangeEvent(),this._tryUpdateDropdownPosition()};this._isDropdownOpen&&!this._multiple&&this._closeDropdown(),typeof this._beforeValueChange=="function"?(this._valueChanging=Promise.resolve(this._beforeValueChange.call(null,e,this._matchKey)),await this._valueChanging?i():this._tryUpdateDropdownPosition(),this._valueChanging=void 0):i()}_selectActiveOption(e=!0){let t=this._adapter.getActiveOptionIndex();if(typeof t=="number"&&t>=0){let i=this._flatOptions[t];i&&this._onSelect(i.value,e)}}_emitChangeEvent(){this._adapter.emitHostEvent(o.events.CHANGE,this._getValue(),!0)}_tryUpdateDropdownPosition(){this._isDropdownOpen&&this._adapter.queueDropdownPositionUpdate()}_getValue(){return this._values?this._values.length?this._multiple?[...this._values]:this._values[0]:this._multiple?[]:null:null}_getSelectedText(){var e,t;return this._adapter.isWrappingChipField()?"":this._selectedTextBuilder?this._selectedTextBuilder(this._selectedOptions):this._multiple?this._values.length?this._values.length===1?(t=(e=this._selectedOptions[0])==null?void 0:e.label)!=null?t:"":`${this._values.length} options selected`:"":this._selectedOptions.filter(i=>i&&i.label).map(i=>i.label).join(" ").trim()}_onDismiss(){this._closeDropdown()}async _applyValue(e){let t=[];this._selectedOptions=[],Array.isArray(e)?t=e:t=h(e)?[e]:[],!this._multiple&&t.length>1&&(t=[t[0]]),v(t,0)?(this._values=t.map(n=>n.value),this._selectedOptions=t):this._values=t;let i=this._flatOptions;if(t.length&&i.length&&this._updateSelectedOptions(t),this._values.length&&!this._selectedOptions.length&&!!this._filter&&this._isInitialized){try{await this._executeFilter(!1,!0)}catch(n){console.error(n)}this._updateSelectedOptions(this._values)}this._multiple?this._filterText="":this._filterText=this._selectedOptions.length?this._selectedOptions[0].label:"",this._isInitialized&&this._adapter.setSelectedText(this._getSelectedText()),this._isDropdownOpen&&this._adapter.setSelectedOptions(this._selectedOptions)}_updateSelectedOptions(e){let t=[...this._flatOptions,...this._selectedOptions];if(this._selectedOptions.length&&(this._selectedOptions=[]),v(e,0))for(let i of e){let n=t.find(l=>b(l,i.value,this._matchKey));n?this._selectedOptions.push(n):this._selectedOptions.push(i)}else for(let i of e){let n=t.find(l=>b(l,i,this._matchKey));n?this._selectedOptions.push(n):this._allowUnmatched&&this._selectedOptions.push({label:i,value:i})}}get mode(){return this._mode}set mode(e){this._mode!==e&&(this._mode=e,this._mode==="stateless"&&(this._selectedOptions=[],this._isDropdownOpen&&this._closeDropdown()),this._adapter.setHostAttribute(o.attributes.MODE,this._mode))}get multiple(){return this._multiple}set multiple(e){this._multiple!==e&&(this._multiple=e,this._adapter.setHostAttribute(o.attributes.MULTIPLE,h(this._multiple)?this._multiple.toString():""))}get value(){return this._getValue()}set value(e){let t=[];e==null?t=[]:Array.isArray(e)?t=structuredClone(e):x(e)?t=[e]:t=[structuredClone(e)],(t.length!==this._values.length||t.some(n=>!this._values.includes(n)))&&this._applyValue(e)}get filterOnFocus(){return this._filterOnFocus}set filterOnFocus(e){this._filterOnFocus!==e&&(this._filterOnFocus=e,this._adapter.setHostAttribute(o.attributes.FILTER_ON_FOCUS,h(this._filterOnFocus)?this._filterOnFocus.toString():""))}get filterFocusFirst(){return this._filterFocusFirst}set filterFocusFirst(e){this._filterFocusFirst!==e&&(this._filterFocusFirst=e,this._adapter.toggleHostAttribute(o.attributes.FILTER_FOCUS_FIRST,this._filterFocusFirst))}get allowUnmatched(){return this._allowUnmatched}set allowUnmatched(e){this._allowUnmatched!==e&&(this._allowUnmatched=e,h(this._allowUnmatched)&&this._adapter.setHostAttribute(o.attributes.ALLOW_UNMATCHED,this._allowUnmatched.toString()))}get matchKey(){return this._matchKey}set matchKey(e){this._matchKey!==e&&(this._matchKey=e)}get popupTarget(){return this._popupTarget}set popupTarget(e){this._popupTarget!==e&&(this._popupTarget=e)}get filterText(){return this._filterText}set filterText(e){this._filterText!==e&&(this._filterText=this._allowUnmatched?e:"",this._isInitialized&&this._allowUnmatched&&(this._adapter.setInputValue(this._filterText),this._isDropdownOpen&&this._debounceFilter({checkFocus:!1})))}get popupClasses(){return Array.isArray(this._popupClasses)?[...this._popupClasses]:[this._popupClasses]}set popupClasses(e){this._popupClasses!==e&&(this._popupClasses=Array.isArray(e)?[...e]:[e])}set popupHeaderBuilder(e){this._popupHeaderBuilder=e}set popupFooterBuilder(e){this._popupFooterBuilder=e}get syncPopupWidth(){return this._syncPopupWidth}set syncPopupWidth(e){this._syncPopupWidth!==e&&(this._syncPopupWidth=e)}get optionLimit(){return this._optionLimit}set optionLimit(e){this._optionLimit!==e&&(this._optionLimit=e)}get debounce(){return this._debounce}set debounce(e){this._debounce!==e&&(this._debounce=e,this._isInitialized&&this._setFilterCallback(),this._adapter.setHostAttribute(o.attributes.DEBOUNCE,h(this._debounce)?this._debounce.toString():""))}get optionBuilder(){return this._optionBuilder}set optionBuilder(e){this._optionBuilder=e}get filter(){return this._filter}set filter(e){this._filter!==e&&(this._filter=e,this._isInitialized&&this._values.length&&!this._flatOptions.length&&!!this._filter&&this._executeFilter().then(()=>{this._updateSelectedOptions(this._values),this._adapter.setSelectedText(this._getSelectedText())}))}get selectedTextBuilder(){return this._selectedTextBuilder}set selectedTextBuilder(e){this._selectedTextBuilder=e,this._selectedOptions.length&&this._adapter.setSelectedText(this._getSelectedText())}get observeScroll(){return this._observeScroll}set observeScroll(e){this._observeScroll=e}get observeScrollThreshold(){return this._observeScrollThreshold}set observeScrollThreshold(e){this._observeScrollThreshold=e}appendOptions(e){!this._isDropdownOpen||(this._options=[...this._options,...e],this._adapter.appendOptions(e))}get isInitialized(){return this._isInitialized}get open(){return this._isDropdownOpen}set open(e){this._isDropdownOpen!==e&&(e?this._showDropdown({userTriggered:!1}):this._closeDropdown())}get beforeValueChange(){return this._beforeValueChange}set beforeValueChange(e){e!==this._beforeValueChange&&(this._beforeValueChange=e)}get popupElement(){return this._adapter.getPopupElement()}};var Ie="<template><slot></slot></template>",Ee=":host{display:block}:host([hidden]){display:none}",s=class extends oe{constructor(){super();j.define([W,q,K]),U(this,Ie,Ee),this._foundation=new I(new O(this))}static get observedAttributes(){return[o.attributes.MODE,o.attributes.MULTIPLE,o.attributes.DEBOUNCE,o.attributes.FILTER_ON_FOCUS,o.attributes.FILTER_FOCUS_FIRST,o.attributes.ALLOW_UNMATCHED,o.attributes.POPUP_TARGET,o.attributes.POPUP_CLASSES,o.attributes.OBSERVE_SCROLL,o.attributes.OBSERVE_SCROLL_THRESHOLD,o.attributes.OPTION_LIMIT,o.attributes.SYNC_POPUP_WIDTH,o.attributes.OPEN,o.attributes.MATCH_KEY,o.attributes.FILTER_TEXT]}connectedCallback(){this.querySelector(o.selectors.INPUT)?this._foundation.initialize():B(this,o.selectors.INPUT).then(()=>this._foundation.initialize())}disconnectedCallback(){this._foundation.disconnect()}attributeChangedCallback(e,t,i){switch(super.attributeChangedCallback(e,t,i),e){case o.attributes.MODE:this.mode=i;break;case o.attributes.MULTIPLE:this.multiple=f(i);break;case o.attributes.DEBOUNCE:this.debounce=S(i);break;case o.attributes.FILTER_ON_FOCUS:this.filterOnFocus=f(i);break;case o.attributes.FILTER_FOCUS_FIRST:this.filterFocusFirst=f(i);break;case o.attributes.ALLOW_UNMATCHED:this.allowUnmatched=f(i);break;case o.attributes.POPUP_TARGET:this.popupTarget=i;break;case o.attributes.OPEN:this.open=f(i);break;case o.attributes.MATCH_KEY:this.matchKey=i;break;case o.attributes.FILTER_TEXT:this.filterText=i;break}}appendOptions(e){this._foundation.appendOptions(e)}openDropdown(){this.open=!0}closeDropdown(){this.open=!1}forceFilter(e={preserveValue:!1}){this._foundation.forceFilter(e)}};p([a()],s.prototype,"mode",2),p([a()],s.prototype,"multiple",2),p([a()],s.prototype,"value",2),p([a()],s.prototype,"debounce",2),p([a()],s.prototype,"filterOnFocus",2),p([a()],s.prototype,"filterFocusFirst",2),p([a()],s.prototype,"allowUnmatched",2),p([a()],s.prototype,"popupTarget",2),p([a()],s.prototype,"filterText",2),p([a()],s.prototype,"optionBuilder",2),p([a()],s.prototype,"filter",2),p([a()],s.prototype,"selectedTextBuilder",2),p([a()],s.prototype,"open",2),p([a()],s.prototype,"matchKey",2),p([a({set:!1})],s.prototype,"isInitialized",2),p([a({set:!1})],s.prototype,"popupElement",2),p([a()],s.prototype,"beforeValueChange",2),s=p([H({name:o.elementName,dependencies:[pe,ne,ie,te,Z,se,ee,Q]})],s);var me=class extends z{constructor(e){super(e)}_build(){let e=document.createElement(o.elementName);return this._attachTextField(e),e}get textFieldDelegate(){return this._textFieldDelegate}get value(){return this._element.value}set value(e){this._element.value=e}get disabled(){return this._textFieldDelegate.inputElement.disabled}set disabled(e){this._textFieldDelegate.inputElement.disabled=e}get invalid(){return this._textFieldDelegate.invalid||!1}set invalid(e){this._textFieldDelegate.invalid=e}onChange(e){this._element.addEventListener(o.events.CHANGE,t=>e(t.detail))}onFocus(e){this._textFieldDelegate.inputElement.addEventListener("focus",t=>e(t))}onBlur(e){this._textFieldDelegate.inputElement.addEventListener("blur",t=>e(t))}_attachTextField(e){var i,n,l,c,_,r;let t={props:E({},(n=(i=this._config.options)==null?void 0:i.textFieldDelegateConfig)==null?void 0:n.props),options:E({},(c=(l=this._config.options)==null?void 0:l.textFieldDelegateConfig)==null?void 0:c.options)};t.options||(t.options={}),((_=this._config.options)==null?void 0:_.useDropdownIcon)!==!1&&!((r=t.options)!=null&&r.trailingElement)&&(t.options.trailingElement=this._createDropdownIconElement()),this._textFieldDelegate=new ae(t),e.appendChild(this._textFieldDelegate.element)}_createDropdownIconElement(){let e={props:{slot:"trailing",name:"arrow_drop_down"},options:{attributes:{"forge-dropdown-icon":""}}};return new J(e).element}};function Kt(){N(s)}export{o as a,ce as b,O as c,he as d,v as e,_e as f,b as g,I as h,s as i,me as j,Kt as k};
7
- //# sourceMappingURL=chunk.HMJ3REU5.js.map
6
+ import{b as Z}from"./chunk.H5IFZCUL.js";import{c as pe}from"./chunk.PKZQ4SBU.js";import{a as le,b as ae}from"./chunk.EYGSUZWX.js";import{a as F}from"./chunk.64BPRKXV.js";import{a as re}from"./chunk.IX2UHMIM.js";import{a as oe}from"./chunk.LKL5KWVY.js";import{h as ue,i as de}from"./chunk.YKZ36ELA.js";import{b as se}from"./chunk.RQG6GVOI.js";import{c as ie}from"./chunk.K57IO236.js";import{e as te}from"./chunk.AJTQHK25.js";import{b as ee}from"./chunk.P73BXRKY.js";import{a as C,e as ne}from"./chunk.WCSVKQR2.js";import{c as W,g as K,h as q}from"./chunk.MZLPUI6R.js";import{a as D}from"./chunk.YI4JTY4T.js";import{d as j,l as Q,m as J}from"./chunk.B5TEOESG.js";import{a as z}from"./chunk.2KXSGD3S.js";import{b as $,i as Y,j as X}from"./chunk.KYH5GKVI.js";import{a as R}from"./chunk.UWYANU5D.js";import{a}from"./chunk.KTGSZEAG.js";import{a as H,b as G,c as V}from"./chunk.DL7NX432.js";import{a as N,e as U,g as L}from"./chunk.LJLEPTLU.js";import{m as B,r as M,s as k,u as A}from"./chunk.4LA6HEA7.js";import{a as y,b as h,c as x,j as T,k as f,l as S,n as w,o as P}from"./chunk.J2M2MXP2.js";import{a as E,f as p}from"./chunk.MCIQXNKY.js";var g=`${G}autocomplete`,ve={MODE:"mode",MULTIPLE:"multiple",DEBOUNCE:"debounce",FILTER_ON_FOCUS:"filter-on-focus",FILTER_FOCUS_FIRST:"filter-focus-first",ALLOW_UNMATCHED:"allow-unmatched",POPUP_TARGET:"popup-target",POPUP_CLASSES:"popup-classes",OPTION_LIMIT:"option-limit",OBSERVE_SCROLL:"observe-scroll",OBSERVE_SCROLL_THRESHOLD:"observe-scroll-threshold",SYNC_POPUP_WIDTH:"sync-popup-width",OPEN:"open",MATCH_KEY:"match-key",FILTER_TEXT:"filter-text",DROPDOWN_ICON_OPEN:"data-forge-dropdown-icon-open"},be={INPUT:re.selectors.INPUT,DROPDOWN_ICON:"[data-forge-dropdown-icon],[data-forge-dropdown-icon],[forge-dropdown-icon],.forge-dropdown-icon",CLEAR_BUTTON:"[data-forge-autocomplete-clear],[forge-autocomplete-clear]"},ge={DEFAULT_DEBOUNCE_TIME:500,NUM_SKELETON_ITEMS:3},Oe={CHANGE:`${g}-change`,SELECT:`${g}-select`,SCROLLED_BOTTOM:`${g}-scrolled-bottom`},o={elementName:g,attributes:ve,selectors:be,numbers:ge,events:Oe},ce=(e=>(e.Default="default",e.Stateless="stateless",e))(ce||{});var O=class extends R{constructor(e){super(e);this.setInputElement()}get inputElement(){return this._inputElement}setInputElement(){let e=M(this._component,o.selectors.INPUT,!1);return e.length&&(this._inputElement=e[0]),this._inputElement}setInputAttribute(e,t){this._inputElement.setAttribute(e,t)}addInputListener(e,t){this._inputElement.addEventListener(e,t)}removeInputListener(e,t){this._inputElement.removeEventListener(e,t)}initializeInputAccessibility(e){this._inputElement.setAttribute("autocomplete","off"),this._inputElement.setAttribute("role","combobox"),this._inputElement.setAttribute("aria-live","polite"),this._inputElement.setAttribute("aria-atomic","true"),this._inputElement.setAttribute("aria-haspopup","true"),this._inputElement.setAttribute("aria-expanded","false"),this._inputElement.setAttribute("aria-autocomplete","list"),Y(),X(this._inputElement)}isWrappingChipField(){return!!this._component.querySelector(F.elementName)}show(e,t){this._targetElement=this._getTargetElement(t),this._targetElement&&(this._listDropdown=new ue(this._targetElement,e),this._listDropdown.open(),this._inputElement.setAttribute("aria-expanded","true"),this._inputElement.setAttribute("aria-controls",`list-dropdown-popup-${e.id}`),this._tryToggleDropdownIconRotation(!0))}hide(e){if(!this._listDropdown)return;let{targetElement:t}=this._listDropdown.dropdownElement;t.removeEventListener(C.events.BLUR,e),this.setBusyVisibility(!1),this._tryToggleDropdownIconRotation(!1),this._inputElement.removeAttribute("aria-activedescendant"),this._inputElement.removeAttribute("aria-controls"),this._inputElement.setAttribute("aria-expanded","false"),this._listDropdown.close(),this._listDropdown=void 0}setBusyVisibility(e){var t;(t=this._listDropdown)==null||t.setBusyVisibility(e)}setDismissListener(e){if(!this._listDropdown||!this._listDropdown.dropdownElement)return;let t=this._listDropdown.dropdownElement;t.targetElement&&t.targetElement.addEventListener(C.events.BLUR,e)}focus(){window.requestAnimationFrame(()=>this._inputElement.focus())}setOptions(e){var t;(t=this._listDropdown)==null||t.setOptions(e)}appendOptions(e){var t;(t=this._listDropdown)==null||t.appendOptions(e)}setSelectedText(e){this._inputElement.value=e}getInputValue(){return this._inputElement.value}setInputValue(e){this._inputElement.value=e}selectInputValue(){window.requestAnimationFrame(()=>this._inputElement.select())}isFocusWithinPopup(e){return!this._listDropdown||!this._listDropdown.dropdownElement?!1:this._listDropdown.dropdownElement.contains(e)}hasFocus(){let e=k(this._component.ownerDocument);return e===this._inputElement||this.isFocusWithinPopup(e)}hasInputElement(){return!!this._inputElement}setDropdownIconListener(e,t){window.requestAnimationFrame(()=>{let i=this._component.querySelector(o.selectors.DROPDOWN_ICON);i&&i.addEventListener(e,t)})}removeDropdownIconListener(e,t){let i=this._component.querySelector(o.selectors.DROPDOWN_ICON);i&&i.removeEventListener(e,t)}setClearButtonListener(e,t){window.requestAnimationFrame(()=>{let i=this._component.querySelector(o.selectors.CLEAR_BUTTON);i&&i.addEventListener(e,t)})}removeClearButtonListener(e,t){let i=this._component.querySelector(o.selectors.CLEAR_BUTTON);i&&i.removeEventListener(e,t)}propagateKey(e){var t;(t=this._listDropdown)==null||t.handleKey(e)}updateActiveDescendant(e){!this._targetElement||A(this._inputElement,!!e,"aria-activedescendant",e)}getTargetElementWidth(e){return this._targetElement||(this._targetElement=this._getTargetElement(e)),this._targetElement.getBoundingClientRect().width}getPopupElement(){var e,t;return(t=(e=this._listDropdown)==null?void 0:e.dropdownElement)!=null?t:null}activateFirstOption(){var e;(e=this._listDropdown)==null||e.activateFirstOption()}activateSelectedOption(){var e;(e=this._listDropdown)==null||e.activateSelectedOption()}activateOptionByIndex(e){var t;(t=this._listDropdown)==null||t.activateOption(e)}getActiveOptionIndex(){var e,t;return(t=(e=this._listDropdown)==null?void 0:e.getActiveOptionIndex())!=null?t:null}clearActiveOption(){var e;(e=this._listDropdown)==null||e.clearActiveOption()}setSelectedOptions(e){if(this._listDropdown){let t=e.map(i=>i.value);this._listDropdown.setSelectedValues(t)}}queueDropdownPositionUpdate(){!this.getPopupElement()||window.requestAnimationFrame(()=>{let e=this.getPopupElement();e==null||e.position()})}_getTargetElement(e){return e?this._component.querySelector(e)||this._getDefaultTargetElement():this._getDefaultTargetElement()}_getDefaultTargetElement(){let e=this._component.querySelector("forge-text-field");if(e&&e.shadowRoot){let i=L(e,le.selectors.ROOT);if(i)return i}let t=this._component.querySelector("forge-chip-field");if(t&&t.shadowRoot){let i=L(t,F.selectors.ROOT);if(i)return i}return this._component.querySelector("input")||this._component}_tryToggleDropdownIconRotation(e){let t=this._component.querySelector(o.selectors.DROPDOWN_ICON);t&&A(t,e,o.attributes.DROPDOWN_ICON_OPEN)}};var he=(e=>(e[e.Option=0]="Option",e[e.Group=1]="Group",e))(he||{});function v(u,d){let e=u.some(i=>h(i)&&T(i)&&i.hasOwnProperty("options")&&(i.hasOwnProperty("text")||i.hasOwnProperty("builder"))),t=u.some(i=>h(i)&&T(i)&&i.hasOwnProperty("label")&&i.hasOwnProperty("value"));return e&&d===1||t&&d===0}function _e(u,d){return u.find(e=>e.value===d)}function b(u,d,e=null){return e?!(e in u.value)||!(e in d)?!1:w(u.value[e],d[e]):w(u.value,d)}var I=class extends de{constructor(e){super();this._adapter=e;this._isInitialized=!1;this._isDropdownOpen=!1;this._mode="default";this._multiple=!1;this._debounce=o.numbers.DEFAULT_DEBOUNCE_TIME;this._allowUnmatched=!1;this._filterOnFocus=!0;this._filterFocusFirst=!0;this._options=[];this._filterText="";this._selectedOptions=[];this._values=[];this._pendingFilterPromises=[];this._matchKey=null;this._clickListener=t=>this._onClick(t),this._focusListener=()=>this._onFocus(),this._blurListener=t=>this._onBlur(t),this._keydownListener=t=>this._onKeydown(t),this._dropdownIconClickListener=t=>this._onDropdownIconClick(t),this._dropdownScrollEndListener=()=>this._onDropdownScrollEnd(),this._dropdownIconMouseDownListener=t=>this._onDropdownIconMouseDown(t),this._clearButtonListener=t=>this._onClear(t),this._dismissListener=()=>this._onDismiss(),this._activeChangeListener=t=>this._adapter.updateActiveDescendant(t),this._targetWidthCallback=()=>this._adapter.getTargetElementWidth(this._popupTarget),this._identifier=y()}async initialize(){if(!this._adapter.hasInputElement()&&!this._adapter.setInputElement())throw new Error("An input element is required as a child of the autocomplete component.");if(this._setInputListener(),this._setFilterCallback(),this._attachListeners(),this._initializeAccessibility(),this._values.length){if(!this._selectedOptions.length){try{await this._executeFilter()}catch(e){console.error(e)}this._updateSelectedOptions(this._values)}this._adapter.setSelectedText(this._getSelectedText())}this._isInitialized=!0}disconnect(){this._isInitialized&&(this._detachListeners(),this._isInitialized=!1),this._isDropdownOpen&&this._closeDropdown()}async forceFilter({preserveValue:e}){this._options=[],await this._executeFilter(!0,!0),e&&this._options.push(...this._selectedOptions),this._applyValue(this._values)}_attachListeners(){this._adapter.addInputListener("click",this._clickListener),this._adapter.addInputListener("focus",this._focusListener),this._adapter.addInputListener("blur",this._blurListener),this._adapter.addInputListener("input",this._inputListener),this._adapter.addInputListener("keydown",this._keydownListener),this._adapter.setDropdownIconListener("click",this._dropdownIconClickListener),this._adapter.setDropdownIconListener("mousedown",this._dropdownIconMouseDownListener),this._adapter.setClearButtonListener("click",this._clearButtonListener)}_detachListeners(){this._adapter.removeInputListener("click",this._clickListener),this._adapter.removeInputListener("focus",this._focusListener),this._adapter.removeInputListener("blur",this._blurListener),this._adapter.removeInputListener("input",this._inputListener),this._adapter.removeInputListener("keydown",this._keydownListener),this._adapter.removeDropdownIconListener("click",this._dropdownIconClickListener),this._adapter.removeDropdownIconListener("mousedown",this._dropdownIconMouseDownListener),this._adapter.removeClearButtonListener("click",this._clearButtonListener)}_setInputListener(){this._inputListener=e=>this._onInput(e)}_setFilterCallback(){this._filterFn=h(this._debounce)&&this._debounce>0?P(this._debounceFilter,this._debounce,!1):this._debounceFilter}_initializeAccessibility(){this._adapter.initializeInputAccessibility(this._identifier)}get _flatOptions(){return v(this._options,1)?this._options.reduce((e,t)=>e.concat(t.options),[]):this._options}_onClick(e){!this._isDropdownOpen&&this._filterOnFocus&&this._showDropdown()}_onDropdownIconMouseDown(e){e.preventDefault()}_onDropdownIconClick(e){this._isDropdownOpen?this._closeDropdown():(this._adapter.focus(),window.requestAnimationFrame(()=>this._showDropdown()))}_onClear(e){this._filterText="",this._clearValue(),this._adapter.setSelectedText(this._getSelectedText())}_onDropdownScrollEnd(){this._adapter.emitHostEvent(o.events.SCROLLED_BOTTOM)}_onFocus(){!this._isDropdownOpen&&this._adapter.getInputValue()&&!D.isMobile&&this._adapter.selectInputValue()}_onBlur(e){this._adapter.isFocusWithinPopup(e.relatedTarget)||this._applyBlur()}_applyBlur(){this._isDropdownOpen&&this._closeDropdown(),this._mode!=="stateless"&&(this._selectedOptions.length?this._adapter.setSelectedText(this._getSelectedText()):this._allowUnmatched||(this._filterText="",this._adapter.setSelectedText("")))}_onInput(e){this._selectedOptions.length&&!this._multiple&&(!this._adapter.getInputValue()||this._allowUnmatched)&&!this._adapter.isWrappingChipField()&&(this._selectedOptions=[],this._values=[],this._emitChangeEvent()),this._filterText=this._adapter.getInputValue(),this._filterFn()}async _debounceFilter({checkFocus:e=!0}={}){if(!e&&!this._adapter.hasFocus()){this._pendingFilterPromises=[],this._isDropdownOpen&&this._closeDropdown();return}let t=this._filterText,i=this._executeFilter();this._pendingFilterPromises.push(i),this._isDropdownOpen?this._adapter.setBusyVisibility(!0):this._showDropdown({filter:!1});try{await i}catch(n){this._pendingFilterPromises=[],this._isDropdownOpen&&this._closeDropdown();return}if(t===this._filterText)this._pendingFilterPromises=[],this._onFilterComplete();else{let n=this._pendingFilterPromises.indexOf(i);n!==-1&&this._pendingFilterPromises.splice(n,1)}}_onKeydown(e){switch(e.key){case"Tab":this._isDropdownOpen&&!this._multiple&&this._selectActiveOption(!1);break;case"Esc":case"Escape":this._isDropdownOpen&&(e.preventDefault(),e.stopPropagation(),this._closeDropdown());break;case"Down":case"ArrowDown":e.preventDefault(),this._isDropdownOpen?this._adapter.propagateKey(e.key):this._showDropdown({activateFirst:!0,activateSelected:!0});break;case"Up":case"ArrowUp":e.preventDefault(),this._isDropdownOpen&&this._adapter.propagateKey(e.key);break;case"Enter":case"Home":case"End":this._isDropdownOpen&&(e.key==="Enter"&&e.stopPropagation(),e.preventDefault(),this._adapter.propagateKey(e.key));break;case"Backspace":case"Delete":let t=e.target,i=this._adapter.getInputValue(),n=t.value.substring(t.selectionStart,t.selectionEnd)===t.value,l=i.length===1&&t.selectionEnd===1,c=i.length===1&&t.selectionEnd===0,_=!i||n||l||c;!this._adapter.isWrappingChipField()&&_&&!this._multiple&&this._values.length&&this._clearValue();break}}_executeFilter(e=!0,t=!1){if(!this._filter||typeof this._filter!="function")throw new Error('A filter callback must be provided. Did you set the "filter" property?');let i=this._filter,n=e?this._filterText:"",l=t?this._getValue():null;return new Promise((c,_)=>Promise.resolve(i(n,l)).then(r=>{this._options=r,c(this._options)}).catch(r=>_(`An unexpected error occurred while filtering: ${r}`)))}_onFilterComplete(){if(!this._adapter.hasFocus()){this._isDropdownOpen&&this._closeDropdown();return}if(this._options.length){let e=this._allowUnmatched&&!this._selectedOptions.length;this._dropdownReady({userTriggered:e}),this._filterFocusFirst&&this._filterText&&this._adapter.activateFirstOption()}else this._closeDropdown()}_clearValue(){this._selectedOptions=[],this._values=[],this._isDropdownOpen&&(this._adapter.setSelectedOptions([]),this._adapter.clearActiveOption()),this._emitChangeEvent()}async _showDropdown({filter:e=!0,userTriggered:t=!0,activateFirst:i=!1,activateSelected:n=!1}={}){let l=this._allowUnmatched&&!this._selectedOptions.length;this._isDropdownOpen=!0;let c;if(this._optionBuilder){let r=this._optionBuilder;c=(m,fe)=>r(m,this._filterText,fe)}let _={options:this._options,referenceElement:this._adapter.inputElement,multiple:this._multiple,selectedValues:[...this._values],id:`forge-autocomplete-${this._identifier}`,asyncStyle:"skeleton",optionLimit:this._optionLimit,popupClasses:this._popupClasses,headerBuilder:this._popupHeaderBuilder,footerBuilder:this._popupFooterBuilder,transform:r=>{if(this._filterText){let m=$(r,this._filterText);if(m)return m}return r},allowBusy:!0,optionBuilder:c,syncWidth:this._syncPopupWidth,observeScroll:this._observeScroll,observeScrollThreshold:this._observeScrollThreshold,scrollEndListener:this._dropdownScrollEndListener,activeChangeCallback:this._activeChangeListener,targetWidthCallback:this._targetWidthCallback,selectCallback:r=>this._onSelect(r),closeCallback:()=>this._closeDropdown()};if(this._adapter.show(_,this._popupTarget),this._adapter.toggleHostAttribute(o.attributes.OPEN,this._isDropdownOpen),e){this._options.length&&this._adapter.setBusyVisibility(!0);try{await this._executeFilter(l)}catch(r){console.error(r)}this._updateSelectedOptions(this._values)}this._pendingFilterPromises.length||this._dropdownReady({userTriggered:t,activateFirst:i,activateSelected:n})}_dropdownReady({userTriggered:e=!0,activateFirst:t=!1,activateSelected:i=!1}={}){if(!this._isDropdownOpen||!this._options.length||e&&!this._adapter.hasFocus()){this._closeDropdown();return}this._sortSelectedOptions(),this._adapter.setBusyVisibility(!1),this._adapter.setOptions(this._options),this._adapter.setSelectedOptions(this._selectedOptions),this._adapter.setDismissListener(this._dismissListener),i&&this._selectedOptions.length?this._adapter.activateSelectedOption():t&&this._adapter.activateFirstOption()}_closeDropdown(){this._multiple&&(this._filterText=""),this._isDropdownOpen=!1,this._adapter.hide(this._dismissListener),this._sortSelectedOptions(),this._adapter.toggleHostAttribute(o.attributes.OPEN,this._isDropdownOpen)}_sortSelectedOptions(){if(this._multiple&&this._selectedOptions.length&&v(this._options,0)){let e=[],t=[];this._options.forEach(i=>{this._selectedOptions.find(n=>b(n,i.value,this._matchKey))?e.push(i):t.push(i)}),this._options=[...e,...t]}}async _onSelect(e,t=!0){if(this._valueChanging)return;if(this._mode==="stateless"){let n={value:e};this._adapter.emitHostEvent(o.events.SELECT,n,!0,!0)&&(this._filterText="",this._multiple||this._closeDropdown());return}let i=()=>{let l=this._flatOptions.find(r=>b(r,e,this._matchKey)),c=l?l.value:"",_=l?l.label:"";if(this._multiple){let r=_e(this._selectedOptions,c);if(r){let m=this._selectedOptions.indexOf(r);this._selectedOptions.splice(m,1)}else this._selectedOptions.push(l)}else h(c)?(this._selectedOptions[0]=l,this._filterText=_):(this._selectedOptions=[],this._filterText="");this._isDropdownOpen&&this._adapter.setSelectedOptions(this._selectedOptions),this._values=this._selectedOptions.map(r=>r.value),this._adapter.setSelectedText(this._getSelectedText()),!D.isMobile&&t&&this._adapter.selectInputValue(),this._emitChangeEvent(),this._tryUpdateDropdownPosition()};this._isDropdownOpen&&!this._multiple&&this._closeDropdown(),typeof this._beforeValueChange=="function"?(this._valueChanging=Promise.resolve(this._beforeValueChange.call(null,e,this._matchKey)),await this._valueChanging?i():this._tryUpdateDropdownPosition(),this._valueChanging=void 0):i()}_selectActiveOption(e=!0){let t=this._adapter.getActiveOptionIndex();if(typeof t=="number"&&t>=0){let i=this._flatOptions[t];i&&this._onSelect(i.value,e)}}_emitChangeEvent(){this._adapter.emitHostEvent(o.events.CHANGE,this._getValue(),!0)}_tryUpdateDropdownPosition(){this._isDropdownOpen&&this._adapter.queueDropdownPositionUpdate()}_getValue(){return this._values?this._values.length?this._multiple?[...this._values]:this._values[0]:this._multiple?[]:null:null}_getSelectedText(){var e,t;return this._adapter.isWrappingChipField()?"":this._selectedTextBuilder?this._selectedTextBuilder(this._selectedOptions):this._multiple?this._values.length?this._values.length===1?(t=(e=this._selectedOptions[0])==null?void 0:e.label)!=null?t:"":`${this._values.length} options selected`:"":this._selectedOptions.filter(i=>i&&i.label).map(i=>i.label).join(" ").trim()}_onDismiss(){this._closeDropdown()}async _applyValue(e){let t=[];this._selectedOptions=[],Array.isArray(e)?t=e:t=h(e)?[e]:[],!this._multiple&&t.length>1&&(t=[t[0]]),v(t,0)?(this._values=t.map(n=>n.value),this._selectedOptions=t):this._values=t;let i=this._flatOptions;if(t.length&&i.length&&this._updateSelectedOptions(t),this._values.length&&!this._selectedOptions.length&&!!this._filter&&this._isInitialized){try{await this._executeFilter(!1,!0)}catch(n){console.error(n)}this._updateSelectedOptions(this._values)}this._multiple?this._filterText="":this._filterText=this._selectedOptions.length?this._selectedOptions[0].label:"",this._isInitialized&&this._adapter.setSelectedText(this._getSelectedText()),this._isDropdownOpen&&this._adapter.setSelectedOptions(this._selectedOptions)}_updateSelectedOptions(e){let t=[...this._flatOptions,...this._selectedOptions];if(this._selectedOptions.length&&(this._selectedOptions=[]),v(e,0))for(let i of e){let n=t.find(l=>b(l,i.value,this._matchKey));n?this._selectedOptions.push(n):this._selectedOptions.push(i)}else for(let i of e){let n=t.find(l=>b(l,i,this._matchKey));n?this._selectedOptions.push(n):this._allowUnmatched&&this._selectedOptions.push({label:i,value:i})}}get mode(){return this._mode}set mode(e){this._mode!==e&&(this._mode=e,this._mode==="stateless"&&(this._selectedOptions=[],this._isDropdownOpen&&this._closeDropdown()),this._adapter.setHostAttribute(o.attributes.MODE,this._mode))}get multiple(){return this._multiple}set multiple(e){this._multiple!==e&&(this._multiple=e,this._adapter.setHostAttribute(o.attributes.MULTIPLE,h(this._multiple)?this._multiple.toString():""))}get value(){return this._getValue()}set value(e){let t=[];e==null?t=[]:Array.isArray(e)?t=structuredClone(e):x(e)?t=[e]:t=[structuredClone(e)],(t.length!==this._values.length||t.some(n=>!this._values.includes(n)))&&this._applyValue(e)}get filterOnFocus(){return this._filterOnFocus}set filterOnFocus(e){this._filterOnFocus!==e&&(this._filterOnFocus=e,this._adapter.setHostAttribute(o.attributes.FILTER_ON_FOCUS,h(this._filterOnFocus)?this._filterOnFocus.toString():""))}get filterFocusFirst(){return this._filterFocusFirst}set filterFocusFirst(e){this._filterFocusFirst!==e&&(this._filterFocusFirst=e,this._adapter.toggleHostAttribute(o.attributes.FILTER_FOCUS_FIRST,this._filterFocusFirst))}get allowUnmatched(){return this._allowUnmatched}set allowUnmatched(e){this._allowUnmatched!==e&&(this._allowUnmatched=e,h(this._allowUnmatched)&&this._adapter.setHostAttribute(o.attributes.ALLOW_UNMATCHED,this._allowUnmatched.toString()))}get matchKey(){return this._matchKey}set matchKey(e){this._matchKey!==e&&(this._matchKey=e)}get popupTarget(){return this._popupTarget}set popupTarget(e){this._popupTarget!==e&&(this._popupTarget=e)}get filterText(){return this._filterText}set filterText(e){this._filterText!==e&&(this._filterText=this._allowUnmatched?e:"",this._isInitialized&&this._allowUnmatched&&(this._adapter.setInputValue(this._filterText),this._isDropdownOpen&&this._debounceFilter({checkFocus:!1})))}get popupClasses(){return Array.isArray(this._popupClasses)?[...this._popupClasses]:[this._popupClasses]}set popupClasses(e){this._popupClasses!==e&&(this._popupClasses=Array.isArray(e)?[...e]:[e])}set popupHeaderBuilder(e){this._popupHeaderBuilder=e}set popupFooterBuilder(e){this._popupFooterBuilder=e}get syncPopupWidth(){return this._syncPopupWidth}set syncPopupWidth(e){this._syncPopupWidth!==e&&(this._syncPopupWidth=e)}get optionLimit(){return this._optionLimit}set optionLimit(e){this._optionLimit!==e&&(this._optionLimit=e)}get debounce(){return this._debounce}set debounce(e){this._debounce!==e&&(this._debounce=e,this._isInitialized&&this._setFilterCallback(),this._adapter.setHostAttribute(o.attributes.DEBOUNCE,h(this._debounce)?this._debounce.toString():""))}get optionBuilder(){return this._optionBuilder}set optionBuilder(e){this._optionBuilder=e}get filter(){return this._filter}set filter(e){this._filter!==e&&(this._filter=e,this._isInitialized&&this._values.length&&!this._flatOptions.length&&!!this._filter&&this._executeFilter().then(()=>{this._updateSelectedOptions(this._values),this._adapter.setSelectedText(this._getSelectedText())}))}get selectedTextBuilder(){return this._selectedTextBuilder}set selectedTextBuilder(e){this._selectedTextBuilder=e,this._selectedOptions.length&&this._adapter.setSelectedText(this._getSelectedText())}get observeScroll(){return this._observeScroll}set observeScroll(e){this._observeScroll=e}get observeScrollThreshold(){return this._observeScrollThreshold}set observeScrollThreshold(e){this._observeScrollThreshold=e}appendOptions(e){!this._isDropdownOpen||(this._options=[...this._options,...e],this._adapter.appendOptions(e))}get isInitialized(){return this._isInitialized}get open(){return this._isDropdownOpen}set open(e){this._isDropdownOpen!==e&&(e?this._showDropdown({userTriggered:!1}):this._closeDropdown())}get beforeValueChange(){return this._beforeValueChange}set beforeValueChange(e){e!==this._beforeValueChange&&(this._beforeValueChange=e)}get popupElement(){return this._adapter.getPopupElement()}};var Ie="<template><slot></slot></template>",Ee=":host{display:block}:host([hidden]){display:none}",s=class extends oe{constructor(){super();j.define([W,q,K]),U(this,Ie,Ee),this._foundation=new I(new O(this))}static get observedAttributes(){return[o.attributes.MODE,o.attributes.MULTIPLE,o.attributes.DEBOUNCE,o.attributes.FILTER_ON_FOCUS,o.attributes.FILTER_FOCUS_FIRST,o.attributes.ALLOW_UNMATCHED,o.attributes.POPUP_TARGET,o.attributes.POPUP_CLASSES,o.attributes.OBSERVE_SCROLL,o.attributes.OBSERVE_SCROLL_THRESHOLD,o.attributes.OPTION_LIMIT,o.attributes.SYNC_POPUP_WIDTH,o.attributes.OPEN,o.attributes.MATCH_KEY,o.attributes.FILTER_TEXT]}connectedCallback(){this.querySelector(o.selectors.INPUT)?this._foundation.initialize():B(this,o.selectors.INPUT).then(()=>this._foundation.initialize())}disconnectedCallback(){this._foundation.disconnect()}attributeChangedCallback(e,t,i){switch(super.attributeChangedCallback(e,t,i),e){case o.attributes.MODE:this.mode=i;break;case o.attributes.MULTIPLE:this.multiple=f(i);break;case o.attributes.DEBOUNCE:this.debounce=S(i);break;case o.attributes.FILTER_ON_FOCUS:this.filterOnFocus=f(i);break;case o.attributes.FILTER_FOCUS_FIRST:this.filterFocusFirst=f(i);break;case o.attributes.ALLOW_UNMATCHED:this.allowUnmatched=f(i);break;case o.attributes.POPUP_TARGET:this.popupTarget=i;break;case o.attributes.OPEN:this.open=f(i);break;case o.attributes.MATCH_KEY:this.matchKey=i;break;case o.attributes.FILTER_TEXT:this.filterText=i;break}}appendOptions(e){this._foundation.appendOptions(e)}openDropdown(){this.open=!0}closeDropdown(){this.open=!1}forceFilter(e={preserveValue:!1}){this._foundation.forceFilter(e)}};p([a()],s.prototype,"mode",2),p([a()],s.prototype,"multiple",2),p([a()],s.prototype,"value",2),p([a()],s.prototype,"debounce",2),p([a()],s.prototype,"filterOnFocus",2),p([a()],s.prototype,"filterFocusFirst",2),p([a()],s.prototype,"allowUnmatched",2),p([a()],s.prototype,"popupTarget",2),p([a()],s.prototype,"filterText",2),p([a()],s.prototype,"optionBuilder",2),p([a()],s.prototype,"filter",2),p([a()],s.prototype,"selectedTextBuilder",2),p([a()],s.prototype,"open",2),p([a()],s.prototype,"matchKey",2),p([a({set:!1})],s.prototype,"isInitialized",2),p([a({set:!1})],s.prototype,"popupElement",2),p([a()],s.prototype,"beforeValueChange",2),s=p([H({name:o.elementName,dependencies:[pe,ne,ie,te,Z,se,ee,Q]})],s);var me=class extends z{constructor(e){super(e)}_build(){let e=document.createElement(o.elementName);return this._attachTextField(e),e}get textFieldDelegate(){return this._textFieldDelegate}get value(){return this._element.value}set value(e){this._element.value=e}get disabled(){return this._textFieldDelegate.inputElement.disabled}set disabled(e){this._textFieldDelegate.inputElement.disabled=e}get invalid(){return this._textFieldDelegate.invalid||!1}set invalid(e){this._textFieldDelegate.invalid=e}onChange(e){this._element.addEventListener(o.events.CHANGE,t=>e(t.detail))}onFocus(e){this._textFieldDelegate.inputElement.addEventListener("focus",t=>e(t))}onBlur(e){this._textFieldDelegate.inputElement.addEventListener("blur",t=>e(t))}_attachTextField(e){var i,n,l,c,_,r;let t={props:E({},(n=(i=this._config.options)==null?void 0:i.textFieldDelegateConfig)==null?void 0:n.props),options:E({},(c=(l=this._config.options)==null?void 0:l.textFieldDelegateConfig)==null?void 0:c.options)};t.options||(t.options={}),((_=this._config.options)==null?void 0:_.useDropdownIcon)!==!1&&!((r=t.options)!=null&&r.trailingElement)&&(t.options.trailingElement=this._createDropdownIconElement()),this._textFieldDelegate=new ae(t),e.appendChild(this._textFieldDelegate.element)}_createDropdownIconElement(){let e={props:{slot:"trailing",name:"arrow_drop_down"},options:{attributes:{"forge-dropdown-icon":""}}};return new J(e).element}};function Kt(){N(s)}export{o as a,ce as b,O as c,he as d,v as e,_e as f,b as g,I as h,s as i,me as j,Kt as k};
7
+ //# sourceMappingURL=chunk.RSFO2MD5.js.map
@@ -3,10 +3,10 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{d as Po}from"./chunk.4TAJ2ISD.js";import{f as To}from"./chunk.WYUMHNVZ.js";import{b as go}from"./chunk.4LQ2NTZ6.js";import{h as uo}from"./chunk.YBEKNPIH.js";import{f as So}from"./chunk.ZFVGFJUF.js";import{d as Bo}from"./chunk.OML7MHH6.js";import{q as so}from"./chunk.SCLNLPNS.js";import{c as ao}from"./chunk.PLORKGHA.js";import{e as Ao}from"./chunk.AM65KICK.js";import{d as co}from"./chunk.SMIOTQJL.js";import{d as lo}from"./chunk.UOYOPTMC.js";import{b as xo}from"./chunk.VLGCUBD3.js";import{d as fo}from"./chunk.22XYSOBK.js";import{d as eo}from"./chunk.XRYKUVE3.js";import{d as no}from"./chunk.XTQO35SU.js";import{b as to}from"./chunk.SGTKZRDH.js";import{d as mo}from"./chunk.UNFOIEF6.js";import{d as io}from"./chunk.XEZ7QJES.js";import{d as Co}from"./chunk.XNUJPZIK.js";import{b as po}from"./chunk.WEE3TIAW.js";import{b as ro}from"./chunk.EUUVSENP.js";import{b as Q}from"./chunk.MKMYJBTE.js";import{b as U}from"./chunk.CPK2WOYA.js";import{j as _}from"./chunk.CYRAGLUX.js";import{d as j}from"./chunk.XYK4TAXA.js";import{b as G}from"./chunk.AERZO3JD.js";import{b as H}from"./chunk.Y37FW3B4.js";import{d as N}from"./chunk.KUVFKOVR.js";import{d as K}from"./chunk.CYLDP7ML.js";import{d as y}from"./chunk.6ZUV5N66.js";import{e as v}from"./chunk.3HRCB7FN.js";import{d as R}from"./chunk.TDWRBHQW.js";import{b as O}from"./chunk.6LRCYRAL.js";import{f as V}from"./chunk.V6C2AEKZ.js";import{d as F}from"./chunk.TRIZ4QJI.js";import{d as E}from"./chunk.RDETMQHP.js";import{E as L}from"./chunk.PRD35UWX.js";import{i as d}from"./chunk.HMJ3REU5.js";import{b as e}from"./chunk.H5IFZCUL.js";import{c as l}from"./chunk.DXA626CF.js";import{d as B}from"./chunk.64BPRKXV.js";import{c as u}from"./chunk.VWLMQCC2.js";import{e as c}from"./chunk.3VO4CCLE.js";import{d as A}from"./chunk.XT4IC25K.js";import{d as D}from"./chunk.BRBYFLUJ.js";import{a as w}from"./chunk.XKX2BE6Z.js";import{a as k}from"./chunk.AFW54X3W.js";import{c as h}from"./chunk.YVXZ753Q.js";import{d as M}from"./chunk.Z7Y2RA4P.js";import{d as s}from"./chunk.7C7XCT32.js";import{d as ho}from"./chunk.5SM7UG6C.js";import{d as p}from"./chunk.RZMTIEVK.js";import{d as t}from"./chunk.ABB66VV2.js";import{d as m}from"./chunk.B72LQPTW.js";import{e as z}from"./chunk.VFWFNY53.js";import{d as Y}from"./chunk.LQEVGZKN.js";import{d as q}from"./chunk.DT4G43BK.js";import{b as a}from"./chunk.RQG6GVOI.js";import{c as C}from"./chunk.K57IO236.js";import{e as i}from"./chunk.AJTQHK25.js";import{d as I}from"./chunk.B3LPXCVL.js";import{b as n}from"./chunk.P73BXRKY.js";import{b as W}from"./chunk.BVMEPQRH.js";import{d as X}from"./chunk.PTOAOW4U.js";import{d as P}from"./chunk.BNIUTBJV.js";import{d as oo}from"./chunk.TJHXZ6PA.js";import{d as $}from"./chunk.LEOEVEFJ.js";import{b as Z}from"./chunk.EOZITZSP.js";import{d as S}from"./chunk.6D5ERZ3Y.js";import{c as b}from"./chunk.RHXQ2GMV.js";import{e as x}from"./chunk.WCSVKQR2.js";import{a as g}from"./chunk.LAM6EDW3.js";import{f}from"./chunk.EC5JFSHR.js";import{e as J}from"./chunk.P7AU3S6P.js";import{d as T}from"./chunk.TEHQWMFI.js";import{l as r}from"./chunk.B5TEOESG.js";import{b as o}from"./chunk.LJLEPTLU.js";var ko=[p,S,s,P,A,D,M,b,ho,E,F,L,O,h,c,u,B,I,V,y,v,R,e,G,H,N,t,K,Q,io,r,g,U,_,j,n,C,i,q,z,J,W,X,Y,oo,$,m,mo,to,ro,fo,x,Co,k,f,po,no,eo,a,xo,ao,Ao,co,lo,w,So,Bo,uo,l,so,Po,Z,T,To,go,d];function Or(){o(ko)}export{Or as a};
6
+ import{d as Po}from"./chunk.4TAJ2ISD.js";import{f as To}from"./chunk.WYUMHNVZ.js";import{b as go}from"./chunk.4LQ2NTZ6.js";import{h as uo}from"./chunk.YBEKNPIH.js";import{f as So}from"./chunk.ZFVGFJUF.js";import{d as Bo}from"./chunk.OML7MHH6.js";import{q as so}from"./chunk.SCLNLPNS.js";import{c as ao}from"./chunk.MGWC4Z47.js";import{e as Ao}from"./chunk.AM65KICK.js";import{d as co}from"./chunk.SMIOTQJL.js";import{d as lo}from"./chunk.UOYOPTMC.js";import{b as xo}from"./chunk.VLGCUBD3.js";import{d as fo}from"./chunk.22XYSOBK.js";import{d as eo}from"./chunk.XRYKUVE3.js";import{d as no}from"./chunk.XTQO35SU.js";import{b as to}from"./chunk.SGTKZRDH.js";import{d as mo}from"./chunk.UNFOIEF6.js";import{d as io}from"./chunk.XEZ7QJES.js";import{d as Co}from"./chunk.XNUJPZIK.js";import{b as po}from"./chunk.WEE3TIAW.js";import{b as ro}from"./chunk.EUUVSENP.js";import{b as Q}from"./chunk.MKMYJBTE.js";import{b as U}from"./chunk.CPK2WOYA.js";import{j as _}from"./chunk.CYRAGLUX.js";import{d as j}from"./chunk.XYK4TAXA.js";import{b as G}from"./chunk.AERZO3JD.js";import{b as H}from"./chunk.Y37FW3B4.js";import{d as N}from"./chunk.KUVFKOVR.js";import{d as K}from"./chunk.CYLDP7ML.js";import{d as y}from"./chunk.6ZUV5N66.js";import{e as v}from"./chunk.3HRCB7FN.js";import{d as R}from"./chunk.TDWRBHQW.js";import{b as O}from"./chunk.6LRCYRAL.js";import{f as V}from"./chunk.V6C2AEKZ.js";import{d as F}from"./chunk.TRIZ4QJI.js";import{d as E}from"./chunk.RDETMQHP.js";import{E as L}from"./chunk.PRD35UWX.js";import{i as d}from"./chunk.RSFO2MD5.js";import{b as e}from"./chunk.H5IFZCUL.js";import{c as l}from"./chunk.PKZQ4SBU.js";import{d as B}from"./chunk.64BPRKXV.js";import{c as u}from"./chunk.VWLMQCC2.js";import{e as c}from"./chunk.3VO4CCLE.js";import{d as A}from"./chunk.XT4IC25K.js";import{d as D}from"./chunk.BRBYFLUJ.js";import{a as w}from"./chunk.XKX2BE6Z.js";import{a as k}from"./chunk.AFW54X3W.js";import{c as h}from"./chunk.YVXZ753Q.js";import{d as M}from"./chunk.Z7Y2RA4P.js";import{d as s}from"./chunk.7C7XCT32.js";import{d as ho}from"./chunk.5SM7UG6C.js";import{d as p}from"./chunk.RZMTIEVK.js";import{d as t}from"./chunk.ABB66VV2.js";import{d as m}from"./chunk.B72LQPTW.js";import{e as z}from"./chunk.VFWFNY53.js";import{d as Y}from"./chunk.LQEVGZKN.js";import{d as q}from"./chunk.DT4G43BK.js";import{b as a}from"./chunk.RQG6GVOI.js";import{c as C}from"./chunk.K57IO236.js";import{e as i}from"./chunk.AJTQHK25.js";import{d as I}from"./chunk.B3LPXCVL.js";import{b as n}from"./chunk.P73BXRKY.js";import{b as W}from"./chunk.BVMEPQRH.js";import{d as X}from"./chunk.PTOAOW4U.js";import{d as P}from"./chunk.BNIUTBJV.js";import{d as oo}from"./chunk.TJHXZ6PA.js";import{d as $}from"./chunk.LEOEVEFJ.js";import{b as Z}from"./chunk.EOZITZSP.js";import{d as S}from"./chunk.6D5ERZ3Y.js";import{c as b}from"./chunk.RHXQ2GMV.js";import{e as x}from"./chunk.WCSVKQR2.js";import{a as g}from"./chunk.LAM6EDW3.js";import{f}from"./chunk.EC5JFSHR.js";import{e as J}from"./chunk.P7AU3S6P.js";import{d as T}from"./chunk.TEHQWMFI.js";import{l as r}from"./chunk.B5TEOESG.js";import{b as o}from"./chunk.LJLEPTLU.js";var ko=[p,S,s,P,A,D,M,b,ho,E,F,L,O,h,c,u,B,I,V,y,v,R,e,G,H,N,t,K,Q,io,r,g,U,_,j,n,C,i,q,z,J,W,X,Y,oo,$,m,mo,to,ro,fo,x,Co,k,f,po,no,eo,a,xo,ao,Ao,co,lo,w,So,Bo,uo,l,so,Po,Z,T,To,go,d];function Or(){o(ko)}export{Or as a};
7
7
  /**
8
8
  * @license
9
9
  * Copyright (c) 2022 Tyler Technologies, Inc.
10
10
  * License: Apache-2.0
11
11
  */
12
- //# sourceMappingURL=chunk.6VXZW2KP.js.map
12
+ //# sourceMappingURL=chunk.VQ2JQUQF.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a,b,c,d,e,f}from"../chunks/chunk.6ZUV5N66.js";import"../chunks/chunk.MSBAFZ54.js";import"../chunks/chunk.PRD35UWX.js";import"../chunks/chunk.KTEM7SW7.js";import"../chunks/chunk.ISCCPFAB.js";import"../chunks/chunk.YPZNIYQL.js";import"../chunks/chunk.DXA626CF.js";import"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.6YPD6CQM.js";import"../chunks/chunk.4DAIIJ37.js";import"../chunks/chunk.RHXQ2GMV.js";import"../chunks/chunk.WCSVKQR2.js";import"../chunks/chunk.LAM6EDW3.js";import"../chunks/chunk.MV327MYK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.TEHQWMFI.js";import"../chunks/chunk.SYHVVXRW.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.3KQL7VAZ.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{a as DATE_PICKER_CONSTANTS,b as DatePickerAdapter,d as DatePickerComponent,e as DatePickerComponentDelegate,c as DatePickerFoundation,f as defineDatePickerComponent};
6
+ import{a,b,c,d,e,f}from"../chunks/chunk.6ZUV5N66.js";import"../chunks/chunk.MSBAFZ54.js";import"../chunks/chunk.PRD35UWX.js";import"../chunks/chunk.KTEM7SW7.js";import"../chunks/chunk.ISCCPFAB.js";import"../chunks/chunk.YPZNIYQL.js";import"../chunks/chunk.PKZQ4SBU.js";import"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.6YPD6CQM.js";import"../chunks/chunk.4DAIIJ37.js";import"../chunks/chunk.RHXQ2GMV.js";import"../chunks/chunk.WCSVKQR2.js";import"../chunks/chunk.LAM6EDW3.js";import"../chunks/chunk.MV327MYK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.TEHQWMFI.js";import"../chunks/chunk.SYHVVXRW.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.3KQL7VAZ.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{a as DATE_PICKER_CONSTANTS,b as DatePickerAdapter,d as DatePickerComponent,e as DatePickerComponentDelegate,c as DatePickerFoundation,f as defineDatePickerComponent};
7
7
  //# sourceMappingURL=index.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a,b,c,d,e,f,g}from"../chunks/chunk.3HRCB7FN.js";import"../chunks/chunk.MSBAFZ54.js";import"../chunks/chunk.PRD35UWX.js";import"../chunks/chunk.KTEM7SW7.js";import"../chunks/chunk.ISCCPFAB.js";import"../chunks/chunk.YPZNIYQL.js";import"../chunks/chunk.DXA626CF.js";import"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.6YPD6CQM.js";import"../chunks/chunk.4DAIIJ37.js";import"../chunks/chunk.RHXQ2GMV.js";import"../chunks/chunk.WCSVKQR2.js";import"../chunks/chunk.LAM6EDW3.js";import"../chunks/chunk.MV327MYK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.TEHQWMFI.js";import"../chunks/chunk.SYHVVXRW.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.3KQL7VAZ.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{b as DATE_RANGE_PICKER_CONSTANTS,a as DatePickerRange,f as DateRangeComponentDelegate,c as DateRangePickerAdapter,e as DateRangePickerComponent,d as DateRangePickerFoundation,g as defineDateRangePickerComponent};
6
+ import{a,b,c,d,e,f,g}from"../chunks/chunk.3HRCB7FN.js";import"../chunks/chunk.MSBAFZ54.js";import"../chunks/chunk.PRD35UWX.js";import"../chunks/chunk.KTEM7SW7.js";import"../chunks/chunk.ISCCPFAB.js";import"../chunks/chunk.YPZNIYQL.js";import"../chunks/chunk.PKZQ4SBU.js";import"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.6YPD6CQM.js";import"../chunks/chunk.4DAIIJ37.js";import"../chunks/chunk.RHXQ2GMV.js";import"../chunks/chunk.WCSVKQR2.js";import"../chunks/chunk.LAM6EDW3.js";import"../chunks/chunk.MV327MYK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.TEHQWMFI.js";import"../chunks/chunk.SYHVVXRW.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.3KQL7VAZ.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{b as DATE_RANGE_PICKER_CONSTANTS,a as DatePickerRange,f as DateRangeComponentDelegate,c as DateRangePickerAdapter,e as DateRangePickerComponent,d as DateRangePickerFoundation,g as defineDateRangePickerComponent};
7
7
  //# sourceMappingURL=index.js.map
package/dist/esm/index.js CHANGED
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a as Kj}from"./chunks/chunk.6VXZW2KP.js";import{a as kj,b as lj,c as mj,d as nj,e as oj}from"./chunks/chunk.4TAJ2ISD.js";import"./chunks/chunk.WINL2C7Q.js";import{a as pj,b as qj,c as rj,d as sj,e as tj,f as wj,g as yj}from"./chunks/chunk.WYUMHNVZ.js";import{a as uj,b as vj,c as xj}from"./chunks/chunk.4LQ2NTZ6.js";import{a as yi,b as zi,c as Ai,d as Bi,e as Ci,f as Di,g as Ei,h as Fi,i as Gi}from"./chunks/chunk.YBEKNPIH.js";import"./chunks/chunk.TLCGGWBO.js";import{a as Mi,b as Ni,c as Oi,d as Pi,e as Qi,f as Ri,g as Si}from"./chunks/chunk.ZFVGFJUF.js";import{a as Li}from"./chunks/chunk.3V2VDOOP.js";import{a as Hi,b as Ii,c as Ji,d as Ki}from"./chunks/chunk.OML7MHH6.js";import{a as Ti,b as Ui,c as Vi,d as Wi,e as Xi,f as Yi,g as Zi,h as _i,i as $i,j as aj,k as bj,l as cj,m as dj,n as ej,o as fj,p as gj,q as hj,r as ij,s as jj}from"./chunks/chunk.SCLNLPNS.js";import"./chunks/chunk.X2RP4QW3.js";import"./chunks/chunk.AJJILT3A.js";import{a as ki,b as li,c as mi,d as ni}from"./chunks/chunk.PLORKGHA.js";import{a as Nh,b as Oh,c as Ph,d as Qh,e as Rh,f as Sh,g as Th,h as Uh,i as Vh,j as Wh,k as Xh,l as Yh,m as Zh,n as _h,o as $h,p as ai,q as bi,r as ci,s as di,t as ei,u as fi,v as gi,w as hi,x as ii,y as ji}from"./chunks/chunk.SLK5TNHE.js";import"./chunks/chunk.LIKJD4SK.js";import{a as zj,b as Aj,c as Bj,d as Cj,e as Dj,f as Ej}from"./chunks/chunk.AM65KICK.js";import"./chunks/chunk.E4NCI7MS.js";import{a as ti,b as ui,c as vi,d as wi,e as xi}from"./chunks/chunk.SMIOTQJL.js";import{a as oi,b as pi,c as qi,d as ri,e as si}from"./chunks/chunk.UOYOPTMC.js";import{a as Jh,b as Kh,c as Lh,d as Mh}from"./chunks/chunk.VLGCUBD3.js";import{a as Rg,b as Sg,c as Tg,d as wh,e as xh}from"./chunks/chunk.22XYSOBK.js";import{a as vh}from"./chunks/chunk.LQAXFDOO.js";import{a as _g,b as $g,c as kh,d as oh,e as ph}from"./chunks/chunk.XRYKUVE3.js";import{a as qh,b as rh,c as sh,d as th,e as uh}from"./chunks/chunk.XTQO35SU.js";import"./chunks/chunk.MNFGVNDI.js";import{a as Ug,b as Vg,c as Wg,d as Xg,e as Yg,f as Zg,g as ah,h as jh}from"./chunks/chunk.DKP3U76M.js";import{a as gh,b as hh,c as ih}from"./chunks/chunk.SGTKZRDH.js";import{a as bh,b as ch,c as dh,d as eh,e as fh}from"./chunks/chunk.UNFOIEF6.js";import{a as yh,b as zh,c as Ah,d as Bh,e as Ch}from"./chunks/chunk.XEZ7QJES.js";import{a as Dh,b as Eh,c as Fh,d as Gh,e as Hh,f as Ih}from"./chunks/chunk.XNUJPZIK.js";import{a as lh,b as mh,c as nh}from"./chunks/chunk.WEE3TIAW.js";import{a as Og,b as Pg,c as Qg}from"./chunks/chunk.EUUVSENP.js";import{a as Bf,b as Cf,c as Df,d as Ef}from"./chunks/chunk.MKMYJBTE.js";import"./chunks/chunk.WF2MFLG4.js";import{a as Ff,b as Gf,c as Hf}from"./chunks/chunk.CPK2WOYA.js";import{a as If,b as Jf,c as Kf,d as Lf,e as Mf,f as Nf,g as Of,h as Pf,i as Qf,j as Rf,k as Sf}from"./chunks/chunk.CYRAGLUX.js";import{a as Tf,b as Uf,c as Vf,d as Wf,e as Xf,f as Yf}from"./chunks/chunk.XYK4TAXA.js";import"./chunks/chunk.QQDDGRY6.js";import{a as kf,b as lf,c as mf}from"./chunks/chunk.AERZO3JD.js";import{a as sf,b as tf,c as uf}from"./chunks/chunk.Y37FW3B4.js";import{a as nf,b as of,c as pf,d as qf,e as rf}from"./chunks/chunk.KUVFKOVR.js";import{a as ff,b as gf,c as hf,d as jf}from"./chunks/chunk.5BJ473N2.js";import{a as vf,b as wf,c as xf,d as yf,e as zf,f as Af}from"./chunks/chunk.CYLDP7ML.js";import{a as We,b as Xe,c as Ye,d as Ze,e as _e,f as $e}from"./chunks/chunk.6ZUV5N66.js";import{a as Pe,b as Qe,c as Re,d as Se,e as Te,f as Ue,g as Ve}from"./chunks/chunk.3HRCB7FN.js";import"./chunks/chunk.MSBAFZ54.js";import{a as af,b as bf,c as cf,d as df,e as ef}from"./chunks/chunk.TDWRBHQW.js";import{a as Fe,b as Ge,c as He}from"./chunks/chunk.6LRCYRAL.js";import{a as Ie,b as Je,c as Ke,d as Le,e as Me,f as Ne,g as Oe}from"./chunks/chunk.V6C2AEKZ.js";import"./chunks/chunk.MHEJZJT3.js";import{a as dd,b as ed,c as fd,d as gd,e as hd}from"./chunks/chunk.TRIZ4QJI.js";import{a as cd}from"./chunks/chunk.IRTZOSWK.js";import{a as _c,b as $c,c as ad,d as bd}from"./chunks/chunk.RDETMQHP.js";import{A as we,B as xe,C as ye,D as ze,E as Ae,F as Be,G as Ee,a as Yd,b as Zd,c as _d,d as $d,e as ae,f as be,g as ce,h as de,i as ee,j as fe,k as ge,l as he,m as ie,n as je,o as ke,p as le,q as me,r as ne,s as oe,t as pe,u as qe,v as re,w as se,x as te,y as ue,z as ve}from"./chunks/chunk.PRD35UWX.js";import{A as Ud,B as Vd,C as Wd,D as Xd,E as Ce,F as De,a as td,b as ud,c as vd,d as wd,e as xd,f as yd,g as zd,h as Ad,i as Bd,j as Cd,k as Ed,l as Fd,m as Gd,n as Hd,o as Id,p as Jd,q as Kd,r as Ld,s as Md,t as Nd,u as Od,v as Pd,w as Qd,x as Rd,y as Sd,z as Td}from"./chunks/chunk.KTEM7SW7.js";import{a as id,b as jd,c as kd,d as ld,e as md,f as nd,g as od,h as pd,i as qd,j as rd,k as sd}from"./chunks/chunk.ISCCPFAB.js";import{a as Dd}from"./chunks/chunk.YPZNIYQL.js";import{a as hb,b as ib,c as zb,d as Ab,e as Bb,f as Cb,g as Db,h as Eb,i as Fb,j as Gb,k as Hb}from"./chunks/chunk.HMJ3REU5.js";import{a as ta,b as ua,c as va}from"./chunks/chunk.H5IFZCUL.js";import{a as cb,b as db,c as eb,d as gb}from"./chunks/chunk.DXA626CF.js";import{a as bb,b as fb}from"./chunks/chunk.EYGSUZWX.js";import{a as jb,b as kb,c as lb,d as wb,e as xb,f as yb}from"./chunks/chunk.64BPRKXV.js";import"./chunks/chunk.ZCJNWF7K.js";import"./chunks/chunk.DONAMICM.js";import{a as Za,b as _a,c as $a,d as ab}from"./chunks/chunk.DBKVUCUQ.js";import"./chunks/chunk.IX2UHMIM.js";import"./chunks/chunk.CKS5A4YN.js";import{a as sb,b as tb,c as ub,d as vb}from"./chunks/chunk.VWLMQCC2.js";import{a as rb}from"./chunks/chunk.CGT6H4RE.js";import{a as mb,b as nb,c as ob,d as pb,e as qb}from"./chunks/chunk.3VO4CCLE.js";import{a as mc,b as nc,c as oc,d as pc,e as qc}from"./chunks/chunk.XT4IC25K.js";import{a as Gc,b as Hc,c as Ic,d as Jc,e as Kc}from"./chunks/chunk.BRBYFLUJ.js";import{a as Dc,b as Ec,c as Fc}from"./chunks/chunk.XKX2BE6Z.js";import{a as Ac,b as Bc}from"./chunks/chunk.AFW54X3W.js";import{a as Cc}from"./chunks/chunk.VS7NFAGM.js";import{a as zc}from"./chunks/chunk.KNKTQDLS.js";import{a as uc,b as vc,c as wc,d as xc,e as yc}from"./chunks/chunk.YVXZ753Q.js";import{a as rc,b as sc,c as tc}from"./chunks/chunk.M4PI24CI.js";import{a as Vc,b as Wc,c as Xc,d as Yc,e as Zc}from"./chunks/chunk.Z7Y2RA4P.js";import{a as Tb,b as Ub,c as Vb,d as Wb,e as Xb}from"./chunks/chunk.7C7XCT32.js";import{a as Fj,b as Gj,c as Hj,d as Ij,e as Jj}from"./chunks/chunk.5SM7UG6C.js";import{a as oa,b as pa,c as qa,d as ra,e as sa}from"./chunks/chunk.RZMTIEVK.js";import{a as ja,b as ka,c as la,d as ma,e as na}from"./chunks/chunk.ABB66VV2.js";import{a as g,b as h,c as ga,d as ha,e as ia}from"./chunks/chunk.B72LQPTW.js";import{a as cg,b as dg,c as eg,d as fg,e as gg,f as Ng}from"./chunks/chunk.VFWFNY53.js";import{a as vg,b as wg,c as xg,d as yg,e as zg}from"./chunks/chunk.LQEVGZKN.js";import{a as Zf,b as _f,c as $f,d as ag,e as bg}from"./chunks/chunk.DT4G43BK.js";import"./chunks/chunk.LKL5KWVY.js";import"./chunks/chunk.YKZ36ELA.js";import{a as Wa,b as Xa,c as Ya}from"./chunks/chunk.RQG6GVOI.js";import"./chunks/chunk.FZQCBRPK.js";import{a as Ma,b as Na,c as Oa,d as Pa}from"./chunks/chunk.K57IO236.js";import{a as za,b as Aa,c as Ia,d as Ja,e as Ka,f as La}from"./chunks/chunk.AJTQHK25.js";import"./chunks/chunk.6YPD6CQM.js";import{a as Qc,b as Rc,c as Sc,d as Tc,e as Uc}from"./chunks/chunk.B3LPXCVL.js";import{a as wa,b as xa,c as ya}from"./chunks/chunk.P73BXRKY.js";import"./chunks/chunk.V4TCOZLK.js";import"./chunks/chunk.4DAIIJ37.js";import{a as ng,b as og,c as pg}from"./chunks/chunk.BVMEPQRH.js";import{a as qg,b as rg,c as sg,d as tg,e as ug}from"./chunks/chunk.PTOAOW4U.js";import{a as Yb,b as Zb,c as _b,d as $b,e as ac,f as bc}from"./chunks/chunk.BNIUTBJV.js";import{a as Ig,b as Jg,c as Kg,d as Lg,e as Mg}from"./chunks/chunk.TJHXZ6PA.js";import{a as Ag,b as Bg,c as Cg,d as Gg,e as Hg}from"./chunks/chunk.LEOEVEFJ.js";import{a as Dg,b as Eg,c as Fg}from"./chunks/chunk.EOZITZSP.js";import{a as Lb,b as Mb,c as Pb,d as Qb,e as Rb,f as Sb}from"./chunks/chunk.6D5ERZ3Y.js";import{a as Nb,b as Ob}from"./chunks/chunk.AVKCWA7I.js";import{a as Ib,b as Jb,c as Kb}from"./chunks/chunk.BJZ7RB5F.js";import{a as Lc,b as Mc,c as Nc,d as Oc,e as Pc}from"./chunks/chunk.RHXQ2GMV.js";import{a as Qa,b as Ra,c as Sa,d as Ta,e as Ua,f as Va}from"./chunks/chunk.WCSVKQR2.js";import{a as dc,b as ec,c as fc}from"./chunks/chunk.LAM6EDW3.js";import{a as cc}from"./chunks/chunk.MV327MYK.js";import{a as Ba,b as Ca,c as Da,d as Ea,e as Fa,f as Ga,g as Ha}from"./chunks/chunk.EC5JFSHR.js";import"./chunks/chunk.2DXG2R3M.js";import"./chunks/chunk.F3MP6AXF.js";import{a as hg,b as ig,c as jg,d as kg,e as lg,f as mg}from"./chunks/chunk.P7AU3S6P.js";import"./chunks/chunk.MZLPUI6R.js";import{a as hc,b as ic,c as jc,d as kc,e as lc}from"./chunks/chunk.TEHQWMFI.js";import{a as gc}from"./chunks/chunk.SYHVVXRW.js";import"./chunks/chunk.YI4JTY4T.js";import"./chunks/chunk.3KQL7VAZ.js";import{a as U,b as V,c as W,d as X,e as Y,f as Z,g as _,h as $,i as aa,j as ba,k as ca,l as da,m as ea,n as fa}from"./chunks/chunk.B5TEOESG.js";import"./chunks/chunk.6KTLOA7V.js";import"./chunks/chunk.U6FJJGO3.js";import"./chunks/chunk.SKLCDWYQ.js";import{a as j}from"./chunks/chunk.2KXSGD3S.js";import{a as N,b as O,c as P,d as Q,e as R,f as S,g as T}from"./chunks/chunk.FVRSGKJD.js";import{a as k,b as l,c as m,d as n,e as o,f as p,g as q,h as t,i as u,j as v,k as w,l as x,m as y,n as z,o as A,p as B,q as C}from"./chunks/chunk.J3YNMJ7K.js";import{a as r,b as s}from"./chunks/chunk.7XFU2W25.js";import{a as D,b as E,c as F,d as G,e as H,f as I,g as J,h as K,i as L,j as M}from"./chunks/chunk.KYH5GKVI.js";import{a as i}from"./chunks/chunk.BESB4RGK.js";import{a as b}from"./chunks/chunk.UWYANU5D.js";import"./chunks/chunk.KTGSZEAG.js";import{b as c,c as d,d as e,e as f}from"./chunks/chunk.DL7NX432.js";import{l as a}from"./chunks/chunk.LJLEPTLU.js";import"./chunks/chunk.4LA6HEA7.js";import"./chunks/chunk.J2M2MXP2.js";import"./chunks/chunk.MCIQXNKY.js";export{Ni as ACCEPTABLE_KEYS,pa as ACCORDION_CONSTANTS,Lc as ALLOWED_CHILDREN,dg as APP_BAR_CONSTANTS,xg as APP_BAR_HELP_BUTTON_CONSTANTS,ng as APP_BAR_MENU_BUTTON_CONSTANTS,rg as APP_BAR_NOTIFICATION_BUTTON_CONSTANTS,Ig as APP_BAR_PROFILE_BUTTON_CONSTANTS,hg as APP_BAR_SEARCH_CONSTANTS,D as ARIA_CONTROLS_PLACEHOLDER_ID,hb as AUTOCOMPLETE_CONSTANTS,Lb as AVATAR_CONSTANTS,oa as AccordionAdapter,ra as AccordionComponent,qa as AccordionFoundation,eg as AppBarAdapter,gg as AppBarComponent,fg as AppBarFoundation,vg as AppBarHelpButtonAdapter,yg as AppBarHelpButtonComponent,wg as AppBarHelpButtonFoundation,og as AppBarMenuButtonComponent,qg as AppBarNotificationButtonAdapter,tg as AppBarNotificationButtonComponent,sg as AppBarNotificationButtonFoundation,Jg as AppBarProfileButtonAdapter,Lg as AppBarProfileButtonComponent,Kg as AppBarProfileButtonFoundation,kg as AppBarSearchAdapter,lg as AppBarSearchComponent,jg as AppBarSearchFoundation,zb as AutocompleteAdapter,Fb as AutocompleteComponent,Gb as AutocompleteComponentDelegate,Eb as AutocompleteFoundation,ib as AutocompleteMode,Mb as AvatarAdapter,Qb as AvatarComponent,Rb as AvatarComponentDelegate,Pb as AvatarFoundation,Tb as BACKDROP_CONSTANTS,Yb as BADGE_CONSTANTS,mc as BANNER_CONSTANTS,ff as BASE_DRAWER_CONSTANTS,Ug as BASE_SELECT_CONSTANTS,Gc as BOTTOM_SHEET_CONSTANTS,Vc as BUSY_INDICATOR_CONSTANTS,Fj as BUTTON_AREA_CONSTANTS,Mc as BUTTON_CONSTANTS,_c as BUTTON_TOGGLE_CONSTANTS,dd as BUTTON_TOGGLE_GROUP_CONSTANTS,Ub as BackdropAdapter,Wb as BackdropComponent,Vb as BackdropFoundation,Zb as BadgeAdapter,$b as BadgeComponent,ac as BadgeComponentDelegate,_b as BadgeFoundation,nc as BannerAdapter,pc as BannerComponent,oc as BannerFoundation,b as BaseAdapter,a as BaseComponent,i as BaseComponentDelegate,gf as BaseDrawerAdapter,jf as BaseDrawerComponent,hf as BaseDrawerFoundation,jh as BaseSelectAdapter,ah as BaseSelectComponent,Zg as BaseSelectFoundation,Hc as BottomSheetAdapter,Jc as BottomSheetComponent,Ic as BottomSheetFoundation,Wc as BusyIndicatorAdapter,Yc as BusyIndicatorComponent,Xc as BusyIndicatorFoundation,Gj as ButtonAreaAdapter,Ij as ButtonAreaComponent,Hj as ButtonAreaFoundation,Nc as ButtonComponent,Oc as ButtonComponentDelegate,$c as ButtonToggleAdapter,bd as ButtonToggleComponent,ad as ButtonToggleFoundation,ed as ButtonToggleGroupAdapter,gd as ButtonToggleGroupComponent,fd as ButtonToggleGroupFoundation,td as CALENDAR_CONSTANTS,Ce as CALENDAR_DROPDOWN_CONSTANTS,id as CALENDAR_MENU_CONSTANTS,Fe as CARD_CONSTANTS,f as CDN_BASE_URL,tc as CHECKBOX_CONSTANTS,nb as CHIP_CONSTANTS,jb as CHIP_FIELD_CONSTANTS,mb as CHIP_SET_CONSTANTS,Qc as CIRCULAR_PROGRESS_CONSTANTS,Ib as COLOR_CONSTANTS,Ie as COLOR_PICKER_CONSTANTS,c as COMPONENT_NAME_PREFIX,ye as CalendarAdapter,Ae as CalendarComponent,Be as CalendarComponentDelegate,De as CalendarDropdown,ze as CalendarFoundation,pd as CalendarMenuAdapter,rd as CalendarMenuComponent,qd as CalendarMenuFoundation,vd as CalendarMonthFocus,Ge as CardComponent,zi as CellAlign,vc as CheckboxAdapter,wc as CheckboxComponent,xc as CheckboxComponentDelegate,uc as CheckboxFoundation,ob as ChipAdapter,qb as ChipComponent,kb as ChipFieldAdapter,wb as ChipFieldComponent,xb as ChipFieldComponentDelegate,lb as ChipFieldFoundation,pb as ChipFoundation,sb as ChipSetAdapter,ub as ChipSetComponent,tb as ChipSetFoundation,Rc as CircularProgressAdapter,Tc as CircularProgressComponent,Sc as CircularProgressFoundation,Le as ColorPickerAdapter,Ne as ColorPickerComponent,Me as ColorPickerFoundation,Ke as ColorPickerValueType,We as DATE_PICKER_CONSTANTS,Qe as DATE_RANGE_PICKER_CONSTANTS,Je as DEFAULT_COLOR,ig as DEFAULT_COMBINED_OPTIONS,N as DEFAULT_DATE_MASK,af as DIALOG_CONSTANTS,ta as DIVIDER_CONSTANTS,kf as DRAWER_CONSTANTS,O as DateInputMask,Xe as DatePickerAdapter,Ze as DatePickerComponent,_e as DatePickerComponentDelegate,Ye as DatePickerFoundation,Pe as DatePickerRange,Dd as DateRange,Ue as DateRangeComponentDelegate,Re as DateRangePickerAdapter,Te as DateRangePickerComponent,Se as DateRangePickerFoundation,ud as DayOfWeek,cf as DialogAdapter,df as DialogComponent,bf as DialogFoundation,ua as DividerComponent,lf as DrawerComponent,ja as EXPANSION_PANEL_CONSTANTS,ka as ExpansionPanelAdapter,ma as ExpansionPanelComponent,la as ExpansionPanelFoundation,vf as FILE_PICKER_CONSTANTS,Bf as FLOATING_ACTION_BUTTON_CONSTANTS,_a as FLOATING_LABEL_CONSTANTS,wf as FilePickerAdapter,yf as FilePickerComponent,zf as FilePickerComponentDelegate,xf as FilePickerFoundation,Cf as FloatingActionButton,Df as FloatingActionButtonComponentDelegate,ab as FloatingLabel,Za as FloatingLabelAdapter,$a as FloatingLabelFoundation,Ca as ForgeRipple,Da as ForgeRippleFoundation,j as FormFieldComponentDelegate,y as HAS_MERIDIEM_REGEX,cc as ICON_BUTTON_CONSTANTS,e as ICON_CLASS_NAME,U as ICON_CONSTANTS,V as ICON_REGISTRY_KEY,Ff as INLINE_MESSAGE_CONSTANTS,k as ISO_8601_REGEX,l as ISO_TIMEZONE_REGEX,W as IconAdapter,dc as IconButtonComponent,ec as IconButtonComponentDelegate,da as IconComponent,ea as IconComponentDelegate,ca as IconFoundation,X as IconRegistry,Gf as InlineMessageComponent,If as KEYBOARD_SHORTCUT_CONSTANTS,Oi as KEYCODE_MAP,d as KEYSTROKE_DEBOUNCE_THRESHOLD,Kf as KeyboardShortcutAdapter,Rf as KeyboardShortcutComponent,Qf as KeyboardShortcutFoundation,Tf as LABEL_VALUE_CONSTANTS,wa as LINEAR_PROGRESS_CONSTANTS,za as LIST_CONSTANTS,Aa as LIST_ITEM_CONSTANTS,Uf as LabelValueAdapter,Wf as LabelValueComponent,Xf as LabelValueComponentDelegate,Vf as LabelValueFoundation,xa as LinearProgressComponent,Ma as ListAdapter,Oa as ListComponent,Na as ListFoundation,Ia as ListItemAdapter,Ka as ListItemComponent,Ja as ListItemFoundation,Zf as MENU_CONSTANTS,sf as MINI_DRAWER_CONSTANTS,of as MODAL_DRAWER_CONSTANTS,_f as MenuAdapter,ag as MenuComponent,$f as MenuFoundation,tf as MiniDrawerComponent,nf as ModalDrawerAdapter,qf as ModalDrawerComponent,pf as ModalDrawerFoundation,g as OPEN_ICON_CONSTANTS,ch as OPTION_CONSTANTS,gh as OPTION_GROUP_CONSTANTS,ga as OpenIconAdapter,ha as OpenIconComponent,h as OpenIconFoundation,bh as OptionAdapter,eh as OptionComponent,dh as OptionFoundation,hh as OptionGroupComponent,Ab as OptionType,Og as PAGE_STATE_CONSTANTS,Rg as PAGINATOR_CONSTANTS,x as PARSEABLE_TIME_FORMAT,Qa as POPUP_CONSTANTS,yh as PRODUCT_ICON_CONSTANTS,Ag as PROFILE_CARD_CONSTANTS,Pg as PageStateComponent,Tg as PaginatorAdapter,wh as PaginatorComponent,Sg as PaginatorFoundation,Sa as PopupAdapter,Ra as PopupAnimationType,Ua as PopupComponent,Ta as PopupFoundation,zh as ProductIconAdapter,Bh as ProductIconComponent,Ah as ProductIconFoundation,Bg as ProfileCardAdapter,Gg as ProfileCardComponent,Cg as ProfileCardFoundation,Dh as QUANTITY_FIELD_CONSTANTS,Eh as QuantityFieldAdapter,Gh as QuantityFieldComponent,Hh as QuantityFieldComponentDelegate,Fh as QuantityFieldFoundation,zc as RADIO_CONSTANTS,Ba as RIPPLE_CONSTANTS,Ac as RadioComponent,Ea as RippleAdapter,Ga as RippleComponent,Fa as RippleFoundation,lh as SCAFFOLD_CONSTANTS,qh as SELECT_CONSTANTS,_g as SELECT_DROPDOWN_CONSTANTS,Wa as SKELETON_CONSTANTS,Jh as SLIDER_CONSTANTS,gi as SPLIT_VIEW_CONSTANTS,Nh as SPLIT_VIEW_PANEL_CONSTANTS,zj as STACK_CONSTANTS,ti as STEPPER_CONSTANTS,oi as STEP_CONSTANTS,Cc as SWITCH_CONSTANTS,mh as ScaffoldComponent,rh as SelectAdapter,th as SelectComponent,vh as SelectComponentDelegate,kh as SelectDropdownAdapter,oh as SelectDropdownComponent,$g as SelectDropdownFoundation,sh as SelectFoundation,Vg as SelectOptionType,Xa as SkeletonComponent,Kh as SliderComponent,Lh as SliderComponentDelegate,Ai as SortDirection,ki as SplitViewAdapter,Oh as SplitViewAnimatingLayer,mi as SplitViewComponent,li as SplitViewFoundation,hi as SplitViewPanelAdapter,ii as SplitViewPanelComponent,fi as SplitViewPanelFoundation,Bj as StackAdapter,Aj as StackAlignMode,Dj as StackComponent,Cj as StackFoundation,pi as StepAdapter,ri as StepComponent,qi as StepFoundation,ui as StepperAdapter,wi as StepperComponent,vi as StepperFoundation,Dc as SwitchComponent,Ec as SwitchComponentDelegate,yi as TABLE_CONSTANTS,Mi as TAB_BAR_CONSTANTS,Hi as TAB_CONSTANTS,bb as TEXT_FIELD_CONSTANTS,Ti as TIME_PICKER_CONSTANTS,kj as TOAST_CONSTANTS,Dg as TOOLBAR_CONSTANTS,gc as TOOLTIP_CONSTANTS,P as TWELVE_HOUR_TIME_MASK,Q as TWELVE_HOUR_TIME_MASK_WITH_SECONDS,w as TWELVE_HOUR_TIME_REGEX,R as TWENTY_FOUR_HOUR_TIME_MASK,S as TWENTY_FOUR_HOUR_TIME_MASK_WITH_SECONDS,v as TWENTY_FOUR_HOUR_TIME_REGEX,Ii as TabAdapter,Qi as TabBarAdapter,Ri as TabBarComponent,Pi as TabBarFoundation,Ki as TabComponent,Ji as TabFoundation,Ci as TableAdapter,Fi as TableComponent,Bi as TableFilterType,Ei as TableFoundation,Di as TableRow,cb as TextFieldAdapter,eb as TextFieldComponent,fb as TextFieldComponentDelegate,db as TextFieldFoundation,T as TimeInputMask,Ui as TimePickerAdapter,hj as TimePickerComponent,ij as TimePickerComponentDelegate,gj as TimePickerFoundation,lj as ToastAdapter,nj as ToastComponent,mj as ToastFoundation,Eg as ToolbarComponent,ic as TooltipAdapter,kc as TooltipComponent,jc as TooltipFoundation,uj as VIEW_CONSTANTS,pj as VIEW_SWITCHER_CONSTANTS,qj as ViewAnimationDirection,vj as ViewComponent,sj as ViewSwitcherAdapter,rj as ViewSwitcherAnimationType,wj as ViewSwitcherComponent,tj as ViewSwitcherFoundation,hc as attachTooltip,_ as awaitIconDefinition,Xh as clampSize,Rh as clearState,we as coerceDateFromValue,ei as createOverlay,t as createSvgFromString,F as createUserInteractionListener,sa as defineAccordionComponent,Ng as defineAppBarComponent,zg as defineAppBarHelpButtonComponent,pg as defineAppBarMenuButtonComponent,ug as defineAppBarNotificationButtonComponent,Mg as defineAppBarProfileButtonComponent,mg as defineAppBarSearchComponent,Hb as defineAutocompleteComponent,Sb as defineAvatarComponent,Xb as defineBackdropComponent,bc as defineBadgeComponent,qc as defineBannerComponent,Kc as defineBottomSheetComponent,Zc as defineBusyIndicatorComponent,Jj as defineButtonAreaComponent,Pc as defineButtonComponent,cd as defineButtonToggleComponent,hd as defineButtonToggleGroupComponent,Ee as defineCalendarComponent,sd as defineCalendarMenuComponent,He as defineCardComponent,yc as defineCheckboxComponent,rb as defineChipComponent,yb as defineChipFieldComponent,vb as defineChipSetComponent,Uc as defineCircularProgressComponent,Oe as defineColorPickerComponent,Kj as defineComponents,$e as defineDatePickerComponent,Ve as defineDateRangePickerComponent,ef as defineDialogComponent,va as defineDividerComponent,mf as defineDrawerComponent,na as defineExpansionPanelComponent,Af as defineFilePickerComponent,Ef as defineFloatingActionButtonComponent,fc as defineIconButtonComponent,fa as defineIconComponent,Hf as defineInlineMessageComponent,Sf as defineKeyboardShortcutComponent,Yf as defineLabelValueComponent,ya as defineLinearProgressComponent,Pa as defineListComponent,La as defineListItemComponent,bg as defineMenuComponent,uf as defineMiniDrawerComponent,rf as defineModalDrawerComponent,ia as defineOpenIconComponent,fh as defineOptionComponent,ih as defineOptionGroupComponent,Qg as definePageStateComponent,xh as definePaginatorComponent,Va as definePopupComponent,Ch as defineProductIconComponent,Hg as defineProfileCardComponent,Ih as defineQuantityFieldComponent,Bc as defineRadioComponent,Ha as defineRippleComponent,nh as defineScaffoldComponent,uh as defineSelectComponent,ph as defineSelectDropdownComponent,Ya as defineSkeletonComponent,Mh as defineSliderComponent,ni as defineSplitViewComponent,ji as defineSplitViewPanelComponent,Ej as defineStackComponent,si as defineStepComponent,xi as defineStepperComponent,Fc as defineSwitchComponent,Si as defineTabBarComponent,Li as defineTabComponent,Gi as defineTableComponent,gb as defineTextFieldComponent,jj as defineTimePickerComponent,oj as defineToastComponent,Fg as defineToolbarComponent,lc as defineTooltipComponent,xj as defineViewComponent,yj as defineViewSwitcherComponent,Lf as elementAcceptsTextInput,cg as elementName,s as eventIncludesArrowKey,Vd as eventIncludesDate,Wd as eventIncludesElement,aa as fetchIconContent,Pf as fixKey,n as formatDate,Rd as getAccessibleHeader,qe as getAllYearOptions,Z as getCachedIcon,Td as getClearButton,Kb as getColor,ej as getCurrentTimeOfDayMillis,$h as getCursor,Jd as getDateElement,Fd as getDateId,he as getDateRangeFromDates,Id as getDateRow,Kd as getDateSpacerElement,ie as getDatesFromDateRange,ke as getDatesInRange,Hd as getDayElement,Ed as getDayId,le as getEventDescriptions,Md as getEventElement,Ld as getEventWrapperElement,Gd as getEventWrapperId,ue as getEventsOnDate,_d as getFirstDateOfWeek,ae as getFirstDayOfMonth,Ad as getFirstDayOfWeekForLocale,Sd as getFooter,jd as getGrid,kd as getGridItems,ai as getHandleIcon,Od as getHeader,te as getIndexOfDate,p as getLastDateOfMonth,$d as getLastDateOfWeek,ld as getList,md as getListItems,xd as getLocalizedDayOfMonth,wd as getLocalizedDayOfWeek,yd as getLocalizedMonth,zd as getLocalizedYear,je as getMinAndMaxDates,Of as getModiferKeysString,Pd as getMonthButtonContent,Yd as getMonthDates,q as getMonthLength,oe as getMonthOptions,ve as getMultipleFromRange,di as getPixelDimension,nd as getScrollSpy,Cb as getSelectedOption,be as getSortedDaysOfWeek,bi as getSplitViewPanelSibling,Ob as getTextColor,Jb as getThemeColor,Ud as getTodayButton,Nd as getTooltip,_h as getValuenow,Zd as getWeekDates,Bd as getWeekendDaysForLocale,Qd as getYearButtonContent,pe as getYearOptions,Zh as handleBoundariesAfterResize,Yh as handleBoundariesDuringResize,E as highlightTextHTML,aj as hoursToMillis,Ph as initState,se as isDisabled,de as isInMonth,ee as isInRange,Xg as isOptionGroupObject,Yg as isOptionObject,Bb as isOptionType,Cd as isRtlLocale,u as isSafeSvg,o as isSameDate,Wg as isSelectOptionType,re as isSelected,B as isSupportedTimeFormat,ce as isToday,Th as keyboardResize,Nf as matchKeyCombination,Vh as maxResize,fj as mergeDateWithTime,Xi as millisToHours,Zi as millisToMinutes,Yi as millisToMinutesClamped,$i as millisToSeconds,_i as millisToSecondsClamped,Wi as millisToTimeString,Uh as minResize,bj as minutesToMillis,sc as numbers,Db as optionEqualPredicate,me as parseDateOffset,m as parseDateString,Mf as parseKeyCombinations,ci as parseSize,ne as parseYearRange,G as percentToPixels,H as pixelsToPercent,Sh as pointerResize,r as proxyShadowScrollEvent,Nb as randomHexColor,od as removeAllExceptLastChild,$ as removeIconListener,Wh as resizeSibling,K as safeMax,J as safeMin,ba as sanitizeExternalType,Y as sanitizeSvgContent,I as scaleValue,cj as secondsToMillis,M as setAriaControls,Qh as setState,Xd as setTabindexOnElement,xe as shouldHandleEvent,fe as sortDates,ge as splitIntoWeeks,rc as strings,dj as stripSecondsFromMillis,Jf as textInputTypes,Vi as timeStringToMillis,A as tokenize12HourTimeString,z as tokenize24HourTimeString,C as tryCoerceTimeString,L as tryCreateAriaControlsPlaceholder};
6
+ import{a as Kj}from"./chunks/chunk.VQ2JQUQF.js";import{a as kj,b as lj,c as mj,d as nj,e as oj}from"./chunks/chunk.4TAJ2ISD.js";import"./chunks/chunk.WINL2C7Q.js";import{a as pj,b as qj,c as rj,d as sj,e as tj,f as wj,g as yj}from"./chunks/chunk.WYUMHNVZ.js";import{a as uj,b as vj,c as xj}from"./chunks/chunk.4LQ2NTZ6.js";import{a as yi,b as zi,c as Ai,d as Bi,e as Ci,f as Di,g as Ei,h as Fi,i as Gi}from"./chunks/chunk.YBEKNPIH.js";import"./chunks/chunk.TLCGGWBO.js";import{a as Mi,b as Ni,c as Oi,d as Pi,e as Qi,f as Ri,g as Si}from"./chunks/chunk.ZFVGFJUF.js";import{a as Li}from"./chunks/chunk.3V2VDOOP.js";import{a as Hi,b as Ii,c as Ji,d as Ki}from"./chunks/chunk.OML7MHH6.js";import{a as Ti,b as Ui,c as Vi,d as Wi,e as Xi,f as Yi,g as Zi,h as _i,i as $i,j as aj,k as bj,l as cj,m as dj,n as ej,o as fj,p as gj,q as hj,r as ij,s as jj}from"./chunks/chunk.SCLNLPNS.js";import"./chunks/chunk.X2RP4QW3.js";import"./chunks/chunk.AJJILT3A.js";import{a as ki,b as li,c as mi,d as ni}from"./chunks/chunk.MGWC4Z47.js";import{a as Nh,b as Oh,c as Ph,d as Qh,e as Rh,f as Sh,g as Th,h as Uh,i as Vh,j as Wh,k as Xh,l as Yh,m as Zh,n as _h,o as $h,p as ai,q as bi,r as ci,s as di,t as ei,u as fi,v as gi,w as hi,x as ii,y as ji}from"./chunks/chunk.76OPSTSH.js";import"./chunks/chunk.LIKJD4SK.js";import{a as zj,b as Aj,c as Bj,d as Cj,e as Dj,f as Ej}from"./chunks/chunk.AM65KICK.js";import"./chunks/chunk.E4NCI7MS.js";import{a as ti,b as ui,c as vi,d as wi,e as xi}from"./chunks/chunk.SMIOTQJL.js";import{a as oi,b as pi,c as qi,d as ri,e as si}from"./chunks/chunk.UOYOPTMC.js";import{a as Jh,b as Kh,c as Lh,d as Mh}from"./chunks/chunk.VLGCUBD3.js";import{a as Rg,b as Sg,c as Tg,d as wh,e as xh}from"./chunks/chunk.22XYSOBK.js";import{a as vh}from"./chunks/chunk.LQAXFDOO.js";import{a as _g,b as $g,c as kh,d as oh,e as ph}from"./chunks/chunk.XRYKUVE3.js";import{a as qh,b as rh,c as sh,d as th,e as uh}from"./chunks/chunk.XTQO35SU.js";import"./chunks/chunk.MNFGVNDI.js";import{a as Ug,b as Vg,c as Wg,d as Xg,e as Yg,f as Zg,g as ah,h as jh}from"./chunks/chunk.DKP3U76M.js";import{a as gh,b as hh,c as ih}from"./chunks/chunk.SGTKZRDH.js";import{a as bh,b as ch,c as dh,d as eh,e as fh}from"./chunks/chunk.UNFOIEF6.js";import{a as yh,b as zh,c as Ah,d as Bh,e as Ch}from"./chunks/chunk.XEZ7QJES.js";import{a as Dh,b as Eh,c as Fh,d as Gh,e as Hh,f as Ih}from"./chunks/chunk.XNUJPZIK.js";import{a as lh,b as mh,c as nh}from"./chunks/chunk.WEE3TIAW.js";import{a as Og,b as Pg,c as Qg}from"./chunks/chunk.EUUVSENP.js";import{a as Bf,b as Cf,c as Df,d as Ef}from"./chunks/chunk.MKMYJBTE.js";import"./chunks/chunk.WF2MFLG4.js";import{a as Ff,b as Gf,c as Hf}from"./chunks/chunk.CPK2WOYA.js";import{a as If,b as Jf,c as Kf,d as Lf,e as Mf,f as Nf,g as Of,h as Pf,i as Qf,j as Rf,k as Sf}from"./chunks/chunk.CYRAGLUX.js";import{a as Tf,b as Uf,c as Vf,d as Wf,e as Xf,f as Yf}from"./chunks/chunk.XYK4TAXA.js";import"./chunks/chunk.QQDDGRY6.js";import{a as kf,b as lf,c as mf}from"./chunks/chunk.AERZO3JD.js";import{a as sf,b as tf,c as uf}from"./chunks/chunk.Y37FW3B4.js";import{a as nf,b as of,c as pf,d as qf,e as rf}from"./chunks/chunk.KUVFKOVR.js";import{a as ff,b as gf,c as hf,d as jf}from"./chunks/chunk.5BJ473N2.js";import{a as vf,b as wf,c as xf,d as yf,e as zf,f as Af}from"./chunks/chunk.CYLDP7ML.js";import{a as We,b as Xe,c as Ye,d as Ze,e as _e,f as $e}from"./chunks/chunk.6ZUV5N66.js";import{a as Pe,b as Qe,c as Re,d as Se,e as Te,f as Ue,g as Ve}from"./chunks/chunk.3HRCB7FN.js";import"./chunks/chunk.MSBAFZ54.js";import{a as af,b as bf,c as cf,d as df,e as ef}from"./chunks/chunk.TDWRBHQW.js";import{a as Fe,b as Ge,c as He}from"./chunks/chunk.6LRCYRAL.js";import{a as Ie,b as Je,c as Ke,d as Le,e as Me,f as Ne,g as Oe}from"./chunks/chunk.V6C2AEKZ.js";import"./chunks/chunk.MHEJZJT3.js";import{a as dd,b as ed,c as fd,d as gd,e as hd}from"./chunks/chunk.TRIZ4QJI.js";import{a as cd}from"./chunks/chunk.IRTZOSWK.js";import{a as _c,b as $c,c as ad,d as bd}from"./chunks/chunk.RDETMQHP.js";import{A as we,B as xe,C as ye,D as ze,E as Ae,F as Be,G as Ee,a as Yd,b as Zd,c as _d,d as $d,e as ae,f as be,g as ce,h as de,i as ee,j as fe,k as ge,l as he,m as ie,n as je,o as ke,p as le,q as me,r as ne,s as oe,t as pe,u as qe,v as re,w as se,x as te,y as ue,z as ve}from"./chunks/chunk.PRD35UWX.js";import{A as Ud,B as Vd,C as Wd,D as Xd,E as Ce,F as De,a as td,b as ud,c as vd,d as wd,e as xd,f as yd,g as zd,h as Ad,i as Bd,j as Cd,k as Ed,l as Fd,m as Gd,n as Hd,o as Id,p as Jd,q as Kd,r as Ld,s as Md,t as Nd,u as Od,v as Pd,w as Qd,x as Rd,y as Sd,z as Td}from"./chunks/chunk.KTEM7SW7.js";import{a as id,b as jd,c as kd,d as ld,e as md,f as nd,g as od,h as pd,i as qd,j as rd,k as sd}from"./chunks/chunk.ISCCPFAB.js";import{a as Dd}from"./chunks/chunk.YPZNIYQL.js";import{a as hb,b as ib,c as zb,d as Ab,e as Bb,f as Cb,g as Db,h as Eb,i as Fb,j as Gb,k as Hb}from"./chunks/chunk.RSFO2MD5.js";import{a as ta,b as ua,c as va}from"./chunks/chunk.H5IFZCUL.js";import{a as cb,b as db,c as eb,d as gb}from"./chunks/chunk.PKZQ4SBU.js";import{a as bb,b as fb}from"./chunks/chunk.EYGSUZWX.js";import{a as jb,b as kb,c as lb,d as wb,e as xb,f as yb}from"./chunks/chunk.64BPRKXV.js";import"./chunks/chunk.ZCJNWF7K.js";import"./chunks/chunk.DONAMICM.js";import{a as Za,b as _a,c as $a,d as ab}from"./chunks/chunk.DBKVUCUQ.js";import"./chunks/chunk.IX2UHMIM.js";import"./chunks/chunk.CKS5A4YN.js";import{a as sb,b as tb,c as ub,d as vb}from"./chunks/chunk.VWLMQCC2.js";import{a as rb}from"./chunks/chunk.CGT6H4RE.js";import{a as mb,b as nb,c as ob,d as pb,e as qb}from"./chunks/chunk.3VO4CCLE.js";import{a as mc,b as nc,c as oc,d as pc,e as qc}from"./chunks/chunk.XT4IC25K.js";import{a as Gc,b as Hc,c as Ic,d as Jc,e as Kc}from"./chunks/chunk.BRBYFLUJ.js";import{a as Dc,b as Ec,c as Fc}from"./chunks/chunk.XKX2BE6Z.js";import{a as Ac,b as Bc}from"./chunks/chunk.AFW54X3W.js";import{a as Cc}from"./chunks/chunk.VS7NFAGM.js";import{a as zc}from"./chunks/chunk.KNKTQDLS.js";import{a as uc,b as vc,c as wc,d as xc,e as yc}from"./chunks/chunk.YVXZ753Q.js";import{a as rc,b as sc,c as tc}from"./chunks/chunk.M4PI24CI.js";import{a as Vc,b as Wc,c as Xc,d as Yc,e as Zc}from"./chunks/chunk.Z7Y2RA4P.js";import{a as Tb,b as Ub,c as Vb,d as Wb,e as Xb}from"./chunks/chunk.7C7XCT32.js";import{a as Fj,b as Gj,c as Hj,d as Ij,e as Jj}from"./chunks/chunk.5SM7UG6C.js";import{a as oa,b as pa,c as qa,d as ra,e as sa}from"./chunks/chunk.RZMTIEVK.js";import{a as ja,b as ka,c as la,d as ma,e as na}from"./chunks/chunk.ABB66VV2.js";import{a as g,b as h,c as ga,d as ha,e as ia}from"./chunks/chunk.B72LQPTW.js";import{a as cg,b as dg,c as eg,d as fg,e as gg,f as Ng}from"./chunks/chunk.VFWFNY53.js";import{a as vg,b as wg,c as xg,d as yg,e as zg}from"./chunks/chunk.LQEVGZKN.js";import{a as Zf,b as _f,c as $f,d as ag,e as bg}from"./chunks/chunk.DT4G43BK.js";import"./chunks/chunk.LKL5KWVY.js";import"./chunks/chunk.YKZ36ELA.js";import{a as Wa,b as Xa,c as Ya}from"./chunks/chunk.RQG6GVOI.js";import"./chunks/chunk.FZQCBRPK.js";import{a as Ma,b as Na,c as Oa,d as Pa}from"./chunks/chunk.K57IO236.js";import{a as za,b as Aa,c as Ia,d as Ja,e as Ka,f as La}from"./chunks/chunk.AJTQHK25.js";import"./chunks/chunk.6YPD6CQM.js";import{a as Qc,b as Rc,c as Sc,d as Tc,e as Uc}from"./chunks/chunk.B3LPXCVL.js";import{a as wa,b as xa,c as ya}from"./chunks/chunk.P73BXRKY.js";import"./chunks/chunk.V4TCOZLK.js";import"./chunks/chunk.4DAIIJ37.js";import{a as ng,b as og,c as pg}from"./chunks/chunk.BVMEPQRH.js";import{a as qg,b as rg,c as sg,d as tg,e as ug}from"./chunks/chunk.PTOAOW4U.js";import{a as Yb,b as Zb,c as _b,d as $b,e as ac,f as bc}from"./chunks/chunk.BNIUTBJV.js";import{a as Ig,b as Jg,c as Kg,d as Lg,e as Mg}from"./chunks/chunk.TJHXZ6PA.js";import{a as Ag,b as Bg,c as Cg,d as Gg,e as Hg}from"./chunks/chunk.LEOEVEFJ.js";import{a as Dg,b as Eg,c as Fg}from"./chunks/chunk.EOZITZSP.js";import{a as Lb,b as Mb,c as Pb,d as Qb,e as Rb,f as Sb}from"./chunks/chunk.6D5ERZ3Y.js";import{a as Nb,b as Ob}from"./chunks/chunk.AVKCWA7I.js";import{a as Ib,b as Jb,c as Kb}from"./chunks/chunk.BJZ7RB5F.js";import{a as Lc,b as Mc,c as Nc,d as Oc,e as Pc}from"./chunks/chunk.RHXQ2GMV.js";import{a as Qa,b as Ra,c as Sa,d as Ta,e as Ua,f as Va}from"./chunks/chunk.WCSVKQR2.js";import{a as dc,b as ec,c as fc}from"./chunks/chunk.LAM6EDW3.js";import{a as cc}from"./chunks/chunk.MV327MYK.js";import{a as Ba,b as Ca,c as Da,d as Ea,e as Fa,f as Ga,g as Ha}from"./chunks/chunk.EC5JFSHR.js";import"./chunks/chunk.2DXG2R3M.js";import"./chunks/chunk.F3MP6AXF.js";import{a as hg,b as ig,c as jg,d as kg,e as lg,f as mg}from"./chunks/chunk.P7AU3S6P.js";import"./chunks/chunk.MZLPUI6R.js";import{a as hc,b as ic,c as jc,d as kc,e as lc}from"./chunks/chunk.TEHQWMFI.js";import{a as gc}from"./chunks/chunk.SYHVVXRW.js";import"./chunks/chunk.YI4JTY4T.js";import"./chunks/chunk.3KQL7VAZ.js";import{a as U,b as V,c as W,d as X,e as Y,f as Z,g as _,h as $,i as aa,j as ba,k as ca,l as da,m as ea,n as fa}from"./chunks/chunk.B5TEOESG.js";import"./chunks/chunk.6KTLOA7V.js";import"./chunks/chunk.U6FJJGO3.js";import"./chunks/chunk.SKLCDWYQ.js";import{a as j}from"./chunks/chunk.2KXSGD3S.js";import{a as N,b as O,c as P,d as Q,e as R,f as S,g as T}from"./chunks/chunk.FVRSGKJD.js";import{a as k,b as l,c as m,d as n,e as o,f as p,g as q,h as t,i as u,j as v,k as w,l as x,m as y,n as z,o as A,p as B,q as C}from"./chunks/chunk.J3YNMJ7K.js";import{a as r,b as s}from"./chunks/chunk.7XFU2W25.js";import{a as D,b as E,c as F,d as G,e as H,f as I,g as J,h as K,i as L,j as M}from"./chunks/chunk.KYH5GKVI.js";import{a as i}from"./chunks/chunk.BESB4RGK.js";import{a as b}from"./chunks/chunk.UWYANU5D.js";import"./chunks/chunk.KTGSZEAG.js";import{b as c,c as d,d as e,e as f}from"./chunks/chunk.DL7NX432.js";import{l as a}from"./chunks/chunk.LJLEPTLU.js";import"./chunks/chunk.4LA6HEA7.js";import"./chunks/chunk.J2M2MXP2.js";import"./chunks/chunk.MCIQXNKY.js";export{Ni as ACCEPTABLE_KEYS,pa as ACCORDION_CONSTANTS,Lc as ALLOWED_CHILDREN,dg as APP_BAR_CONSTANTS,xg as APP_BAR_HELP_BUTTON_CONSTANTS,ng as APP_BAR_MENU_BUTTON_CONSTANTS,rg as APP_BAR_NOTIFICATION_BUTTON_CONSTANTS,Ig as APP_BAR_PROFILE_BUTTON_CONSTANTS,hg as APP_BAR_SEARCH_CONSTANTS,D as ARIA_CONTROLS_PLACEHOLDER_ID,hb as AUTOCOMPLETE_CONSTANTS,Lb as AVATAR_CONSTANTS,oa as AccordionAdapter,ra as AccordionComponent,qa as AccordionFoundation,eg as AppBarAdapter,gg as AppBarComponent,fg as AppBarFoundation,vg as AppBarHelpButtonAdapter,yg as AppBarHelpButtonComponent,wg as AppBarHelpButtonFoundation,og as AppBarMenuButtonComponent,qg as AppBarNotificationButtonAdapter,tg as AppBarNotificationButtonComponent,sg as AppBarNotificationButtonFoundation,Jg as AppBarProfileButtonAdapter,Lg as AppBarProfileButtonComponent,Kg as AppBarProfileButtonFoundation,kg as AppBarSearchAdapter,lg as AppBarSearchComponent,jg as AppBarSearchFoundation,zb as AutocompleteAdapter,Fb as AutocompleteComponent,Gb as AutocompleteComponentDelegate,Eb as AutocompleteFoundation,ib as AutocompleteMode,Mb as AvatarAdapter,Qb as AvatarComponent,Rb as AvatarComponentDelegate,Pb as AvatarFoundation,Tb as BACKDROP_CONSTANTS,Yb as BADGE_CONSTANTS,mc as BANNER_CONSTANTS,ff as BASE_DRAWER_CONSTANTS,Ug as BASE_SELECT_CONSTANTS,Gc as BOTTOM_SHEET_CONSTANTS,Vc as BUSY_INDICATOR_CONSTANTS,Fj as BUTTON_AREA_CONSTANTS,Mc as BUTTON_CONSTANTS,_c as BUTTON_TOGGLE_CONSTANTS,dd as BUTTON_TOGGLE_GROUP_CONSTANTS,Ub as BackdropAdapter,Wb as BackdropComponent,Vb as BackdropFoundation,Zb as BadgeAdapter,$b as BadgeComponent,ac as BadgeComponentDelegate,_b as BadgeFoundation,nc as BannerAdapter,pc as BannerComponent,oc as BannerFoundation,b as BaseAdapter,a as BaseComponent,i as BaseComponentDelegate,gf as BaseDrawerAdapter,jf as BaseDrawerComponent,hf as BaseDrawerFoundation,jh as BaseSelectAdapter,ah as BaseSelectComponent,Zg as BaseSelectFoundation,Hc as BottomSheetAdapter,Jc as BottomSheetComponent,Ic as BottomSheetFoundation,Wc as BusyIndicatorAdapter,Yc as BusyIndicatorComponent,Xc as BusyIndicatorFoundation,Gj as ButtonAreaAdapter,Ij as ButtonAreaComponent,Hj as ButtonAreaFoundation,Nc as ButtonComponent,Oc as ButtonComponentDelegate,$c as ButtonToggleAdapter,bd as ButtonToggleComponent,ad as ButtonToggleFoundation,ed as ButtonToggleGroupAdapter,gd as ButtonToggleGroupComponent,fd as ButtonToggleGroupFoundation,td as CALENDAR_CONSTANTS,Ce as CALENDAR_DROPDOWN_CONSTANTS,id as CALENDAR_MENU_CONSTANTS,Fe as CARD_CONSTANTS,f as CDN_BASE_URL,tc as CHECKBOX_CONSTANTS,nb as CHIP_CONSTANTS,jb as CHIP_FIELD_CONSTANTS,mb as CHIP_SET_CONSTANTS,Qc as CIRCULAR_PROGRESS_CONSTANTS,Ib as COLOR_CONSTANTS,Ie as COLOR_PICKER_CONSTANTS,c as COMPONENT_NAME_PREFIX,ye as CalendarAdapter,Ae as CalendarComponent,Be as CalendarComponentDelegate,De as CalendarDropdown,ze as CalendarFoundation,pd as CalendarMenuAdapter,rd as CalendarMenuComponent,qd as CalendarMenuFoundation,vd as CalendarMonthFocus,Ge as CardComponent,zi as CellAlign,vc as CheckboxAdapter,wc as CheckboxComponent,xc as CheckboxComponentDelegate,uc as CheckboxFoundation,ob as ChipAdapter,qb as ChipComponent,kb as ChipFieldAdapter,wb as ChipFieldComponent,xb as ChipFieldComponentDelegate,lb as ChipFieldFoundation,pb as ChipFoundation,sb as ChipSetAdapter,ub as ChipSetComponent,tb as ChipSetFoundation,Rc as CircularProgressAdapter,Tc as CircularProgressComponent,Sc as CircularProgressFoundation,Le as ColorPickerAdapter,Ne as ColorPickerComponent,Me as ColorPickerFoundation,Ke as ColorPickerValueType,We as DATE_PICKER_CONSTANTS,Qe as DATE_RANGE_PICKER_CONSTANTS,Je as DEFAULT_COLOR,ig as DEFAULT_COMBINED_OPTIONS,N as DEFAULT_DATE_MASK,af as DIALOG_CONSTANTS,ta as DIVIDER_CONSTANTS,kf as DRAWER_CONSTANTS,O as DateInputMask,Xe as DatePickerAdapter,Ze as DatePickerComponent,_e as DatePickerComponentDelegate,Ye as DatePickerFoundation,Pe as DatePickerRange,Dd as DateRange,Ue as DateRangeComponentDelegate,Re as DateRangePickerAdapter,Te as DateRangePickerComponent,Se as DateRangePickerFoundation,ud as DayOfWeek,cf as DialogAdapter,df as DialogComponent,bf as DialogFoundation,ua as DividerComponent,lf as DrawerComponent,ja as EXPANSION_PANEL_CONSTANTS,ka as ExpansionPanelAdapter,ma as ExpansionPanelComponent,la as ExpansionPanelFoundation,vf as FILE_PICKER_CONSTANTS,Bf as FLOATING_ACTION_BUTTON_CONSTANTS,_a as FLOATING_LABEL_CONSTANTS,wf as FilePickerAdapter,yf as FilePickerComponent,zf as FilePickerComponentDelegate,xf as FilePickerFoundation,Cf as FloatingActionButton,Df as FloatingActionButtonComponentDelegate,ab as FloatingLabel,Za as FloatingLabelAdapter,$a as FloatingLabelFoundation,Ca as ForgeRipple,Da as ForgeRippleFoundation,j as FormFieldComponentDelegate,y as HAS_MERIDIEM_REGEX,cc as ICON_BUTTON_CONSTANTS,e as ICON_CLASS_NAME,U as ICON_CONSTANTS,V as ICON_REGISTRY_KEY,Ff as INLINE_MESSAGE_CONSTANTS,k as ISO_8601_REGEX,l as ISO_TIMEZONE_REGEX,W as IconAdapter,dc as IconButtonComponent,ec as IconButtonComponentDelegate,da as IconComponent,ea as IconComponentDelegate,ca as IconFoundation,X as IconRegistry,Gf as InlineMessageComponent,If as KEYBOARD_SHORTCUT_CONSTANTS,Oi as KEYCODE_MAP,d as KEYSTROKE_DEBOUNCE_THRESHOLD,Kf as KeyboardShortcutAdapter,Rf as KeyboardShortcutComponent,Qf as KeyboardShortcutFoundation,Tf as LABEL_VALUE_CONSTANTS,wa as LINEAR_PROGRESS_CONSTANTS,za as LIST_CONSTANTS,Aa as LIST_ITEM_CONSTANTS,Uf as LabelValueAdapter,Wf as LabelValueComponent,Xf as LabelValueComponentDelegate,Vf as LabelValueFoundation,xa as LinearProgressComponent,Ma as ListAdapter,Oa as ListComponent,Na as ListFoundation,Ia as ListItemAdapter,Ka as ListItemComponent,Ja as ListItemFoundation,Zf as MENU_CONSTANTS,sf as MINI_DRAWER_CONSTANTS,of as MODAL_DRAWER_CONSTANTS,_f as MenuAdapter,ag as MenuComponent,$f as MenuFoundation,tf as MiniDrawerComponent,nf as ModalDrawerAdapter,qf as ModalDrawerComponent,pf as ModalDrawerFoundation,g as OPEN_ICON_CONSTANTS,ch as OPTION_CONSTANTS,gh as OPTION_GROUP_CONSTANTS,ga as OpenIconAdapter,ha as OpenIconComponent,h as OpenIconFoundation,bh as OptionAdapter,eh as OptionComponent,dh as OptionFoundation,hh as OptionGroupComponent,Ab as OptionType,Og as PAGE_STATE_CONSTANTS,Rg as PAGINATOR_CONSTANTS,x as PARSEABLE_TIME_FORMAT,Qa as POPUP_CONSTANTS,yh as PRODUCT_ICON_CONSTANTS,Ag as PROFILE_CARD_CONSTANTS,Pg as PageStateComponent,Tg as PaginatorAdapter,wh as PaginatorComponent,Sg as PaginatorFoundation,Sa as PopupAdapter,Ra as PopupAnimationType,Ua as PopupComponent,Ta as PopupFoundation,zh as ProductIconAdapter,Bh as ProductIconComponent,Ah as ProductIconFoundation,Bg as ProfileCardAdapter,Gg as ProfileCardComponent,Cg as ProfileCardFoundation,Dh as QUANTITY_FIELD_CONSTANTS,Eh as QuantityFieldAdapter,Gh as QuantityFieldComponent,Hh as QuantityFieldComponentDelegate,Fh as QuantityFieldFoundation,zc as RADIO_CONSTANTS,Ba as RIPPLE_CONSTANTS,Ac as RadioComponent,Ea as RippleAdapter,Ga as RippleComponent,Fa as RippleFoundation,lh as SCAFFOLD_CONSTANTS,qh as SELECT_CONSTANTS,_g as SELECT_DROPDOWN_CONSTANTS,Wa as SKELETON_CONSTANTS,Jh as SLIDER_CONSTANTS,gi as SPLIT_VIEW_CONSTANTS,Nh as SPLIT_VIEW_PANEL_CONSTANTS,zj as STACK_CONSTANTS,ti as STEPPER_CONSTANTS,oi as STEP_CONSTANTS,Cc as SWITCH_CONSTANTS,mh as ScaffoldComponent,rh as SelectAdapter,th as SelectComponent,vh as SelectComponentDelegate,kh as SelectDropdownAdapter,oh as SelectDropdownComponent,$g as SelectDropdownFoundation,sh as SelectFoundation,Vg as SelectOptionType,Xa as SkeletonComponent,Kh as SliderComponent,Lh as SliderComponentDelegate,Ai as SortDirection,ki as SplitViewAdapter,Oh as SplitViewAnimatingLayer,mi as SplitViewComponent,li as SplitViewFoundation,hi as SplitViewPanelAdapter,ii as SplitViewPanelComponent,fi as SplitViewPanelFoundation,Bj as StackAdapter,Aj as StackAlignMode,Dj as StackComponent,Cj as StackFoundation,pi as StepAdapter,ri as StepComponent,qi as StepFoundation,ui as StepperAdapter,wi as StepperComponent,vi as StepperFoundation,Dc as SwitchComponent,Ec as SwitchComponentDelegate,yi as TABLE_CONSTANTS,Mi as TAB_BAR_CONSTANTS,Hi as TAB_CONSTANTS,bb as TEXT_FIELD_CONSTANTS,Ti as TIME_PICKER_CONSTANTS,kj as TOAST_CONSTANTS,Dg as TOOLBAR_CONSTANTS,gc as TOOLTIP_CONSTANTS,P as TWELVE_HOUR_TIME_MASK,Q as TWELVE_HOUR_TIME_MASK_WITH_SECONDS,w as TWELVE_HOUR_TIME_REGEX,R as TWENTY_FOUR_HOUR_TIME_MASK,S as TWENTY_FOUR_HOUR_TIME_MASK_WITH_SECONDS,v as TWENTY_FOUR_HOUR_TIME_REGEX,Ii as TabAdapter,Qi as TabBarAdapter,Ri as TabBarComponent,Pi as TabBarFoundation,Ki as TabComponent,Ji as TabFoundation,Ci as TableAdapter,Fi as TableComponent,Bi as TableFilterType,Ei as TableFoundation,Di as TableRow,cb as TextFieldAdapter,eb as TextFieldComponent,fb as TextFieldComponentDelegate,db as TextFieldFoundation,T as TimeInputMask,Ui as TimePickerAdapter,hj as TimePickerComponent,ij as TimePickerComponentDelegate,gj as TimePickerFoundation,lj as ToastAdapter,nj as ToastComponent,mj as ToastFoundation,Eg as ToolbarComponent,ic as TooltipAdapter,kc as TooltipComponent,jc as TooltipFoundation,uj as VIEW_CONSTANTS,pj as VIEW_SWITCHER_CONSTANTS,qj as ViewAnimationDirection,vj as ViewComponent,sj as ViewSwitcherAdapter,rj as ViewSwitcherAnimationType,wj as ViewSwitcherComponent,tj as ViewSwitcherFoundation,hc as attachTooltip,_ as awaitIconDefinition,Xh as clampSize,Rh as clearState,we as coerceDateFromValue,ei as createOverlay,t as createSvgFromString,F as createUserInteractionListener,sa as defineAccordionComponent,Ng as defineAppBarComponent,zg as defineAppBarHelpButtonComponent,pg as defineAppBarMenuButtonComponent,ug as defineAppBarNotificationButtonComponent,Mg as defineAppBarProfileButtonComponent,mg as defineAppBarSearchComponent,Hb as defineAutocompleteComponent,Sb as defineAvatarComponent,Xb as defineBackdropComponent,bc as defineBadgeComponent,qc as defineBannerComponent,Kc as defineBottomSheetComponent,Zc as defineBusyIndicatorComponent,Jj as defineButtonAreaComponent,Pc as defineButtonComponent,cd as defineButtonToggleComponent,hd as defineButtonToggleGroupComponent,Ee as defineCalendarComponent,sd as defineCalendarMenuComponent,He as defineCardComponent,yc as defineCheckboxComponent,rb as defineChipComponent,yb as defineChipFieldComponent,vb as defineChipSetComponent,Uc as defineCircularProgressComponent,Oe as defineColorPickerComponent,Kj as defineComponents,$e as defineDatePickerComponent,Ve as defineDateRangePickerComponent,ef as defineDialogComponent,va as defineDividerComponent,mf as defineDrawerComponent,na as defineExpansionPanelComponent,Af as defineFilePickerComponent,Ef as defineFloatingActionButtonComponent,fc as defineIconButtonComponent,fa as defineIconComponent,Hf as defineInlineMessageComponent,Sf as defineKeyboardShortcutComponent,Yf as defineLabelValueComponent,ya as defineLinearProgressComponent,Pa as defineListComponent,La as defineListItemComponent,bg as defineMenuComponent,uf as defineMiniDrawerComponent,rf as defineModalDrawerComponent,ia as defineOpenIconComponent,fh as defineOptionComponent,ih as defineOptionGroupComponent,Qg as definePageStateComponent,xh as definePaginatorComponent,Va as definePopupComponent,Ch as defineProductIconComponent,Hg as defineProfileCardComponent,Ih as defineQuantityFieldComponent,Bc as defineRadioComponent,Ha as defineRippleComponent,nh as defineScaffoldComponent,uh as defineSelectComponent,ph as defineSelectDropdownComponent,Ya as defineSkeletonComponent,Mh as defineSliderComponent,ni as defineSplitViewComponent,ji as defineSplitViewPanelComponent,Ej as defineStackComponent,si as defineStepComponent,xi as defineStepperComponent,Fc as defineSwitchComponent,Si as defineTabBarComponent,Li as defineTabComponent,Gi as defineTableComponent,gb as defineTextFieldComponent,jj as defineTimePickerComponent,oj as defineToastComponent,Fg as defineToolbarComponent,lc as defineTooltipComponent,xj as defineViewComponent,yj as defineViewSwitcherComponent,Lf as elementAcceptsTextInput,cg as elementName,s as eventIncludesArrowKey,Vd as eventIncludesDate,Wd as eventIncludesElement,aa as fetchIconContent,Pf as fixKey,n as formatDate,Rd as getAccessibleHeader,qe as getAllYearOptions,Z as getCachedIcon,Td as getClearButton,Kb as getColor,ej as getCurrentTimeOfDayMillis,$h as getCursor,Jd as getDateElement,Fd as getDateId,he as getDateRangeFromDates,Id as getDateRow,Kd as getDateSpacerElement,ie as getDatesFromDateRange,ke as getDatesInRange,Hd as getDayElement,Ed as getDayId,le as getEventDescriptions,Md as getEventElement,Ld as getEventWrapperElement,Gd as getEventWrapperId,ue as getEventsOnDate,_d as getFirstDateOfWeek,ae as getFirstDayOfMonth,Ad as getFirstDayOfWeekForLocale,Sd as getFooter,jd as getGrid,kd as getGridItems,ai as getHandleIcon,Od as getHeader,te as getIndexOfDate,p as getLastDateOfMonth,$d as getLastDateOfWeek,ld as getList,md as getListItems,xd as getLocalizedDayOfMonth,wd as getLocalizedDayOfWeek,yd as getLocalizedMonth,zd as getLocalizedYear,je as getMinAndMaxDates,Of as getModiferKeysString,Pd as getMonthButtonContent,Yd as getMonthDates,q as getMonthLength,oe as getMonthOptions,ve as getMultipleFromRange,di as getPixelDimension,nd as getScrollSpy,Cb as getSelectedOption,be as getSortedDaysOfWeek,bi as getSplitViewPanelSibling,Ob as getTextColor,Jb as getThemeColor,Ud as getTodayButton,Nd as getTooltip,_h as getValuenow,Zd as getWeekDates,Bd as getWeekendDaysForLocale,Qd as getYearButtonContent,pe as getYearOptions,Zh as handleBoundariesAfterResize,Yh as handleBoundariesDuringResize,E as highlightTextHTML,aj as hoursToMillis,Ph as initState,se as isDisabled,de as isInMonth,ee as isInRange,Xg as isOptionGroupObject,Yg as isOptionObject,Bb as isOptionType,Cd as isRtlLocale,u as isSafeSvg,o as isSameDate,Wg as isSelectOptionType,re as isSelected,B as isSupportedTimeFormat,ce as isToday,Th as keyboardResize,Nf as matchKeyCombination,Vh as maxResize,fj as mergeDateWithTime,Xi as millisToHours,Zi as millisToMinutes,Yi as millisToMinutesClamped,$i as millisToSeconds,_i as millisToSecondsClamped,Wi as millisToTimeString,Uh as minResize,bj as minutesToMillis,sc as numbers,Db as optionEqualPredicate,me as parseDateOffset,m as parseDateString,Mf as parseKeyCombinations,ci as parseSize,ne as parseYearRange,G as percentToPixels,H as pixelsToPercent,Sh as pointerResize,r as proxyShadowScrollEvent,Nb as randomHexColor,od as removeAllExceptLastChild,$ as removeIconListener,Wh as resizeSibling,K as safeMax,J as safeMin,ba as sanitizeExternalType,Y as sanitizeSvgContent,I as scaleValue,cj as secondsToMillis,M as setAriaControls,Qh as setState,Xd as setTabindexOnElement,xe as shouldHandleEvent,fe as sortDates,ge as splitIntoWeeks,rc as strings,dj as stripSecondsFromMillis,Jf as textInputTypes,Vi as timeStringToMillis,A as tokenize12HourTimeString,z as tokenize24HourTimeString,C as tryCoerceTimeString,L as tryCreateAriaControlsPlaceholder};
7
7
  //# sourceMappingURL=index.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import"../chunks/chunk.X2RP4QW3.js";import"../chunks/chunk.AJJILT3A.js";import{a as z,b as A,c as B,d as C}from"../chunks/chunk.PLORKGHA.js";import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y}from"../chunks/chunk.SLK5TNHE.js";import"../chunks/chunk.LIKJD4SK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{v as SPLIT_VIEW_CONSTANTS,a as SPLIT_VIEW_PANEL_CONSTANTS,z as SplitViewAdapter,b as SplitViewAnimatingLayer,B as SplitViewComponent,A as SplitViewFoundation,w as SplitViewPanelAdapter,x as SplitViewPanelComponent,u as SplitViewPanelFoundation,k as clampSize,e as clearState,t as createOverlay,C as defineSplitViewComponent,y as defineSplitViewPanelComponent,o as getCursor,p as getHandleIcon,s as getPixelDimension,q as getSplitViewPanelSibling,n as getValuenow,m as handleBoundariesAfterResize,l as handleBoundariesDuringResize,c as initState,g as keyboardResize,i as maxResize,h as minResize,r as parseSize,f as pointerResize,j as resizeSibling,d as setState};
6
+ import"../chunks/chunk.X2RP4QW3.js";import"../chunks/chunk.AJJILT3A.js";import{a as z,b as A,c as B,d as C}from"../chunks/chunk.MGWC4Z47.js";import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y}from"../chunks/chunk.76OPSTSH.js";import"../chunks/chunk.LIKJD4SK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{v as SPLIT_VIEW_CONSTANTS,a as SPLIT_VIEW_PANEL_CONSTANTS,z as SplitViewAdapter,b as SplitViewAnimatingLayer,B as SplitViewComponent,A as SplitViewFoundation,w as SplitViewPanelAdapter,x as SplitViewPanelComponent,u as SplitViewPanelFoundation,k as clampSize,e as clearState,t as createOverlay,C as defineSplitViewComponent,y as defineSplitViewPanelComponent,o as getCursor,p as getHandleIcon,s as getPixelDimension,q as getSplitViewPanelSibling,n as getValuenow,m as handleBoundariesAfterResize,l as handleBoundariesDuringResize,c as initState,g as keyboardResize,i as maxResize,h as minResize,r as parseSize,f as pointerResize,j as resizeSibling,d as setState};
7
7
  //# sourceMappingURL=index.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a as b,b as c,c as d,d as e}from"../../chunks/chunk.PLORKGHA.js";import{v as a}from"../../chunks/chunk.SLK5TNHE.js";import"../../chunks/chunk.LIKJD4SK.js";import"../../chunks/chunk.EC5JFSHR.js";import"../../chunks/chunk.2DXG2R3M.js";import"../../chunks/chunk.F3MP6AXF.js";import"../../chunks/chunk.MZLPUI6R.js";import"../../chunks/chunk.B5TEOESG.js";import"../../chunks/chunk.6KTLOA7V.js";import"../../chunks/chunk.U6FJJGO3.js";import"../../chunks/chunk.SKLCDWYQ.js";import"../../chunks/chunk.2KXSGD3S.js";import"../../chunks/chunk.FVRSGKJD.js";import"../../chunks/chunk.J3YNMJ7K.js";import"../../chunks/chunk.7XFU2W25.js";import"../../chunks/chunk.KYH5GKVI.js";import"../../chunks/chunk.BESB4RGK.js";import"../../chunks/chunk.UWYANU5D.js";import"../../chunks/chunk.KTGSZEAG.js";import"../../chunks/chunk.DL7NX432.js";import"../../chunks/chunk.LJLEPTLU.js";import"../../chunks/chunk.4LA6HEA7.js";import"../../chunks/chunk.J2M2MXP2.js";import"../../chunks/chunk.MCIQXNKY.js";export{a as SPLIT_VIEW_CONSTANTS,b as SplitViewAdapter,d as SplitViewComponent,c as SplitViewFoundation,e as defineSplitViewComponent};
6
+ import{a as b,b as c,c as d,d as e}from"../../chunks/chunk.MGWC4Z47.js";import{v as a}from"../../chunks/chunk.76OPSTSH.js";import"../../chunks/chunk.LIKJD4SK.js";import"../../chunks/chunk.EC5JFSHR.js";import"../../chunks/chunk.2DXG2R3M.js";import"../../chunks/chunk.F3MP6AXF.js";import"../../chunks/chunk.MZLPUI6R.js";import"../../chunks/chunk.B5TEOESG.js";import"../../chunks/chunk.6KTLOA7V.js";import"../../chunks/chunk.U6FJJGO3.js";import"../../chunks/chunk.SKLCDWYQ.js";import"../../chunks/chunk.2KXSGD3S.js";import"../../chunks/chunk.FVRSGKJD.js";import"../../chunks/chunk.J3YNMJ7K.js";import"../../chunks/chunk.7XFU2W25.js";import"../../chunks/chunk.KYH5GKVI.js";import"../../chunks/chunk.BESB4RGK.js";import"../../chunks/chunk.UWYANU5D.js";import"../../chunks/chunk.KTGSZEAG.js";import"../../chunks/chunk.DL7NX432.js";import"../../chunks/chunk.LJLEPTLU.js";import"../../chunks/chunk.4LA6HEA7.js";import"../../chunks/chunk.J2M2MXP2.js";import"../../chunks/chunk.MCIQXNKY.js";export{a as SPLIT_VIEW_CONSTANTS,b as SplitViewAdapter,d as SplitViewComponent,c as SplitViewFoundation,e as defineSplitViewComponent};
7
7
  //# sourceMappingURL=index.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,w as v,x as w,y as x}from"../../chunks/chunk.SLK5TNHE.js";import"../../chunks/chunk.LIKJD4SK.js";import"../../chunks/chunk.EC5JFSHR.js";import"../../chunks/chunk.2DXG2R3M.js";import"../../chunks/chunk.F3MP6AXF.js";import"../../chunks/chunk.MZLPUI6R.js";import"../../chunks/chunk.B5TEOESG.js";import"../../chunks/chunk.6KTLOA7V.js";import"../../chunks/chunk.U6FJJGO3.js";import"../../chunks/chunk.SKLCDWYQ.js";import"../../chunks/chunk.2KXSGD3S.js";import"../../chunks/chunk.FVRSGKJD.js";import"../../chunks/chunk.J3YNMJ7K.js";import"../../chunks/chunk.7XFU2W25.js";import"../../chunks/chunk.KYH5GKVI.js";import"../../chunks/chunk.BESB4RGK.js";import"../../chunks/chunk.UWYANU5D.js";import"../../chunks/chunk.KTGSZEAG.js";import"../../chunks/chunk.DL7NX432.js";import"../../chunks/chunk.LJLEPTLU.js";import"../../chunks/chunk.4LA6HEA7.js";import"../../chunks/chunk.J2M2MXP2.js";import"../../chunks/chunk.MCIQXNKY.js";export{a as SPLIT_VIEW_PANEL_CONSTANTS,b as SplitViewAnimatingLayer,v as SplitViewPanelAdapter,w as SplitViewPanelComponent,u as SplitViewPanelFoundation,k as clampSize,e as clearState,t as createOverlay,x as defineSplitViewPanelComponent,o as getCursor,p as getHandleIcon,s as getPixelDimension,q as getSplitViewPanelSibling,n as getValuenow,m as handleBoundariesAfterResize,l as handleBoundariesDuringResize,c as initState,g as keyboardResize,i as maxResize,h as minResize,r as parseSize,f as pointerResize,j as resizeSibling,d as setState};
6
+ import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,w as v,x as w,y as x}from"../../chunks/chunk.76OPSTSH.js";import"../../chunks/chunk.LIKJD4SK.js";import"../../chunks/chunk.EC5JFSHR.js";import"../../chunks/chunk.2DXG2R3M.js";import"../../chunks/chunk.F3MP6AXF.js";import"../../chunks/chunk.MZLPUI6R.js";import"../../chunks/chunk.B5TEOESG.js";import"../../chunks/chunk.6KTLOA7V.js";import"../../chunks/chunk.U6FJJGO3.js";import"../../chunks/chunk.SKLCDWYQ.js";import"../../chunks/chunk.2KXSGD3S.js";import"../../chunks/chunk.FVRSGKJD.js";import"../../chunks/chunk.J3YNMJ7K.js";import"../../chunks/chunk.7XFU2W25.js";import"../../chunks/chunk.KYH5GKVI.js";import"../../chunks/chunk.BESB4RGK.js";import"../../chunks/chunk.UWYANU5D.js";import"../../chunks/chunk.KTGSZEAG.js";import"../../chunks/chunk.DL7NX432.js";import"../../chunks/chunk.LJLEPTLU.js";import"../../chunks/chunk.4LA6HEA7.js";import"../../chunks/chunk.J2M2MXP2.js";import"../../chunks/chunk.MCIQXNKY.js";export{a as SPLIT_VIEW_PANEL_CONSTANTS,b as SplitViewAnimatingLayer,v as SplitViewPanelAdapter,w as SplitViewPanelComponent,u as SplitViewPanelFoundation,k as clampSize,e as clearState,t as createOverlay,x as defineSplitViewPanelComponent,o as getCursor,p as getHandleIcon,s as getPixelDimension,q as getSplitViewPanelSibling,n as getValuenow,m as handleBoundariesAfterResize,l as handleBoundariesDuringResize,c as initState,g as keyboardResize,i as maxResize,h as minResize,r as parseSize,f as pointerResize,j as resizeSibling,d as setState};
7
7
  //# sourceMappingURL=index.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a as b,b as c,c as d,d as f}from"../chunks/chunk.DXA626CF.js";import{a,b as e}from"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{a as TEXT_FIELD_CONSTANTS,b as TextFieldAdapter,d as TextFieldComponent,e as TextFieldComponentDelegate,c as TextFieldFoundation,f as defineTextFieldComponent};
6
+ import{a as b,b as c,c as d,d as f}from"../chunks/chunk.PKZQ4SBU.js";import{a,b as e}from"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{a as TEXT_FIELD_CONSTANTS,b as TextFieldAdapter,d as TextFieldComponent,e as TextFieldComponentDelegate,c as TextFieldFoundation,f as defineTextFieldComponent};
7
7
  //# sourceMappingURL=index.js.map
@@ -3,5 +3,5 @@
3
3
  * Copyright 2023 Tyler Technologies, Inc.
4
4
  * License: Apache-2.0
5
5
  */
6
- import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s}from"../chunks/chunk.SCLNLPNS.js";import"../chunks/chunk.LIKJD4SK.js";import"../chunks/chunk.TDWRBHQW.js";import"../chunks/chunk.DXA626CF.js";import"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.VS7NFAGM.js";import"../chunks/chunk.KNKTQDLS.js";import"../chunks/chunk.M4PI24CI.js";import"../chunks/chunk.7C7XCT32.js";import"../chunks/chunk.YKZ36ELA.js";import"../chunks/chunk.RQG6GVOI.js";import"../chunks/chunk.FZQCBRPK.js";import"../chunks/chunk.K57IO236.js";import"../chunks/chunk.AJTQHK25.js";import"../chunks/chunk.6YPD6CQM.js";import"../chunks/chunk.P73BXRKY.js";import"../chunks/chunk.V4TCOZLK.js";import"../chunks/chunk.4DAIIJ37.js";import"../chunks/chunk.WCSVKQR2.js";import"../chunks/chunk.LAM6EDW3.js";import"../chunks/chunk.MV327MYK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.3KQL7VAZ.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{a as TIME_PICKER_CONSTANTS,b as TimePickerAdapter,q as TimePickerComponent,r as TimePickerComponentDelegate,p as TimePickerFoundation,s as defineTimePickerComponent,n as getCurrentTimeOfDayMillis,j as hoursToMillis,o as mergeDateWithTime,e as millisToHours,g as millisToMinutes,f as millisToMinutesClamped,i as millisToSeconds,h as millisToSecondsClamped,d as millisToTimeString,k as minutesToMillis,l as secondsToMillis,m as stripSecondsFromMillis,c as timeStringToMillis};
6
+ import{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s}from"../chunks/chunk.SCLNLPNS.js";import"../chunks/chunk.LIKJD4SK.js";import"../chunks/chunk.TDWRBHQW.js";import"../chunks/chunk.PKZQ4SBU.js";import"../chunks/chunk.EYGSUZWX.js";import"../chunks/chunk.ZCJNWF7K.js";import"../chunks/chunk.DONAMICM.js";import"../chunks/chunk.DBKVUCUQ.js";import"../chunks/chunk.IX2UHMIM.js";import"../chunks/chunk.VS7NFAGM.js";import"../chunks/chunk.KNKTQDLS.js";import"../chunks/chunk.M4PI24CI.js";import"../chunks/chunk.7C7XCT32.js";import"../chunks/chunk.YKZ36ELA.js";import"../chunks/chunk.RQG6GVOI.js";import"../chunks/chunk.FZQCBRPK.js";import"../chunks/chunk.K57IO236.js";import"../chunks/chunk.AJTQHK25.js";import"../chunks/chunk.6YPD6CQM.js";import"../chunks/chunk.P73BXRKY.js";import"../chunks/chunk.V4TCOZLK.js";import"../chunks/chunk.4DAIIJ37.js";import"../chunks/chunk.WCSVKQR2.js";import"../chunks/chunk.LAM6EDW3.js";import"../chunks/chunk.MV327MYK.js";import"../chunks/chunk.EC5JFSHR.js";import"../chunks/chunk.2DXG2R3M.js";import"../chunks/chunk.F3MP6AXF.js";import"../chunks/chunk.MZLPUI6R.js";import"../chunks/chunk.YI4JTY4T.js";import"../chunks/chunk.3KQL7VAZ.js";import"../chunks/chunk.B5TEOESG.js";import"../chunks/chunk.6KTLOA7V.js";import"../chunks/chunk.U6FJJGO3.js";import"../chunks/chunk.SKLCDWYQ.js";import"../chunks/chunk.2KXSGD3S.js";import"../chunks/chunk.FVRSGKJD.js";import"../chunks/chunk.J3YNMJ7K.js";import"../chunks/chunk.7XFU2W25.js";import"../chunks/chunk.KYH5GKVI.js";import"../chunks/chunk.BESB4RGK.js";import"../chunks/chunk.UWYANU5D.js";import"../chunks/chunk.KTGSZEAG.js";import"../chunks/chunk.DL7NX432.js";import"../chunks/chunk.LJLEPTLU.js";import"../chunks/chunk.4LA6HEA7.js";import"../chunks/chunk.J2M2MXP2.js";import"../chunks/chunk.MCIQXNKY.js";export{a as TIME_PICKER_CONSTANTS,b as TimePickerAdapter,q as TimePickerComponent,r as TimePickerComponentDelegate,p as TimePickerFoundation,s as defineTimePickerComponent,n as getCurrentTimeOfDayMillis,j as hoursToMillis,o as mergeDateWithTime,e as millisToHours,g as millisToMinutes,f as millisToMinutesClamped,i as millisToSeconds,h as millisToSecondsClamped,d as millisToTimeString,k as minutesToMillis,l as secondsToMillis,m as stripSecondsFromMillis,c as timeStringToMillis};
7
7
  //# sourceMappingURL=index.js.map
@@ -14,7 +14,7 @@ import { SplitViewPanelAdapter } from './split-view-panel-adapter';
14
14
  import { IconComponent, IconRegistry } from '../../icon';
15
15
  import { RippleComponent } from '../../ripple';
16
16
  const template = '<template><div class=\"forge-split-view-panel\" id=\"root\" part=\"root\"><div class=\"forge-split-view-panel__handle\" id=\"handle\" part=\"handle\" role=\"separator\" aria-controls=\"content\" aria-grabbed=\"false\" tabindex=\"0\"><forge-icon class=\"forge-split-view-panel__icon\" id=\"icon\" part=\"icon\"></forge-icon><forge-ripple id=\"ripple\" part=\"ripple\"></forge-ripple></div><div class=\"forge-split-view-panel__content\" id=\"content\" part=\"content\" role=\"group\"><slot></slot></div></div></template>';
17
- const styles = '@-webkit-keyframes mdc-ripple-fg-radius-in{from{-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1);transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1)}to{-webkit-transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1));transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}}@keyframes mdc-ripple-fg-radius-in{from{-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1);transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1)}to{-webkit-transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1));transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}}@-webkit-keyframes mdc-ripple-fg-opacity-in{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity, 0)}}@keyframes mdc-ripple-fg-opacity-in{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity, 0)}}@-webkit-keyframes mdc-ripple-fg-opacity-out{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity, 0)}to{opacity:0}}@keyframes mdc-ripple-fg-opacity-out{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity, 0)}to{opacity:0}}.mdc-ripple-surface{--mdc-ripple-fg-size:0;--mdc-ripple-left:0;--mdc-ripple-top:0;--mdc-ripple-fg-scale:1;--mdc-ripple-fg-translate-end:0;--mdc-ripple-fg-translate-start:0;-webkit-tap-highlight-color:transparent;will-change:transform,opacity;position:relative;outline:0;overflow:hidden}.mdc-ripple-surface::after,.mdc-ripple-surface::before{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:\"\"}.mdc-ripple-surface::before{-webkit-transition:opacity 15ms linear,background-color 15ms linear;transition:opacity 15ms linear,background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index,1)}.mdc-ripple-surface::after{z-index:0;z-index:var(--mdc-ripple-z-index,0)}.mdc-ripple-surface.mdc-ripple-upgraded::before{-webkit-transform:scale(var(--mdc-ripple-fg-scale,1));transform:scale(var(--mdc-ripple-fg-scale,1))}.mdc-ripple-surface.mdc-ripple-upgraded::after{top:0;left:0;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:center center;transform-origin:center center}.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after{top:var(--mdc-ripple-top,0);left:var(--mdc-ripple-left,0)}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after{-webkit-animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after{-webkit-animation:mdc-ripple-fg-opacity-out 150ms;animation:mdc-ripple-fg-opacity-out 150ms;-webkit-transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1));transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}.mdc-ripple-surface::after,.mdc-ripple-surface::before{top:calc(50% - 100%);left:calc(50% - 100%);width:200%;height:200%}.mdc-ripple-surface.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface[data-mdc-ripple-is-unbounded],.mdc-ripple-upgraded--unbounded{overflow:visible}.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after,.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,.mdc-ripple-upgraded--unbounded::after,.mdc-ripple-upgraded--unbounded::before{top:calc(50% - 50%);left:calc(50% - 50%);width:100%;height:100%}.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::before{top:var(--mdc-ripple-top,calc(50% - 50%));left:var(--mdc-ripple-left,calc(50% - 50%));width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface::after,.mdc-ripple-surface::before{background-color:#000;background-color:var(--mdc-ripple-color,#000)}.mdc-ripple-surface.mdc-ripple-surface--hover::before,.mdc-ripple-surface:hover::before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity, .04)}.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before{-webkit-transition-duration:75ms;transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity, .12)}.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after{-webkit-transition:opacity 150ms linear;transition:opacity 150ms linear}.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after{-webkit-transition-duration:75ms;transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity, .12)}.mdc-ripple-surface.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}.mdc-ripple-surface::after,.mdc-ripple-surface::before{--mdc-ripple-color:var(--mdc-theme-on-surface)}.forge-split-view-panel{display:-webkit-box;display:flex;width:100%;height:100%;overflow:hidden;contain:paint size}.forge-split-view-panel__handle{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-light,rgba(0,0,0,.54));background-color:#e0e0e0;background-color:var(--forge-theme-border-color,#e0e0e0);display:-webkit-box;display:flex;flex-shrink:0;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;outline:0}.forge-split-view-panel__content{-webkit-box-flex:1;flex:1;overflow:hidden}.forge-split-view-panel--closed{display:none}.forge-split-view-panel--disabled #handle{pointer-events:none}.forge-split-view-panel--disabled .forge-split-view-panel__icon{display:none}.forge-split-view-panel[orientation=horizontal]{min-width:8px;min-width:var(--forge-split-view-handle-width,8px);width:calc(var(--forge-split-view-panel-size,unset) + var(--forge-split-view-handle-width,8px));-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.forge-split-view-panel[orientation=horizontal] .forge-split-view-panel__handle{width:8px;width:var(--forge-split-view-handle-width,8px);cursor:var(--forge-split-view-panel-cursor)}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--closing[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uq1qpmr;animation-name:uq1qpmr;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uq1qpmr{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes uq1qpmr{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--closing[resizable=start]{position:absolute;top:0;right:0;-webkit-animation-name:uq1qpn7;animation-name:uq1qpn7;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uq1qpn7{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes uq1qpn7{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--opening[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uq1qpnz;animation-name:uq1qpnz;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uq1qpnz{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes uq1qpnz{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--opening[resizable=start]{position:absolute;top:0;right:0;-webkit-animation-name:uq1qpoa;animation-name:uq1qpoa;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uq1qpoa{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes uq1qpoa{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.forge-split-view-panel[orientation=vertical]{min-height:8px;min-height:var(--forge-split-view-handle-width,8px);height:calc(var(--forge-split-view-panel-size,unset) + var(--forge-split-view-handle-width,8px));-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.forge-split-view-panel[orientation=vertical] .forge-split-view-panel__handle{height:8px;height:var(--forge-split-view-handle-width,8px);cursor:var(--forge-split-view-panel-cursor)}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--closing[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uq1qpp1;animation-name:uq1qpp1;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uq1qpp1{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes uq1qpp1{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--closing[resizable=start]{position:absolute;bottom:0;left:0;-webkit-animation-name:uq1qpp6;animation-name:uq1qpp6;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uq1qpp6{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes uq1qpp6{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--opening[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uq1qppt;animation-name:uq1qppt;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uq1qppt{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes uq1qppt{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--opening[resizable=start]{position:absolute;bottom:0;left:0;-webkit-animation-name:uq1qpqh;animation-name:uq1qpqh;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uq1qpqh{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes uq1qpqh{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}:host{z-index:var(--forge-split-view-animating-layer)!important;display:block;position:relative;height:100%;width:100%;-webkit-box-flex:0;flex:0}:host([hidden]){display:none}:host(:not([resizable=start],[resizable=end])){-webkit-box-flex:1;flex:1}:host(:not([resizable=start],[resizable=end])) .forge-split-view-panel{width:100%;height:100%;min-width:0;min-height:0}:host(:not([resizable=start],[resizable=end])) .forge-split-view-panel__handle{display:none}';
17
+ const styles = '@-webkit-keyframes mdc-ripple-fg-radius-in{from{-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1);transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1)}to{-webkit-transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1));transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}}@keyframes mdc-ripple-fg-radius-in{from{-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1);transform:translate(var(--mdc-ripple-fg-translate-start,0)) scale(1)}to{-webkit-transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1));transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}}@-webkit-keyframes mdc-ripple-fg-opacity-in{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity, 0)}}@keyframes mdc-ripple-fg-opacity-in{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:0}to{opacity:var(--mdc-ripple-fg-opacity, 0)}}@-webkit-keyframes mdc-ripple-fg-opacity-out{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity, 0)}to{opacity:0}}@keyframes mdc-ripple-fg-opacity-out{from{-webkit-animation-timing-function:linear;animation-timing-function:linear;opacity:var(--mdc-ripple-fg-opacity, 0)}to{opacity:0}}.mdc-ripple-surface{--mdc-ripple-fg-size:0;--mdc-ripple-left:0;--mdc-ripple-top:0;--mdc-ripple-fg-scale:1;--mdc-ripple-fg-translate-end:0;--mdc-ripple-fg-translate-start:0;-webkit-tap-highlight-color:transparent;will-change:transform,opacity;position:relative;outline:0;overflow:hidden}.mdc-ripple-surface::after,.mdc-ripple-surface::before{position:absolute;border-radius:50%;opacity:0;pointer-events:none;content:\"\"}.mdc-ripple-surface::before{-webkit-transition:opacity 15ms linear,background-color 15ms linear;transition:opacity 15ms linear,background-color 15ms linear;z-index:1;z-index:var(--mdc-ripple-z-index,1)}.mdc-ripple-surface::after{z-index:0;z-index:var(--mdc-ripple-z-index,0)}.mdc-ripple-surface.mdc-ripple-upgraded::before{-webkit-transform:scale(var(--mdc-ripple-fg-scale,1));transform:scale(var(--mdc-ripple-fg-scale,1))}.mdc-ripple-surface.mdc-ripple-upgraded::after{top:0;left:0;-webkit-transform:scale(0);transform:scale(0);-webkit-transform-origin:center center;transform-origin:center center}.mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after{top:var(--mdc-ripple-top,0);left:var(--mdc-ripple-left,0)}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after{-webkit-animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards;animation:mdc-ripple-fg-radius-in 225ms forwards,mdc-ripple-fg-opacity-in 75ms forwards}.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after{-webkit-animation:mdc-ripple-fg-opacity-out 150ms;animation:mdc-ripple-fg-opacity-out 150ms;-webkit-transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1));transform:translate(var(--mdc-ripple-fg-translate-end,0)) scale(var(--mdc-ripple-fg-scale,1))}.mdc-ripple-surface::after,.mdc-ripple-surface::before{top:calc(50% - 100%);left:calc(50% - 100%);width:200%;height:200%}.mdc-ripple-surface.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface[data-mdc-ripple-is-unbounded],.mdc-ripple-upgraded--unbounded{overflow:visible}.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after,.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,.mdc-ripple-upgraded--unbounded::after,.mdc-ripple-upgraded--unbounded::before{top:calc(50% - 50%);left:calc(50% - 50%);width:100%;height:100%}.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::before{top:var(--mdc-ripple-top,calc(50% - 50%));left:var(--mdc-ripple-left,calc(50% - 50%));width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after{width:var(--mdc-ripple-fg-size,100%);height:var(--mdc-ripple-fg-size,100%)}.mdc-ripple-surface::after,.mdc-ripple-surface::before{background-color:#000;background-color:var(--mdc-ripple-color,#000)}.mdc-ripple-surface.mdc-ripple-surface--hover::before,.mdc-ripple-surface:hover::before{opacity:.04;opacity:var(--mdc-ripple-hover-opacity, .04)}.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before,.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before{-webkit-transition-duration:75ms;transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-focus-opacity, .12)}.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after{-webkit-transition:opacity 150ms linear;transition:opacity 150ms linear}.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after{-webkit-transition-duration:75ms;transition-duration:75ms;opacity:.12;opacity:var(--mdc-ripple-press-opacity, .12)}.mdc-ripple-surface.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-ripple-press-opacity, 0.12)}.mdc-ripple-surface::after,.mdc-ripple-surface::before{--mdc-ripple-color:var(--mdc-theme-on-surface)}.forge-split-view-panel{display:-webkit-box;display:flex;width:100%;height:100%;overflow:hidden;contain:paint size}.forge-split-view-panel__handle{color:rgba(0,0,0,.54);color:var(--mdc-theme-text-secondary-on-light,rgba(0,0,0,.54));background-color:#e0e0e0;background-color:var(--forge-theme-border-color,#e0e0e0);display:-webkit-box;display:flex;flex-shrink:0;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;outline:0}.forge-split-view-panel__content{-webkit-box-flex:1;flex:1;overflow:hidden}.forge-split-view-panel--closed{display:none}.forge-split-view-panel--disabled #handle{pointer-events:none}.forge-split-view-panel--disabled .forge-split-view-panel__icon{display:none}.forge-split-view-panel[orientation=horizontal]{min-width:8px;min-width:var(--forge-split-view-handle-width,8px);width:calc(var(--forge-split-view-panel-size,unset) + var(--forge-split-view-handle-width,8px));-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.forge-split-view-panel[orientation=horizontal] .forge-split-view-panel__handle{width:8px;width:var(--forge-split-view-handle-width,8px);cursor:var(--forge-split-view-panel-cursor)}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--closing[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uf9gnse;animation-name:uf9gnse;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uf9gnse{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes uf9gnse{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--closing[resizable=start]{position:absolute;top:0;right:0;-webkit-animation-name:uf9gntb;animation-name:uf9gntb;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uf9gntb{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes uf9gntb{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--opening[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uf9gntn;animation-name:uf9gntn;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uf9gntn{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes uf9gntn{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.forge-split-view-panel[orientation=horizontal].forge-split-view-panel--opening[resizable=start]{position:absolute;top:0;right:0;-webkit-animation-name:uf9gnts;animation-name:uf9gnts;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uf9gnts{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes uf9gnts{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}.forge-split-view-panel[orientation=vertical]{min-height:8px;min-height:var(--forge-split-view-handle-width,8px);height:calc(var(--forge-split-view-panel-size,unset) + var(--forge-split-view-handle-width,8px));-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.forge-split-view-panel[orientation=vertical] .forge-split-view-panel__handle{height:8px;height:var(--forge-split-view-handle-width,8px);cursor:var(--forge-split-view-panel-cursor)}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--closing[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uf9gnu2;animation-name:uf9gnu2;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uf9gnu2{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes uf9gnu2{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--closing[resizable=start]{position:absolute;bottom:0;left:0;-webkit-animation-name:uf9gnur;animation-name:uf9gnur;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1)}@-webkit-keyframes uf9gnur{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes uf9gnur{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--opening[resizable=end]{position:absolute;top:0;left:0;-webkit-animation-name:uf9gnvo;animation-name:uf9gnvo;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uf9gnvo{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes uf9gnvo{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}.forge-split-view-panel[orientation=vertical].forge-split-view-panel--opening[resizable=start]{position:absolute;bottom:0;left:0;-webkit-animation-name:uf9gnw3;animation-name:uf9gnw3;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-direction:reverse}@-webkit-keyframes uf9gnw3{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes uf9gnw3{from{-webkit-transform:none;transform:none}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}:host{z-index:var(--forge-split-view-animating-layer)!important;display:block;position:relative;height:100%;width:100%;-webkit-box-flex:0;flex:0}:host([hidden]){display:none}:host(:not([resizable=start],[resizable=end])){-webkit-box-flex:1;flex:1}:host(:not([resizable=start],[resizable=end])) .forge-split-view-panel{width:100%;height:100%;min-width:0;min-height:0}:host(:not([resizable=start],[resizable=end])) .forge-split-view-panel__handle{display:none}';
18
18
  /**
19
19
  * The custom element class behind the `<forge-split-view-panel>` element.
20
20
  *