@authing/native-js-ui-components 4.4.0-alpha.52 → 4.4.0-alpha.54

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.
@@ -1,115 +0,0 @@
1
- /*
2
- object-assign
3
- (c) Sindre Sorhus
4
- @license MIT
5
- */
6
-
7
- /*
8
- object-assign
9
- (c) Sindre Sorhus
10
- @license MIT
11
- */
12
-
13
- /*!
14
- Copyright (c) 2018 Jed Watson.
15
- Licensed under the MIT License (MIT), see
16
- http://jedwatson.github.io/classnames
17
- */
18
-
19
- /*!
20
- Copyright (c) 2018 Jed Watson.
21
- Licensed under the MIT License (MIT), see
22
- http://jedwatson.github.io/classnames
23
- */
24
-
25
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
26
-
27
- /**
28
- * @license React
29
- * react-dom.production.min.js
30
- *
31
- * Copyright (c) Facebook, Inc. and its affiliates.
32
- *
33
- * This source code is licensed under the MIT license found in the
34
- * LICENSE file in the root directory of this source tree.
35
- */
36
-
37
- /**
38
- * @license React
39
- * react.production.min.js
40
- *
41
- * Copyright (c) Facebook, Inc. and its affiliates.
42
- *
43
- * This source code is licensed under the MIT license found in the
44
- * LICENSE file in the root directory of this source tree.
45
- */
46
-
47
- /**
48
- * @license React
49
- * scheduler.production.min.js
50
- *
51
- * Copyright (c) Facebook, Inc. and its affiliates.
52
- *
53
- * This source code is licensed under the MIT license found in the
54
- * LICENSE file in the root directory of this source tree.
55
- */
56
-
57
- /**
58
- * @license qrcode.react
59
- * Copyright (c) Paul O'Shannessy
60
- * SPDX-License-Identifier: ISC
61
- */
62
-
63
- /** @license React v0.19.1
64
- * scheduler.production.min.js
65
- *
66
- * Copyright (c) Facebook, Inc. and its affiliates.
67
- *
68
- * This source code is licensed under the MIT license found in the
69
- * LICENSE file in the root directory of this source tree.
70
- */
71
-
72
- /** @license React v16.13.1
73
- * react-dom.production.min.js
74
- *
75
- * Copyright (c) Facebook, Inc. and its affiliates.
76
- *
77
- * This source code is licensed under the MIT license found in the
78
- * LICENSE file in the root directory of this source tree.
79
- */
80
-
81
- /** @license React v16.13.1
82
- * react-is.production.min.js
83
- *
84
- * Copyright (c) Facebook, Inc. and its affiliates.
85
- *
86
- * This source code is licensed under the MIT license found in the
87
- * LICENSE file in the root directory of this source tree.
88
- */
89
-
90
- /** @license React v16.13.1
91
- * react.production.min.js
92
- *
93
- * Copyright (c) Facebook, Inc. and its affiliates.
94
- *
95
- * This source code is licensed under the MIT license found in the
96
- * LICENSE file in the root directory of this source tree.
97
- */
98
-
99
- /** @preserve
100
- * Counter block mode compatible with Dr Brian Gladman fileenc.c
101
- * derived from CryptoJS.mode.CTR
102
- * Jan Hruby jhruby.web@gmail.com
103
- */
104
-
105
- /** @preserve
106
- (c) 2012 by Cédric Mesnil. All rights reserved.
107
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
108
- - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
109
- - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
110
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
111
- */
112
-
113
- //! moment.js
114
-
115
- //! moment.js locale configuration
@@ -1,35 +0,0 @@
1
- import { GuardLocalConfig, AuthenticationClient, GuardEventsKebabToCamelType } from '@authing/guard-shim-react';
2
- import '@authing/guard-shim-react/dist/guard.min.css';
3
- export * from '@authing/guard-shim-react';
4
- export interface NativeGuardProps {
5
- appId?: string;
6
- config?: Partial<GuardLocalConfig>;
7
- tenantId?: string;
8
- authClient?: AuthenticationClient;
9
- }
10
- export interface NativeGuardConstructor {
11
- (appId?: string | NativeGuardProps, config?: Partial<GuardLocalConfig>, tenantId?: string, authClient?: AuthenticationClient): void;
12
- (props: NativeGuardProps): void;
13
- }
14
- export declare type GuardEventListeners = {
15
- [key in keyof GuardEventsKebabToCamelType]: Exclude<Required<GuardEventsKebabToCamelType>[key], undefined>[];
16
- };
17
- export declare class Guard {
18
- appId?: string;
19
- config?: Partial<GuardLocalConfig>;
20
- tenantId?: string;
21
- authClient?: AuthenticationClient;
22
- visible?: boolean;
23
- constructor(props?: NativeGuardProps);
24
- constructor(appId?: string, config?: Partial<GuardLocalConfig>, tenantId?: string, authClient?: AuthenticationClient);
25
- static getGuardContainer(selector?: string | HTMLElement): Element | null;
26
- private eventListeners;
27
- render(): void;
28
- render(aliginOrCb: () => void): void;
29
- render(aliginOrCb: 'none' | 'center' | 'left' | 'right'): void;
30
- render(aliginOrCb: 'none' | 'center' | 'left' | 'right', callback: () => void): void;
31
- on<T extends keyof GuardEventsKebabToCamelType>(evt: T, handler: Exclude<GuardEventsKebabToCamelType[T], undefined>): void;
32
- show(): void;
33
- hide(): void;
34
- unmountComponent(): void;
35
- }