@paperless/core 1.28.2 → 1.28.4
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/CHANGELOG.md +22 -0
- package/dist/build/{p-008f1920.entry.js → p-b4cc7289.entry.js} +2 -2
- package/dist/{paperless/p-008f1920.entry.js.map → build/p-b4cc7289.entry.js.map} +1 -1
- package/dist/{paperless/p-682db916.entry.js → build/p-fffaacc2.entry.js} +2 -2
- package/dist/{paperless/p-682db916.entry.js.map → build/p-fffaacc2.entry.js.map} +1 -1
- package/dist/build/paperless.esm.js +1 -1
- package/dist/cjs/p-navigation-item.cjs.entry.js +1 -1
- package/dist/cjs/p-navigation-item.cjs.entry.js.map +1 -1
- package/dist/cjs/p-select.cjs.entry.js +1 -1
- package/dist/cjs/p-select.cjs.entry.js.map +1 -1
- package/dist/collection/components/molecules/navigation-item/navigation-item.component.js +1 -1
- package/dist/collection/components/molecules/navigation-item/navigation-item.component.js.map +1 -1
- package/dist/collection/components/molecules/select/select.component.js +1 -1
- package/dist/collection/components/molecules/select/select.component.js.map +1 -1
- package/dist/components/p-navigation-item.js +1 -1
- package/dist/components/p-navigation-item.js.map +1 -1
- package/dist/components/p-select.js +1 -1
- package/dist/components/p-select.js.map +1 -1
- package/dist/esm/p-navigation-item.entry.js +1 -1
- package/dist/esm/p-navigation-item.entry.js.map +1 -1
- package/dist/esm/p-select.entry.js +1 -1
- package/dist/esm/p-select.entry.js.map +1 -1
- package/dist/index.html +1 -1
- package/dist/paperless/{p-008f1920.entry.js → p-b4cc7289.entry.js} +2 -2
- package/dist/{build/p-008f1920.entry.js.map → paperless/p-b4cc7289.entry.js.map} +1 -1
- package/dist/{build/p-682db916.entry.js → paperless/p-fffaacc2.entry.js} +2 -2
- package/dist/{build/p-682db916.entry.js.map → paperless/p-fffaacc2.entry.js.map} +1 -1
- package/dist/paperless/paperless.esm.js +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/hydrate/index.js +2 -2
- package/package.json +1 -1
package/hydrate/index.js
CHANGED
|
@@ -20477,7 +20477,7 @@ class NavigationItem {
|
|
|
20477
20477
|
this.target = undefined;
|
|
20478
20478
|
}
|
|
20479
20479
|
render() {
|
|
20480
|
-
return (hAsync(Host, { class: `p-navigation-item ${this.active && 'active'}` }, hAsync("a", { href: this.href, target: this.target }, this.icon && hAsync("p-icon", { variant: this.icon }), hAsync("span", { class: this.counter && 'has-counter' }, hAsync("slot", null)), this.counter && (hAsync("p-counter", { variant: "negative" }, this.counter)))));
|
|
20480
|
+
return (hAsync(Host, { class: `p-navigation-item ${this.active && 'active'}` }, hAsync("a", { href: this.href, target: this.target }, this.icon && hAsync("p-icon", { variant: this.icon }), hAsync("span", { class: this.counter && 'has-counter' }, hAsync("slot", null)), !!this.counter && this.counter !== '0' && (hAsync("p-counter", { variant: "negative" }, this.counter)))));
|
|
20481
20481
|
}
|
|
20482
20482
|
static get style() { return navigationItemComponentCss; }
|
|
20483
20483
|
static get cmpMeta() { return {
|
|
@@ -21128,7 +21128,7 @@ class Select {
|
|
|
21128
21128
|
this._showDropdown = !this._showDropdown;
|
|
21129
21129
|
}
|
|
21130
21130
|
_onBlur(force = false) {
|
|
21131
|
-
if (
|
|
21131
|
+
if (this.enableAutocomplete && !force) {
|
|
21132
21132
|
return;
|
|
21133
21133
|
}
|
|
21134
21134
|
this._showDropdown = false;
|