@parameter1/base-cms-marko-web 2.75.0 → 2.80.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. package/components/browser-component.marko.js +53 -14
  2. package/components/document/components/body-wrapper.marko.js +2 -2
  3. package/components/document/components/error.marko.js +2 -2
  4. package/components/document/components/live-reload.marko.js +2 -2
  5. package/components/document/container.marko.js +2 -2
  6. package/components/document/index.marko.js +32 -28
  7. package/components/element/block.marko.js +5 -5
  8. package/components/element/clear.marko.js +2 -2
  9. package/components/element/components/image.marko.js +5 -5
  10. package/components/element/components/text.marko.js +2 -2
  11. package/components/element/content/address1.marko.js +2 -2
  12. package/components/element/content/address2.marko.js +2 -2
  13. package/components/element/content/body.marko.js +6 -6
  14. package/components/element/content/city-state-zip.marko.js +2 -2
  15. package/components/element/content/country.marko.js +2 -2
  16. package/components/element/content/embed-code.marko.js +2 -2
  17. package/components/element/content/fax.marko.js +2 -2
  18. package/components/element/content/mobile.marko.js +2 -2
  19. package/components/element/content/name.marko.js +2 -2
  20. package/components/element/content/phone.marko.js +2 -2
  21. package/components/element/content/public-email.marko.js +5 -5
  22. package/components/element/content/sidebar-stubs.marko +1 -0
  23. package/components/element/content/teaser.marko.js +2 -2
  24. package/components/element/content/title.marko.js +2 -2
  25. package/components/element/content/tollfree.marko.js +2 -2
  26. package/components/element/content/website.marko.js +5 -5
  27. package/components/element/image/caption.marko.js +2 -2
  28. package/components/element/image/credit.marko.js +2 -2
  29. package/components/element/image/display-name.marko.js +2 -2
  30. package/components/element/img.marko.js +2 -2
  31. package/components/element/index.marko.js +2 -2
  32. package/components/element/link.marko.js +5 -4
  33. package/components/element/obj-text.marko.js +2 -2
  34. package/components/element/obj.marko.js +11 -11
  35. package/components/element/text.marko.js +2 -2
  36. package/components/load-more/index.marko.js +3 -2
  37. package/components/load-more/trigger.marko.js +2 -2
  38. package/components/page/container.marko.js +2 -2
  39. package/components/page/description.marko.js +2 -2
  40. package/components/page/image.marko.js +9 -9
  41. package/components/page/layouts/content.marko.js +7 -4
  42. package/components/page/layouts/default.marko.js +3 -2
  43. package/components/page/metadata/components/common.marko.js +8 -3
  44. package/components/page/metadata/content.marko.js +84 -11
  45. package/components/page/metadata/default.marko.js +2 -2
  46. package/components/page/rel-canonical.marko.js +2 -2
  47. package/components/page/title.marko.js +2 -2
  48. package/components/page/wrapper.marko.js +2 -2
  49. package/components/resolve/page.marko.js +10 -10
  50. package/package.json +5 -5
@@ -2,41 +2,80 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@parameter1/base-cms-marko-web$2.13.0/components/browser-component.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/browser-component.marko",
6
+ marko_component = require("./browser-component.marko"),
6
7
  marko_renderer = require("marko/src/runtime/components/renderer"),
8
+ module_defaultValue = require("@parameter1/base-cms-marko-core/utils/default-value"),
9
+ defaultValue = module_defaultValue.default || module_defaultValue,
7
10
  module_baseCmsUtils_module = require("@parameter1/base-cms-utils"),
8
11
  baseCmsUtils_module = module_baseCmsUtils_module.default || module_baseCmsUtils_module,
9
12
  randomElementId = module_baseCmsUtils_module.randomElementId,
10
- marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
13
+ module_renderComponent = require("../utils/render-ssr-component"),
14
+ renderComponent = module_renderComponent.default || module_renderComponent,
11
15
  marko_str = require("marko/src/runtime/helpers/to-string"),
12
- marko_attr = require("marko/src/runtime/html/helpers/attr");
16
+ marko_web_resolve_template = require("@parameter1/base-cms-marko-core/components/resolve.marko"),
17
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
18
+ marko_web_resolve_tag = marko_loadTag(marko_web_resolve_template),
19
+ marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
20
+ marko_assign = require("marko/src/runtime/helpers/assign");
13
21
 
