@aemforms/af-core 0.22.111 → 0.22.112
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/esm/afb-runtime.js +1 -1
- package/esm/types/src/types/Json.d.ts +1 -1
- package/lib/Captcha.js +1 -1
- package/lib/types/Json.d.ts +1 -1
- package/package.json +2 -2
package/esm/afb-runtime.js
CHANGED
|
@@ -4749,7 +4749,7 @@ class Captcha extends Field {
|
|
|
4749
4749
|
super(params, _options);
|
|
4750
4750
|
this._captchaDisplayMode = params.captchaDisplayMode;
|
|
4751
4751
|
this._captchaProvider = params.captchaProvider;
|
|
4752
|
-
this._captchaSiteKey = params.
|
|
4752
|
+
this._captchaSiteKey = params.captchaSiteKey;
|
|
4753
4753
|
}
|
|
4754
4754
|
getDataNode() {
|
|
4755
4755
|
return undefined;
|
|
@@ -104,7 +104,7 @@ export type FieldJson = BaseJson & TranslationFieldJson & {
|
|
|
104
104
|
export type CaptchaJson = FieldJson & {
|
|
105
105
|
captchaDisplayMode?: CaptchaDisplayMode | undefined;
|
|
106
106
|
captchaProvider?: string | undefined;
|
|
107
|
-
|
|
107
|
+
captchaSiteKey?: string | undefined;
|
|
108
108
|
};
|
|
109
109
|
export type ContainerJson = BaseJson & {
|
|
110
110
|
items: Array<FieldJson | ContainerJson>;
|
package/lib/Captcha.js
CHANGED
|
@@ -9,7 +9,7 @@ class Captcha extends Field_1.default {
|
|
|
9
9
|
super(params, _options);
|
|
10
10
|
this._captchaDisplayMode = params.captchaDisplayMode;
|
|
11
11
|
this._captchaProvider = params.captchaProvider;
|
|
12
|
-
this._captchaSiteKey = params.
|
|
12
|
+
this._captchaSiteKey = params.captchaSiteKey;
|
|
13
13
|
}
|
|
14
14
|
getDataNode() {
|
|
15
15
|
return undefined;
|
package/lib/types/Json.d.ts
CHANGED
|
@@ -104,7 +104,7 @@ export declare type FieldJson = BaseJson & TranslationFieldJson & {
|
|
|
104
104
|
export declare type CaptchaJson = FieldJson & {
|
|
105
105
|
captchaDisplayMode?: CaptchaDisplayMode | undefined;
|
|
106
106
|
captchaProvider?: string | undefined;
|
|
107
|
-
|
|
107
|
+
captchaSiteKey?: string | undefined;
|
|
108
108
|
};
|
|
109
109
|
export declare type ContainerJson = BaseJson & {
|
|
110
110
|
items: Array<FieldJson | ContainerJson>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aemforms/af-core",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.112",
|
|
4
4
|
"description": "Core Module for Forms Runtime",
|
|
5
5
|
"author": "Adobe Systems",
|
|
6
6
|
"license": "Adobe Proprietary",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@adobe/json-formula": "0.1.50",
|
|
40
|
-
"@aemforms/af-formatters": "^0.22.
|
|
40
|
+
"@aemforms/af-formatters": "^0.22.112"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@babel/preset-env": "^7.20.2",
|