tango-app-ui-manage-tickets 3.7.0-beta.69 → 3.7.0-beta.70
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/.eslintrc.json +37 -0
- package/ng-package.json +7 -0
- package/package.json +12 -25
- package/src/lib/components/add-csm-modal/add-csm-modal.component.html +32 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.scss +14 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.spec.ts +23 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.ts +94 -0
- package/src/lib/components/audit-log/audit-log.component.html +1 -0
- package/src/lib/components/audit-log/audit-log.component.scss +0 -0
- package/src/lib/components/audit-log/audit-log.component.spec.ts +23 -0
- package/src/lib/components/audit-log/audit-log.component.ts +10 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.html +234 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.scss +186 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.spec.ts +23 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.ts +536 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.html +345 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.scss +34 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.spec.ts +23 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.ts +292 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.html +111 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.scss +101 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.spec.ts +23 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.ts +397 -0
- package/src/lib/components/audit-retag/audit-retag.component.html +129 -0
- package/src/lib/components/audit-retag/audit-retag.component.scss +146 -0
- package/src/lib/components/audit-retag/audit-retag.component.spec.ts +23 -0
- package/src/lib/components/audit-retag/audit-retag.component.ts +497 -0
- package/src/lib/components/comment-model/comment-model.component.html +24 -0
- package/src/lib/components/comment-model/comment-model.component.scss +20 -0
- package/src/lib/components/comment-model/comment-model.component.spec.ts +23 -0
- package/src/lib/components/comment-model/comment-model.component.ts +53 -0
- package/src/lib/components/count/count.component.html +54 -0
- package/src/lib/components/count/count.component.scss +14 -0
- package/src/lib/components/count/count.component.spec.ts +23 -0
- package/src/lib/components/count/count.component.ts +82 -0
- package/src/lib/components/custom-select/custom-select.component.html +134 -0
- package/src/lib/components/custom-select/custom-select.component.scss +204 -0
- package/src/lib/components/custom-select/custom-select.component.spec.ts +23 -0
- package/src/lib/components/custom-select/custom-select.component.ts +189 -0
- package/src/lib/components/filter-options/filter-options.component.html +51 -0
- package/src/lib/components/filter-options/filter-options.component.scss +102 -0
- package/src/lib/components/filter-options/filter-options.component.spec.ts +23 -0
- package/src/lib/components/filter-options/filter-options.component.ts +38 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.html +1275 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.scss +273 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.spec.ts +23 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.ts +1206 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.html +1136 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.scss +416 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.spec.ts +23 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.ts +1168 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.html +61 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.scss +20 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.spec.ts +23 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.ts +12 -0
- package/src/lib/components/group-select/group-select.component.html +44 -0
- package/src/lib/components/group-select/group-select.component.scss +144 -0
- package/src/lib/components/group-select/group-select.component.spec.ts +23 -0
- package/src/lib/components/group-select/group-select.component.ts +145 -0
- package/src/lib/components/re-trigger/re-trigger.component.html +53 -0
- package/src/lib/components/re-trigger/re-trigger.component.scss +16 -0
- package/src/lib/components/re-trigger/re-trigger.component.spec.ts +23 -0
- package/src/lib/components/re-trigger/re-trigger.component.ts +96 -0
- package/src/lib/components/reactive-select/reactive-select.component.html +18 -0
- package/src/lib/components/reactive-select/reactive-select.component.scss +52 -0
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +23 -0
- package/src/lib/components/reactive-select/reactive-select.component.ts +104 -0
- package/src/lib/components/remove-audit/remove-audit.component.html +38 -0
- package/src/lib/components/remove-audit/remove-audit.component.scss +27 -0
- package/src/lib/components/remove-audit/remove-audit.component.spec.ts +23 -0
- package/src/lib/components/remove-audit/remove-audit.component.ts +81 -0
- package/src/lib/components/start-audit/start-audit.component.html +174 -0
- package/src/lib/components/start-audit/start-audit.component.scss +185 -0
- package/src/lib/components/start-audit/start-audit.component.spec.ts +23 -0
- package/src/lib/components/start-audit/start-audit.component.ts +772 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.html +43 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.scss +35 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.spec.ts +23 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.ts +118 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.html +386 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.scss +87 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.spec.ts +23 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.ts +493 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +3751 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +1240 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.spec.ts +23 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.ts +2863 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.html +100 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.scss +34 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.spec.ts +23 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.ts +48 -0
- package/src/lib/components/tickets/tickets.component.html +451 -0
- package/src/lib/components/tickets/tickets.component.scss +131 -0
- package/src/lib/components/tickets/tickets.component.spec.ts +23 -0
- package/src/lib/components/tickets/tickets.component.ts +809 -0
- package/src/lib/components/viewcategory/viewcategory.component.html +38 -0
- package/src/lib/components/viewcategory/viewcategory.component.scss +29 -0
- package/src/lib/components/viewcategory/viewcategory.component.spec.ts +23 -0
- package/src/lib/components/viewcategory/viewcategory.component.ts +79 -0
- package/src/lib/services/audit.service.spec.ts +16 -0
- package/src/lib/services/audit.service.ts +98 -0
- package/src/lib/services/excel.service.ts +48 -0
- package/src/lib/services/ticket.service.spec.ts +16 -0
- package/src/lib/services/ticket.service.ts +501 -0
- package/src/lib/services/timer.service.spec.ts +16 -0
- package/src/lib/services/timer.service.ts +92 -0
- package/src/lib/tango-manage-tickets-routing.module.ts +37 -0
- package/src/lib/tango-manage-tickets.module.ts +68 -0
- package/{public-api.d.ts → src/public-api.ts} +8 -2
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2022/lib/components/add-csm-modal/add-csm-modal.component.mjs +0 -98
- package/esm2022/lib/components/audit-log/audit-log.component.mjs +0 -11
- package/esm2022/lib/components/audit-mapping-list/audit-mapping-list.component.mjs +0 -498
- package/esm2022/lib/components/audit-metrics/audit-metrics.component.mjs +0 -298
- package/esm2022/lib/components/audit-report-popup/audit-report-popup.component.mjs +0 -389
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +0 -480
- package/esm2022/lib/components/comment-model/comment-model.component.mjs +0 -58
- package/esm2022/lib/components/count/count.component.mjs +0 -89
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +0 -187
- package/esm2022/lib/components/filter-options/filter-options.component.mjs +0 -41
- package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +0 -1061
- package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +0 -1014
- package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +0 -15
- package/esm2022/lib/components/group-select/group-select.component.mjs +0 -155
- package/esm2022/lib/components/re-trigger/re-trigger.component.mjs +0 -96
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +0 -108
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +0 -81
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +0 -758
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +0 -131
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +0 -435
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +0 -2414
- package/esm2022/lib/components/ticketclosepopup/ticketclosepopup.component.mjs +0 -43
- package/esm2022/lib/components/tickets/tickets.component.mjs +0 -847
- package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +0 -89
- package/esm2022/lib/services/audit.service.mjs +0 -88
- package/esm2022/lib/services/excel.service.mjs +0 -45
- package/esm2022/lib/services/ticket.service.mjs +0 -319
- package/esm2022/lib/services/timer.service.mjs +0 -84
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +0 -44
- package/esm2022/lib/tango-manage-tickets.module.mjs +0 -109
- package/esm2022/public-api.mjs +0 -6
- package/esm2022/tango-app-ui-manage-tickets.mjs +0 -5
- package/fesm2022/tango-app-ui-manage-tickets.mjs +0 -9848
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/add-csm-modal/add-csm-modal.component.d.ts +0 -30
- package/lib/components/audit-log/audit-log.component.d.ts +0 -5
- package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +0 -73
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +0 -59
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +0 -52
- package/lib/components/audit-retag/audit-retag.component.d.ts +0 -59
- package/lib/components/comment-model/comment-model.component.d.ts +0 -17
- package/lib/components/count/count.component.d.ts +0 -23
- package/lib/components/custom-select/custom-select.component.d.ts +0 -35
- package/lib/components/filter-options/filter-options.component.d.ts +0 -15
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +0 -143
- package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +0 -132
- package/lib/components/footfall-popup/footfall-popup.component.d.ts +0 -8
- package/lib/components/group-select/group-select.component.d.ts +0 -33
- package/lib/components/re-trigger/re-trigger.component.d.ts +0 -32
- package/lib/components/reactive-select/reactive-select.component.d.ts +0 -32
- package/lib/components/remove-audit/remove-audit.component.d.ts +0 -16
- package/lib/components/start-audit/start-audit.component.d.ts +0 -86
- package/lib/components/tango-manage-tickets/tango-manage-tickets.component.d.ts +0 -28
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +0 -79
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +0 -291
- package/lib/components/ticketclosepopup/ticketclosepopup.component.d.ts +0 -15
- package/lib/components/tickets/tickets.component.d.ts +0 -88
- package/lib/components/viewcategory/viewcategory.component.d.ts +0 -16
- package/lib/services/audit.service.d.ts +0 -36
- package/lib/services/excel.service.d.ts +0 -10
- package/lib/services/ticket.service.d.ts +0 -87
- package/lib/services/timer.service.d.ts +0 -22
- package/lib/tango-manage-tickets-routing.module.d.ts +0 -7
- package/lib/tango-manage-tickets.module.d.ts +0 -38
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
.card-header,
|
|
2
|
+
.header {
|
|
3
|
+
color: var(--Gray-900, #101828);
|
|
4
|
+
font-size: 20px !important;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 700;
|
|
7
|
+
line-height: 30px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sub-header {
|
|
11
|
+
color: var(--Gray-700, #344054);
|
|
12
|
+
font-size: 14px !important;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 600;
|
|
15
|
+
line-height: 20px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ellipse1 {
|
|
19
|
+
border-radius: 6px;
|
|
20
|
+
border-bottom: 2px solid var(--Gray-200, #EAECF0);
|
|
21
|
+
background: radial-gradient(206.89% 107.47% at 16.16% 32.77%, rgba(255, 255, 255, 0.40) 0%, rgba(69, 187, 254, 0.20) 100%), #F2F4F7;
|
|
22
|
+
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.card-title-foot{
|
|
26
|
+
color: var(--Gray-800, #1D2939) !important;
|
|
27
|
+
font-size: 18px;
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
line-height: 28px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.card-title-label{
|
|
33
|
+
color: var(--Gray-800, #1D2939) !important;
|
|
34
|
+
font-size: 16px;
|
|
35
|
+
font-weight: 600;
|
|
36
|
+
line-height: 28px;
|
|
37
|
+
}
|
|
38
|
+
.card-title-value{
|
|
39
|
+
color: var(--Gray-800, #1D2939) !important;
|
|
40
|
+
font-size: 16px;
|
|
41
|
+
font-weight: 400;
|
|
42
|
+
line-height: 28px;
|
|
43
|
+
}
|
|
44
|
+
input[type='checkbox'] {
|
|
45
|
+
width: 16px !important;
|
|
46
|
+
height: 16px !important;
|
|
47
|
+
margin: -2px 5px -2px;
|
|
48
|
+
border-radius: 4px !important;
|
|
49
|
+
-webkit-appearance: none;
|
|
50
|
+
-moz-appearance: none;
|
|
51
|
+
-o-appearance: none;
|
|
52
|
+
appearance: none;
|
|
53
|
+
outline: 1px solid var(--gray-600, #D0D5DD) !important;
|
|
54
|
+
box-shadow: none;
|
|
55
|
+
font-size: 0.5em;
|
|
56
|
+
text-align: center;
|
|
57
|
+
line-height: 1em;
|
|
58
|
+
background: white;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
input[type='checkbox'] {
|
|
62
|
+
outline: 1px solid var(--primary-600, #00A3FF) !important;
|
|
63
|
+
background-color: var(--primary-50, #EAF8FF);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
input[type='checkbox']:checked:after {
|
|
67
|
+
content: '';
|
|
68
|
+
transform: rotate(45deg);
|
|
69
|
+
border-bottom: 2px solid #00A3FF;
|
|
70
|
+
border-right: 2px solid #00A3FF;
|
|
71
|
+
display: inline-block;
|
|
72
|
+
width: 0.5em;
|
|
73
|
+
padding-left: 3px;
|
|
74
|
+
padding-top: 10px;
|
|
75
|
+
padding-right: 0px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.rotate {
|
|
79
|
+
rotate: 180deg;
|
|
80
|
+
transition: 1s;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.border-selectall{
|
|
84
|
+
border-radius: 6px;
|
|
85
|
+
border-bottom: 1px solid var(--Gray-200, #EAECF0);
|
|
86
|
+
background: #F9FAFB;
|
|
87
|
+
padding: 8px 12px;
|
|
88
|
+
}
|
|
89
|
+
.border-selectall1{
|
|
90
|
+
border-radius: 6px !important;
|
|
91
|
+
background: var(--White, #FFF) !important;
|
|
92
|
+
padding: 8px 2px;
|
|
93
|
+
}
|
|
94
|
+
.border-totalfootfall {
|
|
95
|
+
border-radius: 12px;
|
|
96
|
+
padding: 4px;
|
|
97
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
98
|
+
background: var(--White, #FFF);
|
|
99
|
+
}
|
|
100
|
+
.vl {
|
|
101
|
+
border-left: 2px solid #000;
|
|
102
|
+
height: 50px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.duplicate-head{
|
|
106
|
+
color: var(--Gray-700, #344054);
|
|
107
|
+
font-size: 16px;
|
|
108
|
+
font-weight: 600;
|
|
109
|
+
line-height: 20px;
|
|
110
|
+
}
|
|
111
|
+
.img-border{
|
|
112
|
+
border-radius: 5px !important;
|
|
113
|
+
border: 2px solid var(--Gray-300, #D0D5DD);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.desc-title{
|
|
117
|
+
color: var(--Gray-900, #101828);
|
|
118
|
+
font-size: 12px;
|
|
119
|
+
font-weight: 500;
|
|
120
|
+
line-height: 20px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.desc-value{
|
|
124
|
+
color: var(--Gray-900, #475467);
|
|
125
|
+
font-size: 10px;
|
|
126
|
+
font-weight: 500;
|
|
127
|
+
line-height: 10px;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.img-border {
|
|
131
|
+
overflow: hidden;
|
|
132
|
+
position: relative;
|
|
133
|
+
}
|
|
134
|
+
.btn-resize{
|
|
135
|
+
font-size: 13px !important;
|
|
136
|
+
height: 29px !important;
|
|
137
|
+
line-height: 11px !important;
|
|
138
|
+
padding: 1px !important;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.absolute{
|
|
142
|
+
top: 5px; right: 5px; z-index: 2;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
.img-src{
|
|
147
|
+
width:25%;
|
|
148
|
+
height:20%
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.backButtonright {
|
|
152
|
+
border-radius: 1000px !important;
|
|
153
|
+
background: var(--text-primary, #FFF) !important;
|
|
154
|
+
padding: 12px !important;
|
|
155
|
+
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03) !important;
|
|
156
|
+
box-shadow: 0px 8.727px 11.636px -2.909px rgba(16, 24, 40, 0.08), 0px 2.909px 4.364px -1.455px rgba(16, 24, 40, 0.03) !important;
|
|
157
|
+
position: absolute;
|
|
158
|
+
top: 30px;
|
|
159
|
+
right: -10px;
|
|
160
|
+
z-index: 0;
|
|
161
|
+
}
|
|
162
|
+
.backButtonleft{
|
|
163
|
+
border-radius: 1000px !important;
|
|
164
|
+
background: #FFF;
|
|
165
|
+
padding: 14px !important;
|
|
166
|
+
border: var(--Gray-300, #D0D5DD);
|
|
167
|
+
box-shadow: 0px 8.727px 11.636px -2.909px rgba(16, 24, 40, 0.08), 0px 2.909px 4.364px -1.455px rgba(16, 24, 40, 0.03);
|
|
168
|
+
position: absolute;
|
|
169
|
+
top: 30px;
|
|
170
|
+
left:-20px;
|
|
171
|
+
z-index: 5;
|
|
172
|
+
}
|
|
173
|
+
.select-wrapper {
|
|
174
|
+
position: relative;
|
|
175
|
+
display: inline-block;
|
|
176
|
+
width: 100%; /* Ensure it takes the same width as select */
|
|
177
|
+
}
|
|
178
|
+
.placeholder-overlay {
|
|
179
|
+
position: absolute;
|
|
180
|
+
color: var(--Gray-500, #667085);
|
|
181
|
+
font-family: "Inter";
|
|
182
|
+
font-size: 16px !important;
|
|
183
|
+
font-style: normal;
|
|
184
|
+
font-weight: 400;
|
|
185
|
+
top: 10px; /* Adjust to align text with select component */
|
|
186
|
+
left: 15px; /* Adjust for horizontal alignment */
|
|
187
|
+
pointer-events: none; /* Allows interaction with select even if overlay is visible */
|
|
188
|
+
font-size: 1.1rem;
|
|
189
|
+
z-index: 1;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.card-title{
|
|
193
|
+
color: var(--Black, #101828) !important;
|
|
194
|
+
font-size: 20px !important;
|
|
195
|
+
font-weight: 700 !important;
|
|
196
|
+
line-height: 30px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.card-title-sub-header{
|
|
200
|
+
color: var(--Black, #101828);
|
|
201
|
+
font-size: 14px;
|
|
202
|
+
font-weight: 500;
|
|
203
|
+
line-height: 30px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.separator.separator-dashed {
|
|
207
|
+
border-bottom-style: double !important;
|
|
208
|
+
}
|
|
209
|
+
.border-1{
|
|
210
|
+
border-radius: 4px !important;
|
|
211
|
+
border: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
212
|
+
// box-shadow: 0 0 0 2.291px #475467 !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.store-item {
|
|
216
|
+
display: flex;
|
|
217
|
+
justify-content: space-between;
|
|
218
|
+
align-items: center;
|
|
219
|
+
padding: 8px 12px;
|
|
220
|
+
border-radius: 8px;
|
|
221
|
+
transition: background-color 0.3s ease;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.store-item-active {
|
|
225
|
+
background: #EAF8FF; /* Light blue for active */
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.left {
|
|
229
|
+
display: flex;
|
|
230
|
+
align-items: center;
|
|
231
|
+
gap: 8px;
|
|
232
|
+
overflow: hidden;
|
|
233
|
+
color: var(--Gray-700, #344054);
|
|
234
|
+
text-overflow: ellipsis;
|
|
235
|
+
font-size: 14px;
|
|
236
|
+
font-style: normal;
|
|
237
|
+
font-weight: 400;
|
|
238
|
+
line-height: 24px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.left .active-text {
|
|
242
|
+
overflow: hidden;
|
|
243
|
+
color: var(--Primary-700, #009BF3);
|
|
244
|
+
font-size: 14px;
|
|
245
|
+
font-style: normal;
|
|
246
|
+
font-weight: 400;
|
|
247
|
+
line-height: 24px;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
.badge-active {
|
|
252
|
+
border-radius: 16px;
|
|
253
|
+
background: var(--Primary-50, #EAF8FF);
|
|
254
|
+
color: var(--Primary-700, #009BF3);
|
|
255
|
+
text-align: center;
|
|
256
|
+
font-size: 12px;
|
|
257
|
+
font-style: normal;
|
|
258
|
+
font-weight: 500;
|
|
259
|
+
line-height: 20px;
|
|
260
|
+
mix-blend-mode: multiply;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.badge-normal {
|
|
264
|
+
color: var(--Gray-700, #344054);
|
|
265
|
+
text-align: center;
|
|
266
|
+
font-size: 12px;
|
|
267
|
+
font-style: normal;
|
|
268
|
+
font-weight: 500;
|
|
269
|
+
line-height: 20px;
|
|
270
|
+
|
|
271
|
+
border-radius: 16px;
|
|
272
|
+
background: var(--Gray-100, #F2F4F7);
|
|
273
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { FootfallDicComponent } from './footfall-dic.component';
|
|
4
|
+
|
|
5
|
+
describe('FootfallDicComponent', () => {
|
|
6
|
+
let component: FootfallDicComponent;
|
|
7
|
+
let fixture: ComponentFixture<FootfallDicComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
declarations: [FootfallDicComponent]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
|
|
15
|
+
fixture = TestBed.createComponent(FootfallDicComponent);
|
|
16
|
+
component = fixture.componentInstance;
|
|
17
|
+
fixture.detectChanges();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it('should create', () => {
|
|
21
|
+
expect(component).toBeTruthy();
|
|
22
|
+
});
|
|
23
|
+
});
|