@unifylib/ui-lib 1.1.20 → 1.1.22
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/esm2022/lib/components/action-confirmation/action-confirmation.component.mjs +3 -3
- package/esm2022/lib/components/activity-report-form/activity-report-form.component.mjs +2 -2
- package/esm2022/lib/components/base-table/base-table.component.mjs +26 -5
- package/esm2022/lib/components/report-details-dialog/report-details-dialog.component.mjs +2 -2
- package/esm2022/lib/components/report-form/report-form.component.mjs +2 -2
- package/esm2022/lib/components/shared-list/shared-list.component.mjs +2 -2
- package/fesm2022/iq-ui-lib.mjs +31 -10
- package/fesm2022/iq-ui-lib.mjs.map +1 -1
- package/fesm2022/unifylib-ui-lib.mjs +31 -10
- package/fesm2022/unifylib-ui-lib.mjs.map +1 -1
- package/lib/components/base-table/base-table.component.d.ts +9 -2
- package/package.json +1 -1
|
@@ -35,9 +35,12 @@ export declare class BaseTableComponent extends BaseUtils implements OnInit, OnC
|
|
|
35
35
|
responsive: boolean;
|
|
36
36
|
labels: any;
|
|
37
37
|
filterFields: FieldInfo[];
|
|
38
|
-
|
|
38
|
+
noDataFoundSvgPath: string;
|
|
39
39
|
noDataFoundTitle: string;
|
|
40
40
|
noDataFoundSubtitle: string;
|
|
41
|
+
noResultSvgPath: string;
|
|
42
|
+
noResultTitle: string;
|
|
43
|
+
noResultSubtitle: string;
|
|
41
44
|
totalElements: number;
|
|
42
45
|
pagesCount: number;
|
|
43
46
|
pageIndex: number;
|
|
@@ -132,6 +135,10 @@ export declare class BaseTableComponent extends BaseUtils implements OnInit, OnC
|
|
|
132
135
|
applyPendingFilters(): void;
|
|
133
136
|
handleFilterEmpty($event: boolean): void;
|
|
134
137
|
resetData($event: boolean): void;
|
|
138
|
+
hasFiltersApplied(): boolean;
|
|
139
|
+
getDisplaySvgPath(): string;
|
|
140
|
+
getDisplayTitle(): string;
|
|
141
|
+
getDisplaySubtitle(): string;
|
|
135
142
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTableComponent, never>;
|
|
136
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseTableComponent, "app-base-table", never, { "filterFields": { "alias": "filterFields"; "required": false; }; "
|
|
143
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseTableComponent, "app-base-table", never, { "filterFields": { "alias": "filterFields"; "required": false; }; "noDataFoundSvgPath": { "alias": "noDataFoundSvgPath"; "required": false; }; "noDataFoundTitle": { "alias": "noDataFoundTitle"; "required": false; }; "noDataFoundSubtitle": { "alias": "noDataFoundSubtitle"; "required": false; }; "noResultSvgPath": { "alias": "noResultSvgPath"; "required": false; }; "noResultTitle": { "alias": "noResultTitle"; "required": false; }; "noResultSubtitle": { "alias": "noResultSubtitle"; "required": false; }; "pageInfo": { "alias": "pageInfo"; "required": false; }; "enablePagination": { "alias": "enablePagination"; "required": false; }; "data": { "alias": "data"; "required": false; }; "listAction": { "alias": "listAction"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "pathParam": { "alias": "pathParam"; "required": false; }; "extraButton": { "alias": "extraButton"; "required": false; }; "enforceRefresh": { "alias": "enforceRefresh"; "required": false; }; "isPending": { "alias": "isPending"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; "reportRequest": { "alias": "reportRequest"; "required": false; }; "separateEndpointData": { "alias": "separateEndpointData"; "required": false; }; "manageablePages": { "alias": "manageablePages"; "required": false; }; "totalPagesCount": { "alias": "totalPagesCount"; "required": false; }; "currentPageIndex": { "alias": "currentPageIndex"; "required": false; }; "customizedData": { "alias": "customizedData"; "required": false; }; }, { "pageChange": "pageChange"; "userAction": "userAction"; "hyperLinkAction": "hyperLinkAction"; "extraAction": "extraAction"; "selectedColumn": "selectedColumn"; "listActionClicked": "listActionClicked"; "showDialog": "showDialog"; "clickRoutePage": "clickRoutePage"; }, never, never, true, never>;
|
|
137
144
|
}
|