@authing/react-ui-components 4.3.3-fsl.3 → 4.3.3-fsl.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authing/react-ui-components",
3
- "version": "4.3.3-fsl.3",
3
+ "version": "4.3.3-fsl.5",
4
4
  "private": false,
5
5
  "main": "lib/index.min.js",
6
6
  "typings": "types/index.d.ts",
@@ -91,6 +91,7 @@ export interface ICasConnectionConfig {
91
91
  export interface SocialConnectionItem {
92
92
  name: string;
93
93
  name_en: string;
94
+ embedded?: boolean;
94
95
  displayName: string;
95
96
  logo: string;
96
97
  description: string;
@@ -248,6 +249,7 @@ export interface ApplicationConfig {
248
249
  requestHostname: string;
249
250
  identityProviders: {
250
251
  identifier: string;
252
+ embedded?: boolean;
251
253
  protocol: Protocol;
252
254
  displayName: string;
253
255
  logo: string;
@@ -320,4 +322,6 @@ export interface ApplicationConfig {
320
322
  appRobotVerify: 'always_enable' | 'disable' | 'condition_set';
321
323
  /** 用户池的人机验证策略,始终开启、不开启、设置条件触发 */
322
324
  userpoolRobotVerify: 'always_enable' | 'disable' | 'condition_set';
325
+ /**登录页面第三方跳转地址 */
326
+ loginPageJumpUrl?: string;
323
327
  }
@@ -1,2 +1,2 @@
1
- declare const _default: "4.3.3-fsl.3";
1
+ declare const _default: "4.3.3-fsl.5";
2
2
  export default _default;
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import { UserRadioItemProps, UserRadioProps } from './interface';
3
- import './styles.less';
4
- export declare const UserRadioItem: React.FC<UserRadioItemProps>;
5
- export declare const UserRadio: React.FC<UserRadioProps>;
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- import './styles.less';
3
- export declare const GuardAccountMergeView: React.FC;
@@ -1,27 +0,0 @@
1
- export interface BriefUserInfo {
2
- displayName: string;
3
- avatar: string;
4
- phone: string;
5
- email: string;
6
- username: string;
7
- name: string;
8
- }
9
- export interface GuardAccountMergeInitData {
10
- currentUserInfo: BriefUserInfo;
11
- existingUserInfo: BriefUserInfo;
12
- mergeToken?: string;
13
- }
14
- export interface UserRadioProps {
15
- currentUserInfo: BriefUserInfo;
16
- existingUserInfo: BriefUserInfo;
17
- onChange?: (value: any) => void;
18
- value?: any;
19
- }
20
- export interface UserRadioItemProps extends BriefUserInfo {
21
- value: boolean;
22
- selected: boolean;
23
- onClick: (value: boolean) => void;
24
- }
25
- export declare enum AuthFlowAction {
26
- MERGE = "confirm-account-merge"
27
- }
@@ -1,3 +0,0 @@
1
- import { User } from 'authing-js-sdk';
2
- export declare const getDisplayName: (user: User) => string;
3
- export declare const getDisplayNameByEmail: (displayName: string) => string;
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- interface SendPhoneCodeProps {
3
- publicConfig: any;
4
- }
5
- export declare const SendPhoneCode: (props: SendPhoneCodeProps) => JSX.Element;
6
- export {};
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- export declare type OptionType = {
3
- id: string;
4
- name: string;
5
- children: OptionType[];
6
- };
7
- interface TreeSelectProps {
8
- options: OptionType[];
9
- }
10
- declare const TreeSelect: React.FC<TreeSelectProps>;
11
- export default TreeSelect;