@authing/react-ui-components 3.0.0-rc.2 → 3.0.0-rc.3
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 -1
- package/lib/index.min.css +2 -2
- package/lib/index.min.js +1 -1
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -2115,6 +2115,21 @@ declare module '@authing/react-ui-components/components/_utils/context' {
|
|
|
2115
2115
|
};
|
|
2116
2116
|
export const usePublicConfig: () => ApplicationConfig | undefined;
|
|
2117
2117
|
|
|
2118
|
+
}
|
|
2119
|
+
declare module '@authing/react-ui-components/components/_utils/errorFace' {
|
|
2120
|
+
enum FaceErrorName {
|
|
2121
|
+
NotAllowedError = "NotAllowedError",
|
|
2122
|
+
AbortError = "AbortError",
|
|
2123
|
+
NotReadableError = "NotReadableError",
|
|
2124
|
+
OverconstrainedError = "OverconstrainedError",
|
|
2125
|
+
SecurityError = "SecurityError"
|
|
2126
|
+
}
|
|
2127
|
+
export interface FaceErrorMessage extends DOMException {
|
|
2128
|
+
name: FaceErrorName;
|
|
2129
|
+
}
|
|
2130
|
+
export const faceErrorMessage: (error: FaceErrorMessage) => string;
|
|
2131
|
+
export {};
|
|
2132
|
+
|
|
2118
2133
|
}
|
|
2119
2134
|
declare module '@authing/react-ui-components/components/_utils/guradHttp' {
|
|
2120
2135
|
export class GuardHttp {
|
|
@@ -2361,7 +2376,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2361
2376
|
|
|
2362
2377
|
}
|
|
2363
2378
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2364
|
-
const _default: "3.0.0-rc.
|
|
2379
|
+
const _default: "3.0.0-rc.3";
|
|
2365
2380
|
export default _default;
|
|
2366
2381
|
|
|
2367
2382
|
}
|