@mindful-web/marko-web-identity-x 1.71.9 → 1.73.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.
@@ -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.71.9/components/access.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/access.marko",
56
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/comment-stream.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/comment-stream.marko",
88
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/context.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/context.marko",
52
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/context.marko",
53
53
  component: "./context.marko",
54
54
  tags: [
55
55
  "@mindful-web/marko-core/components/resolve.marko"
@@ -41,9 +41,21 @@ $ const loginButtonLabels = defaultValue(input.loginButtonLabels, {
41
41
  customTextFieldAnswers,
42
42
  } = getFormCustomFields({ fields, fieldRows, user });
43
43
 
44
+ <!--
45
+ Extract only the content properties needed by the access form component.
46
+ Passing the full content object causes Vue reactivity issues and display bugs.
47
+ id: used for tracking; type/name: for display; siteContext: for content context
48
+ -->
49
+ $ const formAccessContent = (content) => ({
50
+ id: content.id,
51
+ type: content.type,
52
+ name: content.name,
53
+ siteContext: content.siteContext,
54
+ });
55
+
44
56
  $ const props = {
45
57
  // Access form props
46
- content: content,
58
+ content: formAccessContent,
47
59
  title: form.title,
48
60
  fieldRows: form.fieldRows,
49
61
  loginSource: "contentAccess",
@@ -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.71.9/components/form-access.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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"),
@@ -86,9 +86,16 @@ function render(input, out, __component, component, state) {
86
86
  customTextFieldAnswers,
87
87
  } = getFormCustomFields({ fields, fieldRows, user });
88
88
 
89
+ const formAccessContent = (content) => ({
90
+ id: content.id,
91
+ type: content.type,
92
+ name: content.name,
93
+ siteContext: content.siteContext,
94
+ });
95
+
89
96
  const props = {
90
97
  // Access form props
91
- content: content,
98
+ content: formAccessContent,
92
99
  title: form.title,
93
100
  fieldRows: form.fieldRows,
94
101
  loginSource: "contentAccess",
@@ -167,7 +174,7 @@ marko_template._ = marko_renderer(render, {
167
174
  }, marko_component);
168
175
 
169
176
  marko_template.meta = {
170
- id: "/@mindful-web/marko-web-identity-x$1.71.9/components/form-access.marko",
177
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/form-access.marko",
171
178
  component: "./form-access.marko",
172
179
  tags: [
173
180
  "@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.71.9/components/form-authenticate.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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"),
@@ -71,7 +71,7 @@ marko_template._ = marko_renderer(render, {
71
71
  }, marko_component);
72
72
 
73
73
  marko_template.meta = {
74
- id: "/@mindful-web/marko-web-identity-x$1.71.9/components/form-authenticate.marko",
74
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/form-authenticate.marko",
75
75
  component: "./form-authenticate.marko",
76
76
  tags: [
77
77
  "@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.71.9/components/form-change-email.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/form-change-email.marko",
62
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/form-login.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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"),
@@ -82,7 +82,7 @@ marko_template._ = marko_renderer(render, {
82
82
  }, marko_component);
83
83
 
84
84
  marko_template.meta = {
85
- id: "/@mindful-web/marko-web-identity-x$1.71.9/components/form-login.marko",
85
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/form-login.marko",
86
86
  component: "./form-login.marko",
87
87
  tags: [
88
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.71.9/components/form-logout.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/form-logout.marko",
32
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/form-logout.marko",
33
33
  tags: [
34
34
  "@mindful-web/marko-web/components/browser-component.marko"
35
35
  ]
@@ -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.71.9/components/form-profile.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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"),
@@ -84,7 +84,7 @@ marko_template._ = marko_renderer(render, {
84
84
  }, marko_component);
85
85
 
86
86
  marko_template.meta = {
87
- id: "/@mindful-web/marko-web-identity-x$1.71.9/components/form-profile.marko",
87
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/form-profile.marko",
88
88
  component: "./form-profile.marko",
89
89
  tags: [
90
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.71.9/components/form-register.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/form-register.marko",
28
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/identify.marko",
53
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/components/identify.marko",
54
54
  component: "./identify.marko",
55
55
  tags: [
56
56
  "@mindful-web/marko-web-gtm/components/push.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.71.9/components/non-auth-identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/non-auth-identify.marko",
48
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/subscribe.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9/components/subscribe.marko",
76
+ id: "/@mindful-web/marko-web-identity-x$1.73.3/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.71.9",
3
+ "version": "1.73.3",
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": "f502286acbf63ad3b15f5b49609ee8366a6a6f56"
40
+ "gitHead": "89a04d6b8543009193810e17c36025ef6f979a09"
41
41
  }