@tsed/react-formio 1.13.5 → 1.13.7-rc.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/dist/index.modern.js
CHANGED
|
@@ -539,7 +539,7 @@ function DefaultOperationButton(props) {
|
|
|
539
539
|
return /*#__PURE__*/React.createElement("button", {
|
|
540
540
|
className: classnames(className, ["btn", buttonOutline && "outline", buttonType].filter(Boolean).join("-"), `btn-${buttonSize}`),
|
|
541
541
|
onClick: stopPropagationWrapper(() => onClick(action))
|
|
542
|
-
}, icon ? /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement("i", {
|
|
542
|
+
}, icon ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("i", {
|
|
543
543
|
className: iconClass(undefined, icon)
|
|
544
544
|
}), " ", title && " ") : null, title && /*#__PURE__*/React.createElement("span", {
|
|
545
545
|
className: icon && title ? "ml-1" : ""
|
|
@@ -1353,7 +1353,7 @@ function NamedFormAccess({
|
|
|
1353
1353
|
children
|
|
1354
1354
|
}) {
|
|
1355
1355
|
const [isValid, setIsValid] = useState(true);
|
|
1356
|
-
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Form, {
|
|
1356
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Form, {
|
|
1357
1357
|
name: name,
|
|
1358
1358
|
form: form[name],
|
|
1359
1359
|
submission: submissions[name],
|
|
@@ -7834,7 +7834,7 @@ function DefaultCell({
|
|
|
7834
7834
|
render = f => f
|
|
7835
7835
|
}) {
|
|
7836
7836
|
if (value === undefined) {
|
|
7837
|
-
return /*#__PURE__*/React.createElement(
|
|
7837
|
+
return /*#__PURE__*/React.createElement("span", null);
|
|
7838
7838
|
}
|
|
7839
7839
|
|
|
7840
7840
|
const rendered = render(value);
|
|
@@ -7903,7 +7903,7 @@ function SliderColumnFilter({
|
|
|
7903
7903
|
});
|
|
7904
7904
|
return [min, max];
|
|
7905
7905
|
}, [id, preFilteredRows]);
|
|
7906
|
-
return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement("input", {
|
|
7906
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("input", {
|
|
7907
7907
|
type: "range",
|
|
7908
7908
|
min: min,
|
|
7909
7909
|
max: max,
|