@annalib/anna-core 12.3.0 → 12.5.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/esm2020/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +4 -5
- package/esm2020/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.mjs +5 -3
- package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
- package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +4 -4
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +58 -1
- package/esm2020/lib/anna-core-shared-lib/services/anna-number-format.service.mjs +13 -1
- package/esm2020/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +7 -1
- package/esm2020/lib/anna-core.module.mjs +5 -10
- package/esm2020/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +3 -3
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +13 -27
- package/esm2020/public-api.mjs +1 -2
- package/fesm2015/annalib-anna-core.mjs +104 -57
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +104 -57
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.d.ts +2 -3
- package/lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component.d.ts +2 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +0 -1
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +2 -2
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +4 -0
- package/lib/anna-core-shared-lib/services/anna-number-format.service.d.ts +1 -0
- package/lib/anna-core-shared-lib/services/anna-persisting-filter.service.d.ts +1 -0
- package/lib/anna-core.module.d.ts +11 -12
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/src/lib/anna-common-scss/_generic-table-common.scss +19 -43
- package/src/lib/anna-common-scss/_mat-menu.scss +17 -0
- package/src/lib/anna-common-scss/_sort.scss +1 -1
- package/esm2020/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +0 -14
- package/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.d.ts +0 -8
package/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { GtColumnIconEmittedData } from '../../models/anna-generic-data-type.model';
|
|
3
|
-
import { IconToShow } from '../../models/anna-non-editable-gt-models';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class AnnaIconColumnComponent implements OnInit {
|
|
6
5
|
componentName: string;
|
|
7
|
-
|
|
6
|
+
objectKey: string;
|
|
8
7
|
dataObject: any;
|
|
9
8
|
PfpIconActiveColor: string;
|
|
10
9
|
PfpIconDisableColor: string;
|
|
@@ -13,5 +12,5 @@ export declare class AnnaIconColumnComponent implements OnInit {
|
|
|
13
12
|
ngOnInit(): void;
|
|
14
13
|
svgIconClicked(rowData: any, key: string): void;
|
|
15
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaIconColumnComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaIconColumnComponent, "anna-core-anna-icon-column", never, { "componentName": "componentName"; "
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaIconColumnComponent, "anna-core-anna-icon-column", never, { "componentName": "componentName"; "objectKey": "objectKey"; "dataObject": "dataObject"; }, { "onColumnIconClicked": "onColumnIconClicked"; }, never, never, false, never>;
|
|
17
16
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AnnaPayForPerformanceIconTemplateComponent implements OnInit {
|
|
4
|
+
isTitle: boolean;
|
|
4
5
|
color: string;
|
|
5
6
|
width: string;
|
|
6
7
|
height: string;
|
|
7
8
|
constructor();
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaPayForPerformanceIconTemplateComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaPayForPerformanceIconTemplateComponent, "anna-pay-for-performance-icon-template", never, { "color": "color"; "width": "width"; "height": "height"; }, {}, never, never, false, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaPayForPerformanceIconTemplateComponent, "anna-pay-for-performance-icon-template", never, { "isTitle": "isTitle"; "color": "color"; "width": "width"; "height": "height"; }, {}, never, never, false, never>;
|
|
11
12
|
}
|
|
@@ -108,5 +108,4 @@ export interface IActionItemTypeSTRING__ICON_OR_TEXT_ACTION {
|
|
|
108
108
|
additionalTextBeforeLink: string;
|
|
109
109
|
enableTooltipForAdditionalText: boolean;
|
|
110
110
|
}
|
|
111
|
-
export declare type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER";
|
|
112
111
|
export {};
|
|
@@ -9,9 +9,9 @@ export declare class AnnaDateTimeFormatService {
|
|
|
9
9
|
constructor();
|
|
10
10
|
convertToNgbDateStandardFormat(date: any): NgbDateType | NgbDate;
|
|
11
11
|
convertToNgbDate(date: any, parseFormat: any): NgbDateType | NgbDate;
|
|
12
|
-
formatToTwelveHrs(time: any, callRemoveZero: boolean): any;
|
|
12
|
+
static formatToTwelveHrs(time: any, callRemoveZero: boolean): any;
|
|
13
13
|
convertTotwentyFourHrsFormat(time: any, callAddZero: any): any;
|
|
14
|
-
removeZero(time: any): any;
|
|
14
|
+
static removeZero(time: any): any;
|
|
15
15
|
addZero(time: any): any;
|
|
16
16
|
sortByTimeAscending(a: any, b: any): number;
|
|
17
17
|
sortByTimeDescending(a: any, b: any): number;
|
|
@@ -69,6 +69,10 @@ export declare class AnnaFilterService {
|
|
|
69
69
|
}, key: string): boolean;
|
|
70
70
|
updateStateOfTheCurrentFilterTab(sortMap: Map<string, SortType>): void;
|
|
71
71
|
updateStateOfAllTheKeys(sortMap: Map<string, SortType>): void;
|
|
72
|
+
incrementHour(value: any): any;
|
|
73
|
+
decrementHour(value: any): any;
|
|
74
|
+
incrementMinute(value: any): any;
|
|
75
|
+
decrementMinute(value: any): any;
|
|
72
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaFilterService, never>;
|
|
73
77
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaFilterService>;
|
|
74
78
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class AnnaNumberFormatService {
|
|
3
3
|
static GetRoundedValueWithUnits(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
4
|
+
static GetRoundedImpressionsWithUnits(inputValue: number, digitsToRoundDecimalPoint?: number): string;
|
|
4
5
|
static GetValueInUnits(inputValue: number): (string | number)[];
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNumberFormatService, never>;
|
|
6
7
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaNumberFormatService>;
|
|
@@ -3,6 +3,7 @@ export declare class AnnaPersistingFilterService {
|
|
|
3
3
|
constructor();
|
|
4
4
|
storeKeyValueInLocalStorage(val: any, isFilterKey?: boolean): string;
|
|
5
5
|
getActualQueryParams(key: string): string;
|
|
6
|
+
convertObjToQueryString(paramsObject: any): string;
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaPersistingFilterService, never>;
|
|
7
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaPersistingFilterService>;
|
|
8
9
|
}
|
|
@@ -22,19 +22,18 @@ import * as i20 from "./anna-core-shared-lib/directives/digits-only/digits-only.
|
|
|
22
22
|
import * as i21 from "./anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component";
|
|
23
23
|
import * as i22 from "./anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component";
|
|
24
24
|
import * as i23 from "./anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component";
|
|
25
|
-
import * as i24 from "
|
|
26
|
-
import * as i25 from "@
|
|
27
|
-
import * as i26 from "@
|
|
28
|
-
import * as i27 from "@angular/
|
|
29
|
-
import * as i28 from "@angular/material/
|
|
30
|
-
import * as i29 from "@angular/material/
|
|
31
|
-
import * as i30 from "@angular/
|
|
32
|
-
import * as i31 from "
|
|
33
|
-
import * as i32 from "
|
|
34
|
-
import * as i33 from "
|
|
35
|
-
import * as i34 from "ng-circle-progress";
|
|
25
|
+
import * as i24 from "@angular/common";
|
|
26
|
+
import * as i25 from "@ng-bootstrap/ng-bootstrap";
|
|
27
|
+
import * as i26 from "@angular/forms";
|
|
28
|
+
import * as i27 from "@angular/material/radio";
|
|
29
|
+
import * as i28 from "@angular/material/button-toggle";
|
|
30
|
+
import * as i29 from "@angular/material/table";
|
|
31
|
+
import * as i30 from "@angular-slider/ngx-slider";
|
|
32
|
+
import * as i31 from "ngx-skeleton-loader";
|
|
33
|
+
import * as i32 from "@angular/cdk/scrolling";
|
|
34
|
+
import * as i33 from "ng-circle-progress";
|
|
36
35
|
export declare class AnnaCoreModule {
|
|
37
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaCoreModule, never>;
|
|
38
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaCoreModule, [typeof i1.AnnaNoDataComponent, typeof i2.AnnaFilterSearchedTextPipe, typeof i3.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i4.AnnaTypeofDataPipe, typeof i2.AnnaFilterSearchedTextPipe, typeof i5.AnnaReplaceCharPipe, typeof i6.AnnaBuyerApprovalIconTemplateComponent, typeof i7.AnnaLiveIconTemplateComponent, typeof i8.AnnaNotifyIconTemplateComponent, typeof i9.AnnaPayForPerformanceIconTemplateComponent, typeof i10.AnnaRejectedIconTemplateComponent, typeof i11.showEllipsisTextOnHoverDirective, typeof i12.AnnaIconColumnComponent, typeof i13.AnnaWeekCalendarComponent, typeof i14.AnnaCalendarFilterComponent, typeof i15.AnnaSortComponent, typeof i16.AnnaVirtualTableDirective, typeof i17.AnnaNonEditableGenericTableComponent, typeof i18.AnnaTableVirtualScrollViewportComponent, typeof i19.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i20.DigitOnlyDirective, typeof i21.AnnaColumnDateRangeFilterComponent, typeof i22.AnnaColumnTimeFilterComponent, typeof i23.AnnaColumnCheckboxFilterComponent
|
|
37
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaCoreModule, [typeof i1.AnnaNoDataComponent, typeof i2.AnnaFilterSearchedTextPipe, typeof i3.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i4.AnnaTypeofDataPipe, typeof i2.AnnaFilterSearchedTextPipe, typeof i5.AnnaReplaceCharPipe, typeof i6.AnnaBuyerApprovalIconTemplateComponent, typeof i7.AnnaLiveIconTemplateComponent, typeof i8.AnnaNotifyIconTemplateComponent, typeof i9.AnnaPayForPerformanceIconTemplateComponent, typeof i10.AnnaRejectedIconTemplateComponent, typeof i11.showEllipsisTextOnHoverDirective, typeof i12.AnnaIconColumnComponent, typeof i13.AnnaWeekCalendarComponent, typeof i14.AnnaCalendarFilterComponent, typeof i15.AnnaSortComponent, typeof i16.AnnaVirtualTableDirective, typeof i17.AnnaNonEditableGenericTableComponent, typeof i18.AnnaTableVirtualScrollViewportComponent, typeof i19.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i20.DigitOnlyDirective, typeof i21.AnnaColumnDateRangeFilterComponent, typeof i22.AnnaColumnTimeFilterComponent, typeof i23.AnnaColumnCheckboxFilterComponent], [typeof i24.CommonModule, typeof i25.NgbModule, typeof i26.FormsModule, typeof i27.MatRadioModule, typeof i28.MatButtonToggleModule, typeof i29.MatTableModule, typeof i30.NgxSliderModule, typeof i31.NgxSkeletonLoaderModule, typeof i32.ScrollingModule, typeof i33.NgCircleProgressModule], [typeof i1.AnnaNoDataComponent, typeof i2.AnnaFilterSearchedTextPipe, typeof i3.AnnaConvertZeroOrNullOrUndefinedPipe, typeof i4.AnnaTypeofDataPipe, typeof i5.AnnaReplaceCharPipe, typeof i2.AnnaFilterSearchedTextPipe, typeof i6.AnnaBuyerApprovalIconTemplateComponent, typeof i7.AnnaLiveIconTemplateComponent, typeof i8.AnnaNotifyIconTemplateComponent, typeof i9.AnnaPayForPerformanceIconTemplateComponent, typeof i10.AnnaRejectedIconTemplateComponent, typeof i11.showEllipsisTextOnHoverDirective, typeof i12.AnnaIconColumnComponent, typeof i13.AnnaWeekCalendarComponent, typeof i14.AnnaCalendarFilterComponent, typeof i15.AnnaSortComponent, typeof i16.AnnaVirtualTableDirective, typeof i17.AnnaNonEditableGenericTableComponent, typeof i18.AnnaTableVirtualScrollViewportComponent, typeof i21.AnnaColumnDateRangeFilterComponent, typeof i22.AnnaColumnTimeFilterComponent, typeof i23.AnnaColumnCheckboxFilterComponent, typeof i19.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i20.DigitOnlyDirective]>;
|
|
39
38
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnnaCoreModule>;
|
|
40
39
|
}
|
|
@@ -50,6 +50,8 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
50
50
|
clickableRow: boolean;
|
|
51
51
|
setTableHeightWhenRowSizeIsFixed: boolean;
|
|
52
52
|
tableBorderBottomClassRequired: boolean;
|
|
53
|
+
hideSomeTds: boolean;
|
|
54
|
+
tdsHaveRowSpan: boolean;
|
|
53
55
|
toggleCheckbox: EventEmitter<any>;
|
|
54
56
|
toggleRowCheckbox: EventEmitter<any>;
|
|
55
57
|
toggleHeaderCheckbox: EventEmitter<any>;
|
|
@@ -299,6 +301,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
299
301
|
onClickableDataClicked(Rowdata: any, id: number): void;
|
|
300
302
|
removeTooltipOnScroll(): void;
|
|
301
303
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNonEditableGenericTableComponent, never>;
|
|
302
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaNonEditableGenericTableComponent, "anna-core-non-editable-generic-table-lib", never, { "showSkeletonLoading": "showSkeletonLoading"; "tableHeaders": "tableHeaders"; "tableData": "tableData"; "clonedTableData": "clonedTableData"; "gtGeneralConfig": "gtGeneralConfig"; "totalRowInfo": "totalRowInfo"; "gtDimension": "gtDimension"; "tableClass": "tableClass"; "maximumRowsWhichCanBeRenderedWithoutScroll": "maximumRowsWhichCanBeRenderedWithoutScroll"; "limit": "limit"; "includeBorderInTableHeight": "includeBorderInTableHeight"; "downloadInProgress": "downloadInProgress"; "percentDone": "percentDone"; "starredInProgress": "starredInProgress"; "clickableRow": "clickableRow"; "setTableHeightWhenRowSizeIsFixed": "setTableHeightWhenRowSizeIsFixed"; "tableBorderBottomClassRequired": "tableBorderBottomClassRequired"; }, { "toggleCheckbox": "toggleCheckbox"; "toggleRowCheckbox": "toggleRowCheckbox"; "toggleHeaderCheckbox": "toggleHeaderCheckbox"; "undoIconClicked": "undoIconClicked"; "filterAppliedToTable": "filterAppliedToTable"; "sortingAppliedToTable": "sortingAppliedToTable"; "rowClicked": "rowClicked"; "radioButtonSelected": "radioButtonSelected"; "columnFilterOpened": "columnFilterOpened"; "columnFilterClosed": "columnFilterClosed"; "gtIconClicked": "gtIconClicked"; "gtSVGIconClicked": "gtSVGIconClicked"; "gtTextActionClicked": "gtTextActionClicked"; "gtViewDetailClicked": "gtViewDetailClicked"; "downloadSpotDetails": "downloadSpotDetails"; "clickableDataClicked": "clickableDataClicked"; "notificationIconHover": "notificationIconHover"; "notificationIconHoverLeave": "notificationIconHoverLeave"; }, never, never, false, never>;
|
|
304
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaNonEditableGenericTableComponent, "anna-core-non-editable-generic-table-lib", never, { "showSkeletonLoading": "showSkeletonLoading"; "tableHeaders": "tableHeaders"; "tableData": "tableData"; "clonedTableData": "clonedTableData"; "gtGeneralConfig": "gtGeneralConfig"; "totalRowInfo": "totalRowInfo"; "gtDimension": "gtDimension"; "tableClass": "tableClass"; "maximumRowsWhichCanBeRenderedWithoutScroll": "maximumRowsWhichCanBeRenderedWithoutScroll"; "limit": "limit"; "includeBorderInTableHeight": "includeBorderInTableHeight"; "downloadInProgress": "downloadInProgress"; "percentDone": "percentDone"; "starredInProgress": "starredInProgress"; "clickableRow": "clickableRow"; "setTableHeightWhenRowSizeIsFixed": "setTableHeightWhenRowSizeIsFixed"; "tableBorderBottomClassRequired": "tableBorderBottomClassRequired"; "hideSomeTds": "hideSomeTds"; "tdsHaveRowSpan": "tdsHaveRowSpan"; }, { "toggleCheckbox": "toggleCheckbox"; "toggleRowCheckbox": "toggleRowCheckbox"; "toggleHeaderCheckbox": "toggleHeaderCheckbox"; "undoIconClicked": "undoIconClicked"; "filterAppliedToTable": "filterAppliedToTable"; "sortingAppliedToTable": "sortingAppliedToTable"; "rowClicked": "rowClicked"; "radioButtonSelected": "radioButtonSelected"; "columnFilterOpened": "columnFilterOpened"; "columnFilterClosed": "columnFilterClosed"; "gtIconClicked": "gtIconClicked"; "gtSVGIconClicked": "gtSVGIconClicked"; "gtTextActionClicked": "gtTextActionClicked"; "gtViewDetailClicked": "gtViewDetailClicked"; "downloadSpotDetails": "downloadSpotDetails"; "clickableDataClicked": "clickableDataClicked"; "notificationIconHover": "notificationIconHover"; "notificationIconHoverLeave": "notificationIconHoverLeave"; }, never, never, false, never>;
|
|
303
305
|
}
|
|
304
306
|
export {};
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ export * from "./lib/anna-core-shared-lib/components/anna-notify-icon-template/a
|
|
|
6
6
|
export * from "./lib/anna-core-shared-lib/components/anna-pay-for-performance-icon-template/anna-pay-for-performance-icon-template.component";
|
|
7
7
|
export * from "./lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component";
|
|
8
8
|
export * from "./lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component";
|
|
9
|
-
export * from "./lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component";
|
|
10
9
|
export * from "./lib/anna-core-shared-lib/services/anna-date-time-format.service";
|
|
11
10
|
export * from "./lib/anna-core-shared-lib/services/anna-global-config.service";
|
|
12
11
|
export * from "./lib/anna-core-shared-lib/services/anna-filter.service";
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
@use "../anna-common-scss/fonts" as fonts;
|
|
2
|
-
@use "../anna-common-scss/colors" as colors;
|
|
3
|
-
|
|
4
1
|
@mixin no-data-to-display-gt($tableHeight, $rowHeight, $noDataMarginTop) {
|
|
5
2
|
.table-container {
|
|
6
3
|
height: calc($tableHeight) !important;
|
|
@@ -39,6 +36,7 @@
|
|
|
39
36
|
display: block;
|
|
40
37
|
text-align: right;
|
|
41
38
|
margin-left: auto;
|
|
39
|
+
width: fit-content;
|
|
42
40
|
background-color: transparent;
|
|
43
41
|
text-decoration: underline;
|
|
44
42
|
color: #268bff;
|
|
@@ -89,53 +87,31 @@
|
|
|
89
87
|
}
|
|
90
88
|
}
|
|
91
89
|
|
|
92
|
-
@mixin
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
90
|
+
@mixin common-scrollbar($scrollTop) {
|
|
91
|
+
&::-webkit-scrollbar {
|
|
92
|
+
height: 4px;
|
|
93
|
+
width: 4px;
|
|
96
94
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
95
|
+
|
|
96
|
+
&::-webkit-scrollbar-thumb {
|
|
97
|
+
border-radius: 2px;
|
|
98
|
+
border: solid 1px rgba(0, 0, 0, 0.1);
|
|
99
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
102
100
|
}
|
|
103
|
-
}
|
|
104
101
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
102
|
+
&::-webkit-scrollbar-track {
|
|
103
|
+
margin-top: $scrollTop;
|
|
104
|
+
border: 1px solid rgba(0, 0, 0, 0.1) !important
|
|
108
105
|
}
|
|
109
106
|
}
|
|
110
107
|
|
|
111
|
-
@mixin
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
border: none !important;
|
|
115
|
-
filter: none;
|
|
116
|
-
}
|
|
108
|
+
@mixin header-fixed($z-index) {
|
|
109
|
+
position: sticky;
|
|
110
|
+
z-index: $z-index;
|
|
117
111
|
}
|
|
118
112
|
|
|
119
|
-
@mixin
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}
|
|
113
|
+
@mixin sub-header($z-index) {
|
|
114
|
+
position: sticky;
|
|
115
|
+
z-index: $z-index;
|
|
123
116
|
}
|
|
124
117
|
|
|
125
|
-
@mixin overrideEmptyTrBorders($startIndex){
|
|
126
|
-
|
|
127
|
-
tr.no-border-tr:first-of-type{
|
|
128
|
-
|
|
129
|
-
td:nth-of-type(#{$startIndex}){
|
|
130
|
-
box-shadow: inset 1px 0px 0px 0px #d4d4d4 !important;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
td:nth-child(n+ #{$startIndex + 1}){
|
|
134
|
-
box-shadow: none !important;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
td:last-of-type{
|
|
138
|
-
box-shadow: inset -1px 0px 0px 0px #d4d4d4 !important
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@mixin mat-menu-styling() {
|
|
2
|
+
&.mat-elevation-z8 {
|
|
3
|
+
box-shadow: var(--dropdown-box-shadow);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
button.mat-mdc-menu-item:hover {
|
|
7
|
+
background-color: var(--dropdown-hover-color);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
& .mat-mdc-menu-content.mdc-list {
|
|
11
|
+
background-color: var(--body-color);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
& .mat-mdc-menu-content {
|
|
15
|
+
padding: 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class AnnaDeletedOrderIconTemplateComponent {
|
|
4
|
-
constructor() { }
|
|
5
|
-
ngOnInit() {
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
AnnaDeletedOrderIconTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AnnaDeletedOrderIconTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
AnnaDeletedOrderIconTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: AnnaDeletedOrderIconTemplateComponent, selector: "anna-deleted-order-icon-template", ngImport: i0, template: "<i class=\"mdi mdi-file-remove-outline\"></i>", styles: [".mdi-file-remove-outline{font-size:1.5rem;color:#f44336}\n"] });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AnnaDeletedOrderIconTemplateComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{ selector: 'anna-deleted-order-icon-template', template: "<i class=\"mdi mdi-file-remove-outline\"></i>", styles: [".mdi-file-remove-outline{font-size:1.5rem;color:#f44336}\n"] }]
|
|
13
|
-
}], ctorParameters: function () { return []; } });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5uYS1kZWxldGVkLW9yZGVyLWljb24tdGVtcGxhdGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5uYS1jb3JlL3NyYy9saWIvYW5uYS1jb3JlLXNoYXJlZC1saWIvY29tcG9uZW50cy9hbm5hLWRlbGV0ZWQtb3JkZXItaWNvbi10ZW1wbGF0ZS9hbm5hLWRlbGV0ZWQtb3JkZXItaWNvbi10ZW1wbGF0ZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbm5hLWNvcmUvc3JjL2xpYi9hbm5hLWNvcmUtc2hhcmVkLWxpYi9jb21wb25lbnRzL2FubmEtZGVsZXRlZC1vcmRlci1pY29uLXRlbXBsYXRlL2FubmEtZGVsZXRlZC1vcmRlci1pY29uLXRlbXBsYXRlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7O0FBT2xELE1BQU0sT0FBTyxxQ0FBcUM7SUFFaEQsZ0JBQWdCLENBQUM7SUFFakIsUUFBUTtJQUNSLENBQUM7O2tJQUxVLHFDQUFxQztzSEFBckMscUNBQXFDLHdFQ1BsRCwrQ0FBMkM7MkZETzlCLHFDQUFxQztrQkFMakQsU0FBUzsrQkFDRSxrQ0FBa0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhbm5hLWRlbGV0ZWQtb3JkZXItaWNvbi10ZW1wbGF0ZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2FubmEtZGVsZXRlZC1vcmRlci1pY29uLXRlbXBsYXRlLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9hbm5hLWRlbGV0ZWQtb3JkZXItaWNvbi10ZW1wbGF0ZS5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBBbm5hRGVsZXRlZE9yZGVySWNvblRlbXBsYXRlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7IH1cclxuXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgfVxyXG5cclxufVxyXG4iLCI8aSBjbGFzcz1cIm1kaSBtZGktZmlsZS1yZW1vdmUtb3V0bGluZVwiPjwvaT4iXX0=
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AnnaDeletedOrderIconTemplateComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaDeletedOrderIconTemplateComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaDeletedOrderIconTemplateComponent, "anna-deleted-order-icon-template", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|