@jobber/components 4.9.3 → 4.9.5-fix-autoco.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.
|
@@ -43,7 +43,7 @@ var IndexChange;
|
|
|
43
43
|
})(IndexChange || (IndexChange = {}));
|
|
44
44
|
function Menu({ visible, options, selectedOption, onOptionSelect, attachTo, }) {
|
|
45
45
|
const [highlightedIndex, setHighlightedIndex] = React.useState(0);
|
|
46
|
-
const { menuRef, setMenuRef, styles: popperStyles, attributes, targetWidth, } = useRepositionMenu(attachTo);
|
|
46
|
+
const { menuRef, setMenuRef, styles: popperStyles, attributes, targetWidth, } = useRepositionMenu(attachTo, visible);
|
|
47
47
|
const detectSeparatorCondition = (option) => option.description || option.details;
|
|
48
48
|
const detectGroups = (option) => option.options;
|
|
49
49
|
const addSeparators = options.some(detectSeparatorCondition);
|
|
@@ -128,7 +128,7 @@ function isGroup(option) {
|
|
|
128
128
|
return true;
|
|
129
129
|
return false;
|
|
130
130
|
}
|
|
131
|
-
function useRepositionMenu(attachTo) {
|
|
131
|
+
function useRepositionMenu(attachTo, visible = false) {
|
|
132
132
|
var _a;
|
|
133
133
|
const [menuRef, setMenuRef] = React.useState();
|
|
134
134
|
const popper = reactPopper.usePopper(attachTo.current, menuRef, {
|
|
@@ -137,6 +137,10 @@ function useRepositionMenu(attachTo) {
|
|
|
137
137
|
{ name: "flip", options: { fallbackPlacements: ["top"] } },
|
|
138
138
|
],
|
|
139
139
|
});
|
|
140
|
+
React.useLayoutEffect(() => {
|
|
141
|
+
var _a;
|
|
142
|
+
(_a = popper === null || popper === void 0 ? void 0 : popper.update) === null || _a === void 0 ? void 0 : _a.call(popper);
|
|
143
|
+
}, [visible]);
|
|
140
144
|
const targetWidth = (_a = attachTo.current) === null || _a === void 0 ? void 0 : _a.clientWidth;
|
|
141
145
|
return Object.assign(Object.assign({}, popper), { menuRef, setMenuRef, targetWidth });
|
|
142
146
|
}
|
|
@@ -163,7 +167,7 @@ function Autocomplete({ initialOptions = [], value, allowFreeForm = true, size =
|
|
|
163
167
|
}, [value]);
|
|
164
168
|
return (React__default["default"].createElement("div", { className: styles.autocomplete, ref: autocompleteRef },
|
|
165
169
|
React__default["default"].createElement(InputText.InputText, { autocomplete: false, size: size, invalid: invalid, value: inputText, onChange: handleInputChange, placeholder: placeholder, onFocus: handleInputFocus, onBlur: handleInputBlur }),
|
|
166
|
-
menuVisible && (React__default["default"].createElement(Menu, { attachTo: autocompleteRef, visible:
|
|
170
|
+
menuVisible && (React__default["default"].createElement(Menu, { attachTo: autocompleteRef, visible: menuVisible && options.length > 0, options: options, selectedOption: value, onOptionSelect: handleMenuChange }))));
|
|
167
171
|
function updateInput(newText) {
|
|
168
172
|
setInputText(newText);
|
|
169
173
|
if (newText === "") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.5-fix-autoco.0+defd8be4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"dist/*"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@jobber/design": "^0.37.
|
|
21
|
-
"@jobber/formatters": "
|
|
20
|
+
"@jobber/design": "^0.37.1",
|
|
21
|
+
"@jobber/formatters": "^0.2.2",
|
|
22
22
|
"@jobber/hooks": "^2.1.0",
|
|
23
23
|
"@popperjs/core": "^2.0.6",
|
|
24
24
|
"@std-proposal/temporal": "0.0.1",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"> 1%",
|
|
82
82
|
"IE 10"
|
|
83
83
|
],
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "defd8be49414ff9fcaa9ad4569e7d634feedcaf8"
|
|
85
85
|
}
|