common-header-lib 0.0.1
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/README.md +24 -0
- package/assets/.gitkeep +0 -0
- package/assets/i18n/ar.json +83 -0
- package/assets/i18n/de.json +83 -0
- package/assets/i18n/en.json +83 -0
- package/assets/i18n/es.json +83 -0
- package/assets/i18n/fr.json +83 -0
- package/assets/i18n/hi.json +83 -0
- package/assets/i18n/ja.json +83 -0
- package/assets/i18n/ko.json +83 -0
- package/assets/images/APP019.svg +6 -0
- package/assets/images/APP020.svg +4 -0
- package/assets/images/APP021.svg +6 -0
- package/assets/images/APP022.svg +6 -0
- package/assets/images/APP023.svg +11 -0
- package/assets/images/APP024.svg +9 -0
- package/assets/images/APP025.svg +8 -0
- package/assets/images/APP026.svg +4 -0
- package/assets/images/APP027.svg +5 -0
- package/assets/images/APP028.svg +6 -0
- package/assets/images/APP029.svg +12 -0
- package/assets/images/APP030.svg +20 -0
- package/assets/images/APP031.svg +14 -0
- package/assets/images/APP032.svg +17 -0
- package/assets/images/Frame.svg +104 -0
- package/assets/images/apps-1.svg +22 -0
- package/assets/images/bell-icon.svg +3 -0
- package/assets/images/check_circle.svg +3 -0
- package/assets/images/close copy.svg +5 -0
- package/assets/images/close.svg +5 -0
- package/assets/images/copy-img.svg +3 -0
- package/assets/images/cross-search.svg +4 -0
- package/assets/images/domain_img.svg +3 -0
- package/assets/images/east.svg +3 -0
- package/assets/images/error.svg +3 -0
- package/assets/images/filepath.svg +8 -0
- package/assets/images/flag1.svg +3 -0
- package/assets/images/gc-mail.svg +3 -0
- package/assets/images/grey-arrow.svg +3 -0
- package/assets/images/info.svg +3 -0
- package/assets/images/local.svg +3 -0
- package/assets/images/lock-pass.svg +3 -0
- package/assets/images/lock1.svg +3 -0
- package/assets/images/login-bg/default_bg.svg +448 -0
- package/assets/images/login-bg/visibility.svg +3 -0
- package/assets/images/login-bg/visibility_off.svg +3 -0
- package/assets/images/logo.png +0 -0
- package/assets/images/logout.svg +3 -0
- package/assets/images/mail-icon.svg +3 -0
- package/assets/images/marker-pin.svg +4 -0
- package/assets/images/noti_ticket.svg +3 -0
- package/assets/images/pass-img.svg +3 -0
- package/assets/images/refresh-1.svg +3 -0
- package/assets/images/schedule.svg +1 -0
- package/assets/images/search-filter.svg +3 -0
- package/assets/images/search-icon.svg +3 -0
- package/assets/images/settings.svg +3 -0
- package/assets/images/successful.svg +10 -0
- package/assets/images/user-name.svg +3 -0
- package/assets/scss/_sidebar.scss +267 -0
- package/assets/scss/styles.scss +577 -0
- package/esm2020/common-header-lib.mjs +5 -0
- package/esm2020/lib/Validators/noSpaceAllowed.mjs +16 -0
- package/esm2020/lib/common-header-lib.component.mjs +612 -0
- package/esm2020/lib/common-header-lib.module.mjs +208 -0
- package/esm2020/lib/common-header-lib.service.mjs +200 -0
- package/esm2020/lib/components/confirm-dialog/confirm-dialog.component.mjs +49 -0
- package/esm2020/lib/components/general-configuration/general-configuration.component.mjs +402 -0
- package/esm2020/lib/components/general-configuration/landingpg-config/landingpg-config.component.mjs +124 -0
- package/esm2020/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.mjs +138 -0
- package/esm2020/lib/components/grid-pagination/grid-pagination.component.mjs +39 -0
- package/esm2020/lib/components/ng-translation/ng-translation.component.mjs +65 -0
- package/esm2020/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.mjs +19 -0
- package/esm2020/lib/components/notification-sidebar/notification-sidebar.component.mjs +40 -0
- package/esm2020/lib/components/side-popup/side-popup.component.mjs +34 -0
- package/esm2020/lib/components/user-mailbox/user-mailbox.component.mjs +173 -0
- package/esm2020/lib/components/user-sidebar/user-sidebar.component.mjs +279 -0
- package/esm2020/lib/components/viewpassword-popup/viewpassword-popup.component.mjs +196 -0
- package/esm2020/lib/model/data_model.mjs +217 -0
- package/esm2020/lib/pipes/custome-dateformat.pipe.mjs +27 -0
- package/esm2020/lib/pipes/date-diff.pipe.mjs +56 -0
- package/esm2020/lib/pipes/slice-to-two.pipe.mjs +34 -0
- package/esm2020/lib/services/EncrypDecryp_RSA.service.mjs +100 -0
- package/esm2020/lib/services/async-passwordcheck.service.mjs +72 -0
- package/esm2020/lib/services/cookie-storage-manager.service.mjs +78 -0
- package/esm2020/lib/services/encrpdata.service.mjs +55 -0
- package/esm2020/lib/services/encrydecrydata.service.mjs +207 -0
- package/esm2020/lib/services/event.service.mjs +133 -0
- package/esm2020/lib/services/http/http-common.service.mjs +216 -0
- package/esm2020/lib/services/http/http-general-config.service.mjs +84 -0
- package/esm2020/lib/services/rest-login-form.service.mjs +296 -0
- package/esm2020/lib/services/rest-signalr.service.mjs +100 -0
- package/esm2020/lib/services/storage.service.mjs +33 -0
- package/esm2020/lib/services/toast-msg.service.mjs +95 -0
- package/esm2020/lib/services/vapt-validation.service.mjs +31 -0
- package/esm2020/public-api.mjs +13 -0
- package/fesm2015/common-header-lib.mjs +4165 -0
- package/fesm2015/common-header-lib.mjs.map +1 -0
- package/fesm2020/common-header-lib.mjs +4146 -0
- package/fesm2020/common-header-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/Validators/noSpaceAllowed.d.ts +2 -0
- package/lib/common-header-lib.component.d.ts +148 -0
- package/lib/common-header-lib.module.d.ts +43 -0
- package/lib/common-header-lib.service.d.ts +25 -0
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +13 -0
- package/lib/components/general-configuration/general-configuration.component.d.ts +86 -0
- package/lib/components/general-configuration/landingpg-config/landingpg-config.component.d.ts +37 -0
- package/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.d.ts +38 -0
- package/lib/components/grid-pagination/grid-pagination.component.d.ts +20 -0
- package/lib/components/ng-translation/ng-translation.component.d.ts +22 -0
- package/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.d.ts +8 -0
- package/lib/components/notification-sidebar/notification-sidebar.component.d.ts +16 -0
- package/lib/components/side-popup/side-popup.component.d.ts +14 -0
- package/lib/components/user-mailbox/user-mailbox.component.d.ts +40 -0
- package/lib/components/user-sidebar/user-sidebar.component.d.ts +61 -0
- package/lib/components/viewpassword-popup/viewpassword-popup.component.d.ts +47 -0
- package/lib/model/data_model.d.ts +184 -0
- package/lib/pipes/custome-dateformat.pipe.d.ts +8 -0
- package/lib/pipes/date-diff.pipe.d.ts +9 -0
- package/lib/pipes/slice-to-two.pipe.d.ts +7 -0
- package/lib/services/EncrypDecryp_RSA.service.d.ts +15 -0
- package/lib/services/async-passwordcheck.service.d.ts +18 -0
- package/lib/services/cookie-storage-manager.service.d.ts +16 -0
- package/lib/services/encrpdata.service.d.ts +12 -0
- package/lib/services/encrydecrydata.service.d.ts +33 -0
- package/lib/services/event.service.d.ts +30 -0
- package/lib/services/http/http-common.service.d.ts +30 -0
- package/lib/services/http/http-general-config.service.d.ts +15 -0
- package/lib/services/rest-login-form.service.d.ts +39 -0
- package/lib/services/rest-signalr.service.d.ts +23 -0
- package/lib/services/storage.service.d.ts +11 -0
- package/lib/services/toast-msg.service.d.ts +21 -0
- package/lib/services/vapt-validation.service.d.ts +7 -0
- package/package.json +49 -0
- package/public-api.d.ts +8 -0
- package/src/assets/i18n/ar.json +83 -0
- package/src/assets/i18n/de.json +83 -0
- package/src/assets/i18n/en.json +83 -0
- package/src/assets/i18n/es.json +83 -0
- package/src/assets/i18n/fr.json +83 -0
- package/src/assets/i18n/hi.json +83 -0
- package/src/assets/i18n/ja.json +83 -0
- package/src/assets/i18n/ko.json +83 -0
- package/src/assets/images/APP019.svg +6 -0
- package/src/assets/images/APP020.svg +4 -0
- package/src/assets/images/APP021.svg +6 -0
- package/src/assets/images/APP022.svg +6 -0
- package/src/assets/images/APP023.svg +11 -0
- package/src/assets/images/APP024.svg +9 -0
- package/src/assets/images/APP025.svg +8 -0
- package/src/assets/images/APP026.svg +4 -0
- package/src/assets/images/APP027.svg +5 -0
- package/src/assets/images/APP028.svg +6 -0
- package/src/assets/images/APP029.svg +12 -0
- package/src/assets/images/APP030.svg +20 -0
- package/src/assets/images/APP031.svg +14 -0
- package/src/assets/images/APP032.svg +17 -0
- package/src/assets/images/Frame.svg +104 -0
- package/src/assets/images/apps-1.svg +22 -0
- package/src/assets/images/bell-icon.svg +3 -0
- package/src/assets/images/check_circle.svg +3 -0
- package/src/assets/images/close copy.svg +5 -0
- package/src/assets/images/close.svg +5 -0
- package/src/assets/images/copy-img.svg +3 -0
- package/src/assets/images/cross-search.svg +4 -0
- package/src/assets/images/domain_img.svg +3 -0
- package/src/assets/images/east.svg +3 -0
- package/src/assets/images/error.svg +3 -0
- package/src/assets/images/filepath.svg +8 -0
- package/src/assets/images/flag1.svg +3 -0
- package/src/assets/images/gc-mail.svg +3 -0
- package/src/assets/images/grey-arrow.svg +3 -0
- package/src/assets/images/info.svg +3 -0
- package/src/assets/images/local.svg +3 -0
- package/src/assets/images/lock-pass.svg +3 -0
- package/src/assets/images/lock1.svg +3 -0
- package/src/assets/images/login-bg/default_bg.svg +448 -0
- package/src/assets/images/login-bg/visibility.svg +3 -0
- package/src/assets/images/login-bg/visibility_off.svg +3 -0
- package/src/assets/images/logo.png +0 -0
- package/src/assets/images/logout.svg +3 -0
- package/src/assets/images/mail-icon.svg +3 -0
- package/src/assets/images/marker-pin.svg +4 -0
- package/src/assets/images/noti_ticket.svg +3 -0
- package/src/assets/images/pass-img.svg +3 -0
- package/src/assets/images/refresh-1.svg +3 -0
- package/src/assets/images/schedule.svg +1 -0
- package/src/assets/images/search-filter.svg +3 -0
- package/src/assets/images/search-icon.svg +3 -0
- package/src/assets/images/settings.svg +3 -0
- package/src/assets/images/successful.svg +10 -0
- package/src/assets/images/user-name.svg +3 -0
- package/src/assets/scss/_sidebar.scss +267 -0
- package/src/assets/scss/styles.scss +577 -0
|
@@ -0,0 +1,577 @@
|
|
|
1
|
+
// @import '../common-header-lib/assets/scss/sidebar';
|
|
2
|
+
|
|
3
|
+
/* You can add global styles to this file, and also import other style files */
|
|
4
|
+
.badge-notify {
|
|
5
|
+
&:hover {
|
|
6
|
+
border-radius: 50%;
|
|
7
|
+
background: #dcdfec;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-badge {
|
|
11
|
+
min-width: 16px;
|
|
12
|
+
height: 16px;
|
|
13
|
+
line-height: 15px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.p-overlay-badge .p-badge {
|
|
17
|
+
position: absolute;
|
|
18
|
+
top: -7px;
|
|
19
|
+
right: 12px;
|
|
20
|
+
font-size: 9px;
|
|
21
|
+
padding: 0px 2px;
|
|
22
|
+
cursor: pointer;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/**sidebar scss */
|
|
27
|
+
.modal-dialog.sidebar-outer {
|
|
28
|
+
transition: none !important;
|
|
29
|
+
transform: none !important;
|
|
30
|
+
float: left;
|
|
31
|
+
width: 100%;
|
|
32
|
+
max-width: 100%;
|
|
33
|
+
pointer-events: auto;
|
|
34
|
+
margin: 0px;
|
|
35
|
+
padding-bottom: 87px;
|
|
36
|
+
overflow: auto;
|
|
37
|
+
height: 100vh;
|
|
38
|
+
position: static;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.sidebar-container {
|
|
42
|
+
// width: 520px;
|
|
43
|
+
width: 420px;
|
|
44
|
+
position: fixed;
|
|
45
|
+
top: 0px;
|
|
46
|
+
right: -520px;
|
|
47
|
+
height: 100vh;
|
|
48
|
+
max-width: 100%;
|
|
49
|
+
transition: all 0.3s ease;
|
|
50
|
+
-webkit-transition: all 0.3s ease;
|
|
51
|
+
-moz-transition: all 0.3s ease;
|
|
52
|
+
// background-color: var(--white);
|
|
53
|
+
background-color: #fff;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.modal.show .sidebar-container {
|
|
57
|
+
right: 0px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.moonIcon {
|
|
61
|
+
display: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.sidebar-footer {
|
|
65
|
+
// padding: $padding-medium;
|
|
66
|
+
padding: 24px;
|
|
67
|
+
position: absolute;
|
|
68
|
+
right: 0px;
|
|
69
|
+
bottom: 0px;
|
|
70
|
+
width: 100%;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.sidebar-footer .sidebar-footer-inner {
|
|
74
|
+
display: flex;
|
|
75
|
+
width: 100%;
|
|
76
|
+
flex-direction: row;
|
|
77
|
+
justify-content: end;
|
|
78
|
+
// padding-top: $padding-top-medium;
|
|
79
|
+
padding-top: 24px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.sidebar-outer {
|
|
83
|
+
// height: 100vh;
|
|
84
|
+
height: calc(100vh - 34px);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.sidebar-outer .sidebar-header {
|
|
88
|
+
padding: 12px 15px;
|
|
89
|
+
background-color: #f6f7fb;
|
|
90
|
+
// background-color: var(--grey-background);
|
|
91
|
+
|
|
92
|
+
.sh-bottom-content {
|
|
93
|
+
// margin-top: 12px;
|
|
94
|
+
// position: relative;
|
|
95
|
+
padding-left: 14px;
|
|
96
|
+
|
|
97
|
+
.sb-admin-img {
|
|
98
|
+
height: 70px;
|
|
99
|
+
width: 70px;
|
|
100
|
+
border-radius: 100%;
|
|
101
|
+
display: flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
justify-content: center;
|
|
104
|
+
position: absolute;
|
|
105
|
+
top: 0px;
|
|
106
|
+
left: 0px;
|
|
107
|
+
|
|
108
|
+
background-color: #f6f7fb;
|
|
109
|
+
// background-color: var(--grey-background);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.sh-bottom-content-ls {
|
|
113
|
+
display: flex;
|
|
114
|
+
align-items: center;
|
|
115
|
+
// margin-top: 8px;
|
|
116
|
+
|
|
117
|
+
span {
|
|
118
|
+
font-size: 20px;
|
|
119
|
+
position: relative;
|
|
120
|
+
top: -1px;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.sidebar-outer .sidebar-header .sh-top {
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
justify-content: space-between;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.sidebar-outer .sidebar-header .sh-top button {
|
|
133
|
+
height: 24px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.sidebar-outer .sidebar-header .sh-top .sh-top-left .common-btn {
|
|
137
|
+
padding-left: 0px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.sidebar-outer .sidebar-header .sh-bottom-content {
|
|
141
|
+
padding-left: 14px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.sidebar-outer .sidebar-header .sh-bottom-content .sb-admin-img {
|
|
145
|
+
height: 70px;
|
|
146
|
+
width: 70px;
|
|
147
|
+
border-radius: 100%;
|
|
148
|
+
display: flex;
|
|
149
|
+
align-items: center;
|
|
150
|
+
justify-content: center;
|
|
151
|
+
position: absolute;
|
|
152
|
+
top: 0px;
|
|
153
|
+
left: 0px;
|
|
154
|
+
|
|
155
|
+
background-color: #f6f7fb;
|
|
156
|
+
// background-color: var(--grey-background);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.sidebar-outer .sidebar-header .sh-bottom-content .sh-bottom-content-ls {
|
|
160
|
+
display: flex;
|
|
161
|
+
align-items: center;
|
|
162
|
+
|
|
163
|
+
span {
|
|
164
|
+
font-size: 20px;
|
|
165
|
+
position: relative;
|
|
166
|
+
top: -1px;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.sidebar-outer .sidebar-body {
|
|
171
|
+
padding: 12px 20px;
|
|
172
|
+
float: left;
|
|
173
|
+
width: 100%;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.sidebar-outer .sidebar-body .sb-list {
|
|
177
|
+
float: left;
|
|
178
|
+
width: 100%;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.sidebar-outer .sidebar-body .sb-list ul {
|
|
182
|
+
float: left;
|
|
183
|
+
width: 100%;
|
|
184
|
+
list-style: none;
|
|
185
|
+
padding-left: 0px;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.sidebar-outer .sidebar-body .sb-list ul li {
|
|
189
|
+
display: flex;
|
|
190
|
+
padding: 8px 2px;
|
|
191
|
+
cursor: pointer;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.sidebar-outer .sidebar-body .sb-list ul li span {
|
|
195
|
+
margin-right: 12px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.sidebar-outer .sidebar-body .sb-theme {
|
|
199
|
+
display: flex;
|
|
200
|
+
justify-content: space-between;
|
|
201
|
+
width: 100%;
|
|
202
|
+
float: left;
|
|
203
|
+
padding-top: 14px;
|
|
204
|
+
|
|
205
|
+
.sb-theme-right-outer {
|
|
206
|
+
display: flex;
|
|
207
|
+
align-items: center;
|
|
208
|
+
margin-top: 8px;
|
|
209
|
+
|
|
210
|
+
span.material-symbols-rounded {
|
|
211
|
+
margin-left: 8px;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.sidebar-outer .sidebar-body .sb-theme ul {
|
|
217
|
+
display: flex;
|
|
218
|
+
list-style: none;
|
|
219
|
+
margin-top: 8px !important;
|
|
220
|
+
padding-left: 0px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.sidebar-outer .sidebar-body .sb-theme ul li {
|
|
224
|
+
margin-right: 8px;
|
|
225
|
+
position: relative;
|
|
226
|
+
|
|
227
|
+
.sb-radio-container input {
|
|
228
|
+
position: absolute;
|
|
229
|
+
opacity: 0;
|
|
230
|
+
cursor: pointer;
|
|
231
|
+
left: 0px;
|
|
232
|
+
top: 0px;
|
|
233
|
+
width: 25px;
|
|
234
|
+
height: 25px;
|
|
235
|
+
z-index: 2;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.sb-radio-container input:checked ~ span:after {
|
|
239
|
+
display: block;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.sidebar-outer .sidebar-body .sb-theme ul li .select-color-scheme-outer {
|
|
244
|
+
height: 25px;
|
|
245
|
+
width: 25px;
|
|
246
|
+
border-radius: 100%;
|
|
247
|
+
float: left;
|
|
248
|
+
|
|
249
|
+
&.blue {
|
|
250
|
+
background-color: #0073ea;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
&.murrey {
|
|
254
|
+
background-color: #880e4f;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
&.indigo {
|
|
258
|
+
background-color: #4a148c;
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.sidebar-outer .sidebar-body .sb-theme ul li .sb-radio-container {
|
|
263
|
+
display: inline-block;
|
|
264
|
+
position: absolute;
|
|
265
|
+
cursor: pointer;
|
|
266
|
+
width: 25px;
|
|
267
|
+
height: 25px;
|
|
268
|
+
top: 0px;
|
|
269
|
+
left: 0px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.sidebar-outer .sidebar-body .sb-theme ul li .sb-radio-container span {
|
|
273
|
+
position: absolute;
|
|
274
|
+
top: 0;
|
|
275
|
+
left: 0;
|
|
276
|
+
height: 25px;
|
|
277
|
+
width: 25px;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.sidebar-outer .sidebar-body .sb-theme ul li .sb-radio-container span:after {
|
|
281
|
+
content: "";
|
|
282
|
+
position: absolute;
|
|
283
|
+
display: none;
|
|
284
|
+
transform: rotate(45deg);
|
|
285
|
+
border-bottom: 2px solid #fff;
|
|
286
|
+
border-right: 2px solid #fff;
|
|
287
|
+
height: 13px;
|
|
288
|
+
width: 6px;
|
|
289
|
+
left: 10px;
|
|
290
|
+
top: 4px;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.sidebar-outer .sidebar-body .sb-fonts {
|
|
294
|
+
float: left;
|
|
295
|
+
width: 100%;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.sidebar-outer .sidebar-body .sb-fonts .sb-fonts-outer {
|
|
299
|
+
display: flex;
|
|
300
|
+
align-items: center;
|
|
301
|
+
margin-top: 12px;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.sidebar-outer .sidebar-body .sb-fonts .sb-fonts-outer .radio-outer {
|
|
305
|
+
margin-right: 16px;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* Skeleton Item Style */
|
|
309
|
+
.skeleton-item {
|
|
310
|
+
display: flex;
|
|
311
|
+
width: 100%;
|
|
312
|
+
background: #e0e0e094;
|
|
313
|
+
border-radius: 6px;
|
|
314
|
+
padding: 8px;
|
|
315
|
+
position: relative;
|
|
316
|
+
overflow: hidden;
|
|
317
|
+
height: 20px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/* Skeleton Animation */
|
|
321
|
+
.skeleton-item::before {
|
|
322
|
+
content: "";
|
|
323
|
+
position: absolute;
|
|
324
|
+
top: 0;
|
|
325
|
+
left: -100%;
|
|
326
|
+
width: 100%;
|
|
327
|
+
height: 100%;
|
|
328
|
+
border-radius: 6px;
|
|
329
|
+
background: linear-gradient(
|
|
330
|
+
90deg,
|
|
331
|
+
#e0e0e07a 25%,
|
|
332
|
+
#f6f6f682 50%,
|
|
333
|
+
#e0e0e0ab 75%
|
|
334
|
+
);
|
|
335
|
+
animation: loading 1.5s infinite;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
@keyframes loading {
|
|
339
|
+
0% {
|
|
340
|
+
left: -100%;
|
|
341
|
+
}
|
|
342
|
+
100% {
|
|
343
|
+
left: 100%;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/*! Toast styling*/
|
|
348
|
+
/* ngx-toastr */
|
|
349
|
+
.ngx-toastr {
|
|
350
|
+
width: 400px !important;
|
|
351
|
+
margin-top: 10px !important;
|
|
352
|
+
padding: 8px 15px 8px 50px !important;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
/* SUCCESS */
|
|
356
|
+
.toast-success {
|
|
357
|
+
background-color: #ffffff !important;
|
|
358
|
+
border-bottom: 3px solid #258750;
|
|
359
|
+
border-radius: 4px !important;
|
|
360
|
+
background-image: url(../assets/common-header-lib/images/check_circle.svg) !important;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.toast-success .toast-close-button {
|
|
364
|
+
color: #676879;
|
|
365
|
+
position: relative;
|
|
366
|
+
top: -2px;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.toast-success .toast-message {
|
|
370
|
+
padding-top: 5px;
|
|
371
|
+
color: #258750 !important;
|
|
372
|
+
font-size: 14px !important;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/* ERROR */
|
|
376
|
+
.toast-error {
|
|
377
|
+
background-color: #ffffff !important;
|
|
378
|
+
border-bottom: 3px solid #d83a52;
|
|
379
|
+
border-radius: 4px !important;
|
|
380
|
+
background-image: url(../assets/common-header-lib/images/error.svg) !important;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.toast-error .toast-close-button {
|
|
384
|
+
color: #676879;
|
|
385
|
+
position: relative;
|
|
386
|
+
top: -2px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.toast-error .toast-message {
|
|
390
|
+
padding-top: 5px;
|
|
391
|
+
color: #d83a52 !important;
|
|
392
|
+
font-size: 14px !important;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/* INFO */
|
|
396
|
+
.toast-info {
|
|
397
|
+
background-color: #ffffff !important;
|
|
398
|
+
border-bottom: 3px solid #0073ea;
|
|
399
|
+
border-radius: 4px !important;
|
|
400
|
+
background-image: url(../assets/common-header-lib/images/info.svg) !important;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.toast-info .toast-close-button {
|
|
404
|
+
color: #676879;
|
|
405
|
+
position: relative;
|
|
406
|
+
top: -2px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.toast-info .toast-message {
|
|
410
|
+
padding-top: 5px;
|
|
411
|
+
color: #0073ea !important;
|
|
412
|
+
font-size: 14px !important;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/* WARNING */
|
|
416
|
+
.toast-warning {
|
|
417
|
+
background-color: #ffffff !important;
|
|
418
|
+
border-bottom: 3px solid #fdab3d;
|
|
419
|
+
border-radius: 4px !important;
|
|
420
|
+
background-image: url(../assets/common-header-lib/images/check_circle.svg) !important;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.toast-warning .toast-close-button {
|
|
424
|
+
color: #676879;
|
|
425
|
+
position: relative;
|
|
426
|
+
top: -2px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.toast-warning .toast-message {
|
|
430
|
+
color: #fdab3d !important;
|
|
431
|
+
font-size: 14px !important;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
/****** Mail-Box Started ******/
|
|
435
|
+
|
|
436
|
+
.mail-table {
|
|
437
|
+
height: calc(100vh - 155px);
|
|
438
|
+
overflow: auto;
|
|
439
|
+
|
|
440
|
+
.p-datatable .p-datatable-thead > tr {
|
|
441
|
+
border: 1px solid #dee2e6;
|
|
442
|
+
border-radius: 24px;
|
|
443
|
+
th {
|
|
444
|
+
padding: 0 8px;
|
|
445
|
+
height: 36px;
|
|
446
|
+
font-size: 13px;
|
|
447
|
+
color: var(--primary-text);
|
|
448
|
+
font-weight: 600;
|
|
449
|
+
background: #fff;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
.p-datatable .p-datatable-tbody > tr {
|
|
453
|
+
border: 1px solid #dee2e6;
|
|
454
|
+
border-radius: 24px;
|
|
455
|
+
td {
|
|
456
|
+
padding: 0px 25px 0px 8px;
|
|
457
|
+
height: 38px;
|
|
458
|
+
font-size: 13px;
|
|
459
|
+
color: var(--secondary-text);
|
|
460
|
+
white-space: nowrap;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
.p-checkbox {
|
|
464
|
+
height: 18px;
|
|
465
|
+
width: 18px;
|
|
466
|
+
.p-checkbox-box {
|
|
467
|
+
height: 16px;
|
|
468
|
+
width: 16px;
|
|
469
|
+
border-radius: 4px;
|
|
470
|
+
border: 1px solid var(--ui-border);
|
|
471
|
+
&:hover {
|
|
472
|
+
border: 1px solid var(--ui-border) !important;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
.p-checkbox-icon {
|
|
476
|
+
font-size: 10px !important;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
.p-datatable .p-sortable-column {
|
|
480
|
+
&:hover {
|
|
481
|
+
background-color: #ffffff !important;
|
|
482
|
+
color: #000 !important;
|
|
483
|
+
}
|
|
484
|
+
&:focus {
|
|
485
|
+
box-shadow: none !important;
|
|
486
|
+
}
|
|
487
|
+
.p-sortable-column-icon {
|
|
488
|
+
font-size: 12px;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
.p-dropdown-panel .p-dropdown-items {
|
|
492
|
+
padding: 0;
|
|
493
|
+
.p-dropdown-item {
|
|
494
|
+
font-size: 13px !important;
|
|
495
|
+
padding: 10px 15px;
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
.p-paginator {
|
|
499
|
+
justify-content: flex-start !important;
|
|
500
|
+
position: fixed;
|
|
501
|
+
bottom: 0;
|
|
502
|
+
padding-left: 0px !important;
|
|
503
|
+
|
|
504
|
+
.p-paginator-current {
|
|
505
|
+
font-size: 12px;
|
|
506
|
+
height: 1rem !important;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.p-paginator-pages .p-paginator-page {
|
|
510
|
+
min-width: 30px !important;
|
|
511
|
+
height: 30px !important;
|
|
512
|
+
font-size: 12px;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.p-dropdown {
|
|
516
|
+
height: 30px !important;
|
|
517
|
+
margin-top: 0px;
|
|
518
|
+
border: 0px;
|
|
519
|
+
|
|
520
|
+
.p-dropdown-label {
|
|
521
|
+
padding: 4px 5px 0px 10px !important;
|
|
522
|
+
font-size: 14px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.p-dropdown-trigger {
|
|
526
|
+
width: 1.5rem !important;
|
|
527
|
+
|
|
528
|
+
.pi {
|
|
529
|
+
font-size: 13px !important;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
.mail-pagination {
|
|
536
|
+
.p-paginator {
|
|
537
|
+
justify-content: flex-start !important;
|
|
538
|
+
position: fixed;
|
|
539
|
+
bottom: 0;
|
|
540
|
+
padding-left: 0px;
|
|
541
|
+
.p-paginator-current {
|
|
542
|
+
font-size: 12px;
|
|
543
|
+
height: 1rem !important;
|
|
544
|
+
padding-left: 0px;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.p-paginator-pages .p-paginator-page {
|
|
548
|
+
min-width: 30px !important;
|
|
549
|
+
height: 30px !important;
|
|
550
|
+
font-size: 12px;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.p-dropdown {
|
|
554
|
+
height: 30px !important;
|
|
555
|
+
margin-top: 0px;
|
|
556
|
+
border: 0px;
|
|
557
|
+
|
|
558
|
+
.p-dropdown-label {
|
|
559
|
+
padding: 4px 5px 0px 10px !important;
|
|
560
|
+
font-size: 14px;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.p-dropdown-trigger {
|
|
564
|
+
width: 1.5rem !important;
|
|
565
|
+
|
|
566
|
+
.pi {
|
|
567
|
+
font-size: 13px !important;
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/****** Mail-Box Ended ******/
|
|
575
|
+
.timezone-text{
|
|
576
|
+
background-color: red !important;
|
|
577
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbW9uLWhlYWRlci1saWIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9jb21tb24taGVhZGVyLWxpYi9zcmMvY29tbW9uLWhlYWRlci1saWIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export function noSpaceAllowed() {
|
|
2
|
+
return (control) => {
|
|
3
|
+
const value = control.value;
|
|
4
|
+
if (!value) {
|
|
5
|
+
return null; // No value is not an error here
|
|
6
|
+
}
|
|
7
|
+
// Check if the value starts with a space or contains any space
|
|
8
|
+
const hasLeadingSpace = value.startsWith(' ');
|
|
9
|
+
// const hasAnySpace = value.includes(' ');
|
|
10
|
+
if (hasLeadingSpace) {
|
|
11
|
+
return { noSpace: true };
|
|
12
|
+
}
|
|
13
|
+
return null;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9TcGFjZUFsbG93ZWQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jb21tb24taGVhZGVyLWxpYi9zcmMvbGliL1ZhbGlkYXRvcnMvbm9TcGFjZUFsbG93ZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxVQUFVLGNBQWM7SUFDNUIsT0FBTyxDQUFDLE9BQXdCLEVBQTJCLEVBQUU7UUFDM0QsTUFBTSxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQWUsQ0FBQztRQUN0QyxJQUFJLENBQUMsS0FBSyxFQUFFO1lBQ1YsT0FBTyxJQUFJLENBQUMsQ0FBQyxnQ0FBZ0M7U0FDOUM7UUFFRCwrREFBK0Q7UUFDL0QsTUFBTSxlQUFlLEdBQUcsS0FBSyxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsQ0FBQztRQUM5QywyQ0FBMkM7UUFFM0MsSUFBSSxlQUFlLEVBQUU7WUFDbkIsT0FBTyxFQUFFLE9BQU8sRUFBRSxJQUFJLEVBQUUsQ0FBQztTQUMxQjtRQUVELE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQyxDQUFDO0FBQ0osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFic3RyYWN0Q29udHJvbCwgVmFsaWRhdGlvbkVycm9ycywgVmFsaWRhdG9yRm4gfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcblxyXG5leHBvcnQgZnVuY3Rpb24gbm9TcGFjZUFsbG93ZWQoKTogVmFsaWRhdG9yRm4ge1xyXG4gIHJldHVybiAoY29udHJvbDogQWJzdHJhY3RDb250cm9sKTogVmFsaWRhdGlvbkVycm9ycyB8IG51bGwgPT4ge1xyXG4gICAgY29uc3QgdmFsdWUgPSBjb250cm9sLnZhbHVlIGFzIHN0cmluZztcclxuICAgIGlmICghdmFsdWUpIHtcclxuICAgICAgcmV0dXJuIG51bGw7IC8vIE5vIHZhbHVlIGlzIG5vdCBhbiBlcnJvciBoZXJlXHJcbiAgICB9XHJcblxyXG4gICAgLy8gQ2hlY2sgaWYgdGhlIHZhbHVlIHN0YXJ0cyB3aXRoIGEgc3BhY2Ugb3IgY29udGFpbnMgYW55IHNwYWNlXHJcbiAgICBjb25zdCBoYXNMZWFkaW5nU3BhY2UgPSB2YWx1ZS5zdGFydHNXaXRoKCcgJyk7XHJcbiAgICAvLyBjb25zdCBoYXNBbnlTcGFjZSA9IHZhbHVlLmluY2x1ZGVzKCcgJyk7XHJcblxyXG4gICAgaWYgKGhhc0xlYWRpbmdTcGFjZSkge1xyXG4gICAgICByZXR1cm4geyBub1NwYWNlOiB0cnVlIH07XHJcbiAgICB9XHJcblxyXG4gICAgcmV0dXJuIG51bGw7XHJcbiAgfTtcclxufVxyXG4iXX0=
|