@goodhood-web/nebenan-base 3.4.0-development.55 → 3.4.0-development.56

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.
@@ -0,0 +1,3 @@
1
+ import { RegisterProps } from './Register.types';
2
+ declare const Register: ({ onSubmit, withGoogleSSO }: RegisterProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Register;
@@ -0,0 +1,4 @@
1
+ export interface RegisterProps {
2
+ onSubmit: (authToken: string) => void;
3
+ withGoogleSSO?: boolean;
4
+ }
@@ -0,0 +1,3 @@
1
+ import { PrivacyInfoModalHeaderProps } from './PrivacyInfoModal.types';
2
+ export declare const PrivacyInfoModalBody: () => import("react/jsx-runtime").JSX.Element;
3
+ export declare const PrivacyInfoModalHeader: ({ onClose }: PrivacyInfoModalHeaderProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export interface PrivacyInfoModalHeaderProps {
2
+ onClose: () => void;
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/nebenan-base",
3
- "version": "3.4.0-development.55",
3
+ "version": "3.4.0-development.56",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",