14
22
  function render(input, out, __component, component, state) {
15
23
  var data = input;
16
24
 
17
25
  const id = randomElementId({ prefix: 'vue' });
18
26
 
27
+ const tag = defaultValue(input.tag, "div");
28
+
29
+ const { name } = input;
30
+
31
+ const ssr = defaultValue(input.ssr, false);
32
+
33
+ const hydrate = ssr ? true : defaultValue(input.hydrate, false);
34
+
19
35
  const props = JSON.stringify(input.props || {});
20
36
 
21
- const contents = `<script>CMSBrowserComponents.loadComponent('#${id}', '${input.name}', ${props});</script>`;
37
+ const contents = `CMSBrowserComponents.load({ el: '#${id}', name: '${name}', props: ${props}, hydrate: ${hydrate} });`;
38
+
39
+ if (ssr) {
40
+ const { compiledVueComponents } = out.global;
41
+
42
+ const Component = compiledVueComponents[name];
22
43
 
23
- out.w("<div" +
24
- marko_attr("id", id) +
25
- ">");
44
+ if (!Component) throw new Error(`No compiled Vue template found for ${name}. Unable to render server-side.`);
26
45
 
27
- if (input.renderBody) {
28
- marko_dynamicTag(out, input.renderBody, null, null, null, null, __component, "1");
46
+ marko_web_resolve_tag({
47
+ promise: renderComponent(Component, {
48
+ id: id,
49
+ props: input.props
50
+ }),
51
+ renderBody: function(out, { resolved: html }) {
52
+ out.w(marko_str(html));
53
+ }
54
+ }, out, __component, "0");
55
+ } else {
56
+ marko_dynamicTag(out, tag, function() {
57
+ return marko_assign({}, input.attrs, {
58
+ id: id,
59
+ class: input.class
60
+ });
61
+ }, function(out) {
62
+ marko_dynamicTag(out, input.renderBody, null, null, null, null, __component, "2");
63
+ }, null, null, __component, "1");
29
64
  }
30
65
 
31
- out.w(marko_str(contents) +
32
- "</div>");
66
+ out.w("<script>" +
67
+ marko_str(contents) +
68
+ "</script>");
33
69
  }
34
70
 
35
71
  marko_template._ = marko_renderer(render, {
36
- ___implicit: true,
37
72
  ___type: marko_componentType
38
- });
73
+ }, marko_component);
39
74
 
40
75
  marko_template.meta = {
41
- id: "/@parameter1/base-cms-marko-web$2.13.0/components/browser-component.marko"
76
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/browser-component.marko",
77
+ component: "./browser-component.marko",
78
+ tags: [
79
+ "@parameter1/base-cms-marko-core/components/resolve.marko"
80
+ ]
42
81
  };
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@parameter1/base-cms-marko-web$2.13.0/components/document/components/body-wrapper.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/document/components/body-wrapper.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
8
8
  marko_attrs = require("marko/src/runtime/html/helpers/attrs");
@@ -29,5 +29,5 @@ marko_template._ = marko_renderer(render, {
29
29
  });
30
30
 
31
31
  marko_template.meta = {
32
- id: "/@parameter1/base-cms-marko-web$2.13.0/components/document/components/body-wrapper.marko"
32
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/document/components/body-wrapper.marko"
33
33
  };
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@parameter1/base-cms-marko-web$2.13.0/components/document/components/error.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/document/components/error.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_isDev = require("../../../utils/is-dev"),
8
8
  isDev = module_isDev.default || module_isDev,
@@ -77,7 +77,7 @@ marko_template._ = marko_renderer(render, {
77
77
  });
78
78
 
