@authing/react-ui-components 3.0.0-rc.6 → 3.0.0-rc.7
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 +5 -4
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1452,13 +1452,14 @@ declare module '@authing/react-ui-components/components/InputNumber/index' {
|
|
|
1452
1452
|
import React from 'react';
|
|
1453
1453
|
export interface InputNumberProps extends InputProps {
|
|
1454
1454
|
}
|
|
1455
|
-
export const InputNumber: React.
|
|
1455
|
+
export const InputNumber: React.ForwardRefExoticComponent<InputNumberProps & React.RefAttributes<any>>;
|
|
1456
1456
|
|
|
1457
1457
|
}
|
|
1458
1458
|
declare module '@authing/react-ui-components/components/InputPassword/index' {
|
|
1459
|
+
import { Input } from 'antd';
|
|
1459
1460
|
import { PasswordProps } from 'antd/lib/input';
|
|
1460
|
-
import
|
|
1461
|
-
export const InputPassword:
|
|
1461
|
+
import React from 'react';
|
|
1462
|
+
export const InputPassword: React.ForwardRefExoticComponent<PasswordProps & React.RefAttributes<React.RefObject<Input>>>;
|
|
1462
1463
|
|
|
1463
1464
|
}
|
|
1464
1465
|
declare module '@authing/react-ui-components/components/Login/codemap' {
|
|
@@ -2399,7 +2400,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2399
2400
|
|
|
2400
2401
|
}
|
|
2401
2402
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2402
|
-
const _default: "3.0.0-rc.
|
|
2403
|
+
const _default: "3.0.0-rc.7";
|
|
2403
2404
|
export default _default;
|
|
2404
2405
|
|
|
2405
2406
|
}
|