@paperless/core 2.18.4 → 2.18.5
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/dist/build/{p-81ba2f91.js → p-008f3761.js} +1 -1
- package/dist/build/p-ab66da44.entry.js.map +1 -1
- package/dist/build/p-c59b1d50.entry.js.map +1 -1
- package/dist/build/p-table-column.entry.esm.js.map +1 -1
- package/dist/build/p-table-extra-header.entry.esm.js.map +1 -1
- package/dist/build/paperless.esm.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/p-table-column.cjs.entry.js +3 -3
- package/dist/cjs/p-table-column.cjs.entry.js.map +1 -1
- package/dist/cjs/p-table-column.entry.cjs.js.map +1 -1
- package/dist/cjs/p-table-extra-header.cjs.entry.js +2 -2
- package/dist/cjs/p-table-extra-header.cjs.entry.js.map +1 -1
- package/dist/cjs/p-table-extra-header.entry.cjs.js.map +1 -1
- package/dist/cjs/paperless.cjs.js +1 -1
- package/dist/collection/components/helpers/table/column/table-column.component.js +12 -12
- package/dist/collection/components/helpers/table/column/table-column.component.js.map +1 -1
- package/dist/collection/components/helpers/table/extra-header/table-extra-header.component.js +9 -9
- package/dist/collection/components/helpers/table/extra-header/table-extra-header.component.js.map +1 -1
- package/dist/components/p-table-column.js +4 -4
- package/dist/components/p-table-column.js.map +1 -1
- package/dist/components/p-table-extra-header.js +3 -3
- package/dist/components/p-table-extra-header.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/p-table-column.entry.js +3 -3
- package/dist/esm/p-table-column.entry.js.map +1 -1
- package/dist/esm/p-table-extra-header.entry.js +2 -2
- package/dist/esm/p-table-extra-header.entry.js.map +1 -1
- package/dist/esm/paperless.js +1 -1
- package/dist/index.html +1 -1
- package/dist/paperless/p-ab66da44.entry.js.map +1 -1
- package/dist/paperless/p-c59b1d50.entry.js.map +1 -1
- package/dist/paperless/p-table-column.entry.esm.js.map +1 -1
- package/dist/paperless/p-table-extra-header.entry.esm.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/dist/types/components/helpers/table/column/table-column.component.d.ts +6 -6
- package/dist/types/components/helpers/table/extra-header/table-extra-header.component.d.ts +5 -5
- package/dist/types/components.d.ts +28 -28
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { TableColumnSizes } from
|
|
1
|
+
import { EventEmitter } from "../../../../stencil-public-runtime";
|
|
2
|
+
import { TableColumnSizes } from "../../../../types/table";
|
|
3
3
|
export declare class TableColumn {
|
|
4
4
|
/**
|
|
5
5
|
* The path of the value of the item you want to display
|
|
@@ -8,7 +8,7 @@ export declare class TableColumn {
|
|
|
8
8
|
/**
|
|
9
9
|
* The variant of the column
|
|
10
10
|
*/
|
|
11
|
-
variant:
|
|
11
|
+
variant: "subject" | "default" | "highlight" | "header-secondary";
|
|
12
12
|
/**
|
|
13
13
|
* The name of the column
|
|
14
14
|
*/
|
|
@@ -28,11 +28,11 @@ export declare class TableColumn {
|
|
|
28
28
|
/**
|
|
29
29
|
* The alignment of the column
|
|
30
30
|
*/
|
|
31
|
-
align:
|
|
31
|
+
align: "start" | "center" | "end";
|
|
32
32
|
/**
|
|
33
33
|
* Wether the column should be sticky (Only works on angular variant of table)
|
|
34
34
|
*/
|
|
35
|
-
sticky: boolean;
|
|
35
|
+
sticky: boolean | "secondary";
|
|
36
36
|
/**
|
|
37
37
|
* Parsed sizes based on the complete set of columns
|
|
38
38
|
*/
|
|
@@ -40,7 +40,7 @@ export declare class TableColumn {
|
|
|
40
40
|
/**
|
|
41
41
|
* The sizes of the column
|
|
42
42
|
*/
|
|
43
|
-
sizes:
|
|
43
|
+
sizes: "auto" | "hidden" | "full" | number | TableColumnSizes;
|
|
44
44
|
/**
|
|
45
45
|
* Event to let the table know it has to re render
|
|
46
46
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { TableColumnSizes } from
|
|
1
|
+
import { EventEmitter } from "../../../../stencil-public-runtime";
|
|
2
|
+
import { TableColumnSizes } from "../../../../types/table";
|
|
3
3
|
export declare class TableExtraHeader {
|
|
4
4
|
/**
|
|
5
5
|
* The name of the column
|
|
@@ -8,7 +8,7 @@ export declare class TableExtraHeader {
|
|
|
8
8
|
/**
|
|
9
9
|
* Wether the column should be sticky (Only works on angular variant of table)
|
|
10
10
|
*/
|
|
11
|
-
sticky: boolean;
|
|
11
|
+
sticky: boolean | "secondary";
|
|
12
12
|
/**
|
|
13
13
|
* Wether the column should use the slot
|
|
14
14
|
*/
|
|
@@ -16,7 +16,7 @@ export declare class TableExtraHeader {
|
|
|
16
16
|
/**
|
|
17
17
|
* The alignment of the column
|
|
18
18
|
*/
|
|
19
|
-
align:
|
|
19
|
+
align: "start" | "center" | "end";
|
|
20
20
|
/**
|
|
21
21
|
* Parsed sizes based on the complete set of columns
|
|
22
22
|
*/
|
|
@@ -24,7 +24,7 @@ export declare class TableExtraHeader {
|
|
|
24
24
|
/**
|
|
25
25
|
* The sizes of the column
|
|
26
26
|
*/
|
|
27
|
-
sizes:
|
|
27
|
+
sizes: "auto" | "hidden" | "full" | number | TableColumnSizes;
|
|
28
28
|
/**
|
|
29
29
|
* Event to let the table know it has to re render
|
|
30
30
|
*/
|
|
@@ -1873,7 +1873,7 @@ export namespace Components {
|
|
|
1873
1873
|
/**
|
|
1874
1874
|
* The alignment of the column
|
|
1875
1875
|
*/
|
|
1876
|
-
"align":
|
|
1876
|
+
"align": "start" | "center" | "end";
|
|
1877
1877
|
/**
|
|
1878
1878
|
* Wether the column should be flex
|
|
1879
1879
|
*/
|
|
@@ -1898,15 +1898,15 @@ export namespace Components {
|
|
|
1898
1898
|
/**
|
|
1899
1899
|
* The sizes of the column
|
|
1900
1900
|
*/
|
|
1901
|
-
"sizes": |
|
|
1902
|
-
|
|
|
1903
|
-
|
|
|
1901
|
+
"sizes": | "auto"
|
|
1902
|
+
| "hidden"
|
|
1903
|
+
| "full"
|
|
1904
1904
|
| number
|
|
1905
1905
|
| TableColumnSizes;
|
|
1906
1906
|
/**
|
|
1907
1907
|
* Wether the column should be sticky (Only works on angular variant of table)
|
|
1908
1908
|
*/
|
|
1909
|
-
"sticky": boolean;
|
|
1909
|
+
"sticky": boolean | "secondary";
|
|
1910
1910
|
/**
|
|
1911
1911
|
* Wether the column should use the slot
|
|
1912
1912
|
*/
|
|
@@ -1914,10 +1914,10 @@ export namespace Components {
|
|
|
1914
1914
|
/**
|
|
1915
1915
|
* The variant of the column
|
|
1916
1916
|
*/
|
|
1917
|
-
"variant": |
|
|
1918
|
-
|
|
|
1919
|
-
|
|
|
1920
|
-
|
|
|
1917
|
+
"variant": | "subject"
|
|
1918
|
+
| "default"
|
|
1919
|
+
| "highlight"
|
|
1920
|
+
| "header-secondary";
|
|
1921
1921
|
}
|
|
1922
1922
|
interface PTableContainer {
|
|
1923
1923
|
}
|
|
@@ -1925,7 +1925,7 @@ export namespace Components {
|
|
|
1925
1925
|
/**
|
|
1926
1926
|
* The alignment of the column
|
|
1927
1927
|
*/
|
|
1928
|
-
"align":
|
|
1928
|
+
"align": "start" | "center" | "end";
|
|
1929
1929
|
/**
|
|
1930
1930
|
* The name of the column
|
|
1931
1931
|
*/
|
|
@@ -1938,15 +1938,15 @@ export namespace Components {
|
|
|
1938
1938
|
/**
|
|
1939
1939
|
* The sizes of the column
|
|
1940
1940
|
*/
|
|
1941
|
-
"sizes": |
|
|
1942
|
-
|
|
|
1943
|
-
|
|
|
1941
|
+
"sizes": | "auto"
|
|
1942
|
+
| "hidden"
|
|
1943
|
+
| "full"
|
|
1944
1944
|
| number
|
|
1945
1945
|
| TableColumnSizes;
|
|
1946
1946
|
/**
|
|
1947
1947
|
* Wether the column should be sticky (Only works on angular variant of table)
|
|
1948
1948
|
*/
|
|
1949
|
-
"sticky": boolean;
|
|
1949
|
+
"sticky": boolean | "secondary";
|
|
1950
1950
|
/**
|
|
1951
1951
|
* Wether the column should use the slot
|
|
1952
1952
|
*/
|
|
@@ -5359,7 +5359,7 @@ declare namespace LocalJSX {
|
|
|
5359
5359
|
/**
|
|
5360
5360
|
* The alignment of the column
|
|
5361
5361
|
*/
|
|
5362
|
-
"align"?:
|
|
5362
|
+
"align"?: "start" | "center" | "end";
|
|
5363
5363
|
/**
|
|
5364
5364
|
* Wether the column should be flex
|
|
5365
5365
|
*/
|
|
@@ -5388,15 +5388,15 @@ declare namespace LocalJSX {
|
|
|
5388
5388
|
/**
|
|
5389
5389
|
* The sizes of the column
|
|
5390
5390
|
*/
|
|
5391
|
-
"sizes"?: |
|
|
5392
|
-
|
|
|
5393
|
-
|
|
|
5391
|
+
"sizes"?: | "auto"
|
|
5392
|
+
| "hidden"
|
|
5393
|
+
| "full"
|
|
5394
5394
|
| number
|
|
5395
5395
|
| TableColumnSizes;
|
|
5396
5396
|
/**
|
|
5397
5397
|
* Wether the column should be sticky (Only works on angular variant of table)
|
|
5398
5398
|
*/
|
|
5399
|
-
"sticky"?: boolean;
|
|
5399
|
+
"sticky"?: boolean | "secondary";
|
|
5400
5400
|
/**
|
|
5401
5401
|
* Wether the column should use the slot
|
|
5402
5402
|
*/
|
|
@@ -5404,10 +5404,10 @@ declare namespace LocalJSX {
|
|
|
5404
5404
|
/**
|
|
5405
5405
|
* The variant of the column
|
|
5406
5406
|
*/
|
|
5407
|
-
"variant"?: |
|
|
5408
|
-
|
|
|
5409
|
-
|
|
|
5410
|
-
|
|
|
5407
|
+
"variant"?: | "subject"
|
|
5408
|
+
| "default"
|
|
5409
|
+
| "highlight"
|
|
5410
|
+
| "header-secondary";
|
|
5411
5411
|
}
|
|
5412
5412
|
interface PTableContainer {
|
|
5413
5413
|
}
|
|
@@ -5415,7 +5415,7 @@ declare namespace LocalJSX {
|
|
|
5415
5415
|
/**
|
|
5416
5416
|
* The alignment of the column
|
|
5417
5417
|
*/
|
|
5418
|
-
"align"?:
|
|
5418
|
+
"align"?: "start" | "center" | "end";
|
|
5419
5419
|
/**
|
|
5420
5420
|
* The name of the column
|
|
5421
5421
|
*/
|
|
@@ -5432,15 +5432,15 @@ declare namespace LocalJSX {
|
|
|
5432
5432
|
/**
|
|
5433
5433
|
* The sizes of the column
|
|
5434
5434
|
*/
|
|
5435
|
-
"sizes"?: |
|
|
5436
|
-
|
|
|
5437
|
-
|
|
|
5435
|
+
"sizes"?: | "auto"
|
|
5436
|
+
| "hidden"
|
|
5437
|
+
| "full"
|
|
5438
5438
|
| number
|
|
5439
5439
|
| TableColumnSizes;
|
|
5440
5440
|
/**
|
|
5441
5441
|
* Wether the column should be sticky (Only works on angular variant of table)
|
|
5442
5442
|
*/
|
|
5443
|
-
"sticky"?: boolean;
|
|
5443
|
+
"sticky"?: boolean | "secondary";
|
|
5444
5444
|
/**
|
|
5445
5445
|
* Wether the column should use the slot
|
|
5446
5446
|
*/
|