@appcorp/fusion-storybook 0.4.19 → 0.4.21
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.
|
@@ -46,9 +46,7 @@ function formatErrorSummary(
|
|
|
46
46
|
t, errors) {
|
|
47
47
|
if (!(errors === null || errors === void 0 ? void 0 : errors.length))
|
|
48
48
|
return "";
|
|
49
|
-
const lines = errors
|
|
50
|
-
.slice(0, 5)
|
|
51
|
-
.map((e) => t("messagesAutoPostRowError", {
|
|
49
|
+
const lines = errors.slice(0, 5).map((e) => t("messagesAutoPostRowError", {
|
|
52
50
|
computerNumber: e.computerNumber,
|
|
53
51
|
error: e.error,
|
|
54
52
|
}));
|
|
@@ -191,9 +189,20 @@ export const StudentFeeMoreActions = () => {
|
|
|
191
189
|
finally {
|
|
192
190
|
setSubmitting(false);
|
|
193
191
|
}
|
|
194
|
-
}, [
|
|
192
|
+
}, [
|
|
193
|
+
t,
|
|
194
|
+
closeDrawer,
|
|
195
|
+
refreshList,
|
|
196
|
+
computerNumbersText,
|
|
197
|
+
autoPostDate,
|
|
198
|
+
skipFine,
|
|
199
|
+
]);
|
|
195
200
|
const canSubmit = autoPostDate.trim() !== "" &&
|
|
196
201
|
computerNumbersText.trim() !== "" &&
|
|
197
202
|
!submitting;
|
|
198
|
-
return (_jsxs("div", { className: "space-y-4", children: [_jsx(Button
|
|
203
|
+
return (_jsxs("div", { className: "space-y-4", children: [_jsx(Button
|
|
204
|
+
// disabled={new Date().getDate() !== 1}
|
|
205
|
+
, {
|
|
206
|
+
// disabled={new Date().getDate() !== 1}
|
|
207
|
+
onClick: handleCreateMonthly, children: t("actionsButtonCreateMonthly") }), _jsx(Button, { onClick: handleCreateSingleEntry, children: t("actionsButtonSingleEntry") }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-4", children: [_jsx(EnhancedInput, { id: "autoPostDate", info: t("formAutoPostDateInfo"), label: t("formAutoPostDateLabel"), onChange: (e) => setAutoPostDate(e.target.value), onClick: (e) => { var _a, _b; return (_b = (_a = e.currentTarget).showPicker) === null || _b === void 0 ? void 0 : _b.call(_a); }, type: "date", value: autoPostDate }), _jsx(EnhancedTextarea, { id: "autoPostComputerNumbers", info: t("formAutoPostComputerNumbersInfo"), label: t("formAutoPostComputerNumbersLabel"), onChange: (e) => setComputerNumbersText(e.target.value), placeholder: t("formAutoPostComputerNumbersPlaceholder"), rows: 8, value: computerNumbersText }), _jsx(EnhancedCheckbox, { id: "autoPostSkipFine", checked: skipFine, info: t("formSkipFineInfo"), label: t("formSkipFineLabel"), onCheckedChange: (checked) => setSkipFine(!!checked) }), _jsx(Button, { disabled: !canSubmit, onClick: handleAutoPost, children: t("actionsButtonAutoPost") })] })] }));
|
|
199
208
|
};
|