@xqmsg/ui-core 0.24.9 → 0.24.10
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/components/input/StackedSelect/index.d.ts +1 -0
- package/dist/components/input/index.d.ts +2 -1
- package/dist/ui-core.cjs.development.js +17 -10
- package/dist/ui-core.cjs.development.js.map +1 -1
- package/dist/ui-core.cjs.production.min.js +1 -1
- package/dist/ui-core.cjs.production.min.js.map +1 -1
- package/dist/ui-core.esm.js +17 -10
- package/dist/ui-core.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/icons/workspace/index.tsx +1 -1
- package/src/components/input/Input.stories.tsx +1 -0
- package/src/components/input/StackedMultiSelect/index.tsx +1 -0
- package/src/components/input/StackedSelect/index.tsx +12 -8
- package/src/components/input/index.tsx +3 -0
package/dist/ui-core.esm.js
CHANGED
|
@@ -1034,7 +1034,7 @@ var Dropdown$1 = function Dropdown(_ref) {
|
|
|
1034
1034
|
});
|
|
1035
1035
|
};
|
|
1036
1036
|
|
|
1037
|
-
var _excluded$1 = ["isRequired", "options", "name", "setValue", "handleOnChange", "disabled", "value", "fullOptions", "loadingOptions"];
|
|
1037
|
+
var _excluded$1 = ["isRequired", "options", "name", "setValue", "handleOnChange", "disabled", "value", "fullOptions", "loadingOptions", "searchable"];
|
|
1038
1038
|
/**
|
|
1039
1039
|
* A functional React component utilized to render the `StackedSelect` component.
|
|
1040
1040
|
*/
|
|
@@ -1049,6 +1049,8 @@ var StackedSelect = /*#__PURE__*/React__default.forwardRef(function (_ref2, _ref
|
|
|
1049
1049
|
value = _ref2.value,
|
|
1050
1050
|
fullOptions = _ref2.fullOptions,
|
|
1051
1051
|
loadingOptions = _ref2.loadingOptions,
|
|
1052
|
+
_ref2$searchable = _ref2.searchable,
|
|
1053
|
+
searchable = _ref2$searchable === void 0 ? true : _ref2$searchable,
|
|
1052
1054
|
props = _objectWithoutPropertiesLoose(_ref2, _excluded$1);
|
|
1053
1055
|
var dropdownRef = useRef(null);
|
|
1054
1056
|
var dropdownMenuRef = useRef(null);
|
|
@@ -1167,11 +1169,13 @@ var StackedSelect = /*#__PURE__*/React__default.forwardRef(function (_ref2, _ref
|
|
|
1167
1169
|
}));
|
|
1168
1170
|
}, [options, searchValue]);
|
|
1169
1171
|
var handleInput = function handleInput(e) {
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1172
|
+
if (searchable) {
|
|
1173
|
+
var _filteredOptions$;
|
|
1174
|
+
var initialOptionIndex = filteredOptions.length && ((_filteredOptions$ = filteredOptions[0]) == null ? void 0 : _filteredOptions$.value) === 'section_header' ? 1 : 0;
|
|
1175
|
+
setOptionIndex(initialOptionIndex);
|
|
1176
|
+
var _value = e.target.value;
|
|
1177
|
+
setSearchValue(_value);
|
|
1178
|
+
}
|
|
1175
1179
|
};
|
|
1176
1180
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
1177
1181
|
ref: dropdownRef,
|
|
@@ -1184,7 +1188,6 @@ var StackedSelect = /*#__PURE__*/React__default.forwardRef(function (_ref2, _ref
|
|
|
1184
1188
|
return setIsFocussed(!isFocussed);
|
|
1185
1189
|
},
|
|
1186
1190
|
cursor: isFocussed ? 'default' : 'pointer',
|
|
1187
|
-
color: loadingOptions ? 'transparent' : 'inital',
|
|
1188
1191
|
fontSize: "13px",
|
|
1189
1192
|
value: isFocussed ? searchValue : selectedOption,
|
|
1190
1193
|
autoComplete: "off",
|
|
@@ -1590,6 +1593,7 @@ var StackedMultiSelect = /*#__PURE__*/React__default.forwardRef(function (_ref2,
|
|
|
1590
1593
|
optionIndex: optionIndex,
|
|
1591
1594
|
loading: loadingOptions
|
|
1592
1595
|
}, /*#__PURE__*/React__default.createElement(Input$2, {
|
|
1596
|
+
autoFocus: true,
|
|
1593
1597
|
value: searchValue,
|
|
1594
1598
|
onChange: handleInput,
|
|
1595
1599
|
disabled: loadingOptions
|
|
@@ -1939,7 +1943,8 @@ function Input(_ref) {
|
|
|
1939
1943
|
separators = _ref.separators,
|
|
1940
1944
|
_ref$loadingOptions = _ref.loadingOptions,
|
|
1941
1945
|
loadingOptions = _ref$loadingOptions === void 0 ? false : _ref$loadingOptions,
|
|
1942
|
-
truncatePillLength = _ref.truncatePillLength
|
|
1946
|
+
truncatePillLength = _ref.truncatePillLength,
|
|
1947
|
+
searchable = _ref.searchable;
|
|
1943
1948
|
function selectedInputField(onChange, onBlur, ref, value) {
|
|
1944
1949
|
switch (inputType) {
|
|
1945
1950
|
case 'text':
|
|
@@ -1994,7 +1999,8 @@ function Input(_ref) {
|
|
|
1994
1999
|
defaultValue: defaultValue,
|
|
1995
2000
|
placeholder: placeholder,
|
|
1996
2001
|
fullOptions: fullOptions,
|
|
1997
|
-
loadingOptions: loadingOptions
|
|
2002
|
+
loadingOptions: loadingOptions,
|
|
2003
|
+
searchable: searchable
|
|
1998
2004
|
});
|
|
1999
2005
|
case 'textarea':
|
|
2000
2006
|
return /*#__PURE__*/React__default.createElement(StackedTextarea, {
|
|
@@ -3027,7 +3033,8 @@ var Workspace = function Workspace(_ref) {
|
|
|
3027
3033
|
filled = _ref$filled === void 0 ? false : _ref$filled;
|
|
3028
3034
|
if (filled) {
|
|
3029
3035
|
return /*#__PURE__*/React__default.createElement(Memo$w, {
|
|
3030
|
-
|
|
3036
|
+
width: boxSize,
|
|
3037
|
+
height: boxSize
|
|
3031
3038
|
});
|
|
3032
3039
|
}
|
|
3033
3040
|
return /*#__PURE__*/React__default.createElement(Image$1, {
|