@annalib/anna-core 16.1.0 → 16.1.2
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-deleted-order-icon-template/anna-deleted-order-icon-template.component.mjs +4 -4
- 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-filter.service.mjs +18 -2
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -3
- package/fesm2015/annalib-anna-core.mjs +24 -5
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +23 -5
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +1 -1
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_business-rule-common.scss +35 -0
- package/src/lib/anna-common-scss/_easy-filter.scss +52 -148
- package/src/lib/anna-common-scss/_gt-table.scss +12 -0
- package/src/lib/anna-common-scss/_advertiser-listing-common.scss +0 -73
- package/src/lib/anna-common-scss/_scrollbar.scss +0 -14
|
@@ -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" | "STRING_OR_INPUT" | "SINGLE_RADIO";
|
|
25
25
|
declare type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
|
|
26
26
|
export interface ITotalRowInfo {
|
|
27
27
|
colspan: number;
|
|
@@ -51,7 +51,8 @@ export declare class AnnaFilterService {
|
|
|
51
51
|
reOrderAppliedFiltersArray(isHierarchialUserFiltered: boolean, date?: any): void;
|
|
52
52
|
checkIfDataIsFiltered(isFiltered: boolean, isHierarchialUserFiltered: boolean, date?: any): boolean;
|
|
53
53
|
removeOrChangeLatestFilterIndex(isFiltered: boolean): void;
|
|
54
|
-
|
|
54
|
+
checkIfSortingIsAppliedThenSortTheData(originalData: any[]): any[];
|
|
55
|
+
filterData(originalData: any[], keyToSkip: string, isLurCsrPage?: boolean): any[];
|
|
55
56
|
returnOrdersInTheRange(order: any, range: any, key: any): boolean;
|
|
56
57
|
returnDataForTimeRange(obj: any, selectedData: any): boolean;
|
|
57
58
|
returnDataForFromAndToTimeRange(obj: any, selectedData: any, key: any): boolean;
|
package/package.json
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
.ng-content-selector-for-message {
|
|
2
|
+
display: inline;
|
|
3
|
+
font-size: 0.75rem !important;
|
|
4
|
+
font-weight: 400 !important;
|
|
5
|
+
line-height: 16px !important;
|
|
6
|
+
|
|
7
|
+
a {
|
|
8
|
+
color: #268BFF;
|
|
9
|
+
text-decoration: underline;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
::ng-deep section.message-box.sm.seller-approval-requested {
|
|
14
|
+
.div-message p.message-label {
|
|
15
|
+
padding: 0 0 0 4px !important;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
::ng-deep section.message-box.sm.inline-block-msg {
|
|
20
|
+
padding: 4px!important;
|
|
21
|
+
.div-message p.message-label {
|
|
22
|
+
display: inline-block !important;
|
|
23
|
+
padding: 0 0 0 6px !important;
|
|
24
|
+
}
|
|
25
|
+
.div-icon {
|
|
26
|
+
position: relative;
|
|
27
|
+
top: 4px;
|
|
28
|
+
left: 3px !important;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.comment-textarea {
|
|
33
|
+
resize: none;
|
|
34
|
+
height: 90px;
|
|
35
|
+
}
|
|
@@ -1,158 +1,62 @@
|
|
|
1
|
-
@use "./fonts"
|
|
2
|
-
@
|
|
3
|
-
@use "sass:map";
|
|
1
|
+
@use "./fonts";
|
|
2
|
+
@import "./colors";
|
|
4
3
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
4
|
+
@mixin easy-filters() {
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
align-items: flex-end;
|
|
8
|
+
max-width: calc(100% - 4px);
|
|
9
|
+
margin-bottom: 8px;
|
|
10
|
+
|
|
11
|
+
.easy-filters-btn {
|
|
12
|
+
border: 1px solid $primary-color;
|
|
13
|
+
border-radius: 12px;
|
|
14
|
+
background-color: white;
|
|
15
|
+
color: $primary-color;
|
|
16
|
+
@include fonts(Roboto, 0.75rem, normal, 500, normal, normal, 0.6px);
|
|
17
|
+
padding: 5px 8px 5px 8px;
|
|
18
|
+
margin: 15px 8px 0px 0px;
|
|
19
|
+
|
|
20
|
+
&:disabled {
|
|
21
|
+
background-color: $gray74;
|
|
22
|
+
color: $charcoal;
|
|
23
|
+
opacity: 0.5;
|
|
24
|
+
border: 1px solid $gray74;
|
|
25
|
+
cursor: not-allowed;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
button.easy-filter-active {
|
|
30
|
+
color: white;
|
|
31
|
+
background: $primary-color;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.only-enabled-button {
|
|
35
|
+
cursor: default;
|
|
36
|
+
pointer-events: none;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
13
39
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
40
|
+
button.intelli-filter{
|
|
41
|
+
@include fonts.fonts(Roboto, 0.75rem, normal, 500, normal, normal, 0.6px);
|
|
42
|
+
color: #268bff;
|
|
43
|
+
padding: 5px 8px;
|
|
44
|
+
border: 1px solid #268bff;
|
|
45
|
+
background: white;
|
|
17
46
|
border-radius: 0.75rem;
|
|
18
47
|
height: 1.5rem;
|
|
19
48
|
margin-right: 8px;
|
|
20
|
-
display: inline-flex;
|
|
21
|
-
align-items: center;
|
|
22
|
-
padding: $padding;
|
|
23
|
-
|
|
24
|
-
&:disabled {
|
|
25
|
-
border: 1px solid #bdbdbd !important;
|
|
26
|
-
color: #4a4a4a !important;
|
|
27
|
-
background: #bdbdbd !important;
|
|
28
|
-
opacity: 0.5;
|
|
29
|
-
cursor: not-allowed;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
@mixin intelli-filter-custom-styling(
|
|
35
|
-
$intelli-filter-map: $intelli-filter-default-map
|
|
36
|
-
) {
|
|
37
|
-
|
|
38
|
-
$intelli-filter-inactive-text-color: map.get(
|
|
39
|
-
$intelli-filter-map,
|
|
40
|
-
"inactive-text-color"
|
|
41
|
-
);
|
|
42
|
-
$intelli-filter-inactive-border-color: map.get(
|
|
43
|
-
$intelli-filter-map,
|
|
44
|
-
"inactive-border-color"
|
|
45
|
-
);
|
|
46
|
-
$intelli-filter-inactive-bg-color: map.get(
|
|
47
|
-
$intelli-filter-map,
|
|
48
|
-
"inactive-bg-color"
|
|
49
|
-
);
|
|
50
|
-
|
|
51
|
-
$intelli-filter-active-bg-color: map.get(
|
|
52
|
-
$intelli-filter-map,
|
|
53
|
-
"active-bg-color"
|
|
54
|
-
);
|
|
55
|
-
$intelli-filter-active-text-color: map.get(
|
|
56
|
-
$intelli-filter-map,
|
|
57
|
-
"active-text-color"
|
|
58
|
-
);
|
|
59
|
-
$intelli-filter-active-border-color: map.get(
|
|
60
|
-
$intelli-filter-map,
|
|
61
|
-
"active-border-color"
|
|
62
|
-
);
|
|
63
|
-
|
|
64
|
-
color: $intelli-filter-inactive-text-color;
|
|
65
|
-
border: 1px solid $intelli-filter-inactive-border-color;
|
|
66
|
-
background: $intelli-filter-inactive-bg-color;
|
|
67
|
-
|
|
68
|
-
&.active {
|
|
69
|
-
color: $intelli-filter-active-text-color !important;
|
|
70
|
-
background: $intelli-filter-active-bg-color !important;
|
|
71
|
-
border: 1px solid $intelli-filter-active-border-color !important;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
$only-enabled-default-map: ("text-color": white, "bg-color": $primary-color);
|
|
76
|
-
|
|
77
|
-
@mixin only-enabled-filter($enabled-styling: $only-enabled-default-map){
|
|
78
|
-
$color: map.get($enabled-styling, "text-color");
|
|
79
|
-
$bg-color: map.get($enabled-styling, "bg-color");
|
|
80
|
-
|
|
81
|
-
button.only-enabled-button{
|
|
82
|
-
color: $color;
|
|
83
|
-
background: $bg-color;
|
|
84
|
-
cursor: default;
|
|
85
|
-
pointer-events: none;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
$intelli-filter-icon-default-map: (
|
|
90
|
-
"icon-font-size": 14.5px,
|
|
91
|
-
"icon-margin-right": 4px,
|
|
92
|
-
"active-icon-color": white,
|
|
93
|
-
);
|
|
94
|
-
|
|
95
|
-
@mixin intelli-filter-icons-styling(
|
|
96
|
-
$icon-styling: $intelli-filter-icon-default-map
|
|
97
|
-
) {
|
|
98
|
-
$icon-font-size: map.get($icon-styling, "icon-font-size");
|
|
99
|
-
$icon-margin-right: map.get($icon-styling, "icon-margin-right");
|
|
100
|
-
$icon-active-color: map.get($icon-styling, "active-icon-color");
|
|
101
|
-
|
|
102
|
-
button.intelli-filter i {
|
|
103
|
-
font-size: $icon-font-size;
|
|
104
|
-
margin-right: $icon-margin-right;
|
|
105
|
-
display: flex;
|
|
106
|
-
vertical-align: middle;
|
|
107
|
-
|
|
108
|
-
&.mdi-star {
|
|
109
|
-
color: $amber;
|
|
110
|
-
opacity: 0.5;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&.mdi-alert {
|
|
114
|
-
color: #f97b07;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
&.mdi-bell {
|
|
118
|
-
color: #f3bd18;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
&.mdi-file-remove-outline {
|
|
122
|
-
color: #f44336;
|
|
123
|
-
margin-right: 2px;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
button.intelli-filter.active {
|
|
128
|
-
::ng-deep svg {
|
|
129
|
-
g {
|
|
130
|
-
stroke: $icon-active-color !important;
|
|
131
|
-
fill: $icon-active-color !important;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
i {
|
|
136
|
-
color: $icon-active-color;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
i.mdi-star {
|
|
140
|
-
color: #ffc107;
|
|
141
|
-
opacity: 0.9;
|
|
142
|
-
display: flex;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
49
|
}
|
|
146
50
|
|
|
147
|
-
.filter
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
margin-bottom: 4px;
|
|
51
|
+
button.intelli-filter.active{
|
|
52
|
+
color: white;
|
|
53
|
+
background: #268bff;
|
|
151
54
|
}
|
|
152
55
|
|
|
153
|
-
.filter
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
56
|
+
button.intelli-filter:disabled {
|
|
57
|
+
border: 1px solid #bdbdbd;
|
|
58
|
+
color: #4a4a4a;
|
|
59
|
+
background: #bdbdbd;
|
|
60
|
+
opacity: .5;
|
|
61
|
+
cursor: not-allowed;
|
|
158
62
|
}
|
|
@@ -18,7 +18,19 @@
|
|
|
18
18
|
@mixin table-container-scroll-bar($margin-left: 0, $margin-top: 0){
|
|
19
19
|
|
|
20
20
|
.table-container{
|
|
21
|
+
&::-webkit-scrollbar {
|
|
22
|
+
width: 4px;
|
|
23
|
+
height: 4px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&::-webkit-scrollbar-thumb {
|
|
27
|
+
border-radius: 4px;
|
|
28
|
+
background-color: rgba(0, 0, 0, 0.4) !important;
|
|
29
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
30
|
+
}
|
|
31
|
+
|
|
21
32
|
&::-webkit-scrollbar-track {
|
|
33
|
+
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
22
34
|
margin-top: $margin-top;
|
|
23
35
|
margin-left: $margin-left;
|
|
24
36
|
}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
@use "../anna-common-scss/gt-table" as *;
|
|
2
|
-
|
|
3
|
-
$LightBlue: #EEF6FF;
|
|
4
|
-
$LightOrange: #F9EADD;
|
|
5
|
-
$LightYellow: #F7F2D1;
|
|
6
|
-
$LightGreen: #E1FFED;
|
|
7
|
-
$DeepBlue: #1565C0;
|
|
8
|
-
$DeepOrange: #F97B07;
|
|
9
|
-
$DeepYellow: #F3BD18;
|
|
10
|
-
$DeepGreen: #00C853;
|
|
11
|
-
|
|
12
|
-
@mixin rowStyling($backgroundColor, $buttonColor, $color, $shadow-map) {
|
|
13
|
-
@include table-data((), $shadow-map, $backgroundColor);
|
|
14
|
-
|
|
15
|
-
::ng-deep .status-btn {
|
|
16
|
-
background-color: $buttonColor !important;
|
|
17
|
-
color: $color;
|
|
18
|
-
border-radius: 2px !important;
|
|
19
|
-
padding: 2px 6px;
|
|
20
|
-
cursor: default !important;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@mixin advertiser-listing-table-styling($advertiser-box-shadow-map, $advertiser-no-data-box-shadow-map, $row-height-map){
|
|
25
|
-
:host ::ng-deep anna-core-non-editable-generic-table-lib {
|
|
26
|
-
@include table-container-scroll-bar(0px, 2.625rem);
|
|
27
|
-
@include table-header((), $advertiser-box-shadow-map);
|
|
28
|
-
@include no-data-table(142px, $advertiser-no-data-box-shadow-map, $row-height-map);
|
|
29
|
-
|
|
30
|
-
.loader {
|
|
31
|
-
margin-bottom: 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
tbody{
|
|
35
|
-
tr {
|
|
36
|
-
@include rowStyling(#fff,white, #000, $advertiser-box-shadow-map);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
tr.AWAITING_BUYER_CONFIRMATION,
|
|
40
|
-
tr.AWAITING_SELLER_CONFIRMATION {
|
|
41
|
-
@include rowStyling($LightBlue, $DeepBlue, white, $advertiser-box-shadow-map);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
tr.NEED_SELLER_CONFIRMATION,
|
|
45
|
-
tr.NEED_BUYER_CONFIRMATION {
|
|
46
|
-
@include rowStyling($LightOrange, $DeepOrange, white, $advertiser-box-shadow-map);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
tr.NOTIFY_BUYER {
|
|
50
|
-
@include rowStyling($LightYellow, $DeepYellow, white, $advertiser-box-shadow-map);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
tr.APPROVED {
|
|
54
|
-
@include rowStyling($LightGreen, $DeepGreen, white, $advertiser-box-shadow-map);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
td{
|
|
58
|
-
cursor: default !important;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
th,td{
|
|
63
|
-
padding: 0 12px !important;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.no-data{
|
|
67
|
-
margin-top: -63px !important;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
@include table-bottom-border($advertiser-box-shadow-map);
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
*::-webkit-scrollbar {
|
|
2
|
-
width: 4px;
|
|
3
|
-
height: 4px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
*::-webkit-scrollbar-thumb {
|
|
7
|
-
border-radius: 4px;
|
|
8
|
-
background-color: rgba(0, 0, 0, 0.4) !important;
|
|
9
|
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
*::-webkit-scrollbar-track {
|
|
13
|
-
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
14
|
-
}
|