keevo-components 2.0.298 → 2.0.299
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/kv-table/kv-table.component.mjs +20 -21
- package/fesm2022/keevo-components.mjs +19 -20
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- package/lib/components/kv-table/kv-table.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export declare class KvButtonPopupComponent extends BaseComponentButton {
|
|
|
8
8
|
items: MenuItem[];
|
|
9
9
|
classBtn: string;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
|
-
type: import("@angular/core").InputSignal<"
|
|
11
|
+
type: import("@angular/core").InputSignal<"text" | "normal" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -21,6 +21,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
21
21
|
globalFilterFields: string[];
|
|
22
22
|
selectedSize: string;
|
|
23
23
|
widthPage: import("@angular/core").WritableSignal<number>;
|
|
24
|
+
tableWidth: import("@angular/core").WritableSignal<number>;
|
|
24
25
|
checked: boolean;
|
|
25
26
|
columns: TableConfigColumn[];
|
|
26
27
|
deletedColuns: TableConfigColumn[];
|
|
@@ -149,7 +150,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
149
150
|
dinamicColumnSet(e: any, col: TableConfigColumn): void;
|
|
150
151
|
abrirMenuFiltro(e: any): void;
|
|
151
152
|
fecharMenuFiltro(): void;
|
|
152
|
-
onEscapeKey(
|
|
153
|
+
onEscapeKey(): void;
|
|
153
154
|
onClickEvent(event: any): void;
|
|
154
155
|
styleSetter(style: string, data: string): void;
|
|
155
156
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
@@ -162,6 +163,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
162
163
|
onSort(e: any): void;
|
|
163
164
|
get config(): TableConfig;
|
|
164
165
|
columnsFilter: import("@angular/core").Signal<TableConfigColumn[]>;
|
|
166
|
+
updateTableWidth(): void;
|
|
165
167
|
returnMaxWidth: import("@angular/core").Signal<(widthCol: string) => string>;
|
|
166
168
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTableComponent, never>;
|
|
167
169
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvTableComponent, "kv-table", never, { "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "_templates": { "alias": "templates"; "required": false; }; "setConfig": { "alias": "config"; "required": false; }; "first": { "alias": "first"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "defaultSortField": { "alias": "defaultSortField"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "paginator": { "alias": "paginator"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "tableSize": { "alias": "tableSize"; "required": false; }; "filterColumnsBtn": { "alias": "filterColumnsBtn"; "required": false; }; "replaceEmptyValues": { "alias": "replaceEmptyValues"; "required": false; }; "autoFocusSearch": { "alias": "autoFocusSearch"; "required": false; }; "filtrosAvancados": { "alias": "filtrosAvancados"; "required": false; }; "scrollHeight": { "alias": "scrollHeight"; "required": false; }; "isTableScrollable": { "alias": "isTableScrollable"; "required": false; }; "tableCaptalized": { "alias": "tableCaptalized"; "required": false; }; "rowTrackBy": { "alias": "rowTrackBy"; "required": false; }; "responsiveLayout": { "alias": "responsiveLayout"; "required": false; }; "disabledHeaderCheckbox": { "alias": "disabledHeaderCheckbox"; "required": false; }; "applyStyle": { "alias": "applyStyle"; "required": false; }; "pageLinksOptions": { "alias": "pageLinksOptions"; "required": false; }; "showFirstLastIcon": { "alias": "showFirstLastIcon"; "required": false; }; "ellipsisText": { "alias": "ellipsisText"; "required": false; "isSignal": true; }; "isLoadingSkeleton": { "alias": "isLoadingSkeleton"; "required": false; "isSignal": true; }; "filterButton": { "alias": "filterButton"; "required": false; "isSignal": true; }; "filterButtonBadge": { "alias": "filterButtonBadge"; "required": false; "isSignal": true; }; "emptyImage": { "alias": "emptyImage"; "required": false; "isSignal": true; }; "emptyTableImg": { "alias": "emptyTableImg"; "required": false; "isSignal": true; }; }, { "first": "firstChange"; "rows": "rowsChange"; "onActiveItem": "onActiveItem"; "onActiveItemLote": "onActiveItemLote"; "onPaginate": "onPaginate"; "onSelectionChange": "onSelectionChange"; "doubleClickEvent": "doubleClickEvent"; "filterField": "filterField"; "onSwitchTableChange": "onSwitchTableChange"; }, ["templates"], ["[filtro]"], false, never>;
|