Skip to content

Commit 9356dee

Browse files
committed
upgrade:ui-components(4.5.22-fehorizon.13)
1 parent 6da64ae commit 9356dee

File tree

17 files changed

+325
-1
lines changed

17 files changed

+325
-1
lines changed

packages/guard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"webpack": "^5.72.0"
2424
},
2525
"dependencies": {
26-
"@authing/react-ui-components": "4.5.22-fehorizon.11",
26+
"@authing/react-ui-components": "4.5.22-fehorizon.13",
2727
"axios": "^0.27.2",
2828
"react": "^16.14.0",
2929
"react-dom": "^16.14.0"

packages/native-js-ui-components/lib/index.min.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/native-js-ui-components/lib/index.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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
29+
* Lodash <https://lodash.com/>
30+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
31+
* Released under MIT license <https://lodash.com/license>
32+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
33+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
34+
*/
35+
36+
/**
37+
* @license qrcode.react
38+
* Copyright (c) Paul O'Shannessy
39+
* SPDX-License-Identifier: ISC
40+
*/
41+
42+
/** @license React v0.19.1
43+
* scheduler.production.min.js
44+
*
45+
* Copyright (c) Facebook, Inc. and its affiliates.
46+
*
47+
* This source code is licensed under the MIT license found in the
48+
* LICENSE file in the root directory of this source tree.
49+
*/
50+
51+
/** @license React v16.13.1
52+
* react-dom.production.min.js
53+
*
54+
* Copyright (c) Facebook, Inc. and its affiliates.
55+
*
56+
* This source code is licensed under the MIT license found in the
57+
* LICENSE file in the root directory of this source tree.
58+
*/
59+
60+
/** @license React v16.13.1
61+
* react-is.production.min.js
62+
*
63+
* Copyright (c) Facebook, Inc. and its affiliates.
64+
*
65+
* This source code is licensed under the MIT license found in the
66+
* LICENSE file in the root directory of this source tree.
67+
*/
68+
69+
/** @license React v16.13.1
70+
* react.production.min.js
71+
*
72+
* Copyright (c) Facebook, Inc. and its affiliates.
73+
*
74+
* This source code is licensed under the MIT license found in the
75+
* LICENSE file in the root directory of this source tree.
76+
*/
77+
78+
/** @preserve
79+
* Counter block mode compatible with Dr Brian Gladman fileenc.c
80+
* derived from CryptoJS.mode.CTR
81+
* Jan Hruby jhruby.web@gmail.com
82+
*/
83+
84+
/** @preserve
85+
(c) 2012 by Cédric Mesnil. All rights reserved.
86+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
87+
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
88+
- 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.
89+
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.
90+
*/
91+
92+
//! moment.js
93+
94+
//! moment.js locale configuration
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
}

packages/react-ui-components/lib/index.min.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react-ui-components/lib/index.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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
29+
* Lodash <https://lodash.com/>
30+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
31+
* Released under MIT license <https://lodash.com/license>
32+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
33+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
34+
*/
35+
36+
/**
37+
* @license qrcode.react
38+
* Copyright (c) Paul O'Shannessy
39+
* SPDX-License-Identifier: ISC
40+
*/
41+
42+
/** @license React v0.19.1
43+
* scheduler.production.min.js
44+
*
45+
* Copyright (c) Facebook, Inc. and its affiliates.
46+
*
47+
* This source code is licensed under the MIT license found in the
48+
* LICENSE file in the root directory of this source tree.
49+
*/
50+
51+
/** @license React v16.13.1
52+
* react-is.production.min.js
53+
*
54+
* Copyright (c) Facebook, Inc. and its affiliates.
55+
*
56+
* This source code is licensed under the MIT license found in the
57+
* LICENSE file in the root directory of this source tree.
58+
*/
59+
60+
/** @license React v16.14.0
61+
* react-dom.production.min.js
62+
*
63+
* Copyright (c) Facebook, Inc. and its affiliates.
64+
*
65+
* This source code is licensed under the MIT license found in the
66+
* LICENSE file in the root directory of this source tree.
67+
*/
68+
69+
/** @preserve
70+
* Counter block mode compatible with Dr Brian Gladman fileenc.c
71+
* derived from CryptoJS.mode.CTR
72+
* Jan Hruby jhruby.web@gmail.com
73+
*/
74+
75+
/** @preserve
76+
(c) 2012 by Cédric Mesnil. All rights reserved.
77+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
78+
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
79+
- 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.
80+
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.
81+
*/
82+
83+
//! moment.js
84+
85+
//! moment.js locale configuration
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import '@authing/guard-shim-react/dist/guard.min.css';
2+
import { GuardProps } from '@authing/guard-shim-react';
3+
export declare function Guard(props: GuardProps): JSX.Element;
4+
export * from '@authing/guard-shim-react';

packages/react18-ui-components/lib/index.min.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)