@annalib/anna-core 35.8.5 → 35.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.
- package/README.md +28 -28
- package/fesm2022/annalib-anna-core.mjs +55 -89
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.d.ts +1 -2
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +7 -16
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +2 -19
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_animate.scss +27 -27
- package/src/lib/anna-common-scss/_application-spacing.scss +8 -8
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +29 -29
- package/src/lib/anna-common-scss/_button.scss +18 -18
- package/src/lib/anna-common-scss/_colors.scss +107 -107
- package/src/lib/anna-common-scss/_common-order-listing-table.scss +190 -190
- package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +14 -14
- package/src/lib/anna-common-scss/_customDropdown.scss +126 -126
- package/src/lib/anna-common-scss/_dashboard-partials.scss +107 -107
- package/src/lib/anna-common-scss/_date-picker-form.scss +87 -87
- package/src/lib/anna-common-scss/_drag-and-drop.scss +22 -22
- package/src/lib/anna-common-scss/_easy-filter.scss +139 -139
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +80 -80
- package/src/lib/anna-common-scss/_email-button.scss +89 -89
- package/src/lib/anna-common-scss/_filters.scss +728 -728
- package/src/lib/anna-common-scss/_font.scss +9 -9
- package/src/lib/anna-common-scss/_fonts.scss +86 -86
- package/src/lib/anna-common-scss/_generic-modal.scss +63 -63
- package/src/lib/anna-common-scss/_generic-table-common.scss +198 -220
- package/src/lib/anna-common-scss/_generic-tooltip-html.scss +69 -69
- package/src/lib/anna-common-scss/_gt-table.scss +586 -583
- package/src/lib/anna-common-scss/_icons.scss +3 -3
- package/src/lib/anna-common-scss/_legend.scss +11 -11
- package/src/lib/anna-common-scss/_mat-button-toggle.scss +68 -68
- package/src/lib/anna-common-scss/_mat-menu.scss +17 -17
- package/src/lib/anna-common-scss/_mixins.scss +187 -187
- package/src/lib/anna-common-scss/_modal.scss +37 -37
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +37 -37
- package/src/lib/anna-common-scss/_scrollbar.scss +14 -14
- package/src/lib/anna-common-scss/_show-hide-total-row.scss +27 -27
- package/src/lib/anna-common-scss/_sort.scss +30 -30
- package/src/lib/anna-common-scss/_toggle.scss +86 -86
- package/src/lib/anna-common-scss/style.scss +7 -7
- package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +26 -26
- package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +39 -39
- package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +31 -31
- package/src/lib/anna-common-scss/user-module-common-scss/_user-module.scss +65 -65
- package/src/lib/anna-common-scss/user-module-common-scss/_user-tag-status.scss +111 -111
package/lib/anna-core-shared-lib/directives/show-ellipsis-text/show-ellipsis-text.directive.d.ts
CHANGED
|
@@ -2,10 +2,9 @@ import { ElementRef } from "@angular/core";
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ShowEllipsisTextOnHoverDirective {
|
|
4
4
|
private elementRef;
|
|
5
|
-
includeFullWidth: boolean;
|
|
6
5
|
constructor(elementRef: ElementRef);
|
|
7
6
|
onMouseEnter(): void;
|
|
8
7
|
checkPositionsInDecimals(domElement: Element): boolean;
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShowEllipsisTextOnHoverDirective, never>;
|
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowEllipsisTextOnHoverDirective, "[annaCoreShowEllipsisTextOnHover]", never, {
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowEllipsisTextOnHoverDirective, "[annaCoreShowEllipsisTextOnHover]", never, {}, {}, never, never, true, never>;
|
|
11
10
|
}
|
|
@@ -10,6 +10,7 @@ export interface IGtTableHeader {
|
|
|
10
10
|
dummyHeader?: boolean;
|
|
11
11
|
columnNumber?: number;
|
|
12
12
|
}
|
|
13
|
+
export type TDCellClass = "CENTRE";
|
|
13
14
|
export interface IHeaderInfo {
|
|
14
15
|
name: string;
|
|
15
16
|
objectKey: string;
|
|
@@ -25,33 +26,21 @@ export interface IHeaderInfo {
|
|
|
25
26
|
showTooltipIcon: boolean;
|
|
26
27
|
disableTooltipIcon?: boolean;
|
|
27
28
|
tooltip?: ITooltip;
|
|
29
|
+
tdCellClass?: TDCellClass;
|
|
28
30
|
joinedFilterSortObjectKeys?: string;
|
|
29
31
|
showSplitedOptionsInFilter?: boolean[];
|
|
30
32
|
splitDelimiter?: string[];
|
|
31
33
|
}
|
|
32
|
-
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" | "SINGLE_RADIO" | "STRING_WITH_TOOLTIP" | "STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "STRING_ELLIPSIS_WITH_TABLE_TOOLTIP" | "STRING_WITH_TOOLTIP_INNER_HTML" | "ICON_CELL_AND_STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "SINGLE_SELECT_DROPDOWN" | "DIGIT_ONLY_INPUT"
|
|
34
|
+
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" | "SINGLE_RADIO" | "STRING_WITH_TOOLTIP" | "STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "STRING_ELLIPSIS_WITH_TABLE_TOOLTIP" | "STRING_WITH_TOOLTIP_INNER_HTML" | "ICON_CELL_AND_STRING_WITH_ELLIPSIS_AND_READ_MORE_TOOLTIP" | "SINGLE_SELECT_DROPDOWN" | "DIGIT_ONLY_INPUT";
|
|
33
35
|
type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
|
|
34
36
|
export interface ISvgOrIconTypeInGTTable {
|
|
37
|
+
id?: string;
|
|
35
38
|
showObjectKey: boolean;
|
|
36
39
|
svgOrIconName?: string;
|
|
37
40
|
svgOrIconTooltipMsg?: string;
|
|
38
41
|
additionalText?: string;
|
|
39
42
|
additionalTextClass?: string;
|
|
40
43
|
}
|
|
41
|
-
export interface ITimeInputData {
|
|
42
|
-
selectedTimeAsAString: string;
|
|
43
|
-
startTime: string;
|
|
44
|
-
endTime: string;
|
|
45
|
-
showAsInput: boolean;
|
|
46
|
-
disableInput: boolean;
|
|
47
|
-
id: number | string;
|
|
48
|
-
icons?: {
|
|
49
|
-
id: string;
|
|
50
|
-
class: string;
|
|
51
|
-
tooltipMessage: string;
|
|
52
|
-
}[];
|
|
53
|
-
class?: string;
|
|
54
|
-
}
|
|
55
44
|
export declare class SvgOrIconTypeInGTTable {
|
|
56
45
|
showObjectKey: boolean;
|
|
57
46
|
svgOrIconName?: string;
|
|
@@ -189,8 +178,10 @@ export interface IActionItemTypeWithStringIconOrTextAction {
|
|
|
189
178
|
tooltipPlacement?: string;
|
|
190
179
|
enableTooltipForAdditionalText?: boolean;
|
|
191
180
|
additionalTextAfterLink?: string;
|
|
181
|
+
showSimpleIcon?: boolean;
|
|
182
|
+
tooltipDataForSimpleIcon?: string;
|
|
192
183
|
}
|
|
193
|
-
export type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION" | "AUTOMATED" | "WARNING_ICON" | "INFORMATION_OUTLINE_ICON" | "ALERT_OCTAGON_ICON" | "CANCEL_ICON" | "ALPHA_B_CIRCLE" | "ALPHA_R_CIRCLE" | "ALPHA_E_CIRCLE" | "ALPHA_A_CIRCLE" | "MESSAGE" | "CALENDAR";
|
|
184
|
+
export type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION" | "AUTOMATED" | "WARNING_ICON" | "INFORMATION_OUTLINE_ICON" | "ALERT_OCTAGON_ICON" | "CANCEL_ICON" | "ALPHA_B_CIRCLE" | "ALPHA_R_CIRCLE" | "ALPHA_E_CIRCLE" | "ALPHA_A_CIRCLE" | "MESSAGE" | "CALENDAR" | "EMAIL_ICON";
|
|
194
185
|
export declare class TableClassNameConstant {
|
|
195
186
|
static readonly defaultClass = "table-body-row ";
|
|
196
187
|
static readonly selectedRow = "selected-row ";
|
|
@@ -2,7 +2,7 @@ import { AfterViewChecked, ChangeDetectorRef, ElementRef, EventEmitter, OnChange
|
|
|
2
2
|
import { BehaviorSubject } from "rxjs";
|
|
3
3
|
import { GtColumnIconEmittedData, RatingSellerGroupHierarchy } from "../../../anna-core-shared-lib/models/anna-generic-data-type.model";
|
|
4
4
|
import { IWeekCalendar } from "../../../anna-core-shared-lib/models/anna-global-dropdown-config.model";
|
|
5
|
-
import { EllipsisWithTableTooltip, IGtGeneralConfig, IGtTableHeader, IHeaderInfo, InnerHTMLTooltipAction,
|
|
5
|
+
import { EllipsisWithTableTooltip, IGtGeneralConfig, IGtTableHeader, IHeaderInfo, InnerHTMLTooltipAction, ITotalRowInfo } from "../../../anna-core-shared-lib/models/anna-non-editable-gt-models";
|
|
6
6
|
import { AnnaDateTimeFormatService } from "../../../anna-core-shared-lib/services/anna-date-time-format.service";
|
|
7
7
|
import { AnnaFilterService } from "../../../anna-core-shared-lib/services/anna-filter.service";
|
|
8
8
|
import { AnnaSortService } from "../../../anna-core-shared-lib/services/anna-sort.service";
|
|
@@ -84,14 +84,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
84
84
|
row: any;
|
|
85
85
|
dropdownIndex: number;
|
|
86
86
|
}>;
|
|
87
|
-
timeSelected: EventEmitter<{
|
|
88
|
-
selectedTime: string[][];
|
|
89
|
-
selectedTimeConverted: {
|
|
90
|
-
startTime: string;
|
|
91
|
-
endTime: string;
|
|
92
|
-
};
|
|
93
|
-
rowData: any;
|
|
94
|
-
}>;
|
|
95
87
|
totalRowRadioButtonClicked: EventEmitter<string>;
|
|
96
88
|
totalRowRadioButtonIconClicked: EventEmitter<string>;
|
|
97
89
|
numberOfSkeletonRows: number[][];
|
|
@@ -105,7 +97,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
105
97
|
tooltipRadioTextMap: Map<any, any>;
|
|
106
98
|
filterTabObjects: any[];
|
|
107
99
|
tooltip: any;
|
|
108
|
-
timeTableRowtooltip: any;
|
|
109
100
|
disableColumnClearAllBtn: boolean;
|
|
110
101
|
margin: number;
|
|
111
102
|
multiWeekPickerConfig: IWeekCalendar;
|
|
@@ -169,10 +160,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
169
160
|
numberOfRowsToAppend: number;
|
|
170
161
|
digitInputmin: number;
|
|
171
162
|
digitInputMax: number;
|
|
172
|
-
timeInputData: {
|
|
173
|
-
time: string;
|
|
174
|
-
}[];
|
|
175
|
-
selectedRowForTimeEdit: any;
|
|
176
163
|
constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService);
|
|
177
164
|
ngAfterViewChecked(): void;
|
|
178
165
|
ngOnInit(): void;
|
|
@@ -238,11 +225,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
238
225
|
closeStatusNoteTooltip(): void;
|
|
239
226
|
onInputChange(rowData: any, key: string, value: Event): void;
|
|
240
227
|
toPascalCaseWithExceptions(input: string): string;
|
|
241
|
-
bindTheValueToTimeInputTooltip(tooltip: any): void;
|
|
242
|
-
closeTimeInputTooltip(): void;
|
|
243
|
-
timeInputTooltipClickedInTableBody(event: ITimeInputData, rowData: any): void;
|
|
244
|
-
timeSelectedInTableRow(event: string[][]): void;
|
|
245
228
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNonEditableGenericTableComponent, never>;
|
|
246
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaNonEditableGenericTableComponent, "anna-core-non-editable-generic-table-lib", never, { "showSkeletonLoading": { "alias": "showSkeletonLoading"; "required": false; }; "tableHeaders": { "alias": "tableHeaders"; "required": true; }; "tableData": { "alias": "tableData"; "required": true; }; "clonedTableData": { "alias": "clonedTableData"; "required": true; }; "gtGeneralConfig": { "alias": "gtGeneralConfig"; "required": true; }; "totalRowInfo": { "alias": "totalRowInfo"; "required": false; }; "gtDimension": { "alias": "gtDimension"; "required": true; }; "extraHeaderRowForAdjustingColumnWidths": { "alias": "extraHeaderRowForAdjustingColumnWidths"; "required": false; }; "tableClass": { "alias": "tableClass"; "required": false; }; "maximumRowsWhichCanBeRenderedWithoutScroll": { "alias": "maximumRowsWhichCanBeRenderedWithoutScroll"; "required": false; }; "fixNumberOfRowsForPopup": { "alias": "fixNumberOfRowsForPopup"; "required": false; }; "fixRowsToRender": { "alias": "fixRowsToRender"; "required": false; }; "includeBorderInTableHeight": { "alias": "includeBorderInTableHeight"; "required": false; }; "downloadInProgress": { "alias": "downloadInProgress"; "required": false; }; "percentDone": { "alias": "percentDone"; "required": false; }; "starredInProgress": { "alias": "starredInProgress"; "required": false; }; "clickableRow": { "alias": "clickableRow"; "required": false; }; "setTableHeightWhenRowSizeIsFixed": { "alias": "setTableHeightWhenRowSizeIsFixed"; "required": false; }; "tableBorderBottomClassRequired": { "alias": "tableBorderBottomClassRequired"; "required": false; }; "hideSomeTds": { "alias": "hideSomeTds"; "required": false; }; "tdsHaveRowSpan": { "alias": "tdsHaveRowSpan"; "required": false; }; "multipleTablesPresent": { "alias": "multipleTablesPresent"; "required": false; }; "showOrHideToggleForTotalRow": { "alias": "showOrHideToggleForTotalRow"; "required": false; }; }, { "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"; "gtInnerHTMLClicked": "gtInnerHTMLClicked"; "downloadSpotDetails": "downloadSpotDetails"; "clickableDataClicked": "clickableDataClicked"; "totalRowIconClicked": "totalRowIconClicked"; "notificationIconHover": "notificationIconHover"; "notificationIconHoverLeave": "notificationIconHoverLeave"; "editableInputEdited": "editableInputEdited"; "radioButtonMessageIconClicked": "radioButtonMessageIconClicked"; "statusNotePopupOpened": "statusNotePopupOpened"; "digitOnlyInputChanged": "digitOnlyInputChanged"; "singleSelectDropdownValueEmit": "singleSelectDropdownValueEmit"; "
|
|
229
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AnnaNonEditableGenericTableComponent, "anna-core-non-editable-generic-table-lib", never, { "showSkeletonLoading": { "alias": "showSkeletonLoading"; "required": false; }; "tableHeaders": { "alias": "tableHeaders"; "required": true; }; "tableData": { "alias": "tableData"; "required": true; }; "clonedTableData": { "alias": "clonedTableData"; "required": true; }; "gtGeneralConfig": { "alias": "gtGeneralConfig"; "required": true; }; "totalRowInfo": { "alias": "totalRowInfo"; "required": false; }; "gtDimension": { "alias": "gtDimension"; "required": true; }; "extraHeaderRowForAdjustingColumnWidths": { "alias": "extraHeaderRowForAdjustingColumnWidths"; "required": false; }; "tableClass": { "alias": "tableClass"; "required": false; }; "maximumRowsWhichCanBeRenderedWithoutScroll": { "alias": "maximumRowsWhichCanBeRenderedWithoutScroll"; "required": false; }; "fixNumberOfRowsForPopup": { "alias": "fixNumberOfRowsForPopup"; "required": false; }; "fixRowsToRender": { "alias": "fixRowsToRender"; "required": false; }; "includeBorderInTableHeight": { "alias": "includeBorderInTableHeight"; "required": false; }; "downloadInProgress": { "alias": "downloadInProgress"; "required": false; }; "percentDone": { "alias": "percentDone"; "required": false; }; "starredInProgress": { "alias": "starredInProgress"; "required": false; }; "clickableRow": { "alias": "clickableRow"; "required": false; }; "setTableHeightWhenRowSizeIsFixed": { "alias": "setTableHeightWhenRowSizeIsFixed"; "required": false; }; "tableBorderBottomClassRequired": { "alias": "tableBorderBottomClassRequired"; "required": false; }; "hideSomeTds": { "alias": "hideSomeTds"; "required": false; }; "tdsHaveRowSpan": { "alias": "tdsHaveRowSpan"; "required": false; }; "multipleTablesPresent": { "alias": "multipleTablesPresent"; "required": false; }; "showOrHideToggleForTotalRow": { "alias": "showOrHideToggleForTotalRow"; "required": false; }; }, { "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"; "gtInnerHTMLClicked": "gtInnerHTMLClicked"; "downloadSpotDetails": "downloadSpotDetails"; "clickableDataClicked": "clickableDataClicked"; "totalRowIconClicked": "totalRowIconClicked"; "notificationIconHover": "notificationIconHover"; "notificationIconHoverLeave": "notificationIconHoverLeave"; "editableInputEdited": "editableInputEdited"; "radioButtonMessageIconClicked": "radioButtonMessageIconClicked"; "statusNotePopupOpened": "statusNotePopupOpened"; "digitOnlyInputChanged": "digitOnlyInputChanged"; "singleSelectDropdownValueEmit": "singleSelectDropdownValueEmit"; "totalRowRadioButtonClicked": "totalRowRadioButtonClicked"; "totalRowRadioButtonIconClicked": "totalRowRadioButtonIconClicked"; }, never, never, true, never>;
|
|
247
230
|
}
|
|
248
231
|
export {};
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
// scss-lint:disable all
|
|
2
|
-
.animated {
|
|
3
|
-
animation-duration: 1s;
|
|
4
|
-
// animation-fill-mode: both;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.animated.infinite {
|
|
8
|
-
animation-iteration-count: infinite;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.animated.hinge {
|
|
12
|
-
animation-duration: 2s;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@keyframes fadeIn {
|
|
16
|
-
from {
|
|
17
|
-
opacity: 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
to {
|
|
21
|
-
opacity: 1;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.fadeIn {
|
|
26
|
-
animation-name: fadeIn;
|
|
27
|
-
}
|
|
1
|
+
// scss-lint:disable all
|
|
2
|
+
.animated {
|
|
3
|
+
animation-duration: 1s;
|
|
4
|
+
// animation-fill-mode: both;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.animated.infinite {
|
|
8
|
+
animation-iteration-count: infinite;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.animated.hinge {
|
|
12
|
+
animation-duration: 2s;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@keyframes fadeIn {
|
|
16
|
+
from {
|
|
17
|
+
opacity: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
to {
|
|
21
|
+
opacity: 1;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.fadeIn {
|
|
26
|
+
animation-name: fadeIn;
|
|
27
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
//GLOBAL LAYOUT VARIABLE
|
|
2
|
-
$app-screen-max-width: 1920px;
|
|
3
|
-
$app-left-space: 40px;
|
|
4
|
-
$app-right-space: 40px;
|
|
5
|
-
$sidebar-minimized-width: 64px;
|
|
6
|
-
$navbar-height: 50px;
|
|
7
|
-
// $app-max-width: calc($app-screen-max-width - $app-left-space);
|
|
8
|
-
$app-max-width: 1855px;
|
|
1
|
+
//GLOBAL LAYOUT VARIABLE
|
|
2
|
+
$app-screen-max-width: 1920px;
|
|
3
|
+
$app-left-space: 40px;
|
|
4
|
+
$app-right-space: 40px;
|
|
5
|
+
$sidebar-minimized-width: 64px;
|
|
6
|
+
$navbar-height: 50px;
|
|
7
|
+
// $app-max-width: calc($app-screen-max-width - $app-left-space);
|
|
8
|
+
$app-max-width: 1855px;
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
@use "fonts" as *;
|
|
2
|
-
|
|
3
|
-
@mixin common-bootstrap-tooltip() {
|
|
4
|
-
opacity: 1 !important;
|
|
5
|
-
.tooltip-inner {
|
|
6
|
-
color: #4a4a4a;
|
|
7
|
-
text-align: left;
|
|
8
|
-
padding: 8px !important;
|
|
9
|
-
border-radius: 2px;
|
|
10
|
-
background: white !important;
|
|
11
|
-
box-shadow:
|
|
12
|
-
0 6px 10px 0 rgba(0, 0, 0, 0.3),
|
|
13
|
-
0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
14
|
-
@include fonts(Roboto, var(--page-message-content-fs), normal, normal, normal, normal, normal);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&.bs-tooltip-top .arrow::before {
|
|
18
|
-
border-top: 6px solid white;
|
|
19
|
-
}
|
|
20
|
-
&.bs-tooltip-left .arrow::before {
|
|
21
|
-
border-left: 6px solid white;
|
|
22
|
-
}
|
|
23
|
-
&.bs-tooltip-bottom .arrow::before {
|
|
24
|
-
border-bottom: 6px solid white;
|
|
25
|
-
}
|
|
26
|
-
&.bs-tooltip-right .arrow::before {
|
|
27
|
-
border-right: 5px solid white;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
@use "fonts" as *;
|
|
2
|
+
|
|
3
|
+
@mixin common-bootstrap-tooltip() {
|
|
4
|
+
opacity: 1 !important;
|
|
5
|
+
.tooltip-inner {
|
|
6
|
+
color: #4a4a4a;
|
|
7
|
+
text-align: left;
|
|
8
|
+
padding: 8px !important;
|
|
9
|
+
border-radius: 2px;
|
|
10
|
+
background: white !important;
|
|
11
|
+
box-shadow:
|
|
12
|
+
0 6px 10px 0 rgba(0, 0, 0, 0.3),
|
|
13
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
14
|
+
@include fonts(Roboto, var(--page-message-content-fs), normal, normal, normal, normal, normal);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.bs-tooltip-top .arrow::before {
|
|
18
|
+
border-top: 6px solid white;
|
|
19
|
+
}
|
|
20
|
+
&.bs-tooltip-left .arrow::before {
|
|
21
|
+
border-left: 6px solid white;
|
|
22
|
+
}
|
|
23
|
+
&.bs-tooltip-bottom .arrow::before {
|
|
24
|
+
border-bottom: 6px solid white;
|
|
25
|
+
}
|
|
26
|
+
&.bs-tooltip-right .arrow::before {
|
|
27
|
+
border-right: 5px solid white;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
@use "./colors" as *;
|
|
2
|
-
|
|
3
|
-
@mixin enableDisableBtnStyle() {
|
|
4
|
-
background-color: white;
|
|
5
|
-
text-decoration: underline;
|
|
6
|
-
color: $primary-color;
|
|
7
|
-
border: none;
|
|
8
|
-
|
|
9
|
-
&:hover:enabled {
|
|
10
|
-
color: $charcoal;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
&:disabled {
|
|
14
|
-
color: $charcoal;
|
|
15
|
-
opacity: 0.5;
|
|
16
|
-
cursor: not-allowed;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
1
|
+
@use "./colors" as *;
|
|
2
|
+
|
|
3
|
+
@mixin enableDisableBtnStyle() {
|
|
4
|
+
background-color: white;
|
|
5
|
+
text-decoration: underline;
|
|
6
|
+
color: $primary-color;
|
|
7
|
+
border: none;
|
|
8
|
+
|
|
9
|
+
&:hover:enabled {
|
|
10
|
+
color: $charcoal;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&:disabled {
|
|
14
|
+
color: $charcoal;
|
|
15
|
+
opacity: 0.5;
|
|
16
|
+
cursor: not-allowed;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
$primary-color: #268bff;
|
|
2
|
-
$background-white: #ffffff;
|
|
3
|
-
$lightGray: #d3d3d3;
|
|
4
|
-
$lightGray-1: #f1f1f1;
|
|
5
|
-
$lightGray-2: #b3b3b3;
|
|
6
|
-
$lightGray-3: #ededed;
|
|
7
|
-
$lightGray-4: #d4d4d4;
|
|
8
|
-
$lightGray-5: #e6e6e6;
|
|
9
|
-
$lightGray-6: #c8c8c8;
|
|
10
|
-
$lightGray-7: #9b9b9b;
|
|
11
|
-
$lightGray-9: #d9e1e6;
|
|
12
|
-
$lightGray-8: #b7b7b7;
|
|
13
|
-
$dimGray: #747474;
|
|
14
|
-
$lightDimGray: #666666;
|
|
15
|
-
$coralRed: #ff4747;
|
|
16
|
-
$greenCyan: #00c853;
|
|
17
|
-
$bookedColor: #9b1b93;
|
|
18
|
-
$orderedColor: #d780d1;
|
|
19
|
-
$billableColor: #f2bdef;
|
|
20
|
-
$nationalColor: #f5dd31;
|
|
21
|
-
$localColor: #8db72e;
|
|
22
|
-
$lavenderBlue: #c7e1ff;
|
|
23
|
-
$aliceBlue: #e3f0ff;
|
|
24
|
-
$dodgerBlue: #1582ff;
|
|
25
|
-
$lightGrey: #d6d6d6;
|
|
26
|
-
$coldTurkey: #ceb6b6;
|
|
27
|
-
$lightSilver: #d8d8d8;
|
|
28
|
-
$GraythirtySeven: #5e5e5e;
|
|
29
|
-
$charcoal: #4a4a4a;
|
|
30
|
-
$sellerReviewColor: #f3bd18;
|
|
31
|
-
$buyerReviewColor: #1565c0;
|
|
32
|
-
$reviewCompleteColor: #00c853;
|
|
33
|
-
$recoveredPreemptionColor: #0071ce;
|
|
34
|
-
$deepSkyBlue: #00b0ff;
|
|
35
|
-
$licorice: #2e384d;
|
|
36
|
-
$navyBlue: #0071ce;
|
|
37
|
-
$nobelGray: #b7b6b6;
|
|
38
|
-
$whiteSmoke: #f7f6f6;
|
|
39
|
-
$gray: #979797;
|
|
40
|
-
$paleBlue: #c2cfd6;
|
|
41
|
-
$lightViolet: #9169fc;
|
|
42
|
-
$dimViolet: #e5dbff;
|
|
43
|
-
$darkViolet: #555099;
|
|
44
|
-
$whisper: #e9e9e9;
|
|
45
|
-
$lynxWhite: #f7f7f7;
|
|
46
|
-
$lightAliceBlue: #e5f1ff;
|
|
47
|
-
$veryLightGrey: #cfcfcf;
|
|
48
|
-
$darkCharcoal: #333333;
|
|
49
|
-
$noRevisionFound: #f47228;
|
|
50
|
-
$redOrange: #f44336;
|
|
51
|
-
$DRRBgColor: #edecec;
|
|
52
|
-
$darkYellowWarning: #f3c639;
|
|
53
|
-
$lightYellow: #fff8e3;
|
|
54
|
-
$filterRadioContainer: #f4f4f4;
|
|
55
|
-
$oliveGreen: #8bac2a;
|
|
56
|
-
$calendarLabel: #222b45;
|
|
57
|
-
$olivedrab: #6b8e23;
|
|
58
|
-
$redOrange: #fe3824;
|
|
59
|
-
$chineseSilver: #cccccc;
|
|
60
|
-
$grey: #767676;
|
|
61
|
-
$primary-success: #47d490;
|
|
62
|
-
$secondary-success: #ebf6f1;
|
|
63
|
-
$primary-warning: #f3c639;
|
|
64
|
-
$secondary-warning: #fff8e3;
|
|
65
|
-
$primary-dark: #90a4ae;
|
|
66
|
-
$secondary-dark: #ebedee;
|
|
67
|
-
$primary-danger: #fc8383;
|
|
68
|
-
$secondary-danger: #ffeded;
|
|
69
|
-
$Gray94: #f0f0f0;
|
|
70
|
-
$whisper: #ededed;
|
|
71
|
-
$whiteSmoke2: #f4f4f4;
|
|
72
|
-
$pinkSwan: #b5b5b5;
|
|
73
|
-
$matterhorn: #4f4f4f;
|
|
74
|
-
$lightGrey: #d4d4d4;
|
|
75
|
-
$gray74: #bdbdbd;
|
|
76
|
-
$gray86: #dbdbdb;
|
|
77
|
-
$darkBlueShade: #222b45;
|
|
78
|
-
$green: #8bac2a;
|
|
79
|
-
$darkPurpleShade: #555099;
|
|
80
|
-
$pattensBlue: #d8eaff;
|
|
81
|
-
$quartz: #dddceb;
|
|
82
|
-
$darkGray: #a7a7a7;
|
|
83
|
-
$darkGray1: #cbcbcb;
|
|
84
|
-
$awaitingSellerReview: #f7f2d1;
|
|
85
|
-
$awaitingSellerReviewBorder: #dec30b;
|
|
86
|
-
$amber: #ffc107;
|
|
87
|
-
$whiteSmoke3: #efefef;
|
|
88
|
-
$greyChateau: #a2a8ad;
|
|
89
|
-
$roseBud: #f9b3ae;
|
|
90
|
-
$paleRed: #fde4e3;
|
|
91
|
-
$redOrange3: #f44336;
|
|
92
|
-
$redOrange4: #fe3824;
|
|
93
|
-
$gray43: #6e6e6e;
|
|
94
|
-
$dodgerBlue2: #4099ff;
|
|
95
|
-
$fruitSalad: #43a047;
|
|
96
|
-
$nero: #212121;
|
|
97
|
-
$darkGray2: #a4a4a4;
|
|
98
|
-
$pinkSwan: #b7b7b7;
|
|
99
|
-
$blue: #d8eaff;
|
|
100
|
-
$lightBlue: #eff6ff;
|
|
101
|
-
$sunsetOrange: #ff5353;
|
|
102
|
-
$redShade: #ff5252;
|
|
103
|
-
$lightBlueShade: #d6dcff;
|
|
104
|
-
$blueBerry: #536dfe;
|
|
105
|
-
$darkPink: #be489d;
|
|
106
|
-
$lightPinkShade: #f4e7f2;
|
|
107
|
-
$sellerGroupChildRow: #f9f3f8;
|
|
1
|
+
$primary-color: #268bff;
|
|
2
|
+
$background-white: #ffffff;
|
|
3
|
+
$lightGray: #d3d3d3;
|
|
4
|
+
$lightGray-1: #f1f1f1;
|
|
5
|
+
$lightGray-2: #b3b3b3;
|
|
6
|
+
$lightGray-3: #ededed;
|
|
7
|
+
$lightGray-4: #d4d4d4;
|
|
8
|
+
$lightGray-5: #e6e6e6;
|
|
9
|
+
$lightGray-6: #c8c8c8;
|
|
10
|
+
$lightGray-7: #9b9b9b;
|
|
11
|
+
$lightGray-9: #d9e1e6;
|
|
12
|
+
$lightGray-8: #b7b7b7;
|
|
13
|
+
$dimGray: #747474;
|
|
14
|
+
$lightDimGray: #666666;
|
|
15
|
+
$coralRed: #ff4747;
|
|
16
|
+
$greenCyan: #00c853;
|
|
17
|
+
$bookedColor: #9b1b93;
|
|
18
|
+
$orderedColor: #d780d1;
|
|
19
|
+
$billableColor: #f2bdef;
|
|
20
|
+
$nationalColor: #f5dd31;
|
|
21
|
+
$localColor: #8db72e;
|
|
22
|
+
$lavenderBlue: #c7e1ff;
|
|
23
|
+
$aliceBlue: #e3f0ff;
|
|
24
|
+
$dodgerBlue: #1582ff;
|
|
25
|
+
$lightGrey: #d6d6d6;
|
|
26
|
+
$coldTurkey: #ceb6b6;
|
|
27
|
+
$lightSilver: #d8d8d8;
|
|
28
|
+
$GraythirtySeven: #5e5e5e;
|
|
29
|
+
$charcoal: #4a4a4a;
|
|
30
|
+
$sellerReviewColor: #f3bd18;
|
|
31
|
+
$buyerReviewColor: #1565c0;
|
|
32
|
+
$reviewCompleteColor: #00c853;
|
|
33
|
+
$recoveredPreemptionColor: #0071ce;
|
|
34
|
+
$deepSkyBlue: #00b0ff;
|
|
35
|
+
$licorice: #2e384d;
|
|
36
|
+
$navyBlue: #0071ce;
|
|
37
|
+
$nobelGray: #b7b6b6;
|
|
38
|
+
$whiteSmoke: #f7f6f6;
|
|
39
|
+
$gray: #979797;
|
|
40
|
+
$paleBlue: #c2cfd6;
|
|
41
|
+
$lightViolet: #9169fc;
|
|
42
|
+
$dimViolet: #e5dbff;
|
|
43
|
+
$darkViolet: #555099;
|
|
44
|
+
$whisper: #e9e9e9;
|
|
45
|
+
$lynxWhite: #f7f7f7;
|
|
46
|
+
$lightAliceBlue: #e5f1ff;
|
|
47
|
+
$veryLightGrey: #cfcfcf;
|
|
48
|
+
$darkCharcoal: #333333;
|
|
49
|
+
$noRevisionFound: #f47228;
|
|
50
|
+
$redOrange: #f44336;
|
|
51
|
+
$DRRBgColor: #edecec;
|
|
52
|
+
$darkYellowWarning: #f3c639;
|
|
53
|
+
$lightYellow: #fff8e3;
|
|
54
|
+
$filterRadioContainer: #f4f4f4;
|
|
55
|
+
$oliveGreen: #8bac2a;
|
|
56
|
+
$calendarLabel: #222b45;
|
|
57
|
+
$olivedrab: #6b8e23;
|
|
58
|
+
$redOrange: #fe3824;
|
|
59
|
+
$chineseSilver: #cccccc;
|
|
60
|
+
$grey: #767676;
|
|
61
|
+
$primary-success: #47d490;
|
|
62
|
+
$secondary-success: #ebf6f1;
|
|
63
|
+
$primary-warning: #f3c639;
|
|
64
|
+
$secondary-warning: #fff8e3;
|
|
65
|
+
$primary-dark: #90a4ae;
|
|
66
|
+
$secondary-dark: #ebedee;
|
|
67
|
+
$primary-danger: #fc8383;
|
|
68
|
+
$secondary-danger: #ffeded;
|
|
69
|
+
$Gray94: #f0f0f0;
|
|
70
|
+
$whisper: #ededed;
|
|
71
|
+
$whiteSmoke2: #f4f4f4;
|
|
72
|
+
$pinkSwan: #b5b5b5;
|
|
73
|
+
$matterhorn: #4f4f4f;
|
|
74
|
+
$lightGrey: #d4d4d4;
|
|
75
|
+
$gray74: #bdbdbd;
|
|
76
|
+
$gray86: #dbdbdb;
|
|
77
|
+
$darkBlueShade: #222b45;
|
|
78
|
+
$green: #8bac2a;
|
|
79
|
+
$darkPurpleShade: #555099;
|
|
80
|
+
$pattensBlue: #d8eaff;
|
|
81
|
+
$quartz: #dddceb;
|
|
82
|
+
$darkGray: #a7a7a7;
|
|
83
|
+
$darkGray1: #cbcbcb;
|
|
84
|
+
$awaitingSellerReview: #f7f2d1;
|
|
85
|
+
$awaitingSellerReviewBorder: #dec30b;
|
|
86
|
+
$amber: #ffc107;
|
|
87
|
+
$whiteSmoke3: #efefef;
|
|
88
|
+
$greyChateau: #a2a8ad;
|
|
89
|
+
$roseBud: #f9b3ae;
|
|
90
|
+
$paleRed: #fde4e3;
|
|
91
|
+
$redOrange3: #f44336;
|
|
92
|
+
$redOrange4: #fe3824;
|
|
93
|
+
$gray43: #6e6e6e;
|
|
94
|
+
$dodgerBlue2: #4099ff;
|
|
95
|
+
$fruitSalad: #43a047;
|
|
96
|
+
$nero: #212121;
|
|
97
|
+
$darkGray2: #a4a4a4;
|
|
98
|
+
$pinkSwan: #b7b7b7;
|
|
99
|
+
$blue: #d8eaff;
|
|
100
|
+
$lightBlue: #eff6ff;
|
|
101
|
+
$sunsetOrange: #ff5353;
|
|
102
|
+
$redShade: #ff5252;
|
|
103
|
+
$lightBlueShade: #d6dcff;
|
|
104
|
+
$blueBerry: #536dfe;
|
|
105
|
+
$darkPink: #be489d;
|
|
106
|
+
$lightPinkShade: #f4e7f2;
|
|
107
|
+
$sellerGroupChildRow: #f9f3f8;
|