@egovernments/digit-ui-components-css 0.0.1-pucar.3 → 0.0.2-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 (53) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/index.css +6391 -4208
  3. package/dist/index.min.css +2 -2
  4. package/package.json +4 -2
  5. package/src/digitv2/components/actionbarV2.scss +207 -0
  6. package/src/digitv2/components/backLinkV2.scss +37 -0
  7. package/src/digitv2/components/breadcrumbV2.scss +57 -0
  8. package/src/digitv2/components/buttonsV2.scss +45 -2
  9. package/src/digitv2/components/cardV2.scss +498 -0
  10. package/src/digitv2/components/cardbasedoptionsV2.scss +47 -0
  11. package/src/digitv2/components/cardlabelV2.scss +8 -0
  12. package/src/digitv2/components/checkboxV2.scss +4 -0
  13. package/src/digitv2/components/{removeableTagV2.scss → chipV2.scss} +5 -0
  14. package/src/digitv2/components/dividerV2.scss +11 -0
  15. package/src/digitv2/components/errorMessageV2.scss +2 -0
  16. package/src/digitv2/components/fieldV1.scss +1 -1
  17. package/src/digitv2/components/headerdropdownV2.scss +152 -0
  18. package/src/digitv2/components/infoCardV2.scss +1 -4
  19. package/src/digitv2/components/labelFieldPairV2.scss +20 -11
  20. package/src/digitv2/components/mobileNumberV2.scss +1 -1
  21. package/src/digitv2/components/mobilesidebarV2.scss +439 -0
  22. package/src/digitv2/components/multiSelectDropdownV2.scss +1 -1
  23. package/src/digitv2/components/popUpV2.scss +29 -7
  24. package/src/digitv2/components/radiobtnV2.scss +6 -4
  25. package/src/digitv2/components/selectDropdownV2.scss +3 -3
  26. package/src/digitv2/components/sidebarV2.scss +409 -0
  27. package/src/digitv2/components/stepperV2.scss +30 -9
  28. package/src/digitv2/components/textInputV2.scss +1 -1
  29. package/src/digitv2/components/textareaV2.scss +1 -1
  30. package/src/digitv2/components/timelineV2.scss +55 -11
  31. package/src/digitv2/components/tooltipwrapperV2.scss +96 -0
  32. package/src/digitv2/components/topbarV2.scss +388 -0
  33. package/src/digitv2/components/uploaderV2.scss +98 -10
  34. package/src/digitv2/components/viewCardFieldPairV2.scss +45 -0
  35. package/src/digitv2/index.scss +14 -4
  36. package/src/digitv2/typography.scss +1 -1
  37. package/src/index.scss +0 -4
  38. package/src/pages/employee/index.scss +1 -1
  39. package/img/browser-icon.png +0 -0
  40. package/img/m_seva_white_logo.png +0 -0
  41. package/img/mseva-demo.png +0 -0
  42. package/svg/arrowdown.svg +0 -1
  43. package/svg/arrowleft.svg +0 -1
  44. package/svg/calendar.svg +0 -1
  45. package/svg/camera.svg +0 -4
  46. package/svg/check.svg +0 -4
  47. package/svg/close.svg +0 -4
  48. package/svg/error.svg +0 -4
  49. package/svg/error2.svg +0 -5
  50. package/svg/searchicon.svg +0 -4
  51. package/svg/starempty.svg +0 -4
  52. package/svg/starfilled.svg +0 -5
  53. package/svg/success.svg +0 -4
@@ -1,5 +1,5 @@
1
1
  .digit-timeline-item {
2
- @apply flex items-start;
2
+ @apply flex items-start relative ;
3
3
  gap: theme(digitv2.spacers.spacer4);
4
4
  }
5
5
 
@@ -13,6 +13,30 @@
13
13
  }
14
14
  }
15
15
 
16
+ .connector-line {
17
+ @apply absolute bottom-0 border-solid border-border;
18
+ border-left-width: 0.125rem;
19
+ margin-left: 0.938rem;
20
+ top: theme(digitv2.spacers.spacer8);
21
+
22
+ &.completed,
23
+ &.inprogress,
24
+ &.nextActiveStep{
25
+ border-color: theme(digitv2.lightTheme.primary-1);
26
+ }
27
+
28
+ &.nextActiveStep{
29
+ border-style: dotted;
30
+ }
31
+
32
+ @media (max-aspect-ratio: 9/16) {
33
+ /* Media query for mobile */
34
+ margin-left: 0.688rem;
35
+ top: theme(digitv2.spacers.spacer6);
36
+ border-left-width: 0.063rem;
37
+ }
38
+ }
39
+
16
40
  .timeline-content,
