@mindful-web/marko-core 1.0.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.
Files changed (78) hide show
  1. package/.eslintignore +1 -0
  2. package/LICENSE +21 -0
  3. package/components/elements/array.marko +20 -0
  4. package/components/elements/array.marko.js +69 -0
  5. package/components/elements/components/text.marko +11 -0
  6. package/components/elements/components/text.marko.js +37 -0
  7. package/components/elements/date.marko +22 -0
  8. package/components/elements/date.marko.js +53 -0
  9. package/components/elements/img.marko +27 -0
  10. package/components/elements/img.marko.js +60 -0
  11. package/components/elements/link.marko +25 -0
  12. package/components/elements/link.marko.js +58 -0
  13. package/components/elements/marko.json +128 -0
  14. package/components/elements/obj-array.marko +13 -0
  15. package/components/elements/obj-array.marko.js +52 -0
  16. package/components/elements/obj-date.marko +17 -0
  17. package/components/elements/obj-date.marko.js +48 -0
  18. package/components/elements/obj-nodes.marko +16 -0
  19. package/components/elements/obj-nodes.marko.js +58 -0
  20. package/components/elements/obj-text.marko +16 -0
  21. package/components/elements/obj-text.marko.js +47 -0
  22. package/components/elements/obj-value.marko +14 -0
  23. package/components/elements/obj-value.marko.js +50 -0
  24. package/components/elements/text.marko +37 -0
  25. package/components/elements/text.marko.js +78 -0
  26. package/components/marko.json +10 -0
  27. package/components/queries/all-author-content.marko +3 -0
  28. package/components/queries/all-author-content.marko.js +33 -0
  29. package/components/queries/all-company-content.marko +3 -0
  30. package/components/queries/all-company-content.marko.js +33 -0
  31. package/components/queries/all-published-content.marko +3 -0
  32. package/components/queries/all-published-content.marko.js +33 -0
  33. package/components/queries/components/loader.marko +6 -0
  34. package/components/queries/components/loader.marko.js +40 -0
  35. package/components/queries/content.marko +3 -0
  36. package/components/queries/content.marko.js +33 -0
  37. package/components/queries/dynamic-page.marko +3 -0
  38. package/components/queries/dynamic-page.marko.js +33 -0
  39. package/components/queries/index.marko +65 -0
  40. package/components/queries/index.marko.js +110 -0
  41. package/components/queries/magazine-active-issues.marko +3 -0
  42. package/components/queries/magazine-active-issues.marko.js +33 -0
  43. package/components/queries/magazine-issue.marko +3 -0
  44. package/components/queries/magazine-issue.marko.js +33 -0
  45. package/components/queries/magazine-latest-issue.marko +3 -0
  46. package/components/queries/magazine-latest-issue.marko.js +33 -0
  47. package/components/queries/magazine-publication.marko +3 -0
  48. package/components/queries/magazine-publication.marko.js +33 -0
  49. package/components/queries/magazine-publications.marko +3 -0
  50. package/components/queries/magazine-publications.marko.js +33 -0
  51. package/components/queries/magazine-scheduled-content.marko +3 -0
  52. package/components/queries/magazine-scheduled-content.marko.js +33 -0
  53. package/components/queries/marko.json +66 -0
  54. package/components/queries/most-popular-content.marko +3 -0
  55. package/components/queries/most-popular-content.marko.js +33 -0
  56. package/components/queries/newsletter-scheduled-content.marko +3 -0
  57. package/components/queries/newsletter-scheduled-content.marko.js +33 -0
  58. package/components/queries/related-published-content.marko +3 -0
  59. package/components/queries/related-published-content.marko.js +33 -0
  60. package/components/queries/website-optioned-content.marko +3 -0
  61. package/components/queries/website-optioned-content.marko.js +33 -0
  62. package/components/queries/website-scheduled-content.marko +3 -0
  63. package/components/queries/website-scheduled-content.marko.js +33 -0
  64. package/components/queries/website-section.marko +3 -0
  65. package/components/queries/website-section.marko.js +33 -0
  66. package/components/queries/website-sections.marko +3 -0
  67. package/components/queries/website-sections.marko.js +33 -0
  68. package/components/resolve.marko +32 -0
  69. package/components/resolve.marko.js +85 -0
  70. package/marko.json +6 -0
  71. package/middleware/clean-marko-response.js +1 -0
  72. package/package.json +35 -0
  73. package/utils/build-marko-global.js +1 -0
  74. package/utils/clean-marko-chunk.js +1 -0
  75. package/utils/default-value.js +6 -0
  76. package/utils/extract-render-body.js +1 -0
  77. package/utils/is-dev.js +1 -0
  78. package/utils/should-collapse.js +5 -0
