@entit/digit-ui-css 2.0.0 → 2.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 (55) hide show
  1. package/dist/index.css +409 -2230
  2. package/dist/index.min.css +1 -1
  3. package/package.json +2 -2
  4. package/src/components/CardBasedOptions.scss +39 -105
  5. package/src/components/CitizenHomeCard.scss +35 -46
  6. package/src/components/PageBasedInput.scss +19 -27
  7. package/src/components/PropertySearchForm.scss +2 -2
  8. package/src/components/TimeLine.scss +2 -2
  9. package/src/components/bannercomponents.scss +3 -9
  10. package/src/components/body.scss +4 -32
  11. package/src/components/buttons.scss +0 -3
  12. package/src/components/card.scss +25 -48
  13. package/src/components/charts.scss +1 -134
  14. package/src/components/checkbox.scss +4 -35
  15. package/src/components/checkpoint.scss +1 -3
  16. package/src/components/datatable.scss +6 -10
  17. package/src/components/filters.scss +3 -3
  18. package/src/components/hoc/InboxComposer.scss +15 -108
  19. package/src/components/info-banner.scss +2 -3
  20. package/src/components/languageSelector.scss +7 -8
  21. package/src/components/multiLink.scss +0 -15
  22. package/src/components/navbar.scss +12 -210
  23. package/src/components/radiobtn.scss +0 -12
  24. package/src/components/searchAction.scss +1 -1
  25. package/src/components/selectdropdown.scss +2 -28
  26. package/src/components/statushighlight.scss +1 -1
  27. package/src/components/summary.scss +0 -3
  28. package/src/components/table.scss +3 -14
  29. package/src/components/textfields.scss +1 -19
  30. package/src/components/topbar.scss +7 -21
  31. package/src/components/uploadcomponents.scss +0 -18
  32. package/src/index.scss +39 -263
  33. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +5 -8
  34. package/src/pages/citizen/DocumentList.scss +2 -2
  35. package/src/pages/citizen/HomePageWrapper.scss +84 -148
  36. package/src/pages/citizen/container.scss +1 -1
  37. package/src/pages/employee/cardfix.scss +1 -2
  38. package/src/pages/employee/container.scss +13 -13
  39. package/src/pages/employee/dss.scss +9 -142
  40. package/src/pages/employee/iframe.scss +1 -1
  41. package/src/pages/employee/inbox.scss +49 -259
  42. package/src/pages/employee/index.scss +75 -363
  43. package/src/pages/employee/login.scss +21 -96
  44. package/src/pages/employee/popupmodule.scss +0 -13
  45. package/src/pages/employee/scroll-table.scss +1 -1
  46. package/src/pages/employee/surveys.scss +6 -5
  47. package/svg/check.svg +1 -1
  48. package/svg/starempty.svg +1 -1
  49. package/svg/starfilled.svg +1 -1
  50. package/src/components/FAQ.scss +0 -64
  51. package/src/components/howItWorks.scss +0 -71
  52. package/src/components/plusMinus.scss +0 -15
  53. package/src/components/staticDynamicMessages.scss +0 -107
  54. package/src/components/staticSideBar.scss +0 -27
  55. package/src/components/toggleSwitch.scss +0 -41
@@ -107,7 +107,7 @@
107
107
 
108
108
  .showMore {
109
109
  @apply text-right cursor-pointer;
110
- color: #a82227;
110
+ color: #F47738;
111
111
  }
112
112
 
113
113
  @media (max-width: 420px) {
@@ -183,137 +183,4 @@
183
183
  }
184
184
  }
185
185
  }