17
41
  .timeline-info {
18
42
  @apply flex flex-col w-full;
@@ -74,19 +98,10 @@ img {
74
98
  @apply max-w-full;
75
99
  }
76
100
 
77
- .details-btn {
78
- @extend .typography.link;
79
- @apply text-left;
80
- background-color: transparent;
81
- border: none;
82
- color: theme(digitv2.lightTheme.primary-1);
83
- padding: theme(digitv2.spacers.spacer0);
84
- }
85
-
86
101
  /* Circle Variants */
87
102
  .timeline-circle,
88
103
  .timeline-circle.upcoming {
89
- background-color: theme(digitv2.lightTheme.text-disabled);
104
+ background-color: theme(digitv2.lightTheme.text-disabled);
90
105
  }
91
106
 
92
107
  .timeline-circle.inprogress {
@@ -124,4 +139,33 @@ img {
124
139
  height: 1.125rem;
125
140
  }
126
141
  }
142
+ }
143
+
144
+ .digit-timeline-molecule{
145
+ @apply max-h-full;
146
+
147
+ .timeline-content:not(.lastTimeline){
148
+
149
+ @media (min-aspect-ratio: 3/4) {
150
+ /* Media query for desktop */
151
+ margin-bottom: theme(digitv2.spacers.spacer6);
152
+ }
153
+
154
+ @media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
155
+ /* Media query for tablets */
156
+ margin-bottom: theme(digitv2.spacers.spacer5);
157
+ }
158
+ @media (max-aspect-ratio: 9/16) {
159
+ /* Media query for mobile */
160
+ margin-bottom: theme(digitv2.spacers.spacer4);
161
+ }
162
+ }
163
+ }
164
+
165
+ .view-more-past-container {
166
+ margin-top: theme(digitv2.spacers.spacer4);
167
+ }
168
+
169
+ .view-more-future-container {
170
+ margin-bottom: theme(digitv2.spacers.spacer4);
127
171
  }
