@paperless/angular 2.0.1-beta.98 → 2.1.0
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/modules/table/components/table/table.component.mjs +38 -21
- package/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +7 -5
- package/esm2020/lib/modules/table/components/table-column/table-column.component.mjs +20 -4
- package/esm2020/lib/modules/table/directives/index.mjs +4 -1
- package/esm2020/lib/modules/table/directives/p-table-custom-row.directive.mjs +19 -0
- package/esm2020/lib/modules/table/table.module.mjs +3 -2
- package/esm2020/lib/stencil/components.mjs +156 -209
- package/esm2020/lib/stencil/index.mjs +5 -7
- package/esm2020/lib/stencil.module.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +235 -237
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +234 -236
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table/table.component.d.ts +9 -6
- package/lib/modules/table/components/table-cell/table-cell.component.d.ts +1 -1
- package/lib/modules/table/components/table-column/table-column.component.d.ts +1 -1
- package/lib/modules/table/directives/index.d.ts +3 -1
- package/lib/modules/table/directives/p-table-custom-row.directive.d.ts +9 -0
- package/lib/modules/table/table.module.d.ts +5 -4
- package/lib/stencil/components.d.ts +76 -78
- package/lib/stencil/index.d.ts +1 -1
- package/lib/stencil.module.d.ts +1 -1
- package/package.json +1 -1
- package/paperless.css +14 -4
|
@@ -6,7 +6,8 @@ import { BehaviorSubject } from 'rxjs';
|
|
|
6
6
|
import { TableColumn } from '../table-column/table-column.component';
|
|
7
7
|
import { AsyncItem, TableRowAction, TableRowActionQueryParams, TableRowActionRouterLink } from '../table-row-action/table-row-action.component';
|
|
8
8
|
import { TableCell } from '../table-cell/table-cell.component';
|
|
9
|
-
import { PTableRow } from '
|
|
9
|
+
import { PTableRow } from '../../../../stencil/components';
|
|
10
|
+
import { TableCustomRowDirective } from '../../directives/p-table-custom-row.directive';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class Table implements OnInit, OnChanges {
|
|
12
13
|
private _changeDetection;
|
|
@@ -234,26 +235,27 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
234
235
|
reachedScrollEnd$: BehaviorSubject<boolean>;
|
|
235
236
|
private _totalWidth;
|
|
236
237
|
private _calculateColumnWidthsTimeout?;
|
|
238
|
+
private _rowChangesSubscription?;
|
|
239
|
+
private _cellChangesSubscription?;
|
|
237
240
|
/**
|
|
238
241
|
* Event whenever the empty state is clicked
|
|
239
242
|
*/
|
|
240
243
|
emptyStateActionClick: EventEmitter<null>;
|
|
241
244
|
shadow: boolean;
|
|
242
|
-
columns
|
|
245
|
+
columns$: BehaviorSubject<any[]>;
|
|
243
246
|
parsedItems: any[];
|
|
244
247
|
loadingRows: unknown[];
|
|
245
248
|
private _ctrlDown;
|
|
246
249
|
headerCustomFilterTemplate: TemplateRef<any> | undefined;
|
|
247
250
|
headerCustomActionsTemplate: TemplateRef<any> | undefined;
|
|
248
|
-
|
|
249
|
-
set columnDefinitions(v: QueryList<TableColumn>);
|
|
250
|
-
get columnDefinitions(): QueryList<TableColumn>;
|
|
251
|
+
columnDefinitions: QueryList<TableColumn>;
|
|
251
252
|
filterModalTemplate: TemplateRef<any> | undefined;
|
|
252
253
|
filterModalShow$: BehaviorSubject<boolean>;
|
|
253
254
|
private _rowActions;
|
|
254
255
|
private _rowActionsSubscriptions;
|
|
255
256
|
set rowActions(v: QueryList<TableRowAction>);
|
|
256
257
|
get rowActions(): QueryList<TableRowAction>;
|
|
258
|
+
customRows: QueryList<TableCustomRowDirective>;
|
|
257
259
|
filterModalHeaderText: string;
|
|
258
260
|
filterModalSaveText: string;
|
|
259
261
|
filterModalCancelText: string;
|
|
@@ -318,10 +320,11 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
318
320
|
private _showFloatingMenu;
|
|
319
321
|
private _parseDefinitions;
|
|
320
322
|
private _parseDefinitionSizes;
|
|
323
|
+
private _checkChangesSubscriptions;
|
|
321
324
|
private _calculateColumnWidths;
|
|
322
325
|
private _setRowsWidth;
|
|
323
326
|
private _resetScrollPosition;
|
|
324
327
|
private _calculateScrollPosition;
|
|
325
328
|
static ɵfac: i0.ɵɵFactoryDeclaration<Table, never>;
|
|
326
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "p-table-ngx", never, { "items": "items"; "loading": "loading"; "headerLoading": "headerLoading"; "footerLoading": "footerLoading"; "amountOfLoadingRows": "amountOfLoadingRows"; "enableRowSelection": "enableRowSelection"; "rowSelectionLimit": "rowSelectionLimit"; "enableRowClick": "enableRowClick"; "selectedRows": "selectedRows"; "selectionKey": "selectionKey"; "canSelectKey": "canSelectKey"; "enableFloatingMenu": "enableFloatingMenu"; "floatingMenuAmountSelectedText": "floatingMenuAmountSelectedText"; "floatingMenuAmountSelectedTemplate": "floatingMenuAmountSelectedTemplate"; "enableHeader": "enableHeader"; "quickFilters": "quickFilters"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "enableSearch": "enableSearch"; "query": "query"; "enableFilter": "enableFilter"; "enableFilterDesktop": "enableFilterDesktop"; "selectedFiltersAmount": "selectedFiltersAmount"; "filterButtonTemplate": "filterButtonTemplate"; "enableAction": "enableAction"; "actionButtonLoading": "actionButtonLoading"; "actionButtonIcon": "actionButtonIcon"; "actionButtonEnabled": "actionButtonEnabled"; "actionButtonText": "actionButtonText"; "actionButtonTemplate": "actionButtonTemplate"; "enableFooter": "enableFooter"; "enablePaginationSize": "enablePaginationSize"; "enablePaginationPages": "enablePaginationPages"; "enableExport": "enableExport"; "page": "page"; "total": "total"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "hideOnSinglePage": "hideOnSinglePage"; "emptyStateType": "emptyStateType"; "emptyStateIllustration": "emptyStateIllustration"; "emptyStateHeader": "emptyStateHeader"; "emptyStateContent": "emptyStateContent"; "emptyStateAction": "emptyStateAction"; "emptyStateActionIcon": "emptyStateActionIcon"; "enableEmptyStateAction": "enableEmptyStateAction"; "emptyStateFilteredIllustration": "emptyStateFilteredIllustration"; "emptyStateFilteredHeader": "emptyStateFilteredHeader"; "emptyStateFilteredContent": "emptyStateFilteredContent"; "enableScroll": "enableScroll"; "shadow": "shadow"; "filterModalHeaderText": "filterModalHeaderText"; "filterModalSaveText": "filterModalSaveText"; "filterModalCancelText": "filterModalCancelText"; "filterModalResetText": "filterModalResetText"; "filterModalShowReset": "filterModalShowReset"; "filterModalShowResetMobile": "filterModalShowResetMobile"; }, { "selectedRowsChange": "selectedRowsChange"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "rowDeselected": "rowDeselected"; "quickFilter": "quickFilter"; "queryChange": "queryChange"; "filter": "filter"; "action": "action"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "export": "export"; "emptyStateActionClick": "emptyStateActionClick"; "filterModalShow": "filterModalShow"; "filterModalSave": "filterModalSave"; "filterModalReset": "filterModalReset"; }, ["headerCustomFilterTemplate", "headerCustomActionsTemplate", "filterModalTemplate", "columnDefinitions", "rowActions"], never, false, never>;
|
|
329
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "p-table-ngx", never, { "items": "items"; "loading": "loading"; "headerLoading": "headerLoading"; "footerLoading": "footerLoading"; "amountOfLoadingRows": "amountOfLoadingRows"; "enableRowSelection": "enableRowSelection"; "rowSelectionLimit": "rowSelectionLimit"; "enableRowClick": "enableRowClick"; "selectedRows": "selectedRows"; "selectionKey": "selectionKey"; "canSelectKey": "canSelectKey"; "enableFloatingMenu": "enableFloatingMenu"; "floatingMenuAmountSelectedText": "floatingMenuAmountSelectedText"; "floatingMenuAmountSelectedTemplate": "floatingMenuAmountSelectedTemplate"; "enableHeader": "enableHeader"; "quickFilters": "quickFilters"; "activeQuickFilterIdentifier": "activeQuickFilterIdentifier"; "enableSearch": "enableSearch"; "query": "query"; "enableFilter": "enableFilter"; "enableFilterDesktop": "enableFilterDesktop"; "selectedFiltersAmount": "selectedFiltersAmount"; "filterButtonTemplate": "filterButtonTemplate"; "enableAction": "enableAction"; "actionButtonLoading": "actionButtonLoading"; "actionButtonIcon": "actionButtonIcon"; "actionButtonEnabled": "actionButtonEnabled"; "actionButtonText": "actionButtonText"; "actionButtonTemplate": "actionButtonTemplate"; "enableFooter": "enableFooter"; "enablePaginationSize": "enablePaginationSize"; "enablePaginationPages": "enablePaginationPages"; "enableExport": "enableExport"; "page": "page"; "total": "total"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "hideOnSinglePage": "hideOnSinglePage"; "emptyStateType": "emptyStateType"; "emptyStateIllustration": "emptyStateIllustration"; "emptyStateHeader": "emptyStateHeader"; "emptyStateContent": "emptyStateContent"; "emptyStateAction": "emptyStateAction"; "emptyStateActionIcon": "emptyStateActionIcon"; "enableEmptyStateAction": "enableEmptyStateAction"; "emptyStateFilteredIllustration": "emptyStateFilteredIllustration"; "emptyStateFilteredHeader": "emptyStateFilteredHeader"; "emptyStateFilteredContent": "emptyStateFilteredContent"; "enableScroll": "enableScroll"; "shadow": "shadow"; "filterModalHeaderText": "filterModalHeaderText"; "filterModalSaveText": "filterModalSaveText"; "filterModalCancelText": "filterModalCancelText"; "filterModalResetText": "filterModalResetText"; "filterModalShowReset": "filterModalShowReset"; "filterModalShowResetMobile": "filterModalShowResetMobile"; }, { "selectedRowsChange": "selectedRowsChange"; "rowClick": "rowClick"; "rowSelected": "rowSelected"; "rowDeselected": "rowDeselected"; "quickFilter": "quickFilter"; "queryChange": "queryChange"; "filter": "filter"; "action": "action"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "export": "export"; "emptyStateActionClick": "emptyStateActionClick"; "filterModalShow": "filterModalShow"; "filterModalSave": "filterModalSave"; "filterModalReset": "filterModalReset"; }, ["headerCustomFilterTemplate", "headerCustomActionsTemplate", "filterModalTemplate", "columnDefinitions", "rowActions", "customRows"], never, false, never>;
|
|
327
330
|
}
|
|
@@ -39,5 +39,5 @@ export declare class TableCell {
|
|
|
39
39
|
value: string;
|
|
40
40
|
};
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableCell, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableCell, "p-table-cell-ngx", never, { "variant": "variant"; "index": "index"; "rowIndex": "rowIndex"; "definition": "definition"; "item": "item"; "value": "value"; "checkbox": "checkbox"; "template": "template"; }, {}, never,
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableCell, "p-table-cell-ngx", never, { "variant": "variant"; "index": "index"; "rowIndex": "rowIndex"; "definition": "definition"; "item": "item"; "value": "value"; "checkbox": "checkbox"; "template": "template"; }, {}, never, ["*"], false, never>;
|
|
43
43
|
}
|
|
@@ -13,5 +13,5 @@ export declare class TableColumn {
|
|
|
13
13
|
template: TemplateRef<any> | undefined;
|
|
14
14
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableColumn, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumn, "p-table-column", never, { "align": "align"; "name": "name"; "path": "path"; "sizes": "sizes"; "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableColumn, "p-table-column", never, { "align": "align"; "name": "name"; "path": "path"; "sizes": "sizes"; "variant": "variant"; "useSlot": "useSlot"; "hasCheckbox": "hasCheckbox"; }, {}, ["template"], ["*"], false, never>;
|
|
17
17
|
}
|
|
@@ -5,9 +5,11 @@ export * from './p-table-header.directive';
|
|
|
5
5
|
export * from './p-table-ngx.directive';
|
|
6
6
|
export * from './p-table.directive';
|
|
7
7
|
export * from './p-table-custom-actions.directive';
|
|
8
|
+
export * from './p-table-custom-row.directive';
|
|
9
|
+
import { TableCustomRowDirective } from './p-table-custom-row.directive';
|
|
8
10
|
import { TableCustomFilterDirective } from './p-table-custom-filter.directive';
|
|
9
11
|
import { TableFooterDirective } from './p-table-footer.directive';
|
|
10
12
|
import { TableHeaderDirective } from './p-table-header.directive';
|
|
11
13
|
import { TableNgxDirective } from './p-table-ngx.directive';
|
|
12
14
|
import { TableDirective } from './p-table.directive';
|
|
13
|
-
export declare const TABLE_DIRECTIVES: (typeof TableCustomFilterDirective | typeof TableFooterDirective | typeof TableHeaderDirective | typeof TableNgxDirective | typeof TableDirective)[];
|
|
15
|
+
export declare const TABLE_DIRECTIVES: (typeof TableCustomFilterDirective | typeof TableFooterDirective | typeof TableHeaderDirective | typeof TableNgxDirective | typeof TableDirective | typeof TableCustomRowDirective)[];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TableCustomRowDirective {
|
|
4
|
+
templateRef: TemplateRef<any>;
|
|
5
|
+
variant: 'default' | 'secondary' | 'header';
|
|
6
|
+
constructor(templateRef: TemplateRef<any>);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableCustomRowDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableCustomRowDirective, "[p-table-custom-row]", never, { "variant": "variant"; }, {}, never, never, false, never>;
|
|
9
|
+
}
|
|
@@ -10,11 +10,12 @@ import * as i8 from "./directives/p-table-ngx.directive";
|
|
|
10
10
|
import * as i9 from "./directives/p-table-filter-modal.directive";
|
|
11
11
|
import * as i10 from "./directives/p-table-custom-filter.directive";
|
|
12
12
|
import * as i11 from "./directives/p-table-custom-actions.directive";
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "@angular/
|
|
15
|
-
import * as i14 from "
|
|
13
|
+
import * as i12 from "./directives/p-table-custom-row.directive";
|
|
14
|
+
import * as i13 from "@angular/common";
|
|
15
|
+
import * as i14 from "@angular/router";
|
|
16
|
+
import * as i15 from "../../stencil.module";
|
|
16
17
|
export declare class TableModule {
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableRowAction, typeof i5.TableFooterDirective, typeof i6.TableHeaderDirective, typeof i7.TableDirective, typeof i8.TableNgxDirective, typeof i9.TableFilterModalDirective, typeof i10.TableCustomFilterDirective, typeof i11.TableCustomActionsDirective], [typeof
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableRowAction, typeof i5.TableFooterDirective, typeof i6.TableHeaderDirective, typeof i7.TableDirective, typeof i8.TableNgxDirective, typeof i9.TableFilterModalDirective, typeof i10.TableCustomFilterDirective, typeof i11.TableCustomActionsDirective, typeof i12.TableCustomRowDirective], [typeof i13.CommonModule, typeof i14.RouterModule, typeof i15.StencilModule], [typeof i1.Table, typeof i2.TableCell, typeof i3.TableColumn, typeof i4.TableRowAction, typeof i5.TableFooterDirective, typeof i6.TableHeaderDirective, typeof i7.TableDirective, typeof i8.TableNgxDirective, typeof i9.TableFilterModalDirective, typeof i10.TableCustomFilterDirective, typeof i11.TableCustomActionsDirective, typeof i12.TableCustomRowDirective]>;
|
|
19
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
20
21
|
}
|
|
@@ -7,7 +7,7 @@ export declare class PAccordion {
|
|
|
7
7
|
protected el: HTMLPAccordionElement;
|
|
8
8
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; }, {}, never, ["*"], false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion", never, { "closeable": "closeable"; "header": "header"; "open": "open"; "openable": "openable"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
11
11
|
}
|
|
12
12
|
export declare interface PAccordion extends Components.PAccordion {
|
|
13
13
|
/**
|
|
@@ -20,24 +20,32 @@ export declare class PAttachment {
|
|
|
20
20
|
protected el: HTMLPAttachmentElement;
|
|
21
21
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAttachment, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAttachment, "p-attachment", never, { "accept": "accept"; "cameraTooltip": "cameraTooltip"; "deleteTooltip": "deleteTooltip"; "downloadTooltip": "downloadTooltip"; "enableCameraOnMobile": "enableCameraOnMobile"; "error": "error"; "fileId": "fileId"; "helper": "helper"; "label": "label"; "loading": "loading"; "mode": "mode"; "placeholder": "placeholder"; "required": "required"; "uploadTooltip": "uploadTooltip"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
24
24
|
}
|
|
25
25
|
export declare interface PAttachment extends Components.PAttachment {
|
|
26
|
+
/**
|
|
27
|
+
* Event when upload is pressed
|
|
28
|
+
*/
|
|
29
|
+
upload: EventEmitter<CustomEvent<{
|
|
30
|
+
file: File;
|
|
31
|
+
fileId: string;
|
|
32
|
+
result: string;
|
|
33
|
+
}>>;
|
|
26
34
|
/**
|
|
27
35
|
* Event when download is pressed
|
|
28
36
|
*/
|
|
29
|
-
download: EventEmitter<CustomEvent<
|
|
37
|
+
download: EventEmitter<CustomEvent<void>>;
|
|
30
38
|
/**
|
|
31
39
|
* Event when delete is pressed
|
|
32
40
|
*/
|
|
33
|
-
delete: EventEmitter<CustomEvent<
|
|
41
|
+
delete: EventEmitter<CustomEvent<void>>;
|
|
34
42
|
}
|
|
35
43
|
export declare class PAvatar {
|
|
36
44
|
protected z: NgZone;
|
|
37
45
|
protected el: HTMLPAvatarElement;
|
|
38
46
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
39
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAvatar, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src"; }, {}, never, ["*"], false, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAvatar, "p-avatar", never, { "defaultImage": "defaultImage"; "letters": "letters"; "size": "size"; "src": "src"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
41
49
|
}
|
|
42
50
|
export declare interface PAvatar extends Components.PAvatar {
|
|
43
51
|
}
|
|
@@ -77,7 +85,7 @@ export declare class PButton {
|
|
|
77
85
|
protected el: HTMLPButtonElement;
|
|
78
86
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
79
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<PButton, never>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "active": "active"; "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "class": "class"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "label": "label"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "
|
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButton, "p-button", never, { "active": "active"; "as": "as"; "buttonGroupPosition": "buttonGroupPosition"; "chevron": "chevron"; "chevronPosition": "chevronPosition"; "class": "class"; "disabled": "disabled"; "error": "error"; "href": "href"; "icon": "icon"; "iconFlip": "iconFlip"; "iconOnly": "iconOnly"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "inheritText": "inheritText"; "label": "label"; "loading": "loading"; "size": "size"; "target": "target"; "type": "type"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
81
89
|
}
|
|
82
90
|
export declare interface PButton extends Components.PButton {
|
|
83
91
|
/**
|
|
@@ -99,7 +107,7 @@ export declare class PCalendar {
|
|
|
99
107
|
protected el: HTMLPCalendarElement;
|
|
100
108
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
101
109
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCalendar, never>;
|
|
102
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCalendar, "p-calendar", never, { "disableWeekends": "disableWeekends"; "disabledDates": "disabledDates"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "preselectToday": "preselectToday"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCalendar, "p-calendar", never, { "disableWeekends": "disableWeekends"; "disabledDates": "disabledDates"; "enableToday": "enableToday"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "preselectToday": "preselectToday"; "todayText": "todayText"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
103
111
|
}
|
|
104
112
|
export declare interface PCalendar extends Components.PCalendar {
|
|
105
113
|
/**
|
|
@@ -121,7 +129,7 @@ export declare class PCardContainer {
|
|
|
121
129
|
protected el: HTMLPCardContainerElement;
|
|
122
130
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
123
131
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCardContainer, never>;
|
|
124
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "active": "active"; "hoverable": "hoverable"; "shadow": "shadow"; }, {}, never, ["*"], false, never>;
|
|
132
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardContainer, "p-card-container", never, { "active": "active"; "bgClass": "bgClass"; "border": "border"; "hoverable": "hoverable"; "shadow": "shadow"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
125
133
|
}
|
|
126
134
|
export declare interface PCardContainer extends Components.PCardContainer {
|
|
127
135
|
}
|
|
@@ -130,7 +138,7 @@ export declare class PCardHeader {
|
|
|
130
138
|
protected el: HTMLPCardHeaderElement;
|
|
131
139
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
132
140
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCardHeader, never>;
|
|
133
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "header": "header"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCardHeader, "p-card-header", never, { "divider": "divider"; "header": "header"; "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
134
142
|
}
|
|
135
143
|
export declare interface PCardHeader extends Components.PCardHeader {
|
|
136
144
|
}
|
|
@@ -160,21 +168,12 @@ export declare class PContentSlider {
|
|
|
160
168
|
}
|
|
161
169
|
export declare interface PContentSlider extends Components.PContentSlider {
|
|
162
170
|
}
|
|
163
|
-
export declare class PCounter {
|
|
164
|
-
protected z: NgZone;
|
|
165
|
-
protected el: HTMLPCounterElement;
|
|
166
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
167
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PCounter, never>;
|
|
168
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCounter, "p-counter", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
169
|
-
}
|
|
170
|
-
export declare interface PCounter extends Components.PCounter {
|
|
171
|
-
}
|
|
172
171
|
export declare class PCropper {
|
|
173
172
|
protected z: NgZone;
|
|
174
173
|
protected el: HTMLPCropperElement;
|
|
175
174
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
176
175
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCropper, never>;
|
|
177
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value";
|
|
176
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCropper, "p-cropper", never, { "returnType": "returnType"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
178
177
|
}
|
|
179
178
|
export declare interface PCropper extends Components.PCropper {
|
|
180
179
|
/**
|
|
@@ -187,7 +186,7 @@ export declare class PDatepicker {
|
|
|
187
186
|
protected el: HTMLPDatepickerElement;
|
|
188
187
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
189
188
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDatepicker, never>;
|
|
190
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "enableNativePicker": "enableNativePicker"; "error": "error"; "format": "format"; "helper": "helper"; "hideIconWhenFilled": "hideIconWhenFilled"; "label": "label"; "loading": "loading"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "placement": "placement"; "prefix": "prefix"; "preselectToday": "preselectToday"; "required": "required"; "size": "size"; "strategy": "strategy"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
189
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDatepicker, "p-datepicker", never, { "disableWeekends": "disableWeekends"; "disabled": "disabled"; "disabledDates": "disabledDates"; "enableNativePicker": "enableNativePicker"; "enableToday": "enableToday"; "error": "error"; "format": "format"; "helper": "helper"; "hideIconWhenFilled": "hideIconWhenFilled"; "label": "label"; "loading": "loading"; "maxDate": "maxDate"; "minDate": "minDate"; "mode": "mode"; "placeholder": "placeholder"; "placement": "placement"; "prefix": "prefix"; "preselectToday": "preselectToday"; "required": "required"; "showOptional": "showOptional"; "size": "size"; "strategy": "strategy"; "todayText": "todayText"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
191
190
|
}
|
|
192
191
|
export declare interface PDatepicker extends Components.PDatepicker {
|
|
193
192
|
/**
|
|
@@ -200,7 +199,7 @@ export declare class PDivider {
|
|
|
200
199
|
protected el: HTMLPDividerElement;
|
|
201
200
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
202
201
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDivider, never>;
|
|
203
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, { "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
202
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDivider, "p-divider", never, { "alignContent": "alignContent"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
204
203
|
}
|
|
205
204
|
export declare interface PDivider extends Components.PDivider {
|
|
206
205
|
}
|
|
@@ -230,7 +229,7 @@ export declare class PDrawerBody {
|
|
|
230
229
|
protected el: HTMLPDrawerBodyElement;
|
|
231
230
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
232
231
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDrawerBody, never>;
|
|
233
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, {
|
|
232
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDrawerBody, "p-drawer-body", never, {}, {}, never, ["*"], false, never>;
|
|
234
233
|
}
|
|
235
234
|
export declare interface PDrawerBody extends Components.PDrawerBody {
|
|
236
235
|
}
|
|
@@ -261,7 +260,7 @@ export declare class PDropdown {
|
|
|
261
260
|
protected el: HTMLPDropdownElement;
|
|
262
261
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
263
262
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdown, never>;
|
|
264
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "
|
|
263
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdown, "p-dropdown", never, { "allowOverflow": "allowOverflow"; "applyChevron": "applyChevron"; "applyFullWidth": "applyFullWidth"; "applyMaxWidth": "applyMaxWidth"; "chevronDirection": "chevronDirection"; "chevronPosition": "chevronPosition"; "disableTriggerClick": "disableTriggerClick"; "insideClick": "insideClick"; "manual": "manual"; "offset": "offset"; "placement": "placement"; "scrollable": "scrollable"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
265
264
|
}
|
|
266
265
|
export declare interface PDropdown extends Components.PDropdown {
|
|
267
266
|
/**
|
|
@@ -283,7 +282,7 @@ export declare class PDropdownMenuItem {
|
|
|
283
282
|
protected el: HTMLPDropdownMenuItemElement;
|
|
284
283
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
285
284
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDropdownMenuItem, never>;
|
|
286
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "icon": "icon"; "iconWave": "iconWave"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
285
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PDropdownMenuItem, "p-dropdown-menu-item", never, { "active": "active"; "checkbox": "checkbox"; "disabled": "disabled"; "enableHover": "enableHover"; "enableTextWrap": "enableTextWrap"; "icon": "icon"; "iconWave": "iconWave"; "useContainer": "useContainer"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
287
286
|
}
|
|
288
287
|
export declare interface PDropdownMenuItem extends Components.PDropdownMenuItem {
|
|
289
288
|
}
|
|
@@ -292,7 +291,7 @@ export declare class PEmptyState {
|
|
|
292
291
|
protected el: HTMLPEmptyStateElement;
|
|
293
292
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
294
293
|
static ɵfac: i0.ɵɵFactoryDeclaration<PEmptyState, never>;
|
|
295
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PEmptyState, "p-empty-state", never, { "actionIcon": "actionIcon"; "actionLoading": "actionLoading"; "actionText": "actionText"; "actionVariant": "actionVariant"; "content": "content"; "enableAction": "enableAction"; "header": "header"; "illustration": "illustration"; }, {}, never, ["*"], false, never>;
|
|
294
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PEmptyState, "p-empty-state", never, { "actionIcon": "actionIcon"; "actionIconPosition": "actionIconPosition"; "actionLoading": "actionLoading"; "actionText": "actionText"; "actionVariant": "actionVariant"; "content": "content"; "enableAction": "enableAction"; "header": "header"; "illustration": "illustration"; }, {}, never, ["*"], false, never>;
|
|
296
295
|
}
|
|
297
296
|
export declare interface PEmptyState extends Components.PEmptyState {
|
|
298
297
|
/**
|
|
@@ -305,24 +304,28 @@ export declare class PField {
|
|
|
305
304
|
protected el: HTMLPFieldElement;
|
|
306
305
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
307
306
|
static ɵfac: i0.ɵɵFactoryDeclaration<PField, never>;
|
|
308
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "id": "id"; "label": "label"; "loading": "loading"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
307
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "addText": "addText"; "align": "align"; "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "id": "id"; "label": "label"; "loading": "loading"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "showAddOnEmpty": "showAddOnEmpty"; "showOptional": "showOptional"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
309
308
|
}
|
|
310
309
|
export declare interface PField extends Components.PField {
|
|
311
310
|
/**
|
|
312
311
|
* Event whenever the value changes
|
|
313
312
|
*/
|
|
314
|
-
valueChange: EventEmitter<CustomEvent<string>>;
|
|
313
|
+
valueChange: EventEmitter<CustomEvent<string | number>>;
|
|
315
314
|
/**
|
|
316
315
|
* Event whenever the input ref changes
|
|
317
316
|
*/
|
|
318
317
|
inputRefChange: EventEmitter<CustomEvent<HTMLInputElement | HTMLTextAreaElement>>;
|
|
318
|
+
/**
|
|
319
|
+
* Event whenever the value changes
|
|
320
|
+
*/
|
|
321
|
+
add: EventEmitter<CustomEvent<void>>;
|
|
319
322
|
}
|
|
320
323
|
export declare class PFieldContainer {
|
|
321
324
|
protected z: NgZone;
|
|
322
325
|
protected el: HTMLPFieldContainerElement;
|
|
323
326
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
324
327
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFieldContainer, never>;
|
|
325
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "id": "id"; "label": "label"; "loading": "loading"; "loadingSize": "loadingSize"; "optionalTemplate": "optionalTemplate"; "required": "required"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFieldContainer, "p-field-container", never, { "align": "align"; "error": "error"; "errorPlacement": "errorPlacement"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "id": "id"; "label": "label"; "loading": "loading"; "loadingSize": "loadingSize"; "optionalTemplate": "optionalTemplate"; "required": "required"; "showOptional": "showOptional"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
326
329
|
}
|
|
327
330
|
export declare interface PFieldContainer extends Components.PFieldContainer {
|
|
328
331
|
focus: EventEmitter<CustomEvent<void>>;
|
|
@@ -407,24 +410,6 @@ export declare interface PInfoPanel extends Components.PInfoPanel {
|
|
|
407
410
|
*/
|
|
408
411
|
closed: EventEmitter<CustomEvent<void>>;
|
|
409
412
|
}
|
|
410
|
-
export declare class PInputError {
|
|
411
|
-
protected z: NgZone;
|
|
412
|
-
protected el: HTMLPInputErrorElement;
|
|
413
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
414
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputError, never>;
|
|
415
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputError, "p-input-error", never, { "error": "error"; "forceShowTooltip": "forceShowTooltip"; }, {}, never, ["*"], false, never>;
|
|
416
|
-
}
|
|
417
|
-
export declare interface PInputError extends Components.PInputError {
|
|
418
|
-
}
|
|
419
|
-
export declare class PInputGroup {
|
|
420
|
-
protected z: NgZone;
|
|
421
|
-
protected el: HTMLPInputGroupElement;
|
|
422
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
423
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PInputGroup, never>;
|
|
424
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInputGroup, "p-input-group", never, { "disabled": "disabled"; "error": "error"; "errorVariant": "errorVariant"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "label": "label"; "prefix": "prefix"; "required": "required"; "size": "size"; "suffix": "suffix"; }, {}, never, ["*"], false, never>;
|
|
425
|
-
}
|
|
426
|
-
export declare interface PInputGroup extends Components.PInputGroup {
|
|
427
|
-
}
|
|
428
413
|
export declare class PLabel {
|
|
429
414
|
protected z: NgZone;
|
|
430
415
|
protected el: HTMLPLabelElement;
|
|
@@ -447,6 +432,33 @@ export declare interface PLayout extends Components.PLayout {
|
|
|
447
432
|
*/
|
|
448
433
|
scroll: EventEmitter<CustomEvent<any>>;
|
|
449
434
|
}
|
|
435
|
+
export declare class PListing {
|
|
436
|
+
protected z: NgZone;
|
|
437
|
+
protected el: HTMLPListingElement;
|
|
438
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
439
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListing, never>;
|
|
440
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListing, "p-listing", never, {}, {}, never, ["*"], false, never>;
|
|
441
|
+
}
|
|
442
|
+
export declare interface PListing extends Components.PListing {
|
|
443
|
+
}
|
|
444
|
+
export declare class PListingItem {
|
|
445
|
+
protected z: NgZone;
|
|
446
|
+
protected el: HTMLPListingItemElement;
|
|
447
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
448
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingItem, never>;
|
|
449
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingItem, "p-listing-item", never, { "icon": "icon"; }, {}, never, ["*"], false, never>;
|
|
450
|
+
}
|
|
451
|
+
export declare interface PListingItem extends Components.PListingItem {
|
|
452
|
+
}
|
|
453
|
+
export declare class PListingLine {
|
|
454
|
+
protected z: NgZone;
|
|
455
|
+
protected el: HTMLPListingLineElement;
|
|
456
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
457
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PListingLine, never>;
|
|
458
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PListingLine, "p-listing-line", never, {}, {}, never, ["*"], false, never>;
|
|
459
|
+
}
|
|
460
|
+
export declare interface PListingLine extends Components.PListingLine {
|
|
461
|
+
}
|
|
450
462
|
export declare class PLoader {
|
|
451
463
|
protected z: NgZone;
|
|
452
464
|
protected el: HTMLPLoaderElement;
|
|
@@ -609,15 +621,6 @@ export declare interface PPaginationSize extends Components.PPaginationSize {
|
|
|
609
621
|
*/
|
|
610
622
|
sizeChange: EventEmitter<CustomEvent<number>>;
|
|
611
623
|
}
|
|
612
|
-
export declare class PPortal {
|
|
613
|
-
protected z: NgZone;
|
|
614
|
-
protected el: HTMLPPortalElement;
|
|
615
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
616
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PPortal, never>;
|
|
617
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PPortal, "p-portal", never, {}, {}, never, ["*"], false, never>;
|
|
618
|
-
}
|
|
619
|
-
export declare interface PPortal extends Components.PPortal {
|
|
620
|
-
}
|
|
621
624
|
export declare class PProfile {
|
|
622
625
|
protected z: NgZone;
|
|
623
626
|
protected el: HTMLPProfileElement;
|
|
@@ -640,6 +643,19 @@ export declare interface PRadio extends Components.PRadio {
|
|
|
640
643
|
*/
|
|
641
644
|
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
642
645
|
}
|
|
646
|
+
export declare class PRange {
|
|
647
|
+
protected z: NgZone;
|
|
648
|
+
protected el: HTMLPRangeElement;
|
|
649
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
650
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PRange, never>;
|
|
651
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PRange, "p-range", never, { "max": "max"; "min": "min"; "step": "step"; "value": "value"; }, {}, never, ["*"], false, never>;
|
|
652
|
+
}
|
|
653
|
+
export declare interface PRange extends Components.PRange {
|
|
654
|
+
/**
|
|
655
|
+
* Event whenever the value changes
|
|
656
|
+
*/
|
|
657
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
658
|
+
}
|
|
643
659
|
export declare class PSegmentContainer {
|
|
644
660
|
protected z: NgZone;
|
|
645
661
|
protected el: HTMLPSegmentContainerElement;
|
|
@@ -663,7 +679,7 @@ export declare class PSelect {
|
|
|
663
679
|
protected el: HTMLPSelectElement;
|
|
664
680
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
665
681
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSelect, never>;
|
|
666
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "addItemText": "addItemText"; "applyClassOnSelectedItem": "applyClassOnSelectedItem"; "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "avatarKey": "avatarKey"; "avatarLettersKey": "avatarLettersKey"; "classKey": "classKey"; "disabled": "disabled"; "displayKey": "displayKey"; "dropdownDisplayKey": "dropdownDisplayKey"; "emptyStateText": "emptyStateText"; "enableAutocomplete": "enableAutocomplete"; "enableSelectAll": "enableSelectAll"; "error": "error"; "helper": "helper"; "icon": "icon"; "iconKey": "iconKey"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "multi": "multi"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "selectAllIcon": "selectAllIcon"; "selectAllText": "selectAllText"; "selectionDisplayKey": "selectionDisplayKey"; "showAddItem": "showAddItem"; "showChevron": "showChevron"; "
|
|
682
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSelect, "p-select", never, { "addItemText": "addItemText"; "applyClassOnSelectedItem": "applyClassOnSelectedItem"; "asyncFilter": "asyncFilter"; "autoSelectFirst": "autoSelectFirst"; "autocompletePlaceholder": "autocompletePlaceholder"; "avatarKey": "avatarKey"; "avatarLettersKey": "avatarLettersKey"; "classKey": "classKey"; "disabled": "disabled"; "displayKey": "displayKey"; "dropdownDisplayKey": "dropdownDisplayKey"; "emptyStateText": "emptyStateText"; "enableAutocomplete": "enableAutocomplete"; "enableSelectAll": "enableSelectAll"; "enableTextWrap": "enableTextWrap"; "error": "error"; "helper": "helper"; "icon": "icon"; "iconKey": "iconKey"; "identifierKey": "identifierKey"; "items": "items"; "label": "label"; "loading": "loading"; "maxDisplayedItems": "maxDisplayedItems"; "multi": "multi"; "placeholder": "placeholder"; "prefix": "prefix"; "query": "query"; "queryKey": "queryKey"; "required": "required"; "selectAllIcon": "selectAllIcon"; "selectAllText": "selectAllText"; "selectionDisplayKey": "selectionDisplayKey"; "showAddItem": "showAddItem"; "showChevron": "showChevron"; "showIconOnSelectedItem": "showIconOnSelectedItem"; "showOptional": "showOptional"; "size": "size"; "strategy": "strategy"; "value": "value"; "valueKey": "valueKey"; }, {}, never, ["*"], false, never>;
|
|
667
683
|
}
|
|
668
684
|
export declare interface PSelect extends Components.PSelect {
|
|
669
685
|
/**
|
|
@@ -687,15 +703,6 @@ export declare interface PSelect extends Components.PSelect {
|
|
|
687
703
|
*/
|
|
688
704
|
add: EventEmitter<CustomEvent<any>>;
|
|
689
705
|
}
|
|
690
|
-
export declare class PSliderIndicator {
|
|
691
|
-
protected z: NgZone;
|
|
692
|
-
protected el: HTMLPSliderIndicatorElement;
|
|
693
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
694
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PSliderIndicator, never>;
|
|
695
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSliderIndicator, "p-slider-indicator", never, { "active": "active"; }, {}, never, ["*"], false, never>;
|
|
696
|
-
}
|
|
697
|
-
export declare interface PSliderIndicator extends Components.PSliderIndicator {
|
|
698
|
-
}
|
|
699
706
|
export declare class PSmile {
|
|
700
707
|
protected z: NgZone;
|
|
701
708
|
protected el: HTMLPSmileElement;
|
|
@@ -705,21 +712,12 @@ export declare class PSmile {
|
|
|
705
712
|
}
|
|
706
713
|
export declare interface PSmile extends Components.PSmile {
|
|
707
714
|
}
|
|
708
|
-
export declare class PStatus {
|
|
709
|
-
protected z: NgZone;
|
|
710
|
-
protected el: HTMLPStatusElement;
|
|
711
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
712
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PStatus, never>;
|
|
713
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStatus, "p-status", never, { "icon": "icon"; "iconFlip": "iconFlip"; "iconRotate": "iconRotate"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
714
|
-
}
|
|
715
|
-
export declare interface PStatus extends Components.PStatus {
|
|
716
|
-
}
|
|
717
715
|
export declare class PStepper {
|
|
718
716
|
protected z: NgZone;
|
|
719
717
|
protected el: HTMLPStepperElement;
|
|
720
718
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
721
719
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepper, never>;
|
|
722
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; }, {}, never, ["*"], false, never>;
|
|
720
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepper, "p-stepper", never, { "activeStep": "activeStep"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "enableAutoStatus": "enableAutoStatus"; "steps": "steps"; }, {}, never, ["*"], false, never>;
|
|
723
721
|
}
|
|
724
722
|
export declare interface PStepper extends Components.PStepper {
|
|
725
723
|
}
|
|
@@ -728,7 +726,7 @@ export declare class PStepperItem {
|
|
|
728
726
|
protected el: HTMLPStepperItemElement;
|
|
729
727
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
730
728
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperItem, never>;
|
|
731
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; }, {}, never, ["*"], false, never>;
|
|
729
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperItem, "p-stepper-item", never, { "active": "active"; "align": "align"; "contentPosition": "contentPosition"; "direction": "direction"; "finished": "finished"; "number": "number"; }, {}, never, ["*"], false, never>;
|
|
732
730
|
}
|
|
733
731
|
export declare interface PStepperItem extends Components.PStepperItem {
|
|
734
732
|
}
|
|
@@ -823,7 +821,7 @@ export declare class PTableRow {
|
|
|
823
821
|
protected el: HTMLPTableRowElement;
|
|
824
822
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
825
823
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTableRow, never>;
|
|
826
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "enableHover": "enableHover"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
824
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTableRow, "p-table-row", never, { "checked": "checked"; "enableHover": "enableHover"; "isLast": "isLast"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
827
825
|
}
|
|
828
826
|
export declare interface PTableRow extends Components.PTableRow {
|
|
829
827
|
}
|
|
@@ -871,7 +869,7 @@ export declare class PTooltip {
|
|
|
871
869
|
protected el: HTMLPTooltipElement;
|
|
872
870
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
873
871
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTooltip, never>;
|
|
874
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "
|
|
872
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTooltip, "p-tooltip", never, { "canManuallyClose": "canManuallyClose"; "content": "content"; "enableUserInput": "enableUserInput"; "offset": "offset"; "placement": "placement"; "show": "show"; "strategy": "strategy"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
875
873
|
}
|
|
876
874
|
export declare interface PTooltip extends Components.PTooltip {
|
|
877
875
|
/**
|
package/lib/stencil/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PCheckbox | typeof d.PContentSlider | typeof d.
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.PAccordion | typeof d.PAttachment | typeof d.PAvatar | typeof d.PAvatarGroup | typeof d.PBackdrop | typeof d.PBadge | typeof d.PButton | typeof d.PButtonGroup | typeof d.PCalendar | typeof d.PCardBody | typeof d.PCardContainer | typeof d.PCardHeader | typeof d.PCheckbox | typeof d.PContentSlider | typeof d.PCropper | typeof d.PDatepicker | typeof d.PDivider | typeof d.PDrawer | typeof d.PDrawerBody | typeof d.PDrawerContainer | typeof d.PDrawerHeader | typeof d.PDropdown | typeof d.PDropdownMenuContainer | typeof d.PDropdownMenuItem | typeof d.PEmptyState | typeof d.PField | typeof d.PFieldContainer | typeof d.PFloatingMenuContainer | typeof d.PFloatingMenuItem | typeof d.PHelper | typeof d.PIbanIcon | typeof d.PIcon | typeof d.PIllustration | typeof d.PIllustrationDeprecated | typeof d.PInfoPanel | typeof d.PLabel | typeof d.PLayout | typeof d.PListing | typeof d.PListingItem | typeof d.PListingLine | typeof d.PLoader | typeof d.PModal | typeof d.PModalBody | typeof d.PModalContainer | typeof d.PModalFooter | typeof d.PModalHeader | typeof d.PNavbar | typeof d.PNavigationItem | typeof d.PNavigationSection | typeof d.PNavigationTitle | typeof d.PPagination | typeof d.PPaginationPages | typeof d.PPaginationPagesItem | typeof d.PPaginationSize | typeof d.PProfile | typeof d.PRadio | typeof d.PRange | typeof d.PSegmentContainer | typeof d.PSegmentItem | typeof d.PSelect | typeof d.PSmile | typeof d.PStepper | typeof d.PStepperItem | typeof d.PStepperLine | typeof d.PTabContainer | typeof d.PTabItem | typeof d.PTableContainer | typeof d.PTableFooter | typeof d.PTableHeader | typeof d.PTableRow | typeof d.PTableRowActionsContainer | typeof d.PToast | typeof d.PToggle | typeof d.PTooltip)[];
|
package/lib/stencil.module.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./stencil/components";
|
|
3
3
|
export declare class StencilModule {
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<StencilModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StencilModule, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PEmptyState, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PIllustrationDeprecated, typeof i1.PInfoPanel, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PListing, typeof i1.PListingItem, typeof i1.PListingLine, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPagination, typeof i1.PPaginationPages, typeof i1.PPaginationPagesItem, typeof i1.PPaginationSize, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PRange, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSmile, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabContainer, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PTableRowActionsContainer, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip], never, [typeof i1.PAccordion, typeof i1.PAttachment, typeof i1.PAvatar, typeof i1.PAvatarGroup, typeof i1.PBackdrop, typeof i1.PBadge, typeof i1.PButton, typeof i1.PButtonGroup, typeof i1.PCalendar, typeof i1.PCardBody, typeof i1.PCardContainer, typeof i1.PCardHeader, typeof i1.PCheckbox, typeof i1.PContentSlider, typeof i1.PCropper, typeof i1.PDatepicker, typeof i1.PDivider, typeof i1.PDrawer, typeof i1.PDrawerBody, typeof i1.PDrawerContainer, typeof i1.PDrawerHeader, typeof i1.PDropdown, typeof i1.PDropdownMenuContainer, typeof i1.PDropdownMenuItem, typeof i1.PEmptyState, typeof i1.PField, typeof i1.PFieldContainer, typeof i1.PFloatingMenuContainer, typeof i1.PFloatingMenuItem, typeof i1.PHelper, typeof i1.PIbanIcon, typeof i1.PIcon, typeof i1.PIllustration, typeof i1.PIllustrationDeprecated, typeof i1.PInfoPanel, typeof i1.PLabel, typeof i1.PLayout, typeof i1.PListing, typeof i1.PListingItem, typeof i1.PListingLine, typeof i1.PLoader, typeof i1.PModal, typeof i1.PModalBody, typeof i1.PModalContainer, typeof i1.PModalFooter, typeof i1.PModalHeader, typeof i1.PNavbar, typeof i1.PNavigationItem, typeof i1.PNavigationSection, typeof i1.PNavigationTitle, typeof i1.PPagination, typeof i1.PPaginationPages, typeof i1.PPaginationPagesItem, typeof i1.PPaginationSize, typeof i1.PProfile, typeof i1.PRadio, typeof i1.PRange, typeof i1.PSegmentContainer, typeof i1.PSegmentItem, typeof i1.PSelect, typeof i1.PSmile, typeof i1.PStepper, typeof i1.PStepperItem, typeof i1.PStepperLine, typeof i1.PTabContainer, typeof i1.PTabItem, typeof i1.PTableContainer, typeof i1.PTableFooter, typeof i1.PTableHeader, typeof i1.PTableRow, typeof i1.PTableRowActionsContainer, typeof i1.PToast, typeof i1.PToggle, typeof i1.PTooltip]>;
|
|
6
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<StencilModule>;
|
|
7
7
|
}
|
package/package.json
CHANGED
package/paperless.css
CHANGED
|
@@ -268,6 +268,10 @@
|
|
|
268
268
|
border-radius: 0.25rem !important
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
.border {
|
|
272
|
+
border-width: 1px !important
|
|
273
|
+
}
|
|
274
|
+
|
|
271
275
|
.pr-0 {
|
|
272
276
|
padding-right: 0px !important
|
|
273
277
|
}
|
|
@@ -280,13 +284,19 @@
|
|
|
280
284
|
font-weight: 600 !important
|
|
281
285
|
}
|
|
282
286
|
|
|
283
|
-
.text-
|
|
287
|
+
.text-black-teal {
|
|
288
|
+
--tw-text-opacity: 1 !important;
|
|
289
|
+
color: rgb(3 42 36 / var(--tw-text-opacity, 1)) !important
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.text-black-teal-300 {
|
|
284
293
|
--tw-text-opacity: 1 !important;
|
|
285
|
-
color: rgb(
|
|
294
|
+
color: rgb(104 127 124 / var(--tw-text-opacity, 1)) !important
|
|
286
295
|
}
|
|
287
296
|
|
|
288
|
-
.
|
|
289
|
-
text-
|
|
297
|
+
.text-black-teal-400 {
|
|
298
|
+
--tw-text-opacity: 1 !important;
|
|
299
|
+
color: rgb(53 85 80 / var(--tw-text-opacity, 1)) !important
|
|
290
300
|
}
|
|
291
301
|
|
|
292
302
|
.opacity-0 {
|