@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.
@@ -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-m);
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-light);
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-l);
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
- pointer-events: none;
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-light);
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--wrapper {
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--disabled {
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
  }
@@ -26,7 +26,7 @@
26
26
  outline-offset: var(--spacing-xs);
27
27
  }
28
28
 
29
- .SelectionAvatarGroup-wrapper:hover .SelectionAvatarGroup-item {
29
+ .SelectionAvatarGroup-wrapper:hover .SelectionAvatarGroup-item--active {
30
30
  transform: translateY(-8px);
31
31
  }
32
32
 
@@ -55,10 +55,11 @@
55
55
  }
56
56
 
57
57
  .Chip-action--disabled {
58
- background: var(--secondary-lighter);
58
+ background: var(--secondary-light);
59
+ opacity: var(--opacity-12);
59
60
  border: 0px;
60
61
  outline: none;
61
- cursor: default;
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(--secondary-lightest);
87
- border-color: var(--secondary-lighter);
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
 
@@ -26,7 +26,7 @@
26
26
 
27
27
  .Message--warning {
28
28
  border-color: var(--accent1);
29
- background-color: color-mod(var(--warning-lightest) a(var(--opacity-10)));
29
+ background-color: color-mod(var(--accent1-lightest) a(var(--opacity-10)));
30
30
  }
31
31
 
32
32
  .Message-icon {
@@ -72,7 +72,8 @@
72
72
  padding-left: var(--spacing);
73
73
  }
74
74
 
75
- .Select-trigger-text {
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:hover {
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-light);
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
- pointer-events: none;
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
  }
@@ -1,3 +1,7 @@
1
1
  .cursor-pointer {
2
2
  cursor: pointer;
3
3
  }
4
+
5
+ .cursor-default {
6
+ cursor: default;
7
+ }
@@ -287,8 +287,8 @@
287
287
  "affectsGlobalScope": false
288
288
  },
289
289
  "../../core/components/atoms/avatar/Avatar.tsx": {
290
- "version": "0a3fbf41f7832698e541364eb36e6deb5c7520b70b414a345043fc1d10013d0d",
291
- "signature": "72d77c2f585068d5789e58184d196850ffcc447c738c3fb701beb9a117595a04",
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": "da401f3f5ca599afa1766898c4ee7d47eef9f89461338d3d403a9d1831e839bd",
300
+ "version": "c27d2a3753d138b2b14ab3a26291927191695be8b9603df78011ed99dd8e1065",
301
301
  "signature": "28638b5b5c48afd430b5756033eefbe33a8098c1c0f56ee71b8c98c127808d1c",
302
302
  "affectsGlobalScope": false
303
303
  },
304
304
  "../../core/components/atoms/avatarGroup/Avatars.tsx": {
305
- "version": "2ebb430d6b98659ad239c589d291a3c76ad4c119da043444938630c29db708c3",
305
+ "version": "a9ef0fe95606221d24b660918549be2ef69fc762d08471d7442ea16b8d846ee8",
306
306
  "signature": "695e51eeb303f29c0263fa5c6b977153066291197a52797f11988ab8e4e7e43b",
307
307
  "affectsGlobalScope": false
308
308
  },
309
309
  "../../core/components/atoms/avatarGroup/AvatarPopperBody.tsx": {
310
- "version": "251491faf78c210aefe885e44f04f3006356976eadfa6609855286693393665b",
310
+ "version": "52fde9f76de1b5a52e076467b3f941fec65b658ee2b14f94066c3caa89b69eb1",
311
311
  "signature": "940659bdfd49091e44834ef4d58906fc661666cc467c523aa96a2155126a54f8",
312
312
  "affectsGlobalScope": false
313
313
  },
314
314
  "../../core/components/atoms/avatarGroup/AvatarGroup.tsx": {
315
- "version": "cbacea8958a3fa5cbbe3e6f5ee2f2d1729beb33c7ef37ff78ce41433a22e11a6",
316
- "signature": "ce3f3fd390bd9db8bae71aa4bd609a13cc1c13ff45b2a72f8de33ff7677e4cd6",
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": "88ba1baab5ab5521c4ea104c4cd3532171bb5ce424b8a01e70f501e7d6c075d9",
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": "eaec4d0fa389911d58336b4caebb09aab0dcdd301fd1a54c5cc7a800b48a5069",
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": "c6faa704d990236e814822af97051664ad91e5aed9c59ac8dec0627042aa30b9",
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": "ad0500d116d77d6db303fda101f3f1a40fa9d4e8336bc7723fdecb7343e73a15",
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": "fb8a4ffbff51d654c7a50ad099e31cf1e633b49f712662eee2573482c911bfd4",
2026
- "signature": "e0f84806f3e16ee9c43b5b9b58740fa1aa231fd308b4df5d205d5b5b35f8ba66",
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": "64e9eec85395988ddc892aff699474c5d06682372656104406ff0e576ec39434",
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": "5c90c88507766643fb995aee711cd342375a2919c3b9e80a1c7d2d4ee573e646",
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": "4ee2573ac4d8838660981410b36ef3e72e59b35e7b40da1430b74ed7ccf03205",
2071
- "signature": "4b098955d1df3c7ccda9296179a4e2978177de7847c2aeae421f037cad5457cc",
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": "e9a41b33ffec6f3f49358e47e5fd9557250c134e6d733a56e82e197009b734de",
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": "f5abc419e5db58ca8a440d9641b3c8b4fc7a59809766d34cced0d22597c969e2",
2091
- "signature": "7a49c2ab20c7207f4d26e61026fad7a459ad8efd6e8a39dc83992653eef23048",
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": "2bcbc9a65cfbfa43779c439d8906cd1fd95999bd1bb4d2024307dab0e52e64a2",
2165
+ "version": "1a0f82ddbe18ce936a17092056aabdc553cf6485cc0d2008ec09a3a9640e9e59",
2166
2166
  "signature": "9901a08865a2d9990f41e0bc237ee7ecf0a06fc9525c7d94098eab93b1f45ccb",
2167
2167
  "affectsGlobalScope": false
2168
2168
  },
2169
2169
  "../../core/components/organisms/select/SelectOption.tsx": {
2170
- "version": "249a1502ab13b32c606630ae8179f498b2d452d13d62b831c42973b9f23e80ae",
2170
+ "version": "427578fcf50bd2c9c1903f2a6c391b6a28473b216b76d709f696a977f5cda0f9",
2171
2171
  "signature": "b7da301dbe1169580de986f62c87077f76890064d925c1e648221ee58b03fe07",
2172
2172
  "affectsGlobalScope": false
2173
2173
  },
2174
2174
  "../../core/components/organisms/select/SelectTrigger.tsx": {
2175
- "version": "3350e7414ea5ca4b3d10697c5c0ae4c7bd5557705ba4eaf0d5b619736bc6ea6b",
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": "2945031b7e0ada3586a9ba17e26c6da12fa7929d9fbc9ede0158ee4b9064e266",
2196
- "signature": "7c4b8e05fda14918072776e80e8beeba13c0f4bd91b9072bc72f96cce85c020a",
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": "4969fd9b9910ed6c8404eacafffff3d9dcfadf2449adf10fead25c66ded1f752",
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": "122a2a448a82db7bcee1190f925b416e4fa6fcac0f381a96a995d3671388bec2",
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 {