arengibook 2.4.624 → 2.4.626
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 +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39299,7 +39299,10 @@ var MultiSelectMetaAsync = function MultiSelectMetaAsync(_ref) {
|
|
|
39299
39299
|
};
|
|
39300
39300
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
39301
39301
|
ref: multiSelectRef,
|
|
39302
|
-
className: "flex flex-col gap-1"
|
|
39302
|
+
className: "flex flex-col gap-1",
|
|
39303
|
+
style: {
|
|
39304
|
+
width: '100%'
|
|
39305
|
+
}
|
|
39303
39306
|
}, /*#__PURE__*/React__default.createElement(MultiSelect$1, {
|
|
39304
39307
|
options: loadedOptions,
|
|
39305
39308
|
onChange: handleChange,
|
|
@@ -39582,9 +39585,15 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
39582
39585
|
}
|
|
39583
39586
|
};
|
|
39584
39587
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
39585
|
-
className: "flex flex-col gap-1"
|
|
39588
|
+
className: "flex flex-col gap-1",
|
|
39589
|
+
style: {
|
|
39590
|
+
width: '100%'
|
|
39591
|
+
}
|
|
39586
39592
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
39587
39593
|
className: "multiselect-container",
|
|
39594
|
+
style: {
|
|
39595
|
+
width: '100%'
|
|
39596
|
+
},
|
|
39588
39597
|
onMouseEnter: function onMouseEnter() {
|
|
39589
39598
|
return setHovered(true);
|
|
39590
39599
|
},
|