@paperless/core 1.38.0 → 1.38.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/hydrate/index.js CHANGED
@@ -21744,7 +21744,7 @@ class Table {
21744
21744
  return hAsync("p-loader", { variant: "ghost", class: "h-6 w-6 rounded" });
21745
21745
  }
21746
21746
  if (variant === 'header') {
21747
- return (hAsync("input", { class: `p-input ${this.rowSelectionLimit === 1 && 'opacity-0'}`, type: "checkbox", onChange: (ev) => this._selectAllChange(ev), checked: this._selectionContainsAll(), indeterminate: this._selectionIndeterminate(), disabled: this.rowSelectionLimit === 1 }));
21747
+ return (hAsync("input", { class: `p-input ${this.rowSelectionLimit !== undefined && 'opacity-0'}`, type: "checkbox", onChange: (ev) => this._selectAllChange(ev), checked: this._selectionContainsAll(), indeterminate: this._selectionIndeterminate(), disabled: this.rowSelectionLimit !== undefined }));
21748
21748
  }
21749
21749
  const item = this._items[rowIndex];
21750
21750
  const selectionContains = this._selectionContains(item, rowIndex);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/core",
3
- "version": "1.38.0",
3
+ "version": "1.38.1",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",