@annalib/anna-core 5.1.4 → 5.1.6
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/anna-core-shared-lib/constants/shared.constant.mjs +3 -2
- package/esm2020/lib/anna-core-shared-lib/models/anna-sort.model.mjs +7 -2
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +7 -5
- package/esm2020/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +2 -4
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +29 -24
- package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +6 -4
- package/fesm2015/annalib-anna-core.mjs +47 -35
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +47 -35
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/constants/shared.constant.d.ts +2 -1
- package/lib/anna-core-shared-lib/models/anna-sort.model.d.ts +5 -0
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,8 @@ export declare class Constants {
|
|
|
8
8
|
static readonly ACTIVE_USER_STATUS = "active";
|
|
9
9
|
static readonly DELETED_USER_STATUS = "deleted";
|
|
10
10
|
static readonly INACTIVE_USER_STATUS = "inactive";
|
|
11
|
-
static readonly OGAdminRole = "
|
|
11
|
+
static readonly OGAdminRole = "Ownership Group Admin";
|
|
12
|
+
static readonly ASARole = "Anna Station Admin";
|
|
12
13
|
static readonly dollars = "$";
|
|
13
14
|
}
|
|
14
15
|
export declare class ErrorCodes {
|
|
@@ -237,7 +237,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
237
237
|
svgIconClicked(data: GtColumnIconEmittedData): void;
|
|
238
238
|
textActionClicked(rowData: any, id: number): void;
|
|
239
239
|
viewDetailsClicked(rowData: any): void;
|
|
240
|
-
setColumnSortStateMap(): void;
|
|
241
240
|
storeSortTypeInTempVariable(event: SortType): void;
|
|
242
241
|
unCheckAllCheckbox(): void;
|
|
243
242
|
selectAllCheckbox(): void;
|
|
@@ -261,6 +260,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
261
260
|
checkIfSliderTooltipIsFiltered(): boolean;
|
|
262
261
|
setInitialValueMapForSliderFilter(): void;
|
|
263
262
|
checkIfSortingChanged(): boolean;
|
|
263
|
+
getColumnSortStateForSelectedRadio(): string;
|
|
264
264
|
disableApplyButtonOfSelectedFilter(): void;
|
|
265
265
|
disableCheckboxFilterApplyButton(): void;
|
|
266
266
|
trackByTooltipModelId(index: number, item: TooltipModel): number;
|