@mindful-web/marko-web-identity-x 1.19.3 → 1.19.5

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.
@@ -1,17 +1,23 @@
1
1
  <template>
2
2
  <form :class="blockName" @submit.prevent="handleSubmit">
3
3
  <fieldset :disabled="isLoading">
4
- <display-name v-model="currentDisplayName" label="Posting As" />
5
- <comment-body v-model="body" />
4
+ <display-name
5
+ v-model="currentDisplayName"
6
+ :label="translate({ key: 'Posting As' })"
7
+ />
8
+ <comment-body
9
+ v-model="body"
10
+ :label="translate({ key: 'Your Comment' })"
11
+ />
6
12
  <button
7
13
  type="submit"
8
14
  class="btn btn-primary"
9
15
  >
10
- Submit
16
+ {{ translate({ key: "Submit" }) }}
11
17
  </button>
12
18
  </fieldset>
13
19
  <p v-if="error" class="mb-0 mt-3">
14
- Error: {{ error.message }}
20
+ {{ translate({ key: "Error: " }) }}{{ error.message }}
15
21
  </p>
16
22
  </form>
17
23
  </template>
@@ -47,6 +53,10 @@ export default {
47
53
  type: String,
48
54
  required: true,
49
55
  },
56
+ lang: {
57
+ type: String,
58
+ default: 'en',
59
+ },
50
60
  },
51
61
 
