@atlaskit/dropdown-menu 16.0.4 → 16.0.5
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/dropdown-menu
|
|
2
2
|
|
|
3
|
+
## 16.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#171540](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/171540)
|
|
8
|
+
[`ff686344ec2f4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ff686344ec2f4) -
|
|
9
|
+
Removed FG that fixes dropdown menu keyboard nav with disabled options
|
|
10
|
+
|
|
3
11
|
## 16.0.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -18,26 +18,16 @@ var actionMap = (0, _defineProperty2.default)((0, _defineProperty2.default)((0,
|
|
|
18
18
|
* return undefined.
|
|
19
19
|
*/
|
|
20
20
|
var getNextFocusableElement = function getNextFocusableElement(refs, currentFocusedIdx) {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
currentFocusedIdx++;
|
|
27
|
-
}
|
|
28
|
-
var element = refs[currentFocusedIdx].current;
|
|
29
|
-
var isValid = !!element && !element.hasAttribute('disabled');
|
|
30
|
-
if (isValid) {
|
|
31
|
-
return element;
|
|
32
|
-
}
|
|
21
|
+
for (var i = 0; i < refs.length - 1; i++) {
|
|
22
|
+
if (currentFocusedIdx + 1 === refs.length) {
|
|
23
|
+
currentFocusedIdx = 0;
|
|
24
|
+
} else {
|
|
25
|
+
currentFocusedIdx++;
|
|
33
26
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
if (_isValid) {
|
|
39
|
-
return _element;
|
|
40
|
-
}
|
|
27
|
+
var element = refs[currentFocusedIdx].current;
|
|
28
|
+
var isValid = !!element && !element.hasAttribute('disabled');
|
|
29
|
+
if (isValid) {
|
|
30
|
+
return element;
|
|
41
31
|
}
|
|
42
32
|
}
|
|
43
33
|
};
|
|
@@ -49,26 +39,16 @@ var getNextFocusableElement = function getNextFocusableElement(refs, currentFocu
|
|
|
49
39
|
* return undefined.
|
|
50
40
|
*/
|
|
51
41
|
var getPrevFocusableElement = function getPrevFocusableElement(refs, currentFocusedIdx) {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
currentFocusedIdx--;
|
|
58
|
-
}
|
|
59
|
-
var element = refs[currentFocusedIdx].current;
|
|
60
|
-
var isValid = !!element && !element.hasAttribute('disabled');
|
|
61
|
-
if (isValid) {
|
|
62
|
-
return element;
|
|
63
|
-
}
|
|
42
|
+
for (var i = 0; i < refs.length - 1; i++) {
|
|
43
|
+
if (currentFocusedIdx === 0) {
|
|
44
|
+
currentFocusedIdx = refs.length - 1;
|
|
45
|
+
} else {
|
|
46
|
+
currentFocusedIdx--;
|
|
64
47
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
if (_isValid2) {
|
|
70
|
-
return _element2;
|
|
71
|
-
}
|
|
48
|
+
var element = refs[currentFocusedIdx].current;
|
|
49
|
+
var isValid = !!element && !element.hasAttribute('disabled');
|
|
50
|
+
if (isValid) {
|
|
51
|
+
return element;
|
|
72
52
|
}
|
|
73
53
|
}
|
|
74
54
|
};
|
|
@@ -110,50 +90,26 @@ function handleFocus(refs, isLayerDisabled, onClose) {
|
|
|
110
90
|
case 'next':
|
|
111
91
|
// Always cancelling the event to prevent scrolling
|
|
112
92
|
e.preventDefault();
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
_nextFocusableElement === null || _nextFocusableElement === void 0 || _nextFocusableElement.focus();
|
|
116
|
-
break;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// Remove on FG cleanup dropdown-menu-disabled-navigation-fix
|
|
120
|
-
if (currentFocusedIdx < currentRefs.length - 1) {
|
|
121
|
-
var _nextFocusableElement2 = getNextFocusableElement(currentRefs, currentFocusedIdx);
|
|
122
|
-
_nextFocusableElement2 === null || _nextFocusableElement2 === void 0 || _nextFocusableElement2.focus();
|
|
123
|
-
} else {
|
|
124
|
-
var firstFocusableElement = getNextFocusableElement(currentRefs, -1);
|
|
125
|
-
firstFocusableElement === null || firstFocusableElement === void 0 || firstFocusableElement.focus();
|
|
126
|
-
}
|
|
93
|
+
var nextFocusableElement = getNextFocusableElement(currentRefs, currentFocusedIdx);
|
|
94
|
+
nextFocusableElement === null || nextFocusableElement === void 0 || nextFocusableElement.focus();
|
|
127
95
|
break;
|
|
128
96
|
case 'prev':
|
|
129
97
|
// Always cancelling the event to prevent scrolling
|
|
130
98
|
e.preventDefault();
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
_prevFocusableElement === null || _prevFocusableElement === void 0 || _prevFocusableElement.focus();
|
|
134
|
-
break;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
// Remove on FG cleanup dropdown-menu-disabled-navigation-fix
|
|
138
|
-
if (currentFocusedIdx > 0) {
|
|
139
|
-
var _prevFocusableElement2 = getPrevFocusableElement(currentRefs, currentFocusedIdx);
|
|
140
|
-
_prevFocusableElement2 === null || _prevFocusableElement2 === void 0 || _prevFocusableElement2.focus();
|
|
141
|
-
} else {
|
|
142
|
-
var lastFocusableElement = getPrevFocusableElement(currentRefs, currentRefs.length);
|
|
143
|
-
lastFocusableElement === null || lastFocusableElement === void 0 || lastFocusableElement.focus();
|
|
144
|
-
}
|
|
99
|
+
var prevFocusableElement = getPrevFocusableElement(currentRefs, currentFocusedIdx);
|
|
100
|
+
prevFocusableElement === null || prevFocusableElement === void 0 || prevFocusableElement.focus();
|
|
145
101
|
break;
|
|
146
102
|
case 'first':
|
|
147
103
|
e.preventDefault();
|
|
148
104
|
// Search for first non-disabled element if first element is disabled
|
|
149
|
-
var
|
|
150
|
-
|
|
105
|
+
var firstFocusableElement = getNextFocusableElement(currentRefs, -1);
|
|
106
|
+
firstFocusableElement === null || firstFocusableElement === void 0 || firstFocusableElement.focus();
|
|
151
107
|
break;
|
|
152
108
|
case 'last':
|
|
153
109
|
e.preventDefault();
|
|
154
110
|
// Search for last non-disabled element if last element is disabled
|
|
155
|
-
var
|
|
156
|
-
|
|
111
|
+
var lastFocusableElement = getPrevFocusableElement(currentRefs, currentRefs.length);
|
|
112
|
+
lastFocusableElement === null || lastFocusableElement === void 0 || lastFocusableElement.focus();
|
|
157
113
|
break;
|
|
158
114
|
default:
|
|
159
115
|
return;
|
|
@@ -15,30 +15,18 @@ const actionMap = {
|
|
|
15
15
|
* return undefined.
|
|
16
16
|
*/
|
|
17
17
|
const getNextFocusableElement = (refs, currentFocusedIdx) => {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
currentFocusedIdx++;
|
|
24
|
-
}
|
|
25
|
-
const {
|
|
26
|
-
current: element
|
|
27
|
-
} = refs[currentFocusedIdx];
|
|
28
|
-
const isValid = !!element && !element.hasAttribute('disabled');
|
|
29
|
-
if (isValid) {
|
|
30
|
-
return element;
|
|
31
|
-
}
|
|
18
|
+
for (let i = 0; i < refs.length - 1; i++) {
|
|
19
|
+
if (currentFocusedIdx + 1 === refs.length) {
|
|
20
|
+
currentFocusedIdx = 0;
|
|
21
|
+
} else {
|
|
22
|
+
currentFocusedIdx++;
|
|
32
23
|
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
if (isValid) {
|
|
40
|
-
return element;
|
|
41
|
-
}
|
|
24
|
+
const {
|
|
25
|
+
current: element
|
|
26
|
+
} = refs[currentFocusedIdx];
|
|
27
|
+
const isValid = !!element && !element.hasAttribute('disabled');
|
|
28
|
+
if (isValid) {
|
|
29
|
+
return element;
|
|
42
30
|
}
|
|
43
31
|
}
|
|
44
32
|
};
|
|
@@ -50,30 +38,18 @@ const getNextFocusableElement = (refs, currentFocusedIdx) => {
|
|
|
50
38
|
* return undefined.
|
|
51
39
|
*/
|
|
52
40
|
const getPrevFocusableElement = (refs, currentFocusedIdx) => {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
currentFocusedIdx--;
|
|
59
|
-
}
|
|
60
|
-
const {
|
|
61
|
-
current: element
|
|
62
|
-
} = refs[currentFocusedIdx];
|
|
63
|
-
const isValid = !!element && !element.hasAttribute('disabled');
|
|
64
|
-
if (isValid) {
|
|
65
|
-
return element;
|
|
66
|
-
}
|
|
41
|
+
for (let i = 0; i < refs.length - 1; i++) {
|
|
42
|
+
if (currentFocusedIdx === 0) {
|
|
43
|
+
currentFocusedIdx = refs.length - 1;
|
|
44
|
+
} else {
|
|
45
|
+
currentFocusedIdx--;
|
|
67
46
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
if (isValid) {
|
|
75
|
-
return element;
|
|
76
|
-
}
|
|
47
|
+
const {
|
|
48
|
+
current: element
|
|
49
|
+
} = refs[currentFocusedIdx];
|
|
50
|
+
const isValid = !!element && !element.hasAttribute('disabled');
|
|
51
|
+
if (isValid) {
|
|
52
|
+
return element;
|
|
77
53
|
}
|
|
78
54
|
}
|
|
79
55
|
};
|
|
@@ -116,50 +92,26 @@ export default function handleFocus(refs, isLayerDisabled, onClose) {
|
|
|
116
92
|
case 'next':
|
|
117
93
|
// Always cancelling the event to prevent scrolling
|
|
118
94
|
e.preventDefault();
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
nextFocusableElement === null || nextFocusableElement === void 0 ? void 0 : nextFocusableElement.focus();
|
|
122
|
-
break;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// Remove on FG cleanup dropdown-menu-disabled-navigation-fix
|
|
126
|
-
if (currentFocusedIdx < currentRefs.length - 1) {
|
|
127
|
-
const nextFocusableElement = getNextFocusableElement(currentRefs, currentFocusedIdx);
|
|
128
|
-
nextFocusableElement === null || nextFocusableElement === void 0 ? void 0 : nextFocusableElement.focus();
|
|
129
|
-
} else {
|
|
130
|
-
const firstFocusableElement = getNextFocusableElement(currentRefs, -1);
|
|
131
|
-
firstFocusableElement === null || firstFocusableElement === void 0 ? void 0 : firstFocusableElement.focus();
|
|
132
|
-
}
|
|
95
|
+
const nextFocusableElement = getNextFocusableElement(currentRefs, currentFocusedIdx);
|
|
96
|
+
nextFocusableElement === null || nextFocusableElement === void 0 ? void 0 : nextFocusableElement.focus();
|
|
133
97
|
break;
|
|
134
98
|
case 'prev':
|
|
135
99
|
// Always cancelling the event to prevent scrolling
|
|
136
100
|
e.preventDefault();
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
prevFocusableElement === null || prevFocusableElement === void 0 ? void 0 : prevFocusableElement.focus();
|
|
140
|
-
break;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// Remove on FG cleanup dropdown-menu-disabled-navigation-fix
|
|
144
|
-
if (currentFocusedIdx > 0) {
|
|
145
|
-
const prevFocusableElement = getPrevFocusableElement(currentRefs, currentFocusedIdx);
|
|
146
|
-
prevFocusableElement === null || prevFocusableElement === void 0 ? void 0 : prevFocusableElement.focus();
|
|
147
|
-
} else {
|
|
148
|
-
const lastFocusableElement = getPrevFocusableElement(currentRefs, currentRefs.length);
|
|
149
|
-
lastFocusableElement === null || lastFocusableElement === void 0 ? void 0 : lastFocusableElement.focus();
|
|
150
|
-
}
|
|
101
|
+
const prevFocusableElement = getPrevFocusableElement(currentRefs, currentFocusedIdx);
|
|
102
|
+
prevFocusableElement === null || prevFocusableElement === void 0 ? void 0 : prevFocusableElement.focus();
|
|
151
103
|
break;
|
|
152
104
|
case 'first':
|
|
153
105
|
e.preventDefault();
|
|
154
106
|
// Search for first non-disabled element if first element is disabled
|
|
155
|
-
const
|
|
156
|
-
|
|
107
|
+
const firstFocusableElement = getNextFocusableElement(currentRefs, -1);
|
|
108
|
+
firstFocusableElement === null || firstFocusableElement === void 0 ? void 0 : firstFocusableElement.focus();
|
|
157
109
|
break;
|
|
158
110
|
case 'last':
|
|
159
111
|
e.preventDefault();
|
|
160
112
|
// Search for last non-disabled element if last element is disabled
|
|
161
|
-
const
|
|
162
|
-
|
|
113
|
+
const lastFocusableElement = getPrevFocusableElement(currentRefs, currentRefs.length);
|
|
114
|
+
lastFocusableElement === null || lastFocusableElement === void 0 ? void 0 : lastFocusableElement.focus();
|
|
163
115
|
break;
|
|
164
116
|
default:
|
|
165
117
|
return;
|
|
@@ -11,26 +11,16 @@ var actionMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(
|
|
|
11
11
|
* return undefined.
|
|
12
12
|
*/
|
|
13
13
|
var getNextFocusableElement = function getNextFocusableElement(refs, currentFocusedIdx) {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
currentFocusedIdx++;
|
|
20
|
-
}
|
|
21
|
-
var element = refs[currentFocusedIdx].current;
|
|
22
|
-
var isValid = !!element && !element.hasAttribute('disabled');
|
|
23
|
-
if (isValid) {
|
|
24
|
-
return element;
|
|
25
|
-
}
|
|
14
|
+
for (var i = 0; i < refs.length - 1; i++) {
|
|
15
|
+
if (currentFocusedIdx + 1 === refs.length) {
|
|
16
|
+
currentFocusedIdx = 0;
|
|
17
|
+
} else {
|
|
18
|
+
currentFocusedIdx++;
|
|
26
19
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
if (_isValid) {
|
|
32
|
-
return _element;
|
|
33
|
-
}
|
|
20
|
+
var element = refs[currentFocusedIdx].current;
|
|
21
|
+
var isValid = !!element && !element.hasAttribute('disabled');
|
|
22
|
+
if (isValid) {
|
|
23
|
+
return element;
|
|
34
24
|
}
|
|
35
25
|
}
|
|
36
26
|
};
|
|
@@ -42,26 +32,16 @@ var getNextFocusableElement = function getNextFocusableElement(refs, currentFocu
|
|
|
42
32
|
* return undefined.
|
|
43
33
|
*/
|
|
44
34
|
var getPrevFocusableElement = function getPrevFocusableElement(refs, currentFocusedIdx) {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
currentFocusedIdx--;
|
|
51
|
-
}
|
|
52
|
-
var element = refs[currentFocusedIdx].current;
|
|
53
|
-
var isValid = !!element && !element.hasAttribute('disabled');
|
|
54
|
-
if (isValid) {
|
|
55
|
-
return element;
|
|
56
|
-
}
|
|
35
|
+
for (var i = 0; i < refs.length - 1; i++) {
|
|
36
|
+
if (currentFocusedIdx === 0) {
|
|
37
|
+
currentFocusedIdx = refs.length - 1;
|
|
38
|
+
} else {
|
|
39
|
+
currentFocusedIdx--;
|
|
57
40
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
if (_isValid2) {
|
|
63
|
-
return _element2;
|
|
64
|
-
}
|
|
41
|
+
var element = refs[currentFocusedIdx].current;
|
|
42
|
+
var isValid = !!element && !element.hasAttribute('disabled');
|
|
43
|
+
if (isValid) {
|
|
44
|
+
return element;
|
|
65
45
|
}
|
|
66
46
|
}
|
|
67
47
|
};
|
|
@@ -103,50 +83,26 @@ export default function handleFocus(refs, isLayerDisabled, onClose) {
|
|
|
103
83
|
case 'next':
|
|
104
84
|
// Always cancelling the event to prevent scrolling
|
|
105
85
|
e.preventDefault();
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
_nextFocusableElement === null || _nextFocusableElement === void 0 || _nextFocusableElement.focus();
|
|
109
|
-
break;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
// Remove on FG cleanup dropdown-menu-disabled-navigation-fix
|
|
113
|
-
if (currentFocusedIdx < currentRefs.length - 1) {
|
|
114
|
-
var _nextFocusableElement2 = getNextFocusableElement(currentRefs, currentFocusedIdx);
|
|
115
|
-
_nextFocusableElement2 === null || _nextFocusableElement2 === void 0 || _nextFocusableElement2.focus();
|
|
116
|
-
} else {
|
|
117
|
-
var firstFocusableElement = getNextFocusableElement(currentRefs, -1);
|
|
118
|
-
firstFocusableElement === null || firstFocusableElement === void 0 || firstFocusableElement.focus();
|
|
119
|
-
}
|
|
86
|
+
var nextFocusableElement = getNextFocusableElement(currentRefs, currentFocusedIdx);
|
|
87
|
+
nextFocusableElement === null || nextFocusableElement === void 0 || nextFocusableElement.focus();
|
|
120
88
|
break;
|
|
121
89
|
case 'prev':
|
|
122
90
|
// Always cancelling the event to prevent scrolling
|
|
123
91
|
e.preventDefault();
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
_prevFocusableElement === null || _prevFocusableElement === void 0 || _prevFocusableElement.focus();
|
|
127
|
-
break;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
// Remove on FG cleanup dropdown-menu-disabled-navigation-fix
|
|
131
|
-
if (currentFocusedIdx > 0) {
|
|
132
|
-
var _prevFocusableElement2 = getPrevFocusableElement(currentRefs, currentFocusedIdx);
|
|
133
|
-
_prevFocusableElement2 === null || _prevFocusableElement2 === void 0 || _prevFocusableElement2.focus();
|
|
134
|
-
} else {
|
|
135
|
-
var lastFocusableElement = getPrevFocusableElement(currentRefs, currentRefs.length);
|
|
136
|
-
lastFocusableElement === null || lastFocusableElement === void 0 || lastFocusableElement.focus();
|
|
137
|
-
}
|
|
92
|
+
var prevFocusableElement = getPrevFocusableElement(currentRefs, currentFocusedIdx);
|
|
93
|
+
prevFocusableElement === null || prevFocusableElement === void 0 || prevFocusableElement.focus();
|
|
138
94
|
break;
|
|
139
95
|
case 'first':
|
|
140
96
|
e.preventDefault();
|
|
141
97
|
// Search for first non-disabled element if first element is disabled
|
|
142
|
-
var
|
|
143
|
-
|
|
98
|
+
var firstFocusableElement = getNextFocusableElement(currentRefs, -1);
|
|
99
|
+
firstFocusableElement === null || firstFocusableElement === void 0 || firstFocusableElement.focus();
|
|
144
100
|
break;
|
|
145
101
|
case 'last':
|
|
146
102
|
e.preventDefault();
|
|
147
103
|
// Search for last non-disabled element if last element is disabled
|
|
148
|
-
var
|
|
149
|
-
|
|
104
|
+
var lastFocusableElement = getPrevFocusableElement(currentRefs, currentRefs.length);
|
|
105
|
+
lastFocusableElement === null || lastFocusableElement === void 0 || lastFocusableElement.focus();
|
|
150
106
|
break;
|
|
151
107
|
default:
|
|
152
108
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/dropdown-menu",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.5",
|
|
4
4
|
"description": "A dropdown menu displays a list of actions or options to a user.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@atlaskit/primitives": "^14.8.0",
|
|
37
37
|
"@atlaskit/spinner": "^18.0.0",
|
|
38
38
|
"@atlaskit/theme": "^18.0.0",
|
|
39
|
-
"@atlaskit/tokens": "^5.
|
|
39
|
+
"@atlaskit/tokens": "^5.2.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0",
|
|
41
41
|
"bind-event-listener": "^3.0.0"
|
|
42
42
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@atlaskit/atlassian-navigation": "^5.3.0",
|
|
53
53
|
"@atlaskit/avatar": "^25.1.0",
|
|
54
54
|
"@atlaskit/checkbox": "^17.1.0",
|
|
55
|
-
"@atlaskit/docs": "^
|
|
55
|
+
"@atlaskit/docs": "^11.0.0",
|
|
56
56
|
"@atlaskit/form": "^12.0.0",
|
|
57
57
|
"@atlaskit/heading": "^5.2.0",
|
|
58
58
|
"@atlaskit/link": "^3.2.0",
|
|
@@ -90,9 +90,6 @@
|
|
|
90
90
|
"type": "boolean",
|
|
91
91
|
"referenceOnly": true
|
|
92
92
|
},
|
|
93
|
-
"dropdown-menu-disabled-navigation-fix": {
|
|
94
|
-
"type": "boolean"
|
|
95
|
-
},
|
|
96
93
|
"platform_design_system_team_dropdown_return_focus": {
|
|
97
94
|
"type": "boolean"
|
|
98
95
|
}
|