@@ -0,0 +1,96 @@
1
+ .tooltip-wrapper {
2
+ position: relative;
3
+ display: inline-block;
4
+ }
5
+
6
+ .tooltip-content{
7
+ position: absolute;
8
+ background-color: theme(digitv2.lightTheme.generic-inputborder);
9
+ color: theme(digitv2.lightTheme.paper-primary);
10
+ padding: theme(digitv2.spacers.spacer2);
11
+ border-radius: theme(digitv2.spacers.spacer1);
12
+ z-index: 1000;
13
+ pointer-events: none;
14
+ width: max-content;
15
+ transition: all 0.5s ease;
16
+
17
+ min-width: 4.125rem;
18
+ max-width: 14.563rem;
19
+
20
+ font-family: theme(digitv2.fontFamily.sans);
21
+ font-style: theme(digitv2.fontStyle.normal);
22
+ font-weight: theme(digitv2.fontWeight.regular);
23
+ line-height: theme(digitv2.lineHeight.lineheight2);
24
+
25
+ @media (max-aspect-ratio: 9/16) {
26
+ font-size: theme(digitv2.fontSize.body-s.mobile);
27
+ }
28
+
29
+ @media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
30
+ font-size: theme(digitv2.fontSize.body-s.tablet);
31
+ }
32
+
33
+ @media (min-aspect-ratio: 3/4) {
34
+ font-size: theme(digitv2.fontSize.body-s.desktop);
35
+ }
36
+ }
37
+
38
+ .tooltip-content.tooltip-left{
39
+ left: -10rem;
40
+ }
41
+
42
+ .tooltip-content.tooltip-right{
43
+ left: 10rem;
44
+ }
45
+
46
+ .tooltip-content.tooltip-top{
47
+ top: -3.75rem;
48
+ }
49
+
50
+ .tooltip-content.tooltip-bottom{
51
+ top: 3.75rem;
52
+ }
53
+
54
+ .tooltip-left:before{
55
+ content: "";
56
+ position: absolute;
57
+ top: 0;
58
+ right:-0.625rem;
59
+ border-left:0.625rem solid transparent;
60
+ border-right:0.625rem solid transparent;
61
+ border-top:0.625rem solid theme(digitv2.lightTheme.generic-inputborder);
62
+ border-bottom:0.625rem solid transparent;
63
+ }
64
+
65
+ .tooltip-right:before{
66
+ content: "";
67
+ position: absolute;
68
+ top: 0;
69
+ left:-0.625rem;
70
+ border-left:0.625rem solid transparent;
71
+ border-right:0.625rem solid transparent;
72
+ border-top:0.625rem solid theme(digitv2.lightTheme.generic-inputborder);
73
+ border-bottom:0.625rem solid transparent;
74
+ }
75
+
76
+ .tooltip-top:before{
77
+ content: "";
78
+ position: absolute;
79
+ bottom:-0.625rem;
80
+ right:0rem;
81
+ border-left:0.625rem solid transparent;
82
+ border-right:0.625rem solid theme(digitv2.lightTheme.generic-inputborder);
83
+ border-top:0.625rem solid transparent;
84
+ border-bottom:0.625rem solid transparent;
85
+ }
86
+
87
+ .tooltip-bottom:before{
88
+ content: "";
89
+ position: absolute;
90
+ top:-0.625rem;
91
+ left:0rem;
92
+ border-left:0.625rem solid theme(digitv2.lightTheme.generic-inputborder);
93
+ border-right:0.625rem solid transparent;
94
+ border-top:0.625rem solid transparent;
95
+ border-bottom:0.625rem solid transparent;
96
+ }
@@ -0,0 +1,388 @@
1
+ .topbar {
2
+ position: fixed;
3
+ top: 0;
4
+ width: 100%;
5
+ padding: 0.625rem 1.5rem;
6
+ background: white;
7
+ box-shadow: rgba(0, 0, 0, 0.24) 0 0.063rem 0.25rem;
8
+ z-index: 9999999;
9
+ @apply flex items-center;
10
+
11
+ img {
12
+ display: inline;
13
+
14
+ &.city {
15
+ margin-right: 0.5rem;
16
+ height: 3rem;
17
+ width: 3rem;
18
+ }
19
+
20
+ &.state {
21
+ height: 1.25rem;
22
+ max-height: 1.25rem;
23
+ width: auto;
24
+ }
25
+ }
26
+
27
+ .ulb {
28
+ font-weight: bold;
29
+ display: inline-block;
30
+ }
31
+
32
+ .right {
33
+ float: right;
34
+ margin-top: 0.75rem;
35
+ position: relative;
36
+
37
+ svg {
38
+ display: inline;
39
+ }
40
+
41
+ .user-img-txt {
42
+ background: theme(colors.primary.main);
43
+ padding: 0.625rem 0.938rem;
44
+ border-radius: 50%;
45
+ color: white;
46
+ font-weight: 700;
47
+ }
48
+ }
49
+
50
+ .left {
51
+ float: left;
52
+ }
53
+
54
+ .w-80 {
55
+ width: 70%;
56
+ }
57
+
58
+ .width-20 {
59
+ width: 30%;
60
+ }
61
+
62
+ .margin-top-6 {
63
+ margin-top: 0.375rem;
64
+ }
65
+
66
+ .margin-right-30 {
67
+ margin-right: 1.875rem;
68
+ }
69
+
70
+ .margin-top-10 {
71
+ margin-top: 0.625rem;
72
+ }
73
+
74
+ .icon {
75
+ display: block;
76
+ color: rgb(117, 117, 117);
77
+ fill: rgb(117, 117, 117);
78
+ height: 1.313rem;
79
+ width: 1.313rem;
80
+ }
81
+
82
+ .column-gap-15 {
83
+ column-gap: 0.938rem;
84
+ }
85
+
86
+ .column-gap-5 {
87
+ column-gap: 0.313rem;
88
+ }
89
+
90
+ .select-wrap,
91
+ .employee-select-wrap {
92
+ margin-bottom: 0rem;
93
+
94
+ .profile-dropdown--item {
95
+ span {
96
+ white-space: pre;
97
+ }
98
+ }
99
+ }
100
+
101
+ .digit-employee-select-wrap {
102
+ margin-bottom: 0rem;
103
+ }
104
+
105
+ .digit-topbar-container {
106
+ display: flex;
107
+ align-items: center;
108
+ justify-content: space-between;
109
+ width: 100%;
110
+ }
111
+
112
+ @media screen and (min-width: 40.063rem) {
113
+ .digit-hamburger-class {
114
+ display: none !important;
115
+ }
116
+ }
117
+
118
+ @media screen and (max-width: 40rem) {
119
+
120
+ .ulb {
121
+ font-size: 0.875rem;
122
+ display: inline-block;
123
+ }
124
+
125
+ .flex-right {
126
+ display: none;
127
+ }
128
+
129
+ .digit-employee-select-wrap {
130
+ right: 0;
131
+ }
132
+ }
133
+ }
134
+
135
+ .cp {
136
+ cursor: pointer;
137
+
138
+ .hamburger {
139
+ display: none;
140
+ }
141
+
142
+ @media (max-width: 48.75rem) {
143
+ .hamburger {
144
+ display: none;
145
+ }
146
+ }
147
+ }
148
+
149
+ .citizen {
150
+ .right {
151
+ margin-top: 0.313rem;
152
+ margin-bottom: 0.313rem;
153
+ }
154
+
155
+ .topbar-select-wrap {
156
+ margin-bottom: 0;
157
+ }
158
+
159
+ .flex-between {
160
+ @apply flex items-center justify-between;
161
+ }
162
+ }
163
+
164
+ .profile-dropdown--item {
165
+ display: flex;
166
+ flex-direction: row;
167
+ padding: 0.625rem;
168
+ column-gap: 0.625rem;
169
+ color: theme(colors.text.secondary);
170
+
171
+ &:hover {
172
+ background: theme(colors.grey.mid);
173
+ }
174
+ }
175
+
176
+ .flex-right {
177
+ @apply flex items-center justify-end;
178
+ min-width: 5.313rem;
179
+ }
180
+
181
+ video::-webkit-media-controls-panel {
182
+ top: 55%;
183
+ position: absolute;
184
+ width: 100%;
185
+ }
186
+
187
+ .topbarOptionsClassName {
188
+ right: -3rem !important
189
+ }
190
+
191
+ .digit-topbar {
192
+ @apply w-full max-w-full fixed items-center;
193
+ top: 0;
194
+ left: 0;
195
+ z-index: 9999999;
196
+ display: flex;
197
+ background-color: theme(digitv2.lightTheme.paper-primary);
198
+ height: 4rem;
199
+ padding: theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer10) theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer10);
200
+
201
+ .margin-top-10 {
202
+ margin-top: 0.625rem;
203
+ }
204
+
205
+ .digit-dropdown-select-wrap ,
206
+ .digit-dropdown-employee-select-wrap {
207
+ margin-bottom: 0rem;
208
+
209
+ .digit-dropdown-item {
210
+ span {
211
+ white-space: pre;
212
+ }
213
+ }
214
+ }
215
+
216
+ .digit-employee-select-wrap {
217
+ margin-bottom: 0rem;
218
+ }
219
+
220
+
221
+ .digit-dropdown-item {
222
+ display: flex;
223
+ flex-direction: row;
224
+ padding: 0.625rem;
225
+ column-gap: 0.625rem;
226
+ color: theme(colors.text.secondary);
227
+
228
+ &:hover {
229
+ background: theme(colors.grey.mid);
230
+ }
231
+ }
232
+
233
+ @media (min-width: 48rem) {
234
+ justify-content: space-between;
235
+ }
236
+
237
+ @media (min-width: 30.063rem) and (max-width: 47.938rem) {
238
+ padding: theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer6) theme(digitv2.spacers.spacer4) theme(digitv2.spacers.spacer6);
239
+ gap: theme(digitv2.spacers.spacer4);
240
+ }
241
+
242
+ @media (max-width: 30rem) {
243
+ height: 3.5rem;
244
+ padding: theme(digitv2.spacers.spacer4);
245
+ gap: theme(digitv2.spacers.spacer4);
246
+ }
247
+
248
+ &.light {
249
+ box-shadow: theme(digitv2.spacers.spacer0) 0.063rem 0.125rem theme(digitv2.spacers.spacer0) #00000029;
250
+ }
251
+
252
+ .digit-logo-ulb-wrapper {
253
+ display: flex !important;
254
+ gap: theme(digitv2.spacers.spacer4);
255
+ align-items: center !important;
256
+ max-width: calc(50%-(theme(digitv2.spacers.spacer6)));
257
+
258
+ @media (min-width: 48rem) {
259
+ height: theme(digitv2.spacers.spacer8);
260
+ }
261
+
262
+ @media (min-width: 30.063rem) and (max-width: 47.938rem) {
263
+ height: theme(digitv2.spacers.spacer8);
264
+ }
265
+
266
+ @media (max-width: 30rem) {}
267
+
268
+ .digit-topbar-logo {
269
+ flex-shrink: 0;
270
+ height: theme(digitv2.spacers.spacer8);
271
+ width: 1.291rem;
272
+
273
+ &.clickable {
274
+ cursor: pointer;
275
+ }
276
+ }
277
+
278
+ .digit-topbar-ulb {
279
+ @extend .typography.heading-s;
280
+ @apply whitespace-no-wrap overflow-hidden;
281
+ color: theme(digitv2.lightTheme.text-primary);
282
+ text-overflow: ellipsis;
283
+ }
284
+ }
285
+
286
+ &.dark {
287
+ background-color: theme(digitv2.lightTheme.primary-2);
288
+
289
+ .digit-logo-ulb-wrapper {
290
+ .digit-topbar-ulb {
291
+ color: theme(digitv2.lightTheme.paper-primary);
292
+ }
293
+ }
294
+
295
+ .digit-header-action-fields {
296
+ .individual-action-field {
297
+ color: theme(digitv2.lightTheme.paper-primary);
298
+
299
+ .digit-dropdown-employee-select-wrap,
300
+ .digit-dropdown-select-wrap{
301
+ background:none;
302
+ }
303
+ }
304
+ }
305
+ }
306
+
307
+ .digit-header-action-fields {
308
+ @apply items-center overflow-hidden;
309
+ display: flex !important;
310
+ height: theme(digitv2.spacers.spacer8);
311
+ max-width: 50%;
312
+
313
+
314
+ @media (min-width: 48rem) {
315
+ gap: theme(digitv2.spacers.spacer8);
316
+ }
317
+
318
+ @media (min-width: 30.063rem) and (max-width: 47.938rem) {
319
+ gap: theme(digitv2.spacers.spacer4);
320
+ }
321
+
322
+ .digit-header-img {
323
+ &.clickable {
324
+ cursor: pointer;
325
+ }
326
+ }
327
+ }
328
+
329
+ .digit-topbar-hamburger {
330
+ width: theme(digitv2.spacers.spacer6);
331
+ height: theme(digitv2.spacers.spacer6);
332
+
333
+ @media (min-width: 30.063rem) and (max-width: 47.938rem) {
334
+ width: theme(digitv2.spacers.spacer8);
335
+ height: theme(digitv2.spacers.spacer8);
336
+
337
+ svg {
338
+ width: theme(digitv2.spacers.spacer8);
339
+ height: theme(digitv2.spacers.spacer8);
340
+ }
341
+ }
342
+
343
+ &.clickable {
344
+ cursor: pointer;
345
+ }
346
+
347
+ }
348
+
349
+ .digit-header-img-ulb-wrapper-mobileview {
350
+ display: flex;
351
+ align-items: center;
352
+ height: theme(digitv2.spacers.spacer6);
353
+ max-width: calc(100%-(theme(digitv2.spacers.spacer6)));
354
+
355
+ .digit-header-img {
356
+ margin-right: theme(digitv2.spacers.spacer2);
357
+ margin-bottom: 0.156rem;
358
+
359
+ &.clickable {
360
+ cursor: pointer;
361
+ }
362
+ }
363
+
364
+ .topbar-divider {
365
+ height: theme(digitv2.spacers.spacer6);
366
+ width: 0.063rem;
367
+ border: 0.063rem solid theme(digitv2.lightTheme.text-primary);
368
+ margin-right: 0.625rem;
369
+
370
+ &.dark {
371
+ border: 0.063rem solid theme(digitv2.lightTheme.paper-primary);
372
+ }
373
+
374
+ }
375
+
376
+ .digit-topbar-ulb-mobileview {
377
+ @apply overflow-hidden whitespace-no-wrap;
378
+ @extend .typography.body-s;
379
+ text-overflow: ellipsis;
380
+ color: theme(digitv2.lightTheme.text-primary);
381
+
382
+ &.dark {
383
+ color: theme(digitv2.lightTheme.paper-primary);
384
+ }
385
+ }
386
+
387
+ }
388
+ }