@insforge/react 1.1.1-dev.0 → 1.1.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/atoms.cjs.map +1 -1
- package/dist/atoms.d.cts +3 -5
- package/dist/atoms.d.ts +3 -5
- package/dist/atoms.js.map +1 -1
- package/dist/components.cjs.map +1 -1
- package/dist/components.d.cts +1 -1
- package/dist/components.d.ts +1 -1
- package/dist/components.js.map +1 -1
- package/dist/forms.cjs.map +1 -1
- package/dist/forms.js.map +1 -1
- package/dist/hooks.cjs.map +1 -1
- package/dist/hooks.js.map +1 -1
- package/dist/index.cjs +36 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -11
- package/dist/index.d.ts +2 -11
- package/dist/index.js +37 -45
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/atoms.d.cts
CHANGED
|
@@ -56,14 +56,12 @@ interface AuthHeaderProps {
|
|
|
56
56
|
declare function AuthHeader({ title, subtitle }: AuthHeaderProps): react_jsx_runtime.JSX.Element;
|
|
57
57
|
|
|
58
58
|
interface AuthErrorBannerProps {
|
|
59
|
-
error
|
|
59
|
+
error?: string;
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
62
|
* Error message banner for authentication forms.
|
|
63
63
|
*/
|
|
64
|
-
declare function AuthErrorBanner({ error }:
|
|
65
|
-
error?: string;
|
|
66
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
64
|
+
declare function AuthErrorBanner({ error }: AuthErrorBannerProps): react_jsx_runtime.JSX.Element | null;
|
|
67
65
|
|
|
68
66
|
interface AuthFormFieldProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
69
67
|
label: string;
|
|
@@ -251,4 +249,4 @@ interface AuthResetPasswordVerificationStepProps {
|
|
|
251
249
|
*/
|
|
252
250
|
declare function AuthResetPasswordVerificationStep({ email, method, onVerifyCode, onResendEmail, }: AuthResetPasswordVerificationStepProps): react_jsx_runtime.JSX.Element;
|
|
253
251
|
|
|
254
|
-
export { AuthBranding, AuthContainer, type AuthContainerProps, AuthDivider, type AuthDividerProps, AuthEmailVerificationStep, AuthErrorBanner, type AuthErrorBannerProps, AuthFormField, type AuthFormFieldProps, AuthHeader, type AuthHeaderProps, AuthLink, type AuthLinkProps, AuthOAuthButton, type AuthOAuthButtonProps, AuthOAuthProviders, type AuthOAuthProvidersProps, AuthPasswordField, type AuthPasswordFieldProps, AuthPasswordStrengthIndicator, type AuthPasswordStrengthIndicatorProps, AuthResetPasswordVerificationStep, AuthSubmitButton, type AuthSubmitButtonProps, AuthVerificationCodeInput, type AuthVerificationCodeInputProps };
|
|
252
|
+
export { AuthBranding, AuthContainer, type AuthContainerProps, AuthDivider, type AuthDividerProps, AuthEmailVerificationStep, type AuthEmailVerificationStepProps, AuthErrorBanner, type AuthErrorBannerProps, AuthFormField, type AuthFormFieldProps, AuthHeader, type AuthHeaderProps, AuthLink, type AuthLinkProps, AuthOAuthButton, type AuthOAuthButtonProps, AuthOAuthProviders, type AuthOAuthProvidersProps, AuthPasswordField, type AuthPasswordFieldProps, AuthPasswordStrengthIndicator, type AuthPasswordStrengthIndicatorProps, AuthResetPasswordVerificationStep, type AuthResetPasswordVerificationStepProps, AuthSubmitButton, type AuthSubmitButtonProps, AuthVerificationCodeInput, type AuthVerificationCodeInputProps };
|
package/dist/atoms.d.ts
CHANGED
|
@@ -56,14 +56,12 @@ interface AuthHeaderProps {
|
|
|
56
56
|
declare function AuthHeader({ title, subtitle }: AuthHeaderProps): react_jsx_runtime.JSX.Element;
|
|
57
57
|
|
|
58
58
|
interface AuthErrorBannerProps {
|
|
59
|
-
error
|
|
59
|
+
error?: string;
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
62
|
* Error message banner for authentication forms.
|
|
63
63
|
*/
|
|
64
|
-
declare function AuthErrorBanner({ error }:
|
|
65
|
-
error?: string;
|
|
66
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
64
|
+
declare function AuthErrorBanner({ error }: AuthErrorBannerProps): react_jsx_runtime.JSX.Element | null;
|
|
67
65
|
|
|
68
66
|
interface AuthFormFieldProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
69
67
|
label: string;
|
|
@@ -251,4 +249,4 @@ interface AuthResetPasswordVerificationStepProps {
|
|
|
251
249
|
*/
|
|
252
250
|
declare function AuthResetPasswordVerificationStep({ email, method, onVerifyCode, onResendEmail, }: AuthResetPasswordVerificationStepProps): react_jsx_runtime.JSX.Element;
|
|
253
251
|
|
|
254
|
-
export { AuthBranding, AuthContainer, type AuthContainerProps, AuthDivider, type AuthDividerProps, AuthEmailVerificationStep, AuthErrorBanner, type AuthErrorBannerProps, AuthFormField, type AuthFormFieldProps, AuthHeader, type AuthHeaderProps, AuthLink, type AuthLinkProps, AuthOAuthButton, type AuthOAuthButtonProps, AuthOAuthProviders, type AuthOAuthProvidersProps, AuthPasswordField, type AuthPasswordFieldProps, AuthPasswordStrengthIndicator, type AuthPasswordStrengthIndicatorProps, AuthResetPasswordVerificationStep, AuthSubmitButton, type AuthSubmitButtonProps, AuthVerificationCodeInput, type AuthVerificationCodeInputProps };
|
|
252
|
+
export { AuthBranding, AuthContainer, type AuthContainerProps, AuthDivider, type AuthDividerProps, AuthEmailVerificationStep, type AuthEmailVerificationStepProps, AuthErrorBanner, type AuthErrorBannerProps, AuthFormField, type AuthFormFieldProps, AuthHeader, type AuthHeaderProps, AuthLink, type AuthLinkProps, AuthOAuthButton, type AuthOAuthButtonProps, AuthOAuthProviders, type AuthOAuthProvidersProps, AuthPasswordField, type AuthPasswordFieldProps, AuthPasswordStrengthIndicator, type AuthPasswordStrengthIndicatorProps, AuthResetPasswordVerificationStep, type AuthResetPasswordVerificationStepProps, AuthSubmitButton, type AuthSubmitButtonProps, AuthVerificationCodeInput, type AuthVerificationCodeInputProps };
|