arengibook 2.4.673 → 2.4.675
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 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39907,8 +39907,11 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
39907
39907
|
isSelectMeta = _props$isSelectMeta === void 0 ? false : _props$isSelectMeta,
|
|
39908
39908
|
_props$ongletID = props.ongletID,
|
|
39909
39909
|
ongletID = _props$ongletID === void 0 ? null : _props$ongletID,
|
|
39910
|
-
badgeSize = props.badgeSize
|
|
39911
|
-
|
|
39910
|
+
badgeSize = props.badgeSize,
|
|
39911
|
+
optionsUrl = props.optionsUrl;
|
|
39912
|
+
console.log(optionsUrl);
|
|
39913
|
+
console.log(!!optionsUrl);
|
|
39914
|
+
var isAsyncOptions = typeof options === 'function' || optionsUrl;
|
|
39912
39915
|
if (isAsyncOptions) {
|
|
39913
39916
|
return /*#__PURE__*/React__default.createElement(MultiSelectMetaAsync, props);
|
|
39914
39917
|
}
|