@annalib/anna-core 16.0.5 → 16.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/components/anna-icon-column/anna-icon-column.component.mjs +3 -3
- package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +2 -2
- package/fesm2015/annalib-anna-core.mjs +6 -6
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +6 -6
- 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/package.json +1 -1
- package/src/lib/anna-common-scss/_easy-filter.scss +148 -52
- package/src/lib/anna-common-scss/_gt-table.scss +0 -12
- package/src/lib/anna-common-scss/_scrollbar.scss +14 -0
|
@@ -113,5 +113,5 @@ export interface IActionItemTypeSTRING__ICON_OR_TEXT_ACTION {
|
|
|
113
113
|
additionalTextBeforeLink: string;
|
|
114
114
|
enableTooltipForAdditionalText: boolean;
|
|
115
115
|
}
|
|
116
|
-
export declare type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION";
|
|
116
|
+
export declare type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION";
|
|
117
117
|
export {};
|
package/package.json
CHANGED
|
@@ -1,62 +1,158 @@
|
|
|
1
|
-
@use "./fonts"
|
|
2
|
-
@
|
|
1
|
+
@use "./fonts" as *;
|
|
2
|
+
@use "./colors" as *;
|
|
3
|
+
@use "sass:map";
|
|
3
4
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
}
|
|
5
|
+
$intelli-filter-default-map: (
|
|
6
|
+
"inactive-text-color": $primary-color,
|
|
7
|
+
"inactive-border-color": $primary-color,
|
|
8
|
+
"inactive-bg-color": white,
|
|
9
|
+
"active-bg-color": $primary-color,
|
|
10
|
+
"active-text-color": white,
|
|
11
|
+
"active-border-color": $primary-color
|
|
12
|
+
);
|
|
39
13
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
padding: 5px 8px;
|
|
44
|
-
border: 1px solid #268bff;
|
|
45
|
-
background: white;
|
|
14
|
+
@mixin intelli-filter-default($padding: 5px 8px) {
|
|
15
|
+
button.intelli-filter {
|
|
16
|
+
@include fonts(Roboto, 0.75rem, normal, 500, normal, normal, 0.6px);
|
|
46
17
|
border-radius: 0.75rem;
|
|
47
18
|
height: 1.5rem;
|
|
48
19
|
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
|
+
}
|
|
49
145
|
}
|
|
50
146
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
147
|
+
.filter-label {
|
|
148
|
+
@include fonts(Roboto, 0.875rem, normal, normal, normal, normal, normal);
|
|
149
|
+
color: $charcoal;
|
|
150
|
+
margin-bottom: 4px;
|
|
54
151
|
}
|
|
55
152
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
cursor: not-allowed;
|
|
153
|
+
.filter-divider {
|
|
154
|
+
width: 1px;
|
|
155
|
+
margin-right: 8px;
|
|
156
|
+
height: 24px;
|
|
157
|
+
background: #111;
|
|
62
158
|
}
|
|
@@ -18,19 +18,7 @@
|
|
|
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
|
-
|
|
32
21
|
&::-webkit-scrollbar-track {
|
|
33
|
-
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
34
22
|
margin-top: $margin-top;
|
|
35
23
|
margin-left: $margin-left;
|
|
36
24
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
}
|