@atlaskit/dropdown-menu 16.3.15 → 16.3.16
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
|
@@ -30,6 +30,7 @@ var getNextFocusableElement = function getNextFocusableElement(refs, currentFocu
|
|
|
30
30
|
return element;
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
|
+
return;
|
|
33
34
|
};
|
|
34
35
|
|
|
35
36
|
/**
|
|
@@ -51,6 +52,7 @@ var getPrevFocusableElement = function getPrevFocusableElement(refs, currentFocu
|
|
|
51
52
|
return element;
|
|
52
53
|
}
|
|
53
54
|
}
|
|
55
|
+
return;
|
|
54
56
|
};
|
|
55
57
|
function handleFocus(refs, isLayerDisabled, onClose) {
|
|
56
58
|
return function (e) {
|
|
@@ -29,6 +29,7 @@ const getNextFocusableElement = (refs, currentFocusedIdx) => {
|
|
|
29
29
|
return element;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
+
return;
|
|
32
33
|
};
|
|
33
34
|
|
|
34
35
|
/**
|
|
@@ -52,6 +53,7 @@ const getPrevFocusableElement = (refs, currentFocusedIdx) => {
|
|
|
52
53
|
return element;
|
|
53
54
|
}
|
|
54
55
|
}
|
|
56
|
+
return;
|
|
55
57
|
};
|
|
56
58
|
export default function handleFocus(refs, isLayerDisabled, onClose) {
|
|
57
59
|
return e => {
|
|
@@ -23,6 +23,7 @@ var getNextFocusableElement = function getNextFocusableElement(refs, currentFocu
|
|
|
23
23
|
return element;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
+
return;
|
|
26
27
|
};
|
|
27
28
|
|
|
28
29
|
/**
|
|
@@ -44,6 +45,7 @@ var getPrevFocusableElement = function getPrevFocusableElement(refs, currentFocu
|
|
|
44
45
|
return element;
|
|
45
46
|
}
|
|
46
47
|
}
|
|
48
|
+
return;
|
|
47
49
|
};
|
|
48
50
|
export default function handleFocus(refs, isLayerDisabled, onClose) {
|
|
49
51
|
return function (e) {
|