@annalib/anna-core 12.9.0 → 12.10.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.
Files changed (22) hide show
  1. package/esm2020/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +14 -0
  2. package/esm2020/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +5 -4
  3. package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
  4. package/esm2020/lib/anna-core.module.mjs +10 -5
  5. package/esm2020/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +1 -1
  6. package/esm2020/lib/anna-dropdown-lib/components/anna-week-calendar-filter/anna-week-calendar-filter.component.mjs +1 -1
  7. package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +20 -18
  8. package/esm2020/public-api.mjs +2 -1
  9. package/fesm2015/annalib-anna-core.mjs +45 -27
  10. package/fesm2015/annalib-anna-core.mjs.map +1 -1
  11. package/fesm2020/annalib-anna-core.mjs +45 -27
  12. package/fesm2020/annalib-anna-core.mjs.map +1 -1
  13. package/lib/anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component.d.ts +8 -0
  14. package/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.d.ts +3 -2
  15. package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +2 -1
  16. package/lib/anna-core.module.d.ts +12 -11
  17. package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +1 -3
  18. package/package.json +1 -1
  19. package/public-api.d.ts +1 -0
  20. package/src/lib/anna-common-scss/_customDropdown.scss +1 -2
  21. package/src/lib/anna-common-scss/_generic-modal.scss +59 -0
  22. package/src/lib/anna-common-scss/_generic-table-common.scss +45 -68
@@ -0,0 +1,8 @@
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
+ }
@@ -1,9 +1,10 @@
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';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class AnnaIconColumnComponent implements OnInit {
5
6
  componentName: string;
6
- objectKey: string;
7
+ iconToShow: IconToShow;
7
8
  dataObject: any;
8
9
  PfpIconActiveColor: string;
9
10
  PfpIconDisableColor: string;
@@ -12,5 +13,5 @@ export declare class AnnaIconColumnComponent implements OnInit {
12
13
  ngOnInit(): void;
13
14
  svgIconClicked(rowData: any, key: string): void;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaIconColumnComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<AnnaIconColumnComponent, "anna-core-anna-icon-column", never, { "componentName": "componentName"; "objectKey": "objectKey"; "dataObject": "dataObject"; }, { "onColumnIconClicked": "onColumnIconClicked"; }, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<AnnaIconColumnComponent, "anna-core-anna-icon-column", never, { "componentName": "componentName"; "iconToShow": "iconToShow"; "dataObject": "dataObject"; }, { "onColumnIconClicked": "onColumnIconClicked"; }, never, never, false, never>;
16
17
  }
@@ -21,7 +21,7 @@ export interface IHeaderInfo {
21
21
  tooltip?: ITooltip;
22
22
  joinedFilterSortObjectKeys?: string;
23
23
  }
24
- declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "STRING__TEXT_ACTION" | "STRING__ICON_ACTION" | "STRING___ICON_OR_TEXT_ACTION" | "HTML" | "HTML_STRING" | "ICON_CELL" | "STRING_OR_INPUT";
24
+ declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA" | "STRING__TEXT_ACTION" | "STRING__ICON_ACTION" | "STRING___ICON_OR_TEXT_ACTION" | "HTML" | "HTML_STRING" | "ICON_CELL";
25
25
  declare type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
26
26
  export interface ITotalRowInfo {
27
27
  colspan: number;
@@ -108,4 +108,5 @@ 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";
111
112
  export {};
@@ -22,18 +22,19 @@ 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 "@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";
25
+ import * as i24 from "./anna-core-shared-lib/components/anna-deleted-order-icon-template/anna-deleted-order-icon-template.component";
26
+ import * as i25 from "@angular/common";
27
+ import * as i26 from "@ng-bootstrap/ng-bootstrap";
28
+ import * as i27 from "@angular/forms";
29
+ import * as i28 from "@angular/material/radio";
30
+ import * as i29 from "@angular/material/button-toggle";
31
+ import * as i30 from "@angular/material/table";
32
+ import * as i31 from "@angular-slider/ngx-slider";
33
+ import * as i32 from "ngx-skeleton-loader";
34
+ import * as i33 from "@angular/cdk/scrolling";
35
+ import * as i34 from "ng-circle-progress";
35
36
  export declare class AnnaCoreModule {
36
37
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaCoreModule, never>;
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]>;
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, typeof i24.AnnaDeletedOrderIconTemplateComponent], [typeof i25.CommonModule, typeof i26.NgbModule, typeof i27.FormsModule, typeof i28.MatRadioModule, typeof i29.MatButtonToggleModule, typeof i30.MatTableModule, typeof i31.NgxSliderModule, typeof i32.NgxSkeletonLoaderModule, typeof i33.ScrollingModule, typeof i34.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, typeof i24.AnnaDeletedOrderIconTemplateComponent]>;
38
39
  static ɵinj: i0.ɵɵInjectorDeclaration<AnnaCoreModule>;
39
40
  }
@@ -70,7 +70,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
70
70
  clickableDataClicked: EventEmitter<any>;
