@aquera/nile-elements 0.1.63-beta-1.0 → 0.1.63-beta-1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/index.js +7 -2
- package/dist/nile-auto-complete/nile-auto-complete.cjs.js +1 -1
- package/dist/nile-auto-complete/nile-auto-complete.cjs.js.map +1 -1
- package/dist/nile-auto-complete/nile-auto-complete.esm.js +2 -1
- package/dist/nile-chip/nile-chip.cjs.js +1 -1
- package/dist/nile-chip/nile-chip.cjs.js.map +1 -1
- package/dist/nile-chip/nile-chip.css.cjs.js +1 -1
- package/dist/nile-chip/nile-chip.css.cjs.js.map +1 -1
- package/dist/nile-chip/nile-chip.css.esm.js +4 -0
- package/dist/nile-chip/nile-chip.esm.js +1 -1
- package/dist/src/nile-auto-complete/nile-auto-complete.js +2 -1
- package/dist/src/nile-auto-complete/nile-auto-complete.js.map +1 -1
- package/dist/src/nile-chip/nile-chip.css.js +4 -0
- package/dist/src/nile-chip/nile-chip.css.js.map +1 -1
- package/dist/src/nile-chip/nile-chip.js +1 -1
- package/dist/src/nile-chip/nile-chip.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-auto-complete/nile-auto-complete.ts +3 -2
- package/src/nile-chip/nile-chip.css.ts +4 -0
- package/src/nile-chip/nile-chip.ts +1 -1
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"description": "Webcomponent nile-elements following open-wc recommendations",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "nile-elements",
|
6
|
-
"version": "0.1.63-beta-1.
|
6
|
+
"version": "0.1.63-beta-1.1",
|
7
7
|
"main": "dist/src/index.js",
|
8
8
|
"type": "module",
|
9
9
|
"module": "dist/src/index.js",
|
@@ -71,7 +71,7 @@ export class NileAutoComplete extends NileElement {
|
|
71
71
|
public render(): TemplateResult {
|
72
72
|
const content=this.enableVirtualScroll?this.getVirtualizedContent():this.getContent();
|
73
73
|
return html`
|
74
|
-
<nile-dropdown class="nile-dropdown--input" ?open=${this.isDropdownOpen} noOpenOnCLick>
|
74
|
+
<nile-dropdown class="nile-dropdown--input" ?open=${this.isDropdownOpen} noOpenOnCLick exportparts="input">
|
75
75
|
<nile-input class="nile-auto-complete--input"
|
76
76
|
?no-border=${this.noBorder}
|
77
77
|
?no-outline=${this.noOutline}
|
@@ -83,6 +83,7 @@ export class NileAutoComplete extends NileElement {
|
|
83
83
|
@click=${this.handleClick}
|
84
84
|
slot="trigger"
|
85
85
|
placeholder=${this.placeholder}
|
86
|
+
exportparts="input"
|
86
87
|
>
|
87
88
|
${this.loading?html`<nile-icon slot="suffix" color="var(--nile-colors-primary-600)" name="button-loading-blue-animated"></nile-icon>`:nothing}
|
88
89
|
</nile-input>
|
@@ -182,4 +183,4 @@ declare global {
|
|
182
183
|
interface HTMLElementTagNameMap {
|
183
184
|
'nile-auto-complete': NileAutoComplete;
|
184
185
|
}
|
185
|
-
}
|
186
|
+
}
|
@@ -214,7 +214,7 @@ export class NileChip extends NileElement {
|
|
214
214
|
.noPadding=${true}
|
215
215
|
.disabled=${this.disabled}
|
216
216
|
openOnFocus
|
217
|
-
exportparts="options__wrapper"
|
217
|
+
exportparts="options__wrapper, input"
|
218
218
|
.placeholder=${this.placeholder}
|
219
219
|
@nile-input=${this.handleInputChange}
|
220
220
|
@keydown=${this.handleInputKeydown}
|