@descope/flow-components 2.0.612 → 2.0.614
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/dist/fm/575.js +1 -1
- package/dist/fm/598.js +1 -1
- package/dist/fm/84.js +2 -2
- package/dist/fm/@mf-types/compiled-types/RecaptchaV2/RecaptchaV2.d.ts +5 -1
- package/dist/fm/@mf-types/compiled-types/types.d.ts +1 -0
- package/dist/fm/@mf-types.zip +0 -0
- package/dist/fm/__federation_expose_componentClasses.js +1 -1
- package/dist/fm/__federation_expose_components.js +1 -1
- package/dist/fm/__federation_expose_theme.js +1 -1
- package/dist/fm/flowComponents.js +1 -1
- package/dist/fm/main.js +1 -1
- package/dist/fm/mf-manifest.json +1 -1
- package/dist/fm/mf-stats.json +1 -1
- package/dist/index.cjs.js +49 -29
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +6 -1
- package/dist/types/RecaptchaV2/RecaptchaV2.d.ts +5 -1
- package/dist/types/types.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { Mode, TextAlign, TypographyVariants } from '../types';
|
|
2
|
+
import { CaptchaVariants, Mode, TextAlign, TypographyVariants } from '../types';
|
|
3
3
|
type Props = {
|
|
4
4
|
connector?: string;
|
|
5
5
|
enterprise?: boolean;
|
|
@@ -10,6 +10,10 @@ type Props = {
|
|
|
10
10
|
textAlign?: TextAlign;
|
|
11
11
|
'full-width'?: boolean;
|
|
12
12
|
readOnly?: boolean;
|
|
13
|
+
variant?: CaptchaVariants;
|
|
14
|
+
src?: string;
|
|
15
|
+
width?: string;
|
|
16
|
+
height?: string;
|
|
13
17
|
};
|
|
14
18
|
declare const RecaptchaV2: React.ForwardRefExoticComponent<Props & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
15
19
|
export default RecaptchaV2;
|
package/dist/types/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/flow-components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.614",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"webpack-dev-server": "5.0.4"
|
|
113
113
|
},
|
|
114
114
|
"dependencies": {
|
|
115
|
-
"@descope/web-components-ui": "1.
|
|
115
|
+
"@descope/web-components-ui": "1.121.0"
|
|
116
116
|
},
|
|
117
117
|
"peerDependencies": {
|
|
118
118
|
"react": ">= 18"
|