@oliasoft-open-source/react-ui-library 4.15.1-beta-3 → 4.15.1-beta-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/dist/index.js +8 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20847,6 +20847,7 @@ const Input = ({
|
|
|
20847
20847
|
searchable ? /* @__PURE__ */ jsx(
|
|
20848
20848
|
"input",
|
|
20849
20849
|
{
|
|
20850
|
+
tabIndex: -1,
|
|
20850
20851
|
ref: inputRef,
|
|
20851
20852
|
size: inputSize,
|
|
20852
20853
|
className: styles$m.input,
|
|
@@ -20929,6 +20930,7 @@ const Trigger = ({
|
|
|
20929
20930
|
),
|
|
20930
20931
|
onClick: (evt) => {
|
|
20931
20932
|
console.log("TRIGGER ONCLICK");
|
|
20933
|
+
evt.stopPropagation();
|
|
20932
20934
|
onClickTrigger(evt);
|
|
20933
20935
|
},
|
|
20934
20936
|
onFocus,
|
|
@@ -21300,15 +21302,12 @@ const useCustomSelectLogic = ({
|
|
|
21300
21302
|
onChange(evt, newSelectedOptions);
|
|
21301
21303
|
}
|
|
21302
21304
|
};
|
|
21303
|
-
const onChangeSearch = (value) => {
|
|
21304
|
-
|
|
21305
|
-
|
|
21306
|
-
|
|
21307
|
-
|
|
21308
|
-
|
|
21309
|
-
createAble
|
|
21310
|
-
});
|
|
21311
|
-
};
|
|
21305
|
+
const onChangeSearch = (value) => dispatch({
|
|
21306
|
+
type: ActionTypes.ON_CHANGE_SEARCH,
|
|
21307
|
+
options,
|
|
21308
|
+
value,
|
|
21309
|
+
createAble
|
|
21310
|
+
});
|
|
21312
21311
|
const clickTrigger = () => {
|
|
21313
21312
|
openLayer();
|
|
21314
21313
|
dispatch({ type: ActionTypes.BLUR_TRIGGER_INPUTS });
|