@selco/installation-ui-css 1.0.0

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 (161) hide show
  1. package/CHANGELOG.md +163 -0
  2. package/README.md +62 -0
  3. package/dist/index.css +14290 -0
  4. package/dist/index.min.css +6 -0
  5. package/img/browser-icon.png +0 -0
  6. package/img/m_seva_white_logo.png +0 -0
  7. package/img/mseva-demo.png +0 -0
  8. package/package.json +68 -0
  9. package/src/components/CardBasedOptions.scss +46 -0
  10. package/src/components/CitizenHomeCard.scss +60 -0
  11. package/src/components/EllipsisMenu.scss +17 -0
  12. package/src/components/EventCalendarView.scss +10 -0
  13. package/src/components/FAQ.scss +64 -0
  14. package/src/components/OnGroundEventCard.scss +72 -0
  15. package/src/components/PageBasedInput.scss +42 -0
  16. package/src/components/PopupHeadingLabel.scss +15 -0
  17. package/src/components/PropertySearchForm.scss +58 -0
  18. package/src/components/SearchForm.scss +56 -0
  19. package/src/components/SearchOnRadioButton.scss +10 -0
  20. package/src/components/StandaloneSearchBar.scss +10 -0
  21. package/src/components/TimeLine.scss +68 -0
  22. package/src/components/WhatsNewCard.scss +13 -0
  23. package/src/components/actionLink.scss +3 -0
  24. package/src/components/actionbar.scss +97 -0
  25. package/src/components/bannercomponents.scss +136 -0
  26. package/src/components/body.scss +144 -0
  27. package/src/components/buttons.scss +101 -0
  28. package/src/components/card.scss +391 -0
  29. package/src/components/cardHeaderWithOptions.scss +14 -0
  30. package/src/components/changeLanguage.scss +3 -0
  31. package/src/components/charts.scss +186 -0
  32. package/src/components/checkbox.scss +53 -0
  33. package/src/components/checkpoint.scss +64 -0
  34. package/src/components/citizenInfoLabel.scss +14 -0
  35. package/src/components/custombtn.scss +11 -0
  36. package/src/components/datatable.scss +134 -0
  37. package/src/components/datewrap.scss +21 -0
  38. package/src/components/detailscard.scss +6 -0
  39. package/src/components/detailscontainer.scss +13 -0
  40. package/src/components/filters.scss +98 -0
  41. package/src/components/grey.scss +3 -0
  42. package/src/components/hoc/InboxComposer.scss +115 -0
  43. package/src/components/hoc/index.scss +1 -0
  44. package/src/components/howItWorks.scss +71 -0
  45. package/src/components/imageviewer.scss +33 -0
  46. package/src/components/inboxv2/InboxLinks.scss +59 -0
  47. package/src/components/inboxv2/horizontalNav.scss +224 -0
  48. package/src/components/inboxv2/inboxSearch.scss +116 -0
  49. package/src/components/inboxv2/inboxSearchComposer.scss +169 -0
  50. package/src/components/inboxv2/index.scss +5 -0
  51. package/src/components/inboxv2/searchComponentTable.scss +45 -0
  52. package/src/components/info-banner.scss +35 -0
  53. package/src/components/inputotp.scss +15 -0
  54. package/src/components/keynote.scss +27 -0
  55. package/src/components/languageSelector.scss +23 -0
  56. package/src/components/loader.scss +96 -0
  57. package/src/components/loaderWithGap.scss +45 -0
  58. package/src/components/map.scss +30 -0
  59. package/src/components/menu.scss +0 -0
  60. package/src/components/metricsTable.scss +29 -0
  61. package/src/components/multiLink.scss +88 -0
  62. package/src/components/multiSelectDropdown.scss +78 -0
  63. package/src/components/navbar.scss +321 -0
  64. package/src/components/plusMinus.scss +15 -0
  65. package/src/components/popup.scss +16 -0
  66. package/src/components/radiobtn.scss +46 -0
  67. package/src/components/ratingstar.scss +33 -0
  68. package/src/components/roundedLabel.scss +10 -0
  69. package/src/components/searchAction.scss +20 -0
  70. package/src/components/sectionalDropdown.scss +43 -0
  71. package/src/components/selectdropdown.scss +175 -0
  72. package/src/components/sidebar.scss +141 -0
  73. package/src/components/staticDynamicMessages.scss +107 -0
  74. package/src/components/staticSideBar.scss +27 -0
  75. package/src/components/statushighlight.scss +17 -0
  76. package/src/components/submiterrors.scss +11 -0
  77. package/src/components/summary.scss +29 -0
  78. package/src/components/table.scss +201 -0
  79. package/src/components/tag.scss +27 -0
  80. package/src/components/telephone.scss +17 -0
  81. package/src/components/textfields.scss +96 -0
  82. package/src/components/toast.scss +31 -0
  83. package/src/components/toggleSwitch.scss +41 -0
  84. package/src/components/topbar.scss +153 -0
  85. package/src/components/uploadcomponents.scss +102 -0
  86. package/src/digitv2/components/ErrorMessage.scss +6 -0
  87. package/src/digitv2/components/FormComposerV2.scss +126 -0
  88. package/src/digitv2/components/actionLinkV2.scss +7 -0
  89. package/src/digitv2/components/actionbarV2.scss +108 -0
  90. package/src/digitv2/components/appContainerV2.scss +55 -0
  91. package/src/digitv2/components/backButtonV2.scss +26 -0
  92. package/src/digitv2/components/bannerV2.scss +120 -0
  93. package/src/digitv2/components/bodyContainerV2.scss +39 -0
  94. package/src/digitv2/components/breakLineV2.scss +7 -0
  95. package/src/digitv2/components/cardV2.scss +385 -0
  96. package/src/digitv2/components/checkboxV2.scss +61 -0
  97. package/src/digitv2/components/checkpointV2.scss +71 -0
  98. package/src/digitv2/components/collapseAndExpandGroups.scss +60 -0
  99. package/src/digitv2/components/dateWrapV2.scss +12 -0
  100. package/src/digitv2/components/displayPhotosV2.scss +33 -0
  101. package/src/digitv2/components/headerV2.scss +6 -0
  102. package/src/digitv2/components/infoBannerV2.scss +37 -0
  103. package/src/digitv2/components/keynoteV2.scss +35 -0
  104. package/src/digitv2/components/loaderV2.scss +90 -0
  105. package/src/digitv2/components/mobileNumberV2.scss +33 -0
  106. package/src/digitv2/components/multiSelectDropdownV2.scss +92 -0
  107. package/src/digitv2/components/noresultsfoundV2.scss +11 -0
  108. package/src/digitv2/components/otpInputV2.scss +15 -0
  109. package/src/digitv2/components/popUpV2.scss +24 -0
  110. package/src/digitv2/components/radiobtnV2.scss +51 -0
  111. package/src/digitv2/components/ratingV2.scss +33 -0
  112. package/src/digitv2/components/selectdropdownV2.scss +180 -0
  113. package/src/digitv2/components/tagV2.scss +28 -0
  114. package/src/digitv2/components/telephoneV2.scss +18 -0
  115. package/src/digitv2/components/textInputV2.scss +123 -0
  116. package/src/digitv2/components/textareaV2.scss +11 -0
  117. package/src/digitv2/components/uploadFileV2.scss +146 -0
  118. package/src/digitv2/index.scss +166 -0
  119. package/src/digitv2/pages/employee/index.scss +35 -0
  120. package/src/digitv2/pages/employee/workbench.scss +1112 -0
  121. package/src/digitv2/typography.scss +241 -0
  122. package/src/index.scss +868 -0
  123. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +8 -0
  124. package/src/pages/citizen/DocumentList.scss +305 -0
  125. package/src/pages/citizen/Events.scss +47 -0
  126. package/src/pages/citizen/HomePageWrapper.scss +158 -0
  127. package/src/pages/citizen/SurveyList.scss +22 -0
  128. package/src/pages/citizen/citizenDocument.scss +22 -0
  129. package/src/pages/citizen/container.scss +19 -0
  130. package/src/pages/citizen/payment/payment-type.scss +3 -0
  131. package/src/pages/citizen/updatePropertyNumber.scss +46 -0
  132. package/src/pages/employee/EmployeeLogin.scss +7 -0
  133. package/src/pages/employee/cardfix.scss +13 -0
  134. package/src/pages/employee/container.scss +72 -0
  135. package/src/pages/employee/dss.scss +266 -0
  136. package/src/pages/employee/form-fields.scss +24 -0
  137. package/src/pages/employee/iframe.scss +66 -0
  138. package/src/pages/employee/inbox.scss +593 -0
  139. package/src/pages/employee/index.scss +613 -0
  140. package/src/pages/employee/login.scss +351 -0
  141. package/src/pages/employee/oldMobileInbox.scss +5 -0
  142. package/src/pages/employee/popupmodule.scss +34 -0
  143. package/src/pages/employee/response.scss +3 -0
  144. package/src/pages/employee/sandbox.scss +1293 -0
  145. package/src/pages/employee/scroll-table.scss +119 -0
  146. package/src/pages/employee/searchaction.scss +14 -0
  147. package/src/pages/employee/surveys.scss +273 -0
  148. package/src/pages/employee/tooltip.scss +36 -0
  149. package/src/pages/employee/updateNumber.scss +13 -0
  150. package/svg/arrowdown.svg +1 -0
  151. package/svg/arrowleft.svg +1 -0
  152. package/svg/calendar.svg +1 -0
  153. package/svg/camera.svg +4 -0
  154. package/svg/check.svg +4 -0
  155. package/svg/close.svg +4 -0
  156. package/svg/error.svg +4 -0
  157. package/svg/error2.svg +5 -0
  158. package/svg/searchicon.svg +4 -0
  159. package/svg/starempty.svg +4 -0
  160. package/svg/starfilled.svg +5 -0
  161. package/svg/success.svg +4 -0
