ui-core-abv 0.3.72 → 0.3.75
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/fesm2022/ui-core-abv.mjs +36 -10
- package/fesm2022/ui-core-abv.mjs.map +1 -1
- package/lib/components/status-label/status-label.component.d.ts +2 -1
- package/lib/components/table/table.component.d.ts +7 -2
- package/lib/components/tabs-button/tabs-button.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class UicStatusLabelComponent {
|
|
3
3
|
color: string;
|
|
4
4
|
type: 'status' | 'tag';
|
|
5
|
+
icon: string;
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicStatusLabelComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicStatusLabelComponent, "ui-status-label", never, { "color": { "alias": "color"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicStatusLabelComponent, "ui-status-label", never, { "color": { "alias": "color"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
7
8
|
}
|
|
@@ -8,6 +8,8 @@ export declare class UicTableComponent {
|
|
|
8
8
|
data: TableRow[];
|
|
9
9
|
loading: boolean;
|
|
10
10
|
disabled: boolean;
|
|
11
|
+
rowClickable: boolean;
|
|
12
|
+
rowExpandible: boolean;
|
|
11
13
|
pages: number;
|
|
12
14
|
size: number;
|
|
13
15
|
squeletonRows: number;
|
|
@@ -39,12 +41,14 @@ export declare class UicTableComponent {
|
|
|
39
41
|
value: boolean;
|
|
40
42
|
columName: string;
|
|
41
43
|
}>;
|
|
44
|
+
clickedRow: EventEmitter<string | number>;
|
|
42
45
|
allSelected: boolean;
|
|
43
46
|
checkedIds: Set<string | number>;
|
|
44
47
|
sortKey: string;
|
|
45
48
|
sortAsc: boolean;
|
|
46
49
|
filter: string;
|
|
47
50
|
page: number;
|
|
51
|
+
fullViewRows: (string | number)[];
|
|
48
52
|
getValue(data: TableRowData[], key: string): string;
|
|
49
53
|
getSubtext(data: TableRowData[], key: string): string;
|
|
50
54
|
isChecked(data: TableRowData[], key: string): boolean;
|
|
@@ -64,12 +68,13 @@ export declare class UicTableComponent {
|
|
|
64
68
|
toggleAll(checked: boolean): void;
|
|
65
69
|
areAllSelected(): void;
|
|
66
70
|
ngOnChanges(change: SimpleChanges): void;
|
|
67
|
-
doAction(rowId: string | number, key: string): void;
|
|
71
|
+
doAction(rowId: string | number, key: string, event?: MouseEvent): void;
|
|
68
72
|
resetCheckedIds(): void;
|
|
69
73
|
switchHandler(key: string | number, value: boolean, columName: string): void;
|
|
70
74
|
actionsRef?: ElementRef;
|
|
71
75
|
hasActions: boolean;
|
|
72
76
|
ngAfterContentInit(): void;
|
|
77
|
+
clickRow(id: number | string): void;
|
|
73
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<UicTableComponent, never>;
|
|
74
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "squeletonRows": { "alias": "squeletonRows"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "highlightedId": { "alias": "highlightedId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "searchEnabled": { "alias": "searchEnabled"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "searchOnKeydown": { "alias": "searchOnKeydown"; "required": false; }; "showEmptyMessage": { "alias": "showEmptyMessage"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "showTextPagination": { "alias": "showTextPagination"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "nextButtonText": { "alias": "nextButtonText"; "required": false; }; "previousButtonText": { "alias": "previousButtonText"; "required": false; }; "searcherShowButtonText": { "alias": "searcherShowButtonText"; "required": false; }; }, { "action": "action"; "update": "update"; "checkedChange": "checkedChange"; "switchChange": "switchChange"; }, ["actionsRef"], ["[actions]", "[filters]"], true, never>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UicTableComponent, "ui-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "rowClickable": { "alias": "rowClickable"; "required": false; }; "rowExpandible": { "alias": "rowExpandible"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; "size": { "alias": "size"; "required": false; }; "squeletonRows": { "alias": "squeletonRows"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "highlightedId": { "alias": "highlightedId"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "searchEnabled": { "alias": "searchEnabled"; "required": false; }; "searchLabel": { "alias": "searchLabel"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "headerClass": { "alias": "headerClass"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "searchOnKeydown": { "alias": "searchOnKeydown"; "required": false; }; "showEmptyMessage": { "alias": "showEmptyMessage"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "showTextPagination": { "alias": "showTextPagination"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "nextButtonText": { "alias": "nextButtonText"; "required": false; }; "previousButtonText": { "alias": "previousButtonText"; "required": false; }; "searcherShowButtonText": { "alias": "searcherShowButtonText"; "required": false; }; }, { "action": "action"; "update": "update"; "checkedChange": "checkedChange"; "switchChange": "switchChange"; "clickedRow": "clickedRow"; }, ["actionsRef"], ["[actions]", "[filters]"], true, never>;
|
|
75
80
|
}
|