79
79
  marko_template.meta = {
80
- id: "/@parameter1/base-cms-marko-web$2.13.0/components/document/components/error.marko",
80
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/document/components/error.marko",
81
81
  tags: [
82
82
  "../../page/title.marko",
83
83
  "../../page/wrapper.marko"
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@parameter1/base-cms-marko-web$2.13.0/components/document/components/live-reload.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/document/components/live-reload.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_isDev = require("../../../utils/is-dev"),
8
8
  isDev = module_isDev.default || module_isDev,
@@ -26,5 +26,5 @@ marko_template._ = marko_renderer(render, {
26
26
  });
27
27
 
28
28
  marko_template.meta = {
29
- id: "/@parameter1/base-cms-marko-web$2.13.0/components/document/components/live-reload.marko"
29
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/document/components/live-reload.marko"
30
30
  };
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@parameter1/base-cms-marko-web$2.13.0/components/document/container.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/document/container.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
8
  baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
@@ -47,7 +47,7 @@ marko_template._ = marko_renderer(render, {
47
47
  });
48
48
 
49
49
  marko_template.meta = {
50
- id: "/@parameter1/base-cms-marko-web$2.13.0/components/document/container.marko",
50
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/document/container.marko",
51
51
  tags: [
52
52
  "../page/container.marko"
53
53
  ]
@@ -2,20 +2,17 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@parameter1/base-cms-marko-web$2.13.0/components/document/index.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/document/index.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
8
  baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
9
  getAsObject = module_baseCmsObjectPath_module.getAsObject,
10
10
  marko_attr = require("marko/src/runtime/html/helpers/attr"),
11
- polyfill_template = require("./components/polyfill.marko"),
12
- marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
13
- polyfill_tag = marko_loadTag(polyfill_template),
14
- assets_template = require("./components/assets.marko"),
15
- assets_tag = marko_loadTag(assets_template),
11
+ marko_forOf = require("marko/src/runtime/helpers/for-of"),
16
12
  marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
17
13
  marko_assign = require("marko/src/runtime/helpers/assign"),
18
14
  marko_web_document_container_template = require("./container.marko"),
15
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
19
16
  marko_web_document_container_tag = marko_loadTag(marko_web_document_container_template),
20
17
  live_reload_template = require("./components/live-reload.marko"),
21
18
  live_reload_tag = marko_loadTag(live_reload_template),
@@ -45,49 +42,58 @@ function render(input, out, __component, component, state) {
45
42
  marko_attr("content", viewport) +
46
43
  ">");
47
44
 
48
- polyfill_tag({
49
- features: [
50
- "es6",
51
- "es7",
52
- "fetch",
53
- "Promise.prototype.finally"
54
- ]
55
- }, out, __component, "5");
45
+ var $for$0 = 0;
46
+
47
+ marko_forOf(config.styles(), function(href) {
48
+ var $keyScope$0 = "[" + (($for$0++) + "]");
49
+
50
+ out.w("<link rel=\"stylesheet\"" +
51
+ marko_attr("href", href) +
52
+ ">");
53
+ });
56
54
 
57
- assets_tag({}, out, __component, "6");
55
+ out.w("<script>\n (function(w) {\n w.markoCompQueue = w.markoCompQueue || [];\n var name = 'CMSBrowserComponents', methods = ['load', 'loadComponent'], queue = function(method) { return function() { w.markoCompQueue.push([method, arguments]) } };\n w[name] = w[name] || {};\n for (var i = 0; i < methods.length; i++) { var method = methods[i]; w[name][method] = w[name][method] || queue(method); }\n })(window);\n </script><script src=\"/dist/js/lazysizes/v5.3.2.js\" async></script>");
58
56
 
59
- marko_dynamicTag(out, input.head, null, null, null, null, __component, "7");
57
+ marko_dynamicTag(out, input.head, null, null, null, null, __component, "6");
60
58
 
61
59
  out.w("</head><body>");
62
60
 
63
- marko_dynamicTag(out, input.aboveWrapper, null, null, null, null, __component, "9");
61
+ marko_dynamicTag(out, input.aboveWrapper, null, null, null, null, __component, "8");
64
62
 
65
63
  body_wrapper_tag({
66
64
  enabled: wrapper.enabled,
67
65
  attrs: wrapper.attrs,
68
66
  renderBody: function(out) {
69
- marko_dynamicTag(out, input.aboveContainer, null, null, null, null, __component, "11");
67
+ marko_dynamicTag(out, input.aboveContainer, null, null, null, null, __component, "10");
70
68
 
71
69
  if (input.container) {
72
70
  marko_web_document_container_tag(marko_assign({
73
71
  blockName: "document-container",
74
72
  tag: "div"
75
- }, input.container), out, __component, "12");
73
+ }, input.container), out, __component, "11");
76
74
  }
77
75
 
78
- marko_dynamicTag(out, input.belowContainer, null, null, null, null, __component, "13");
76
+ marko_dynamicTag(out, input.belowContainer, null, null, null, null, __component, "12");
79
77
 
80
- live_reload_tag({}, out, __component, "14");
78
+ live_reload_tag({}, out, __component, "13");
81
79
 
82
- marko_dynamicTag(out, input.foot, null, null, null, null, __component, "15");
80
+ marko_dynamicTag(out, input.foot, null, null, null, null, __component, "14");
83
81
  }
84
- }, out, __component, "10");
82
+ }, out, __component, "9");
83
+
84
+ marko_dynamicTag(out, input.belowWrapper, null, null, null, null, __component, "15");
85
+
86
+ marko_forOf(config.sources(), function(src) {
87
+ out.w("<script" +
88
+ marko_attr("src", src) +
89
+ "></script>");
90
+ });
85
91
 
