@mindly/ui-components 8.1.2 → 8.2.0

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 * as React from 'react';
2
+ import { FC } from 'react';
3
+ export declare const IconGoogleCalendar: FC<React.SVGAttributes<SVGElement>>;
@@ -8,6 +8,8 @@ type AuthProviderProps = React.PropsWithChildren<{
8
8
  */
9
9
  webAuthListener?: (callback: (user: User | null) => void) => () => void;
10
10
  errorLoggerFunction: (message: string) => void;
11
+ onInitUser: (userId: string) => Promise<unknown>;
12
+ fallback: React.ReactNode;
11
13
  }>;
12
14
  export declare const AuthProvider: FC<AuthProviderProps>;
13
15
  export {};
package/dist/index.d.ts CHANGED
@@ -2007,6 +2007,8 @@ type AuthProviderProps = React__default.PropsWithChildren<{
2007
2007
  */
2008
2008
  webAuthListener?: (callback: (user: User | null) => void) => () => void;
2009
2009
  errorLoggerFunction: (message: string) => void;
2010
+ onInitUser: (userId: string) => Promise<unknown>;
2011
+ fallback: React__default.ReactNode;
2010
2012
  }>;
2011
2013
  declare const AuthProvider: FC<AuthProviderProps>;
2012
2014
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.1.2",
3
+ "version": "8.2.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",