@nuralyui/select 0.1.6 → 0.1.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.
Files changed (2) hide show
  1. package/bundle.js +698 -3
  2. package/package.json +1 -1
package/bundle.js CHANGED
@@ -1,12 +1,707 @@
1
- import{css as t,nothing as e,html as i,LitElement as s}from"lit";import{property as o,query as r,customElement as n}from"lit/decorators.js";import{map as a}from"lit/directives/map.js";import{choose as l}from"lit/directives/choose.js";import{classMap as c}from"lit/directives/class-map.js";import{styleMap as h}from"lit/directives/style-map.js";import{NuralyUIBaseMixin as d}from"@nuralyui/common/mixins";const u=t`:host{--nuraly-select-local-min-height:40px;--nuraly-select-local-padding-top:8px;--nuraly-select-local-padding-bottom:8px;--nuraly-select-local-padding-left:12px;--nuraly-select-local-padding-right:12px;--nuraly-select-local-wrapper-margin:0;--nuraly-select-local-border-radius:6px;--nuraly-select-local-border-width:1px;--nuraly-select-local-dropdown-z-index:9999;--nuraly-select-local-dropdown-max-height:200px;--nuraly-select-local-dropdown-width:max-content;--nuraly-select-local-placeholder-font-size:14px;--nuraly-select-local-option-font-size:14px;--nuraly-select-local-medium-height:40px;--nuraly-select-local-medium-font-size:14px;--nuraly-select-local-medium-padding:8px 12px;--nuraly-select-local-small-font-size:12px;--nuraly-select-local-dropdown-animation-duration:0.15s;--nuraly-select-local-tag-border-radius:4px;--nuraly-select-local-tag-padding:2px 6px;--nuraly-select-local-tag-margin:2px;--nuraly-select-local-message-font-size:12px;--nuraly-select-local-message-margin-top:4px}:host{width:fit-content;display:block;font-family:var(--nuraly-select-font-family, Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif);font-size:var(--nuraly-select-font-size,14px);line-height:var(--nuraly-select-line-height,1.5);margin:var(--nuraly-select-margin,var(--nuraly-select-local-wrapper-margin))}:host([disabled]){opacity:var(--nuraly-select-disabled-opacity,.5);pointer-events:none}:host([disabled]) .wrapper{background-color:var(--nuraly-select-disabled-background,#f9fafb);border-color:var(--nuraly-select-disabled-border-color,#d9d9d9);color:var(--nuraly-select-disabled-text-color,#8c8c8c);cursor:not-allowed}:host([size=small]) .wrapper{height:var(--nuraly-select-small-height,24px);min-height:var(--nuraly-select-small-height,24px);font-size:var(--nuraly-select-small-font-size,var(--nuraly-select-local-small-font-size))}:host([size=small]) .select-trigger{padding:var(--nuraly-select-small-padding,2px 8px);padding-right:calc(var(--nuraly-select-icon-size,16px) + 20px)}:host([size=medium]) .wrapper{min-height:var(--nuraly-select-medium-height,var(--nuraly-select-local-medium-height));font-size:var(--nuraly-select-medium-font-size,var(--nuraly-select-local-medium-font-size))}:host([size=medium]) .select-trigger{padding:var(--nuraly-select-medium-padding,var(--nuraly-select-local-medium-padding));padding-right:calc(var(--nuraly-select-icon-size,16px) + 20px)}:host([size=large]) .wrapper{min-height:var(--nuraly-select-large-height,48px);font-size:var(--nuraly-select-large-font-size,16px)}:host([size=large]) .select-trigger{padding:var(--nuraly-select-large-padding,12px 16px);padding-right:calc(var(--nuraly-select-icon-size,16px) + 20px)}:host([status=error]) .wrapper{border-color:var(--nuraly-select-error-border-color,#ef4444)}:host([status=warning]) .wrapper{border-color:var(--nuraly-select-warning-border-color,#f59e0b)}:host([status=success]) .wrapper{border-color:var(--nuraly-select-success-border-color,#10b981)}:host([type=inline]){display:flex;align-items:center;gap:8px}:host([type=inline]) .wrapper{flex:1}:host([block]){width:100%}:host([block]) .wrapper{width:100%}:host([show]) .options{display:flex!important}.wrapper{position:relative;width:var(--nuraly-select-width,fit-content);background-color:var(--nuraly-select-background-color,#fff);border:var(--nuraly-select-border-width,var(--nuraly-select-local-border-width)) solid var(--nuraly-select-border-color,#d9d9d9);border-radius:var(--nuraly-select-border-radius,var(--nuraly-select-local-border-radius));transition:all var(--nuraly-select-transition-duration,.2s) var(--nuraly-select-transition-timing,ease-in-out);cursor:pointer;outline:0;margin:var(--nuraly-select-wrapper-margin,0);min-height:var(--nuraly-select-min-height,var(--nuraly-select-local-min-height));box-sizing:border-box;display:flex;align-items:center;overflow:visible}.wrapper:hover:not(:disabled){border-color:var(--nuraly-select-border-hover,#7c3aed)}.wrapper:focus,.wrapper:focus-within{border-color:var(--nuraly-select-border-focus,#7c3aed);box-shadow:0 0 0 2px var(--nuraly-select-focus-outline,rgba(124,58,237,.2))}.select{display:flex;flex-direction:column}.select-trigger{display:flex;align-items:center;padding:var(--nuraly-select-padding-top,var(--nuraly-select-local-padding-top)) calc(var(--nuraly-select-icon-size,16px) + 20px) var(--nuraly-select-padding-bottom,var(--nuraly-select-local-padding-bottom)) var(--nuraly-select-padding-left,var(--nuraly-select-local-padding-left));color:var(--nuraly-select-text-color,#262626);font-size:inherit;line-height:inherit;word-break:break-word;flex:1;min-height:0;flex-wrap:wrap;gap:var(--nuraly-select-tag-margin,var(--nuraly-select-local-tag-margin));box-sizing:border-box}.select-trigger:empty:before{content:attr(data-placeholder);color:var(--nuraly-select-placeholder-color,#8c8c8c);font-size:var(--nuraly-select-placeholder-font-size,var(--nuraly-select-local-placeholder-font-size))}.tag{display:inline-flex;align-items:center;gap:4px;background-color:var(--nuraly-select-tag-background,var(--nuraly-select-local-tag-background));color:var(--nuraly-select-tag-color,var(--nuraly-select-local-tag-color));padding:var(--nuraly-select-tag-padding,var(--nuraly-select-local-tag-padding));border-radius:var(--nuraly-select-tag-border-radius,var(--nuraly-select-local-tag-border-radius));font-size:calc(var(--nuraly-select-font-size,var(--nuraly-select-local-font-size)) - 1px);max-width:100%}.tag-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tag-close{color:var(--nuraly-select-tag-close-color,var(--nuraly-select-local-tag-close-color));cursor:pointer;display:flex;align-items:center;justify-content:center;width:var(--nuraly-select-icon-size,var(--nuraly-select-local-icon-size));height:var(--nuraly-select-icon-size,var(--nuraly-select-local-icon-size));border-radius:50%;transition:color var(--nuraly-select-transition-duration,var(--nuraly-select-local-transition-duration))}.tag-close:hover{color:var(--nuraly-select-tag-close-hover-color,var(--nuraly-select-local-tag-close-hover-color))}.icons-container{position:absolute;top:50%;right:12px;transform:translateY(-50%);display:flex;align-items:center;gap:4px;pointer-events:none}.icons-container nr-icon{--nuraly-icon-width:var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));--nuraly-icon-color:var(--nuraly-select-icon-color, var(--nuraly-select-local-icon-color));pointer-events:auto;cursor:pointer;transition:color var(--nuraly-select-transition-duration,var(--nuraly-select-local-transition-duration))}.icons-container nr-icon:hover{--nuraly-icon-color:var(--nuraly-select-icon-hover-color, var(--nuraly-select-local-icon-hover-color))}.arrow-icon{--nuraly-icon-width:var(--nuraly-select-arrow-icon-size, var(--nuraly-select-local-arrow-icon-size));transition:transform var(--nuraly-select-transition-duration,var(--nuraly-select-local-transition-duration));pointer-events:none!important}:host([show]) .arrow-icon{transform:rotate(180deg)}.options{position:absolute;top:100%;margin-top:1px;left:0;right:0;background-color:var(--nuraly-select-dropdown-background,#fff);border:var(--nuraly-select-dropdown-border-width,var(--nuraly-select-border-width,1px)) solid var(--nuraly-select-dropdown-border-color,#d9d9d9);border-radius:var(--nuraly-select-dropdown-border-radius,var(--nuraly-select-border-radius,6px));box-shadow:var(--nuraly-select-dropdown-shadow,0 6px 16px 0 rgba(0,0,0,.08));z-index:var(--nuraly-select-dropdown-z-index,9999);max-height:var(--nuraly-select-dropdown-max-height,200px);overflow-y:auto;overflow-x:hidden;display:none;flex-direction:column;animation:dropdown-enter var(--nuraly-select-dropdown-animation-duration,.15s) ease-out;box-sizing:border-box;width:var(--nuraly-select-dropdown-width,var(--select-dropdown-width,var(--nuraly-select-local-dropdown-width)));min-width:100%;isolation:isolate;backdrop-filter:none;-webkit-backdrop-filter:none;transform:translateZ(0)}.options.placement-top{top:auto;bottom:100%;margin-bottom:1px;margin-top:0;animation:dropdown-enter-top var(--nuraly-select-dropdown-animation-duration,var(--nuraly-select-local-dropdown-animation-duration)) ease-out}@keyframes dropdown-enter{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}@keyframes dropdown-enter-top{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.search-container{position:sticky;top:0;z-index:10;background-color:var(--nuraly-select-dropdown-background,#fff);border-bottom:var(--nuraly-select-border-width,1px) solid var(--nuraly-select-dropdown-border-color,#d9d9d9);padding:8px;margin:0;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);will-change:transform;transform:translateZ(0)}.search-container .search-input{width:100%;--nuraly-input-border-radius:var(--nuraly-select-border-radius, var(--nuraly-select-local-border-radius));--nuraly-input-background-color:var(--nuraly-select-background-color, var(--nuraly-select-local-background-color));--nuraly-input-border-color:var(--nuraly-select-border-color, var(--nuraly-select-local-border-color));--nuraly-input-text-color:var(--nuraly-select-text-color, var(--nuraly-select-local-text-color));--nuraly-input-placeholder-color:var(--nuraly-select-placeholder-color, var(--nuraly-select-local-placeholder-color))}.search-container .search-icon{--nuraly-icon-color:var(--nuraly-select-icon-color, var(--nuraly-select-local-icon-color))}.options:has(.search-container){padding-top:0}.option{display:flex;align-items:center;gap:8px;padding:var(--nuraly-select-option-padding,8px 12px);min-height:var(--nuraly-select-option-min-height,auto);color:var(--nuraly-select-option-text-color,var(--nuraly-select-text-color,#262626));font-size:var(--nuraly-select-option-font-size,14px);cursor:pointer;transition:background-color var(--nuraly-select-transition-duration,.2s);position:relative}.search-container+.option{margin-top:0}.option:hover{background-color:var(--nuraly-select-option-hover-background,#f5f5f5)}.option.selected{background-color:var(--nuraly-select-option-selected-background,#e0e0e0);color:var(--nuraly-select-option-selected-color,#7c3aed)}.option.focused{background-color:var(--nuraly-select-option-hover-background,#f5f5f5);outline:2px solid var(--nuraly-select-border-focus,#7c3aed);outline-offset:-2px}.option.disabled{opacity:var(--nuraly-select-disabled-opacity,var(--nuraly-select-local-disabled-opacity));cursor:not-allowed}.option-content{flex:1;display:flex;align-items:center;gap:8px}.option-icon{--nuraly-icon-width:var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));--nuraly-icon-color:currentColor}.option-text{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.option-description{font-size:calc(var(--nuraly-select-option-font-size,var(--nuraly-select-local-option-font-size)) - 1px);opacity:.7;margin-top:2px}.check-icon{--nuraly-icon-width:var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));--nuraly-icon-color:var(--nuraly-select-option-selected-color, var(--nuraly-select-local-option-selected-color))}.no-options{display:flex;align-items:center;justify-content:center;padding:var(--select-no-options-padding,24px 16px);color:var(--select-no-options-color,#8c8c8c);font-size:var(--nuraly-select-option-font-size,var(--nuraly-select-local-option-font-size));cursor:default;user-select:none}.no-options-content{display:flex;flex-direction:column;align-items:center;gap:var(--select-no-options-gap,8px);text-align:center}.no-options-icon{--nuraly-icon-width:24px;--nuraly-icon-color:var(--select-no-options-icon-color, #d9d9d9);opacity:.8}.no-options-text{font-size:var(--nuraly-select-option-font-size,var(--nuraly-select-local-option-font-size));color:var(--select-no-options-color,#8c8c8c);line-height:1.4}.validation-message{display:block;margin-top:var(--nuraly-select-message-margin-top,var(--nuraly-select-local-message-margin-top));font-size:var(--nuraly-select-message-font-size,var(--nuraly-select-local-message-font-size));color:var(--nuraly-select-error-message-color,var(--nuraly-select-local-error-message-color))}.validation-message.warning{color:var(--nuraly-select-warning-message-color,var(--nuraly-select-local-warning-message-color))}.validation-message.success{color:var(--nuraly-select-success-message-color,var(--nuraly-select-local-success-message-color))}::slotted([slot=label]){display:block;margin-bottom:4px;font-weight:500;color:var(--nuraly-select-text-color,var(--nuraly-select-local-text-color))}::slotted([slot=helper-text]){display:block;margin-top:var(--nuraly-select-message-margin-top,var(--nuraly-select-local-message-margin-top));font-size:var(--nuraly-select-message-font-size,var(--nuraly-select-local-message-font-size));color:var(--nuraly-select-placeholder-color,var(--nuraly-select-local-placeholder-color))}@media (prefers-reduced-motion:reduce){.arrow-icon,.option,.options,.tag-close,.wrapper{transition:none;animation:none}}@media (prefers-contrast:high){.wrapper{border-width:2px}.wrapper:focus,.wrapper:focus-within{outline:3px solid}}`;var p,v,y,g,m,f,b,w,x;!function(t){t.Default="default",t.Inline="inline",t.Button="button",t.Slot="slot"}(p||(p={})),function(t){t.Default="default",t.Warning="warning",t.Error="error",t.Success="success"}(v||(v={})),function(t){t.Small="small",t.Medium="medium",t.Large="large"}(y||(y={})),function(t){t.Small="small",t.Medium="medium",t.Large="large"}(g||(g={})),function(t){t.Horizontal="horizontal",t.Vertical="vertical"}(m||(m={})),function(t){t.Default="default",t.Solid="solid",t.Outline="outline",t.Borderless="borderless"}(f||(f={})),function(t){t.Bottom="bottom",t.Top="top",t.Auto="auto"}(b||(b={})),function(t){t.None="none",t.StartsWith="starts-with",t.Contains="contains",t.Fuzzy="fuzzy"}(w||(w={}));class O{constructor(t){this._host=t,this._host.addController(this)}get host(){return this._host}hostConnected(){}hostDisconnected(){}hostUpdate(){}hostUpdated(){}handleError(t,e){console.error(`[SelectController:${this.constructor.name}] Error in ${e}:`,t),this._host.dispatchEvent(new CustomEvent("nr-select-error",{detail:{error:t.message,context:e,controller:this.constructor.name},bubbles:!0,composed:!0}))}requestUpdate(){try{this._host.requestUpdate()}catch(t){this.handleError(t,"requestUpdate")}}dispatchEvent(t){try{return this._host.dispatchEvent(t)}catch(t){return this.handleError(t,"dispatchEvent"),!1}}}class E extends O{constructor(){super(...arguments),this._selectedOptions=[],this._initialized=!1}getSelectedOptions(){return[...this._selectedOptions]}getSelectedOption(){return this._selectedOptions[0]}selectOption(t){try{if(this.isOptionDisabled(t))return;const e=this.host.multiple,i=this.getCurrentValue();e?this.isOptionSelected(t)||(this._selectedOptions=[...this._selectedOptions,t],this.updateHostValue(),this.dispatchChangeEvent(i)):(this.isOptionSelected(t)?this._selectedOptions=[]:this._selectedOptions=[t],this.updateHostValue(),this.dispatchChangeEvent(i)),this.requestUpdate()}catch(t){this.handleError(t,"selectOption")}}unselectOption(t){try{if(this.isOptionSelected(t)){const e=this.getCurrentValue();this._selectedOptions=this._selectedOptions.filter((e=>e.value!==t.value)),this.updateHostValue(),this.dispatchChangeEvent(e),this.requestUpdate()}}catch(t){this.handleError(t,"unselectOption")}}clearSelection(){try{if(this._selectedOptions.length>0){const t=this.getCurrentValue();this._selectedOptions=[],this.updateHostValue(),this.dispatchChangeEvent(t),this.requestUpdate()}}catch(t){this.handleError(t,"clearSelection")}}isOptionSelected(t){return this._selectedOptions.some((e=>e.value===t.value))}isOptionDisabled(t){return Boolean(t.disabled)||this.host.disabled}toggleOption(t){this.isOptionSelected(t)?this.unselectOption(t):this.selectOption(t)}initializeFromValue(){try{if(this._initialized)return;const t=this.host.value;if(!t||Array.isArray(t)&&0===t.length)return;const e=Array.isArray(t)?t:[t],i=this.host.options.filter((t=>e.includes(t.value)));i.length>0&&(this._selectedOptions=this.host.multiple?i:[i[0]],this.requestUpdate()),this._initialized=!0}catch(t){this.handleError(t,"initializeFromValue")}}updateHostValue(){var t;const e=this.host.multiple?this._selectedOptions.map((t=>t.value)):(null===(t=this._selectedOptions[0])||void 0===t?void 0:t.value)||"",i=this.host.value;let s=!1;if(this.host.multiple){const t=Array.isArray(i)?i:[],o=Array.isArray(e)?e:[];s=t.length===o.length&&t.every(((t,e)=>t===o[e]))}else s=i===e;s||(this.host.value=e)}getCurrentValue(){var t;return this.host.multiple?this._selectedOptions.map((t=>t.value)):(null===(t=this._selectedOptions[0])||void 0===t?void 0:t.value)||""}dispatchChangeEvent(t){const e={value:this.getCurrentValue(),selectedOptions:this.getSelectedOptions(),previousValue:t};this.dispatchEvent(new CustomEvent("nr-change",{detail:e,bubbles:!0,composed:!0}))}hostUpdated(){this.syncWithHostOptions()}syncWithHostOptions(){try{this._selectedOptions=this._selectedOptions.filter((t=>this.host.options.some((e=>e.value===t.value)))),this._selectedOptions=this._selectedOptions.map((t=>this.host.options.find((e=>e.value===t.value))||t)),this.updateHostValue()}catch(t){this.handleError(t,"syncWithHostOptions")}}}class z extends O{constructor(t,e,i){super(t),this.selectionController=e,this.dropdownController=i,this._focusedIndex=-1,this._hasKeyboardNavigated=!1}handleKeyDown(t){try{const e=this.isSearchInputFocused();switch(t.key){case"ArrowDown":t.preventDefault(),this.dropdownController.isOpen?this.navigateNext():this.openDropdown();break;case"ArrowUp":t.preventDefault(),this.dropdownController.isOpen?this.navigatePrevious():this.openDropdown();break;case"Enter":this.dropdownController.isOpen?e&&this._focusedIndex>=0?(t.preventDefault(),this.selectFocused()):e||(t.preventDefault(),this.selectFocused()):(t.preventDefault(),this.openDropdown());break;case" ":e||(t.preventDefault(),this.dropdownController.isOpen?this.selectFocused():this.openDropdown());break;case"Escape":t.preventDefault(),this.closeDropdown();break;case"Tab":this.closeDropdown();break;case"Home":this.dropdownController.isOpen&&(t.preventDefault(),this.setFocusedIndex(0));break;case"End":this.dropdownController.isOpen&&(t.preventDefault(),this.setFocusedIndex(this.host.options.length-1));break;default:1===t.key.length&&/[a-zA-Z0-9]/.test(t.key)&&this.handleAlphanumericKey(t.key.toLowerCase())}}catch(t){this.handleError(t,"handleKeyDown")}}navigateNext(){try{const t=this.getNavigableOptions();if(0===t.length)return;if(this.isSearchInputFocused()&&(this._focusedIndex<0||!this._hasKeyboardNavigated))return this._hasKeyboardNavigated=!0,void this.setFocusedIndex(0);let e=this._focusedIndex+1;e>=t.length&&(e=0),this.setFocusedIndex(e)}catch(t){this.handleError(t,"navigateNext")}}navigatePrevious(){try{const t=this.getNavigableOptions();if(0===t.length)return;if(this.isSearchInputFocused()&&(this._focusedIndex<0||!this._hasKeyboardNavigated))return this._hasKeyboardNavigated=!0,void this.setFocusedIndex(t.length-1);let e=this._focusedIndex-1;e<0&&(e=t.length-1),this.setFocusedIndex(e)}catch(t){this.handleError(t,"navigatePrevious")}}selectFocused(){try{const t=this.getNavigableOptions()[this._focusedIndex];t&&!this.selectionController.isOptionDisabled(t)&&(this.selectionController.selectOption(t),this.host.multiple||this.closeDropdown())}catch(t){this.handleError(t,"selectFocused")}}openDropdown(){try{this.dropdownController.open(),this._hasKeyboardNavigated=!1,this._focusedIndex=-1}catch(t){this.handleError(t,"openDropdown")}}closeDropdown(){try{this.dropdownController.close(),this._focusedIndex=-1,this._hasKeyboardNavigated=!1}catch(t){this.handleError(t,"closeDropdown")}}setFocusedIndex(t){try{const e=this.getNavigableOptions();t>=0&&t<e.length&&(this._focusedIndex=t,this.dispatchFocusEvent(e[t],t),this.requestUpdate(),this.scrollToFocusedOption(t))}catch(t){this.handleError(t,"setFocusedIndex")}}scrollToFocusedOption(t){var e;try{const i=null===(e=this.host.shadowRoot)||void 0===e?void 0:e.querySelector(".options");if(!i)return;setTimeout((()=>{const e=i.querySelector(".option.focused");if(e)e.scrollIntoView({behavior:"smooth",block:"nearest",inline:"nearest"});else{const e=40,s=i.clientHeight,o=i.scrollTop,r=t*e,n=r+e,a=o+s;r<o?i.scrollTo({top:r,behavior:"smooth"}):n>a&&i.scrollTo({top:n-s,behavior:"smooth"})}}),10)}catch(t){console.warn("Failed to scroll to focused option:",t)}}get focusedIndex(){return this._focusedIndex}get focusedOption(){return this.getNavigableOptions()[this._focusedIndex]}handleAlphanumericKey(t){try{const e=this.getNavigableOptions(),i=this._focusedIndex+1;for(let s=0;s<e.length;s++){const o=(i+s)%e.length;if(e[o].label.toLowerCase().startsWith(t)){this.setFocusedIndex(o),this.dropdownController.isOpen||this.openDropdown();break}}}catch(t){this.handleError(t,"handleAlphanumericKey")}}getNavigableOptions(){const t=this.host;if(!t.options||!Array.isArray(t.options))return[];let e=t.options;return t.searchable&&t.searchQuery&&"function"==typeof t.getFilteredOptions&&(e=t.getFilteredOptions()),e.filter((t=>!t.disabled))}dispatchFocusEvent(t,e){const i={focusedOption:t,focusedIndex:e};this.dispatchEvent(new CustomEvent("nr-select-focus",{detail:i,bubbles:!0,composed:!0}))}isSearchInputFocused(){var t;try{const e=this.host;if(!e.searchable)return!1;const i=null===(t=e.shadowRoot)||void 0===t?void 0:t.querySelector(".search-input");return!!i&&(document.activeElement===i||i.shadowRoot&&i.shadowRoot.querySelector("input")===i.shadowRoot.activeElement||i.contains(document.activeElement))}catch(t){return!1}}hostUpdated(){this.dropdownController.isOpen||-1===this._focusedIndex||(this._focusedIndex=-1)}}class $ extends O{constructor(){super(...arguments),this._isOpen=!1,this._position={top:0,left:0,width:0,placement:"bottom"},this._dropdownElement=null,this._triggerElement=null,this.handleResize=()=>{this._isOpen&&this.calculatePosition()},this.handleScroll=()=>{var t;if(this._isOpen&&this._triggerElement){const e=this._triggerElement.getBoundingClientRect(),i=(null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight;(e.bottom<0||e.top>i)&&this.close()}}}get isOpen(){return this._isOpen}get position(){return Object.assign({},this._position)}open(){try{this._isOpen||(this._isOpen=!0,this.host.show=!0,this.requestUpdate(),this.findElements(),setTimeout((()=>{this.calculatePosition()}),10),this.host&&"function"==typeof this.host.setupEventListeners&&setTimeout((()=>{this.host.setupEventListeners()}),50),this.focusSearchInput(),this.dispatchEvent(new CustomEvent("nr-dropdown-open",{bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"open")}}close(){try{this._isOpen&&(this._isOpen=!1,this.host.show=!1,this.resetPosition(),this.requestUpdate(),this.host&&"function"==typeof this.host.removeEventListeners&&this.host.removeEventListeners(),this.dispatchEvent(new CustomEvent("nr-dropdown-close",{bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"close")}}toggle(){this._isOpen?this.close():this.open()}focusSearchInput(){try{const t=this.host;t&&t.searchable&&setTimeout((()=>{var e;const i=null===(e=t.shadowRoot)||void 0===e?void 0:e.querySelector(".search-input");i&&"function"==typeof i.focus&&i.focus()}),100)}catch(t){console.warn("Failed to focus search input:",t)}}calculatePosition(){var t;try{if(this._dropdownElement&&this._triggerElement||this.findElements(),!this._dropdownElement||!this._triggerElement)return;const e=this._triggerElement.getBoundingClientRect(),i=((null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight)-e.bottom,s=e.top,o=200,r=this.determineOptimalPlacement(o,s,i);this._position={left:0,width:0,placement:r,top:0},this.applyPosition()}catch(t){this.handleError(t,"calculatePosition")}}resetPosition(){try{if(this._dropdownElement){this._dropdownElement.style.removeProperty("position"),this._dropdownElement.style.removeProperty("top"),this._dropdownElement.style.removeProperty("left"),this._dropdownElement.style.removeProperty("width"),this._dropdownElement.style.removeProperty("min-width");this.host.maxHeight||this._dropdownElement.style.removeProperty("max-height"),this._dropdownElement.style.removeProperty("min-height"),this._dropdownElement.style.removeProperty("height"),this._dropdownElement.style.removeProperty("overflow-y"),this._dropdownElement.style.removeProperty("transform"),this._dropdownElement.style.removeProperty("display"),this._dropdownElement.style.removeProperty("opacity"),this._dropdownElement.style.removeProperty("visibility"),this._dropdownElement.style.removeProperty("z-index"),this._dropdownElement.classList.remove("placement-top","placement-bottom")}}catch(t){this.handleError(t,"resetPosition")}}setElements(t,e){this._dropdownElement=t,this._triggerElement=e}findElements(){try{const t=this._host;if(t.optionsElement&&t.wrapper)return this._dropdownElement=t.optionsElement,void(this._triggerElement=t.wrapper);t.shadowRoot&&(this._dropdownElement=t.shadowRoot.querySelector(".options"),this._triggerElement=t.shadowRoot.querySelector(".wrapper"))}catch(t){this.handleError(t,"findElements")}}determineOptimalPlacement(t,e,i){return i>=t?"bottom":e>=t||e>i?"top":"bottom"}applyPosition(){var t;try{if(!this._dropdownElement||!this._triggerElement)return;const e=this.host.maxHeight,{placement:i}=this._position,s=this._triggerElement.getBoundingClientRect(),o=s.width;this._dropdownElement.style.position="absolute",this._dropdownElement.style.left="0",this._dropdownElement.style.right="auto",this._dropdownElement.style.minWidth=`${o}px`,this._dropdownElement.style.removeProperty("width"),this._dropdownElement.style.zIndex="1000",this._dropdownElement.style.height="auto",e||(this._dropdownElement.style.maxHeight="none"),this._dropdownElement.style.minHeight="auto","bottom"===i?(this._dropdownElement.style.top="100%",this._dropdownElement.style.bottom="auto"):(this._dropdownElement.style.top="auto",this._dropdownElement.style.bottom="100%");const r=this._dropdownElement.scrollHeight,n=(null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight;let a;a="bottom"===i?n-s.bottom-10:s.top-10,e?(this._dropdownElement.style.maxHeight=e,this._dropdownElement.style.overflowY="auto"):r>a?(this._dropdownElement.style.maxHeight=`${a}px`,this._dropdownElement.style.overflowY="auto"):(this._dropdownElement.style.maxHeight=`${r}px`,this._dropdownElement.style.overflowY="auto"),this._dropdownElement.classList.remove("placement-top","placement-bottom"),this._dropdownElement.classList.add(`placement-${i}`)}catch(t){this.handleError(t,"applyPosition")}}getAvailableSpace(){var t,e;if(!this._triggerElement)return{above:0,below:0,left:0,right:0};const i=this._triggerElement.getBoundingClientRect(),s=(null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight,o=(null===(e=window.visualViewport)||void 0===e?void 0:e.width)||window.innerWidth;return{above:i.top,below:s-i.bottom,left:i.left,right:o-i.right}}hostConnected(){window.addEventListener("resize",this.handleResize),window.addEventListener("scroll",this.handleScroll,!0)}hostDisconnected(){window.removeEventListener("resize",this.handleResize),window.removeEventListener("scroll",this.handleScroll,!0)}}class S extends O{constructor(){super(...arguments),this._focusedIndex=-1,this._hasFocus=!1}get focusedIndex(){return this._focusedIndex}getFocusedOption(){if(this._focusedIndex>=0&&this._focusedIndex<this.host.options.length)return this.host.options[this._focusedIndex]}get hasFocus(){return this._hasFocus}setFocusedOption(t){try{t>=0&&t<this.host.options.length&&(this._focusedIndex=t,this.requestUpdate(),this.dispatchEvent(new CustomEvent("nr-focus-change",{detail:{focusedIndex:t,focusedOption:this.getFocusedOption()},bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"setFocusedOption")}}focus(){var t;try{const e=null===(t=this._host.shadowRoot)||void 0===t?void 0:t.querySelector(".wrapper");e&&(e.focus(),this._hasFocus=!0,this.requestUpdate(),this.dispatchEvent(new CustomEvent("nr-focus",{bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"focus")}}blur(){var t;try{const e=null===(t=this._host.shadowRoot)||void 0===t?void 0:t.querySelector(".wrapper");e&&e.blur(),this._hasFocus=!1,this._focusedIndex=-1,this.requestUpdate(),this.dispatchEvent(new CustomEvent("nr-blur",{bubbles:!0,composed:!0}))}catch(t){this.handleError(t,"blur")}}focusNext(){try{const t=this.getNextFocusableIndex(this._focusedIndex);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusNext")}}focusPrevious(){try{const t=this.getPreviousFocusableIndex(this._focusedIndex);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusPrevious")}}focusFirst(){try{const t=this.getNextFocusableIndex(-1);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusFirst")}}focusLast(){try{const t=this.getPreviousFocusableIndex(this.host.options.length);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusLast")}}clearFocus(){this._focusedIndex=-1,this._hasFocus=!1,this.requestUpdate()}handleFocus(){this._hasFocus=!0,this.requestUpdate()}handleBlur(){this._hasFocus=!1,this._focusedIndex=-1,this.requestUpdate()}getNextFocusableIndex(t){const e=this.host.options;for(let i=t+1;i<e.length;i++)if(!e[i].disabled)return i;for(let i=0;i<=t;i++)if(!e[i].disabled)return i;return-1}getPreviousFocusableIndex(t){const e=this.host.options;for(let i=t-1;i>=0;i--)if(!e[i].disabled)return i;for(let i=e.length-1;i>=t;i--)if(!e[i].disabled)return i;return-1}findOptionIndex(t){return this.host.options.findIndex((e=>e.value===t))}focusOptionByValue(t){const e=this.findOptionIndex(t);-1!==e&&this.setFocusedOption(e)}}!function(t){t.Valid="valid",t.Invalid="invalid",t.Pending="pending",t.Pristine="pristine"}(x||(x={}));class k extends O{constructor(t,e){super(t),this.selectionController=e,this._isValid=!0,this._validationMessage="",this._validationState=x.Pristine}get isValid(){return this._isValid}get validationMessage(){return this._validationMessage}get validationState(){return this._validationState}validate(){try{this._validationState=x.Pending;const t=this.selectionController.getSelectedOptions().length>0;return this.host.required&&!t?(this.setValidationResult(!1,"This field is required",x.Invalid),!1):(this.setValidationResult(!0,"",x.Valid),!0)}catch(t){return this.handleError(t,"validate"),this.setValidationResult(!1,"Validation error occurred",x.Invalid),!1}}reset(){try{this._isValid=!0,this._validationMessage="",this._validationState=x.Pristine,this.requestUpdate(),this.dispatchValidationEvent()}catch(t){this.handleError(t,"reset")}}getFormData(){var t;try{const e=this._host,i=e.name||e.getAttribute("name")||"select",s=this.selectionController.getSelectedOptions();return this.host.multiple?{[i]:s.map((t=>t.value))}:{[i]:(null===(t=s[0])||void 0===t?void 0:t.value)||""}}catch(t){return this.handleError(t,"getFormData"),{}}}checkValidity(){return this.validate()}reportValidity(){var t;const e=this.validate();if(!e){const e=null===(t=this._host.shadowRoot)||void 0===t?void 0:t.querySelector(".wrapper");e&&e.focus()}return e}setCustomValidity(t){try{t?this.setValidationResult(!1,t,x.Invalid):this.validate()}catch(t){this.handleError(t,"setCustomValidity")}}validateOnChange(){this._validationState!==x.Pristine&&this.validate()}validateOnBlur(){this._validationState===x.Pristine&&(this._validationState=x.Pending),this.validate()}setValidationResult(t,e,i){const s=this._isValid!==t||this._validationMessage!==e||this._validationState!==i;this._isValid=t,this._validationMessage=e,this._validationState=i,s&&(this.requestUpdate(),this.dispatchValidationEvent())}dispatchValidationEvent(){const t={isValid:this._isValid,validationMessage:this._validationMessage,validationState:this._validationState};this.dispatchEvent(new CustomEvent("nr-validation",{detail:t,bubbles:!0,composed:!0}))}hostUpdated(){this.validateOnChange()}getValidationClasses(){return{valid:this._isValid&&this._validationState===x.Valid,invalid:!this._isValid&&this._validationState===x.Invalid,pending:this._validationState===x.Pending,pristine:this._validationState===x.Pristine}}getAriaAttributes(){const t={};return this.host.required&&(t["aria-required"]="true"),this._isValid||(t["aria-invalid"]="true",this._validationMessage&&(t["aria-describedby"]="validation-message")),t}}class C extends O{constructor(){super(...arguments),this._searchQuery="",this.handleSearchInput=t=>{this.setSearchQuery(t.detail.value||"")},this.handleSearchClear=()=>{this.clearSearch()},this.handleSearchKeyDown=t=>{if(["ArrowDown","ArrowUp","Enter","Home","End"].includes(t.key)){const e=this.host.keyboardController;e&&e.handleKeyDown(t)}else t.stopPropagation(),"Escape"===t.key&&(this.host.closeDropdown(),this.host.focus())}}get searchQuery(){return this._searchQuery}get hasSearch(){return""!==this._searchQuery.trim()}setSearchQuery(t){this._searchQuery=t,this.host.searchQuery=t,this.host.requestUpdate()}search(t){this.setSearchQuery(t)}clearSearch(){this.setSearchQuery("")}getFilteredOptions(t){if(!this.host.searchable||!this._searchQuery.trim())return t;const e=this._searchQuery.toLowerCase().trim();return t.filter((t=>t.label.toLowerCase().includes(e)||t.value.toLowerCase().includes(e)||t.description&&t.description.toLowerCase().includes(e)))}renderSearchInput(){return this.host.searchable?i`<div class="search-container"><nr-input type="text" class="search-input" placeholder="${this.host.searchPlaceholder}" .value="${this._searchQuery}" allowClear @nr-input="${this.handleSearchInput}" @nr-clear="${this.handleSearchClear}" @keydown="${this.handleSearchKeyDown}" @click="${t=>t.stopPropagation()}"><nr-icon name="search" class="search-icon" slot="prefix" aria-hidden="true"></nr-icon></nr-input></div>`:e}renderNoResults(){return i`<div class="no-options" role="option" aria-disabled="true"><div class="no-options-content"><nr-icon name="search" class="no-options-icon" aria-hidden="true"></nr-icon><span class="no-options-text">No results found for "${this._searchQuery}"</span></div></div>`}hasNoResults(t){return this.host.searchable&&""!==this._searchQuery.trim()&&0===this.getFilteredOptions(t).length}getCurrentQuery(){return this.host.searchQuery||this._searchQuery}hostUpdated(){super.hostUpdated(),this.host.searchQuery!==this._searchQuery&&(this._searchQuery=this.host.searchQuery)}hostConnected(){super.hostConnected(),this._searchQuery=""}}class A extends O{constructor(){super(...arguments),this.handleTriggerClick=t=>{this.host.disabled||(t.preventDefault(),t.stopPropagation(),this.host.toggleDropdown())},this.handleOptionClick=(t,e)=>{t.stopPropagation(),e.disabled||(this.host.multiple?this.host.toggleOption(e):(this.host.selectOption(e),this.host.closeDropdown()))},this.handleTagRemove=(t,e)=>{t.stopPropagation(),this.host.unselectOption(e)},this.handleClearAll=t=>{t.stopPropagation(),this.host.clearSelection()},this.handleKeyDown=t=>{const e=this.host.keyboardController;e&&e.handleKeyDown(t)},this.handleFocus=()=>{const t=this.host.focusController;t&&t.handleFocus()},this.handleBlur=()=>{const t=this.host.focusController;t&&t.handleBlur()},this.handleWindowClick=t=>{const e=t.target;this.host.contains(e)||this.host.closeDropdown()}}setupEventListeners(){window.addEventListener("click",this.handleWindowClick)}removeEventListeners(){window.removeEventListener("click",this.handleWindowClick)}hostDisconnected(){super.hostDisconnected(),this.removeEventListeners()}}
1
+ import{css as t,nothing as e,html as i,LitElement as s}from"lit";import{property as o,query as r,customElement as n}from"lit/decorators.js";import{map as a}from"lit/directives/map.js";import{choose as l}from"lit/directives/choose.js";import{classMap as c}from"lit/directives/class-map.js";import{styleMap as h}from"lit/directives/style-map.js";import{NuralyUIBaseMixin as d}from"@nuralyui/common/mixins";const u=t`
2
+ :host {
3
+ /* Layout and sizing */
4
+ --nuraly-select-local-min-height: 40px;
5
+ --nuraly-select-local-padding-top: 8px;
6
+ --nuraly-select-local-padding-bottom: 8px;
7
+ --nuraly-select-local-padding-left: 12px;
8
+ --nuraly-select-local-padding-right: 12px;
9
+ --nuraly-select-local-wrapper-margin: 0;
10
+ --nuraly-select-local-border-radius: 6px;
11
+ --nuraly-select-local-border-width: 1px;
12
+
13
+ /* Dropdown settings */
14
+ --nuraly-select-local-dropdown-z-index: 9999;
15
+ --nuraly-select-local-dropdown-max-height: 200px;
16
+ --nuraly-select-local-dropdown-width: max-content; /* Default to auto-size to content */
17
+ --nuraly-select-local-placeholder-font-size: 14px;
18
+ --nuraly-select-local-option-font-size: 14px;
19
+
20
+ /* Sizes */
21
+ --nuraly-select-local-medium-height: 40px;
22
+ --nuraly-select-local-medium-font-size: 14px;
23
+ --nuraly-select-local-medium-padding: 8px 12px;
24
+ --nuraly-select-local-small-font-size: 12px;
25
+
26
+ /* Animation and transitions */
27
+ --nuraly-select-local-dropdown-animation-duration: 0.15s;
28
+
29
+ /* Multi-select specific */
30
+ --nuraly-select-local-tag-border-radius: 4px;
31
+ --nuraly-select-local-tag-padding: 2px 6px;
32
+ --nuraly-select-local-tag-margin: 2px;
33
+
34
+ /* Validation message */
35
+ --nuraly-select-local-message-font-size: 12px;
36
+ --nuraly-select-local-message-margin-top: 4px;
37
+ }
38
+
39
+ :host {
40
+ width: fit-content;
41
+ display: block;
42
+ font-family: var(--nuraly-select-font-family, Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif);
43
+ font-size: var(--nuraly-select-font-size, 14px);
44
+ line-height: var(--nuraly-select-line-height, 1.5);
45
+ margin: var(--nuraly-select-margin, var(--nuraly-select-local-wrapper-margin));
46
+ }
47
+
48
+ /* Host attribute selectors for configuration */
49
+ :host([disabled]) {
50
+ opacity: var(--nuraly-select-disabled-opacity, 0.5);
51
+ pointer-events: none;
52
+ }
53
+
54
+ :host([disabled]) .wrapper {
55
+ background-color: var(--nuraly-select-disabled-background, #f9fafb);
56
+ border-color: var(--nuraly-select-disabled-border-color, #d9d9d9);
57
+ color: var(--nuraly-select-disabled-text-color, #8c8c8c);
58
+ cursor: not-allowed;
59
+ }
60
+
61
+ /* Size variants */
62
+ :host([size='small']) .wrapper {
63
+ height: var(--nuraly-select-small-height, 24px);
64
+ min-height: var(--nuraly-select-small-height, 24px);
65
+ font-size: var(--nuraly-select-small-font-size, var(--nuraly-select-local-small-font-size));
66
+ }
67
+
68
+ :host([size='small']) .select-trigger {
69
+ padding: var(--nuraly-select-small-padding, 2px 8px);
70
+ padding-right: calc(var(--nuraly-select-icon-size, 16px) + 20px);
71
+ }
72
+
73
+ :host([size='medium']) .wrapper {
74
+ min-height: var(--nuraly-select-medium-height, var(--nuraly-select-local-medium-height));
75
+ font-size: var(--nuraly-select-medium-font-size, var(--nuraly-select-local-medium-font-size));
76
+ }
77
+
78
+ :host([size='medium']) .select-trigger {
79
+ padding: var(--nuraly-select-medium-padding, var(--nuraly-select-local-medium-padding));
80
+ padding-right: calc(var(--nuraly-select-icon-size, 16px) + 20px);
81
+ }
82
+
83
+ :host([size='large']) .wrapper {
84
+ min-height: var(--nuraly-select-large-height, 48px);
85
+ font-size: var(--nuraly-select-large-font-size, 16px);
86
+ }
87
+
88
+ :host([size='large']) .select-trigger {
89
+ padding: var(--nuraly-select-large-padding, 12px 16px);
90
+ padding-right: calc(var(--nuraly-select-icon-size, 16px) + 20px);
91
+ }
92
+
93
+ /* Status variants */
94
+ :host([status='error']) .wrapper {
95
+ border-color: var(--nuraly-select-error-border-color, #ef4444);
96
+ }
97
+
98
+ :host([status='warning']) .wrapper {
99
+ border-color: var(--nuraly-select-warning-border-color, #f59e0b);
100
+ }
101
+
102
+ :host([status='success']) .wrapper {
103
+ border-color: var(--nuraly-select-success-border-color, #10b981);
104
+ }
105
+
106
+ /* Type variants */
107
+ :host([type='inline']) {
108
+ display: flex;
109
+ align-items: center;
110
+ gap: 8px;
111
+ }
112
+
113
+ :host([type='inline']) .wrapper {
114
+ flex: 1;
115
+ }
116
+
117
+ /* Block (full width) */
118
+ :host([block]) {
119
+ width: 100%;
120
+ }
121
+
122
+ :host([block]) .wrapper {
123
+ width: 100%;
124
+ }
125
+
126
+ /* Show dropdown */
127
+ :host([show]) .options {
128
+ display: flex !important;
129
+ }
130
+
131
+ /* Main wrapper container */
132
+ .wrapper {
133
+ position: relative;
134
+ width: var(--nuraly-select-width, fit-content);
135
+ background-color: var(--nuraly-select-background-color, #ffffff);
136
+ border: var(--nuraly-select-border-width, var(--nuraly-select-local-border-width)) solid
137
+ var(--nuraly-select-border-color, #d9d9d9);
138
+ border-radius: var(--nuraly-select-border-radius, var(--nuraly-select-local-border-radius));
139
+ transition: all var(--nuraly-select-transition-duration, 0.2s)
140
+ var(--nuraly-select-transition-timing, ease-in-out);
141
+ cursor: pointer;
142
+ outline: none;
143
+ margin: var(--nuraly-select-wrapper-margin, 0);
144
+ min-height: var(--nuraly-select-min-height, var(--nuraly-select-local-min-height));
145
+ box-sizing: border-box;
146
+ display: flex;
147
+ align-items: center;
148
+ /* Ensure dropdown can overflow the wrapper */
149
+ overflow: visible;
150
+ }
151
+
152
+ .wrapper:hover:not(:disabled) {
153
+ border-color: var(--nuraly-select-border-hover, #7c3aed);
154
+ }
155
+
156
+ .wrapper:focus,
157
+ .wrapper:focus-within {
158
+ border-color: var(--nuraly-select-border-focus, #7c3aed);
159
+ box-shadow: 0 0 0 2px var(--nuraly-select-focus-outline, rgba(124, 58, 237, 0.2));
160
+ }
161
+
162
+ /* Select container */
163
+ .select {
164
+ display: flex;
165
+ flex-direction: column;
166
+ }
167
+
168
+ /* Select trigger (main display area) */
169
+ .select-trigger {
170
+ display: flex;
171
+ align-items: center;
172
+ padding: var(--nuraly-select-padding-top, var(--nuraly-select-local-padding-top))
173
+ calc(var(--nuraly-select-icon-size, 16px) + 20px)
174
+ var(--nuraly-select-padding-bottom, var(--nuraly-select-local-padding-bottom))
175
+ var(--nuraly-select-padding-left, var(--nuraly-select-local-padding-left));
176
+ color: var(--nuraly-select-text-color, #262626);
177
+ font-size: inherit;
178
+ line-height: inherit;
179
+ word-break: break-word;
180
+ flex: 1;
181
+ min-height: 0;
182
+ flex-wrap: wrap;
183
+ gap: var(--nuraly-select-tag-margin, var(--nuraly-select-local-tag-margin));
184
+ box-sizing: border-box;
185
+ }
186
+
187
+ .select-trigger:empty:before {
188
+ content: attr(data-placeholder);
189
+ color: var(--nuraly-select-placeholder-color, #8c8c8c);
190
+ font-size: var(--nuraly-select-placeholder-font-size, var(--nuraly-select-local-placeholder-font-size));
191
+ }
192
+
193
+ /* Multi-select tags */
194
+ .tag {
195
+ display: inline-flex;
196
+ align-items: center;
197
+ gap: 4px;
198
+ background-color: var(--nuraly-select-tag-background, var(--nuraly-select-local-tag-background));
199
+ color: var(--nuraly-select-tag-color, var(--nuraly-select-local-tag-color));
200
+ padding: var(--nuraly-select-tag-padding, var(--nuraly-select-local-tag-padding));
201
+ border-radius: var(--nuraly-select-tag-border-radius, var(--nuraly-select-local-tag-border-radius));
202
+ font-size: calc(var(--nuraly-select-font-size, var(--nuraly-select-local-font-size)) - 1px);
203
+ max-width: 100%;
204
+ }
205
+
206
+ .tag-label {
207
+ overflow: hidden;
208
+ text-overflow: ellipsis;
209
+ white-space: nowrap;
210
+ }
211
+
212
+ .tag-close {
213
+ color: var(--nuraly-select-tag-close-color, var(--nuraly-select-local-tag-close-color));
214
+ cursor: pointer;
215
+ display: flex;
216
+ align-items: center;
217
+ justify-content: center;
218
+ width: var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));
219
+ height: var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));
220
+ border-radius: 50%;
221
+ transition: color var(--nuraly-select-transition-duration, var(--nuraly-select-local-transition-duration));
222
+ }
223
+
224
+ .tag-close:hover {
225
+ color: var(--nuraly-select-tag-close-hover-color, var(--nuraly-select-local-tag-close-hover-color));
226
+ }
227
+
228
+ /* Icons container */
229
+ .icons-container {
230
+ position: absolute;
231
+ top: 50%;
232
+ right: 12px;
233
+ transform: translateY(-50%);
234
+ display: flex;
235
+ align-items: center;
236
+ gap: 4px;
237
+ pointer-events: none;
238
+ }
239
+
240
+ .icons-container nr-icon {
241
+ --nuraly-icon-width: var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));
242
+ --nuraly-icon-color: var(--nuraly-select-icon-color, var(--nuraly-select-local-icon-color));
243
+ pointer-events: auto;
244
+ cursor: pointer;
245
+ transition: color var(--nuraly-select-transition-duration, var(--nuraly-select-local-transition-duration));
246
+ }
247
+
248
+ .icons-container nr-icon:hover {
249
+ --nuraly-icon-color: var(--nuraly-select-icon-hover-color, var(--nuraly-select-local-icon-hover-color));
250
+ }
251
+
252
+ .arrow-icon {
253
+ --nuraly-icon-width: var(--nuraly-select-arrow-icon-size, var(--nuraly-select-local-arrow-icon-size));
254
+ transition: transform var(--nuraly-select-transition-duration, var(--nuraly-select-local-transition-duration));
255
+ pointer-events: none !important;
256
+ }
257
+
258
+ :host([show]) .arrow-icon {
259
+ transform: rotate(180deg);
260
+ }
261
+
262
+ /* Dropdown options */
263
+ .options {
264
+ /* Default positioning - will be overridden by controller when opened */
265
+ position: absolute;
266
+ top: 100%;
267
+ margin-top: 1px;
268
+ left: 0;
269
+ right: 0;
270
+ background-color: var(--nuraly-select-dropdown-background, #ffffff);
271
+ border: var(--nuraly-select-dropdown-border-width, var(--nuraly-select-border-width, 1px)) solid
272
+ var(--nuraly-select-dropdown-border-color, #d9d9d9);
273
+ border-radius: var(--nuraly-select-dropdown-border-radius, var(--nuraly-select-border-radius, 6px));
274
+ box-shadow: var(--nuraly-select-dropdown-shadow, 0 6px 16px 0 rgba(0, 0, 0, 0.08));
275
+ z-index: var(--nuraly-select-dropdown-z-index, 9999);
276
+ max-height: var(--nuraly-select-dropdown-max-height, 200px);
277
+ overflow-y: auto;
278
+ overflow-x: hidden;
279
+ display: none;
280
+ flex-direction: column;
281
+ animation: dropdown-enter var(--nuraly-select-dropdown-animation-duration, 0.15s) ease-out;
282
+ /* Ensure proper containment and exact wrapper width */
283
+ box-sizing: border-box;
284
+ /* Allow overriding width via either of these custom props */
285
+ width: var(
286
+ --nuraly-select-dropdown-width,
287
+ var(--select-dropdown-width, var(--nuraly-select-local-dropdown-width))
288
+ );
289
+ min-width: 100%; /* Ensure dropdown is at least as wide as the wrapper */
290
+ /* Create new stacking context to prevent layering issues */
291
+ isolation: isolate;
292
+ /* Ensure solid background to prevent visual bleed-through */
293
+ backdrop-filter: none;
294
+ -webkit-backdrop-filter: none;
295
+ /* Force above other elements */
296
+ transform: translateZ(0);
297
+ }
298
+
299
+ .options.placement-top {
300
+ top: auto;
301
+ bottom: 100%;
302
+ margin-bottom: 1px;
303
+ margin-top: 0;
304
+ animation: dropdown-enter-top var(--nuraly-select-dropdown-animation-duration, var(--nuraly-select-local-dropdown-animation-duration)) ease-out;
305
+ }
306
+
307
+ @keyframes dropdown-enter {
308
+ from {
309
+ opacity: 0;
310
+ transform: translateY(-8px);
311
+ }
312
+ to {
313
+ opacity: 1;
314
+ transform: translateY(0);
315
+ }
316
+ }
317
+
318
+ @keyframes dropdown-enter-top {
319
+ from {
320
+ opacity: 0;
321
+ transform: translateY(8px);
322
+ }
323
+ to {
324
+ opacity: 1;
325
+ transform: translateY(0);
326
+ }
327
+ }
328
+
329
+ /* Search container - sticky at top of dropdown */
330
+ .search-container {
331
+ position: sticky;
332
+ top: 0;
333
+ z-index: 10;
334
+ background-color: var(--nuraly-select-dropdown-background, #ffffff);
335
+ border-bottom: var(--nuraly-select-border-width, 1px) solid
336
+ var(--nuraly-select-dropdown-border-color, #d9d9d9);
337
+ padding: 8px;
338
+ margin: 0;
339
+ /* Ensure it stays above options during scroll */
340
+ backdrop-filter: blur(8px);
341
+ -webkit-backdrop-filter: blur(8px);
342
+ /* Ensure proper stacking and smooth scrolling */
343
+ will-change: transform;
344
+ transform: translateZ(0);
345
+ }
346
+
347
+ /* Search input styling */
348
+ .search-container .search-input {
349
+ width: 100%;
350
+ --nuraly-input-border-radius: var(--nuraly-select-border-radius, var(--nuraly-select-local-border-radius));
351
+ --nuraly-input-background-color: var(--nuraly-select-background-color, var(--nuraly-select-local-background-color));
352
+ --nuraly-input-border-color: var(--nuraly-select-border-color, var(--nuraly-select-local-border-color));
353
+ --nuraly-input-text-color: var(--nuraly-select-text-color, var(--nuraly-select-local-text-color));
354
+ --nuraly-input-placeholder-color: var(--nuraly-select-placeholder-color, var(--nuraly-select-local-placeholder-color));
355
+ }
356
+
357
+ /* Search icon in the search input */
358
+ .search-container .search-icon {
359
+ --nuraly-icon-color: var(--nuraly-select-icon-color, var(--nuraly-select-local-icon-color));
360
+ }
361
+
362
+ /* Options list container - ensure proper scroll behavior with sticky search */
363
+ .options:has(.search-container) {
364
+ /* Add small padding-top when search is present to ensure proper separation */
365
+ padding-top: 0;
366
+ }
367
+
368
+ /* Option items */
369
+ .option {
370
+ display: flex;
371
+ align-items: center;
372
+ gap: 8px;
373
+ padding: var(--nuraly-select-option-padding, 8px 12px);
374
+ min-height: var(--nuraly-select-option-min-height, auto);
375
+ color: var(--nuraly-select-option-text-color, var(--nuraly-select-text-color, #262626));
376
+ font-size: var(--nuraly-select-option-font-size, 14px);
377
+ cursor: pointer;
378
+ transition: background-color var(--nuraly-select-transition-duration, 0.2s);
379
+ position: relative;
380
+ }
381
+
382
+ /* First option after search container should have no extra margin */
383
+ .search-container + .option {
384
+ margin-top: 0;
385
+ }
386
+
387
+ .option:hover {
388
+ background-color: var(--nuraly-select-option-hover-background, #f5f5f5);
389
+ }
390
+
391
+ .option.selected {
392
+ background-color: var(--nuraly-select-option-selected-background, #e0e0e0);
393
+ color: var(--nuraly-select-option-selected-color, #7c3aed);
394
+ }
395
+
396
+ .option.focused {
397
+ background-color: var(--nuraly-select-option-hover-background, #f5f5f5);
398
+ outline: 2px solid var(--nuraly-select-border-focus, #7c3aed);
399
+ outline-offset: -2px;
400
+ }
401
+
402
+ .option.disabled {
403
+ opacity: var(--nuraly-select-disabled-opacity, var(--nuraly-select-local-disabled-opacity));
404
+ cursor: not-allowed;
405
+ }
406
+
407
+ .option-content {
408
+ flex: 1;
409
+ display: flex;
410
+ align-items: center;
411
+ gap: 8px;
412
+ }
413
+
414
+ .option-icon {
415
+ --nuraly-icon-width: var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));
416
+ --nuraly-icon-color: currentColor;
417
+ }
418
+
419
+ .option-text {
420
+ flex: 1;
421
+ overflow: hidden;
422
+ text-overflow: ellipsis;
423
+ white-space: nowrap;
424
+ }
425
+
426
+ .option-description {
427
+ font-size: calc(var(--nuraly-select-option-font-size, var(--nuraly-select-local-option-font-size)) - 1px);
428
+ opacity: 0.7;
429
+ margin-top: 2px;
430
+ }
431
+
432
+ .check-icon {
433
+ --nuraly-icon-width: var(--nuraly-select-icon-size, var(--nuraly-select-local-icon-size));
434
+ --nuraly-icon-color: var(--nuraly-select-option-selected-color, var(--nuraly-select-local-option-selected-color));
435
+ }
436
+
437
+ .no-options {
438
+ display: flex;
439
+ align-items: center;
440
+ justify-content: center;
441
+ padding: var(--select-no-options-padding, 24px 16px);
442
+ color: var(--select-no-options-color, #8c8c8c);
443
+ font-size: var(--nuraly-select-option-font-size, var(--nuraly-select-local-option-font-size));
444
+ cursor: default;
445
+ user-select: none;
446
+ }
447
+
448
+ .no-options-content {
449
+ display: flex;
450
+ flex-direction: column;
451
+ align-items: center;
452
+ gap: var(--select-no-options-gap, 8px);
453
+ text-align: center;
454
+ }
455
+
456
+ .no-options-icon {
457
+ --nuraly-icon-width: 24px;
458
+ --nuraly-icon-color: var(--select-no-options-icon-color, #d9d9d9);
459
+ opacity: 0.8;
460
+ }
461
+
462
+ .no-options-text {
463
+ font-size: var(--nuraly-select-option-font-size, var(--nuraly-select-local-option-font-size));
464
+ color: var(--select-no-options-color, #8c8c8c);
465
+ line-height: 1.4;
466
+ }
467
+
468
+ /* Validation message */
469
+ .validation-message {
470
+ display: block;
471
+ margin-top: var(--nuraly-select-message-margin-top, var(--nuraly-select-local-message-margin-top));
472
+ font-size: var(--nuraly-select-message-font-size, var(--nuraly-select-local-message-font-size));
473
+ color: var(--nuraly-select-error-message-color, var(--nuraly-select-local-error-message-color));
474
+ }
475
+
476
+ .validation-message.warning {
477
+ color: var(--nuraly-select-warning-message-color, var(--nuraly-select-local-warning-message-color));
478
+ }
479
+
480
+ .validation-message.success {
481
+ color: var(--nuraly-select-success-message-color, var(--nuraly-select-local-success-message-color));
482
+ }
483
+
484
+ /* Slotted content styles */
485
+ ::slotted([slot='label']) {
486
+ display: block;
487
+ margin-bottom: 4px;
488
+ font-weight: 500;
489
+ color: var(--nuraly-select-text-color, var(--nuraly-select-local-text-color));
490
+ }
491
+
492
+ ::slotted([slot='helper-text']) {
493
+ display: block;
494
+ margin-top: var(--nuraly-select-message-margin-top, var(--nuraly-select-local-message-margin-top));
495
+ font-size: var(--nuraly-select-message-font-size, var(--nuraly-select-local-message-font-size));
496
+ color: var(--nuraly-select-placeholder-color, var(--nuraly-select-local-placeholder-color));
497
+ }
498
+
499
+ /* Accessibility improvements */
500
+ @media (prefers-reduced-motion: reduce) {
501
+ .options,
502
+ .wrapper,
503
+ .tag-close,
504
+ .arrow-icon,
505
+ .option {
506
+ transition: none;
507
+ animation: none;
508
+ }
509
+ }
510
+
511
+ /* High contrast mode support */
512
+ @media (prefers-contrast: high) {
513
+ .wrapper {
514
+ border-width: 2px;
515
+ }
516
+
517
+ .wrapper:focus,
518
+ .wrapper:focus-within {
519
+ outline: 3px solid;
520
+ }
521
+ }
522
+ `;var p,v,y,g,m,f,b,w,x;!function(t){t.Default="default",t.Inline="inline",t.Button="button",t.Slot="slot"}(p||(p={})),function(t){t.Default="default",t.Warning="warning",t.Error="error",t.Success="success"}(v||(v={})),function(t){t.Small="small",t.Medium="medium",t.Large="large"}(y||(y={})),function(t){t.Small="small",t.Medium="medium",t.Large="large"}(g||(g={})),function(t){t.Horizontal="horizontal",t.Vertical="vertical"}(m||(m={})),function(t){t.Default="default",t.Solid="solid",t.Outline="outline",t.Borderless="borderless"}(f||(f={})),function(t){t.Bottom="bottom",t.Top="top",t.Auto="auto"}(b||(b={})),function(t){t.None="none",t.StartsWith="starts-with",t.Contains="contains",t.Fuzzy="fuzzy"}(w||(w={}));class O{constructor(t){this._host=t,this._host.addController(this)}get host(){return this._host}hostConnected(){}hostDisconnected(){}hostUpdate(){}hostUpdated(){}handleError(t,e){console.error(`[SelectController:${this.constructor.name}] Error in ${e}:`,t),this._host.dispatchEvent(new CustomEvent("nr-select-error",{detail:{error:t.message,context:e,controller:this.constructor.name},bubbles:!0,composed:!0}))}requestUpdate(){try{this._host.requestUpdate()}catch(t){this.handleError(t,"requestUpdate")}}dispatchEvent(t){try{return this._host.dispatchEvent(t)}catch(t){return this.handleError(t,"dispatchEvent"),!1}}}class E extends O{constructor(){super(...arguments),this._selectedOptions=[],this._initialized=!1}getSelectedOptions(){return[...this._selectedOptions]}getSelectedOption(){return this._selectedOptions[0]}selectOption(t){try{if(this.isOptionDisabled(t))return;const e=this.host.multiple,i=this.getCurrentValue();e?this.isOptionSelected(t)||(this._selectedOptions=[...this._selectedOptions,t],this.updateHostValue(),this.dispatchChangeEvent(i)):(this.isOptionSelected(t)?this._selectedOptions=[]:this._selectedOptions=[t],this.updateHostValue(),this.dispatchChangeEvent(i)),this.requestUpdate()}catch(t){this.handleError(t,"selectOption")}}unselectOption(t){try{if(this.isOptionSelected(t)){const e=this.getCurrentValue();this._selectedOptions=this._selectedOptions.filter((e=>e.value!==t.value)),this.updateHostValue(),this.dispatchChangeEvent(e),this.requestUpdate()}}catch(t){this.handleError(t,"unselectOption")}}clearSelection(){try{if(this._selectedOptions.length>0){const t=this.getCurrentValue();this._selectedOptions=[],this.updateHostValue(),this.dispatchChangeEvent(t),this.requestUpdate()}}catch(t){this.handleError(t,"clearSelection")}}isOptionSelected(t){return this._selectedOptions.some((e=>e.value===t.value))}isOptionDisabled(t){return Boolean(t.disabled)||this.host.disabled}toggleOption(t){this.isOptionSelected(t)?this.unselectOption(t):this.selectOption(t)}initializeFromValue(){try{if(this._initialized)return;const t=this.host.value;if(!t||Array.isArray(t)&&0===t.length)return;const e=Array.isArray(t)?t:[t],i=this.host.options.filter((t=>e.includes(t.value)));i.length>0&&(this._selectedOptions=this.host.multiple?i:[i[0]],this.requestUpdate()),this._initialized=!0}catch(t){this.handleError(t,"initializeFromValue")}}updateHostValue(){var t;const e=this.host.multiple?this._selectedOptions.map((t=>t.value)):(null===(t=this._selectedOptions[0])||void 0===t?void 0:t.value)||"",i=this.host.value;let s=!1;if(this.host.multiple){const t=Array.isArray(i)?i:[],o=Array.isArray(e)?e:[];s=t.length===o.length&&t.every(((t,e)=>t===o[e]))}else s=i===e;s||(this.host.value=e)}getCurrentValue(){var t;return this.host.multiple?this._selectedOptions.map((t=>t.value)):(null===(t=this._selectedOptions[0])||void 0===t?void 0:t.value)||""}dispatchChangeEvent(t){const e={value:this.getCurrentValue(),selectedOptions:this.getSelectedOptions(),previousValue:t};this.dispatchEvent(new CustomEvent("nr-change",{detail:e,bubbles:!0,composed:!0}))}hostUpdated(){this.syncWithHostOptions()}syncWithHostOptions(){try{this._selectedOptions=this._selectedOptions.filter((t=>this.host.options.some((e=>e.value===t.value)))),this._selectedOptions=this._selectedOptions.map((t=>this.host.options.find((e=>e.value===t.value))||t)),this.updateHostValue()}catch(t){this.handleError(t,"syncWithHostOptions")}}}class z extends O{constructor(t,e,i){super(t),this.selectionController=e,this.dropdownController=i,this._focusedIndex=-1,this._hasKeyboardNavigated=!1}handleKeyDown(t){try{const e=this.isSearchInputFocused();switch(t.key){case"ArrowDown":t.preventDefault(),this.dropdownController.isOpen?this.navigateNext():this.openDropdown();break;case"ArrowUp":t.preventDefault(),this.dropdownController.isOpen?this.navigatePrevious():this.openDropdown();break;case"Enter":this.dropdownController.isOpen?e&&this._focusedIndex>=0?(t.preventDefault(),this.selectFocused()):e||(t.preventDefault(),this.selectFocused()):(t.preventDefault(),this.openDropdown());break;case" ":e||(t.preventDefault(),this.dropdownController.isOpen?this.selectFocused():this.openDropdown());break;case"Escape":t.preventDefault(),this.closeDropdown();break;case"Tab":this.closeDropdown();break;case"Home":this.dropdownController.isOpen&&(t.preventDefault(),this.setFocusedIndex(0));break;case"End":this.dropdownController.isOpen&&(t.preventDefault(),this.setFocusedIndex(this.host.options.length-1));break;default:1===t.key.length&&/[a-zA-Z0-9]/.test(t.key)&&this.handleAlphanumericKey(t.key.toLowerCase())}}catch(t){this.handleError(t,"handleKeyDown")}}navigateNext(){try{const t=this.getNavigableOptions();if(0===t.length)return;if(this.isSearchInputFocused()&&(this._focusedIndex<0||!this._hasKeyboardNavigated))return this._hasKeyboardNavigated=!0,void this.setFocusedIndex(0);let e=this._focusedIndex+1;e>=t.length&&(e=0),this.setFocusedIndex(e)}catch(t){this.handleError(t,"navigateNext")}}navigatePrevious(){try{const t=this.getNavigableOptions();if(0===t.length)return;if(this.isSearchInputFocused()&&(this._focusedIndex<0||!this._hasKeyboardNavigated))return this._hasKeyboardNavigated=!0,void this.setFocusedIndex(t.length-1);let e=this._focusedIndex-1;e<0&&(e=t.length-1),this.setFocusedIndex(e)}catch(t){this.handleError(t,"navigatePrevious")}}selectFocused(){try{const t=this.getNavigableOptions()[this._focusedIndex];t&&!this.selectionController.isOptionDisabled(t)&&(this.selectionController.selectOption(t),this.host.multiple||this.closeDropdown())}catch(t){this.handleError(t,"selectFocused")}}openDropdown(){try{this.dropdownController.open(),this._hasKeyboardNavigated=!1,this._focusedIndex=-1}catch(t){this.handleError(t,"openDropdown")}}closeDropdown(){try{this.dropdownController.close(),this._focusedIndex=-1,this._hasKeyboardNavigated=!1}catch(t){this.handleError(t,"closeDropdown")}}setFocusedIndex(t){try{const e=this.getNavigableOptions();t>=0&&t<e.length&&(this._focusedIndex=t,this.dispatchFocusEvent(e[t],t),this.requestUpdate(),this.scrollToFocusedOption(t))}catch(t){this.handleError(t,"setFocusedIndex")}}scrollToFocusedOption(t){var e;try{const i=null===(e=this.host.shadowRoot)||void 0===e?void 0:e.querySelector(".options");if(!i)return;setTimeout((()=>{const e=i.querySelector(".option.focused");if(e)e.scrollIntoView({behavior:"smooth",block:"nearest",inline:"nearest"});else{const e=40,s=i.clientHeight,o=i.scrollTop,r=t*e,n=r+e,a=o+s;r<o?i.scrollTo({top:r,behavior:"smooth"}):n>a&&i.scrollTo({top:n-s,behavior:"smooth"})}}),10)}catch(t){console.warn("Failed to scroll to focused option:",t)}}get focusedIndex(){return this._focusedIndex}get focusedOption(){return this.getNavigableOptions()[this._focusedIndex]}handleAlphanumericKey(t){try{const e=this.getNavigableOptions(),i=this._focusedIndex+1;for(let s=0;s<e.length;s++){const o=(i+s)%e.length;if(e[o].label.toLowerCase().startsWith(t)){this.setFocusedIndex(o),this.dropdownController.isOpen||this.openDropdown();break}}}catch(t){this.handleError(t,"handleAlphanumericKey")}}getNavigableOptions(){const t=this.host;if(!t.options||!Array.isArray(t.options))return[];let e=t.options;return t.searchable&&t.searchQuery&&"function"==typeof t.getFilteredOptions&&(e=t.getFilteredOptions()),e.filter((t=>!t.disabled))}dispatchFocusEvent(t,e){const i={focusedOption:t,focusedIndex:e};this.dispatchEvent(new CustomEvent("nr-select-focus",{detail:i,bubbles:!0,composed:!0}))}isSearchInputFocused(){var t;try{const e=this.host;if(!e.searchable)return!1;const i=null===(t=e.shadowRoot)||void 0===t?void 0:t.querySelector(".search-input");return!!i&&(document.activeElement===i||i.shadowRoot&&i.shadowRoot.querySelector("input")===i.shadowRoot.activeElement||i.contains(document.activeElement))}catch(t){return!1}}hostUpdated(){this.dropdownController.isOpen||-1===this._focusedIndex||(this._focusedIndex=-1)}}class S extends O{constructor(){super(...arguments),this._isOpen=!1,this._position={top:0,left:0,width:0,placement:"bottom"},this._dropdownElement=null,this._triggerElement=null,this.handleResize=()=>{this._isOpen&&this.calculatePosition()},this.handleScroll=()=>{var t;if(this._isOpen&&this._triggerElement){const e=this._triggerElement.getBoundingClientRect(),i=(null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight;(e.bottom<0||e.top>i)&&this.close()}}}get isOpen(){return this._isOpen}get position(){return Object.assign({},this._position)}open(){try{this._isOpen||(this._isOpen=!0,this.host.show=!0,this.requestUpdate(),this.findElements(),setTimeout((()=>{this.calculatePosition()}),10),this.host&&"function"==typeof this.host.setupEventListeners&&setTimeout((()=>{this.host.setupEventListeners()}),50),this.focusSearchInput(),this.dispatchEvent(new CustomEvent("nr-dropdown-open",{bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"open")}}close(){try{this._isOpen&&(this._isOpen=!1,this.host.show=!1,this.resetPosition(),this.requestUpdate(),this.host&&"function"==typeof this.host.removeEventListeners&&this.host.removeEventListeners(),this.dispatchEvent(new CustomEvent("nr-dropdown-close",{bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"close")}}toggle(){this._isOpen?this.close():this.open()}focusSearchInput(){try{const t=this.host;t&&t.searchable&&setTimeout((()=>{var e;const i=null===(e=t.shadowRoot)||void 0===e?void 0:e.querySelector(".search-input");i&&"function"==typeof i.focus&&i.focus()}),100)}catch(t){console.warn("Failed to focus search input:",t)}}calculatePosition(){var t;try{if(this._dropdownElement&&this._triggerElement||this.findElements(),!this._dropdownElement||!this._triggerElement)return;const e=this._triggerElement.getBoundingClientRect(),i=((null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight)-e.bottom,s=e.top,o=200,r=this.determineOptimalPlacement(o,s,i);this._position={left:0,width:0,placement:r,top:0},this.applyPosition()}catch(t){this.handleError(t,"calculatePosition")}}resetPosition(){try{if(this._dropdownElement){this._dropdownElement.style.removeProperty("position"),this._dropdownElement.style.removeProperty("top"),this._dropdownElement.style.removeProperty("left"),this._dropdownElement.style.removeProperty("width"),this._dropdownElement.style.removeProperty("min-width");this.host.maxHeight||this._dropdownElement.style.removeProperty("max-height"),this._dropdownElement.style.removeProperty("min-height"),this._dropdownElement.style.removeProperty("height"),this._dropdownElement.style.removeProperty("overflow-y"),this._dropdownElement.style.removeProperty("transform"),this._dropdownElement.style.removeProperty("display"),this._dropdownElement.style.removeProperty("opacity"),this._dropdownElement.style.removeProperty("visibility"),this._dropdownElement.style.removeProperty("z-index"),this._dropdownElement.classList.remove("placement-top","placement-bottom")}}catch(t){this.handleError(t,"resetPosition")}}setElements(t,e){this._dropdownElement=t,this._triggerElement=e}findElements(){try{const t=this._host;if(t.optionsElement&&t.wrapper)return this._dropdownElement=t.optionsElement,void(this._triggerElement=t.wrapper);t.shadowRoot&&(this._dropdownElement=t.shadowRoot.querySelector(".options"),this._triggerElement=t.shadowRoot.querySelector(".wrapper"))}catch(t){this.handleError(t,"findElements")}}determineOptimalPlacement(t,e,i){return i>=t?"bottom":e>=t||e>i?"top":"bottom"}applyPosition(){var t;try{if(!this._dropdownElement||!this._triggerElement)return;const e=this.host.maxHeight,{placement:i}=this._position,s=this._triggerElement.getBoundingClientRect(),o=s.width;this._dropdownElement.style.position="absolute",this._dropdownElement.style.left="0",this._dropdownElement.style.right="auto",this._dropdownElement.style.minWidth=`${o}px`,this._dropdownElement.style.removeProperty("width"),this._dropdownElement.style.zIndex="1000",this._dropdownElement.style.height="auto",e||(this._dropdownElement.style.maxHeight="none"),this._dropdownElement.style.minHeight="auto","bottom"===i?(this._dropdownElement.style.top="100%",this._dropdownElement.style.bottom="auto"):(this._dropdownElement.style.top="auto",this._dropdownElement.style.bottom="100%");const r=this._dropdownElement.scrollHeight,n=(null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight;let a;a="bottom"===i?n-s.bottom-10:s.top-10,e?(this._dropdownElement.style.maxHeight=e,this._dropdownElement.style.overflowY="auto"):r>a?(this._dropdownElement.style.maxHeight=`${a}px`,this._dropdownElement.style.overflowY="auto"):(this._dropdownElement.style.maxHeight=`${r}px`,this._dropdownElement.style.overflowY="auto"),this._dropdownElement.classList.remove("placement-top","placement-bottom"),this._dropdownElement.classList.add(`placement-${i}`)}catch(t){this.handleError(t,"applyPosition")}}getAvailableSpace(){var t,e;if(!this._triggerElement)return{above:0,below:0,left:0,right:0};const i=this._triggerElement.getBoundingClientRect(),s=(null===(t=window.visualViewport)||void 0===t?void 0:t.height)||window.innerHeight,o=(null===(e=window.visualViewport)||void 0===e?void 0:e.width)||window.innerWidth;return{above:i.top,below:s-i.bottom,left:i.left,right:o-i.right}}hostConnected(){window.addEventListener("resize",this.handleResize),window.addEventListener("scroll",this.handleScroll,!0)}hostDisconnected(){window.removeEventListener("resize",this.handleResize),window.removeEventListener("scroll",this.handleScroll,!0)}}class $ extends O{constructor(){super(...arguments),this._focusedIndex=-1,this._hasFocus=!1}get focusedIndex(){return this._focusedIndex}getFocusedOption(){if(this._focusedIndex>=0&&this._focusedIndex<this.host.options.length)return this.host.options[this._focusedIndex]}get hasFocus(){return this._hasFocus}setFocusedOption(t){try{t>=0&&t<this.host.options.length&&(this._focusedIndex=t,this.requestUpdate(),this.dispatchEvent(new CustomEvent("nr-focus-change",{detail:{focusedIndex:t,focusedOption:this.getFocusedOption()},bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"setFocusedOption")}}focus(){var t;try{const e=null===(t=this._host.shadowRoot)||void 0===t?void 0:t.querySelector(".wrapper");e&&(e.focus(),this._hasFocus=!0,this.requestUpdate(),this.dispatchEvent(new CustomEvent("nr-focus",{bubbles:!0,composed:!0})))}catch(t){this.handleError(t,"focus")}}blur(){var t;try{const e=null===(t=this._host.shadowRoot)||void 0===t?void 0:t.querySelector(".wrapper");e&&e.blur(),this._hasFocus=!1,this._focusedIndex=-1,this.requestUpdate(),this.dispatchEvent(new CustomEvent("nr-blur",{bubbles:!0,composed:!0}))}catch(t){this.handleError(t,"blur")}}focusNext(){try{const t=this.getNextFocusableIndex(this._focusedIndex);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusNext")}}focusPrevious(){try{const t=this.getPreviousFocusableIndex(this._focusedIndex);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusPrevious")}}focusFirst(){try{const t=this.getNextFocusableIndex(-1);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusFirst")}}focusLast(){try{const t=this.getPreviousFocusableIndex(this.host.options.length);-1!==t&&this.setFocusedOption(t)}catch(t){this.handleError(t,"focusLast")}}clearFocus(){this._focusedIndex=-1,this._hasFocus=!1,this.requestUpdate()}handleFocus(){this._hasFocus=!0,this.requestUpdate()}handleBlur(){this._hasFocus=!1,this._focusedIndex=-1,this.requestUpdate()}getNextFocusableIndex(t){const e=this.host.options;for(let i=t+1;i<e.length;i++)if(!e[i].disabled)return i;for(let i=0;i<=t;i++)if(!e[i].disabled)return i;return-1}getPreviousFocusableIndex(t){const e=this.host.options;for(let i=t-1;i>=0;i--)if(!e[i].disabled)return i;for(let i=e.length-1;i>=t;i--)if(!e[i].disabled)return i;return-1}findOptionIndex(t){return this.host.options.findIndex((e=>e.value===t))}focusOptionByValue(t){const e=this.findOptionIndex(t);-1!==e&&this.setFocusedOption(e)}}!function(t){t.Valid="valid",t.Invalid="invalid",t.Pending="pending",t.Pristine="pristine"}(x||(x={}));class k extends O{constructor(t,e){super(t),this.selectionController=e,this._isValid=!0,this._validationMessage="",this._validationState=x.Pristine}get isValid(){return this._isValid}get validationMessage(){return this._validationMessage}get validationState(){return this._validationState}validate(){try{this._validationState=x.Pending;const t=this.selectionController.getSelectedOptions().length>0;return this.host.required&&!t?(this.setValidationResult(!1,"This field is required",x.Invalid),!1):(this.setValidationResult(!0,"",x.Valid),!0)}catch(t){return this.handleError(t,"validate"),this.setValidationResult(!1,"Validation error occurred",x.Invalid),!1}}reset(){try{this._isValid=!0,this._validationMessage="",this._validationState=x.Pristine,this.requestUpdate(),this.dispatchValidationEvent()}catch(t){this.handleError(t,"reset")}}getFormData(){var t;try{const e=this._host,i=e.name||e.getAttribute("name")||"select",s=this.selectionController.getSelectedOptions();return this.host.multiple?{[i]:s.map((t=>t.value))}:{[i]:(null===(t=s[0])||void 0===t?void 0:t.value)||""}}catch(t){return this.handleError(t,"getFormData"),{}}}checkValidity(){return this.validate()}reportValidity(){var t;const e=this.validate();if(!e){const e=null===(t=this._host.shadowRoot)||void 0===t?void 0:t.querySelector(".wrapper");e&&e.focus()}return e}setCustomValidity(t){try{t?this.setValidationResult(!1,t,x.Invalid):this.validate()}catch(t){this.handleError(t,"setCustomValidity")}}validateOnChange(){this._validationState!==x.Pristine&&this.validate()}validateOnBlur(){this._validationState===x.Pristine&&(this._validationState=x.Pending),this.validate()}setValidationResult(t,e,i){const s=this._isValid!==t||this._validationMessage!==e||this._validationState!==i;this._isValid=t,this._validationMessage=e,this._validationState=i,s&&(this.requestUpdate(),this.dispatchValidationEvent())}dispatchValidationEvent(){const t={isValid:this._isValid,validationMessage:this._validationMessage,validationState:this._validationState};this.dispatchEvent(new CustomEvent("nr-validation",{detail:t,bubbles:!0,composed:!0}))}hostUpdated(){this.validateOnChange()}getValidationClasses(){return{valid:this._isValid&&this._validationState===x.Valid,invalid:!this._isValid&&this._validationState===x.Invalid,pending:this._validationState===x.Pending,pristine:this._validationState===x.Pristine}}getAriaAttributes(){const t={};return this.host.required&&(t["aria-required"]="true"),this._isValid||(t["aria-invalid"]="true",this._validationMessage&&(t["aria-describedby"]="validation-message")),t}}class C extends O{constructor(){super(...arguments),this._searchQuery="",this.handleSearchInput=t=>{this.setSearchQuery(t.detail.value||"")},this.handleSearchClear=()=>{this.clearSearch()},this.handleSearchKeyDown=t=>{if(["ArrowDown","ArrowUp","Enter","Home","End"].includes(t.key)){const e=this.host.keyboardController;e&&e.handleKeyDown(t)}else t.stopPropagation(),"Escape"===t.key&&(this.host.closeDropdown(),this.host.focus())}}get searchQuery(){return this._searchQuery}get hasSearch(){return""!==this._searchQuery.trim()}setSearchQuery(t){this._searchQuery=t,this.host.searchQuery=t,this.host.requestUpdate()}search(t){this.setSearchQuery(t)}clearSearch(){this.setSearchQuery("")}getFilteredOptions(t){if(!this.host.searchable||!this._searchQuery.trim())return t;const e=this._searchQuery.toLowerCase().trim();return t.filter((t=>t.label.toLowerCase().includes(e)||t.value.toLowerCase().includes(e)||t.description&&t.description.toLowerCase().includes(e)))}renderSearchInput(){return this.host.searchable?i`
523
+ <div class="search-container">
524
+ <nr-input
525
+ type="text"
526
+ class="search-input"
527
+ placeholder="${this.host.searchPlaceholder}"
528
+ .value="${this._searchQuery}"
529
+ allowClear
530
+ @nr-input="${this.handleSearchInput}"
531
+ @nr-clear="${this.handleSearchClear}"
532
+ @keydown="${this.handleSearchKeyDown}"
533
+ @click="${t=>t.stopPropagation()}"
534
+ >
535
+ <nr-icon
536
+ name="search"
537
+ class="search-icon"
538
+ slot="prefix"
539
+ aria-hidden="true">
540
+ </nr-icon>
541
+ </nr-input>
542
+ </div>
543
+ `:e}renderNoResults(){return i`
544
+ <div class="no-options" role="option" aria-disabled="true">
545
+ <div class="no-options-content">
546
+ <nr-icon
547
+ name="search"
548
+ class="no-options-icon"
549
+ aria-hidden="true">
550
+ </nr-icon>
551
+ <span class="no-options-text">No results found for "${this._searchQuery}"</span>
552
+ </div>
553
+ </div>
554
+ `}hasNoResults(t){return this.host.searchable&&""!==this._searchQuery.trim()&&0===this.getFilteredOptions(t).length}getCurrentQuery(){return this.host.searchQuery||this._searchQuery}hostUpdated(){super.hostUpdated(),this.host.searchQuery!==this._searchQuery&&(this._searchQuery=this.host.searchQuery)}hostConnected(){super.hostConnected(),this._searchQuery=""}}class A extends O{constructor(){super(...arguments),this.handleTriggerClick=t=>{this.host.disabled||(t.preventDefault(),t.stopPropagation(),this.host.toggleDropdown())},this.handleOptionClick=(t,e)=>{t.stopPropagation(),e.disabled||(this.host.multiple?this.host.toggleOption(e):(this.host.selectOption(e),this.host.closeDropdown()))},this.handleTagRemove=(t,e)=>{t.stopPropagation(),this.host.unselectOption(e)},this.handleClearAll=t=>{t.stopPropagation(),this.host.clearSelection()},this.handleKeyDown=t=>{const e=this.host.keyboardController;e&&e.handleKeyDown(t)},this.handleFocus=()=>{const t=this.host.focusController;t&&t.handleFocus()},this.handleBlur=()=>{const t=this.host.focusController;t&&t.handleBlur()},this.handleWindowClick=t=>{const e=t.target;this.host.contains(e)||this.host.closeDropdown()}}setupEventListeners(){window.addEventListener("click",this.handleWindowClick)}removeEventListeners(){window.removeEventListener("click",this.handleWindowClick)}hostDisconnected(){super.hostDisconnected(),this.removeEventListeners()}}
2
555
  /**
3
556
  * @license
4
557
  * Copyright 2023 Nuraly, Laabidi Aymen
5
558
  * SPDX-License-Identifier: MIT
6
- */var I=function(t,e,i,s){for(var o,r=arguments.length,n=r<3?e:null===s?s=Object.getOwnPropertyDescriptor(e,i):s,a=t.length-1;a>=0;a--)(o=t[a])&&(n=(r<3?o(n):r>3?o(e,i,n):o(e,i))||n);return r>3&&n&&Object.defineProperty(e,i,n),n};let N=class extends(d(s)){constructor(){super(...arguments),this.requiredComponents=["nr-input","nr-icon"],this.options=[],this.placeholder="Select an option",this.disabled=!1,this.type=p.Default,this.multiple=!1,this.show=!1,this.status=v.Default,this.size=y.Medium,this.required=!1,this.name="",this.value="",this.noOptionsMessage="No options available",this.noOptionsIcon="circle-info",this.searchable=!1,this.clearable=!1,this.searchPlaceholder="Search options...",this.searchQuery="",this.useCustomSelectedDisplay=!1,this.maxHeight="",this.block=!1,this.selectionController=new E(this),this.dropdownController=new $(this),this.keyboardController=new z(this,this.selectionController,this.dropdownController),this.focusController=new S(this),this.validationController=new k(this,this.selectionController),this.searchController=new C(this),this.eventController=new A(this),this.handleTriggerClick=t=>{this.eventController.handleTriggerClick(t)},this.handleOptionClick=(t,e)=>{this.eventController.handleOptionClick(t,e)},this.handleTagRemove=(t,e)=>{this.eventController.handleTagRemove(t,e)},this.handleClearAll=t=>{this.eventController.handleClearAll(t)},this.handleKeyDown=t=>{this.eventController.handleKeyDown(t)},this.handleFocus=()=>{this.eventController.handleFocus()},this.handleBlur=()=>{this.eventController.handleBlur()}}connectedCallback(){super.connectedCallback()}disconnectedCallback(){super.disconnectedCallback()}willUpdate(t){super.willUpdate(t),(t.has("options")||t.has("value"))&&this.options.length>0&&this.value&&(Array.isArray(this.value)?this.value.length>0:""!==this.value)&&(this.selectionController._initialized=!1,this.selectionController.initializeFromValue())}firstUpdated(t){super.firstUpdated(t),this.optionsElement&&this.wrapper?this.dropdownController.setElements(this.optionsElement,this.wrapper):setTimeout((()=>{this.optionsElement&&this.wrapper&&this.dropdownController.setElements(this.optionsElement,this.wrapper)}),100),this.value&&(Array.isArray(this.value)?this.value.length>0:""!==this.value)&&this.selectionController.initializeFromValue()}get selectedOptions(){return this.selectionController.getSelectedOptions()}get selectedOption(){return this.selectionController.getSelectedOption()}selectOption(t){this.selectionController.selectOption(t)}unselectOption(t){this.selectionController.unselectOption(t)}toggleOption(t){this.selectionController.toggleOption(t)}clearSelection(){this.selectionController.clearSelection()}isOptionSelected(t){return this.selectionController.isOptionSelected(t)}toggleDropdown(){this.dropdownController.toggle()}openDropdown(){this.dropdownController.open()}closeDropdown(){this.dropdownController.close()}focus(){this.focusController.focus()}blur(){this.focusController.blur()}validate(){return this.validationController.validate()}checkValidity(){return this.validationController.checkValidity()}reportValidity(){return this.validationController.reportValidity()}setCustomValidity(t){this.validationController.setCustomValidity(t)}searchOptions(t){this.searchController.search(t)}clearSearch(){this.searchController.clearSearch()}getSearchFilteredOptions(){return this.searchController.getFilteredOptions(this.options)}getCurrentSearchQuery(){return this.searchController.searchQuery}getSelectedOptions(){return this.selectedOptions}setupGlobalEventListeners(){this.eventController.setupEventListeners()}removeGlobalEventListeners(){this.eventController.removeEventListeners()}getFilteredOptions(){return this.searchController.getFilteredOptions(this.options)}setupEventListeners(){this.eventController.setupEventListeners()}removeEventListeners(){this.eventController.removeEventListeners()}render(){return i`${l(this.type,[[p.Default,()=>this.renderDefault()],[p.Inline,()=>this.renderInline()],[p.Button,()=>this.renderButton()],[p.Slot,()=>this.renderSlot()]])}`}renderDefault(){const t=this.selectedOptions,s=this.validationController.getValidationClasses();return i`<slot name="label"></slot><div class="${c(Object.assign({wrapper:!0},s))}" data-theme="${this.currentTheme}" tabindex="0" role="combobox" aria-expanded="${this.show}" aria-haspopup="listbox" aria-labelledby="select-label" @click="${this.handleTriggerClick}" @keydown="${this.handleKeyDown}" @focus="${this.handleFocus}" @blur="${this.handleBlur}"><div class="select"><div class="select-trigger">${this.renderSelectedContent(t)}</div><div class="icons-container">${this.renderStatusIcon()} ${this.renderClearButton(t)}<nr-icon name="angle-down" size="${this.size}" class="arrow-icon" aria-hidden="true"></nr-icon></div><div class="options" role="listbox" aria-multiselectable="${this.multiple}" style="${this.maxHeight?h({"max-height":this.maxHeight}):e}">${this.searchable?this.renderSearchInput():e} ${this.renderSelectOptions()}</div></div></div>${this.renderValidationMessage()}<slot name="helper-text"></slot>`}renderInline(){return i`<slot name="label"></slot>${this.renderDefault()}<slot name="helper-text"></slot>`}renderButton(){const t=this.selectedOptions;return i`<button class="select-button" ?disabled="${this.disabled}" @click="${this.handleTriggerClick}" @keydown="${this.handleKeyDown}">${t.length>0?t[0].label:this.placeholder}<nr-icon name="angle-down" class="arrow-icon"></nr-icon></button><div class="options" role="listbox" style="${this.maxHeight?h({"max-height":this.maxHeight}):e}">${this.searchable?this.renderSearchInput():e} ${this.renderSelectOptions()}</div>`}renderSlot(){return i`<slot name="trigger" @click="${this.handleTriggerClick}"></slot><div class="options" role="listbox" style="${this.maxHeight?h({"max-height":this.maxHeight}):e}">${this.searchable?this.renderSearchInput():e} ${this.renderSelectOptions()}</div>`}renderSelectedContent(t){return 0===t.length?i`<span class="placeholder" aria-hidden="true">${this.placeholder}</span>`:this.multiple?this.useCustomSelectedDisplay?i`<slot name="selected-display" .selectedOptions="${t}"></slot>`:a(t,(t=>i`<span class="tag"><span class="tag-label">${t.label}</span><nr-icon name="remove" size="${this.size}" class="tag-close" @click="${e=>this.handleTagRemove(e,t)}" aria-label="Remove ${t.label}"></nr-icon></span>`)):i`${t[0].label}`}renderStatusIcon(){switch(this.status){case v.Warning:return i`<nr-icon name="warning" size="${this.size}" class="status-icon warning"></nr-icon>`;case v.Error:return i`<nr-icon name="exclamation-circle" size="${this.size}" class="status-icon error"></nr-icon>`;case v.Success:return i`<nr-icon name="check-circle" size="${this.size}" class="status-icon success"></nr-icon>`;default:return e}}renderClearButton(t){return!this.clearable||0===t.length||this.disabled?e:i`<nr-icon name="remove" size="${this.size}" class="clear-icon" @click="${this.handleClearAll}" aria-label="Clear selection" tabindex="-1"></nr-icon>`}renderSelectOptions(){const t=this.getFilteredOptions();if(!this.options||0===this.options.length)return i`<div class="no-options" role="option" aria-disabled="true"><div class="no-options-content"><nr-icon name="${this.noOptionsIcon}" class="no-options-icon" aria-hidden="true"></nr-icon><span class="no-options-text">${this.noOptionsMessage}</span></div></div>`;if(this.searchController.hasNoResults(this.options))return this.searchController.renderNoResults();const s=this.keyboardController.focusedOption;return a(t,(t=>{const o=this.isOptionSelected(t),r=s&&s.value===t.value;return i`<div class="${c({option:!0,selected:o,focused:r,disabled:Boolean(t.disabled)})}" role="option" aria-selected="${o}" aria-disabled="${Boolean(t.disabled)}" data-value="${t.value}" @click="${e=>this.handleOptionClick(e,t)}" style="${h(t.style?{style:t.style}:{})}" title="${t.title||""}"><div class="option-content">${t.icon?i`<nr-icon name="${t.icon}" size="${this.size}" class="option-icon"></nr-icon>`:e}<div class="option-text">${t.htmlContent?i`<div .innerHTML="${t.htmlContent}"></div>`:t.label} ${t.description?i`<div class="option-description">${t.description}</div>`:e}</div></div>${o?i`<nr-icon name="check" size="${this.size}" class="check-icon" aria-hidden="true"></nr-icon>`:e} ${t.state&&t.message?i`<div class="option-message ${t.state}"><nr-icon name="${"error"===t.state?"exclamation-circle":"warning"}" size="${this.size}"></nr-icon><span>${t.message}</span></div>`:e}</div>`}))}renderSearchInput(){return this.searchController.renderSearchInput()}renderValidationMessage(){const t=this.validationController.validationMessage;return t?i`<div class="validation-message ${this.status}" id="validation-message">${t}</div>`:e}};N.styles=u,I([o({type:Array})],N.prototype,"options",void 0),I([o({type:String})],N.prototype,"placeholder",void 0),I([o({type:Boolean,reflect:!0})],N.prototype,"disabled",void 0),I([o({type:String,reflect:!0})],N.prototype,"type",void 0),I([o({type:Boolean,attribute:"multiple"})],N.prototype,"multiple",void 0),I([o({type:Boolean,reflect:!0})],N.prototype,"show",void 0),I([o({type:String,reflect:!0})],N.prototype,"status",void 0),I([o({type:String,reflect:!0})],N.prototype,"size",void 0),I([o({type:Boolean,reflect:!0})],N.prototype,"required",void 0),I([o({type:String})],N.prototype,"name",void 0),I([o()],N.prototype,"value",void 0),I([o({type:String,attribute:"no-options-message"})],N.prototype,"noOptionsMessage",void 0),I([o({type:String,attribute:"no-options-icon"})],N.prototype,"noOptionsIcon",void 0),I([o({type:Boolean,reflect:!0})],N.prototype,"searchable",void 0),I([o({type:Boolean,reflect:!0})],N.prototype,"clearable",void 0),I([o({type:String,attribute:"search-placeholder"})],N.prototype,"searchPlaceholder",void 0),I([o({type:String})],N.prototype,"searchQuery",void 0),I([o({type:Boolean,attribute:"use-custom-selected-display"})],N.prototype,"useCustomSelectedDisplay",void 0),I([o({type:String,attribute:"max-height"})],N.prototype,"maxHeight",void 0),I([o({type:Boolean,reflect:!0})],N.prototype,"block",void 0),I([r(".options")],N.prototype,"optionsElement",void 0),I([r(".wrapper")],N.prototype,"wrapper",void 0),I([r(".search-input")],N.prototype,"searchInput",void 0),N=I([n("nr-select")],N);
559
+ */var I=function(t,e,i,s){for(var o,r=arguments.length,n=r<3?e:null===s?s=Object.getOwnPropertyDescriptor(e,i):s,a=t.length-1;a>=0;a--)(o=t[a])&&(n=(r<3?o(n):r>3?o(e,i,n):o(e,i))||n);return r>3&&n&&Object.defineProperty(e,i,n),n};let D=class extends(d(s)){constructor(){super(...arguments),this.requiredComponents=["nr-input","nr-icon"],this.options=[],this.placeholder="Select an option",this.disabled=!1,this.type=p.Default,this.multiple=!1,this.show=!1,this.status=v.Default,this.size=y.Medium,this.required=!1,this.name="",this.value="",this.noOptionsMessage="No options available",this.noOptionsIcon="circle-info",this.searchable=!1,this.clearable=!1,this.searchPlaceholder="Search options...",this.searchQuery="",this.useCustomSelectedDisplay=!1,this.maxHeight="",this.block=!1,this.selectionController=new E(this),this.dropdownController=new S(this),this.keyboardController=new z(this,this.selectionController,this.dropdownController),this.focusController=new $(this),this.validationController=new k(this,this.selectionController),this.searchController=new C(this),this.eventController=new A(this),this.handleTriggerClick=t=>{this.eventController.handleTriggerClick(t)},this.handleOptionClick=(t,e)=>{this.eventController.handleOptionClick(t,e)},this.handleTagRemove=(t,e)=>{this.eventController.handleTagRemove(t,e)},this.handleClearAll=t=>{this.eventController.handleClearAll(t)},this.handleKeyDown=t=>{this.eventController.handleKeyDown(t)},this.handleFocus=()=>{this.eventController.handleFocus()},this.handleBlur=()=>{this.eventController.handleBlur()}}connectedCallback(){super.connectedCallback()}disconnectedCallback(){super.disconnectedCallback()}willUpdate(t){super.willUpdate(t),(t.has("options")||t.has("value"))&&this.options.length>0&&this.value&&(Array.isArray(this.value)?this.value.length>0:""!==this.value)&&(this.selectionController._initialized=!1,this.selectionController.initializeFromValue())}firstUpdated(t){super.firstUpdated(t),this.optionsElement&&this.wrapper?this.dropdownController.setElements(this.optionsElement,this.wrapper):setTimeout((()=>{this.optionsElement&&this.wrapper&&this.dropdownController.setElements(this.optionsElement,this.wrapper)}),100),this.value&&(Array.isArray(this.value)?this.value.length>0:""!==this.value)&&this.selectionController.initializeFromValue()}get selectedOptions(){return this.selectionController.getSelectedOptions()}get selectedOption(){return this.selectionController.getSelectedOption()}selectOption(t){this.selectionController.selectOption(t)}unselectOption(t){this.selectionController.unselectOption(t)}toggleOption(t){this.selectionController.toggleOption(t)}clearSelection(){this.selectionController.clearSelection()}isOptionSelected(t){return this.selectionController.isOptionSelected(t)}toggleDropdown(){this.dropdownController.toggle()}openDropdown(){this.dropdownController.open()}closeDropdown(){this.dropdownController.close()}focus(){this.focusController.focus()}blur(){this.focusController.blur()}validate(){return this.validationController.validate()}checkValidity(){return this.validationController.checkValidity()}reportValidity(){return this.validationController.reportValidity()}setCustomValidity(t){this.validationController.setCustomValidity(t)}searchOptions(t){this.searchController.search(t)}clearSearch(){this.searchController.clearSearch()}getSearchFilteredOptions(){return this.searchController.getFilteredOptions(this.options)}getCurrentSearchQuery(){return this.searchController.searchQuery}getSelectedOptions(){return this.selectedOptions}setupGlobalEventListeners(){this.eventController.setupEventListeners()}removeGlobalEventListeners(){this.eventController.removeEventListeners()}getFilteredOptions(){return this.searchController.getFilteredOptions(this.options)}setupEventListeners(){this.eventController.setupEventListeners()}removeEventListeners(){this.eventController.removeEventListeners()}render(){return i`${l(this.type,[[p.Default,()=>this.renderDefault()],[p.Inline,()=>this.renderInline()],[p.Button,()=>this.renderButton()],[p.Slot,()=>this.renderSlot()]])}`}renderDefault(){const t=this.selectedOptions,s=this.validationController.getValidationClasses();return i`
560
+ <slot name="label"></slot>
561
+ <div
562
+ class="${c(Object.assign({wrapper:!0},s))}"
563
+ data-theme="${this.currentTheme}"
564
+ tabindex="0"
565
+ role="combobox"
566
+ aria-expanded="${this.show}"
567
+ aria-haspopup="listbox"
568
+ aria-labelledby="select-label"
569
+
570
+ @click=${this.handleTriggerClick}
571
+ @keydown=${this.handleKeyDown}
572
+ @focus=${this.handleFocus}
573
+ @blur=${this.handleBlur}
574
+ >
575
+ <div class="select">
576
+ <div class="select-trigger">
577
+ ${this.renderSelectedContent(t)}
578
+ </div>
579
+
580
+ <div class="icons-container">
581
+ ${this.renderStatusIcon()}
582
+ ${this.renderClearButton(t)}
583
+ <nr-icon
584
+ name="angle-down"
585
+ size="${this.size}"
586
+ class="arrow-icon"
587
+ aria-hidden="true"
588
+ ></nr-icon>
589
+ </div>
590
+
591
+ <div
592
+ class="options"
593
+ role="listbox"
594
+ aria-multiselectable="${this.multiple}"
595
+ style=${this.maxHeight?h({"max-height":this.maxHeight}):e}
596
+ >
597
+ ${this.searchable?this.renderSearchInput():e}
598
+ ${this.renderSelectOptions()}
599
+ </div>
600
+ </div>
601
+ </div>
602
+
603
+ ${this.renderValidationMessage()}
604
+ <slot name="helper-text"></slot>
605
+ `}renderInline(){return i`
606
+ <slot name="label"></slot>
607
+ ${this.renderDefault()}
608
+ <slot name="helper-text"></slot>
609
+ `}renderButton(){const t=this.selectedOptions;return i`
610
+ <button
611
+ class="select-button"
612
+ ?disabled=${this.disabled}
613
+ @click=${this.handleTriggerClick}
614
+ @keydown=${this.handleKeyDown}
615
+ >
616
+ ${t.length>0?t[0].label:this.placeholder}
617
+ <nr-icon name="angle-down" class="arrow-icon"></nr-icon>
618
+ </button>
619
+
620
+ <div
621
+ class="options"
622
+ role="listbox"
623
+ style=${this.maxHeight?h({"max-height":this.maxHeight}):e}
624
+ >
625
+ ${this.searchable?this.renderSearchInput():e}
626
+ ${this.renderSelectOptions()}
627
+ </div>
628
+ `}renderSlot(){return i`
629
+ <slot name="trigger" @click=${this.handleTriggerClick}></slot>
630
+ <div
631
+ class="options"
632
+ role="listbox"
633
+ style=${this.maxHeight?h({"max-height":this.maxHeight}):e}
634
+ >
635
+ ${this.searchable?this.renderSearchInput():e}
636
+ ${this.renderSelectOptions()}
637
+ </div>
638
+ `}renderSelectedContent(t){return 0===t.length?i`<span class="placeholder" aria-hidden="true">${this.placeholder}</span>`:this.multiple?this.useCustomSelectedDisplay?i`<slot name="selected-display" .selectedOptions=${t}></slot>`:a(t,(t=>i`
639
+ <span class="tag">
640
+ <span class="tag-label">${t.label}</span>
641
+ <nr-icon
642
+ name="remove"
643
+ size="${this.size}"
644
+ class="tag-close"
645
+ @click=${e=>this.handleTagRemove(e,t)}
646
+ aria-label="Remove ${t.label}"
647
+ ></nr-icon>
648
+ </span>
649
+ `)):i`${t[0].label}`}renderStatusIcon(){switch(this.status){case v.Warning:return i`<nr-icon name="warning" size="${this.size}" class="status-icon warning"></nr-icon>`;case v.Error:return i`<nr-icon name="exclamation-circle" size="${this.size}" class="status-icon error"></nr-icon>`;case v.Success:return i`<nr-icon name="check-circle" size="${this.size}" class="status-icon success"></nr-icon>`;default:return e}}renderClearButton(t){return!this.clearable||0===t.length||this.disabled?e:i`
650
+ <nr-icon
651
+ name="remove"
652
+ size="${this.size}"
653
+ class="clear-icon"
654
+ @click=${this.handleClearAll}
655
+ aria-label="Clear selection"
656
+ tabindex="-1"
657
+ ></nr-icon>
658
+ `}renderSelectOptions(){const t=this.getFilteredOptions();if(!this.options||0===this.options.length)return i`
659
+ <div class="no-options" role="option" aria-disabled="true">
660
+ <div class="no-options-content">
661
+ <nr-icon
662
+ name="${this.noOptionsIcon}"
663
+ class="no-options-icon"
664
+ aria-hidden="true">
665
+ </nr-icon>
666
+ <span class="no-options-text">${this.noOptionsMessage}</span>
667
+ </div>
668
+ </div>
669
+ `;if(this.searchController.hasNoResults(this.options))return this.searchController.renderNoResults();const s=this.keyboardController.focusedOption;return a(t,(t=>{const o=this.isOptionSelected(t),r=s&&s.value===t.value;return i`
670
+ <div
671
+ class="${c({option:!0,selected:o,focused:r,disabled:Boolean(t.disabled)})}"
672
+ role="option"
673
+ aria-selected="${o}"
674
+ aria-disabled="${Boolean(t.disabled)}"
675
+ data-value="${t.value}"
676
+ @click=${e=>this.handleOptionClick(e,t)}
677
+ style=${h(t.style?{style:t.style}:{})}
678
+ title="${t.title||""}"
679
+ >
680
+ <div class="option-content">
681
+ ${t.icon?i`<nr-icon name="${t.icon}" size="${this.size}" class="option-icon"></nr-icon>`:e}
682
+ <div class="option-text">
683
+ ${t.htmlContent?i`<div .innerHTML=${t.htmlContent}></div>`:t.label}
684
+ ${t.description?i`<div class="option-description">${t.description}</div>`:e}
685
+ </div>
686
+ </div>
687
+
688
+ ${o?i`<nr-icon name="check" size="${this.size}" class="check-icon" aria-hidden="true"></nr-icon>`:e}
689
+
690
+ ${t.state&&t.message?i`
691
+ <div class="option-message ${t.state}">
692
+ <nr-icon name="${"error"===t.state?"exclamation-circle":"warning"}" size="${this.size}"></nr-icon>
693
+ <span>${t.message}</span>
694
+ </div>
695
+ `:e}
696
+ </div>
697
+ `}))}renderSearchInput(){return this.searchController.renderSearchInput()}renderValidationMessage(){const t=this.validationController.validationMessage;return t?i`
698
+ <div class="validation-message ${this.status}" id="validation-message">
699
+ ${t}
700
+ </div>
701
+ `:e}};D.styles=u,I([o({type:Array})],D.prototype,"options",void 0),I([o({type:String})],D.prototype,"placeholder",void 0),I([o({type:Boolean,reflect:!0})],D.prototype,"disabled",void 0),I([o({type:String,reflect:!0})],D.prototype,"type",void 0),I([o({type:Boolean,attribute:"multiple"})],D.prototype,"multiple",void 0),I([o({type:Boolean,reflect:!0})],D.prototype,"show",void 0),I([o({type:String,reflect:!0})],D.prototype,"status",void 0),I([o({type:String,reflect:!0})],D.prototype,"size",void 0),I([o({type:Boolean,reflect:!0})],D.prototype,"required",void 0),I([o({type:String})],D.prototype,"name",void 0),I([o()],D.prototype,"value",void 0),I([o({type:String,attribute:"no-options-message"})],D.prototype,"noOptionsMessage",void 0),I([o({type:String,attribute:"no-options-icon"})],D.prototype,"noOptionsIcon",void 0),I([o({type:Boolean,reflect:!0})],D.prototype,"searchable",void 0),I([o({type:Boolean,reflect:!0})],D.prototype,"clearable",void 0),I([o({type:String,attribute:"search-placeholder"})],D.prototype,"searchPlaceholder",void 0),I([o({type:String})],D.prototype,"searchQuery",void 0),I([o({type:Boolean,attribute:"use-custom-selected-display"})],D.prototype,"useCustomSelectedDisplay",void 0),I([o({type:String,attribute:"max-height"})],D.prototype,"maxHeight",void 0),I([o({type:Boolean,reflect:!0})],D.prototype,"block",void 0),I([r(".options")],D.prototype,"optionsElement",void 0),I([r(".wrapper")],D.prototype,"wrapper",void 0),I([r(".search-input")],D.prototype,"searchInput",void 0),D=I([n("nr-select")],D);
7
702
  /**
8
703
  * @license
9
704
  * Copyright 2023 Nuraly, Laabidi Aymen
10
705
  * SPDX-License-Identifier: MIT
11
706
  */
12
- const D={CHANGE:"nr-change",FOCUS:"nr-focus",BLUR:"nr-blur",DROPDOWN_OPEN:"nr-dropdown-open",DROPDOWN_CLOSE:"nr-dropdown-close",VALIDATION:"nr-validation",ERROR:"nr-select-error"},T={WRAPPER:"wrapper",SELECT:"select",TRIGGER:"select-trigger",OPTIONS:"options",OPTION:"option",SELECTED:"selected",FOCUSED:"focused",DISABLED:"disabled",TAG:"tag",TAG_LABEL:"tag-label",TAG_CLOSE:"tag-close",ICONS_CONTAINER:"icons-container",ARROW_ICON:"arrow-icon",CLEAR_ICON:"clear-icon",STATUS_ICON:"status-icon",CHECK_ICON:"check-icon",VALIDATION_MESSAGE:"validation-message",PLACEHOLDER:"placeholder",NO_OPTIONS:"no-options",NO_OPTIONS_CONTENT:"no-options-content",NO_OPTIONS_ICON:"no-options-icon",NO_OPTIONS_TEXT:"no-options-text",SEARCH_CONTAINER:"search-container",SEARCH_INPUT:"search-input",SEARCH_ICON:"search-icon",SEARCH_CLEAR:"search-clear"},R={COMBOBOX:"combobox",LISTBOX:"listbox",OPTION:"option",EXPANDED:"aria-expanded",HASPOPUP:"aria-haspopup",MULTISELECTABLE:"aria-multiselectable",SELECTED:"aria-selected",DISABLED:"aria-disabled",REQUIRED:"aria-required",INVALID:"aria-invalid",DESCRIBEDBY:"aria-describedby",LABELLEDBY:"aria-labelledby"},L={PLACEHOLDER:"Select an option",MAX_HEIGHT:"200px",DROPDOWN_OFFSET:4,TAG_MAX_WIDTH:"150px",TRANSITION_DURATION:200,DEBOUNCE_DELAY:300},P={ENTER:"Enter",SPACE:" ",ESCAPE:"Escape",ARROW_DOWN:"ArrowDown",ARROW_UP:"ArrowUp",HOME:"Home",END:"End",TAB:"Tab"},B="",F=", ";export{O as BaseSelectController,b as DropdownPlacement,B as EMPTY_STRING,N as HySelectComponent,F as MULTIPLE_OPTIONS_SEPARATOR,g as OptionSize,R as SELECT_ARIA,T as SELECT_CLASSES,L as SELECT_DEFAULTS,D as SELECT_EVENTS,P as SELECT_KEYS,w as SearchMode,m as SelectDirection,$ as SelectDropdownController,A as SelectEventController,S as SelectFocusController,z as SelectKeyboardController,C as SelectSearchController,E as SelectSelectionController,y as SelectSize,v as SelectStatus,p as SelectType,k as SelectValidationController,f as SelectVariant};
707
+ const N={CHANGE:"nr-change",FOCUS:"nr-focus",BLUR:"nr-blur",DROPDOWN_OPEN:"nr-dropdown-open",DROPDOWN_CLOSE:"nr-dropdown-close",VALIDATION:"nr-validation",ERROR:"nr-select-error"},T={WRAPPER:"wrapper",SELECT:"select",TRIGGER:"select-trigger",OPTIONS:"options",OPTION:"option",SELECTED:"selected",FOCUSED:"focused",DISABLED:"disabled",TAG:"tag",TAG_LABEL:"tag-label",TAG_CLOSE:"tag-close",ICONS_CONTAINER:"icons-container",ARROW_ICON:"arrow-icon",CLEAR_ICON:"clear-icon",STATUS_ICON:"status-icon",CHECK_ICON:"check-icon",VALIDATION_MESSAGE:"validation-message",PLACEHOLDER:"placeholder",NO_OPTIONS:"no-options",NO_OPTIONS_CONTENT:"no-options-content",NO_OPTIONS_ICON:"no-options-icon",NO_OPTIONS_TEXT:"no-options-text",SEARCH_CONTAINER:"search-container",SEARCH_INPUT:"search-input",SEARCH_ICON:"search-icon",SEARCH_CLEAR:"search-clear"},R={COMBOBOX:"combobox",LISTBOX:"listbox",OPTION:"option",EXPANDED:"aria-expanded",HASPOPUP:"aria-haspopup",MULTISELECTABLE:"aria-multiselectable",SELECTED:"aria-selected",DISABLED:"aria-disabled",REQUIRED:"aria-required",INVALID:"aria-invalid",DESCRIBEDBY:"aria-describedby",LABELLEDBY:"aria-labelledby"},L={PLACEHOLDER:"Select an option",MAX_HEIGHT:"200px",DROPDOWN_OFFSET:4,TAG_MAX_WIDTH:"150px",TRANSITION_DURATION:200,DEBOUNCE_DELAY:300},P={ENTER:"Enter",SPACE:" ",ESCAPE:"Escape",ARROW_DOWN:"ArrowDown",ARROW_UP:"ArrowUp",HOME:"Home",END:"End",TAB:"Tab"},F="",B=", ";export{O as BaseSelectController,b as DropdownPlacement,F as EMPTY_STRING,D as HySelectComponent,B as MULTIPLE_OPTIONS_SEPARATOR,g as OptionSize,R as SELECT_ARIA,T as SELECT_CLASSES,L as SELECT_DEFAULTS,N as SELECT_EVENTS,P as SELECT_KEYS,w as SearchMode,m as SelectDirection,S as SelectDropdownController,A as SelectEventController,$ as SelectFocusController,z as SelectKeyboardController,C as SelectSearchController,E as SelectSelectionController,y as SelectSize,v as SelectStatus,p as SelectType,k as SelectValidationController,f as SelectVariant};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuralyui/select",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "A comprehensive select component with advanced features including multi-selection, keyboard navigation, validation, and accessibility support.",
5
5
  "main": "index.js",
6
6
  "type": "module",