@paperless/core 1.28.3 → 1.29.0
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 +19 -0
- package/dist/build/{p-682db916.entry.js → p-fffaacc2.entry.js} +2 -2
- package/dist/build/{p-682db916.entry.js.map → 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/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/components/p-navigation-item.js +1 -1
- package/dist/components/p-navigation-item.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/index.html +1 -1
- package/dist/paperless/{p-682db916.entry.js → p-fffaacc2.entry.js} +2 -2
- package/dist/paperless/{p-682db916.entry.js.map → 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 +1 -1
- 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 {
|