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.
Files changed (195) hide show
  1. package/README.md +24 -0
  2. package/assets/.gitkeep +0 -0
  3. package/assets/i18n/ar.json +83 -0
  4. package/assets/i18n/de.json +83 -0
  5. package/assets/i18n/en.json +83 -0
  6. package/assets/i18n/es.json +83 -0
  7. package/assets/i18n/fr.json +83 -0
  8. package/assets/i18n/hi.json +83 -0
  9. package/assets/i18n/ja.json +83 -0
  10. package/assets/i18n/ko.json +83 -0
  11. package/assets/images/APP019.svg +6 -0
  12. package/assets/images/APP020.svg +4 -0
  13. package/assets/images/APP021.svg +6 -0
  14. package/assets/images/APP022.svg +6 -0
  15. package/assets/images/APP023.svg +11 -0
  16. package/assets/images/APP024.svg +9 -0
  17. package/assets/images/APP025.svg +8 -0
  18. package/assets/images/APP026.svg +4 -0
  19. package/assets/images/APP027.svg +5 -0
  20. package/assets/images/APP028.svg +6 -0
  21. package/assets/images/APP029.svg +12 -0
  22. package/assets/images/APP030.svg +20 -0
  23. package/assets/images/APP031.svg +14 -0
  24. package/assets/images/APP032.svg +17 -0
  25. package/assets/images/Frame.svg +104 -0
  26. package/assets/images/apps-1.svg +22 -0
  27. package/assets/images/bell-icon.svg +3 -0
  28. package/assets/images/check_circle.svg +3 -0
  29. package/assets/images/close copy.svg +5 -0
  30. package/assets/images/close.svg +5 -0
  31. package/assets/images/copy-img.svg +3 -0
  32. package/assets/images/cross-search.svg +4 -0
  33. package/assets/images/domain_img.svg +3 -0
  34. package/assets/images/east.svg +3 -0
  35. package/assets/images/error.svg +3 -0
  36. package/assets/images/filepath.svg +8 -0
  37. package/assets/images/flag1.svg +3 -0
  38. package/assets/images/gc-mail.svg +3 -0
  39. package/assets/images/grey-arrow.svg +3 -0
  40. package/assets/images/info.svg +3 -0
  41. package/assets/images/local.svg +3 -0
  42. package/assets/images/lock-pass.svg +3 -0
  43. package/assets/images/lock1.svg +3 -0
  44. package/assets/images/login-bg/default_bg.svg +448 -0
  45. package/assets/images/login-bg/visibility.svg +3 -0
  46. package/assets/images/login-bg/visibility_off.svg +3 -0
  47. package/assets/images/logo.png +0 -0
  48. package/assets/images/logout.svg +3 -0
  49. package/assets/images/mail-icon.svg +3 -0
  50. package/assets/images/marker-pin.svg +4 -0
  51. package/assets/images/noti_ticket.svg +3 -0
  52. package/assets/images/pass-img.svg +3 -0
  53. package/assets/images/refresh-1.svg +3 -0
  54. package/assets/images/schedule.svg +1 -0
  55. package/assets/images/search-filter.svg +3 -0
  56. package/assets/images/search-icon.svg +3 -0
  57. package/assets/images/settings.svg +3 -0
  58. package/assets/images/successful.svg +10 -0
  59. package/assets/images/user-name.svg +3 -0
  60. package/assets/scss/_sidebar.scss +267 -0
  61. package/assets/scss/styles.scss +577 -0
  62. package/esm2020/common-header-lib.mjs +5 -0
  63. package/esm2020/lib/Validators/noSpaceAllowed.mjs +16 -0
  64. package/esm2020/lib/common-header-lib.component.mjs +612 -0
  65. package/esm2020/lib/common-header-lib.module.mjs +208 -0
  66. package/esm2020/lib/common-header-lib.service.mjs +200 -0
  67. package/esm2020/lib/components/confirm-dialog/confirm-dialog.component.mjs +49 -0
  68. package/esm2020/lib/components/general-configuration/general-configuration.component.mjs +402 -0
  69. package/esm2020/lib/components/general-configuration/landingpg-config/landingpg-config.component.mjs +124 -0
  70. package/esm2020/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.mjs +138 -0
  71. package/esm2020/lib/components/grid-pagination/grid-pagination.component.mjs +39 -0
  72. package/esm2020/lib/components/ng-translation/ng-translation.component.mjs +65 -0
  73. package/esm2020/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.mjs +19 -0
  74. package/esm2020/lib/components/notification-sidebar/notification-sidebar.component.mjs +40 -0
  75. package/esm2020/lib/components/side-popup/side-popup.component.mjs +34 -0
  76. package/esm2020/lib/components/user-mailbox/user-mailbox.component.mjs +173 -0
  77. package/esm2020/lib/components/user-sidebar/user-sidebar.component.mjs +279 -0
  78. package/esm2020/lib/components/viewpassword-popup/viewpassword-popup.component.mjs +196 -0
  79. package/esm2020/lib/model/data_model.mjs +217 -0
  80. package/esm2020/lib/pipes/custome-dateformat.pipe.mjs +27 -0
  81. package/esm2020/lib/pipes/date-diff.pipe.mjs +56 -0
  82. package/esm2020/lib/pipes/slice-to-two.pipe.mjs +34 -0
  83. package/esm2020/lib/services/EncrypDecryp_RSA.service.mjs +100 -0
  84. package/esm2020/lib/services/async-passwordcheck.service.mjs +72 -0
  85. package/esm2020/lib/services/cookie-storage-manager.service.mjs +78 -0
  86. package/esm2020/lib/services/encrpdata.service.mjs +55 -0
  87. package/esm2020/lib/services/encrydecrydata.service.mjs +207 -0
  88. package/esm2020/lib/services/event.service.mjs +133 -0
  89. package/esm2020/lib/services/http/http-common.service.mjs +216 -0
  90. package/esm2020/lib/services/http/http-general-config.service.mjs +84 -0
  91. package/esm2020/lib/services/rest-login-form.service.mjs +296 -0
  92. package/esm2020/lib/services/rest-signalr.service.mjs +100 -0
  93. package/esm2020/lib/services/storage.service.mjs +33 -0
  94. package/esm2020/lib/services/toast-msg.service.mjs +95 -0
  95. package/esm2020/lib/services/vapt-validation.service.mjs +31 -0
  96. package/esm2020/public-api.mjs +13 -0
  97. package/fesm2015/common-header-lib.mjs +4165 -0
  98. package/fesm2015/common-header-lib.mjs.map +1 -0
  99. package/fesm2020/common-header-lib.mjs +4146 -0
  100. package/fesm2020/common-header-lib.mjs.map +1 -0
  101. package/index.d.ts +5 -0
  102. package/lib/Validators/noSpaceAllowed.d.ts +2 -0
  103. package/lib/common-header-lib.component.d.ts +148 -0
  104. package/lib/common-header-lib.module.d.ts +43 -0
  105. package/lib/common-header-lib.service.d.ts +25 -0
  106. package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +13 -0
  107. package/lib/components/general-configuration/general-configuration.component.d.ts +86 -0
  108. package/lib/components/general-configuration/landingpg-config/landingpg-config.component.d.ts +37 -0
  109. package/lib/components/general-configuration/timezone-configuration/timezone-configuration.component.d.ts +38 -0
  110. package/lib/components/grid-pagination/grid-pagination.component.d.ts +20 -0
  111. package/lib/components/ng-translation/ng-translation.component.d.ts +22 -0
  112. package/lib/components/no-service-my-access-pg/no-service-my-access-pg.component.d.ts +8 -0
  113. package/lib/components/notification-sidebar/notification-sidebar.component.d.ts +16 -0
  114. package/lib/components/side-popup/side-popup.component.d.ts +14 -0
  115. package/lib/components/user-mailbox/user-mailbox.component.d.ts +40 -0
  116. package/lib/components/user-sidebar/user-sidebar.component.d.ts +61 -0
  117. package/lib/components/viewpassword-popup/viewpassword-popup.component.d.ts +47 -0
  118. package/lib/model/data_model.d.ts +184 -0
  119. package/lib/pipes/custome-dateformat.pipe.d.ts +8 -0
  120. package/lib/pipes/date-diff.pipe.d.ts +9 -0
  121. package/lib/pipes/slice-to-two.pipe.d.ts +7 -0
  122. package/lib/services/EncrypDecryp_RSA.service.d.ts +15 -0
  123. package/lib/services/async-passwordcheck.service.d.ts +18 -0
  124. package/lib/services/cookie-storage-manager.service.d.ts +16 -0
  125. package/lib/services/encrpdata.service.d.ts +12 -0
  126. package/lib/services/encrydecrydata.service.d.ts +33 -0
  127. package/lib/services/event.service.d.ts +30 -0
  128. package/lib/services/http/http-common.service.d.ts +30 -0
  129. package/lib/services/http/http-general-config.service.d.ts +15 -0
  130. package/lib/services/rest-login-form.service.d.ts +39 -0
  131. package/lib/services/rest-signalr.service.d.ts +23 -0
  132. package/lib/services/storage.service.d.ts +11 -0
  133. package/lib/services/toast-msg.service.d.ts +21 -0
  134. package/lib/services/vapt-validation.service.d.ts +7 -0
  135. package/package.json +49 -0
  136. package/public-api.d.ts +8 -0
  137. package/src/assets/i18n/ar.json +83 -0
  138. package/src/assets/i18n/de.json +83 -0
  139. package/src/assets/i18n/en.json +83 -0
  140. package/src/assets/i18n/es.json +83 -0
  141. package/src/assets/i18n/fr.json +83 -0
  142. package/src/assets/i18n/hi.json +83 -0
  143. package/src/assets/i18n/ja.json +83 -0
  144. package/src/assets/i18n/ko.json +83 -0
  145. package/src/assets/images/APP019.svg +6 -0
  146. package/src/assets/images/APP020.svg +4 -0
  147. package/src/assets/images/APP021.svg +6 -0
  148. package/src/assets/images/APP022.svg +6 -0
  149. package/src/assets/images/APP023.svg +11 -0
  150. package/src/assets/images/APP024.svg +9 -0
  151. package/src/assets/images/APP025.svg +8 -0
  152. package/src/assets/images/APP026.svg +4 -0
  153. package/src/assets/images/APP027.svg +5 -0
  154. package/src/assets/images/APP028.svg +6 -0
  155. package/src/assets/images/APP029.svg +12 -0
  156. package/src/assets/images/APP030.svg +20 -0
  157. package/src/assets/images/APP031.svg +14 -0
  158. package/src/assets/images/APP032.svg +17 -0
  159. package/src/assets/images/Frame.svg +104 -0
  160. package/src/assets/images/apps-1.svg +22 -0
  161. package/src/assets/images/bell-icon.svg +3 -0
  162. package/src/assets/images/check_circle.svg +3 -0
  163. package/src/assets/images/close copy.svg +5 -0
  164. package/src/assets/images/close.svg +5 -0
  165. package/src/assets/images/copy-img.svg +3 -0
  166. package/src/assets/images/cross-search.svg +4 -0
  167. package/src/assets/images/domain_img.svg +3 -0
  168. package/src/assets/images/east.svg +3 -0
  169. package/src/assets/images/error.svg +3 -0
  170. package/src/assets/images/filepath.svg +8 -0
  171. package/src/assets/images/flag1.svg +3 -0
  172. package/src/assets/images/gc-mail.svg +3 -0
  173. package/src/assets/images/grey-arrow.svg +3 -0
  174. package/src/assets/images/info.svg +3 -0
  175. package/src/assets/images/local.svg +3 -0
  176. package/src/assets/images/lock-pass.svg +3 -0
  177. package/src/assets/images/lock1.svg +3 -0
  178. package/src/assets/images/login-bg/default_bg.svg +448 -0
  179. package/src/assets/images/login-bg/visibility.svg +3 -0
  180. package/src/assets/images/login-bg/visibility_off.svg +3 -0
  181. package/src/assets/images/logo.png +0 -0
  182. package/src/assets/images/logout.svg +3 -0
  183. package/src/assets/images/mail-icon.svg +3 -0
  184. package/src/assets/images/marker-pin.svg +4 -0
  185. package/src/assets/images/noti_ticket.svg +3 -0
  186. package/src/assets/images/pass-img.svg +3 -0
  187. package/src/assets/images/refresh-1.svg +3 -0
  188. package/src/assets/images/schedule.svg +1 -0
  189. package/src/assets/images/search-filter.svg +3 -0
  190. package/src/assets/images/search-icon.svg +3 -0
  191. package/src/assets/images/settings.svg +3 -0
  192. package/src/assets/images/successful.svg +10 -0
  193. package/src/assets/images/user-name.svg +3 -0
  194. package/src/assets/scss/_sidebar.scss +267 -0
  195. package/src/assets/scss/styles.scss +577 -0
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_4084_36639)">
3
+ <path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20ZM16.59 7.58L10 14.17L7.41 11.59L6 13L10 17L18 9L16.59 7.58Z" fill="#258750"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_4084_36639">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.5 15.6667C3.44649 13.6021 6.08918 12.3333 9 12.3333C11.9108 12.3333 14.5535 13.6021 16.5 15.6667M12.75 5.25C12.75 7.32107 11.0711 9 9 9C6.92893 9 5.25 7.32107 5.25 5.25C5.25 3.17893 6.92893 1.5 9 1.5C11.0711 1.5 12.75 3.17893 12.75 5.25Z" stroke="#676879" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,267 @@
1
+ .modal-dialog.sidebar-outer{
2
+ transition: none !important;
3
+ transform: none !important;
4
+ float: left;
5
+ width: 100%;
6
+ max-width: 100%;
7
+ pointer-events: auto;
8
+ margin: 0px;
9
+ padding-bottom: 87px;
10
+ overflow: auto;
11
+ height: 100vh;
12
+ position: static;
13
+ }
14
+ .sidebar-container{
15
+ // width: 520px;
16
+ width: 420px;
17
+ position: fixed;
18
+ top: 0px;
19
+ right: -520px;
20
+ height: 100vh;
21
+ max-width: 100%;
22
+ transition: all 0.3s ease;
23
+ -webkit-transition: all 0.3s ease;
24
+ -moz-transition: all 0.3s ease;
25
+ background-color: var(--white);
26
+ }
27
+ .modal.show{
28
+
29
+ .sidebar-container{
30
+ right: 0px;
31
+ }
32
+ }
33
+ .moonIcon{
34
+ display: none;
35
+ }
36
+ .sidebar-footer{
37
+
38
+ padding: $padding-medium;
39
+ position: absolute;
40
+ right: 0px;
41
+ bottom: 0px;
42
+ width: 100%;
43
+
44
+ .sidebar-footer-inner {
45
+ display: flex;
46
+ width: 100%;
47
+ flex-direction: row;
48
+ justify-content: end;
49
+ padding-top: $padding-top-medium;
50
+ }
51
+ }
52
+ .sidebar-outer{
53
+
54
+ height: 100vh;
55
+
56
+ .sidebar-header{
57
+
58
+ padding: 12px 15px;
59
+ background-color: var(--grey-background);
60
+
61
+ .sh-top{
62
+
63
+ display: flex;
64
+ align-items: center;
65
+ justify-content: space-between;
66
+
67
+ button{
68
+ height: 24px;
69
+ }
70
+
71
+ .sh-top-left{
72
+
73
+ .common-btn{
74
+ padding-left: 0px;
75
+ }
76
+ }
77
+ }
78
+
79
+
80
+ .sh-bottom-content{
81
+
82
+ // margin-top: 12px;
83
+ // position: relative;
84
+ padding-left: 14px !important;
85
+
86
+ .sb-admin-img {
87
+ height: 70px;
88
+ width: 70px;
89
+ border-radius: 100%;
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: center;
93
+ position: absolute;
94
+ top: 0px;
95
+ left: 0px;
96
+ background-color: var(--grey-background);
97
+ }
98
+
99
+ .sh-bottom-content-ls {
100
+ display: flex;
101
+ align-items: center;
102
+ // margin-top: 8px;
103
+
104
+ span{
105
+ font-size: 20px;
106
+ position: relative;
107
+ top: -1px;
108
+ }
109
+ }
110
+
111
+ h4{
112
+ // margin-bottom: 8px !important;
113
+ }
114
+
115
+ }
116
+ }
117
+
118
+
119
+ // .sidebar-body{
120
+
121
+ // padding: 12px 20px;
122
+ // float: left;
123
+ // width: 100%;
124
+
125
+ // .sb-list{
126
+ // float: left;
127
+ // width: 100%;
128
+
129
+ // ul{
130
+ // float: left;
131
+ // width: 100%;
132
+ // list-style: none;
133
+ // padding-left: 0px;
134
+
135
+ // li{
136
+ // display: flex;
137
+ // // align-items: end;
138
+ // padding: 8px 2px;
139
+ // cursor: pointer;
140
+
141
+ // &:hover{
142
+ // // background-color: var(--hover-common);
143
+ // }
144
+
145
+ // span{
146
+ // margin-right: 12px;
147
+ // }
148
+ // }
149
+ // }
150
+ // }
151
+
152
+ // .sb-theme{
153
+
154
+ // display: flex;
155
+ // justify-content: space-between;
156
+ // width: 100%;
157
+ // float: left;
158
+ // padding-top: 14px;
159
+
160
+ // ul{
161
+ // display: flex;
162
+ // list-style: none;
163
+ // margin-top: 8px !important;
164
+ // padding-left: 0px;
165
+
166
+ // li{
167
+
168
+ // margin-right: 8px;
169
+ // position: relative;
170
+
171
+ // .select-color-scheme-outer{
172
+ // height: 25px;
173
+ // width: 25px;
174
+ // border-radius: 100%;
175
+ // float: left;
176
+
177
+ // &.blue{
178
+ // background-color: #0073EA;
179
+ // }
180
+
181
+ // &.murrey{
182
+ // background-color: #880E4F;
183
+ // }
184
+
185
+ // &.indigo{
186
+ // background-color: #4A148C;
187
+ // }
188
+ // }
189
+
190
+ // .sb-radio-container {
191
+ // display: inline-block;
192
+ // position: absolute;
193
+ // cursor: pointer;
194
+ // width: 25px;
195
+ // height: 25px;
196
+ // top: 0px;
197
+ // left: 0px;
198
+
199
+ // span {
200
+ // position: absolute;
201
+ // top: 0;
202
+ // left: 0;
203
+ // height: 25px;
204
+ // width: 25px;
205
+ // }
206
+
207
+ // span:after {
208
+ // content: "";
209
+ // position: absolute;
210
+ // display: none;
211
+ // transform: rotate(45deg);
212
+ // border-bottom: 2px solid #fff;
213
+ // border-right: 2px solid #fff;
214
+ // height: 13px;
215
+ // width: 6px;
216
+ // left: 10px;
217
+ // top: 4px;
218
+ // }
219
+ // }
220
+
221
+ // .sb-radio-container input {
222
+ // position: absolute;
223
+ // opacity: 0;
224
+ // cursor: pointer;
225
+ // left: 0px;
226
+ // top: 0px;
227
+ // width: 25px;
228
+ // height: 25px;
229
+ // z-index: 2;
230
+ // }
231
+
232
+ // .sb-radio-container input:checked ~ span:after {
233
+ // display: block;
234
+ // }
235
+
236
+ // }
237
+ // }
238
+
239
+ // .sb-theme-right-outer {
240
+ // display: flex;
241
+ // align-items: center;
242
+ // margin-top: 8px;
243
+
244
+ // span.material-symbols-rounded{
245
+ // margin-left: 8px;
246
+ // }
247
+ // }
248
+
249
+ // }
250
+
251
+ // .sb-fonts{
252
+ // float: left;
253
+ // width: 100%;
254
+
255
+ // .sb-fonts-outer{
256
+ // display: flex;
257
+ // align-items: center;
258
+ // margin-top: 12px;
259
+
260
+ // .radio-outer{
261
+ // margin-right: 16px;
262
+ // }
263
+ // }
264
+ // }
265
+
266
+ // }
267
+ }