tango-app-ui-manage-tickets 3.7.0-beta.7 → 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-metrics/audit-metrics.component.mjs +0 -298
- 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/footfall-dic/footfall-dic.component.mjs +0 -894
- 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/tango-manage-tickets/tango-manage-tickets.component.mjs +0 -127
- package/esm2022/lib/components/tickets/tickets.component.mjs +0 -793
- package/esm2022/lib/services/excel.service.mjs +0 -45
- package/esm2022/lib/services/ticket.service.mjs +0 -158
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +0 -24
- package/esm2022/lib/tango-manage-tickets.module.mjs +0 -54
- 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 -2914
- 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-metrics/audit-metrics.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/footfall-dic/footfall-dic.component.d.ts +0 -130
- 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/tango-manage-tickets/tango-manage-tickets.component.d.ts +0 -27
- package/lib/components/tickets/tickets.component.d.ts +0 -84
- package/lib/services/excel.service.d.ts +0 -10
- package/lib/services/ticket.service.d.ts +0 -49
- package/lib/tango-manage-tickets-routing.module.d.ts +0 -7
- package/lib/tango-manage-tickets.module.d.ts +0 -21
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
.border{
|
|
2
|
+
border: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
3
|
+
border-radius: 8px;
|
|
4
|
+
border: 1px solid #D0D5DD;
|
|
5
|
+
background: #fff;
|
|
6
|
+
box-shadow: 0 1px 2px #1018280d;
|
|
7
|
+
}
|
|
8
|
+
.border-end{
|
|
9
|
+
border-right: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
10
|
+
}
|
|
11
|
+
.text{
|
|
12
|
+
color: var(--Gray-700, #344054);
|
|
13
|
+
font-size: 14px;
|
|
14
|
+
line-height: 20px;
|
|
15
|
+
}
|
|
16
|
+
textarea:focus,textarea:active{
|
|
17
|
+
box-shadow: none !important;
|
|
18
|
+
}
|
|
19
|
+
a{
|
|
20
|
+
color: var(--Primary-700, #009BF3) !important;
|
|
21
|
+
font-family: Inter;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
font-weight: 600 !important;
|
|
25
|
+
line-height: 20px;
|
|
26
|
+
text-decoration-line: underline;
|
|
27
|
+
}
|
|
28
|
+
// a:hover{
|
|
29
|
+
// text-decoration: underline !important;
|
|
30
|
+
// }
|
|
31
|
+
|
|
32
|
+
.arrow-code {
|
|
33
|
+
width: 6.38px;
|
|
34
|
+
height: 10px;
|
|
35
|
+
color: #3F4254;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.butn {
|
|
39
|
+
border: 1px solid #009ef7 !important;
|
|
40
|
+
padding: calc(0.65rem + 1px) calc(1.5rem + 1px) !important;
|
|
41
|
+
}
|
|
42
|
+
.butn:hover{
|
|
43
|
+
color:#009ef7 !important
|
|
44
|
+
}
|
|
45
|
+
.butn-flag {
|
|
46
|
+
border: 1px solid #009ef7 !important;
|
|
47
|
+
border-right-style: none !important;
|
|
48
|
+
border-radius: 0.5rem 0rem 0rem 0.5rem !important;
|
|
49
|
+
padding: calc(0.25rem + 1px) calc(1.5rem + 1px) !important;
|
|
50
|
+
background-color: #fff !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.butn-flag1 {
|
|
54
|
+
border: 1px solid #009ef7 !important;
|
|
55
|
+
border-radius: 0rem 0.5rem 0.5rem 0rem !important;
|
|
56
|
+
padding: calc(0.25rem + 1px) calc(1.5rem + 1px) !important;
|
|
57
|
+
background-color: #fff !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.btn.btn-light-primary:hover:not(.btn-active) {
|
|
61
|
+
background-color: #fff !important;
|
|
62
|
+
}
|
|
63
|
+
.btn-check:checked + .btn.btn-light-primary, .btn-check:active + .btn.btn-light-primary, .btn.btn-light-primary:focus:not(.btn-active), .btn.btn-light-primary:hover:not(.btn-active), .btn.btn-light-primary:active:not(.btn-active), .btn.btn-light-primary.active, .btn.btn-light-primary.show, .show > .btn.btn-light-primary {
|
|
64
|
+
background-color: #fff !important;
|
|
65
|
+
}
|
|
66
|
+
.card .card-header {
|
|
67
|
+
min-height: 51px !important;
|
|
68
|
+
}
|
|
69
|
+
.img {
|
|
70
|
+
width: 85px;
|
|
71
|
+
height: 200px;
|
|
72
|
+
}
|
|
73
|
+
.card-label{
|
|
74
|
+
font-family: 'Inter';
|
|
75
|
+
font-style: normal;
|
|
76
|
+
color: var(--Gray-900, #101828) !important;
|
|
77
|
+
font-size: 18px !important;
|
|
78
|
+
font-weight: 600 !important;
|
|
79
|
+
line-height: 30px;
|
|
80
|
+
}
|
|
81
|
+
.item {
|
|
82
|
+
position: relative;
|
|
83
|
+
padding-top: 10px;
|
|
84
|
+
display: inline-block;
|
|
85
|
+
// max-height: 455px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.notify-badge {
|
|
89
|
+
position: absolute;
|
|
90
|
+
right: 4px;
|
|
91
|
+
top: 195px;
|
|
92
|
+
background: var(--Primary-50, #EAF8FF);;
|
|
93
|
+
text-align: center;
|
|
94
|
+
border-radius: 6px;
|
|
95
|
+
color: var(--Primary-600, #00A3FF);
|
|
96
|
+
border: 2px solid var(--Primary-600, #00A3FF);
|
|
97
|
+
padding: 5px 10px;
|
|
98
|
+
font-size: 15px;
|
|
99
|
+
}
|
|
100
|
+
.notify-badge1 {
|
|
101
|
+
position: absolute;
|
|
102
|
+
right: 14px;
|
|
103
|
+
top: 10px;
|
|
104
|
+
background: var(--Primary-50, #EAF8FF);;
|
|
105
|
+
text-align: center;
|
|
106
|
+
border-radius: 6px;
|
|
107
|
+
border: 2px solid var(--Primary-600, #00A3FF);
|
|
108
|
+
color: var(--Primary-600, #00A3FF);
|
|
109
|
+
padding: 0px 7px;
|
|
110
|
+
font-size: 19px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
.fixed {
|
|
115
|
+
position: fixed;
|
|
116
|
+
width: 86%; z-index: 1;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.nofixed {
|
|
120
|
+
position: fixed;
|
|
121
|
+
width: 86%; z-index: 1;
|
|
122
|
+
}
|
|
123
|
+
.scroll-top{
|
|
124
|
+
margin-top: 150px !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.loader1 {
|
|
128
|
+
width: 90px;
|
|
129
|
+
height: 90px;
|
|
130
|
+
margin-left: 580px;
|
|
131
|
+
}
|
|
132
|
+
.scroll-y{
|
|
133
|
+
overflow-y: auto !important;
|
|
134
|
+
position: relative !important;
|
|
135
|
+
}
|
|
136
|
+
.text-sub{
|
|
137
|
+
color: var(--Gray-500, #667085);
|
|
138
|
+
font-size: 14px;
|
|
139
|
+
font-weight: 400;
|
|
140
|
+
line-height: 20px;
|
|
141
|
+
}
|
|
142
|
+
.savebtn{
|
|
143
|
+
padding: 10px 18px;
|
|
144
|
+
border-radius: 8px;
|
|
145
|
+
border: 1px solid var(--Primary-600, #00A3FF);
|
|
146
|
+
background: var(--Primary-600, #00A3FF);
|
|
147
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
148
|
+
font-size: 16px;
|
|
149
|
+
font-weight: 600;
|
|
150
|
+
line-height: 24px;
|
|
151
|
+
}
|
|
152
|
+
.btn-outline {
|
|
153
|
+
border-radius: 8px;
|
|
154
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
155
|
+
background: var(--White, #FFF);
|
|
156
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
|
|
157
|
+
color: var(--Gray-700, #344054);
|
|
158
|
+
font-size: 14px;
|
|
159
|
+
font-weight: 500;
|
|
160
|
+
line-height: 24px;
|
|
161
|
+
}
|
|
162
|
+
.border-1{
|
|
163
|
+
border: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
164
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
|
|
165
|
+
}
|
|
166
|
+
.w-40px{
|
|
167
|
+
padding: 8px !important;
|
|
168
|
+
}
|
|
169
|
+
.h-45px{
|
|
170
|
+
height:39px !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.text-timer{
|
|
174
|
+
color: var(--Gray-900, #101828);
|
|
175
|
+
font-size: 24px;
|
|
176
|
+
line-height: 32px;
|
|
177
|
+
}
|
|
178
|
+
.bg-timer{
|
|
179
|
+
border-radius: 12px;
|
|
180
|
+
background: var(--Primary-25, #F6FCFF);
|
|
181
|
+
padding:4px
|
|
182
|
+
}
|
|
183
|
+
.overflow{
|
|
184
|
+
overflow-x: auto;
|
|
185
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { StartAuditComponent } from './start-audit.component';
|
|
4
|
+
|
|
5
|
+
describe('StartAuditComponent', () => {
|
|
6
|
+
let component: StartAuditComponent;
|
|
7
|
+
let fixture: ComponentFixture<StartAuditComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
declarations: [StartAuditComponent]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
|
|
15
|
+
fixture = TestBed.createComponent(StartAuditComponent);
|
|
16
|
+
component = fixture.componentInstance;
|
|
17
|
+
fixture.detectChanges();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it('should create', () => {
|
|
21
|
+
expect(component).toBeTruthy();
|
|
22
|
+
});
|
|
23
|
+
});
|