@authing/react-ui-components 3.1.5-rc.0 → 3.1.5-rc.1
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 +16 -2
- package/lib/index.min.css +2 -2
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -1056,6 +1056,19 @@ declare module '@authing/react-ui-components/components/AuthingTabs/index' {
|
|
|
1056
1056
|
}
|
|
1057
1057
|
export const AuthingTabs: FC<AuthingTabsProps>;
|
|
1058
1058
|
|
|
1059
|
+
}
|
|
1060
|
+
declare module '@authing/react-ui-components/components/Back/index' {
|
|
1061
|
+
import React from 'react';
|
|
1062
|
+
import './styles.less';
|
|
1063
|
+
export interface BackProps {
|
|
1064
|
+
isRender?: boolean;
|
|
1065
|
+
}
|
|
1066
|
+
export const BackLogin: React.FC<BackProps>;
|
|
1067
|
+
export interface BackCustomProps extends BackProps {
|
|
1068
|
+
onBack?: () => void;
|
|
1069
|
+
}
|
|
1070
|
+
export const BackCustom: React.FC<BackCustomProps>;
|
|
1071
|
+
|
|
1059
1072
|
}
|
|
1060
1073
|
declare module '@authing/react-ui-components/components/BindTotp/businessRequest' {
|
|
1061
1074
|
export enum BindTotpBusinessAction {
|
|
@@ -2457,7 +2470,8 @@ declare module '@authing/react-ui-components/components/SingleComponent/index' {
|
|
|
2457
2470
|
}
|
|
2458
2471
|
declare module '@authing/react-ui-components/components/SubmitButton/index' {
|
|
2459
2472
|
import React from 'react';
|
|
2460
|
-
|
|
2473
|
+
import { ButtonProps } from 'antd/lib/button';
|
|
2474
|
+
interface SubmitButtonProps extends ButtonProps {
|
|
2461
2475
|
text?: string;
|
|
2462
2476
|
className?: string;
|
|
2463
2477
|
onClick?: any;
|
|
@@ -3174,7 +3188,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3174
3188
|
|
|
3175
3189
|
}
|
|
3176
3190
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3177
|
-
const _default: "3.1.5-rc.
|
|
3191
|
+
const _default: "3.1.5-rc.1";
|
|
3178
3192
|
export default _default;
|
|
3179
3193
|
|
|
3180
3194
|
}
|