@annalib/anna-core 33.0.2 → 33.1.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/esm2022/annalib-anna-core.mjs +5 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +12 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-circular-progress/anna-circular-progress.component.mjs +52 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +11 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-est-icon-template/anna-est-icon-template.component.mjs +11 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +49 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-licensing-table/anna-licensing-table.component.mjs +45 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +12 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component.mjs +22 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +11 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +20 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +12 -0
- package/esm2022/lib/anna-core-shared-lib/components/anna-spinner-loader/anna-spinner-loader.component.mjs +26 -0
- package/esm2022/lib/anna-core-shared-lib/constants/anna-application.constants.mjs +5 -0
- package/esm2022/lib/anna-core-shared-lib/constants/shared.constant.mjs +49 -0
- package/esm2022/lib/anna-core-shared-lib/directives/digits-only/digits-only.directive.mjs +271 -0
- package/esm2022/lib/anna-core-shared-lib/directives/fixed-rows-popup-table/fixed-rows-popup-table.directive.mjs +46 -0
- package/esm2022/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.mjs +41 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-generic-data-type.model.mjs +2 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.mjs +2 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-licensing-table.model.mjs +26 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +67 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-sort.model.mjs +7 -0
- package/esm2022/lib/anna-core-shared-lib/models/anna-tooltip.model.mjs +32 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaConvertArrayToCommaSeperatedValue.pipe.mjs +39 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaConvertZeroOrNullOrUndefined.pipe.mjs +27 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaDateFormatter.pipe.mjs +21 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +53 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaReplaceChar.pipe.mjs +27 -0
- package/esm2022/lib/anna-core-shared-lib/pipes/annaTypeOfData.pipe.mjs +17 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +240 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +1522 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-generic-table.service.mjs +149 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-generic-tooltip-html.services.mjs +60 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +94 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-number-format.service.mjs +80 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +68 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-regex-patterns.service.mjs +20 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-sort.service.mjs +177 -0
- package/esm2022/lib/anna-core-shared-lib/services/anna-spinner-loader.service.mjs +24 -0
- package/esm2022/lib/anna-core-shared-lib/services/update-station-id.service.mjs +16 -0
- package/esm2022/lib/anna-core.module.mjs +221 -0
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +160 -0
- package/esm2022/lib/anna-dropdown-lib/components/anna-single-select/anna-single-select.component.mjs +155 -0
- package/esm2022/lib/anna-dropdown-lib/components/anna-single-select/models/anna-single-select.model.mjs +12 -0
- package/esm2022/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +359 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +264 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.mjs +189 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +319 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +302 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +1103 -0
- package/esm2022/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +69 -0
- package/esm2022/lib/anna-generic-table-lib/services/gt-table-related-common-functions.service.mjs +99 -0
- package/esm2022/public-api.mjs +65 -0
- package/fesm2022/annalib-anna-core.mjs +419 -208
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/components/anna-licensing-table/anna-licensing-table.component.d.ts +15 -0
- package/lib/anna-core-shared-lib/models/anna-global-dropdown-config.model.d.ts +1 -0
- package/lib/anna-core-shared-lib/models/anna-licensing-table.model.d.ts +18 -0
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +2 -2
- package/lib/anna-core-shared-lib/services/anna-number-format.service.d.ts +1 -0
- package/lib/anna-core-shared-lib/services/update-station-id.service.d.ts +6 -0
- package/lib/anna-core.module.d.ts +2 -1
- package/lib/anna-generic-table-lib/services/gt-table-related-common-functions.service.d.ts +11 -0
- package/package.json +9 -7
- package/public-api.d.ts +4 -0
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +0 -2
- package/src/lib/anna-common-scss/_button.scss +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +1 -2
- package/src/lib/anna-common-scss/_date-picker-form.scss +1 -1
- package/src/lib/anna-common-scss/_filters.scss +1 -2
- package/src/lib/anna-common-scss/_gt-table.scss +3 -2
- package/src/lib/anna-common-scss/_mat-button-toggle.scss +1 -1
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +1 -1
- package/src/lib/anna-common-scss/_sort.scss +1 -1
- package/src/lib/anna-common-scss/style.scss +1 -7
package/lib/anna-core-shared-lib/components/anna-licensing-table/anna-licensing-table.component.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { FeatureDetails, LicensingPlan } from "../../models/anna-licensing-table.model";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AnnaLicensingTableComponent {
|
|
5
|
+
plans: LicensingPlan[];
|
|
6
|
+
isEditMode: boolean;
|
|
7
|
+
loading: boolean;
|
|
8
|
+
defaultListing: boolean;
|
|
9
|
+
editingCurrentPlan: boolean;
|
|
10
|
+
maxValueForEvaluationPlanPOD: number;
|
|
11
|
+
specificationChanged: EventEmitter<any>;
|
|
12
|
+
onValueChange(updatedValue: any, featureDetails: FeatureDetails): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaLicensingTableComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaLicensingTableComponent, "anna-core-licensing-table", never, { "plans": { "alias": "plans"; "required": false; }; "isEditMode": { "alias": "isEditMode"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "defaultListing": { "alias": "defaultListing"; "required": false; }; "editingCurrentPlan": { "alias": "editingCurrentPlan"; "required": false; }; "maxValueForEvaluationPlanPOD": { "alias": "maxValueForEvaluationPlanPOD"; "required": false; }; }, { "specificationChanged": "specificationChanged"; }, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare class LicensingPlan {
|
|
2
|
+
Id: number;
|
|
3
|
+
PlanId: number;
|
|
4
|
+
PlanName: string;
|
|
5
|
+
PlanStartDate?: string;
|
|
6
|
+
PlanEndDate?: string;
|
|
7
|
+
PlanExpiryDays?: number;
|
|
8
|
+
FeatureDetails: FeatureDetails[];
|
|
9
|
+
constructor(data: any);
|
|
10
|
+
}
|
|
11
|
+
export declare class FeatureDetails {
|
|
12
|
+
FeatureId: number;
|
|
13
|
+
FeatureName: string;
|
|
14
|
+
FeatureDescription: string;
|
|
15
|
+
IsEnabled: boolean;
|
|
16
|
+
Specification: any[];
|
|
17
|
+
constructor(data: any);
|
|
18
|
+
}
|
|
@@ -16,14 +16,14 @@ export declare class AnnaDateTimeFormatService {
|
|
|
16
16
|
addZero(time: any): any;
|
|
17
17
|
sortByTimeAscending(a: any, b: any): number;
|
|
18
18
|
sortByTimeDescending(a: any, b: any): number;
|
|
19
|
-
compareTime(a: dayjs.Dayjs, b: dayjs.Dayjs, unit: UnitType, isAsc: boolean):
|
|
19
|
+
compareTime(a: dayjs.Dayjs, b: dayjs.Dayjs, unit: UnitType, isAsc: boolean): 0 | 1 | -1;
|
|
20
20
|
convertNgbDateToMoment(ngbDate: NgbDate | NgbDateType): string;
|
|
21
21
|
compareDate(a: string, b: string, isAsc: boolean): number;
|
|
22
22
|
static formatTwentyFourHourTimeToHHMMAFormat(value: any, date?: string): string;
|
|
23
23
|
static formatTwelveHourTimeToHHMMAFormat(timeValue: any, date?: string): string;
|
|
24
24
|
formatDateAndHHMMATimeToStandardFormat(dateAndTime: any): string;
|
|
25
25
|
compare(a: number | string, b: number | string, isAsc: boolean): number;
|
|
26
|
-
sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string):
|
|
26
|
+
sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string): 0 | 1 | -1;
|
|
27
27
|
convertNgbDateToMomentInSpecificFormat(ngbDate: NgbDateType, format: string): string;
|
|
28
28
|
getBroadcastWeek(startDate: any, format?: string): {
|
|
29
29
|
start: dayjs.Dayjs;
|
|
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class AnnaNumberFormatService {
|
|
3
3
|
static GetRoundedValueWithUnits(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
4
4
|
static GetRoundedValuesWithoutUnits(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
5
|
+
static GetRoundedValueWithUnitsAndDollarSymbol(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
5
6
|
static GetRoundedImpressionsWithUnits(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
6
7
|
static GetValueInUnits(inputValue: number): (string | number)[];
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNumberFormatService, never>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class UpdateStationIdService {
|
|
3
|
+
updateStationIdInLocalStorage(stationIds: string[] | number[]): void;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UpdateStationIdService, never>;
|
|
5
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UpdateStationIdService>;
|
|
6
|
+
}
|
|
@@ -36,8 +36,9 @@ import * as i34 from "./anna-core-shared-lib/pipes/annaConvertArrayToCommaSepera
|
|
|
36
36
|
import * as i35 from "./anna-core-shared-lib/directives/fixed-rows-popup-table/fixed-rows-popup-table.directive";
|
|
37
37
|
import * as i36 from "./anna-core-shared-lib/components/anna-est-icon-template/anna-est-icon-template.component";
|
|
38
38
|
import * as i37 from "./anna-core-shared-lib/components/anna-spinner-loader/anna-spinner-loader.component";
|
|
39
|
+
import * as i38 from "./anna-core-shared-lib/components/anna-licensing-table/anna-licensing-table.component";
|
|
39
40
|
export declare class AnnaCoreModule {
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaCoreModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaCoreModule, never, [typeof i1.CommonModule, typeof i2.NgbModule, typeof i3.FormsModule, typeof i4.MatRadioModule, typeof i5.MatButtonToggleModule, typeof i6.MatTableModule, typeof i7.NgxSliderModule, typeof i8.NgxSkeletonLoaderModule, typeof i9.ScrollingModule, typeof i10.NgCircleProgressModule, typeof i11.AnnaNoDataComponent, typeof i12.AnnaFilterSearchedTextPipe, typeof i13.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i14.AnnaTypeofDataPipe, typeof i12.AnnaFilterSearchedTextPipe, typeof i15.AnnaReplaceCharPipe, typeof i16.AnnaBuyerApprovalIconTemplateComponent, typeof i17.AnnaLiveIconTemplateComponent, typeof i18.AnnaNotifyIconTemplateComponent, typeof i19.AnnaPayForPerformanceIconTemplateComponent, typeof i20.AnnaRejectedIconTemplateComponent, typeof i21.ShowEllipsisTextOnHoverDirective, typeof i22.AnnaIconColumnComponent, typeof i23.AnnaWeekCalendarComponent, typeof i24.AnnaCalendarFilterComponent, typeof i25.AnnaSortComponent, typeof i26.AnnaNonEditableGenericTableComponent, typeof i27.DigitOnlyDirective, typeof i28.AnnaColumnDateRangeFilterComponent, typeof i29.AnnaColumnTimeFilterComponent, typeof i30.AnnaColumnCheckboxFilterComponent, typeof i31.AnnaDeletedOrderIconTemplateComponent, typeof i32.AnnaColumnSliderFilterComponent, typeof i33.AnnaDateFormatterPipe, typeof i34.AnnaConvertArrayToCommaSeperatedValue, typeof i35.FixedRowsPopupTableDirective, typeof i36.AnnaEstIconTemplateComponent, typeof i37.AnnaSpinnerLoaderComponent], [typeof i11.AnnaNoDataComponent, typeof i12.AnnaFilterSearchedTextPipe, typeof i13.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i14.AnnaTypeofDataPipe, typeof i15.AnnaReplaceCharPipe, typeof i12.AnnaFilterSearchedTextPipe, typeof i16.AnnaBuyerApprovalIconTemplateComponent, typeof i17.AnnaLiveIconTemplateComponent, typeof i18.AnnaNotifyIconTemplateComponent, typeof i19.AnnaPayForPerformanceIconTemplateComponent, typeof i19.AnnaPayForPerformanceIconTemplateComponent, typeof i20.AnnaRejectedIconTemplateComponent, typeof i21.ShowEllipsisTextOnHoverDirective, typeof i22.AnnaIconColumnComponent, typeof i23.AnnaWeekCalendarComponent, typeof i24.AnnaCalendarFilterComponent, typeof i25.AnnaSortComponent, typeof i26.AnnaNonEditableGenericTableComponent, typeof i28.AnnaColumnDateRangeFilterComponent, typeof i29.AnnaColumnTimeFilterComponent, typeof i30.AnnaColumnCheckboxFilterComponent, typeof i27.DigitOnlyDirective, typeof i31.AnnaDeletedOrderIconTemplateComponent, typeof i32.AnnaColumnSliderFilterComponent, typeof i33.AnnaDateFormatterPipe, typeof i34.AnnaConvertArrayToCommaSeperatedValue, typeof i35.FixedRowsPopupTableDirective, typeof i37.AnnaSpinnerLoaderComponent]>;
|
|
42
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaCoreModule, never, [typeof i1.CommonModule, typeof i2.NgbModule, typeof i3.FormsModule, typeof i4.MatRadioModule, typeof i5.MatButtonToggleModule, typeof i6.MatTableModule, typeof i7.NgxSliderModule, typeof i8.NgxSkeletonLoaderModule, typeof i9.ScrollingModule, typeof i10.NgCircleProgressModule, typeof i11.AnnaNoDataComponent, typeof i12.AnnaFilterSearchedTextPipe, typeof i13.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i14.AnnaTypeofDataPipe, typeof i12.AnnaFilterSearchedTextPipe, typeof i15.AnnaReplaceCharPipe, typeof i16.AnnaBuyerApprovalIconTemplateComponent, typeof i17.AnnaLiveIconTemplateComponent, typeof i18.AnnaNotifyIconTemplateComponent, typeof i19.AnnaPayForPerformanceIconTemplateComponent, typeof i20.AnnaRejectedIconTemplateComponent, typeof i21.ShowEllipsisTextOnHoverDirective, typeof i22.AnnaIconColumnComponent, typeof i23.AnnaWeekCalendarComponent, typeof i24.AnnaCalendarFilterComponent, typeof i25.AnnaSortComponent, typeof i26.AnnaNonEditableGenericTableComponent, typeof i27.DigitOnlyDirective, typeof i28.AnnaColumnDateRangeFilterComponent, typeof i29.AnnaColumnTimeFilterComponent, typeof i30.AnnaColumnCheckboxFilterComponent, typeof i31.AnnaDeletedOrderIconTemplateComponent, typeof i32.AnnaColumnSliderFilterComponent, typeof i33.AnnaDateFormatterPipe, typeof i34.AnnaConvertArrayToCommaSeperatedValue, typeof i35.FixedRowsPopupTableDirective, typeof i36.AnnaEstIconTemplateComponent, typeof i37.AnnaSpinnerLoaderComponent, typeof i38.AnnaLicensingTableComponent], [typeof i11.AnnaNoDataComponent, typeof i12.AnnaFilterSearchedTextPipe, typeof i13.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i14.AnnaTypeofDataPipe, typeof i15.AnnaReplaceCharPipe, typeof i12.AnnaFilterSearchedTextPipe, typeof i16.AnnaBuyerApprovalIconTemplateComponent, typeof i17.AnnaLiveIconTemplateComponent, typeof i18.AnnaNotifyIconTemplateComponent, typeof i19.AnnaPayForPerformanceIconTemplateComponent, typeof i19.AnnaPayForPerformanceIconTemplateComponent, typeof i20.AnnaRejectedIconTemplateComponent, typeof i21.ShowEllipsisTextOnHoverDirective, typeof i22.AnnaIconColumnComponent, typeof i23.AnnaWeekCalendarComponent, typeof i24.AnnaCalendarFilterComponent, typeof i25.AnnaSortComponent, typeof i26.AnnaNonEditableGenericTableComponent, typeof i28.AnnaColumnDateRangeFilterComponent, typeof i29.AnnaColumnTimeFilterComponent, typeof i30.AnnaColumnCheckboxFilterComponent, typeof i27.DigitOnlyDirective, typeof i31.AnnaDeletedOrderIconTemplateComponent, typeof i32.AnnaColumnSliderFilterComponent, typeof i33.AnnaDateFormatterPipe, typeof i34.AnnaConvertArrayToCommaSeperatedValue, typeof i35.FixedRowsPopupTableDirective, typeof i37.AnnaSpinnerLoaderComponent, typeof i38.AnnaLicensingTableComponent]>;
|
|
42
43
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnnaCoreModule>;
|
|
43
44
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GTTableRelatedCommonFunctionsService {
|
|
3
|
+
static GetDollarRoundedValue(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
4
|
+
static GetGrpOrImpsRoundedValue(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
5
|
+
static GetValueInUnits(inputValue: number): (string | number)[];
|
|
6
|
+
static returnTooltipsAsHtmlLiTagList(svgOrIconTooltipMsgs: string[]): string;
|
|
7
|
+
static formatArrayAsRangesWithHyphenValue(arr: number[]): string;
|
|
8
|
+
static convertToCommaSeperatedString(arrList: any[]): string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GTTableRelatedCommonFunctionsService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GTTableRelatedCommonFunctionsService>;
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@annalib/anna-core",
|
|
3
|
-
"version": "33.0
|
|
3
|
+
"version": "33.1.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular-slider/ngx-slider": "^
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
8
|
-
"@angular/material": "^
|
|
9
|
-
"@ng-bootstrap/ng-bootstrap": "^
|
|
5
|
+
"@angular-slider/ngx-slider": "^17.0.2",
|
|
6
|
+
"@angular/common": "^17.3.12",
|
|
7
|
+
"@angular/core": "^17.3.12",
|
|
8
|
+
"@angular/material": "^17.3.10",
|
|
9
|
+
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
|
|
10
10
|
"dayjs": "^1.11.13",
|
|
11
11
|
"lodash-es": "^4.17.21",
|
|
12
12
|
"ng-circle-progress": "^1.7.1",
|
|
13
|
-
"ngx-skeleton-loader": "^
|
|
13
|
+
"ngx-skeleton-loader": "^9.0.0",
|
|
14
14
|
"@types/node": "^20.17.6"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
".": {
|
|
26
26
|
"types": "./index.d.ts",
|
|
27
|
+
"esm2022": "./esm2022/annalib-anna-core.mjs",
|
|
28
|
+
"esm": "./esm2022/annalib-anna-core.mjs",
|
|
27
29
|
"default": "./fesm2022/annalib-anna-core.mjs"
|
|
28
30
|
}
|
|
29
31
|
},
|
package/public-api.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from "./lib/anna-core-shared-lib/components/anna-buyer-approval-icon-te
|
|
|
3
3
|
export * from "./lib/anna-core-shared-lib/components/anna-circular-progress/anna-circular-progress.component";
|
|
4
4
|
export * from "./lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component";
|
|
5
5
|
export * from "./lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component";
|
|
6
|
+
export * from "./lib/anna-core-shared-lib/components/anna-licensing-table/anna-licensing-table.component";
|
|
6
7
|
export * from "./lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component";
|
|
7
8
|
export * from "./lib/anna-core-shared-lib/components/anna-no-data/anna-no-data.component";
|
|
8
9
|
export * from "./lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component";
|
|
@@ -19,8 +20,11 @@ export * from "./lib/anna-core-shared-lib/services/anna-persisting-filter.servic
|
|
|
19
20
|
export * from "./lib/anna-core-shared-lib/services/anna-regex-patterns.service";
|
|
20
21
|
export * from "./lib/anna-core-shared-lib/services/anna-sort.service";
|
|
21
22
|
export * from "./lib/anna-core-shared-lib/services/anna-spinner-loader.service";
|
|
23
|
+
export * from "./lib/anna-core-shared-lib/services/update-station-id.service";
|
|
24
|
+
export * from "./lib/anna-generic-table-lib/services/gt-table-related-common-functions.service";
|
|
22
25
|
export * from "./lib/anna-core-shared-lib/models/anna-generic-data-type.model";
|
|
23
26
|
export * from "./lib/anna-core-shared-lib/models/anna-global-dropdown-config.model";
|
|
27
|
+
export * from "./lib/anna-core-shared-lib/models/anna-licensing-table.model";
|
|
24
28
|
export * from "./lib/anna-core-shared-lib/models/anna-non-editable-gt-models";
|
|
25
29
|
export * from "./lib/anna-core-shared-lib/models/anna-sort.model";
|
|
26
30
|
export * from "./lib/anna-core-shared-lib/models/anna-tooltip.model";
|
|
@@ -180,6 +180,7 @@
|
|
|
180
180
|
.lower-label {
|
|
181
181
|
@include fonts(Roboto, var(--table-body-fs), normal, 700, normal, normal, 0.3px);
|
|
182
182
|
color: $darkGray;
|
|
183
|
+
margin-top: -3px;
|
|
183
184
|
}
|
|
184
185
|
|
|
185
186
|
br {
|
|
@@ -364,7 +365,7 @@
|
|
|
364
365
|
}
|
|
365
366
|
}
|
|
366
367
|
|
|
367
|
-
$map-length:
|
|
368
|
+
$map-length: length($sticky-left-map);
|
|
368
369
|
$last-column-index: if($map-length > 0, nth(map-keys($sticky-left-map), $map-length), null);
|
|
369
370
|
|
|
370
371
|
@each $columnNumber, $sticky-prop in $sticky-left-map {
|
|
@@ -380,7 +381,7 @@
|
|
|
380
381
|
td:nth-child(n + #{$last-column-index}),
|
|
381
382
|
th:nth-child(n + #{$last-column-index}) {
|
|
382
383
|
position: relative;
|
|
383
|
-
top: -1px;
|
|
384
|
+
top: -1px !important;
|
|
384
385
|
// background-color: lightblue !important; /* Apply styles from non-sticky column to last column **/
|
|
385
386
|
}
|
|
386
387
|
}
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
@
|
|
2
|
-
@use "./filters" as *;
|
|
3
|
-
@use "./fonts" as *;
|
|
4
|
-
@use "./sort" as *;
|
|
5
|
-
@use "./application-spacing" as *;
|
|
6
|
-
@use "./customDropdown" as *;
|
|
7
|
-
@use "./icons" as *;
|
|
1
|
+
@import "./colors", "./filters", "./fonts", "./sort", "./application-spacing", "./customDropdown", "./icons";
|