@mmb-digital/ds-lilly 0.3.14 → 0.3.15
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/dist/ds-lilly.js +10 -4
- package/package.json +1 -1
package/dist/ds-lilly.js
CHANGED
|
@@ -98837,10 +98837,12 @@ var Autocomplete2 = function (_a) {
|
|
|
98837
98837
|
messages.createItem, " \"" + fulltextValue + "\""))))));
|
|
98838
98838
|
};
|
|
98839
98839
|
var focusedItem = itemsIndex[currentItemPosition];
|
|
98840
|
+
var focusedCategoryIndex = focusedItem ? focusedItem.category : -1;
|
|
98841
|
+
var focusedItemIndex = focusedItem ? focusedItem.item : -1;
|
|
98840
98842
|
var select2context = {
|
|
98841
98843
|
emptyValueLabel: !fulltextValue || fulltextValue === (buttonValue === null || buttonValue === void 0 ? void 0 : buttonValue.label) || fulltextMatchesEmptyValue ? emptyValueLabel : undefined,
|
|
98842
|
-
focusedCategoryIndex:
|
|
98843
|
-
focusedItemIndex:
|
|
98844
|
+
focusedCategoryIndex: focusedCategoryIndex,
|
|
98845
|
+
focusedItemIndex: focusedItemIndex,
|
|
98844
98846
|
items: items,
|
|
98845
98847
|
name: name,
|
|
98846
98848
|
optionClick: handleOptionClick,
|
|
@@ -98862,9 +98864,13 @@ var Autocomplete2 = function (_a) {
|
|
|
98862
98864
|
return (external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement(FormGroup2, Autocomplete2_assign({ theme: classBinder_cx({ 'f-group2--open': isDropdownVisible }, theme) }, fromGroupProps),
|
|
98863
98865
|
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement(contexts_Select2Context.Provider, { value: select2context },
|
|
98864
98866
|
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement(Dropdown, { dropdownId: "autocomplete_dropdown", forceVisibility: isDropdownVisible, hasSameWidthAsTrigger: hasFullWidthOptions, placement: "bottom-start", theme: dropdownTheme, trigger: null, triggerComponent: external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("div", { className: "f-controlWrap", "data-testid": testId, role: "combobox" }, typingMode ? (external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("div", { className: classBinder_cx('f-control2 f-control2--select', { 'f-control2--large': displayDetails }) },
|
|
98865
|
-
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("input", {
|
|
98867
|
+
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("input", { "aria-activedescendant": isDropdownVisible && (itemsIndex.length > 0 || showCreatable)
|
|
98868
|
+
? isCategorised(items)
|
|
98869
|
+
? name + "_option-" + focusedCategoryIndex + "-" + focusedItemIndex
|
|
98870
|
+
: name + "_option-" + focusedItemIndex
|
|
98871
|
+
: undefined, "aria-autocomplete": "list", "aria-controls": name + "_list", "aria-labelledby": name + "_label", autoComplete: "off", className: classBinder_cx('f-autocomplete__input'), disabled: isDisabled, id: name + "_input", name: name, placeholder: placeholder, type: "text", value: fulltextValue, onChange: handleFulltextChange, onKeyDown: handleFulltextKeyPress }),
|
|
98866
98872
|
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("button", { "aria-invalid": !!error, className: classBinder_cx('f-autocomplete__button'), disabled: isDisabled, id: name + "_toggle_button", name: name, tabIndex: -1, type: "button", onClick: toggleDropdown },
|
|
98867
|
-
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement(Icon, { name: "arrowDown", size: "small", theme: "f-control2__selectIcon" })))) : (external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("button", { "aria-expanded": isDropdownVisible, "aria-haspopup": "listbox", "aria-invalid": !!error, "aria-labelledby": name + "_label
|
|
98873
|
+
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement(Icon, { name: "arrowDown", size: "small", theme: "f-control2__selectIcon" })))) : (external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("button", { "aria-expanded": isDropdownVisible, "aria-haspopup": "listbox", "aria-invalid": !!error, "aria-labelledby": name + "_label", className: classBinder_cx('f-control2 f-control2--select', {
|
|
98868
98874
|
'f-control2--large': displayDetails,
|
|
98869
98875
|
'f-autocomplete__trigger--loading': isLoading
|
|
98870
98876
|
}), disabled: isDisabled, id: name + "_button", name: name, type: "button", onClick: handleComboBoxClick, onFocus: handleFocus },
|