ngx-vector-components 4.75.0 → 4.77.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/CHANGELOG.md +12 -0
- package/esm2020/lib/components/fields/data-table/data-table.component.mjs +6 -2
- package/esm2020/lib/models/profile.model.mjs +3 -1
- package/fesm2015/ngx-vector-components.mjs +7 -1
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +7 -1
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/components/fields/data-table/data-table.component.d.ts +2 -1
- package/lib/models/profile.model.d.ts +3 -1
- package/package.json +1 -1
|
@@ -39,6 +39,7 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
39
39
|
onSelectedRows: EventEmitter<any>;
|
|
40
40
|
onFilterChanged: EventEmitter<FilterChangedEvent>;
|
|
41
41
|
onTabSelected: EventEmitter<ListItem>;
|
|
42
|
+
onExpandRow: EventEmitter<any>;
|
|
42
43
|
filtersComponent: FiltersComponent | undefined;
|
|
43
44
|
selectedItems: any;
|
|
44
45
|
get tabs(): ListItem[];
|
|
@@ -77,5 +78,5 @@ export declare class DataTableComponent implements OnInit, OnDestroy {
|
|
|
77
78
|
private getStatusColor;
|
|
78
79
|
private getActiveStatusColor;
|
|
79
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableComponent, never>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "vector-data-table", never, { "columns": "columns"; "data": "data"; "exportExcel": "exportExcel"; "exportPDF": "exportPDF"; "totalRecords": "totalRecords"; "disabledHeadercheckbox": "disabledHeadercheckbox"; "filters": "filters"; "addItemLabel": "addItemLabel"; "pagination": "pagination"; "virtualPagination": "virtualPagination"; "tabs": "tabs"; "customButtons": "customButtons"; "addItemButtonPlusSign": "addItemButtonPlusSign"; "hasActions": "hasActions"; "hasExpandableIcon": "hasExpandableIcon"; "addNameColumnExpand": "addNameColumnExpand"; "expandable": "expandable"; "expansionTemplate": "expansionTemplate"; "selectionMode": "selectionMode"; "selectionType": "selectionType"; "height": "height"; }, { "onLazyLoad": "onLazyLoad"; "onFilter": "onFilter"; "onAdd": "onAdd"; "onExportExcel": "onExportExcel"; "onExportPDF": "onExportPDF"; "onSelectedRows": "onSelectedRows"; "onFilterChanged": "onFilterChanged"; "onTabSelected": "onTabSelected"; }, never, never>;
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "vector-data-table", never, { "columns": "columns"; "data": "data"; "exportExcel": "exportExcel"; "exportPDF": "exportPDF"; "totalRecords": "totalRecords"; "disabledHeadercheckbox": "disabledHeadercheckbox"; "filters": "filters"; "addItemLabel": "addItemLabel"; "pagination": "pagination"; "virtualPagination": "virtualPagination"; "tabs": "tabs"; "customButtons": "customButtons"; "addItemButtonPlusSign": "addItemButtonPlusSign"; "hasActions": "hasActions"; "hasExpandableIcon": "hasExpandableIcon"; "addNameColumnExpand": "addNameColumnExpand"; "expandable": "expandable"; "expansionTemplate": "expansionTemplate"; "selectionMode": "selectionMode"; "selectionType": "selectionType"; "height": "height"; }, { "onLazyLoad": "onLazyLoad"; "onFilter": "onFilter"; "onAdd": "onAdd"; "onExportExcel": "onExportExcel"; "onExportPDF": "onExportPDF"; "onSelectedRows": "onSelectedRows"; "onFilterChanged": "onFilterChanged"; "onTabSelected": "onTabSelected"; "onExpandRow": "onExpandRow"; }, never, never>;
|
|
81
82
|
}
|
|
@@ -262,5 +262,7 @@ export declare enum ProfileModuleActionType {
|
|
|
262
262
|
SHOW_MOVEMENT_ETCD = "Show Movement Etcd",
|
|
263
263
|
CREATE_AND_EDIT_NPS = "Create and edit NPS",
|
|
264
264
|
READ_NPS_INFORMATION = "Read NPS information",
|
|
265
|
-
|
|
265
|
+
TEX_ONBOARDING_TRACKING = "OnboardingTracking",
|
|
266
|
+
BIDDING_PARAMETERS = "Bidding Parameters",
|
|
267
|
+
DRIVER_SCORE_METRICS_ADMIN = "Driver Score Metrics Admin"
|
|
266
268
|
}
|