@innovaccer/design-system 2.36.2 → 2.37.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.
- package/CHANGELOG.md +98 -0
- package/css/dist/MaterialSymbolsRounded.woff2 +0 -0
- package/css/dist/index.css +89 -33
- package/css/dist/index.css.map +1 -1
- package/css/material-design-icons/iconfont/MaterialSymbolsRounded.woff2 +0 -0
- package/css/src/components/actionCard.css +13 -10
- package/css/src/components/avatar.css +25 -2
- package/css/src/components/avatarGroup.css +8 -0
- package/css/src/components/avatarSelection.css +1 -1
- package/css/src/components/chip.css +12 -7
- package/css/src/components/message.css +1 -1
- package/css/src/components/select.css +8 -1
- package/css/src/components/selectionCard.css +17 -11
- package/css/src/utils/cursor.css +4 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +31 -29
- package/dist/core/components/atoms/avatar/Avatar.d.ts +3 -0
- package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +2 -0
- package/dist/core/components/atoms/avatarSelection/AvatarSelection.d.ts +2 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.d.ts +1 -0
- package/dist/core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.d.ts +2 -0
- package/dist/core/components/organisms/select/Select.d.ts +2 -0
- package/dist/index.esm.js +139 -52
- package/dist/index.js +145 -54
- 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
|
Binary file
|
|
@@ -1,29 +1,32 @@
|
|
|
1
1
|
.ActionCard {
|
|
2
|
-
cursor: pointer;
|
|
3
2
|
border-radius: var(--spacing-m);
|
|
4
3
|
width: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.ActionCard--default {
|
|
7
|
+
cursor: pointer;
|
|
5
8
|
border: var(--spacing-xs) solid var(--secondary-dark);
|
|
6
9
|
}
|
|
7
10
|
|
|
8
|
-
.ActionCard:hover {
|
|
9
|
-
box-shadow: var(--shadow-
|
|
11
|
+
.ActionCard--default:hover {
|
|
12
|
+
box-shadow: var(--shadow-l);
|
|
10
13
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
11
14
|
}
|
|
12
15
|
|
|
13
|
-
.ActionCard:focus,
|
|
14
|
-
.ActionCard:focus-visible {
|
|
16
|
+
.ActionCard--default:focus,
|
|
17
|
+
.ActionCard--default:focus-visible {
|
|
15
18
|
outline: none;
|
|
16
|
-
border: var(--spacing-xs) solid var(--secondary-
|
|
19
|
+
border: var(--spacing-xs) solid var(--secondary-dark);
|
|
17
20
|
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
18
21
|
}
|
|
19
22
|
|
|
20
|
-
.ActionCard:active {
|
|
21
|
-
box-shadow: var(--shadow-
|
|
23
|
+
.ActionCard--default:active {
|
|
24
|
+
box-shadow: var(--shadow-m);
|
|
22
25
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
23
26
|
}
|
|
24
27
|
|
|
25
28
|
.ActionCard--disabled {
|
|
26
|
-
|
|
29
|
+
cursor: not-allowed;
|
|
27
30
|
position: relative;
|
|
28
31
|
border: var(--spacing-xs) solid var(--secondary-lighter);
|
|
29
32
|
}
|
|
@@ -36,5 +39,5 @@
|
|
|
36
39
|
left: 0;
|
|
37
40
|
z-index: 2;
|
|
38
41
|
opacity: var(--opacity-10);
|
|
39
|
-
background: var(--secondary-
|
|
42
|
+
background: var(--secondary-lightest);
|
|
40
43
|
}
|
|
@@ -10,9 +10,16 @@
|
|
|
10
10
|
text-transform: uppercase;
|
|
11
11
|
border-radius: 50%;
|
|
12
12
|
cursor: default;
|
|
13
|
+
position: relative;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
|
-
.Avatar--
|
|
16
|
+
.Avatar--default:focus,
|
|
17
|
+
.Avatar--default:focus-visible {
|
|
18
|
+
outline: 3px solid var(--primary-shadow);
|
|
19
|
+
outline-offset: 3px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.Avatar-wrapper--square {
|
|
16
23
|
padding: var(--spacing-xs);
|
|
17
24
|
box-sizing: border-box;
|
|
18
25
|
}
|
|
@@ -33,10 +40,26 @@
|
|
|
33
40
|
width: var(--spacing-xl);
|
|
34
41
|
}
|
|
35
42
|
|
|
36
|
-
.Avatar--
|
|
43
|
+
.Avatar--noInitials {
|
|
37
44
|
cursor: default;
|
|
38
45
|
}
|
|
39
46
|
|
|
47
|
+
.Avatar--disabled {
|
|
48
|
+
cursor: not-allowed;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.Avatar--disabled::after {
|
|
52
|
+
opacity: var(--opacity-20);
|
|
53
|
+
top: 0;
|
|
54
|
+
right: 0;
|
|
55
|
+
bottom: 0;
|
|
56
|
+
left: 0;
|
|
57
|
+
position: absolute;
|
|
58
|
+
pointer-events: none;
|
|
59
|
+
content: '';
|
|
60
|
+
background-color: var(--white);
|
|
61
|
+
}
|
|
62
|
+
|
|
40
63
|
.Avatar--primary {
|
|
41
64
|
background: var(--primary);
|
|
42
65
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.AvatarGroup-item {
|
|
2
2
|
border-radius: 50%;
|
|
3
|
+
position: relative;
|
|
3
4
|
}
|
|
4
5
|
|
|
5
6
|
.AvatarGroup-item--regular {
|
|
@@ -29,4 +30,11 @@
|
|
|
29
30
|
|
|
30
31
|
.AvatarCount-wrapper {
|
|
31
32
|
border-radius: 50%;
|
|
33
|
+
position: relative;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.AvatarCount-wrapper:focus,
|
|
37
|
+
.AvatarCount-wrapper:focus-visible {
|
|
38
|
+
outline: 3px solid var(--primary-shadow);
|
|
39
|
+
outline-offset: 3px;
|
|
32
40
|
}
|
|
@@ -55,10 +55,11 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.Chip-action--disabled {
|
|
58
|
-
background: var(--secondary-
|
|
58
|
+
background: var(--secondary-light);
|
|
59
|
+
opacity: var(--opacity-12);
|
|
59
60
|
border: 0px;
|
|
60
61
|
outline: none;
|
|
61
|
-
cursor:
|
|
62
|
+
cursor: not-allowed;
|
|
62
63
|
}
|
|
63
64
|
|
|
64
65
|
.Chip--selection {
|
|
@@ -83,17 +84,19 @@
|
|
|
83
84
|
}
|
|
84
85
|
|
|
85
86
|
.Chip-selection--disabled {
|
|
86
|
-
background: var(--
|
|
87
|
-
border-color: var(--secondary
|
|
87
|
+
background: var(--white);
|
|
88
|
+
border-color: var(--secondary);
|
|
89
|
+
opacity: var(--opacity-12);
|
|
90
|
+
cursor: not-allowed;
|
|
88
91
|
}
|
|
89
92
|
|
|
90
93
|
.Chip-selection--selected {
|
|
91
|
-
background: var(--primary-lightest);
|
|
94
|
+
background: color-mod(var(--primary-lightest) a(var(--opacity-12)));
|
|
92
95
|
border-color: var(--primary-lighter);
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
.Chip-selection--selected:hover {
|
|
96
|
-
background: var(--primary-lighter);
|
|
99
|
+
background: color-mod(var(--primary-lighter) a(var(--opacity-12)));
|
|
97
100
|
border-color: var(--primary-light);
|
|
98
101
|
}
|
|
99
102
|
|
|
@@ -121,7 +124,7 @@
|
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
.Chip-selection--selectedDisabled {
|
|
124
|
-
background: var(--primary-lightest);
|
|
127
|
+
background: color-mod(var(--primary-lightest) a(var(--opacity-12)));
|
|
125
128
|
border-color: var(--primary-lighter);
|
|
126
129
|
}
|
|
127
130
|
|
|
@@ -147,6 +150,8 @@
|
|
|
147
150
|
|
|
148
151
|
.Chip-input--disabled {
|
|
149
152
|
background: var(--secondary-lighter);
|
|
153
|
+
opacity: var(--opacity-12);
|
|
154
|
+
cursor: not-allowed;
|
|
150
155
|
border: 0px;
|
|
151
156
|
}
|
|
152
157
|
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
padding-left: var(--spacing);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
.Select-trigger
|
|
75
|
+
.Select-trigger--text,
|
|
76
|
+
.Select-option--text {
|
|
76
77
|
text-align: left;
|
|
77
78
|
white-space: nowrap;
|
|
78
79
|
overflow: hidden;
|
|
@@ -129,3 +130,9 @@
|
|
|
129
130
|
.Select-crossButton:active {
|
|
130
131
|
background-color: var(--secondary-dark);
|
|
131
132
|
}
|
|
133
|
+
|
|
134
|
+
.Select-option {
|
|
135
|
+
display: flex;
|
|
136
|
+
align-items: flex-start;
|
|
137
|
+
width: 100%;
|
|
138
|
+
}
|
|
@@ -1,29 +1,36 @@
|
|
|
1
1
|
.Selection-card {
|
|
2
|
-
cursor: pointer;
|
|
3
2
|
border-radius: var(--spacing-m);
|
|
4
3
|
position: relative;
|
|
5
|
-
box-shadow: inset 0 0 0 var(--spacing-xs) var(--secondary-dark);
|
|
6
4
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
7
5
|
}
|
|
8
6
|
|
|
9
|
-
.Selection-card
|
|
7
|
+
.Selection-card--default {
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
box-shadow: inset 0 0 0 var(--spacing-xs) var(--secondary-dark);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.Selection-card--default:hover {
|
|
10
13
|
box-shadow: inset 0 0 0 var(--spacing-s) var(--inverse-lightest);
|
|
11
14
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
12
15
|
}
|
|
13
16
|
|
|
14
|
-
.Selection-card:focus,
|
|
15
|
-
.Selection-card:focus-visible {
|
|
17
|
+
.Selection-card--default:focus,
|
|
18
|
+
.Selection-card--default:focus-visible {
|
|
16
19
|
outline: none;
|
|
17
|
-
box-shadow: var(--shadow-spread) var(--secondary-shadow), inset 0 0 0 var(--spacing-xs) var(--secondary-
|
|
20
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow), inset 0 0 0 var(--spacing-xs) var(--secondary-dark);
|
|
18
21
|
}
|
|
19
22
|
|
|
20
|
-
.Selection-card:active {
|
|
23
|
+
.Selection-card--default:active {
|
|
21
24
|
box-shadow: inset 0 0 0 var(--spacing-s) var(--primary);
|
|
22
25
|
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
23
26
|
}
|
|
24
27
|
|
|
25
28
|
.Selection-card--disabled {
|
|
26
|
-
|
|
29
|
+
cursor: not-allowed;
|
|
30
|
+
outline: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.Selection-card--default-disabled {
|
|
27
34
|
box-shadow: inset 0 0 0 var(--spacing-xs) var(--secondary-lighter);
|
|
28
35
|
}
|
|
29
36
|
|
|
@@ -48,7 +55,6 @@
|
|
|
48
55
|
}
|
|
49
56
|
|
|
50
57
|
.Selection-card--selected-disabled {
|
|
51
|
-
pointer-events: none;
|
|
52
58
|
box-shadow: inset 0 0 0 var(--spacing-xs) var(--primary-lighter);
|
|
53
59
|
}
|
|
54
60
|
|
|
@@ -65,12 +71,12 @@
|
|
|
65
71
|
border-radius: var(--spacing-m);
|
|
66
72
|
}
|
|
67
73
|
|
|
68
|
-
.Selection-card:active .Selection-card-overlay {
|
|
74
|
+
.Selection-card--default:active .Selection-card-overlay {
|
|
69
75
|
background-color: var(--primary);
|
|
70
76
|
opacity: var(--opacity-3);
|
|
71
77
|
}
|
|
72
78
|
|
|
73
|
-
.Selection-card--disabled .Selection-card-overlay {
|
|
79
|
+
.Selection-card--default-disabled .Selection-card-overlay {
|
|
74
80
|
background-color: var(--secondary-lightest);
|
|
75
81
|
opacity: var(--opacity-10);
|
|
76
82
|
}
|
package/css/src/utils/cursor.css
CHANGED
|
@@ -287,8 +287,8 @@
|
|
|
287
287
|
"affectsGlobalScope": false
|
|
288
288
|
},
|
|
289
289
|
"../../core/components/atoms/avatar/Avatar.tsx": {
|
|
290
|
-
"version": "
|
|
291
|
-
"signature": "
|
|
290
|
+
"version": "c9fe98562bd556c35e857d81ea4d6714279ef2f8ffc042e7548004da5f657fad",
|
|
291
|
+
"signature": "451fef369b2ca5ac6597e868a21a3248b85e46d7b0fb176cb490d29c11163f82",
|
|
292
292
|
"affectsGlobalScope": false
|
|
293
293
|
},
|
|
294
294
|
"../../core/components/atoms/avatar/index.tsx": {
|
|
@@ -297,23 +297,23 @@
|
|
|
297
297
|
"affectsGlobalScope": false
|
|
298
298
|
},
|
|
299
299
|
"../../core/components/atoms/avatarGroup/AvatarCount.tsx": {
|
|
300
|
-
"version": "
|
|
300
|
+
"version": "c27d2a3753d138b2b14ab3a26291927191695be8b9603df78011ed99dd8e1065",
|
|
301
301
|
"signature": "28638b5b5c48afd430b5756033eefbe33a8098c1c0f56ee71b8c98c127808d1c",
|
|
302
302
|
"affectsGlobalScope": false
|
|
303
303
|
},
|
|
304
304
|
"../../core/components/atoms/avatarGroup/Avatars.tsx": {
|
|
305
|
-
"version": "
|
|
305
|
+
"version": "a9ef0fe95606221d24b660918549be2ef69fc762d08471d7442ea16b8d846ee8",
|
|
306
306
|
"signature": "695e51eeb303f29c0263fa5c6b977153066291197a52797f11988ab8e4e7e43b",
|
|
307
307
|
"affectsGlobalScope": false
|
|
308
308
|
},
|
|
309
309
|
"../../core/components/atoms/avatarGroup/AvatarPopperBody.tsx": {
|
|
310
|
-
"version": "
|
|
310
|
+
"version": "52fde9f76de1b5a52e076467b3f941fec65b658ee2b14f94066c3caa89b69eb1",
|
|
311
311
|
"signature": "940659bdfd49091e44834ef4d58906fc661666cc467c523aa96a2155126a54f8",
|
|
312
312
|
"affectsGlobalScope": false
|
|
313
313
|
},
|
|
314
314
|
"../../core/components/atoms/avatarGroup/AvatarGroup.tsx": {
|
|
315
|
-
"version": "
|
|
316
|
-
"signature": "
|
|
315
|
+
"version": "361e34364db7f4c693dc16555f207485d43cd62443d989707877d102ea9feb27",
|
|
316
|
+
"signature": "6330cda2728e56025c3334fe746c05b1cec082968c7d4b4953965395c577da8c",
|
|
317
317
|
"affectsGlobalScope": false
|
|
318
318
|
},
|
|
319
319
|
"../../core/components/atoms/avatarGroup/index.tsx": {
|
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
"affectsGlobalScope": false
|
|
473
473
|
},
|
|
474
474
|
"../../core/components/atoms/_chip/index.tsx": {
|
|
475
|
-
"version": "
|
|
475
|
+
"version": "9e333d72bba367d2bb7e060ce60042d81637463f287773b9e5dd50837ad36e64",
|
|
476
476
|
"signature": "e7bd1e8d71c283b6c32cc609c73a1f973f4bc9a3121a7df41d35ec831a50ed01",
|
|
477
477
|
"affectsGlobalScope": false
|
|
478
478
|
},
|
|
@@ -1512,7 +1512,7 @@
|
|
|
1512
1512
|
"affectsGlobalScope": false
|
|
1513
1513
|
},
|
|
1514
1514
|
"../../core/components/atoms/popperWrapper/PopperWrapper.tsx": {
|
|
1515
|
-
"version": "
|
|
1515
|
+
"version": "4cc76b2b17546544b58a6abd49aafa514db718994e4b117bcd15feaf68c2d278",
|
|
1516
1516
|
"signature": "c033c7d7406e65a875c6b795e28995bc2114b356b1a63e5fc4001cdd3f66de94",
|
|
1517
1517
|
"affectsGlobalScope": false
|
|
1518
1518
|
},
|
|
@@ -1892,7 +1892,7 @@
|
|
|
1892
1892
|
"affectsGlobalScope": false
|
|
1893
1893
|
},
|
|
1894
1894
|
"../../core/components/atoms/actionCard/ActionCard.tsx": {
|
|
1895
|
-
"version": "
|
|
1895
|
+
"version": "9b018aff8a363ed10761c6424fa40edb166c44c5ecd647134f5fce127820e27b",
|
|
1896
1896
|
"signature": "9a25f22c0c0c76eaaa779f1956315fb660a9642462f0fe6983c34de5b57afc8c",
|
|
1897
1897
|
"affectsGlobalScope": false
|
|
1898
1898
|
},
|
|
@@ -1917,7 +1917,7 @@
|
|
|
1917
1917
|
"affectsGlobalScope": false
|
|
1918
1918
|
},
|
|
1919
1919
|
"../../core/components/atoms/selectionCard/SelectionCard.tsx": {
|
|
1920
|
-
"version": "
|
|
1920
|
+
"version": "5b20b444a952d54c9cb0f8ed2a469802e2051a1118c296ffb8d56de259f47de0",
|
|
1921
1921
|
"signature": "2497ebca50621852b59d5c9a0e645c1f12fc3f5240148bf25082bcf8077f485c",
|
|
1922
1922
|
"affectsGlobalScope": false
|
|
1923
1923
|
},
|
|
@@ -2022,8 +2022,8 @@
|
|
|
2022
2022
|
"affectsGlobalScope": false
|
|
2023
2023
|
},
|
|
2024
2024
|
"../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.tsx": {
|
|
2025
|
-
"version": "
|
|
2026
|
-
"signature": "
|
|
2025
|
+
"version": "7898eb7c5c76aeab9e24121625ab01f51a5903271d983719ae45a42dc78ee153",
|
|
2026
|
+
"signature": "e78900c863f48a867d8b8b065f7537df112e696606c17cb68a9fdf27d8eef17f",
|
|
2027
2027
|
"affectsGlobalScope": false
|
|
2028
2028
|
},
|
|
2029
2029
|
"../../core/components/atoms/avatarSelection/AvatarSelectionContext.tsx": {
|
|
@@ -2032,7 +2032,7 @@
|
|
|
2032
2032
|
"affectsGlobalScope": false
|
|
2033
2033
|
},
|
|
2034
2034
|
"../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.tsx": {
|
|
2035
|
-
"version": "
|
|
2035
|
+
"version": "7ca351aef735d12df469163c61976222f4a059a75c886d21d3703ca6010fb6d8",
|
|
2036
2036
|
"signature": "7e8462156f28d2c256811c2b799a1fff4a7ed86e3b4ce3172edc207b95aa9e39",
|
|
2037
2037
|
"affectsGlobalScope": false
|
|
2038
2038
|
},
|
|
@@ -2042,7 +2042,7 @@
|
|
|
2042
2042
|
"affectsGlobalScope": false
|
|
2043
2043
|
},
|
|
2044
2044
|
"../../core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.tsx": {
|
|
2045
|
-
"version": "
|
|
2045
|
+
"version": "e9696a642ae6a052984f944bdb403a64933400f81d557ad20f58472bc5da7ac0",
|
|
2046
2046
|
"signature": "6c444534437668874ac59ea08a7854b06b6594247b7f46f21e41ac5f3a66d47f",
|
|
2047
2047
|
"affectsGlobalScope": false
|
|
2048
2048
|
},
|
|
@@ -2067,8 +2067,8 @@
|
|
|
2067
2067
|
"affectsGlobalScope": false
|
|
2068
2068
|
},
|
|
2069
2069
|
"../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.tsx": {
|
|
2070
|
-
"version": "
|
|
2071
|
-
"signature": "
|
|
2070
|
+
"version": "d94ec383fae9f1daaeaccb6c56f62e941bba672f203083adeca161d5fb491ce5",
|
|
2071
|
+
"signature": "e3fbc26f1e404969d91d392778939ecd080c0f2efa0c54759657725dc6ac96c0",
|
|
2072
2072
|
"affectsGlobalScope": false
|
|
2073
2073
|
},
|
|
2074
2074
|
"../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.tsx": {
|
|
@@ -2077,7 +2077,7 @@
|
|
|
2077
2077
|
"affectsGlobalScope": false
|
|
2078
2078
|
},
|
|
2079
2079
|
"../../core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.tsx": {
|
|
2080
|
-
"version": "
|
|
2080
|
+
"version": "20d28428f963254af7109b1539b9606ae85df08209095445a1b99977ec707dd3",
|
|
2081
2081
|
"signature": "09fa6315494df1357b840c3c6088908fb1094cb5c09c1515dd3ef8f26caf0595",
|
|
2082
2082
|
"affectsGlobalScope": false
|
|
2083
2083
|
},
|
|
@@ -2087,8 +2087,8 @@
|
|
|
2087
2087
|
"affectsGlobalScope": false
|
|
2088
2088
|
},
|
|
2089
2089
|
"../../core/components/atoms/avatarSelection/AvatarSelection.tsx": {
|
|
2090
|
-
"version": "
|
|
2091
|
-
"signature": "
|
|
2090
|
+
"version": "2cb44dfb4c29448cd74327b519a1fad86112e86f0f6831fa058aeac72385b1db",
|
|
2091
|
+
"signature": "8464724ae987e1f0ec23ba80522fc11da13fb370e82750b7efe589df4e2e602a",
|
|
2092
2092
|
"affectsGlobalScope": false
|
|
2093
2093
|
},
|
|
2094
2094
|
"../../core/components/atoms/avatarSelection/index.tsx": {
|
|
@@ -2162,17 +2162,17 @@
|
|
|
2162
2162
|
"affectsGlobalScope": false
|
|
2163
2163
|
},
|
|
2164
2164
|
"../../core/components/organisms/select/utils.tsx": {
|
|
2165
|
-
"version": "
|
|
2165
|
+
"version": "1a0f82ddbe18ce936a17092056aabdc553cf6485cc0d2008ec09a3a9640e9e59",
|
|
2166
2166
|
"signature": "9901a08865a2d9990f41e0bc237ee7ecf0a06fc9525c7d94098eab93b1f45ccb",
|
|
2167
2167
|
"affectsGlobalScope": false
|
|
2168
2168
|
},
|
|
2169
2169
|
"../../core/components/organisms/select/SelectOption.tsx": {
|
|
2170
|
-
"version": "
|
|
2170
|
+
"version": "427578fcf50bd2c9c1903f2a6c391b6a28473b216b76d709f696a977f5cda0f9",
|
|
2171
2171
|
"signature": "b7da301dbe1169580de986f62c87077f76890064d925c1e648221ee58b03fe07",
|
|
2172
2172
|
"affectsGlobalScope": false
|
|
2173
2173
|
},
|
|
2174
2174
|
"../../core/components/organisms/select/SelectTrigger.tsx": {
|
|
2175
|
-
"version": "
|
|
2175
|
+
"version": "cd12295dd349bd92da3479dc271a5088ede6d69993ac816c90e550e9fd97e7d1",
|
|
2176
2176
|
"signature": "342e41566380c2b501da61c4a9eb07c72385c14f64bb177d4d5744e1e6217919",
|
|
2177
2177
|
"affectsGlobalScope": false
|
|
2178
2178
|
},
|
|
@@ -2192,8 +2192,8 @@
|
|
|
2192
2192
|
"affectsGlobalScope": false
|
|
2193
2193
|
},
|
|
2194
2194
|
"../../core/components/organisms/select/Select.tsx": {
|
|
2195
|
-
"version": "
|
|
2196
|
-
"signature": "
|
|
2195
|
+
"version": "86321434fdf7358af19192cc969c9db8c05a2f1c73414cf389f6a5e8d0602ec6",
|
|
2196
|
+
"signature": "5caf11edf4c299e5720b5213241f520628741917c6d6ea291dff60a3b3aa4fb8",
|
|
2197
2197
|
"affectsGlobalScope": false
|
|
2198
2198
|
},
|
|
2199
2199
|
"../../core/components/organisms/select/index.tsx": {
|
|
@@ -2432,7 +2432,7 @@
|
|
|
2432
2432
|
"affectsGlobalScope": false
|
|
2433
2433
|
},
|
|
2434
2434
|
"../../core/components/css-utilities/designTokens/Data.tsx": {
|
|
2435
|
-
"version": "
|
|
2435
|
+
"version": "74426db5cef52197fe475467b83891d2adefa402ed08cb5d9485c5e1d1548674",
|
|
2436
2436
|
"signature": "2583c1f78c1b3d0dfe4ab20b9118007fd35cbc26426964b94c6f8a32844c4dc7",
|
|
2437
2437
|
"affectsGlobalScope": false
|
|
2438
2438
|
},
|
|
@@ -2582,7 +2582,7 @@
|
|
|
2582
2582
|
"affectsGlobalScope": false
|
|
2583
2583
|
},
|
|
2584
2584
|
"../../core/components/organisms/select/__test__/Select.test.tsx": {
|
|
2585
|
-
"version": "
|
|
2585
|
+
"version": "5107c0da61e325ca13a6f35d410e0deadc270f2632e1757d531165c444029081",
|
|
2586
2586
|
"signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881",
|
|
2587
2587
|
"affectsGlobalScope": false
|
|
2588
2588
|
},
|
|
@@ -5807,7 +5807,8 @@
|
|
|
5807
5807
|
"../../core/index.tsx",
|
|
5808
5808
|
"../../core/index.type.tsx",
|
|
5809
5809
|
"../../node_modules/@types/node/util.d.ts",
|
|
5810
|
-
"../../node_modules/@types/react/index.d.ts"
|
|
5810
|
+
"../../node_modules/@types/react/index.d.ts",
|
|
5811
|
+
"../../node_modules/classnames/index.d.ts"
|
|
5811
5812
|
],
|
|
5812
5813
|
"../../core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.tsx": [
|
|
5813
5814
|
"../../core/common.type.tsx",
|
|
@@ -7662,7 +7663,8 @@
|
|
|
7662
7663
|
"../../core/index.tsx",
|
|
7663
7664
|
"../../core/utils/types.tsx",
|
|
7664
7665
|
"../../node_modules/@types/node/util.d.ts",
|
|
7665
|
-
"../../node_modules/@types/react/index.d.ts"
|
|
7666
|
+
"../../node_modules/@types/react/index.d.ts",
|
|
7667
|
+
"../../node_modules/classnames/index.d.ts"
|
|
7666
7668
|
],
|
|
7667
7669
|
"../../core/components/organisms/select/SelectTrigger.tsx": [
|
|
7668
7670
|
"../../core/common.type.tsx",
|
|
@@ -9,9 +9,12 @@ export interface AvatarProps extends BaseProps {
|
|
|
9
9
|
lastName?: string;
|
|
10
10
|
withTooltip: boolean;
|
|
11
11
|
tooltipPosition: TooltipProps['position'];
|
|
12
|
+
tooltipSuffix?: string;
|
|
12
13
|
size: AvatarSize;
|
|
13
14
|
shape: AvatarShape;
|
|
15
|
+
disabled?: boolean;
|
|
14
16
|
role?: string;
|
|
17
|
+
tabIndex?: number;
|
|
15
18
|
}
|
|
16
19
|
export declare const Avatar: {
|
|
17
20
|
(props: AvatarProps): JSX.Element;
|
|
@@ -8,6 +8,8 @@ interface AvatarData extends Record<string, any> {
|
|
|
8
8
|
appearance?: AvatarProps['appearance'];
|
|
9
9
|
icon?: React.ReactNode;
|
|
10
10
|
image?: React.ReactNode;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
tooltipSuffix?: string;
|
|
11
13
|
}
|
|
12
14
|
interface AvatarPopoverProps {
|
|
13
15
|
popperRenderer?: (names: AvatarData[]) => JSX.Element;
|
|
@@ -9,6 +9,8 @@ export interface AvatarData extends Record<string, any> {
|
|
|
9
9
|
icon?: React.ReactNode;
|
|
10
10
|
image?: React.ReactNode;
|
|
11
11
|
selected?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
tooltipSuffix?: string;
|
|
12
14
|
}
|
|
13
15
|
export interface AvatarSelectionProps extends BaseProps {
|
|
14
16
|
list: AvatarData[];
|
|
@@ -4,6 +4,7 @@ export declare type ItemTagType = 'li' | 'div';
|
|
|
4
4
|
export interface SelectionOptionProps extends BaseProps {
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
value?: any;
|
|
7
|
+
disabled?: boolean;
|
|
7
8
|
tagName: ItemTagType;
|
|
8
9
|
onFocus?: (event: React.FocusEvent) => void;
|
|
9
10
|
onBlur?: (event: React.FocusEvent) => void;
|
|
@@ -10,6 +10,8 @@ interface SelectionAvatarProps {
|
|
|
10
10
|
icon?: React.ReactNode;
|
|
11
11
|
image?: React.ReactNode;
|
|
12
12
|
tooltipPosition?: TooltipProps['position'];
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
tooltipSuffix?: string;
|
|
13
15
|
}
|
|
14
16
|
export declare const SelectionAvatar: (props: SelectionAvatarProps) => JSX.Element;
|
|
15
17
|
export default SelectionAvatar;
|
|
@@ -19,6 +19,8 @@ export interface SelectProps extends BaseProps {
|
|
|
19
19
|
boundaryElement?: React.RefObject<HTMLElement> | Element;
|
|
20
20
|
appendToBody?: boolean;
|
|
21
21
|
onOutsideClick?: () => void;
|
|
22
|
+
onToggle?: (open: boolean) => void;
|
|
23
|
+
trigger?: React.ReactElement;
|
|
22
24
|
triggerOptions?: SelectTriggerProps;
|
|
23
25
|
}
|
|
24
26
|
export interface SelectMethods {
|