@mindful-web/marko-web-identity-x 1.17.8 → 1.17.10
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/browser/authenticate.vue +5 -0
- package/browser/profile.vue +5 -0
- 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.js +2 -2
- package/components/form-authenticate.marko +1 -0
- package/components/form-authenticate.marko.js +3 -2
- package/components/form-change-email.marko.js +2 -2
- package/components/form-login.marko.js +2 -2
- package/components/form-logout.marko.js +2 -2
- package/components/form-profile.marko +1 -0
- package/components/form-profile.marko.js +3 -2
- package/components/form-register.marko.js +2 -2
- package/components/identify.marko.js +2 -2
- package/components/marko.json +3 -1
- package/components/non-auth-identify.marko.js +2 -2
- package/package.json +2 -2
package/browser/authenticate.vue
CHANGED
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
:call-to-action="callToAction"
|
|
27
27
|
:default-field-labels="defaultFieldLabels"
|
|
28
28
|
:enable-change-email="enableChangeEmail"
|
|
29
|
+
:login-button-labels="login-button-labels"
|
|
29
30
|
:lang="lang"
|
|
30
31
|
@profile-updated="redirect"
|
|
31
32
|
/>
|
|
@@ -125,6 +126,10 @@ export default {
|
|
|
125
126
|
type: String,
|
|
126
127
|
default: 'Submit',
|
|
127
128
|
},
|
|
129
|
+
loginButtonLabels: {
|
|
130
|
+
type: Object,
|
|
131
|
+
default: null,
|
|
132
|
+
},
|
|
128
133
|
defaultCountryCode: {
|
|
129
134
|
type: String,
|
|
130
135
|
default: null,
|
package/browser/profile.vue
CHANGED
|
@@ -244,6 +244,7 @@
|
|
|
244
244
|
:regional-consent-policies="regionalConsentPolicies"
|
|
245
245
|
:required-create-fields="requiredCreateFields"
|
|
246
246
|
:default-field-labels="defaultFieldLabels"
|
|
247
|
+
:button-labels="loginButtonLabels"
|
|
247
248
|
:lang="lang"
|
|
248
249
|
/>
|
|
249
250
|
</div>
|
|
@@ -395,6 +396,10 @@ export default {
|
|
|
395
396
|
type: Boolean,
|
|
396
397
|
default: false,
|
|
397
398
|
},
|
|
399
|
+
loginButtonLabels: {
|
|
400
|
+
type: Object,
|
|
401
|
+
default: null,
|
|
402
|
+
},
|
|
398
403
|
lang: {
|
|
399
404
|
type: String,
|
|
400
405
|
default: 'en',
|
|
@@ -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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
56
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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"),
|
|
@@ -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.17.
|
|
71
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/comment-stream.marko",
|
|
72
72
|
component: "./comment-stream.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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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"),
|
|
@@ -44,7 +44,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
44
44
|
}, marko_component);
|
|
45
45
|
|
|
46
46
|
marko_template.meta = {
|
|
47
|
-
id: "/@mindful-web/marko-web-identity-x$1.17.
|
|
47
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/context.marko",
|
|
48
48
|
component: "./context.marko",
|
|
49
49
|
tags: [
|
|
50
50
|
"@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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/components/form-access.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,
|
|
@@ -107,7 +107,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
107
107
|
});
|
|
108
108
|
|
|
109
109
|
marko_template.meta = {
|
|
110
|
-
id: "/@mindful-web/marko-web-identity-x$1.17.
|
|
110
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/form-access.marko",
|
|
111
111
|
tags: [
|
|
112
112
|
"@mindful-web/marko-web/components/browser-component.marko"
|
|
113
113
|
]
|
|
@@ -23,6 +23,7 @@ $ const lang = input.lang || defaultValue(site.config.lang, "en");
|
|
|
23
23
|
endpoints: identityX.config.getEndpoints(),
|
|
24
24
|
callToAction: input.callToAction,
|
|
25
25
|
buttonLabel: input.buttonLabel,
|
|
26
|
+
loginButtonLabels: input.loginButtonLabels,
|
|
26
27
|
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
27
28
|
emailConsentRequest: get(application, "organization.emailConsentRequest"),
|
|
28
29
|
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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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"),
|
|
@@ -46,6 +46,7 @@ function render(input, out, __component, component, state) {
|
|
|
46
46
|
endpoints: identityX.config.getEndpoints(),
|
|
47
47
|
callToAction: input.callToAction,
|
|
48
48
|
buttonLabel: input.buttonLabel,
|
|
49
|
+
loginButtonLabels: input.loginButtonLabels,
|
|
49
50
|
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
50
51
|
emailConsentRequest: get(application, "organization.emailConsentRequest"),
|
|
51
52
|
regionalConsentPolicies: get(application, "organization.regionalConsentPolicies"),
|
|
@@ -67,7 +68,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
67
68
|
}, marko_component);
|
|
68
69
|
|
|
69
70
|
marko_template.meta = {
|
|
70
|
-
id: "/@mindful-web/marko-web-identity-x$1.17.
|
|
71
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/form-authenticate.marko",
|
|
71
72
|
component: "./form-authenticate.marko",
|
|
72
73
|
tags: [
|
|
73
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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
62
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/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",
|
|
@@ -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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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"),
|
|
@@ -64,7 +64,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
64
64
|
}, marko_component);
|
|
65
65
|
|
|
66
66
|
marko_template.meta = {
|
|
67
|
-
id: "/@mindful-web/marko-web-identity-x$1.17.
|
|
67
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/form-login.marko",
|
|
68
68
|
component: "./form-login.marko",
|
|
69
69
|
tags: [
|
|
70
70
|
"@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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
32
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/form-logout.marko",
|
|
33
33
|
tags: [
|
|
34
34
|
"@mindful-web/marko-web/components/browser-component.marko"
|
|
35
35
|
]
|
|
@@ -23,6 +23,7 @@ $ const lang = input.lang || defaultValue(site.config.lang, "en");
|
|
|
23
23
|
callToAction: input.callToAction,
|
|
24
24
|
reloadPageOnSubmit: input.reloadPageOnSubmit,
|
|
25
25
|
buttonLabel: input.buttonLabel,
|
|
26
|
+
loginButtonLabels: input.loginButtonLabels,
|
|
26
27
|
endpoints: identityX.config.getEndpoints(),
|
|
27
28
|
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
28
29
|
emailConsentRequest: get(application, "organization.emailConsentRequest"),
|
|
@@ -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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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"),
|
|
@@ -45,6 +45,7 @@ function render(input, out, __component, component, state) {
|
|
|
45
45
|
callToAction: input.callToAction,
|
|
46
46
|
reloadPageOnSubmit: input.reloadPageOnSubmit,
|
|
47
47
|
buttonLabel: input.buttonLabel,
|
|
48
|
+
loginButtonLabels: input.loginButtonLabels,
|
|
48
49
|
endpoints: identityX.config.getEndpoints(),
|
|
49
50
|
consentPolicy: identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy"),
|
|
50
51
|
emailConsentRequest: get(application, "organization.emailConsentRequest"),
|
|
@@ -72,7 +73,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
72
73
|
}, marko_component);
|
|
73
74
|
|
|
74
75
|
marko_template.meta = {
|
|
75
|
-
id: "/@mindful-web/marko-web-identity-x$1.17.
|
|
76
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/form-profile.marko",
|
|
76
77
|
component: "./form-profile.marko",
|
|
77
78
|
tags: [
|
|
78
79
|
"@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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
28
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
53
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/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
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"template": "./form-authenticate.marko",
|
|
17
17
|
"@additional-event-data": "object",
|
|
18
18
|
"@call-to-action": "string",
|
|
19
|
-
"@button-label": "string"
|
|
19
|
+
"@button-label": "string",
|
|
20
|
+
"@login-button-labels": "object"
|
|
20
21
|
},
|
|
21
22
|
"<marko-web-identity-x-form-change-email>": {
|
|
22
23
|
"template": "./form-change-email.marko",
|
|
@@ -67,6 +68,7 @@
|
|
|
67
68
|
"@reload-page-on-submit": "boolean",
|
|
68
69
|
"@return-to-delay": "number",
|
|
69
70
|
"@button-label": "string",
|
|
71
|
+
"@login-button-labels": "object",
|
|
70
72
|
"@lang": "string"
|
|
71
73
|
},
|
|
72
74
|
"<marko-web-identity-x-comment-stream>": {
|
|
@@ -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.17.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.17.10/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.17.
|
|
48
|
+
id: "/@mindful-web/marko-web-identity-x$1.17.10/components/non-auth-identify.marko",
|
|
49
49
|
component: "./non-auth-identify.marko",
|
|
50
50
|
tags: [
|
|
51
51
|
"@mindful-web/marko-core/components/resolve.marko"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindful-web/marko-web-identity-x",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.10",
|
|
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>",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "17ca094a68f52cccf0cd08b04de22944992e1878"
|
|
40
40
|
}
|