@paperless/angular 0.1.0-alpha.156 → 0.1.0-alpha.159
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/esm2020/lib/stencil/components.mjs +7 -7
- package/fesm2015/paperless-angular.mjs +6 -6
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +6 -6
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/stencil/components.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@paperless/core';
|
|
3
|
+
import type { RowClickEvent as ITableRowClickEvent } from '@paperless/core';
|
|
3
4
|
import type { QuickFilter as ITableQuickFilter } from '@paperless/core';
|
|
4
5
|
import type { QuickFilter as ITableHeaderQuickFilter } from '@paperless/core';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
@@ -408,7 +409,7 @@ export declare interface PTable extends Components.PTable {
|
|
|
408
409
|
/**
|
|
409
410
|
* Event whenever a row is clicked
|
|
410
411
|
*/
|
|
411
|
-
rowClick: EventEmitter<CustomEvent<
|
|
412
|
+
rowClick: EventEmitter<CustomEvent<ITableRowClickEvent>>;
|
|
412
413
|
/**
|
|
413
414
|
* Event whenever a row is selected
|
|
414
415
|
*/
|
|
@@ -451,7 +452,7 @@ export declare class PTable {
|
|
|
451
452
|
protected el: HTMLElement;
|
|
452
453
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
453
454
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
|
|
454
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table", never, { "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "amountOfLoadingRows": "amountOfLoadingRows"; "canSelectKey": "canSelectKey"; "editButtonTemplate": "editButtonTemplate"; "enableEdit": "enableEdit"; "enableExport": "enableExport"; "enableFilter": "enableFilter"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "enableRowClick": "enableRowClick"; "enableRowSelection": "enableRowSelection"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "hideOnSinglePage": "hideOnSinglePage"; "items": "items"; "loading": "loading"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "query": "query"; "quickFilters": "quickFilters"; "
|
|
455
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table", never, { "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "amountOfLoadingRows": "amountOfLoadingRows"; "canSelectKey": "canSelectKey"; "editButtonTemplate": "editButtonTemplate"; "enableEdit": "enableEdit"; "enableExport": "enableExport"; "enableFilter": "enableFilter"; "enablePageSize": "enablePageSize"; "enablePagination": "enablePagination"; "enableRowClick": "enableRowClick"; "enableRowSelection": "enableRowSelection"; "enableSearch": "enableSearch"; "filterButtonTemplate": "filterButtonTemplate"; "hideOnSinglePage": "hideOnSinglePage"; "items": "items"; "loading": "loading"; "page": "page"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "query": "query"; "quickFilters": "quickFilters"; "selectedFiltersAmount": "selectedFiltersAmount"; "selectedRows": "selectedRows"; "selectionKey": "selectionKey"; "total": "total"; }, {}, never, ["*"], false>;
|
|
455
456
|
}
|
|
456
457
|
export declare interface PTableBody extends Components.PTableBody {
|
|
457
458
|
}
|
|
@@ -537,7 +538,7 @@ export declare class PTableRow {
|
|
|
537
538
|
protected el: HTMLElement;
|
|
538
539
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
539
540
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
|
|
540
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "
|
|
541
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false>;
|
|
541
542
|
}
|
|
542
543
|
export declare interface PTag extends Components.PTag {
|
|
543
544
|
}
|