@tabres/react 1.0.0 → 1.0.2
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/components/PublicMenu/Modals/Auth/EmailStep.d.ts +1 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/models/index.esm.js.map +1 -1
- package/dist/models/index.js.map +1 -1
- package/dist/models/modules/customer/models.d.ts +0 -1
- package/dist/models/modules/customer/services.d.ts +2 -2
- package/dist/models/services/translation/locales/az/customer.d.ts +1 -0
- package/dist/models/services/translation/locales/az/error.d.ts +1 -0
- package/dist/models/services/translation/locales/az/index.d.ts +2 -0
- package/dist/models/services/translation/locales/en/error.d.ts +1 -0
- package/dist/models/services/translation/locales/en/index.d.ts +1 -0
- package/dist/models/services/translation/locales/et/customer.d.ts +1 -0
- package/dist/models/services/translation/locales/et/error.d.ts +1 -0
- package/dist/models/services/translation/locales/et/index.d.ts +2 -0
- package/dist/models/services/translation/locales/index.d.ts +11 -0
- package/dist/models/services/translation/locales/nl/customer.d.ts +1 -0
- package/dist/models/services/translation/locales/nl/error.d.ts +1 -0
- package/dist/models/services/translation/locales/nl/index.d.ts +2 -0
- package/dist/models/services/translation/locales/ru/customer.d.ts +1 -0
- package/dist/models/services/translation/locales/ru/error.d.ts +1 -0
- package/dist/models/services/translation/locales/ru/index.d.ts +2 -0
- package/dist/models/services/translation/locales/tr/customer.d.ts +1 -0
- package/dist/models/services/translation/locales/tr/error.d.ts +1 -0
- package/dist/models/services/translation/locales/tr/index.d.ts +2 -0
- package/dist/modules/customer/models.d.ts +0 -1
- package/dist/modules/customer/services.d.ts +2 -2
- package/dist/services/translation/locales/az/customer.d.ts +1 -0
- package/dist/services/translation/locales/az/error.d.ts +1 -0
- package/dist/services/translation/locales/az/index.d.ts +2 -0
- package/dist/services/translation/locales/en/error.d.ts +1 -0
- package/dist/services/translation/locales/en/index.d.ts +1 -0
- package/dist/services/translation/locales/et/customer.d.ts +1 -0
- package/dist/services/translation/locales/et/error.d.ts +1 -0
- package/dist/services/translation/locales/et/index.d.ts +2 -0
- package/dist/services/translation/locales/index.d.ts +11 -0
- package/dist/services/translation/locales/nl/customer.d.ts +1 -0
- package/dist/services/translation/locales/nl/error.d.ts +1 -0
- package/dist/services/translation/locales/nl/index.d.ts +2 -0
- package/dist/services/translation/locales/ru/customer.d.ts +1 -0
- package/dist/services/translation/locales/ru/error.d.ts +1 -0
- package/dist/services/translation/locales/ru/index.d.ts +2 -0
- package/dist/services/translation/locales/tr/customer.d.ts +1 -0
- package/dist/services/translation/locales/tr/error.d.ts +1 -0
- package/dist/services/translation/locales/tr/index.d.ts +2 -0
- package/dist/styles/ui.css +1 -1
- package/dist/styles/ui.css.map +1 -1
- package/dist/utils/index.esm.js +1 -1
- package/dist/utils/index.esm.js.map +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/modules/customer/models.d.ts +0 -1
- package/package.json +10 -8
|
@@ -2,7 +2,6 @@ import { FormErrors } from "@sorocraft/ui";
|
|
|
2
2
|
interface Props {
|
|
3
3
|
formErrors: FormErrors;
|
|
4
4
|
onChange: (email: string) => void;
|
|
5
|
-
onCancel: () => void;
|
|
6
5
|
}
|
|
7
|
-
declare const EmailStep: ({ formErrors, onChange
|
|
6
|
+
declare const EmailStep: ({ formErrors, onChange }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
export default EmailStep;
|