gsintegrations 0.0.237 → 0.0.238
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/bundle.cjs.js +1 -1
- package/dist/bundle.esm.js +1 -1
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -119704,7 +119704,7 @@ const MonthlyFeePage = (props) => {
|
|
|
119704
119704
|
// Use the business logic hook for state and handlers
|
|
119705
119705
|
const { data, fns } = useMonthlyFeePage(props);
|
|
119706
119706
|
return (React$1.createElement(StandardPageLayout, { title: "Mensalidade", onBack: fns.handleBack, onSave: fns.handleSave, canSave: data.canSave, isLoading: data.isLoading },
|
|
119707
|
-
React$1.createElement(Container$1, { sx: { p: 0 }, maxWidth: "
|
|
119707
|
+
React$1.createElement(Container$1, { sx: { p: 0 }, maxWidth: "lg" },
|
|
119708
119708
|
React$1.createElement(MonthlyFeeForm, { data: data.formData, onChange: fns.handleChange, onSelectChange: fns.handleSelectChange, validationErrors: data.validationErrors, accountOptions: data.accountOptions })),
|
|
119709
119709
|
React$1.createElement(Snackbar$1, { open: data.snackbar.open, autoHideDuration: 4000, onClose: () => fns.setSnackbar((s) => (Object.assign(Object.assign({}, s), { open: false }))), anchorOrigin: { vertical: "bottom", horizontal: "center" } },
|
|
119710
119710
|
React$1.createElement(Alert$1, { onClose: () => fns.setSnackbar((s) => (Object.assign(Object.assign({}, s), { open: false }))), severity: data.snackbar.severity, sx: { width: "100%" } }, data.snackbar.message))));
|
package/dist/bundle.esm.js
CHANGED
|
@@ -119684,7 +119684,7 @@ const MonthlyFeePage = (props) => {
|
|
|
119684
119684
|
// Use the business logic hook for state and handlers
|
|
119685
119685
|
const { data, fns } = useMonthlyFeePage(props);
|
|
119686
119686
|
return (React__default.createElement(StandardPageLayout, { title: "Mensalidade", onBack: fns.handleBack, onSave: fns.handleSave, canSave: data.canSave, isLoading: data.isLoading },
|
|
119687
|
-
React__default.createElement(Container$1, { sx: { p: 0 }, maxWidth: "
|
|
119687
|
+
React__default.createElement(Container$1, { sx: { p: 0 }, maxWidth: "lg" },
|
|
119688
119688
|
React__default.createElement(MonthlyFeeForm, { data: data.formData, onChange: fns.handleChange, onSelectChange: fns.handleSelectChange, validationErrors: data.validationErrors, accountOptions: data.accountOptions })),
|
|
119689
119689
|
React__default.createElement(Snackbar$1, { open: data.snackbar.open, autoHideDuration: 4000, onClose: () => fns.setSnackbar((s) => (Object.assign(Object.assign({}, s), { open: false }))), anchorOrigin: { vertical: "bottom", horizontal: "center" } },
|
|
119690
119690
|
React__default.createElement(Alert$1, { onClose: () => fns.setSnackbar((s) => (Object.assign(Object.assign({}, s), { open: false }))), severity: data.snackbar.severity, sx: { width: "100%" } }, data.snackbar.message))));
|
package/package.json
CHANGED