71
71
  notificationIconHover: EventEmitter<any>;
72
72
  notificationIconHoverLeave: EventEmitter<any>;
73
- editableInputEdited: EventEmitter<any>;
74
73
  numberOfSkeletonRows: number[][];
75
74
  tableDataWrapper: any[];
76
75
  rowChecked: boolean;
@@ -301,8 +300,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
301
300
  mouseEnterOnTextActionType(rowData: any, tooltipKey: string): void;
302
301
  onClickableDataClicked(Rowdata: any, id: number): void;
303
302
  removeTooltipOnScroll(): void;
304
- editableInputValueChanged(value: any, row: any): void;
305
303
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNonEditableGenericTableComponent, never>;
306
- 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"; "editableInputEdited": "editableInputEdited"; }, 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>;
307
305
  }
308
306
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "12.9.0",
3
+ "version": "12.10.0",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^2.0.4",
6
6
  "@angular/common": "^15.2.9",
package/public-api.d.ts CHANGED
@@ -6,6 +6,7 @@ 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";
9
10
  export * from "./lib/anna-core-shared-lib/services/anna-date-time-format.service";
10
11
  export * from "./lib/anna-core-shared-lib/services/anna-global-config.service";
11
12
  export * from "./lib/anna-core-shared-lib/services/anna-filter.service";
@@ -119,5 +119,4 @@ span.selected-item{
119
119
 
120
120
  ::ng-deep .cdk-overlay-container{
121
121
  z-index: 1051;
122
- }
123
-
122
+ }
@@ -0,0 +1,59 @@
1
+ @mixin generic-modal-for-user-popup {
2
+ .float-end {
3
+ margin-left: auto;
4
+ }
5
+
6
+ .close {
7
+ margin-left: auto;
8
+ }
9
+ .modal-dialog {
10
+ top: 100px !important;
11
+ }
12
+ .modal-content {
13
+ min-width: 26.625rem;
14
+ width: 26.625rem;
15
+ max-width: 26.625rem;
16
+ }
17
+
18
+ .modal-header {
19
+ background-image: url('../../../assets/images/bg-heads.png');
20
+ color: var(--body-color);
21
+ padding: 0.5rem 0.5rem 0.25rem 1rem;
22
+ border-bottom: none !important;
23
+
24
+ h3 {
25
+ margin-top: auto;
26
+ margin-bottom: 0;
27
+ @include fonts(Roboto, 1.125rem, normal, normal, normal, normal, normal);
28
+ }
29
+ }
30
+
31
+ .modal-body {
32
+ padding: 1.5rem;
33
+ font-size: 12px;
34
+ }
35
+
36
+ .buttons {
37
+ display: flex;
38
+ padding-inline: 0;
39
+ justify-content: space-between;
40
+ }
41
+
42
+ .primary-button {
43
+ @include modal-button(var(--primary-blue-color), var(--body-color), none);
44
+ }
45
+
46
+ .secondary-button {
47
+ @include modal-button(var(--secondary-btn-bg-color), var(--primary-blue-color), 1px solid rgba(38,139,255,.12));
48
+ }
49
+
50
+ button:focus {
51
+ outline: none;
52
+ }
53
+
54
+ button:disabled {
55
+ background-color: var(--disabled-button-color);
56
+ color: var(--primary-text-color-dark);
57
+ opacity: 0.5;
58
+ }
59
+ }
@@ -1,16 +1,21 @@
1
- @use "./fonts";
2
- @use "./colors";
1
+ @use "../anna-common-scss/fonts" as fonts;
2
+ @use "../anna-common-scss/colors" as colors;
3
3
 
