@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/CHANGELOG.md +11 -0
- package/dist/build/{p-a676e532.entry.js → p-a9ebacc8.entry.js} +2 -2
- package/dist/build/{p-a676e532.entry.js.map → p-a9ebacc8.entry.js.map} +1 -1
- package/dist/build/paperless.esm.js +1 -1
- package/dist/cjs/p-table.cjs.entry.js +1 -1
- package/dist/cjs/p-table.cjs.entry.js.map +1 -1
- package/dist/collection/components/organisms/table/table.component.js +1 -1
- package/dist/collection/components/organisms/table/table.component.js.map +1 -1
- package/dist/components/p-table.js +1 -1
- package/dist/components/p-table.js.map +1 -1
- package/dist/esm/p-table.entry.js +1 -1
- package/dist/esm/p-table.entry.js.map +1 -1
- package/dist/index.html +1 -1
- package/dist/paperless/{p-a676e532.entry.js → p-a9ebacc8.entry.js} +2 -2
- package/dist/paperless/{p-a676e532.entry.js.map → p-a9ebacc8.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
|
@@ -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
|
|
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);
|