@authing/native-js-ui-components 2.4.52 → 2.4.55

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/lib/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  declare module '@authing/native-js-ui-components/App' {
2
2
  /// <reference types="react" />
3
- import './App.css';
3
+ import "./App.css";
4
4
  function App(): JSX.Element;
5
5
  export default App;
6
6
 
@@ -10,8 +10,8 @@ declare module '@authing/native-js-ui-components/App.test' {
10
10
 
11
11
  }
12
12
  declare module '@authing/native-js-ui-components/components/AuthingGuard/index' {
13
- import { User, GuardMode, UserConfig, GuardScenes, LoginMethods, getAuthClient, CommonMessage, initAuthClient, RegisterMethods, GuardEventsHandler, AuthenticationClient, GuardEventsHandlerKebab, GuardEventsCamelToKebabMap, AuthenticationClientOptions } from '@authing/react-ui-components';
14
- import '@authing/react-ui-components/lib/index.min.css';
13
+ import { User, GuardMode, UserConfig, GuardScenes, LoginMethods, getAuthClient, CommonMessage, initAuthClient, RegisterMethods, GuardEventsHandler, AuthenticationClient, GuardEventsHandlerKebab, GuardEventsCamelToKebabMap, AuthenticationClientOptions } from "@authing/react-ui-components";
14
+ import "@authing/react-ui-components/lib/index.min.css";
15
15
  export type { User, UserConfig, CommonMessage, GuardEventsHandler, AuthenticationClient, GuardEventsHandlerKebab, AuthenticationClientOptions, };
16
16
  export { GuardMode, GuardScenes, LoginMethods, getAuthClient, initAuthClient, RegisterMethods, GuardEventsCamelToKebabMap, };
17
17
  export type EventListeners = {
@@ -20,7 +20,8 @@ declare module '@authing/native-js-ui-components/components/AuthingGuard/index'
20
20
  export class AuthingGuard {
21
21
  private appId;
22
22
  private config?;
23
- constructor(appId: string, config?: UserConfig | undefined);
23
+ private tenantId?;
24
+ constructor(appId: string, config?: UserConfig | undefined, tenantId?: string | undefined);
24
25
  static getGuardContainer(selector?: string | HTMLElement): Element | null;
25
26
  private visible;
26
27
  private eventListeners;