@nocios/crudify-ui 1.0.61 → 1.0.62
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.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -504,7 +504,7 @@ var LoginForm_default = LoginForm;
|
|
|
504
504
|
var import_react4 = require("react");
|
|
505
505
|
var import_material2 = require("@mui/material");
|
|
506
506
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
507
|
-
var ForgotPasswordForm = ({
|
|
507
|
+
var ForgotPasswordForm = ({ onNavigate, onError, crudify: crudify3 }) => {
|
|
508
508
|
const [email, setEmail] = (0, import_react4.useState)("");
|
|
509
509
|
const [loading, setLoading] = (0, import_react4.useState)(false);
|
|
510
510
|
const [errors, setErrors] = (0, import_react4.useState)([]);
|
|
@@ -656,7 +656,7 @@ var ForgotPasswordForm_default = ForgotPasswordForm;
|
|
|
656
656
|
var import_react5 = require("react");
|
|
657
657
|
var import_material3 = require("@mui/material");
|
|
658
658
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
659
|
-
var ResetPasswordForm = ({
|
|
659
|
+
var ResetPasswordForm = ({ onNavigate, onError, searchParams, onResetSuccess, crudify: crudify3 }) => {
|
|
660
660
|
const [newPassword, setNewPassword] = (0, import_react5.useState)("");
|
|
661
661
|
const [confirmPassword, setConfirmPassword] = (0, import_react5.useState)("");
|
|
662
662
|
const [loading, setLoading] = (0, import_react5.useState)(false);
|
|
@@ -971,7 +971,7 @@ var ResetPasswordForm_default = ResetPasswordForm;
|
|
|
971
971
|
var import_react6 = require("react");
|
|
972
972
|
var import_material4 = require("@mui/material");
|
|
973
973
|
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
974
|
-
var CheckCodeForm = ({
|
|
974
|
+
var CheckCodeForm = ({ onNavigate, onError, searchParams, crudify: crudify3 }) => {
|
|
975
975
|
const [code, setCode] = (0, import_react6.useState)("");
|
|
976
976
|
const [loading, setLoading] = (0, import_react6.useState)(false);
|
|
977
977
|
const [errors, setErrors] = (0, import_react6.useState)([]);
|
package/dist/index.mjs
CHANGED
|
@@ -460,7 +460,7 @@ var LoginForm_default = LoginForm;
|
|
|
460
460
|
import { useState as useState3 } from "react";
|
|
461
461
|
import { Typography as Typography2, TextField as TextField2, Button as Button2, Box as Box2, CircularProgress as CircularProgress2, Alert as Alert2, Link as Link2 } from "@mui/material";
|
|
462
462
|
import { Fragment as Fragment2, jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
463
|
-
var ForgotPasswordForm = ({
|
|
463
|
+
var ForgotPasswordForm = ({ onNavigate, onError, crudify: crudify3 }) => {
|
|
464
464
|
const [email, setEmail] = useState3("");
|
|
465
465
|
const [loading, setLoading] = useState3(false);
|
|
466
466
|
const [errors, setErrors] = useState3([]);
|
|
@@ -612,7 +612,7 @@ var ForgotPasswordForm_default = ForgotPasswordForm;
|
|
|
612
612
|
import { useState as useState4, useEffect as useEffect3 } from "react";
|
|
613
613
|
import { Typography as Typography3, TextField as TextField3, Button as Button3, Box as Box3, CircularProgress as CircularProgress3, Alert as Alert3, Link as Link3 } from "@mui/material";
|
|
614
614
|
import { Fragment as Fragment3, jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
615
|
-
var ResetPasswordForm = ({
|
|
615
|
+
var ResetPasswordForm = ({ onNavigate, onError, searchParams, onResetSuccess, crudify: crudify3 }) => {
|
|
616
616
|
const [newPassword, setNewPassword] = useState4("");
|
|
617
617
|
const [confirmPassword, setConfirmPassword] = useState4("");
|
|
618
618
|
const [loading, setLoading] = useState4(false);
|
|
@@ -927,7 +927,7 @@ var ResetPasswordForm_default = ResetPasswordForm;
|
|
|
927
927
|
import { useState as useState5, useEffect as useEffect4 } from "react";
|
|
928
928
|
import { Typography as Typography4, TextField as TextField4, Button as Button4, Box as Box4, CircularProgress as CircularProgress4, Alert as Alert4, Link as Link4 } from "@mui/material";
|
|
929
929
|
import { Fragment as Fragment4, jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
930
|
-
var CheckCodeForm = ({
|
|
930
|
+
var CheckCodeForm = ({ onNavigate, onError, searchParams, crudify: crudify3 }) => {
|
|
931
931
|
const [code, setCode] = useState5("");
|
|
932
932
|
const [loading, setLoading] = useState5(false);
|
|
933
933
|
const [errors, setErrors] = useState5([]);
|