86
- marko_dynamicTag(out, input.belowWrapper, null, null, null, null, __component, "16");
92
+ out.w("<script>CMSBrowserComponents.init();</script>");
87
93
 
88
94
  init_components_tag({}, out);
89
95
 
90
- await_reorderer_tag({}, out, __component, "17");
96
+ await_reorderer_tag({}, out, __component, "16");
91
97
 
92
98
  _preferred_script_location_tag({}, out);
93
99
 
@@ -100,10 +106,8 @@ marko_template._ = marko_renderer(render, {
100
106
  });
101
107
 
102
108
  marko_template.meta = {
103
- id: "/@parameter1/base-cms-marko-web$2.13.0/components/document/index.marko",
109
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/document/index.marko",
104
110
  tags: [
105
- "./components/polyfill.marko",
106
- "./components/assets.marko",
107
111
  "./container.marko",
108
112
  "./components/live-reload.marko",
109
113
  "./components/body-wrapper.marko",
@@ -2,11 +2,11 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/block.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/block.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
- module_objectPath_module = require("@base-cms/object-path"),
8
- objectPath_module = module_objectPath_module.default || module_objectPath_module,
9
- getAsArray = module_objectPath_module.getAsArray,
7
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
+ getAsArray = module_baseCmsObjectPath_module.getAsArray,
10
10
  marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
11
11
  marko_assign = require("marko/src/runtime/helpers/assign");
12
12
 
@@ -40,5 +40,5 @@ marko_template._ = marko_renderer(render, {
40
40
  });
41
41
 
42
42
  marko_template.meta = {
43
- id: "/@base-cms/marko-web$1.37.0/components/element/block.marko"
43
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/block.marko"
44
44
  };
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/clear.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/clear.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  marko_styleAttr = require("marko/src/runtime/html/helpers/style-attr");
8
8
 
@@ -28,5 +28,5 @@ marko_template._ = marko_renderer(render, {
28
28
  });
29
29
 
30
30
  marko_template.meta = {
31
- id: "/@base-cms/marko-web$1.37.0/components/element/clear.marko"
31
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/clear.marko"
32
32
  };
@@ -2,11 +2,11 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/components/image.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/components/image.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
- module_objectPath_module = require("@base-cms/object-path"),
8
- objectPath_module = module_objectPath_module.default || module_objectPath_module,
9
- getAsArray = module_objectPath_module.getAsArray,
7
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
+ getAsArray = module_baseCmsObjectPath_module.getAsArray,
10
10
  marko_mergeAttrs = require("marko/src/runtime/html/helpers/merge-attrs");
11
11
 
12
12
  function render(input, out, __component, component, state) {
@@ -53,5 +53,5 @@ marko_template._ = marko_renderer(render, {
53
53
  });
54
54
 
55
55
  marko_template.meta = {
56
- id: "/@base-cms/marko-web$1.37.0/components/element/components/image.marko"
56
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/components/image.marko"
57
57
  };
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/components/text.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/components/text.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
8
8
  marko_str = require("marko/src/runtime/helpers/to-string"),
@@ -33,5 +33,5 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/components/text.marko"
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/components/text.marko"
37
37
  };
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/address1.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/address1.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/address1.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/address1.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/address2.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/address2.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/address2.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/address2.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,12 +2,12 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/body.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/body.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
- module_objectPath_module = require("@base-cms/object-path"),
8
- objectPath_module = module_objectPath_module.default || module_objectPath_module,
9
- get = module_objectPath_module.get,
10
- getAsObject = module_objectPath_module.getAsObject,
7
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
+ get = module_baseCmsObjectPath_module.get,
10
+ getAsObject = module_baseCmsObjectPath_module.getAsObject,
11
11
  module_extractRender = require("../extract-render"),
12
12
  extractRender = module_extractRender.default || module_extractRender,
13
13
  marko_assign = require("marko/src/runtime/helpers/assign"),
@@ -54,7 +54,7 @@ marko_template._ = marko_renderer(render, {
54
54
  });
55
55
 
56
56
  marko_template.meta = {
57
- id: "/@base-cms/marko-web$1.37.0/components/element/content/body.marko",
57
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/body.marko",
58
58
  tags: [
59
59
  "../obj-text.marko",
60
60
  "../clear.marko"
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/city-state-zip.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/city-state-zip.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/city-state-zip.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/city-state-zip.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/country.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/country.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/country.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/country.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/embed-code.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/embed-code.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -34,7 +34,7 @@ marko_template._ = marko_renderer(render, {
34
34
  });
35
35
 
36
36
  marko_template.meta = {
37
- id: "/@base-cms/marko-web$1.37.0/components/element/content/embed-code.marko",
37
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/embed-code.marko",
38
38
  tags: [
39
39
  "../obj-text.marko"
40
40
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/fax.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/fax.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/fax.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/fax.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/mobile.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/mobile.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/mobile.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/mobile.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/name.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/name.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -34,7 +34,7 @@ marko_template._ = marko_renderer(render, {
34
34
  });
35
35
 
36
36
  marko_template.meta = {
37
- id: "/@base-cms/marko-web$1.37.0/components/element/content/name.marko",
37
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/name.marko",
38
38
  tags: [
39
39
  "../obj-text.marko"
40
40
  ]
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/phone.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/phone.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -33,7 +33,7 @@ marko_template._ = marko_renderer(render, {
33
33
  });
34
34
 
35
35
  marko_template.meta = {
36
- id: "/@base-cms/marko-web$1.37.0/components/element/content/phone.marko",
36
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/phone.marko",
37
37
  tags: [
38
38
  "../obj-text.marko"
39
39
  ]
@@ -2,11 +2,11 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/public-email.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/public-email.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
- module_objectPath_module = require("@base-cms/object-path"),
8
- objectPath_module = module_objectPath_module.default || module_objectPath_module,
9
- get = module_objectPath_module.get,
7
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
+ get = module_baseCmsObjectPath_module.get,
10
10
  module_extractRender = require("../extract-render"),
11
11
  extractRender = module_extractRender.default || module_extractRender,
12
12
  marko_assign = require("marko/src/runtime/helpers/assign"),
@@ -40,7 +40,7 @@ marko_template._ = marko_renderer(render, {
40
40
  });
41
41
 
42
42
  marko_template.meta = {
43
- id: "/@base-cms/marko-web$1.37.0/components/element/content/public-email.marko",
43
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/public-email.marko",
44
44
  tags: [
45
45
  "../obj-text.marko"
46
46
  ]
@@ -1,3 +1,4 @@
1
+ import { getAsObject } from "@parameter1/base-cms-object-path";
1
2
  import extractRender from "../extract-render";
2
3
 
3
4
  $ const { parseEmbeddedMedia, res } = out.global;
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/src/html").t(__filename),
5
- marko_componentType = "/@base-cms/marko-web$1.37.0/components/element/content/teaser.marko",
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/teaser.marko",
6
6
  marko_renderer = require("marko/src/runtime/components/renderer"),
7
7
  module_extractRender = require("../extract-render"),
8
8
  extractRender = module_extractRender.default || module_extractRender,
@@ -34,7 +34,7 @@ marko_template._ = marko_renderer(render, {
34
34
  });
35
35
 
36
36
  marko_template.meta = {
37
- id: "/@base-cms/marko-web$1.37.0/components/element/content/teaser.marko",
37
+ id: "/@parameter1/base-cms-marko-web$2.75.1/components/element/content/teaser.marko",
38
38
  tags: [
39
39
  "../obj-text.marko"
40
40
  ]