@authing/react-ui-components 4.4.1-alpha.7 → 4.4.1-alpha.8

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.4.1-alpha.7",
3
+ "version": "4.4.1-alpha.8",
4
4
  "private": false,
5
5
  "main": "lib/index.min.js",
6
6
  "typings": "types/index.d.ts",
@@ -27,6 +27,7 @@ export interface AuthingResponse<T = any> {
27
27
  message?: string;
28
28
  flowHandle?: string;
29
29
  workflowInstanceId?: string;
30
+ taskName?: string;
30
31
  }
31
32
  export interface AuthingGuardResponse<T = any> extends AuthingResponse<T> {
32
33
  onGuardHandling?: () => CodeAction;
@@ -27,7 +27,7 @@ export declare const getClassnames: (classnames: (string | boolean | undefined)[
27
27
  * @param item
28
28
  * @returns {boolean}
29
29
  */
30
- export declare function isObject(item: any): any;
30
+ export declare function isObject(item: any): boolean;
31
31
  /**
32
32
  * https://www.itranslater.com/qa/details/2115518846294557696
33
33
  * Deep merge two objects.
@@ -1,2 +1,2 @@
1
- declare const _default: "4.4.1-alpha.7";
1
+ declare const _default: "4.4.1-alpha.8";
2
2
  export default _default;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function DownloadVerifier(): JSX.Element;
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function LoginApp(): JSX.Element;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const ScanQrcode: React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<unknown>>;
@@ -1,11 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import './steps.styles.less';
3
- interface StepsProps {
4
- current: number;
5
- items: StepItem[];
6
- }
7
- interface StepItem {
8
- title: ReactNode;
9
- }
10
- export declare function Steps(props: StepsProps): JSX.Element;
11
- export {};
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import './styles.less';
3
- export declare function AppOtpVerify(): JSX.Element;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- export declare const FieldContext: React.Context<{
3
- setStatus: (status: 'focus' | 'blur') => void;
4
- }>;
@@ -1,8 +0,0 @@
1
- import { FC } from 'react';
2
- import { FormItemProps } from 'antd/lib/form';
3
- declare type Status = 'blur' | 'focus';
4
- export declare const CommonFormItem: FC<FormItemProps>;
5
- export declare const Item: FC<FormItemProps & {
6
- inputstatus: Status;
7
- }>;
8
- export {};
@@ -1,7 +0,0 @@
1
- import { InputProps } from 'antd/lib/input';
2
- import { FC } from 'react';
3
- import './styles.less';
4
- export declare const CommonInput: FC<InputProps & {
5
- fieldcontext?: any;
6
- ref?: any;
7
- }>;