186
- }
187
-
188
- .astericColor {
189
- color: #a82227 !important;
190
- }
191
-
192
- .SVTableHeader {
193
- display: flex;
194
- padding-left: 26px;
195
- width: 150px;
196
- }
197
-
198
- .SVTableCells {
199
- padding-left: 80px;
200
- width: 10px;
201
- }
202
-
203
- .SVCheckbox {
204
- width: 14px;
205
- }
206
-
207
- .svsearchbox {
208
- display: flex;
209
- flex-direction: row;
210
- align-items: center;
211
- gap: 16px;
212
- }
213
-
214
- .svsearchfield {
215
- display: flex;
216
- flex-direction: column;
217
- }
218
-
219
- .svclearall {
220
- margin-left: 30%;
221
- margin-top: 10px;
222
- display: block;
223
- }
224
-
225
- .loading-spinner {
226
- width: 20px;
227
- height: 20px !important;
228
- border: 3px solid #e5e5e5;
229
- border-top: 3px solid #000;
230
- border-radius: 50%;
231
- animation: spin 1s linear infinite;
232
- display: inline-block;
233
- margin-right: 4px;
234
- transform-origin: center center;
235
- }
236
-
237
- @keyframes spin {
238
- 0% { transform: rotate(0deg); }
239
- 100% { transform: rotate(360deg); }
240
- }
241
-
242
-
243
-
244
-
245
- .status-card {
246
- width: 24%;
247
- padding: 20px;
248
- border-radius: 10px;
249
- text-align: center;
250
- color: white;
251
- position: relative;
252
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
253
- }
254
-
255
- .status-card .count {
256
- font-size: 36px;
257
- font-weight: bold;
258
- display: block;
259
- }
260
-
261
- .status-card .title {
262
- font-size: 18px;
263
- margin-top: 10px;
264
- display: block;
265
- }
266
-
267
- .status-card .more-info {
268
- font-size: 12px;
269
- position: absolute;
270
- bottom: 10px;
271
- width: 100%;
272
- text-align: center;
273
- }
274
-
275
- .status-card.blue {
276
- background-color: rgba(239, 124, 91, 0.60);
277
- }
278
-
279
- .status-card.teal {
280
- background-color: #20c997;
281
- }
282
-
283
- .status-card.purple {
284
- background-color: rgba(4, 139, 208, 0.85);
285
- }
286
-
287
- .status-card.green {
288
- background-color: rgba(75, 31, 165, 0.60);
289
- }
290
-
291
- .typing_indicator {
292
- display: flex;
293
- gap: 4px;
294
- }
295
-
296
- .typing_indicator span {
297
- width: 8px;
298
- height: 8px;
299
- background-color: #90949c;
300
- border-radius: 50%;
301
- animation: bounce 1.4s infinite ease-in-out;
302
- }
303
-
304
- .typing_indicator span:nth-child(1) {
305
- animation-delay: -0.32s;
306
- }
307
-
308
- .typing_indicator span:nth-child(2) {
309
- animation-delay: -0.16s;
310
- }
311
-
312
- @keyframes bounce {
313
- 0%, 80%, 100% {
314
- transform: translateY(0);
315
- }
316
- 40% {
317
- transform: translateY(-6px);
318
- }
319
186
  }
@@ -14,8 +14,8 @@
14
14
  }
15
15
 
16
16
  .custom-checkbox {
17
- width: 25px;
18
- height: 25px;
17
+ width: 38px;
18
+ height: 38px;
19
19
  @apply absolute top-0 left-0 border border-solid border-input-border z-0;
20
20
 
21
21
  img {
@@ -47,38 +47,7 @@
47
47
  }
48
48
 
49
49
  .label {
50
- margin-left: 32px;
51
- top: 3px !important;
52
- @apply text-form-field text-text-primary relative top-10;
53
- }
54
- }
55
-
56
- .fsm-citizen-rating-wrapper {
57
- .card-label:last-of-type {
58
- margin-top: 24px;
59
- }
60
-
61
- .card-label {
62
- margin-bottom: 24px;
63
- }
64
- }
65
-
66
- .fsm-citizen-rating-wrapper {
67
- .card-label:last-of-type {
68
- margin-top: 24px;
69
- }
70
-
71
- .card-label {
72
- margin-bottom: 24px;
73
- }
74
- }
75
-
76
- .fsm-citizen-rating-wrapper {
77
- .card-label:last-of-type {
78
- margin-top: 24px;
79
- }
80
-
81
- .card-label {
82
- margin-bottom: 24px;
50
+ margin-left: 56px;
51
+ @apply text-form-field text-text-primary;
83
52
  }
84
53
  }