52
62
  /**
@@ -102,6 +112,31 @@ export default {
102
112
  this.isLoading = false;
103
113
  }
104
114
  },
115
+ translate({ key }) {
116
+ const { lang } = this;
117
+ const i18n = {
118
+ pt: {
119
+ 'Posting As': 'Publicando como: ',
120
+ 'Your Comment': 'Seu comentário',
121
+ Submit: 'Enviar',
122
+ 'Error: ': 'Erro: ',
123
+ },
124
+ es: {
125
+ 'Posting As': 'Publicar una: ',
126
+ 'Your Comment': 'Su comentario:',
127
+ Submit: 'Entregar',
128
+ 'Error: ': 'Error: ',
129
+ },
130
+ en: {
131
+ 'Posting As': 'Posting As',
132
+ 'Your Comment': 'Your Comment',
133
+ Submit: 'Submit',
134
+ 'Error: ': 'Error: ',
135
+ },
136
+ };
137
+ const value = (i18n[lang] && i18n[lang][key]) ? i18n[lang][key] : i18n.en[key] || key;
138
+ return value;
139
+ },
105
140
  },
106
141
  };
107
142
  </script>
@@ -2,7 +2,7 @@
2
2
  <div :class="blockName" :data-id="id">
3
3
  <div :class="element('header')">
4
4
  <div :class="element('display-name')">
5
- <span>Posted by {{ displayName }}</span>
5
+ <span>{{ translate({ key: "Posted by" }) }} {{ displayName }}</span>
6
6
  </div>
7
7
  <div>
8
8
  <span :class="element('created-at')">
@@ -15,16 +15,20 @@
15
15
  :disabled="isReporting"
16
16
  @click.prevent="reportComment"
17
17
  >
18
- Report
18
+ {{ translate({ key: 'Report' }) }}
19
19
  </a>
20
- <span v-if="isReporting">Reporting...</span>
21
- <span v-if="error" class="text-danger">Error, try again</span>
20
+ <span v-if="isReporting">
21
+ {{ translate({ key: 'Reporting...' }) }}
22
+ </span>
23
+ <span v-if="error" class="text-danger">
24
+ {{ translate({ key: 'Error, try again' }) }}
25
+ </span>
22
26
  </span>
23
27
  </div>
24
28
  </div>
25
29
  <div :class="element('body')">
26
30
  <p v-if="flagged" :class="element('flagged')">
27
- This comment has been reported.
31
+ {{ translate({ key: 'This comment has been reported.' }) }}
28
32
  </p>
29
33
  <!-- eslint-disable-next-line -->
30
34
  <div v-html="bodyHtml" />
@@ -80,6 +84,10 @@ export default {
80
84
  type: Object,
81
85
  default: () => {},
82
86
  },
87
+ lang: {
88
+ type: String,
89
+ default: 'en',
90
+ },
83
91
  },
84
92
 
85
93
  /**
@@ -146,6 +154,35 @@ export default {
146
154
  this.isReporting = false;
147
155
  }
148
156
  },
157
+
158
+ translate({ key }) {
159
+ const { lang } = this;
160
+ const i18n = {
161
+ pt: {
162
+ 'Posted by': 'Publicado por',
163
+ Report: 'Denunciar',
164
+ 'Reporting...': 'Denunciando',
165
+ 'Error, try again': 'Erro, tente novamente',
166
+ 'This comment has been reported.': 'Este comentário foi denunciado.',
167
+ },
168
+ es: {
169
+ 'Posted by': 'Publicado por',
170
+ Report: 'Informe',
171
+ 'Reporting...': 'Puesto de informes ',
172
+ 'Error, try again': 'Error, inténtalo de nuevo ',
173
+ 'This comment has been reported.': 'Este comentario ha sido reportado.',
174
+ },
175
+ en: {
176
+ 'Posted by': 'Posted by',
177
+ Report: 'Report',
178
+ 'Reporting...': 'Reporting...',
179
+ 'Error, try again': 'Error, try again',
180
+ 'This comment has been reported.': 'This comment has been reported.',
181
+ },
182
+ };
183
+ const value = (i18n[lang] && i18n[lang][key]) ? i18n[lang][key] : i18n.en[key] || key;
184
+ return value;
185
+ },
149
186
  },
150
187
  };
151
188
  </script>
@@ -15,13 +15,14 @@
15
15
  </span>
16
16
  </p>
17
17
  <div v-if="archived" :class="element('archived')">
18
- This thread is archived and is no longer accepting comments.
18
+ {{ postArchivedMessage }}
19
19
  </div>
20
20
  <create
21
21
  v-else
22
22
  :display-name="activeUser.displayName"
23
23
  :stream="{ identifier, title, description, url }"
24
24
  @comment-post-submitted="load"
25
+ :lang="lang"
25
26
  />
26
27
  </div>
27
28
  <div v-else :class="element('login-form-wrapper')">
@@ -45,6 +46,7 @@
45
46
  :default-field-labels="defaultFieldLabels"
46
47
  :login-email-label="defaultFieldLabels.email"
47
48
  @login-link-sent="showLoginMessage = false"
49
+ :lang="lang"
48
50
  />
49
51
  </div>
50
52
 
@@ -56,10 +58,10 @@
56
58
  </h5>
57
59
  </div>
58
60
  <div v-if="isLoading" :class="element('loading')">
59
- Loading comments...
61
+ {{ loadingCommentsMessage }}
60
62
  </div>
61
63
  <div v-else-if="error" :class="element('error')">
62
- Unable to load comments: {{ error.message }}
64
+ {{ errorLabel }}: {{ error.message }}
63
65
  </div>
64
66
  <div v-else-if="approvedComments.length === 0" :class="element('no-posts')">
65
67
  {{ noCommentsMessage }}
@@ -81,6 +83,7 @@
81
83
  :date-format="dateFormat"
82
84
  :active-user="activeUser"
83
85
  @comment-report-submitted="load"
86
+ :lang="lang"
84
87
  />
85
88
  </div>
86
89
  <div v-if="hasNextPage" :class="element('post')">
@@ -176,6 +179,18 @@ export default {
176
179
  type: String,
177
180
  default: 'You must be signed in to leave a comment. To sign in or create an account, enter your email address and we\'ll send you a one-click sign-in link.',
178
181
  },
182
+ postArchivedMessage: {
183
+ type: String,
184
+ default: 'This thread is archived and is no longer accepting comments.',
185
+ },
186
+ loadingCommentsMessage: {
187
+ type: String,
188
+ default: 'Loading comments...',
189
+ },
190
+ errorLabel: {
191
+ type: String,
192
+ default: 'Unable to load comments',
193
+ },
179
194
  postACommentMessage: {
180
195
  type: String,
181
196
  default: 'Post a Comment',
@@ -208,6 +223,10 @@ export default {
208
223
  type: Object,
209
224
  default: () => ({}),
210
225
  },
226
+ lang: {
227
+ type: String,
228
+ default: 'en',
229
+ },
211
230
  },
212
231
 
213
232
  data: () => ({
@@ -200,7 +200,7 @@ export default {
200
200
  const { lang } = this;
201
201
  const i18n = {
202
202
  pt: {
203
- 'Please Select...': 'Favor selecionar...',
203
+ 'Please Select...': 'Selecione...',
204
204
  },
205
205
  es: {
206
206
  'Please Select...': 'Seleccione...',
package/browser/login.vue CHANGED
@@ -271,7 +271,7 @@ export default {
271
271
  return 'Actualmente estás conectado como';
272
272
  }
273
273
  if (this.lang === 'pt') {
274
- return 'Você está atualmente conectado como';
274
+ return 'Você está conectado como';
275
275
  }
276
276
  return 'You are currently logged in as';
277
277
  },
@@ -631,8 +631,8 @@ export default {
631
631
  'seconds.': 'segundas.',
632
632
  'To continue now,': 'Para continuar agora,',
633
633
  'click here': 'clique aqui',
634
- 'To continue modifying your profile,': 'Para continuar modificando seu perfil,',
635
- 'To return to the home page, ': 'Para retornar à página inicial, ',
634
+ 'To continue modifying your profile,': 'Para continuar editando seu perfil,',
635
+ 'To return to the home page, ': 'Para voltar à página inicial, ',
636
636
  'You must be logged in to modify your user profile.': 'Você precisa estar logado para modificar seu perfil de usuário.',
637
637
  },
638
638
  es: {
@@ -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.19.3/components/access.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/access.marko",
56
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/components/access.marko",
57
57
  component: "./access.marko",
58
58
  tags: [
59
59
  "@mindful-web/marko-core/components/resolve.marko"
@@ -4,6 +4,7 @@ import defaultValue from "@mindful-web/marko-core/utils/default-value";
4
4
  $ const { req, site } = out.global;
5
5
  $ const { identityX } = req;
6
6
  $ const additionalEventData = defaultValue(input.additionalEventData, {});
7
+ $ const lang = input.lang || defaultValue(site.config.lang, "en");
7
8
 
8
9
  <if(identityX)>
9
10
  <marko-web-identity-x-context|{ user, isEnabled, application }|>
@@ -29,6 +30,10 @@ $ const additionalEventData = defaultValue(input.additionalEventData, {});
29
30
  noCommentsMessage: get(site, 'config.comments.noCommentsMessage'),
30
31
  notSignedInMessage: get(site, 'config.comments.notSignedInMessage'),
31
32
  postACommentMessage: get(site, 'config.comments.postACommentMessage'),
33
+ postArchivedMessage: get(site, 'config.comments.postArchivedMessage'),
34
+ loadingCommentsMessage: get(site, 'config.comments.loadingCommentsMessage'),
35
+ errorMessage: get(site, 'config.comments.errorMessage'),
36
+ lang: lang,
32
37
  };
33
38
  <if(isEnabled && identityX.config.commentsEnabled())>
34
39
  <marko-web-browser-component name="IdentityXCommentStream" props=props />
@@ -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.19.3/components/comment-stream.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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"),
@@ -25,6 +25,8 @@ function render(input, out, __component, component, state) {
25
25
 
26
26
  const additionalEventData = defaultValue(input.additionalEventData, {});
27
27
 
28
+ const lang = input.lang || defaultValue(site.config.lang, "en");
29
+
28
30
  if (identityX) {
29
31
  marko_web_identity_x_context_tag({
30
32
  renderBody: function(out, { user, isEnabled, application }) {
@@ -50,6 +52,10 @@ function render(input, out, __component, component, state) {
50
52
  noCommentsMessage: get(site, 'config.comments.noCommentsMessage'),
51
53
  notSignedInMessage: get(site, 'config.comments.notSignedInMessage'),
52
54
  postACommentMessage: get(site, 'config.comments.postACommentMessage'),
55
+ postArchivedMessage: get(site, 'config.comments.postArchivedMessage'),
56
+ loadingCommentsMessage: get(site, 'config.comments.loadingCommentsMessage'),
57
+ errorMessage: get(site, 'config.comments.errorMessage'),
58
+ lang: lang,
53
59
  };
54
60
 
55
61
  if (isEnabled && identityX.config.commentsEnabled()) {
@@ -68,7 +74,7 @@ marko_template._ = marko_renderer(render, {
68
74
  }, marko_component);
69
75
 
70
76
  marko_template.meta = {
71
- id: "/@mindful-web/marko-web-identity-x$1.19.3/components/comment-stream.marko",
77
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/components/comment-stream.marko",
72
78
  component: "./comment-stream.marko",
73
79
  tags: [
74
80
  "@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.19.3/components/context.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/context.marko",
47
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-access.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-access.marko",
110
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/components/form-access.marko",
111
111
  tags: [
112
112
  "@mindful-web/marko-web/components/browser-component.marko"
113
113
  ]
@@ -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.19.3/components/form-authenticate.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-authenticate.marko",
71
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-change-email.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-change-email.marko",
62
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-login.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-login.marko",
67
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-logout.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-logout.marko",
32
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-profile.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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"),
@@ -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.19.3/components/form-profile.marko",
76
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/components/form-profile.marko",
77
77
  component: "./form-profile.marko",
78
78
  tags: [
79
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.19.3/components/form-register.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/form-register.marko",
28
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/identify.marko",
53
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/components/identify.marko",
54
54
  component: "./identify.marko",
55
55
  tags: [
56
56
  "@mindful-web/marko-web-gtm/components/push.marko",
@@ -86,7 +86,8 @@
86
86
  "@description": "string",
87
87
  "@url": "string",
88
88
  "@load-more-button-class": "string",
89
- "@login-button-labels": "object"
89
+ "@login-button-labels": "object",
90
+ "@lang": "string"
90
91
  },
91
92
  "<marko-web-identity-x-identify>": {
92
93
  "template": "./identify.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.19.3/components/non-auth-identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3/components/non-auth-identify.marko",
48
+ id: "/@mindful-web/marko-web-identity-x$1.19.5/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.19.3",
3
+ "version": "1.19.5",
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": "7311afdf8bb6cd10b97584b1bddbf5adfb6fcd7f"
40
+ "gitHead": "d9799caa881b2b34c69608a49107a216529665f8"
41
41
  }