arengibook 2.4.672 → 2.4.674
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 +5 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36708,7 +36708,8 @@ var Dropdown = function Dropdown(props) {
|
|
|
36708
36708
|
style: style,
|
|
36709
36709
|
panelStyle: {
|
|
36710
36710
|
maxHeight: 'auto',
|
|
36711
|
-
overflowY: 'auto'
|
|
36711
|
+
overflowY: 'auto',
|
|
36712
|
+
zIndex: 999999
|
|
36712
36713
|
},
|
|
36713
36714
|
panelClassName: "dropdownbook",
|
|
36714
36715
|
itemTemplate: optionTemplate,
|
|
@@ -39906,8 +39907,9 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
39906
39907
|
isSelectMeta = _props$isSelectMeta === void 0 ? false : _props$isSelectMeta,
|
|
39907
39908
|
_props$ongletID = props.ongletID,
|
|
39908
39909
|
ongletID = _props$ongletID === void 0 ? null : _props$ongletID,
|
|
39909
|
-
badgeSize = props.badgeSize
|
|
39910
|
-
|
|
39910
|
+
badgeSize = props.badgeSize,
|
|
39911
|
+
optionsUrl = props.optionsUrl;
|
|
39912
|
+
var isAsyncOptions = typeof options === 'function' || !!optionsUrl;
|
|
39911
39913
|
if (isAsyncOptions) {
|
|
39912
39914
|
return /*#__PURE__*/React__default.createElement(MultiSelectMetaAsync, props);
|
|
39913
39915
|
}
|