@@ -1,5 +1,5 @@
1
1
  .checkpoint-connect-wrap {
2
- padding-bottom: 4px;
2
+ padding-bottom: 40px;
3
3
  @apply relative;
4
4
  }
5
5
  .checkpoint-done {
@@ -51,8 +51,6 @@
51
51
 
52
52
  .checkpoint-comments-wrap {
53
53
  max-width: 560px;
54
- padding: 4px;
55
- margin-top: 4px;
56
54
  @apply bg-grey-mid p-sm mt-sm;
57
55
 
58
56
  h4{
@@ -56,9 +56,6 @@
56
56
  @apply text-heading-s text-text-secondary;
57
57
  }
58
58
  }
59
- .vendor-details-row {
60
- margin-left: 15px !important;
61
- }
62
59
 
63
60
  .last {
64
61
  border: none;
@@ -67,10 +64,9 @@
67
64
  }
68
65
  }
69
66
 
70
- .pt-citizen {
71
- .data-table {
72
- .row {
73
- justify-content: space-between;
74
- }
75
- }
76
- }
67
+
68
+
69
+ .pt-citizen {.data-table {.row {
70
+ justify-content: space-between;
71
+
72
+ }}}
@@ -20,8 +20,8 @@
20
20
  display: none;
21
21
 
22
22
  &:checked ~ label {
23
- border-color: #a82227;
24
- color: #a82227;
23
+ border-color: #F47738;
24
+ color: #F47738;
25
25
  }
26
26
  }
27
27
 
@@ -73,7 +73,7 @@
73
73
  .clearText {
74
74
  display: block;
75
75
  text-align: right;
76
- color: #a82227;
76
+ color: #f47738;
77
77
  margin-top: 20px;
78
78
  margin-left: 10px;
79
79
  }