@@ -0,0 +1,351 @@
1
+ .loginFormStyleEmployee {
2
+ .employeeCard {
3
+ .submit-bar {
4
+ @apply w-full;
5
+ }
6
+ }
7
+ }
8
+
9
+ .banner .bannerCard {
10
+ min-width: 420px !important;
11
+ }
12
+
13
+ .employeeForgotPassword .employeeCard .field .field-container .component-in-front {
14
+ margin-top: 0;
15
+ border: 1px solid;
16
+ border-right: none;
17
+ padding: 7px;
18
+ }
19
+
20
+ @screen dt {
21
+ .employeeForgotPassword .employeeCard .field .field-container .component-in-front {
22
+ padding: 7px;
23
+ }
24
+
25
+ .loginFormStyleEmployee .employeeCard,
26
+ .banner .bannerCard {
27
+ min-width: 420px !important;
28
+ }
29
+
30
+ .employeeForgotPassword .employeeCard,
31
+ .employeeChangePassword .employeeCard {
32
+ max-width: 420px !important;
33
+ min-width: 420px !important;
34
+ }
35
+ }
36
+
37
+ .employeeForgotPassword .employee-card-input {
38
+ margin-bottom: 0px;
39
+ border-left: none;
40
+ }
41
+
42
+ .employeeForgotPassword .field-container {
43
+ margin: 10px 0;
44
+ }
45
+
46
+ .employeeForgotPassword {
47
+ .submit-bar {
48
+ @apply w-full;
49
+ }
50
+ }
51
+
52
+ .employeeChangePassword .submit-bar {
53
+ width: 100% !important;
54
+ }
55
+
56
+ .employeeChangePassword .card-text {
57
+ text-align: center;
58
+ }
59
+
60
+ .employeeChangePassword .input-otp-wrap {
61
+ text-align: center;
62
+ }
63
+
64
+ .submit-bar {
65
+ .submit-bar {
66
+ @apply w-full;
67
+ }
68
+ }
69
+
70
+ .loginFormStyleEmployee .bannerHeader p,
71
+ .employeeForgotPassword .bannerHeader p,
72
+ .employeeChangePassword .bannerHeader p {
73
+ font-size: 19px;
74
+ }
75
+
76
+ .employeeCard .card-sub-header {
77
+ font-size: 24px;
78
+ }
79
+
80
+ .loginFormStyleEmployee .employeeCard .card-label,
81
+ .employeeForgotPassword .employeeCard .card-label {
82
+ font-weight: normal;
83
+ font-size: 16px;
84
+ line-height: 19px;
85
+ color: theme(colors.text.primary);
86
+ margin-top: 20px;
87
+ }
88
+
89
+ .banner .bannerHeader {
90
+ margin-bottom: 20px;
91
+ }
92
+
93
+ .employeeCard .card-label {
94
+ font-weight: normal;
95
+ font-size: 16px;
96
+ line-height: 19px;
97
+ color: theme(colors.text.primary);
98
+ }
99
+
100
+ .profile-label-margin {
101
+ margin-top: 10px;
102
+ }
103
+
104
+ .employeeForgotPassword .employeeCard .card-label-desc {
105
+ font-weight: normal;
106
+ font-size: 16px;
107
+ line-height: 24px;
108
+ color: theme(colors.text.secondary);
109
+ margin-top: 15px;
110
+ }
111
+
112
+ .employeeChangePassword .employeeCard .card-text {
113
+ margin-bottom: 15px;
114
+ font-size: 16px;
115
+ color: theme(colors.text.secondary);
116
+ }
117
+
118
+ @media screen and (max-width: 768px) {
119
+ .employeeChangePassword .employeeCard .card-text {
120
+ margin-top: 7px;
121
+ }
122
+
123
+ .employeeCard .card-sub-header {
124
+ font-size: 18px;
125
+ }
126
+ }
127
+
128
+ .employeeChangePassword .employeeCard .card-text-button {
129
+ text-align: center !important;
130
+ margin-bottom: 12px !important;
131
+ }
132
+
133
+ .employeeChangePassword .employeeCard .input-otp-wrap {
134
+ margin-bottom: 10px;
135
+ }
136
+
137
+ .employee .loginContainer {
138
+ padding-top: 0px !important;
139
+ }
140
+
141
+ .banner {
142
+ height: calc(100vh) !important;
143
+ }
144
+
145
+ .employeeChangePassword .employeeCard .field .field-container {
146
+ margin-bottom: 24px;
147
+ }
148
+
149
+ .employeeForgotPassword .employeeCard .employee-card-sub-header,
150
+ .employeeChangePassword .employeeCard .employee-card-sub-header,
151
+ .loginFormStyleEmployee .employeeCard .employee-card-sub-header {
152
+ font-size: 24px !important;
153
+ line-height: 28px !important;
154
+ margin-bottom: 0px !important;
155
+ }
156
+
157
+ @media screen and (max-width: 768px) {
158
+ .employeeForgotPassword .employeeCard .employee-card-sub-header,
159
+ .employeeChangePassword .employeeCard .employee-card-sub-header,
160
+ .loginFormStyleEmployee .employeeCard .employee-card-sub-header {
161
+ font-size: 18px !important;
162
+ line-height: 21px !important;
163
+ margin-bottom: 0px !important;
164
+ }
165
+
166
+ .loginFormStyleEmployee .employeeCard,
167
+ .banner .bannerCard {
168
+ min-width: 340px !important;
169
+ margin: 10px !important;
170
+ }
171
+
172
+ .employeeForgotPassword .employeeCard,
173
+ .employeeChangePassword .employeeCard {
174
+ max-width: 360px !important;
175
+ min-width: 340px !important;
176
+ margin: 10px !important;
177
+ }
178
+ }
179
+
180
+ .employeeChangePassword .employeeCard .card-text {
181
+ margin-top: 18px !important;
182
+ margin-bottom: 20px !important;
183
+ }
184
+
185
+ .employeeBackbuttonAlign {
186
+ display: none;
187
+ }
188
+
189
+ .resend-otp {
190
+ cursor: pointer;
191
+ }
192
+
193
+ .employee-select-wrap.login-city-dd {
194
+ .options-card {
195
+ max-height: 200px;
196
+ }
197
+ }
198
+
199
+ @media screen and (max-width: 768px) {
200
+ .employeeBackbuttonAlign {
201
+ display: block;
202
+ position: absolute;
203
+ top: 20px;
204
+ left: 20px;
205
+ }
206
+
207
+ .banner {
208
+ align-items: flex-end;
209
+ padding-bottom: 40px;
210
+ height: 100vh !important;
211
+ }
212
+
213
+ .topbar {
214
+ background: rgba(34, 57, 77, var(--bg-opacity)) !important;
215
+ color: white;
216
+ }
217
+
218
+ .employee .loginContainer {
219
+ padding-top: 0px !important;
220
+ }
221
+
222
+ .removeBottomMargin {
223
+ margin-bottom: 0px !important;
224
+ }
225
+
226
+ .employee-select-wrap.login-city-dd {
227
+ .options-card {
228
+ max-height: 160px;
229
+ }
230
+ }
231
+ }
232
+
233
+ .loginFormStyleEmployee {
234
+ .loginCardSubHeaderClassName {
235
+ text-align: center !important;
236
+ }
237
+
238
+ .loginCardClassName {
239
+ margin: auto !important;
240
+ min-width: 408px !important;
241
+
242
+ header.employee-card-sub-header {
243
+ text-align: center;
244
+ margin-top: 10px;
245
+ }
246
+
247
+ header.digit-header-content {
248
+ &:not(.label) {
249
+ text-align: center;
250
+ font-family: theme(digitv2.fontFamily.sans);
251
+ font-style: theme(digitv2.fontStyle.normal);
252
+ font-weight: theme(digitv2.fontWeight.bold);
253
+ line-height: theme(digitv2.lineHeight.lineheight1);
254
+ @media (max-aspect-ratio: 9/16) {
255
+ font-size: theme(digitv2.fontSize.heading-m.mobile);
256
+ }
257
+ @media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
258
+ font-size: theme(digitv2.fontSize.heading-m.tablet);
259
+ }
260
+ @media (min-aspect-ratio: 3/4) {
261
+ font-size: theme(digitv2.fontSize.heading-m.desktop);
262
+ }
263
+ }
264
+ }
265
+ }
266
+
267
+ .buttonClassName {
268
+ max-width: 100% !important;
269
+ width: 100% !important;
270
+ }
271
+
272
+ .field .field-container .text-input input {
273
+ margin-bottom: 5px !important;
274
+ }
275
+
276
+ .bannerHeader {
277
+ margin-bottom: 0px !important;
278
+ }
279
+
280
+ .primary-label-btn {
281
+ margin: 20px auto 0 auto !important;
282
+ }
283
+
284
+ .employee-select-wrap .options-card {
285
+ max-height: 150px !important;
286
+ }
287
+ }
288
+ .digit-privacy-checkbox {
289
+ display: flex;
290
+ margin-bottom: -2.5rem;
291
+ margin-top: -1.5rem;
292
+ gap: 0.12rem;
293
+ align-items: center;
294
+ }
295
+ .privacy-popup-header {
296
+ font-weight: 700;
297
+ }
298
+
299
+ @media (min-width: 47.8rem) {
300
+ .privacy-popUpClass {
301
+ .digit-popup-footer-buttons {
302
+ flex-wrap: nowrap !important;
303
+ }
304
+ .accept-class {
305
+ width: 11.886rem;
306
+ }
307
+ }
308
+ }
309
+
310
+ .languageSelection {
311
+ width: unset !important;
312
+ }
313
+ .desc-dot {
314
+ height: 8px;
315
+ width: 8px;
316
+ background-color: black;
317
+ border-radius: 50%;
318
+ display: inline-block;
319
+ margin-right: 0.5rem;
320
+ }
321
+
322
+ .privacy-table {
323
+ font-weight: 700;
324
+ }
325
+ .policy-subdescription {
326
+ margin-left: "1rem";
327
+ margin-top: "0.5rem";
328
+ }
329
+ .policy-subdescription-points {
330
+ display: "flex";
331
+ align-items: "center";
332
+ margin-bottom: "0.5rem";
333
+ padding-left: "1rem";
334
+ }
335
+
336
+
337
+ .loginCardClassName{
338
+ .digit-dropdown-employee-select-wrap {
339
+ .digit-dropdown-options-card{
340
+ max-height: 10vmax;
341
+ }
342
+ }
343
+ }
344
+
345
+ .employeeForgotPassword{
346
+ .digit-dropdown-employee-select-wrap {
347
+ .digit-dropdown-options-card{
348
+ max-height: 10vmax;
349
+ }
350
+ }
351
+ }
@@ -0,0 +1,5 @@
1
+ .linksWrapperForMobileInbox{
2
+ .header{
3
+ justify-content: initial;
4
+ }
5
+ }
@@ -0,0 +1,34 @@
1
+ .popup-module {
2
+ width: 480px;
3
+ margin: 0 auto;
4
+ @apply bg-white;
5
+
6
+ .popup-module-main {
7
+ @apply px-lg pb-lg;
8
+ }
9
+
10
+ .popup-module-action-bar {
11
+ gap: 16px;
12
+ @apply flex flex-row justify-end;
13
+ }
14
+ }
15
+
16
+ @screen dt {
17
+ .popup-module {
18
+ width: 480px;
19
+ margin: auto;
20
+ @apply bg-white;
21
+
22
+ .popup-module-main {
23
+ @apply px-lg pb-lg;
24
+ }
25
+ .popup-module-main {
26
+ @apply w-full p-sm h-full;
27
+ }
28
+
29
+ .popup-module-action-bar {
30
+ gap: 16px;
31
+ @apply flex flex-row justify-end;
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,3 @@
1
+ .secondary-action{
2
+ @apply inline float-right;
3
+ }