@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.
Files changed (32) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/build/{p-008f1920.entry.js → p-b4cc7289.entry.js} +2 -2
  3. package/dist/{paperless/p-008f1920.entry.js.map → build/p-b4cc7289.entry.js.map} +1 -1
  4. package/dist/{paperless/p-682db916.entry.js → build/p-fffaacc2.entry.js} +2 -2
  5. package/dist/{paperless/p-682db916.entry.js.map → build/p-fffaacc2.entry.js.map} +1 -1
  6. package/dist/build/paperless.esm.js +1 -1
  7. package/dist/cjs/p-navigation-item.cjs.entry.js +1 -1
  8. package/dist/cjs/p-navigation-item.cjs.entry.js.map +1 -1
  9. package/dist/cjs/p-select.cjs.entry.js +1 -1
  10. package/dist/cjs/p-select.cjs.entry.js.map +1 -1
  11. package/dist/collection/components/molecules/navigation-item/navigation-item.component.js +1 -1
  12. package/dist/collection/components/molecules/navigation-item/navigation-item.component.js.map +1 -1
  13. package/dist/collection/components/molecules/select/select.component.js +1 -1
  14. package/dist/collection/components/molecules/select/select.component.js.map +1 -1
  15. package/dist/components/p-navigation-item.js +1 -1
  16. package/dist/components/p-navigation-item.js.map +1 -1
  17. package/dist/components/p-select.js +1 -1
  18. package/dist/components/p-select.js.map +1 -1
  19. package/dist/esm/p-navigation-item.entry.js +1 -1
  20. package/dist/esm/p-navigation-item.entry.js.map +1 -1
  21. package/dist/esm/p-select.entry.js +1 -1
  22. package/dist/esm/p-select.entry.js.map +1 -1
  23. package/dist/index.html +1 -1
  24. package/dist/paperless/{p-008f1920.entry.js → p-b4cc7289.entry.js} +2 -2
  25. package/dist/{build/p-008f1920.entry.js.map → paperless/p-b4cc7289.entry.js.map} +1 -1
  26. package/dist/{build/p-682db916.entry.js → paperless/p-fffaacc2.entry.js} +2 -2
  27. package/dist/{build/p-682db916.entry.js.map → paperless/p-fffaacc2.entry.js.map} +1 -1
  28. package/dist/paperless/paperless.esm.js +1 -1
  29. package/dist/sw.js +1 -1
  30. package/dist/sw.js.map +1 -1
  31. package/hydrate/index.js +2 -2
  32. 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 (!this.enableAutocomplete && !force) {
21131
+ if (this.enableAutocomplete && !force) {
21132
21132
  return;
21133
21133
  }
21134
21134
  this._showDropdown = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/core",
3
- "version": "1.28.2",
3
+ "version": "1.28.4",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",