@@ -1,115 +1,22 @@
1
- .InboxComposerWrapper {
2
- .form-field-flex-one {
3
- .form-field {
4
- @apply flex-1;
5
- }
6
- }
7
- }
8
-
9
- .inboxPopupMobileWrapper {
10
- @apply block p-md w-full overflow-scroll;
11
- .submit {
12
- @apply flex left-0 w-full px-xl items-center flex-row-reverse !important;
13
- }
14
- .form-field {
15
- margin: 0 !important;
16
- @apply w-full;
17
- }
18
- .InboxMobilePopupCloseButtonWrapper {
19
- @apply flex flex-row-reverse;
20
- }
21
- }
22
-
23
- @screen dt {
24
- .InboxComposerWrapper {
25
- grid-template-columns: calc(25% - 32px) 75%;
26
- @apply grid gap-x-8 gap-y-6;
27
- }
28
-
29
- .wns-inbox-composer {
30
- .filter-form {
31
- height: fit-content;
32
- }
33
-
34
- .wns-search-field {
35
- width: 30% !important;
36
- .field-container {
37
- }
38
- }
39
- .form-field {
40
- width: 100% !important;
41
- }
42
-
43
- .SubmitAndClearAllContainer {
44
- width: 100%;
45
- display: flex;
46
- justify-content: end;
47
- align-items: center;
48
- .clear-search {
49
- width: 30%;
50
- display: inline-block;
51
- vertical-align: middle;
52
- text-align: right;
53
- cursor: pointer;
54
- p {
55
- padding: 1rem;
56
- color: rgb(244, 119, 56);
57
- text-align: end;
58
- }
59
- }
60
- .submit {
61
- width: 30% !important;
62
- margin-left: unset !important;
63
- button {
64
- width: 100% !important;
1
+ .InboxComposerWrapper{
2
+ .form-field-flex-one{
3
+ .form-field{
4
+ @apply flex-1;
65
5
  }
66
- }
67
- }
68
- }
69
-
70
- .search-form-wns-inbox {
71
- .clear-search-container {
72
- grid-column: 2/3;
73
- text-align: right;
74
- .clear-search {
75
- width: 100%;
76
- color: rgb(244, 119, 56);
77
- }
78
- }
79
- button {
80
- width: 100%;
81
6
  }
7
+ }
82
8
 
83
- .filter-form {
84
- height: fit-content;
9
+ .inboxPopupMobileWrapper{
10
+ @apply block p-md w-full overflow-scroll;
11
+ .submit{
12
+ @apply flex left-0 w-full px-xl items-center flex-row-reverse !important;
85
13
  }
86
-
87
- .search-complaint-container {
88
- flex-direction: column;
89
- align-items: flex-start;
90
- --bg-opacity: 1;
91
- background-color: #fff;
92
- background-color: rgba(255, 255, 255, var(--bg-opacity));
93
- padding: 16px;
94
- display: unset;
95
- flex-wrap: unset;
96
- justify-content: unset;
97
- margin-bottom: 0;
98
- .complaint-input-container {
99
- display: grid !important;
100
- grid-template-columns: 33.33% 33.33% 33.33%;
101
- }
102
- .form-field {
103
- width: 100%;
104
- padding-right: 15px;
105
- .clear-search {
106
- padding-top: 10px;
107
- }
108
- }
14
+ .form-field{
15
+ margin: 0 !important;
16
+ @apply w-full;
109
17
  }
110
- .submit {
111
- margin-top: 0;
112
- right: 0;
18
+ .InboxMobilePopupCloseButtonWrapper{
19
+ @apply flex flex-row-reverse;
113
20
  }
114
- }
115
21
  }
22
+
@@ -1,9 +1,6 @@
1
1
  .info-banner-wrap {
2
2
  @apply bg-link-normal bg-opacity-25 m-sm p-md;
3
- max-width: 960px;
4
3
 
5
- background-color: #C7E0F1;
6
- border-radius: 4px;
7
4
  svg {
8
5
  margin-top: 5px;
9
6
  @apply rounded-full;
@@ -24,6 +21,8 @@
24
21
 
25
22
  @screen dt {
26
23
  .info-banner-wrap {
24
+ margin: 0;
25
+
27
26
  h2 {
28
27
  @apply text-heading-m-dt;
29
28
  }
@@ -1,24 +1,23 @@
1
1
  .language-selector {
2
- @apply flex flex-wrap;
2
+ @apply flex;
3
3
  }
4
4
 
5
5
  .language-selector div:not(:first-child) {
6
6
  margin-left: 10px;
7
7
  }
8
- .bannerCard .language-button-container button {
8
+ .bannerCard .language-button-container button{
9
9
  width: 6.2rem;
10
10
  height: 2.5rem;
11
11
  }
12
- .bannerCard .customBtn {
13
- border-color: #505a5f;
12
+ .bannerCard .customBtn{
13
+ border-color: #505A5F;
14
14
  }
15
- .bannerCard .customBtn:focus {
15
+ .bannerCard .customBtn:focus{
16
16
  outline: none;
17
17
  }
18
18
  .bannerCard .customBtn-selected {
19
19
  border-color: transparent;
20
- background-color: #5a1166 !important;
21
20
  }
22
- .bannerCard .bannerHeader p {
21
+ .bannerCard .bannerHeader p{
23
22
  font-size: 19px;
24
- }
23
+ }
@@ -70,19 +70,4 @@
70
70
  top: 110px;
71
71
  @apply shadow-card rounded-sm;
72
72
  }
73
- }
74
-
75
- .reports-download-btn{
76
- justify-content: flex-end;
77
- position: unset;
78
- }
79
-
80
- .reports-options-download{
81
- position: absolute;
82
- justify-content: flex-end;
83
- float: right;
84
- right:0%;
85
- display: flex;
86
- flex-direction: row;
87
- top:2rem;
88
73
  }