Compare commits

...

4 Commits

Author SHA1 Message Date
pk
693314fc1e Add popup part. Rename #list to #popup.
Add css var for styling popup background.
2025-01-05 23:38:18 +01:00
pk
4d7e5e6364 Add custom properties for easier color styling. 2024-08-16 14:22:10 +02:00
pk
6ab1920ce3 Make sure call on shouldUpdate works for mixins and use value instead of id. 2024-08-16 14:04:30 +02:00
pk
33214cb38b Add missing 'invalid' property. 2023-02-23 22:38:58 +01:00
2 changed files with 19 additions and 16 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@tp/tp-dropdown",
"version": "1.3.1",
"version": "1.5.0",
"description": "",
"main": "tp-dropdown.js",
"scripts": {

View File

@ -117,7 +117,7 @@ class TpDropdown extends BaseElement {
opacity: 1;
}
#list {
#popup {
pointer-events: none;
transition: opacity 0ms;
opacity: 0;
@ -126,12 +126,12 @@ class TpDropdown extends BaseElement {
height: auto;
}
#list[open] {
#popup[open] {
pointer-events: all;
transition: opacity 180ms;
opacity: 1;
border-radius: 2px;
background: #FAFAFA;
background: var(--tp-dropdown-popup-bg, #FAFAFA);
height: auto;
box-shadow: var(--shadow-2dp);
}
@ -148,17 +148,19 @@ class TpDropdown extends BaseElement {
}
div[role="option"]:hover {
background: #E0F7FA;
background: var(--tp-dropdown-hovered-item-bg, #E0F7FA);
color: var(--tp-dropdown-hovered-item-color, inherit);
}
div[role="option"]:focus {
background: #EEEEEE;
background: var(--tp-dropdown-focused-item-bg, #EEEEEE);
color: var(--tp-dropdown-focused-item-color, inherit);
outline: none;
}
div[role="option"][selected] {
background: #4FC3F7;
color: #FFFFFF;
background: var(--tp-dropdown-selected-item-bg, #4FC3F7);
color: var(--tp-dropdown-selected-item-color, #FFFFFF);
}
div[role="option"]:first-of-type {
@ -200,7 +202,7 @@ class TpDropdown extends BaseElement {
@media all and (min-width: 0) and (max-width: 480px) {
:host(:not([not-responsive])) #list {
:host(:not([not-responsive])) #popup {
top: 40px !important;
bottom: 40px !important;
left: 40px !important;
@ -247,7 +249,7 @@ class TpDropdown extends BaseElement {
<tp-icon id="toggleIcon" ?open="${isOpen}" .icon=${TpDropdown.selectorIcon}></tp-icon>
</div>
</div>
<div id="list" ?open="${isOpen}">
<div id="popup" ?open="${isOpen}" part="popup">
${filterable ? html`
<tp-input part="filter" exportparts="wrap:filterWrap" id="filter" .value=${this._filterTerm || ''} @input=${e => this._filterTerm = e.target.value} .inert=${!isOpen} ?hidden=${!(filterable || extensible)}>
<input type="text" placeholder=${filterPlaceholder}>
@ -283,6 +285,7 @@ class TpDropdown extends BaseElement {
autoExtend: { type: Boolean, },
focused: { type: Boolean, reflect: true, },
readonly: { type: Boolean, reflect: true },
invalid: { type: Boolean, reflect: true },
/*
* Stores the first known value of the `value` property that is not falsy.
* If `items` changes and no longer holds the originally selected item,
@ -352,7 +355,7 @@ class TpDropdown extends BaseElement {
this.dispatchEvent(new CustomEvent('is-open-changed', { detail: this.isOpen, bubbles: true, composed: true }));
}
return true;
return super.shouldUpdate(changes);
}
updated(changes) {
@ -558,8 +561,8 @@ class TpDropdown extends BaseElement {
var spaceBottom = winHeight - rect.top - rect.height - filterHeight;
this.$.itemList.style.maxHeight = (spaceBottom - 20) + 'px';
this.$.list.style.maxWidth = rect.width + 'px';
this.$.list.style.minWidth = rect.width + 'px';
this.$.popup.style.maxWidth = rect.width + 'px';
this.$.popup.style.minWidth = rect.width + 'px';
var useTopLayout = spaceBottom < 150;
@ -567,7 +570,7 @@ class TpDropdown extends BaseElement {
this.$.itemList.style.maxHeight = (rect.top - 20) + 'px';
}
this._posFixed(this, this.$.list, {
this._posFixed(this, this.$.popup, {
spacing: 0,
valign: useTopLayout ? 'top' : 'bottom',
halign: 'left'
@ -577,7 +580,7 @@ class TpDropdown extends BaseElement {
setTimeout(() => {
var lastItem = this.$.itemList.querySelector('div[role="option"]:last-of-type');
if (lastItem) {
this.$.list.style.maxHeight = lastItem.getBoundingClientRect().top + 'px';
this.$.popup.style.maxHeight = lastItem.getBoundingClientRect().top + 'px';
}
});
}
@ -801,7 +804,7 @@ class TpDropdown extends BaseElement {
if (Array.isArray(this.items)) {
for (var i = 0, li = this.items.length; i < li; ++i) {
if (String(this.items[i].label).toLowerCase() === String(label)) {
this.value = this.items[i].id;
this.value = this.items[i].value;
return true;
}
}