@mindful-web/marko-web-identity-x 1.77.0 → 1.78.0
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/access.vue +13 -2
- package/browser/comments/create.vue +8 -0
- package/browser/comments/stream.vue +20 -2
- package/browser/download.vue +13 -2
- 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 +4 -0
- package/components/form-access.marko.js +7 -2
- package/components/form-authenticate.marko.js +2 -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.js +2 -2
- package/components/form-register.marko.js +2 -2
- package/components/google-init.marko.js +2 -2
- package/components/google-sign-in-button.marko.js +2 -2
- package/components/identify.marko.js +2 -2
- package/components/marko.json +2 -0
- package/components/non-auth-identify.marko.js +2 -2
- package/components/subscribe.marko.js +2 -2
- package/package.json +2 -2
package/browser/access.vue
CHANGED
|
@@ -231,6 +231,10 @@ export default {
|
|
|
231
231
|
type: Object,
|
|
232
232
|
default: null,
|
|
233
233
|
},
|
|
234
|
+
contentEntity: {
|
|
235
|
+
type: String,
|
|
236
|
+
default: null,
|
|
237
|
+
},
|
|
234
238
|
customBooleanFieldAnswers: {
|
|
235
239
|
type: Array,
|
|
236
240
|
default: () => [],
|
|
@@ -351,7 +355,11 @@ export default {
|
|
|
351
355
|
this.isLoading = true;
|
|
352
356
|
this.didSubmit = false;
|
|
353
357
|
try {
|
|
354
|
-
const additionalEventData = {
|
|
358
|
+
const additionalEventData = {
|
|
359
|
+
...this.additionalEventData,
|
|
360
|
+
actionSource: this.loginSource,
|
|
361
|
+
...(this.contentEntity && { ent: this.contentEntity }),
|
|
362
|
+
};
|
|
355
363
|
let data = {};
|
|
356
364
|
if (this.canUpdateProfile) {
|
|
357
365
|
const res = await post('/profile', { ...this.user, additionalEventData });
|
|
@@ -421,7 +429,10 @@ export default {
|
|
|
421
429
|
contentId: content.id,
|
|
422
430
|
contentType: content.type,
|
|
423
431
|
userId: this.user.id,
|
|
424
|
-
additionalEventData
|
|
432
|
+
additionalEventData: {
|
|
433
|
+
...additionalEventData,
|
|
434
|
+
...(this.contentEntity && { ent: this.contentEntity }),
|
|
435
|
+
},
|
|
425
436
|
}, data.entity);
|
|
426
437
|
} catch (e) {
|
|
427
438
|
this.error = e;
|
|
@@ -57,6 +57,10 @@ export default {
|
|
|
57
57
|
type: String,
|
|
58
58
|
default: 'en',
|
|
59
59
|
},
|
|
60
|
+
contentEntity: {
|
|
61
|
+
type: String,
|
|
62
|
+
default: null,
|
|
63
|
+
},
|
|
60
64
|
},
|
|
61
65
|
|
|
62
66
|
/**
|
|
@@ -96,10 +100,14 @@ export default {
|
|
|
96
100
|
this.isLoading = true;
|
|
97
101
|
const { currentDisplayName, body, stream } = this;
|
|
98
102
|
try {
|
|
103
|
+
const additionalEventData = {
|
|
104
|
+
...(this.contentEntity && { ent: this.contentEntity }),
|
|
105
|
+
};
|
|
99
106
|
const res = await post('/comment', {
|
|
100
107
|
displayName: currentDisplayName,
|
|
101
108
|
body,
|
|
102
109
|
stream,
|
|
110
|
+
additionalEventData,
|
|
103
111
|
});
|
|
104
112
|
const data = await res.json();
|
|
105
113
|
if (!res.ok) throw new FormError(data.message, res.status);
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
<create
|
|
21
21
|
v-else
|
|
22
22
|
:display-name="activeUser.displayName"
|
|
23
|
-
:stream="{ identifier, title, description, url }"
|
|
23
|
+
:stream="{ identifier, type, title, description, url }"
|
|
24
24
|
@comment-post-submitted="load"
|
|
25
25
|
:lang="lang"
|
|
26
26
|
/>
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
</p>
|
|
35
35
|
<login
|
|
36
36
|
:class="element('login-form')"
|
|
37
|
-
:additional-event-data="
|
|
37
|
+
:additional-event-data="enrichedAdditionalEventData"
|
|
38
38
|
:source="loginSource"
|
|
39
39
|
:endpoints="endpoints"
|
|
40
40
|
:custom-select-field-answers="loginCustomSelectFieldAnswers"
|
|
@@ -133,6 +133,10 @@ export default {
|
|
|
133
133
|
type: String,
|
|
134
134
|
required: true,
|
|
135
135
|
},
|
|
136
|
+
type: {
|
|
137
|
+
type: String,
|
|
138
|
+
default: undefined,
|
|
139
|
+
},
|
|
136
140
|
title: {
|
|
137
141
|
type: String,
|
|
138
142
|
default: undefined,
|
|
@@ -241,6 +245,10 @@ export default {
|
|
|
241
245
|
type: String,
|
|
242
246
|
default: 'en',
|
|
243
247
|
},
|
|
248
|
+
contentEntity: {
|
|
249
|
+
type: String,
|
|
250
|
+
default: null,
|
|
251
|
+
},
|
|
244
252
|
},
|
|
245
253
|
|
|
246
254
|
data: () => ({
|
|
@@ -280,6 +288,16 @@ export default {
|
|
|
280
288
|
approvedComments() {
|
|
281
289
|
return this.comments.filter((comment) => comment.approved);
|
|
282
290
|
},
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
*
|
|
294
|
+
*/
|
|
295
|
+
enrichedAdditionalEventData() {
|
|
296
|
+
return {
|
|
297
|
+
...(this.additionalEventData || {}),
|
|
298
|
+
...(this.contentEntity && { ent: this.contentEntity }),
|
|
299
|
+
};
|
|
300
|
+
},
|
|
283
301
|
},
|
|
284
302
|
|
|
285
303
|
/**
|
package/browser/download.vue
CHANGED
|
@@ -238,6 +238,10 @@ export default {
|
|
|
238
238
|
type: Object,
|
|
239
239
|
default: null,
|
|
240
240
|
},
|
|
241
|
+
contentEntity: {
|
|
242
|
+
type: String,
|
|
243
|
+
default: null,
|
|
244
|
+
},
|
|
241
245
|
customBooleanFieldAnswers: {
|
|
242
246
|
type: Array,
|
|
243
247
|
default: () => [],
|
|
@@ -354,7 +358,11 @@ export default {
|
|
|
354
358
|
this.isLoading = true;
|
|
355
359
|
this.didSubmit = false;
|
|
356
360
|
try {
|
|
357
|
-
const additionalEventData = {
|
|
361
|
+
const additionalEventData = {
|
|
362
|
+
...this.additionalEventData,
|
|
363
|
+
actionSource: this.loginSource,
|
|
364
|
+
...(this.contentEntity && { ent: this.contentEntity }),
|
|
365
|
+
};
|
|
358
366
|
let data = {};
|
|
359
367
|
if (this.canUpdateProfile) {
|
|
360
368
|
const res = await post('/profile', { ...this.user, additionalEventData });
|
|
@@ -422,7 +430,10 @@ export default {
|
|
|
422
430
|
contentType: content.type,
|
|
423
431
|
companyId: company.id,
|
|
424
432
|
userId: this.user.id,
|
|
425
|
-
additionalEventData
|
|
433
|
+
additionalEventData: {
|
|
434
|
+
...additionalEventData,
|
|
435
|
+
...(this.contentEntity && { ent: this.contentEntity }),
|
|
436
|
+
},
|
|
426
437
|
}, entity);
|
|
427
438
|
this.downloaded.push(content.id);
|
|
428
439
|
}
|
|
@@ -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.78.0/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.78.0/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.78.0/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.78.0/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.78.0/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.78.0/components/context.marko",
|
|
53
53
|
component: "./context.marko",
|
|
54
54
|
tags: [
|
|
55
55
|
"@mindful-web/marko-core/components/resolve.marko"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import defaultValue from "@mindful-web/marko-core/utils/default-value";
|
|
3
3
|
import { get, getAsArray, getAsObject } from "@mindful-web/object-path";
|
|
4
|
+
import baseContentEntity from "@mindful-web/marko-web-p1-events/utils/base-content-entity";
|
|
4
5
|
|
|
5
6
|
import getCreateUserCustomFields from '../utils/get-create-user-custom-fields'
|
|
6
7
|
import getFormCustomFields from '../utils/get-form-custom-fields'
|
|
@@ -53,9 +54,12 @@ $ const loginButtonLabels = defaultValue(input.loginButtonLabels, {
|
|
|
53
54
|
siteContext: content.siteContext,
|
|
54
55
|
});
|
|
55
56
|
|
|
57
|
+
$ const contentEntity = (content && content.id && content.type) ? baseContentEntity(content.id, content.type) : null;
|
|
58
|
+
|
|
56
59
|
$ const props = {
|
|
57
60
|
// Access form props
|
|
58
61
|
content: formAccessContent(content),
|
|
62
|
+
contentEntity: contentEntity,
|
|
59
63
|
title: form.title,
|
|
60
64
|
fieldRows: form.fieldRows,
|
|
61
65
|
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.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.78.0/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"),
|
|
@@ -12,6 +12,8 @@ var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
|
12
12
|
get = module_objectPath_module.get,
|
|
13
13
|
getAsArray = module_objectPath_module.getAsArray,
|
|
14
14
|
getAsObject = module_objectPath_module.getAsObject,
|
|
15
|
+
module_baseContentEntity = require("@mindful-web/marko-web-p1-events/utils/base-content-entity"),
|
|
16
|
+
baseContentEntity = module_baseContentEntity.default || module_baseContentEntity,
|
|
15
17
|
module_getCreateUserCustomFields = require("../utils/get-create-user-custom-fields"),
|
|
16
18
|
getCreateUserCustomFields = module_getCreateUserCustomFields.default || module_getCreateUserCustomFields,
|
|
17
19
|
module_getFormCustomFields = require("../utils/get-form-custom-fields"),
|
|
@@ -93,9 +95,12 @@ function render(input, out, __component, component, state) {
|
|
|
93
95
|
siteContext: content.siteContext,
|
|
94
96
|
});
|
|
95
97
|
|
|
98
|
+
const contentEntity = (content && content.id && content.type) ? baseContentEntity(content.id, content.type) : null;
|
|
99
|
+
|
|
96
100
|
const props = {
|
|
97
101
|
// Access form props
|
|
98
102
|
content: formAccessContent(content),
|
|
103
|
+
contentEntity: contentEntity,
|
|
99
104
|
title: form.title,
|
|
100
105
|
fieldRows: form.fieldRows,
|
|
101
106
|
loginSource: "contentAccess",
|
|
@@ -174,7 +179,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
174
179
|
}, marko_component);
|
|
175
180
|
|
|
176
181
|
marko_template.meta = {
|
|
177
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
182
|
+
id: "/@mindful-web/marko-web-identity-x$1.78.0/components/form-access.marko",
|
|
178
183
|
component: "./form-access.marko",
|
|
179
184
|
tags: [
|
|
180
185
|
"@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.78.0/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"),
|
|
@@ -81,7 +81,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
81
81
|
}, marko_component);
|
|
82
82
|
|
|
83
83
|
marko_template.meta = {
|
|
84
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
84
|
+
id: "/@mindful-web/marko-web-identity-x$1.78.0/components/form-authenticate.marko",
|
|
85
85
|
component: "./form-authenticate.marko",
|
|
86
86
|
tags: [
|
|
87
87
|
"@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.78.0/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.78.0/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.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.78.0/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"),
|
|
@@ -92,7 +92,7 @@ marko_template._ = marko_renderer(render, {
|
|
|
92
92
|
}, marko_component);
|
|
93
93
|
|
|
94
94
|
marko_template.meta = {
|
|
95
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
95
|
+
id: "/@mindful-web/marko-web-identity-x$1.78.0/components/form-login.marko",
|
|
96
96
|
component: "./form-login.marko",
|
|
97
97
|
tags: [
|
|
98
98
|
"@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.78.0/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.78.0/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.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.78.0/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.
|
|
87
|
+
id: "/@mindful-web/marko-web-identity-x$1.78.0/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.
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web-identity-x$1.78.0/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.78.0/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.78.0/components/google-init.marko",
|
|
6
6
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
7
|
marko_attr = require("marko/dist/runtime/html/helpers/attr"),
|
|
8
8
|
marko_str = require("marko/dist/runtime/helpers/to-string");
|
|
@@ -91,5 +91,5 @@ marko_template._ = marko_renderer(render, {
|
|
|
91
91
|
});
|
|
92
92
|
|
|
93
93
|
marko_template.meta = {
|
|
94
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
94
|
+
id: "/@mindful-web/marko-web-identity-x$1.78.0/components/google-init.marko"
|
|
95
95
|
};
|
|
@@ -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.78.0/components/google-sign-in-button.marko",
|
|
6
6
|
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
7
|
helpers_escape_xml = require("marko/dist/runtime/html/helpers/escape-xml"),
|
|
8
8
|
marko_escapeXml = helpers_escape_xml.x,
|
|
@@ -40,5 +40,5 @@ marko_template._ = marko_renderer(render, {
|
|
|
40
40
|
});
|
|
41
41
|
|
|
42
42
|
marko_template.meta = {
|
|
43
|
-
id: "/@mindful-web/marko-web-identity-x$1.
|
|
43
|
+
id: "/@mindful-web/marko-web-identity-x$1.78.0/components/google-sign-in-button.marko"
|
|
44
44
|
};
|
|
@@ -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.78.0/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.78.0/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
|
@@ -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.78.0/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.78.0/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.78.0/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.78.0/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.78.0",
|
|
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>",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "0cedd578e969f7a2581c1dbc142351dd02b0b705"
|
|
42
42
|
}
|