@bigbinary/neeto-rules-frontend 0.6.3 → 0.6.4
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.cjs.js +6 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.cjs.js
CHANGED
|
@@ -10741,6 +10741,7 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
10741
10741
|
errors = _useFormikContext.errors,
|
|
10742
10742
|
touched = _useFormikContext.touched;
|
|
10743
10743
|
var optionList = elementProps.actionOptions;
|
|
10744
|
+
var ActionChildren = action.children;
|
|
10744
10745
|
var actions = values[parentName].value || [];
|
|
10745
10746
|
var label = index ? t("neetoRules.common.and", {
|
|
10746
10747
|
what: t("neetoRules.common.then")
|
|
@@ -10868,6 +10869,11 @@ var ActionItem = function ActionItem(_ref) {
|
|
|
10868
10869
|
selectedField: selectedField,
|
|
10869
10870
|
name: "".concat(name, ".metadata"),
|
|
10870
10871
|
options: getSelectedFieldOptions()
|
|
10872
|
+
}), neetoCist.isPresent(action === null || action === void 0 ? void 0 : action.children) && /*#__PURE__*/React__default["default"].createElement(ActionChildren, {
|
|
10873
|
+
action: action,
|
|
10874
|
+
index: index,
|
|
10875
|
+
selectedField: selectedField,
|
|
10876
|
+
parentFieldName: name
|
|
10871
10877
|
}));
|
|
10872
10878
|
};
|
|
10873
10879
|
var ActionItem$1 = /*#__PURE__*/React.memo(ActionItem);
|