pollination-react-io 1.18.0 → 1.18.1
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/build/index.esm.js +4 -7
- package/build/index.esm.js.map +1 -1
- package/build/index.js +4 -7
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
|
@@ -8722,12 +8722,12 @@ var ComboBox = React__default.forwardRef(function ComboBox(_a, ref) {
|
|
|
8722
8722
|
return React__default.createElement(React__default.Fragment, null);
|
|
8723
8723
|
}
|
|
8724
8724
|
else if (loading) {
|
|
8725
|
-
React__default.createElement("button", { type: 'button', tabIndex: -1, disabled: disabled, style: {
|
|
8725
|
+
return (React__default.createElement("button", { type: 'button', tabIndex: -1, disabled: disabled, style: {
|
|
8726
8726
|
borderBottomRightRadius: isOpen ? 0 : 4,
|
|
8727
8727
|
} },
|
|
8728
|
-
React__default.createElement(ArrowClockwise$1, { className: "spin", size: ICON_SIZE }));
|
|
8728
|
+
React__default.createElement(ArrowClockwise$1, { className: "spin", size: ICON_SIZE })));
|
|
8729
8729
|
}
|
|
8730
|
-
else if (
|
|
8730
|
+
else if (selectedItem) {
|
|
8731
8731
|
return (React__default.createElement("button", { type: 'button', tabIndex: -1, disabled: disabled, onClick: function () {
|
|
8732
8732
|
selectItem(null);
|
|
8733
8733
|
setSelected && setSelected(undefined);
|
|
@@ -41807,7 +41807,7 @@ var SelectRecipe = function (_a) {
|
|
|
41807
41807
|
.finally(function () {
|
|
41808
41808
|
setLoading(false);
|
|
41809
41809
|
});
|
|
41810
|
-
}, [authUser, client
|
|
41810
|
+
}, [authUser, client]);
|
|
41811
41811
|
useEffect(function () {
|
|
41812
41812
|
fetchRecipes(queryConfig);
|
|
41813
41813
|
}, [fetchRecipes, queryConfig]);
|
|
@@ -43922,9 +43922,6 @@ var RecipeInputsForm = function (_a) {
|
|
|
43922
43922
|
} }, g.map(function (input, i) {
|
|
43923
43923
|
var _a;
|
|
43924
43924
|
var hidden = controlledValues && controlledValues[input.name] ? controlledValues[input.name].hidden : false;
|
|
43925
|
-
// if (hidden) {
|
|
43926
|
-
// console.log(input)
|
|
43927
|
-
// }
|
|
43928
43925
|
var defaultValue = controlledValues && controlledValues[input.name] ? controlledValues[input.name].value : input.default;
|
|
43929
43926
|
var inputProps = __assign({}, register(input.name, {
|
|
43930
43927
|
valueAsNumber: ['DAGIntegerInput', 'DAGNumberInput'].includes(input.type)
|