tango-app-ui-manage-tickets 3.7.0-beta.61 → 3.7.0-beta.62
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/esm2022/lib/components/add-csm-modal/add-csm-modal.component.mjs +98 -0
- package/esm2022/lib/components/audit-log/audit-log.component.mjs +11 -0
- package/esm2022/lib/components/audit-mapping-list/audit-mapping-list.component.mjs +486 -0
- package/esm2022/lib/components/audit-metrics/audit-metrics.component.mjs +298 -0
- package/esm2022/lib/components/audit-report-popup/audit-report-popup.component.mjs +389 -0
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +472 -0
- package/esm2022/lib/components/comment-model/comment-model.component.mjs +58 -0
- package/esm2022/lib/components/count/count.component.mjs +89 -0
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +187 -0
- package/esm2022/lib/components/filter-options/filter-options.component.mjs +41 -0
- package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +1061 -0
- package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +1014 -0
- package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +15 -0
- package/esm2022/lib/components/group-select/group-select.component.mjs +155 -0
- package/esm2022/lib/components/re-trigger/re-trigger.component.mjs +96 -0
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +108 -0
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +81 -0
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +761 -0
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +131 -0
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +435 -0
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +2748 -0
- package/esm2022/lib/components/ticketclosepopup/ticketclosepopup.component.mjs +43 -0
- package/esm2022/lib/components/tickets/tickets.component.mjs +847 -0
- package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +89 -0
- package/esm2022/lib/services/audit.service.mjs +88 -0
- package/esm2022/lib/services/excel.service.mjs +45 -0
- package/esm2022/lib/services/ticket.service.mjs +319 -0
- package/esm2022/lib/services/timer.service.mjs +84 -0
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +44 -0
- package/esm2022/lib/tango-manage-tickets.module.mjs +109 -0
- package/esm2022/public-api.mjs +6 -0
- package/esm2022/tango-app-ui-manage-tickets.mjs +5 -0
- package/fesm2022/tango-app-ui-manage-tickets.mjs +10165 -0
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/add-csm-modal/add-csm-modal.component.d.ts +30 -0
- package/lib/components/audit-log/audit-log.component.d.ts +5 -0
- package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +73 -0
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +59 -0
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +52 -0
- package/lib/components/audit-retag/audit-retag.component.d.ts +59 -0
- package/lib/components/comment-model/comment-model.component.d.ts +17 -0
- package/lib/components/count/count.component.d.ts +23 -0
- package/lib/components/custom-select/custom-select.component.d.ts +35 -0
- package/lib/components/filter-options/filter-options.component.d.ts +15 -0
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +143 -0
- package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +132 -0
- package/lib/components/footfall-popup/footfall-popup.component.d.ts +8 -0
- package/lib/components/group-select/group-select.component.d.ts +33 -0
- package/lib/components/re-trigger/re-trigger.component.d.ts +32 -0
- package/lib/components/reactive-select/reactive-select.component.d.ts +32 -0
- package/lib/components/remove-audit/remove-audit.component.d.ts +16 -0
- package/lib/components/start-audit/start-audit.component.d.ts +86 -0
- package/lib/components/tango-manage-tickets/tango-manage-tickets.component.d.ts +28 -0
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +79 -0
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +287 -0
- package/lib/components/ticketclosepopup/ticketclosepopup.component.d.ts +15 -0
- package/lib/components/tickets/tickets.component.d.ts +88 -0
- package/lib/components/viewcategory/viewcategory.component.d.ts +16 -0
- package/lib/services/audit.service.d.ts +36 -0
- package/lib/services/excel.service.d.ts +10 -0
- package/lib/services/ticket.service.d.ts +87 -0
- package/lib/services/timer.service.d.ts +22 -0
- package/lib/tango-manage-tickets-routing.module.d.ts +7 -0
- package/lib/tango-manage-tickets.module.d.ts +38 -0
- package/package.json +25 -12
- package/{src/public-api.ts → public-api.d.ts} +2 -8
- package/.eslintrc.json +0 -37
- package/ng-package.json +0 -7
- package/src/lib/components/add-csm-modal/add-csm-modal.component.html +0 -32
- package/src/lib/components/add-csm-modal/add-csm-modal.component.scss +0 -14
- package/src/lib/components/add-csm-modal/add-csm-modal.component.spec.ts +0 -23
- package/src/lib/components/add-csm-modal/add-csm-modal.component.ts +0 -94
- package/src/lib/components/audit-log/audit-log.component.html +0 -1
- package/src/lib/components/audit-log/audit-log.component.scss +0 -0
- package/src/lib/components/audit-log/audit-log.component.spec.ts +0 -23
- package/src/lib/components/audit-log/audit-log.component.ts +0 -10
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.html +0 -234
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.scss +0 -186
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.spec.ts +0 -23
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.ts +0 -520
- package/src/lib/components/audit-metrics/audit-metrics.component.html +0 -345
- package/src/lib/components/audit-metrics/audit-metrics.component.scss +0 -34
- package/src/lib/components/audit-metrics/audit-metrics.component.spec.ts +0 -23
- package/src/lib/components/audit-metrics/audit-metrics.component.ts +0 -292
- package/src/lib/components/audit-report-popup/audit-report-popup.component.html +0 -111
- package/src/lib/components/audit-report-popup/audit-report-popup.component.scss +0 -101
- package/src/lib/components/audit-report-popup/audit-report-popup.component.spec.ts +0 -23
- package/src/lib/components/audit-report-popup/audit-report-popup.component.ts +0 -397
- package/src/lib/components/audit-retag/audit-retag.component.html +0 -129
- package/src/lib/components/audit-retag/audit-retag.component.scss +0 -146
- package/src/lib/components/audit-retag/audit-retag.component.spec.ts +0 -23
- package/src/lib/components/audit-retag/audit-retag.component.ts +0 -489
- package/src/lib/components/comment-model/comment-model.component.html +0 -24
- package/src/lib/components/comment-model/comment-model.component.scss +0 -20
- package/src/lib/components/comment-model/comment-model.component.spec.ts +0 -23
- package/src/lib/components/comment-model/comment-model.component.ts +0 -53
- package/src/lib/components/count/count.component.html +0 -54
- package/src/lib/components/count/count.component.scss +0 -14
- package/src/lib/components/count/count.component.spec.ts +0 -23
- package/src/lib/components/count/count.component.ts +0 -82
- package/src/lib/components/custom-select/custom-select.component.html +0 -134
- package/src/lib/components/custom-select/custom-select.component.scss +0 -204
- package/src/lib/components/custom-select/custom-select.component.spec.ts +0 -23
- package/src/lib/components/custom-select/custom-select.component.ts +0 -189
- package/src/lib/components/filter-options/filter-options.component.html +0 -51
- package/src/lib/components/filter-options/filter-options.component.scss +0 -102
- package/src/lib/components/filter-options/filter-options.component.spec.ts +0 -23
- package/src/lib/components/filter-options/filter-options.component.ts +0 -38
- package/src/lib/components/footfall-dic/footfall-dic.component.html +0 -1275
- package/src/lib/components/footfall-dic/footfall-dic.component.scss +0 -273
- package/src/lib/components/footfall-dic/footfall-dic.component.spec.ts +0 -23
- package/src/lib/components/footfall-dic/footfall-dic.component.ts +0 -1206
- package/src/lib/components/footfall-dicview/footfall-dicview.component.html +0 -1136
- package/src/lib/components/footfall-dicview/footfall-dicview.component.scss +0 -416
- package/src/lib/components/footfall-dicview/footfall-dicview.component.spec.ts +0 -23
- package/src/lib/components/footfall-dicview/footfall-dicview.component.ts +0 -1168
- package/src/lib/components/footfall-popup/footfall-popup.component.html +0 -61
- package/src/lib/components/footfall-popup/footfall-popup.component.scss +0 -20
- package/src/lib/components/footfall-popup/footfall-popup.component.spec.ts +0 -23
- package/src/lib/components/footfall-popup/footfall-popup.component.ts +0 -12
- package/src/lib/components/group-select/group-select.component.html +0 -44
- package/src/lib/components/group-select/group-select.component.scss +0 -144
- package/src/lib/components/group-select/group-select.component.spec.ts +0 -23
- package/src/lib/components/group-select/group-select.component.ts +0 -145
- package/src/lib/components/re-trigger/re-trigger.component.html +0 -53
- package/src/lib/components/re-trigger/re-trigger.component.scss +0 -16
- package/src/lib/components/re-trigger/re-trigger.component.spec.ts +0 -23
- package/src/lib/components/re-trigger/re-trigger.component.ts +0 -96
- package/src/lib/components/reactive-select/reactive-select.component.html +0 -18
- package/src/lib/components/reactive-select/reactive-select.component.scss +0 -52
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +0 -23
- package/src/lib/components/reactive-select/reactive-select.component.ts +0 -104
- package/src/lib/components/remove-audit/remove-audit.component.html +0 -38
- package/src/lib/components/remove-audit/remove-audit.component.scss +0 -27
- package/src/lib/components/remove-audit/remove-audit.component.spec.ts +0 -23
- package/src/lib/components/remove-audit/remove-audit.component.ts +0 -81
- package/src/lib/components/start-audit/start-audit.component.html +0 -174
- package/src/lib/components/start-audit/start-audit.component.scss +0 -185
- package/src/lib/components/start-audit/start-audit.component.spec.ts +0 -23
- package/src/lib/components/start-audit/start-audit.component.ts +0 -761
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.html +0 -43
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.scss +0 -35
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.spec.ts +0 -23
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.ts +0 -118
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.html +0 -386
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.scss +0 -87
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.spec.ts +0 -23
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.ts +0 -494
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +0 -4743
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +0 -1208
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.spec.ts +0 -23
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.ts +0 -3344
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.html +0 -100
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.scss +0 -34
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.spec.ts +0 -23
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.ts +0 -48
- package/src/lib/components/tickets/tickets.component.html +0 -451
- package/src/lib/components/tickets/tickets.component.scss +0 -131
- package/src/lib/components/tickets/tickets.component.spec.ts +0 -23
- package/src/lib/components/tickets/tickets.component.ts +0 -809
- package/src/lib/components/viewcategory/viewcategory.component.html +0 -38
- package/src/lib/components/viewcategory/viewcategory.component.scss +0 -29
- package/src/lib/components/viewcategory/viewcategory.component.spec.ts +0 -23
- package/src/lib/components/viewcategory/viewcategory.component.ts +0 -79
- package/src/lib/services/audit.service.spec.ts +0 -16
- package/src/lib/services/audit.service.ts +0 -98
- package/src/lib/services/excel.service.ts +0 -48
- package/src/lib/services/ticket.service.spec.ts +0 -16
- package/src/lib/services/ticket.service.ts +0 -501
- package/src/lib/services/timer.service.spec.ts +0 -16
- package/src/lib/services/timer.service.ts +0 -92
- package/src/lib/tango-manage-tickets-routing.module.ts +0 -37
- package/src/lib/tango-manage-tickets.module.ts +0 -68
- package/tsconfig.lib.json +0 -14
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -14
|
@@ -1,273 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
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
|
-
});
|