4
4
  @mixin no-data-to-display-gt($tableHeight, $rowHeight, $noDataMarginTop) {
5
5
  .table-container {
6
6
  height: calc($tableHeight) !important;
7
+
7
8
  table {
8
- tbody {
9
- border-top: none;
10
- border-left: 1px solid #d3d3d3;
11
- border-right: 1px solid #d3d3d3;
12
- border-bottom: 1px solid #d3d3d3;
9
+ border: solid 1px #d4d4d4;
13
10
 
11
+ thead {
12
+ th {
13
+ box-shadow: none !important;
14
+ border: solid 1px #d4d4d4 !important;
15
+ }
16
+ }
17
+
18
+ tbody {
14
19
  tr.no-border-tr:first-of-type {
15
20
  height: $rowHeight !important;
16
21
 
@@ -34,7 +39,7 @@
34
39
  }
35
40
 
36
41
  @mixin resetFilterStyle() {
37
- padding: 0;
42
+ padding: 0;
38
43
  border: none;
39
44
  display: block;
40
45
  text-align: right;
@@ -47,9 +52,11 @@
47
52
  font-size: 14px !important;
48
53
  letter-spacing: normal !important;
49
54
  font-weight: normal !important;
55
+
50
56
  &:hover:enabled {
51
57
  color: #268bff;
52
58
  }
59
+
53
60
  &:disabled {
54
61
  color: #4a4a4a;
55
62
  opacity: 0.5;
@@ -62,6 +69,7 @@
62
69
  cursor: pointer !important;
63
70
  color: #268bff !important;
64
71
  text-decoration: underline !important;
72
+
65
73
  &.disabled {
66
74
  color: #b7b6b6;
67
75
  pointer-events: none;
@@ -72,102 +80,71 @@
72
80
 
73
81
  @mixin table-ellipses {
74
82
  div {
75
- text-overflow: ellipsis !important;
76
- overflow: hidden !important;
77
- white-space:nowrap !important;
78
- // width: 99.5%;
83
+ text-overflow: ellipsis !important;
84
+ overflow: hidden !important;
85
+ white-space: nowrap !important;
86
+ // width: 99.5%;
79
87
  }
80
88
  }
81
89
 
82
90
  @mixin table-ellipses-only-on-text-span {
83
91
  span {
84
- text-overflow: ellipsis !important;
85
- overflow: hidden !important;
86
- white-space:nowrap !important;
87
- display: inline-block !important;
88
- max-width: 92%;
89
- width: fit-content;
92
+ text-overflow: ellipsis !important;
93
+ overflow: hidden !important;
94
+ white-space: nowrap !important;
95
+ display: inline-block !important;
96
+ max-width: 92%;
97
+ width: fit-content;
90
98
  }
91
99
  }
92
100
 
93
- @mixin common-scrollbar($scrollTop) {
94
- &::-webkit-scrollbar {
95
- height: 4px;
96
- width: 4px;
97
- }
98
-
99
- &::-webkit-scrollbar-thumb {
100
- border-radius: 2px;
101
- border: solid 1px rgba(0, 0, 0, 0.1);
102
- background-color: rgba(0, 0, 0, 0.4);
103
- }
104
-
105
- &::-webkit-scrollbar-track {
106
- margin-top: $scrollTop;
107
- border: 1px solid rgba(0, 0, 0, 0.1) !important
108
- }
109
- }
110
-
111
- @mixin header-fixed($z-index) {
112
- position: sticky;
113
- z-index: $z-index;
114
- }
115
-
116
- @mixin sub-header($z-index) {
117
- position: sticky;
118
- z-index: $z-index;
119
- }
120
-
121
-
122
- @mixin genericTableHeaderShadow($columnNumber){
123
- .scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
101
+ @mixin genericTableHeaderShadow($columnNumber) {
102
+ .scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
124
103
  border: none !important;
125
104
  filter: drop-shadow(2px 0 2px colors.$lightGray-4);
126
105
  }
127
106
  }
128
107
 
129
- @mixin genericTableTotalRowShadow($columnNumber){
108
+ @mixin genericTableTotalRowShadow($columnNumber) {
130
109
  .scroll-left-shadow-effect .total-row td:nth-of-type(#{$columnNumber}) {
131
110
  filter: drop-shadow(2px 0 2px colors.$lightGray-4);
132
111
  }
133
112
  }
134
113
 
135
- @mixin genericTableTableDataShadow($columnNumber){
136
- .scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
114
+ @mixin genericTableTableDataShadow($columnNumber) {
115
+ .scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
137
116
  filter: drop-shadow(2px 0 1px colors.$lightGray-4);
138
117
  }
139
118
  }
140
119
 
141
- @mixin genericTableOverrideHeaderShadow($columnNumber){
142
- .scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
120
+ @mixin genericTableOverrideHeaderShadow($columnNumber) {
121
+ .scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
143
122
  box-shadow: none !important;
144
123
  border: none !important;
145
124
  filter: none;
146
125
  }
147
126
  }
148
127
 
149
- @mixin genericTableOverrideTableDataShadow($columnNumber){
150
- .scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
128
+ @mixin genericTableOverrideTableDataShadow($columnNumber) {
129
+ .scroll-left-shadow-effect td:nth-of-type(#{$columnNumber}) {
151
130
  filter: none;
152
131
  }
153
132
  }
154
133
 
155
- @mixin overrideEmptyTrBorders($startIndex){
156
-
157
- tr.no-border-tr:first-of-type{
158
-
159
- td:nth-of-type(#{$startIndex}){
134
+ @mixin overrideEmptyTrBorders($startIndex) {
135
+
136
+ tr.no-border-tr:first-of-type {
137
+
138
+ td:nth-of-type(#{$startIndex}) {
160
139
  box-shadow: inset 1px 0px 0px 0px #d4d4d4 !important;
161
140
  }
162
-
163
- td:nth-child(n+ #{$startIndex + 1}){
141
+
142
+ td:nth-child(n+ #{$startIndex + 1}) {
164
143
  box-shadow: none !important;
165
144
  }
166
145
 
167
- td:last-of-type{
146
+ td:last-of-type {
168
147
  box-shadow: inset -1px 0px 0px 0px #d4d4d4 !important
169
- }
148
+ }
170
149
  }
171
- }
172
-
173
-
150
+ }