@@ -0,0 +1,110 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/index.marko",
6
+ marko_component = require("./index.marko"),
7
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
8
+ module_utils_module = require("@mindful-web/utils"),
9
+ utils_module = module_utils_module.default || module_utils_module,
10
+ warn = module_utils_module.warn,
11
+ module_AllAuthorContent = require("./all-author-content"),
12
+ AllAuthorContent = module_AllAuthorContent.default || module_AllAuthorContent,
13
+ module_AllCompanyContent = require("./all-company-content"),
14
+ AllCompanyContent = module_AllCompanyContent.default || module_AllCompanyContent,
15
+ module_AllPublishedContent = require("./all-published-content"),
16
+ AllPublishedContent = module_AllPublishedContent.default || module_AllPublishedContent,
17
+ module_Content = require("./content"),
18
+ Content = module_Content.default || module_Content,
19
+ module_DynamicPage = require("./dynamic-page"),
20
+ DynamicPage = module_DynamicPage.default || module_DynamicPage,
21
+ module_MagazineActiveIssues = require("./magazine-active-issues"),
22
+ MagazineActiveIssues = module_MagazineActiveIssues.default || module_MagazineActiveIssues,
23
+ module_MagazineIssue = require("./magazine-issue"),
24
+ MagazineIssue = module_MagazineIssue.default || module_MagazineIssue,
25
+ module_MagazineLatestIssue = require("./magazine-latest-issue"),
26
+ MagazineLatestIssue = module_MagazineLatestIssue.default || module_MagazineLatestIssue,
27
+ module_MagazinePublication = require("./magazine-publication"),
28
+ MagazinePublication = module_MagazinePublication.default || module_MagazinePublication,
29
+ module_MagazinePublications = require("./magazine-publications"),
30
+ MagazinePublications = module_MagazinePublications.default || module_MagazinePublications,
31
+ module_MagazineScheduledContent = require("./magazine-scheduled-content"),
32
+ MagazineScheduledContent = module_MagazineScheduledContent.default || module_MagazineScheduledContent,
33
+ module_NewsletterScheduledContent = require("./newsletter-scheduled-content"),
34
+ NewsletterScheduledContent = module_NewsletterScheduledContent.default || module_NewsletterScheduledContent,
35
+ module_RelatedPublishedContent = require("./related-published-content"),
36
+ RelatedPublishedContent = module_RelatedPublishedContent.default || module_RelatedPublishedContent,
37
+ module_WebsiteOptionedContent = require("./website-optioned-content"),
38
+ WebsiteOptionedContent = module_WebsiteOptionedContent.default || module_WebsiteOptionedContent,
39
+ module_WebsiteScheduledContent = require("./website-scheduled-content"),
40
+ WebsiteScheduledContent = module_WebsiteScheduledContent.default || module_WebsiteScheduledContent,
41
+ module_WebsiteSection = require("./website-section"),
42
+ WebsiteSection = module_WebsiteSection.default || module_WebsiteSection,
43
+ module_WebsiteSections = require("./website-sections"),
44
+ WebsiteSections = module_WebsiteSections.default || module_WebsiteSections,
45
+ module_shouldCollapse = require("../../utils/should-collapse"),
46
+ shouldCollapse = module_shouldCollapse.default || module_shouldCollapse,
47
+ marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag");
48
+
49
+ function render(input, out, __component, component, state) {
50
+ var data = input;
51
+
52
+ const map = {
53
+ "all-author-content": AllAuthorContent,
54
+ "all-company-content": AllCompanyContent,
55
+ "all-published-content": AllPublishedContent,
56
+ "content": Content,
57
+ "dynamic-page": DynamicPage,
58
+ "magazine-active-issues": MagazineActiveIssues,
59
+ "magazine-issue": MagazineIssue,
60
+ "magazine-latest-issue": MagazineLatestIssue,
61
+ "magazine-publication": MagazinePublication,
62
+ "magazine-publications": MagazinePublications,
63
+ "magazine-scheduled-content": MagazineScheduledContent,
64
+ "newsletter-scheduled-content": NewsletterScheduledContent,
65
+ "related-published-content": RelatedPublishedContent,
66
+ "website-optioned-content": WebsiteOptionedContent,
67
+ "website-scheduled-content": WebsiteScheduledContent,
68
+ "website-section": WebsiteSection,
69
+ "website-sections": WebsiteSections,
70
+ };
71
+
72
+ const collapsible = shouldCollapse(input.collapsible);
73
+
74
+ const Component = map[input.name];
75
+
76
+ if (Component) {
77
+ marko_dynamicTag(out, Component, function() {
78
+ return input.params;
79
+ }, function(out, data) {
80
+ const { nodes, node } = data;
81
+
82
+ if (nodes) {
83
+ if (nodes.length || (!collapsible)) {
84
+ marko_dynamicTag(out, input.renderBody, function() {
85
+ return data;
86
+ }, null, null, null, __component, "1");
87
+ } else {
88
+ marko_dynamicTag(out, input.whenEmpty, null, null, null, null, __component, "2");
89
+ }
90
+ } else if (node || (!collapsible)) {
91
+ marko_dynamicTag(out, input.renderBody, function() {
92
+ return data;
93
+ }, null, null, null, __component, "3");
94
+ } else {
95
+ marko_dynamicTag(out, input.whenEmpty, null, null, null, null, __component, "4");
96
+ }
97
+ }, null, null, __component, "0");
98
+ } else {
99
+ warn(`Unable to execute query: no component was found for '${input.name}'`);
100
+ }
101
+ }
102
+
103
+ marko_template._ = marko_renderer(render, {
104
+ e_: marko_componentType
105
+ }, marko_component);
106
+
107
+ marko_template.meta = {
108
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/index.marko",
109
+ component: "./index.marko"
110
+ };
@@ -0,0 +1,3 @@
1
+ import { magazineActiveIssues as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/magazine-active-issues.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.magazineActiveIssues,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/magazine-active-issues.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { magazineIssue as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/magazine-issue.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.magazineIssue,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/magazine-issue.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { magazineLatestIssue as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/magazine-latest-issue.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.magazineLatestIssue,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/magazine-latest-issue.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { magazinePublication as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/magazine-publication.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.magazinePublication,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/magazine-publication.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { magazinePublications as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/magazine-publications.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.magazinePublications,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/magazine-publications.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { magazineScheduledContent as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/magazine-scheduled-content.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.magazineScheduledContent,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/magazine-scheduled-content.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,66 @@
1
+ {
2
+ "<marko-web-query>": {
3
+ "template": "./index.marko",
4
+ "<when-empty>": {},
5
+ "@name": "string",
6
+ "@params": "object",
7
+ "@collapsible": {
8
+ "type": "boolean",
9
+ "default-value": true
10
+ }
11
+ },
12
+ "<marko-web-query-website-scheduled-content>": {
13
+ "template": "./website-scheduled-content.marko"
14
+ },
15
+ "<marko-web-query-related-published-content>": {
16
+ "template": "./related-published-content.marko"
17
+ },
18
+ "<marko-web-query-all-published-content>": {
19
+ "template": "./all-published-content.marko"
20
+ },
21
+ "<marko-web-query-all-author-content>": {
22
+ "template": "./all-author-content.marko"
23
+ },
24
+ "<marko-web-query-all-company-content>": {
25
+ "template": "./all-company-content.marko"
26
+ },
27
+ "<marko-web-query-magazine-publications>": {
28
+ "template": "./magazine-publications.marko"
29
+ },
30
+ "<marko-web-query-magazine-latest-issue>": {
31
+ "template": "./magazine-latest-issue.marko"
32
+ },
33
+ "<marko-web-query-magazine-active-issues>": {
34
+ "template": "./magazine-active-issues.marko"
35
+ },
36
+ "<marko-web-query-magazine-scheduled-content>": {
37
+ "template": "./magazine-scheduled-content.marko"
38
+ },
39
+ "<marko-web-query-most-popular-content>": {
40
+ "template": "./most-popular-content.marko"
41
+ },
42
+ "<marko-web-query-website-optioned-content>": {
43
+ "template": "./website-optioned-content.marko"
44
+ },
45
+ "<marko-web-query-content>": {
46
+ "template": "./content.marko"
47
+ },
48
+ "<marko-web-query-website-section>": {
49
+ "template": "./website-section.marko"
50
+ },
51
+ "<marko-web-query-website-sections>": {
52
+ "template": "./website-sections.marko"
53
+ },
54
+ "<marko-web-query-dynamic-page>": {
55
+ "template": "./dynamic-page.marko"
56
+ },
57
+ "<marko-web-query-magazine-issue>": {
58
+ "template": "./magazine-issue.marko"
59
+ },
60
+ "<marko-web-query-magazine-publication>": {
61
+ "template": "./magazine-publication.marko"
62
+ },
63
+ "<marko-web-query-newsletter-scheduled-content>": {
64
+ "template": "./newsletter-scheduled-content.marko"
65
+ }
66
+ }
@@ -0,0 +1,3 @@
1
+ import { mostPopularContent as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/most-popular-content.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.mostPopularContent,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/most-popular-content.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { newsletterScheduledContent as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/newsletter-scheduled-content.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.newsletterScheduledContent,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/newsletter-scheduled-content.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { relatedPublishedContent as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/related-published-content.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.relatedPublishedContent,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/related-published-content.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { websiteOptionedContent as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/website-optioned-content.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.websiteOptionedContent,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/website-optioned-content.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { websiteScheduledContent as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/website-scheduled-content.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.websiteScheduledContent,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/website-scheduled-content.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { websiteSection as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />
@@ -0,0 +1,33 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
+ marko_componentType = "/@mindful-web/marko-core$1.0.0/components/queries/website-section.marko",
6
+ marko_renderer = require("marko/dist/runtime/components/renderer"),
7
+ module_blockLoaders_module = require("@mindful-web/web-common/block-loaders"),
8
+ blockLoaders_module = module_blockLoaders_module.default || module_blockLoaders_module,
9
+ loader = module_blockLoaders_module.websiteSection,
10
+ marko_assign = require("marko/dist/runtime/helpers/assign"),
11
+ loader_template = require("./components/loader.marko"),
12
+ marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
13
+ loader_tag = marko_loadTag(loader_template);
14
+
15
+ function render(input, out, __component, component, state) {
16
+ var data = input;
17
+
18
+ loader_tag(marko_assign({
19
+ loader: loader
20
+ }, input), out, __component, "0");
21
+ }
22
+
23
+ marko_template._ = marko_renderer(render, {
24
+ d_: true,
25
+ e_: marko_componentType
26
+ });
27
+
28
+ marko_template.meta = {
29
+ id: "/@mindful-web/marko-core$1.0.0/components/queries/website-section.marko",
30
+ tags: [
31
+ "./components/loader.marko"
32
+ ]
33
+ };
@@ -0,0 +1,3 @@
1
+ import { websiteSections as loader } from "@mindful-web/web-common/block-loaders";
2
+
3
+ <loader loader=loader ...input />