@mindful-web/marko-web-identity-x 1.69.5 → 1.71.6
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/components/access.marko.js +2 -2
- package/components/comment-stream.marko.js +2 -2
- package/components/context.marko.js +2 -2
- package/components/form-access.marko +3 -2
- package/components/form-access.marko.js +6 -4
- package/components/form-authenticate.marko.js +2 -2
- package/components/form-change-email.marko.js +2 -2
- package/components/form-login.marko +3 -3
- package/components/form-login.marko.js +6 -3
- package/components/form-logout.marko.js +2 -2
- package/components/form-profile.marko +3 -1
- package/components/form-profile.marko.js +6 -3
- package/components/form-register.marko.js +2 -2
- package/components/identify.marko.js +2 -2
- package/components/marko.json +5 -1
- package/components/non-auth-identify.marko.js +2 -2
- package/components/subscribe.marko.js +2 -2
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/access.marko",
|
|
6
6
|
marko_component = require("./access.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -53,7 +53,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
53
53
|
}, marko_component);
|
|
54
54
|
|
|
55
55
|
marko_template.meta = {
|
|
56
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
56
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/access.marko",
|
|
57
57
|
component: "./access.marko",
|
|
58
58
|
tags: [
|
|
59
59
|
"@mindful-web/marko-core/components/resolve.marko"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/comment-stream.marko",
|
|
6
6
|
marko_component = require("./comment-stream.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -85,7 +85,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
85
85
|
}, marko_component);
|
|
86
86
|
|
|
87
87
|
marko_template.meta = {
|
|
88
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
88
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/comment-stream.marko",
|
|
89
89
|
component: "./comment-stream.marko",
|
|
90
90
|
tags: [
|
|
91
91
|
"@mindful-web/marko-web/components/browser-component.marko",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/context.marko",
|
|
6
6
|
marko_component = require("./context.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag"),
|
|
@@ -49,7 +49,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
49
49
|
}, marko_component);
|
|
50
50
|
|
|
51
51
|
marko_template.meta = {
|
|
52
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
52
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/context.marko",
|
|
53
53
|
component: "./context.marko",
|
|
54
54
|
tags: [
|
|
55
55
|
"@mindful-web/marko-core/components/resolve.marko"
|
|
@@ -22,6 +22,7 @@ $ const loginButtonLabels = defaultValue(input.loginButtonLabels, {
|
|
|
22
22
|
login: i18n("Log in"),
|
|
23
23
|
profile: i18n("Modify Profile"),
|
|
24
24
|
});
|
|
25
|
+
$ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
|
|
25
26
|
|
|
26
27
|
|
|
27
28
|
<if(identityX && form.fieldRows)>
|
|
@@ -74,8 +75,8 @@ $ const loginButtonLabels = defaultValue(input.loginButtonLabels, {
|
|
|
74
75
|
requiredCreateFieldRows: identityX.config.getRequiredCreateFieldRows(),
|
|
75
76
|
|
|
76
77
|
// Consent
|
|
77
|
-
consentPolicy: consentPolicy,
|
|
78
|
-
consentPolicyEnabled
|
|
78
|
+
consentPolicy: input.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
79
|
+
consentPolicyEnabled,
|
|
79
80
|
emailConsentRequest: emailConsentRequest,
|
|
80
81
|
emailConsentRequestEnabled: defaultValue(input.emailConsentRequest, true),
|
|
81
82
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-access.marko",
|
|
6
6
|
marko_component = require("./form-access.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_defaultValue = require("@mindful-web/marko-core/utils/default-value"),
|
|
@@ -60,6 +60,8 @@ function render(input, out, __component, component, state) {
|
|
|
60
60
|
profile: i18n("Modify Profile"),
|
|
61
61
|
});
|
|
62
62
|
|
|
63
|
+
const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
|
|
64
|
+
|
|
63
65
|
if (identityX && form.fieldRows) {
|
|
64
66
|
marko_web_identity_x_context_tag({
|
|
65
67
|
withFields: true,
|
|
@@ -116,8 +118,8 @@ function render(input, out, __component, component, state) {
|
|
|
116
118
|
requiredCreateFieldRows: identityX.config.getRequiredCreateFieldRows(),
|
|
117
119
|
|
|
118
120
|
// Consent
|
|
119
|
-
consentPolicy: consentPolicy,
|
|
120
|
-
consentPolicyEnabled
|
|
121
|
+
consentPolicy: input.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
122
|
+
consentPolicyEnabled,
|
|
121
123
|
emailConsentRequest: emailConsentRequest,
|
|
122
124
|
emailConsentRequestEnabled: defaultValue(input.emailConsentRequest, true),
|
|
123
125
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
@@ -165,7 +167,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
165
167
|
}, marko_component);
|
|
166
168
|
|
|
167
169
|
marko_template.meta = {
|
|
168
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
170
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-access.marko",
|
|
169
171
|
component: "./form-access.marko",
|
|
170
172
|
tags: [
|
|
171
173
|
"@mindful-web/marko-web/components/browser-component.marko",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-authenticate.marko",
|
|
6
6
|
marko_component = require("./form-authenticate.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -68,7 +68,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
68
68
|
}, marko_component);
|
|
69
69
|
|
|
70
70
|
marko_template.meta = {
|
|
71
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
71
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-authenticate.marko",
|
|
72
72
|
component: "./form-authenticate.marko",
|
|
73
73
|
tags: [
|
|
74
74
|
"@mindful-web/marko-web/components/browser-component.marko",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-change-email.marko",
|
|
6
6
|
marko_component = require("./form-change-email.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -59,7 +59,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
59
59
|
}, marko_component);
|
|
60
60
|
|
|
61
61
|
marko_template.meta = {
|
|
62
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
62
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-change-email.marko",
|
|
63
63
|
component: "./form-change-email.marko",
|
|
64
64
|
tags: [
|
|
65
65
|
"@mindful-web/marko-web/components/browser-component.marko",
|
|
@@ -8,8 +8,7 @@ $ const { identityX } = req;
|
|
|
8
8
|
$ const additionalEventData = defaultValue(input.additionalEventData, {});
|
|
9
9
|
$ const lang = input.lang || defaultValue(site.config.lang, "en");
|
|
10
10
|
$ const withFields = defaultValue(input.withFields, false);
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
$ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
|
|
13
12
|
|
|
14
13
|
<if(Boolean(identityX))>
|
|
15
14
|
<marko-web-identity-x-context|{ user, isEnabled, application, fields }| with-fields=true>
|
|
@@ -33,7 +32,8 @@ $ const withFields = defaultValue(input.withFields, false);
|
|
|
33
32
|
loginEmailPlaceholder: input.loginEmailPlaceholder,
|
|
34
33
|
defaultFieldLabels: identityX.config.get("defaultFieldLabels"),
|
|
35
34
|
requiredCreateFieldRows: identityX.config.getRequiredCreateFieldRows(),
|
|
36
|
-
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
35
|
+
consentPolicy: input.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
36
|
+
consentPolicyEnabled,
|
|
37
37
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
38
38
|
appContextId: identityX.config.get("appContextId"),
|
|
39
39
|
fields,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-login.marko",
|
|
6
6
|
marko_component = require("./form-login.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -31,6 +31,8 @@ function render(input, out, __component, component, state) {
|
|
|
31
31
|
|
|
32
32
|
const withFields = defaultValue(input.withFields, false);
|
|
33
33
|
|
|
34
|
+
const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
|
|
35
|
+
|
|
34
36
|
if (Boolean(identityX)) {
|
|
35
37
|
marko_web_identity_x_context_tag({
|
|
36
38
|
withFields: true,
|
|
@@ -56,7 +58,8 @@ function render(input, out, __component, component, state) {
|
|
|
56
58
|
loginEmailPlaceholder: input.loginEmailPlaceholder,
|
|
57
59
|
defaultFieldLabels: identityX.config.get("defaultFieldLabels"),
|
|
58
60
|
requiredCreateFieldRows: identityX.config.getRequiredCreateFieldRows(),
|
|
59
|
-
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
61
|
+
consentPolicy: input.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
62
|
+
consentPolicyEnabled,
|
|
60
63
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
61
64
|
appContextId: identityX.config.get("appContextId"),
|
|
62
65
|
fields,
|
|
@@ -79,7 +82,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
79
82
|
}, marko_component);
|
|
80
83
|
|
|
81
84
|
marko_template.meta = {
|
|
82
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
85
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-login.marko",
|
|
83
86
|
component: "./form-login.marko",
|
|
84
87
|
tags: [
|
|
85
88
|
"@mindful-web/marko-web/components/browser-component.marko",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-logout.marko",
|
|
6
6
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
7
|
module_defaultValue = require("@mindful-web/marko-core/utils/default-value"),
|
|
8
8
|
defaultValue = module_defaultValue.default || module_defaultValue,
|
|
@@ -29,7 +29,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
marko_template.meta = {
|
|
32
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
32
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-logout.marko",
|
|
33
33
|
tags: [
|
|
34
34
|
"@mindful-web/marko-web/components/browser-component.marko"
|
|
35
35
|
]
|
|
@@ -7,6 +7,7 @@ $ const { req, site } = out.global;
|
|
|
7
7
|
$ const { identityX, query } = req;
|
|
8
8
|
$ const additionalEventData = defaultValue(input.additionalEventData, {});
|
|
9
9
|
$ const lang = input.lang || defaultValue(site.config.lang, "en");
|
|
10
|
+
$ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
|
|
10
11
|
|
|
11
12
|
<if(Boolean(identityX))>
|
|
12
13
|
<marko-web-identity-x-context|{ user, isEnabled, application, fields }| with-fields=true>
|
|
@@ -31,7 +32,8 @@ $ const lang = input.lang || defaultValue(site.config.lang, "en");
|
|
|
31
32
|
buttonLabel: input.buttonLabel,
|
|
32
33
|
loginButtonLabels: input.loginButtonLabels,
|
|
33
34
|
endpoints: identityX.config.getEndpoints(),
|
|
34
|
-
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
35
|
+
consentPolicy: input.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
36
|
+
consentPolicyEnabled,
|
|
35
37
|
emailConsentRequest: get(application, "organization.emailConsentRequest"),
|
|
36
38
|
appContextId: identityX.config.get("appContextId"),
|
|
37
39
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-profile.marko",
|
|
6
6
|
marko_component = require("./form-profile.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -29,6 +29,8 @@ function render(input, out, __component, component, state) {
|
|
|
29
29
|
|
|
30
30
|
const lang = input.lang || defaultValue(site.config.lang, "en");
|
|
31
31
|
|
|
32
|
+
const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
|
|
33
|
+
|
|
32
34
|
if (Boolean(identityX)) {
|
|
33
35
|
marko_web_identity_x_context_tag({
|
|
34
36
|
withFields: true,
|
|
@@ -55,7 +57,8 @@ function render(input, out, __component, component, state) {
|
|
|
55
57
|
buttonLabel: input.buttonLabel,
|
|
56
58
|
loginButtonLabels: input.loginButtonLabels,
|
|
57
59
|
endpoints: identityX.config.getEndpoints(),
|
|
58
|
-
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
60
|
+
consentPolicy: input.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
61
|
+
consentPolicyEnabled,
|
|
59
62
|
emailConsentRequest: get(application, "organization.emailConsentRequest"),
|
|
60
63
|
appContextId: identityX.config.get("appContextId"),
|
|
61
64
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
@@ -81,7 +84,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
81
84
|
}, marko_component);
|
|
82
85
|
|
|
83
86
|
marko_template.meta = {
|
|
84
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
87
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-profile.marko",
|
|
85
88
|
component: "./form-profile.marko",
|
|
86
89
|
tags: [
|
|
87
90
|
"@mindful-web/marko-web/components/browser-component.marko",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/form-register.marko",
|
|
6
6
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
7
|
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
8
8
|
marko_web_identity_x_form_login_template = require("./form-login.marko"),
|
|
@@ -25,7 +25,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
25
25
|
});
|
|
26
26
|
|
|
27
27
|
marko_template.meta = {
|
|
28
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
28
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/form-register.marko",
|
|
29
29
|
tags: [
|
|
30
30
|
"./form-login.marko"
|
|
31
31
|
]
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/identify.marko",
|
|
6
6
|
marko_component = require("./identify.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -50,7 +50,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
50
50
|
}, marko_component);
|
|
51
51
|
|
|
52
52
|
marko_template.meta = {
|
|
53
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
53
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/identify.marko",
|
|
54
54
|
component: "./identify.marko",
|
|
55
55
|
tags: [
|
|
56
56
|
"@mindful-web/marko-web-gtm/components/push.marko",
|
package/components/marko.json
CHANGED
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
},
|
|
8
8
|
"@required-access-level-ids": {
|
|
9
9
|
"type": "array"
|
|
10
|
-
}
|
|
10
|
+
},
|
|
11
|
+
"@consent-policy": "string",
|
|
12
|
+
"@consent-policy-enabled": "boolean"
|
|
11
13
|
},
|
|
12
14
|
"<marko-web-identity-x-context>": {
|
|
13
15
|
"template": "./context.marko"
|
|
@@ -34,6 +36,7 @@
|
|
|
34
36
|
"@action-text": "string",
|
|
35
37
|
"@button-labels": "object",
|
|
36
38
|
"@consent-policy": "string",
|
|
39
|
+
"@consent-policy-enabled": "boolean",
|
|
37
40
|
"@login-email-placeholder": "string",
|
|
38
41
|
"@redirect": "string",
|
|
39
42
|
"@login-email-label": "string",
|
|
@@ -69,6 +72,7 @@
|
|
|
69
72
|
"template": "./form-profile.marko",
|
|
70
73
|
"@additional-event-data": "object",
|
|
71
74
|
"@consent-policy": "string",
|
|
75
|
+
"@consent-policy-enabled": "boolean",
|
|
72
76
|
"@login-source": {
|
|
73
77
|
"type": "string",
|
|
74
78
|
"default-value": "default"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/non-auth-identify.marko",
|
|
6
6
|
marko_component = require("./non-auth-identify.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag"),
|
|
@@ -45,7 +45,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
45
45
|
}, marko_component);
|
|
46
46
|
|
|
47
47
|
marko_template.meta = {
|
|
48
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
48
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/non-auth-identify.marko",
|
|
49
49
|
component: "./non-auth-identify.marko",
|
|
50
50
|
tags: [
|
|
51
51
|
"@mindful-web/marko-core/components/resolve.marko"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
-
marko_componentType = "/@mindful-web/marko-web-identity-x$1.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.71.6/components/subscribe.marko",
|
|
6
6
|
marko_component = require("./subscribe.marko"),
|
|
7
7
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
8
|
module_objectPath_module = require("@mindful-web/object-path"),
|
|
@@ -73,7 +73,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
73
73
|
}, marko_component);
|
|
74
74
|
|
|
75
75
|
marko_template.meta = {
|
|
76
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
76
|
+
id: "/@mindful-web/marko-web-identity-x$1.71.6/components/subscribe.marko",
|
|
77
77
|
component: "./subscribe.marko",
|
|
78
78
|
tags: [
|
|
79
79
|
"@mindful-web/marko-web/components/browser-component.marko",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindful-web/marko-web-identity-x",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.71.6",
|
|
4
4
|
"description": "Marko Wrapper for IdentityX",
|
|
5
5
|
"repository": "https://github.com/parameter1/mindful-web/tree/main/packages/marko-web-identity-x",
|
|
6
6
|
"author": "Josh Worden <josh@parameter1.com>",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "814094089e0c6a958affb621a994b34b1b03041f"
|
|
41
41
|
}
|