@innovaccer/design-system 3.3.0 → 3.5.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.
- package/CHANGELOG.md +100 -0
- package/css/dist/index.css +188 -218
- package/css/dist/index.css.map +1 -1
- package/css/src/components/ProgressBar.css +1 -1
- package/css/src/components/avatar.css +31 -0
- package/css/src/components/button.css +0 -10
- package/css/src/components/grid.css +107 -164
- package/css/src/components/progressRing.css +8 -3
- package/css/src/components/spinner.css +7 -2
- package/css/src/components/statusHints.css +1 -1
- package/css/src/core/utilities.css +17 -5
- package/dist/.lib/tsconfig.type.tsbuildinfo +18 -17
- package/dist/core/components/atoms/avatar/Avatar.d.ts +5 -0
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +2 -2
- package/dist/core/components/atoms/progressRing/ProgressRing.d.ts +1 -1
- package/dist/core/components/atoms/spinner/Spinner.d.ts +1 -1
- package/dist/index.esm.js +57 -54
- package/dist/index.js +60 -29
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
|
@@ -106,3 +106,34 @@
|
|
|
106
106
|
opacity: var(--opacity-20);
|
|
107
107
|
mix-blend-mode: multiply;
|
|
108
108
|
}
|
|
109
|
+
|
|
110
|
+
.Avatar-presence {
|
|
111
|
+
position: absolute;
|
|
112
|
+
border-radius: 50%;
|
|
113
|
+
width: var(--spacing);
|
|
114
|
+
height: var(--spacing);
|
|
115
|
+
right: 0;
|
|
116
|
+
bottom: 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.Avatar-presence--active {
|
|
120
|
+
background: var(--success);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.Avatar-presence--away {
|
|
124
|
+
background: var(--secondary-dark);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.Avatar-status {
|
|
128
|
+
top: calc(-1 * var(--spacing-s));
|
|
129
|
+
right: calc(-1 * var(--spacing-s));
|
|
130
|
+
width: var(--spacing-l);
|
|
131
|
+
height: var(--spacing-l);
|
|
132
|
+
border-radius: 50%;
|
|
133
|
+
display: flex;
|
|
134
|
+
align-items: center;
|
|
135
|
+
justify-content: center;
|
|
136
|
+
position: absolute;
|
|
137
|
+
cursor: pointer;
|
|
138
|
+
overflow: hidden;
|
|
139
|
+
}
|
|
@@ -227,16 +227,6 @@
|
|
|
227
227
|
z-index: 1;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
.Button--tiny .Spinner--small {
|
|
231
|
-
height: var(--font-size-s);
|
|
232
|
-
width: var(--font-size-s);
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.Button--large .Spinner--small {
|
|
236
|
-
height: var(--font-size-l);
|
|
237
|
-
width: var(--font-size-l);
|
|
238
|
-
}
|
|
239
|
-
|
|
240
230
|
.Button--selected {
|
|
241
231
|
background: var(--primary-lightest);
|
|
242
232
|
color: var(--primary-dark);
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/** Grid **/
|
|
2
|
+
|
|
3
|
+
.Grid-wrapper {
|
|
4
|
+
display: flex;
|
|
5
|
+
position: relative;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
1
10
|
.Grid {
|
|
2
11
|
display: flex;
|
|
3
12
|
flex-direction: column;
|
|
@@ -7,11 +16,20 @@
|
|
|
7
16
|
background: var(--white);
|
|
8
17
|
}
|
|
9
18
|
|
|
10
|
-
.Grid-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
19
|
+
.Grid--resource .Grid-row--body:hover,
|
|
20
|
+
.Grid--resource .Grid-row--body:hover .Grid-cellGroup {
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
background: var(--secondary-lightest);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.Grid--resource .Grid-row--body:active,
|
|
26
|
+
.Grid--resource .Grid-row--body:active .Grid-cellGroup {
|
|
27
|
+
background: var(--secondary-lighter);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.Grid--resource .Grid-row--body:focus {
|
|
31
|
+
box-shadow: var(--shadow-spread) color-mod(var(--secondary) a(var(--opacity-4)));
|
|
32
|
+
outline: none;
|
|
15
33
|
}
|
|
16
34
|
|
|
17
35
|
.Grid--pinned {
|
|
@@ -113,6 +131,42 @@
|
|
|
113
131
|
border-bottom: var(--border);
|
|
114
132
|
}
|
|
115
133
|
|
|
134
|
+
.Grid-row {
|
|
135
|
+
display: flex;
|
|
136
|
+
flex-grow: 1;
|
|
137
|
+
flex-shrink: 0;
|
|
138
|
+
box-sizing: border-box;
|
|
139
|
+
background: var(--white);
|
|
140
|
+
transition: var(--duration--fast-02) var(--standard-productive-curve);
|
|
141
|
+
transition-delay: var(--duration--fast-01);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.Grid-row--body {
|
|
145
|
+
border-color: var(--secondary-light);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.Grid-row--selected,
|
|
149
|
+
.Grid-row--selected .Grid-cellGroup {
|
|
150
|
+
background: color-mod(var(--primary-lightest) a(var(--opacity-12)));
|
|
151
|
+
transition: var(--duration--fast-02) var(--standard-productive-curve);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.Grid-row--selected:hover,
|
|
155
|
+
.Grid-row--selected .Grid-cellGroup:hover {
|
|
156
|
+
background: color-mod(var(--primary-lighter) a(var(--opacity-12))) !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.Grid-row--selected:active,
|
|
160
|
+
.Grid-row--selected .Grid-cellGroup:active {
|
|
161
|
+
background: var(--primary-lighter) !important;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.Grid-row--selected:focus,
|
|
165
|
+
.Grid-row--selected .Grid-cellGroup:focus {
|
|
166
|
+
outline: none;
|
|
167
|
+
box-shadow: var(--shadow-spread) color-mod(var(--primary) a(var(--opacity-4)));
|
|
168
|
+
}
|
|
169
|
+
|
|
116
170
|
.Grid-rowWrapper:last-child .Grid-row--body {
|
|
117
171
|
border-bottom: 0;
|
|
118
172
|
}
|
|
@@ -184,6 +238,15 @@
|
|
|
184
238
|
border-left: none;
|
|
185
239
|
}
|
|
186
240
|
|
|
241
|
+
/* .Grid .Grid-cellGroup--main .Grid-cell--head.Grid-cell:last-child {
|
|
242
|
+
border-right: var(--border);
|
|
243
|
+
} */
|
|
244
|
+
|
|
245
|
+
.Grid-row--disabled {
|
|
246
|
+
opacity: var(--opacity-10);
|
|
247
|
+
pointer-events: none;
|
|
248
|
+
}
|
|
249
|
+
|
|
187
250
|
.Grid-cell--head.Grid-cell--selected {
|
|
188
251
|
background: var(--primary-light);
|
|
189
252
|
}
|
|
@@ -198,15 +261,6 @@
|
|
|
198
261
|
overflow: visible !important;
|
|
199
262
|
}
|
|
200
263
|
|
|
201
|
-
.Grid-cell--separator {
|
|
202
|
-
border-left: var(--border);
|
|
203
|
-
border-color: var(--secondary-light);
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.Grid-cell--selected {
|
|
207
|
-
background: var(--primary-lightest);
|
|
208
|
-
}
|
|
209
|
-
|
|
210
264
|
.Grid-sortingIcons {
|
|
211
265
|
display: flex;
|
|
212
266
|
align-items: center;
|
|
@@ -268,6 +322,7 @@
|
|
|
268
322
|
.Grid-cellGroup {
|
|
269
323
|
display: flex;
|
|
270
324
|
box-sizing: border-box;
|
|
325
|
+
background: var(--white);
|
|
271
326
|
}
|
|
272
327
|
|
|
273
328
|
.Grid-cellGroup--pinned {
|
|
@@ -277,10 +332,32 @@
|
|
|
277
332
|
|
|
278
333
|
.Grid-cellGroup--pinned-left {
|
|
279
334
|
left: 0;
|
|
335
|
+
border-style: inset;
|
|
336
|
+
border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
337
|
+
border-right-width: 4px;
|
|
338
|
+
border-image: linear-gradient(
|
|
339
|
+
to right,
|
|
340
|
+
var(--secondary-light),
|
|
341
|
+
var(--secondary-light) 25%,
|
|
342
|
+
color-mod(var(--secondary) a(0.1)) 25%,
|
|
343
|
+
color-mod(var(--secondary) a(0.1))
|
|
344
|
+
)
|
|
345
|
+
1 100%;
|
|
280
346
|
}
|
|
281
347
|
|
|
282
348
|
.Grid-cellGroup--pinned-right {
|
|
283
349
|
right: 0;
|
|
350
|
+
border-style: inset;
|
|
351
|
+
border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
352
|
+
border-left-width: 4px;
|
|
353
|
+
border-image: linear-gradient(
|
|
354
|
+
to left,
|
|
355
|
+
var(--secondary-light),
|
|
356
|
+
var(--secondary-light) 25%,
|
|
357
|
+
color-mod(var(--secondary) a(0.1)) 25%,
|
|
358
|
+
color-mod(var(--secondary) a(0.1))
|
|
359
|
+
)
|
|
360
|
+
1 100%;
|
|
284
361
|
}
|
|
285
362
|
|
|
286
363
|
.Grid .Checkbox-wrapper {
|
|
@@ -297,11 +374,13 @@
|
|
|
297
374
|
}
|
|
298
375
|
|
|
299
376
|
.GridCell--align-left {
|
|
377
|
+
/* flex-direction: row; */
|
|
300
378
|
justify-content: flex-start;
|
|
301
379
|
text-align: left;
|
|
302
380
|
}
|
|
303
381
|
|
|
304
382
|
.GridCell--align-right {
|
|
383
|
+
/* flex-direction: row-reverse; */
|
|
305
384
|
justify-content: flex-end;
|
|
306
385
|
text-align: right;
|
|
307
386
|
}
|
|
@@ -372,6 +451,20 @@
|
|
|
372
451
|
margin-left: 0;
|
|
373
452
|
}
|
|
374
453
|
|
|
454
|
+
/* .GridCell-image {
|
|
455
|
+
position: relative;
|
|
456
|
+
display: flex;
|
|
457
|
+
align-items: center;
|
|
458
|
+
justify-content: center;
|
|
459
|
+
margin-right: var(--spacing);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.Image {
|
|
463
|
+
z-index: 0;
|
|
464
|
+
height: 100%;
|
|
465
|
+
width: 100%;
|
|
466
|
+
} */
|
|
467
|
+
|
|
375
468
|
/** Header **/
|
|
376
469
|
|
|
377
470
|
/** Table-header **/
|
|
@@ -438,153 +531,3 @@
|
|
|
438
531
|
margin-left: auto;
|
|
439
532
|
margin-bottom: var(--spacing-2);
|
|
440
533
|
}
|
|
441
|
-
|
|
442
|
-
/* Grid row */
|
|
443
|
-
|
|
444
|
-
.Grid-row--disabled {
|
|
445
|
-
opacity: var(--opacity-10);
|
|
446
|
-
pointer-events: none;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.Grid-row {
|
|
450
|
-
display: flex;
|
|
451
|
-
flex-grow: 1;
|
|
452
|
-
flex-shrink: 0;
|
|
453
|
-
box-sizing: border-box;
|
|
454
|
-
background: var(--white);
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.Grid-row--body {
|
|
458
|
-
border-color: var(--secondary-light);
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.Grid--resource .Grid-row--body:hover {
|
|
462
|
-
cursor: pointer;
|
|
463
|
-
background: var(--secondary-lightest);
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.Grid--resource .Grid-row--body:active {
|
|
467
|
-
background: var(--secondary-lighter);
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.Grid--resource .Grid-row--body:focus {
|
|
471
|
-
box-shadow: var(--shadow-spread) color-mod(var(--secondary) a(var(--opacity-4)));
|
|
472
|
-
outline: none;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
/* Selected States */
|
|
476
|
-
|
|
477
|
-
.Grid-row--selected {
|
|
478
|
-
background: color-mod(var(--primary-lightest) a(var(--opacity-12)));
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
.Grid-row--selected:hover {
|
|
482
|
-
background: color-mod(var(--primary-lighter) a(var(--opacity-12))) !important;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.Grid-row--selected:active {
|
|
486
|
-
background: var(--primary-lighter) !important;
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.Grid-row--selected:focus {
|
|
490
|
-
outline: none;
|
|
491
|
-
box-shadow: var(--shadow-spread) color-mod(var(--primary) a(var(--opacity-4)));
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
/* Pinned Columns Default State */
|
|
495
|
-
|
|
496
|
-
.Grid--resource .Grid-row--body:hover .Grid-cellWrapper--pinned {
|
|
497
|
-
cursor: pointer;
|
|
498
|
-
background: var(--secondary-lightest);
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.Grid--resource .Grid-row--body:active .Grid-cellWrapper--pinned {
|
|
502
|
-
background: var(--secondary-lighter);
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.Grid--resource .Grid-row--body:focus .Grid-cellWrapper--pinned {
|
|
506
|
-
box-shadow: var(--shadow-spread) color-mod(var(--secondary) a(var(--opacity-4)));
|
|
507
|
-
outline: none;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
/* Pinned Columns Selected State */
|
|
511
|
-
|
|
512
|
-
.Grid-row--selected .Grid-cellWrapper--pinned {
|
|
513
|
-
background: color-mod(var(--primary-lightest) a(var(--opacity-12)));
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.Grid-row--selected:hover .Grid-cellWrapper--pinned {
|
|
517
|
-
background: color-mod(var(--primary-lighter) a(var(--opacity-12))) !important;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.Grid-row--selected:active .Grid-cellWrapper--pinned {
|
|
521
|
-
background: var(--primary-lighter) !important;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.Grid-row--selected:focus .Grid-cellWrapper--pinned {
|
|
525
|
-
outline: none;
|
|
526
|
-
box-shadow: var(--shadow-spread) color-mod(var(--primary) a(var(--opacity-4)));
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
/* Grid header */
|
|
530
|
-
.Grid-row--head .Grid-cellGroup--pinned {
|
|
531
|
-
background: var(--white);
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
.Grid-row--head .Grid-cellGroup--pinned-left {
|
|
535
|
-
border-style: inset;
|
|
536
|
-
border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
537
|
-
border-right-width: 4px;
|
|
538
|
-
border-image: linear-gradient(
|
|
539
|
-
to right,
|
|
540
|
-
var(--secondary-light),
|
|
541
|
-
var(--secondary-light) 25%,
|
|
542
|
-
color-mod(var(--secondary) a(0.1)) 25%,
|
|
543
|
-
color-mod(var(--secondary) a(0.1))
|
|
544
|
-
)
|
|
545
|
-
1 100%;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.Grid-row--head .Grid-cellGroup--pinned-right {
|
|
549
|
-
border-style: inset;
|
|
550
|
-
border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
551
|
-
border-left-width: 4px;
|
|
552
|
-
border-image: linear-gradient(
|
|
553
|
-
to left,
|
|
554
|
-
var(--secondary-light),
|
|
555
|
-
var(--secondary-light) 25%,
|
|
556
|
-
color-mod(var(--secondary) a(0.1)) 25%,
|
|
557
|
-
color-mod(var(--secondary) a(0.1))
|
|
558
|
-
)
|
|
559
|
-
1 100%;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
/* Pinned Column Border */
|
|
563
|
-
|
|
564
|
-
.Grid-cellWrapper--pinned-left {
|
|
565
|
-
border-style: inset;
|
|
566
|
-
border-right: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
567
|
-
border-right-width: 4px;
|
|
568
|
-
border-image: linear-gradient(
|
|
569
|
-
to right,
|
|
570
|
-
var(--secondary-light),
|
|
571
|
-
var(--secondary-light) 25%,
|
|
572
|
-
color-mod(var(--secondary) a(0.1)) 25%,
|
|
573
|
-
color-mod(var(--secondary) a(0.1))
|
|
574
|
-
)
|
|
575
|
-
1 100%;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.Grid-cellWrapper--pinned-right {
|
|
579
|
-
border-style: inset;
|
|
580
|
-
border-left: var(--spacing-xs) solid rgba(213, 213, 213, var(--opacity-3));
|
|
581
|
-
border-left-width: 4px;
|
|
582
|
-
border-image: linear-gradient(
|
|
583
|
-
to left,
|
|
584
|
-
var(--secondary-light),
|
|
585
|
-
var(--secondary-light) 25%,
|
|
586
|
-
color-mod(var(--secondary) a(0.1)) 25%,
|
|
587
|
-
color-mod(var(--secondary) a(0.1))
|
|
588
|
-
)
|
|
589
|
-
1 100%;
|
|
590
|
-
}
|
|
@@ -2,14 +2,19 @@
|
|
|
2
2
|
transform: rotate(-90deg);
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
.Ring--small {
|
|
6
|
+
height: var(--spacing-2);
|
|
7
|
+
width: var(--spacing-2);
|
|
8
|
+
}
|
|
9
|
+
|
|
5
10
|
.Ring--regular {
|
|
6
11
|
height: var(--spacing-3);
|
|
7
12
|
width: var(--spacing-3);
|
|
8
13
|
}
|
|
9
14
|
|
|
10
|
-
.Ring--
|
|
11
|
-
height: var(--spacing-
|
|
12
|
-
width: var(--spacing-
|
|
15
|
+
.Ring--large {
|
|
16
|
+
height: var(--spacing-4);
|
|
17
|
+
width: var(--spacing-4);
|
|
13
18
|
}
|
|
14
19
|
|
|
15
20
|
.Ring Circle {
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
animation: rotate 2s linear infinite;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
.Spinner--xsmall {
|
|
30
|
+
height: var(--spacing-l);
|
|
31
|
+
width: var(--spacing-l);
|
|
32
|
+
}
|
|
33
|
+
|
|
29
34
|
.Spinner--small {
|
|
30
35
|
height: var(--spacing-2);
|
|
31
36
|
width: var(--spacing-2);
|
|
@@ -53,9 +58,9 @@
|
|
|
53
58
|
}
|
|
54
59
|
|
|
55
60
|
.Circle--secondary {
|
|
56
|
-
stroke: var(--
|
|
61
|
+
stroke: var(--secondary-dark);
|
|
57
62
|
}
|
|
58
63
|
|
|
59
64
|
.Circle--white {
|
|
60
|
-
stroke: var(--
|
|
65
|
+
stroke: var(--white);
|
|
61
66
|
}
|
|
@@ -20,12 +20,24 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
::-webkit-scrollbar {
|
|
23
|
-
width:
|
|
23
|
+
width: 16px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
::-webkit-scrollbar-thumb {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
border
|
|
30
|
-
background-
|
|
27
|
+
background: #c5c5c5;
|
|
28
|
+
border-radius: 8px;
|
|
29
|
+
border: 2px solid transparent;
|
|
30
|
+
background-clip: content-box;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
::-webkit-scrollbar-thumb:hover {
|
|
34
|
+
background: #a6a6a6;
|
|
35
|
+
border: 2px solid transparent;
|
|
36
|
+
background-clip: content-box;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
::-webkit-scrollbar-thumb:active {
|
|
40
|
+
background: #707070;
|
|
41
|
+
border: 2px solid transparent;
|
|
42
|
+
background-clip: content-box;
|
|
31
43
|
}
|
|
@@ -287,8 +287,8 @@
|
|
|
287
287
|
"affectsGlobalScope": false
|
|
288
288
|
},
|
|
289
289
|
"../../core/components/atoms/avatar/Avatar.tsx": {
|
|
290
|
-
"version": "
|
|
291
|
-
"signature": "
|
|
290
|
+
"version": "c2e2f667141952b8bedaddbcd2a39039daa370584bca246883b97da75325acba",
|
|
291
|
+
"signature": "2cdcd50fa342e60ecfda719f1e22e84c0cb0add146f52ce08b44b5a122f18aff",
|
|
292
292
|
"affectsGlobalScope": false
|
|
293
293
|
},
|
|
294
294
|
"../../core/components/atoms/avatar/index.tsx": {
|
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
"affectsGlobalScope": false
|
|
373
373
|
},
|
|
374
374
|
"../../core/components/atoms/button/Button.tsx": {
|
|
375
|
-
"version": "
|
|
375
|
+
"version": "f2bd125a5dec0ad6d398ab1ff84e60cf7ebc47ee4f585f30fc9d92709a27ad20",
|
|
376
376
|
"signature": "73688651a3897a5a1f335acbca13a426de1a343f9a17191058c97dd9e13e18e2",
|
|
377
377
|
"affectsGlobalScope": false
|
|
378
378
|
},
|
|
@@ -687,7 +687,7 @@
|
|
|
687
687
|
"affectsGlobalScope": false
|
|
688
688
|
},
|
|
689
689
|
"../../core/components/atoms/input/Input.tsx": {
|
|
690
|
-
"version": "
|
|
690
|
+
"version": "c85ff24b31456e9bf9b29c4c2b4ca1df799f0975086ecf8173b5c6bd120b6585",
|
|
691
691
|
"signature": "af9fe5423f81ba3449f6a5f89de013cb32feeec65dd4780d60695f0d01950a2c",
|
|
692
692
|
"affectsGlobalScope": false
|
|
693
693
|
},
|
|
@@ -887,8 +887,8 @@
|
|
|
887
887
|
"affectsGlobalScope": false
|
|
888
888
|
},
|
|
889
889
|
"../../core/components/atoms/spinner/Spinner.tsx": {
|
|
890
|
-
"version": "
|
|
891
|
-
"signature": "
|
|
890
|
+
"version": "f952776780a02dbb7009dcc17b902177d39840bcbcb824e0d16ce7e515eef2a5",
|
|
891
|
+
"signature": "4df3ac952cfef241c3199c4b822f3503db42c4a3bbeadf11c8392f7cf1f623be",
|
|
892
892
|
"affectsGlobalScope": false
|
|
893
893
|
},
|
|
894
894
|
"../../core/components/atoms/spinner/index.tsx": {
|
|
@@ -1513,7 +1513,7 @@
|
|
|
1513
1513
|
},
|
|
1514
1514
|
"../../core/components/atoms/popperWrapper/PopperWrapper.tsx": {
|
|
1515
1515
|
"version": "e6529760280dbd793e0aaa62d51c710b981e6a8bf7108904cd7766a93c8051e6",
|
|
1516
|
-
"signature": "
|
|
1516
|
+
"signature": "4ac6733be26ab640d22b67b86d49554052ad69ee8c296f3272115e69db0b762f",
|
|
1517
1517
|
"affectsGlobalScope": false
|
|
1518
1518
|
},
|
|
1519
1519
|
"../../core/components/atoms/popperWrapper/index.tsx": {
|
|
@@ -1532,8 +1532,8 @@
|
|
|
1532
1532
|
"affectsGlobalScope": false
|
|
1533
1533
|
},
|
|
1534
1534
|
"../../core/components/atoms/progressRing/ProgressRing.tsx": {
|
|
1535
|
-
"version": "
|
|
1536
|
-
"signature": "
|
|
1535
|
+
"version": "9160f2cf50b11ec66771ce04c73788c1331b7e40c58094b68bd39121c48fc728",
|
|
1536
|
+
"signature": "92c9bdd546726ef31bd0f3cf510cdb5a57affcb3084477cf568c3137191a279a",
|
|
1537
1537
|
"affectsGlobalScope": false
|
|
1538
1538
|
},
|
|
1539
1539
|
"../../core/components/atoms/progressRing/index.tsx": {
|
|
@@ -1637,7 +1637,7 @@
|
|
|
1637
1637
|
"affectsGlobalScope": false
|
|
1638
1638
|
},
|
|
1639
1639
|
"../../core/components/molecules/dropzone/Dropzone.tsx": {
|
|
1640
|
-
"version": "
|
|
1640
|
+
"version": "15cd02c5c78484dcca6b02373bfa8caac1ff6183dd26701915eb921379229d01",
|
|
1641
1641
|
"signature": "e52e0a178a128b965f2c3be7527fc8ed465fd388c21c5d35316dd9b0ef4dcc84",
|
|
1642
1642
|
"affectsGlobalScope": false
|
|
1643
1643
|
},
|
|
@@ -1722,7 +1722,7 @@
|
|
|
1722
1722
|
"affectsGlobalScope": false
|
|
1723
1723
|
},
|
|
1724
1724
|
"../../core/components/organisms/grid/GridRow.tsx": {
|
|
1725
|
-
"version": "
|
|
1725
|
+
"version": "50371d8993c998080f957d34f5cfe2131f363209b392b435b4ee5564b3b337ea",
|
|
1726
1726
|
"signature": "e896c56db3e619dd4457355c752791be2e3f267ac73a43142d2481b1cea0a79d",
|
|
1727
1727
|
"affectsGlobalScope": false
|
|
1728
1728
|
},
|
|
@@ -1752,7 +1752,7 @@
|
|
|
1752
1752
|
"affectsGlobalScope": false
|
|
1753
1753
|
},
|
|
1754
1754
|
"../../core/components/organisms/table/Header.tsx": {
|
|
1755
|
-
"version": "
|
|
1755
|
+
"version": "7c5c478deb1f3b629b2013329b73d2c117ff94b8230d886e6e79b742b6e36398",
|
|
1756
1756
|
"signature": "a15955f6aa0ca3d2d2cd6b8619b5a9bea81500fad8d18515c3914f8605e56688",
|
|
1757
1757
|
"affectsGlobalScope": false
|
|
1758
1758
|
},
|
|
@@ -1762,7 +1762,7 @@
|
|
|
1762
1762
|
"affectsGlobalScope": false
|
|
1763
1763
|
},
|
|
1764
1764
|
"../../core/components/organisms/table/Table.tsx": {
|
|
1765
|
-
"version": "
|
|
1765
|
+
"version": "d65630788a9950e41e73f6ed77325f0f909830ddd8f91efbfd0e17f9828ca40a",
|
|
1766
1766
|
"signature": "d1b01f382f3550d66f528697b3255a8322e143078ff37888c1ad2a1db87f4dc2",
|
|
1767
1767
|
"affectsGlobalScope": false
|
|
1768
1768
|
},
|
|
@@ -3657,7 +3657,7 @@
|
|
|
3657
3657
|
"affectsGlobalScope": false
|
|
3658
3658
|
},
|
|
3659
3659
|
"../../figma/Avatar.figma.tsx": {
|
|
3660
|
-
"version": "
|
|
3660
|
+
"version": "75077090a39eb724369de7cb0677614d446c5b2fbcab04d0420480ed541b1706",
|
|
3661
3661
|
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
|
|
3662
3662
|
"affectsGlobalScope": false
|
|
3663
3663
|
},
|
|
@@ -3817,7 +3817,7 @@
|
|
|
3817
3817
|
"affectsGlobalScope": false
|
|
3818
3818
|
},
|
|
3819
3819
|
"../../figma/ProgressRing.figma.tsx": {
|
|
3820
|
-
"version": "
|
|
3820
|
+
"version": "767c8342e5482cd8778beef274d07a3aa853d6177f5ae6d9105c1f7ef60107ea",
|
|
3821
3821
|
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
|
|
3822
3822
|
"affectsGlobalScope": false
|
|
3823
3823
|
},
|
|
@@ -3857,7 +3857,7 @@
|
|
|
3857
3857
|
"affectsGlobalScope": false
|
|
3858
3858
|
},
|
|
3859
3859
|
"../../figma/Spinner.figma.tsx": {
|
|
3860
|
-
"version": "
|
|
3860
|
+
"version": "dd4a76edb0c0e42265134bdd57e1b89218f86764e522c02ce375f90f1b88a9ee",
|
|
3861
3861
|
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
|
|
3862
3862
|
"affectsGlobalScope": false
|
|
3863
3863
|
},
|
|
@@ -3877,7 +3877,7 @@
|
|
|
3877
3877
|
"affectsGlobalScope": false
|
|
3878
3878
|
},
|
|
3879
3879
|
"../../figma/Toast.figma.tsx": {
|
|
3880
|
-
"version": "
|
|
3880
|
+
"version": "81926303201161e747d7452877f4ef1e11f598ca7359370fc610e9bc44a5a58c",
|
|
3881
3881
|
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
|
|
3882
3882
|
"affectsGlobalScope": false
|
|
3883
3883
|
},
|
|
@@ -8242,6 +8242,7 @@
|
|
|
8242
8242
|
"../../node_modules/@types/react/index.d.ts"
|
|
8243
8243
|
],
|
|
8244
8244
|
"../../figma/Toast.figma.tsx": [
|
|
8245
|
+
"../../core/components/atoms/toast/index.tsx",
|
|
8245
8246
|
"../../core/index.tsx",
|
|
8246
8247
|
"../../node_modules/@figma/code-connect/dist/index.d.ts",
|
|
8247
8248
|
"../../node_modules/@types/node/util.d.ts",
|
|
@@ -2,6 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import { BaseProps } from "../../../utils/types";
|
|
3
3
|
import { TooltipProps } from "../../../index.type";
|
|
4
4
|
import { AccentAppearance, AvatarSize, AvatarShape } from "../../../common.type";
|
|
5
|
+
declare type TPresence = 'active' | 'away';
|
|
5
6
|
export interface AvatarProps extends BaseProps {
|
|
6
7
|
appearance?: AccentAppearance;
|
|
7
8
|
children?: string | React.ReactNode;
|
|
@@ -15,6 +16,9 @@ export interface AvatarProps extends BaseProps {
|
|
|
15
16
|
disabled?: boolean;
|
|
16
17
|
role?: string;
|
|
17
18
|
tabIndex?: number;
|
|
19
|
+
presence?: TPresence;
|
|
20
|
+
status?: React.ReactNode;
|
|
21
|
+
strokeColor?: string;
|
|
18
22
|
}
|
|
19
23
|
export declare const Avatar: {
|
|
20
24
|
(props: AvatarProps): JSX.Element;
|
|
@@ -26,6 +30,7 @@ export declare const Avatar: {
|
|
|
26
30
|
withTooltip: boolean;
|
|
27
31
|
size: string;
|
|
28
32
|
shape: string;
|
|
33
|
+
strokeColor: string;
|
|
29
34
|
};
|
|
30
35
|
};
|
|
31
36
|
export default Avatar;
|
|
@@ -736,7 +736,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
|
|
|
736
736
|
gridColumnGap?: string | number | (string & {}) | undefined;
|
|
737
737
|
gridGap?: string | number | (string & {}) | undefined;
|
|
738
738
|
gridRowGap?: string | number | (string & {}) | undefined;
|
|
739
|
-
imeMode?: "disabled" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "
|
|
739
|
+
imeMode?: "disabled" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "active" | "normal" | "inactive" | undefined;
|
|
740
740
|
offsetBlock?: string | number | (string & {}) | undefined;
|
|
741
741
|
offsetBlockEnd?: string | number | (string & {}) | undefined;
|
|
742
742
|
offsetBlockStart?: string | number | (string & {}) | undefined;
|
|
@@ -795,7 +795,7 @@ export declare class PopperWrapper extends React.Component<PopperWrapperProps, P
|
|
|
795
795
|
MozTextDecorationLine?: "blink" | "none" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "grammar-error" | "line-through" | "overline" | "spelling-error" | "underline" | undefined;
|
|
796
796
|
MozTextDecorationStyle?: "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "dashed" | "dotted" | "double" | "solid" | "wavy" | undefined;
|
|
797
797
|
MozUserInput?: "disabled" | "none" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "enabled" | undefined;
|
|
798
|
-
msImeMode?: "disabled" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "
|
|
798
|
+
msImeMode?: "disabled" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "auto" | "active" | "normal" | "inactive" | undefined;
|
|
799
799
|
msScrollbarTrackColor?: (string & {}) | "white" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "transparent" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "turquoise" | "violet" | "wheat" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | undefined;
|
|
800
800
|
OAnimation?: "none" | (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | (number & {}) | "both" | "normal" | "alternate" | "alternate-reverse" | "reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | undefined;
|
|
801
801
|
OAnimationDelay?: (string & {}) | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseProps } from "../../../utils/types";
|
|
2
|
-
export declare type ProgressRingSize = 'small' | 'regular';
|
|
2
|
+
export declare type ProgressRingSize = 'small' | 'regular' | 'large';
|
|
3
3
|
export interface ProgressRingProps extends BaseProps {
|
|
4
4
|
size: ProgressRingSize;
|
|
5
5
|
value: number;
|