@mindful-web/marko-web 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.
- package/.eslintignore +3 -0
- package/LICENSE +21 -0
- package/browser/.eslintrc.js +1 -0
- package/browser/components/element-id.js +1 -0
- package/browser/components/gated-download/wufoo.vue +97 -0
- package/browser/components/image-slide.vue +54 -0
- package/browser/components/image-slider.vue +87 -0
- package/browser/components/index.js +15 -0
- package/browser/components/load-more-trigger.vue +129 -0
- package/browser/components/oembed.vue +133 -0
- package/browser/components/trigger-in-view-event.vue +41 -0
- package/browser/components/trigger-screen-change-event.vue +94 -0
- package/browser/event-bus.js +5 -0
- package/browser/index.js +83 -0
- package/browser/jquery-full.js +3 -0
- package/browser/jquery.js +3 -0
- package/browser/utils/clean-path.js +4 -0
- package/browser/vue.js +3 -0
- package/components/browser-component/script.marko +10 -0
- package/components/browser-component/script.marko.js +39 -0
- package/components/browser-component.marko +25 -0
- package/components/browser-component.marko.js +75 -0
- package/components/deferred-stylesheet.marko +6 -0
- package/components/deferred-stylesheet.marko.js +28 -0
- package/components/document/components/body-wrapper.marko +8 -0
- package/components/document/components/body-wrapper.marko.js +33 -0
- package/components/document/components/error.marko +26 -0
- package/components/document/components/error.marko.js +88 -0
- package/components/document/components/live-reload.marko +7 -0
- package/components/document/components/live-reload.marko.js +30 -0
- package/components/document/components/polyfill.marko +8 -0
- package/components/document/components/polyfill.marko.js +33 -0
- package/components/document/components/styles.marko +20 -0
- package/components/document/components/styles.marko.js +61 -0
- package/components/document/container.marko +15 -0
- package/components/document/container.marko.js +54 -0
- package/components/document/index.marko +63 -0
- package/components/document/index.marko.js +139 -0
- package/components/document/marko.json +46 -0
- package/components/element/array.marko +19 -0
- package/components/element/array.marko.js +67 -0
- package/components/element/audio.marko +5 -0
- package/components/element/audio.marko.js +33 -0
- package/components/element/block.marko +11 -0
- package/components/element/block.marko.js +44 -0
- package/components/element/clear.marko +4 -0
- package/components/element/clear.marko.js +32 -0
- package/components/element/components/image.marko +32 -0
- package/components/element/components/image.marko.js +62 -0
- package/components/element/components/text.marko +11 -0
- package/components/element/components/text.marko.js +37 -0
- package/components/element/content/address1.marko +14 -0
- package/components/element/content/address1.marko.js +40 -0
- package/components/element/content/address2.marko +14 -0
- package/components/element/content/address2.marko.js +40 -0
- package/components/element/content/audio.marko +13 -0
- package/components/element/content/audio.marko.js +39 -0
- package/components/element/content/authors.marko +12 -0
- package/components/element/content/authors.marko.js +43 -0
- package/components/element/content/body.marko +28 -0
- package/components/element/content/body.marko.js +66 -0
- package/components/element/content/byline.marko +15 -0
- package/components/element/content/byline.marko.js +41 -0
- package/components/element/content/city-state-zip.marko +14 -0
- package/components/element/content/city-state-zip.marko.js +40 -0
- package/components/element/content/contributors.marko +12 -0
- package/components/element/content/contributors.marko.js +43 -0
- package/components/element/content/country.marko +14 -0
- package/components/element/content/country.marko.js +40 -0
- package/components/element/content/embed-code.marko +15 -0
- package/components/element/content/embed-code.marko.js +41 -0
- package/components/element/content/end-date.marko +17 -0
- package/components/element/content/end-date.marko.js +43 -0
- package/components/element/content/ends.marko +14 -0
- package/components/element/content/ends.marko.js +40 -0
- package/components/element/content/fax.marko +14 -0
- package/components/element/content/fax.marko.js +40 -0
- package/components/element/content/images.marko +12 -0
- package/components/element/content/images.marko.js +43 -0
- package/components/element/content/marko.json +328 -0
- package/components/element/content/mobile.marko +14 -0
- package/components/element/content/mobile.marko.js +40 -0
- package/components/element/content/name.marko +15 -0
- package/components/element/content/name.marko.js +41 -0
- package/components/element/content/phone.marko +14 -0
- package/components/element/content/phone.marko.js +40 -0
- package/components/element/content/photographers.marko +12 -0
- package/components/element/content/photographers.marko.js +43 -0
- package/components/element/content/public-email.marko +19 -0
- package/components/element/content/public-email.marko.js +47 -0
- package/components/element/content/published.marko +17 -0
- package/components/element/content/published.marko.js +43 -0
- package/components/element/content/short-name.marko +15 -0
- package/components/element/content/short-name.marko.js +41 -0
- package/components/element/content/sidebar-stubs.marko +24 -0
- package/components/element/content/sidebar-stubs.marko.js +63 -0
- package/components/element/content/sidebars.marko +27 -0
- package/components/element/content/sidebars.marko.js +63 -0
- package/components/element/content/source.marko +14 -0
- package/components/element/content/source.marko.js +40 -0
- package/components/element/content/sponsors.marko +12 -0
- package/components/element/content/sponsors.marko.js +43 -0
- package/components/element/content/start-date.marko +17 -0
- package/components/element/content/start-date.marko.js +43 -0
- package/components/element/content/starts.marko +14 -0
- package/components/element/content/starts.marko.js +40 -0
- package/components/element/content/teaser.marko +15 -0
- package/components/element/content/teaser.marko.js +41 -0
- package/components/element/content/title.marko +14 -0
- package/components/element/content/title.marko.js +40 -0
- package/components/element/content/tollfree.marko +14 -0
- package/components/element/content/tollfree.marko.js +40 -0
- package/components/element/content/transcript.marko +22 -0
- package/components/element/content/transcript.marko.js +53 -0
- package/components/element/content/website.marko +22 -0
- package/components/element/content/website.marko.js +51 -0
- package/components/element/date.marko +2 -0
- package/components/element/date.marko.js +27 -0
- package/components/element/extract-render.js +1 -0
- package/components/element/image/caption.marko +15 -0
- package/components/element/image/caption.marko.js +41 -0
- package/components/element/image/credit.marko +15 -0
- package/components/element/image/credit.marko.js +41 -0
- package/components/element/image/display-name.marko +14 -0
- package/components/element/image/display-name.marko.js +40 -0
- package/components/element/image/marko.json +38 -0
- package/components/element/image/slider.marko +18 -0
- package/components/element/image/slider.marko.js +50 -0
- package/components/element/img.marko +12 -0
- package/components/element/img.marko.js +43 -0
- package/components/element/index.marko +12 -0
- package/components/element/index.marko.js +47 -0
- package/components/element/link.marko +25 -0
- package/components/element/link.marko.js +54 -0
- package/components/element/magazine-issue/description.marko +14 -0
- package/components/element/magazine-issue/description.marko.js +40 -0
- package/components/element/magazine-issue/digital-edition-url.marko +22 -0
- package/components/element/magazine-issue/digital-edition-url.marko.js +51 -0
- package/components/element/magazine-issue/marko.json +42 -0
- package/components/element/magazine-issue/name.marko +14 -0
- package/components/element/magazine-issue/name.marko.js +40 -0
- package/components/element/magazine-issue/pdf-url.marko +22 -0
- package/components/element/magazine-issue/pdf-url.marko.js +51 -0
- package/components/element/magazine-publication/cancel-url.marko +22 -0
- package/components/element/magazine-publication/cancel-url.marko.js +51 -0
- package/components/element/magazine-publication/change-address-url.marko +22 -0
- package/components/element/magazine-publication/change-address-url.marko.js +51 -0
- package/components/element/magazine-publication/description.marko +14 -0
- package/components/element/magazine-publication/description.marko.js +40 -0
- package/components/element/magazine-publication/einquiry-url.marko +22 -0
- package/components/element/magazine-publication/einquiry-url.marko.js +51 -0
- package/components/element/magazine-publication/marko.json +82 -0
- package/components/element/magazine-publication/name.marko +14 -0
- package/components/element/magazine-publication/name.marko.js +40 -0
- package/components/element/magazine-publication/renewal-url.marko +22 -0
- package/components/element/magazine-publication/renewal-url.marko.js +51 -0
- package/components/element/magazine-publication/reprints-url.marko +22 -0
- package/components/element/magazine-publication/reprints-url.marko.js +51 -0
- package/components/element/magazine-publication/subscribe-url.marko +22 -0
- package/components/element/magazine-publication/subscribe-url.marko.js +51 -0
- package/components/element/marko.json +211 -0
- package/components/element/obj-array.marko +17 -0
- package/components/element/obj-array.marko.js +56 -0
- package/components/element/obj-audio.marko +20 -0
- package/components/element/obj-audio.marko.js +50 -0
- package/components/element/obj-date.marko +25 -0
- package/components/element/obj-date.marko.js +55 -0
- package/components/element/obj-nodes.marko +20 -0
- package/components/element/obj-nodes.marko.js +62 -0
- package/components/element/obj-text.marko +23 -0
- package/components/element/obj-text.marko.js +53 -0
- package/components/element/obj.marko +23 -0
- package/components/element/obj.marko.js +61 -0
- package/components/element/object-link.js +49 -0
- package/components/element/object-type.js +9 -0
- package/components/element/picture.marko +38 -0
- package/components/element/picture.marko.js +85 -0
- package/components/element/show-element.js +8 -0
- package/components/element/text.marko +37 -0
- package/components/element/text.marko.js +76 -0
- package/components/element/website-section/description.marko +16 -0
- package/components/element/website-section/description.marko.js +44 -0
- package/components/element/website-section/hierarchy.marko +19 -0
- package/components/element/website-section/hierarchy.marko.js +60 -0
- package/components/element/website-section/marko.json +31 -0
- package/components/element/website-section/name.marko +18 -0
- package/components/element/website-section/name.marko.js +46 -0
- package/components/font/google.marko +6 -0
- package/components/font/google.marko.js +41 -0
- package/components/font/link.marko +14 -0
- package/components/font/link.marko.js +45 -0
- package/components/font/marko.json +21 -0
- package/components/font/typekit.marko +5 -0
- package/components/font/typekit.marko.js +38 -0
- package/components/load-more/index.marko +53 -0
- package/components/load-more/index.marko.js +119 -0
- package/components/load-more/marko.json +30 -0
- package/components/load-more/trigger.marko +11 -0
- package/components/load-more/trigger.marko.js +40 -0
- package/components/marko.json +37 -0
- package/components/node/body.marko +40 -0
- package/components/node/body.marko.js +112 -0
- package/components/node/element.marko +6 -0
- package/components/node/element.marko.js +39 -0
- package/components/node/footer.marko +19 -0
- package/components/node/footer.marko.js +63 -0
- package/components/node/header.marko +19 -0
- package/components/node/header.marko.js +63 -0
- package/components/node/image-inner-wrapper.marko +61 -0
- package/components/node/image-inner-wrapper.marko.js +116 -0
- package/components/node/image-wrapper.marko +34 -0
- package/components/node/image-wrapper.marko.js +98 -0
- package/components/node/image.marko +51 -0
- package/components/node/image.marko.js +93 -0
- package/components/node/index.marko +35 -0
- package/components/node/index.marko.js +100 -0
- package/components/node/marko.json +189 -0
- package/components/node/utils/image-height.js +3 -0
- package/components/node/utils/image-values.js +17 -0
- package/components/node-list/body.marko +19 -0
- package/components/node-list/body.marko.js +50 -0
- package/components/node-list/element.marko +3 -0
- package/components/node-list/element.marko.js +35 -0
- package/components/node-list/footer.marko +19 -0
- package/components/node-list/footer.marko.js +50 -0
- package/components/node-list/header.marko +19 -0
- package/components/node-list/header.marko.js +50 -0
- package/components/node-list/index.marko +36 -0
- package/components/node-list/index.marko.js +93 -0
- package/components/node-list/marko.json +121 -0
- package/components/node-list/node.marko +15 -0
- package/components/node-list/node.marko.js +49 -0
- package/components/node-list/nodes.marko +82 -0
- package/components/node-list/nodes.marko.js +126 -0
- package/components/page/container.marko +13 -0
- package/components/page/container.marko.js +46 -0
- package/components/page/description.marko +4 -0
- package/components/page/description.marko.js +26 -0
- package/components/page/image.marko +50 -0
- package/components/page/image.marko.js +122 -0
- package/components/page/layouts/content.marko +23 -0
- package/components/page/layouts/content.marko.js +63 -0
- package/components/page/layouts/default.marko +20 -0
- package/components/page/layouts/default.marko.js +61 -0
- package/components/page/layouts/dynamic-page.marko +19 -0
- package/components/page/layouts/dynamic-page.marko.js +59 -0
- package/components/page/layouts/magazine-issue.marko +19 -0
- package/components/page/layouts/magazine-issue.marko.js +59 -0
- package/components/page/layouts/magazine-publication.marko +19 -0
- package/components/page/layouts/magazine-publication.marko.js +59 -0
- package/components/page/layouts/marko.json +86 -0
- package/components/page/layouts/website-section.marko +25 -0
- package/components/page/layouts/website-section.marko.js +78 -0
- package/components/page/marko.json +93 -0
- package/components/page/metadata/components/common.marko +54 -0
- package/components/page/metadata/components/common.marko.js +117 -0
- package/components/page/metadata/content.marko +147 -0
- package/components/page/metadata/content.marko.js +216 -0
- package/components/page/metadata/default.marko +2 -0
- package/components/page/metadata/default.marko.js +29 -0
- package/components/page/metadata/dynamic-page.marko +40 -0
- package/components/page/metadata/dynamic-page.marko.js +84 -0
- package/components/page/metadata/google-structured-data/content.js +138 -0
- package/components/page/metadata/magazine-issue.marko +39 -0
- package/components/page/metadata/magazine-issue.marko.js +83 -0
- package/components/page/metadata/magazine-publication.marko +35 -0
- package/components/page/metadata/magazine-publication.marko.js +79 -0
- package/components/page/metadata/marko.json +32 -0
- package/components/page/metadata/website-section.marko +48 -0
- package/components/page/metadata/website-section.marko.js +92 -0
- package/components/page/rel-canonical.marko +13 -0
- package/components/page/rel-canonical.marko.js +42 -0
- package/components/page/title.marko +18 -0
- package/components/page/title.marko.js +46 -0
- package/components/page/wrapper.marko +16 -0
- package/components/page/wrapper.marko.js +63 -0
- package/components/resolve/marko.json +6 -0
- package/components/resolve/page.marko +10 -0
- package/components/resolve/page.marko.js +49 -0
- package/components/rss/marko.json +10 -0
- package/components/rss/website-section.marko +17 -0
- package/components/rss/website-section.marko.js +46 -0
- package/config/abstract-config.js +42 -0
- package/config/core.js +48 -0
- package/config/site.js +6 -0
- package/express/apollo.js +34 -0
- package/express/asset-loader.js +55 -0
- package/express/cdn.js +27 -0
- package/express/css-loader.js +117 -0
- package/express/embedded-media.js +31 -0
- package/express/error-handlers.js +113 -0
- package/express/find-content-alias.js +30 -0
- package/express/get-redirect.js +44 -0
- package/express/graphql-proxy.js +17 -0
- package/express/index.js +153 -0
- package/express/json-error-handler.js +30 -0
- package/express/load-document.js +3 -0
- package/express/load-more.js +6 -0
- package/express/load-object.js +10 -0
- package/express/oembed.js +18 -0
- package/express/rss.js +19 -0
- package/express/sitemaps.js +16 -0
- package/express/website-context.js +19 -0
- package/index.js +8 -0
- package/integration/test-website-boot.js +198 -0
- package/marko.json +6 -0
- package/middleware/disabled-features.js +15 -0
- package/middleware/index.js +15 -0
- package/middleware/page-node/index.js +45 -0
- package/middleware/page-node/resolved.js +26 -0
- package/middleware/with-content.js +54 -0
- package/middleware/with-dynamic-page.js +37 -0
- package/middleware/with-load-more.js +9 -0
- package/middleware/with-magazine-issue.js +24 -0
- package/middleware/with-magazine-publication.js +24 -0
- package/middleware/with-website-section.js +47 -0
- package/package.json +64 -0
- package/scss/carousel.scss +42 -0
- package/scss/document.scss +55 -0
- package/scss/fonts/alata-fallback.scss +7 -0
- package/scss/fonts/alegreya-fallback.scss +6 -0
- package/scss/fonts/arimo-fallback.scss +7 -0
- package/scss/fonts/fira-sans-fallback.scss +7 -0
- package/scss/fonts/ibm-plex-sans-fallback.scss +7 -0
- package/scss/fonts/informapro-fallback.scss +6 -0
- package/scss/fonts/lato-fallback.scss +7 -0
- package/scss/fonts/manrope-fallback.scss +6 -0
- package/scss/fonts/merriweather-fallback.scss +7 -0
- package/scss/fonts/montserrat-fallback.scss +7 -0
- package/scss/fonts/open-sans-condensed-fallback.scss +6 -0
- package/scss/fonts/open-sans-fallback.scss +7 -0
- package/scss/fonts/oswald-fallback.scss +7 -0
- package/scss/fonts/poppins-fallback.scss +6 -0
- package/scss/fonts/pt-sans-fallback.scss +6 -0
- package/scss/fonts/pt-serif-fallback.scss +6 -0
- package/scss/fonts/public-sans-fallback.scss +7 -0
- package/scss/fonts/raleway-fallback.scss +6 -0
- package/scss/fonts/roboto-condensed-fallback.scss +7 -0
- package/scss/fonts/roboto-fallback.scss +7 -0
- package/scss/fonts/roboto-slab-fallback.scss +7 -0
- package/scss/fonts/solitaire-mvb-pro-fallback.scss +6 -0
- package/scss/fonts/source-sans-4-fallback.scss +7 -0
- package/scss/fonts/source-serif-pro-fallback.scss +7 -0
- package/scss/fonts/synthese-fallback.scss +6 -0
- package/scss/fonts/zilla-slab-fallback.scss +6 -0
- package/scss/load-more.scss +3 -0
- package/scss/node-list.scss +144 -0
- package/scss/node.scss +371 -0
- package/scss/page-image.scss +15 -0
- package/start-server.js +169 -0
- package/utils/apply-query-params.js +16 -0
- package/utils/build-content-input.js +9 -0
- package/utils/build-marko-global.js +1 -0
- package/utils/default-value.js +1 -0
- package/utils/embedded-media/facebook-oembed.js +50 -0
- package/utils/embedded-media/image.js +71 -0
- package/utils/embedded-media/index.js +8 -0
- package/utils/embedded-media/instagram-oembed.js +57 -0
- package/utils/embedded-media/oembed.js +18 -0
- package/utils/hierarchy-aliases.js +3 -0
- package/utils/hierarchy-ids.js +3 -0
- package/utils/index.js +11 -0
- package/utils/is-dev.js +1 -0
- package/utils/published-content/description.js +1 -0
- package/utils/render-ssr-component-from-marko.js +18 -0
- package/utils/render-ssr-component.js +15 -0
- package/utils/should-collapse.js +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import extractRender from "../extract-render";
|
|
2
|
+
|
|
3
|
+
<marko-web-obj-text
|
|
4
|
+
type="content"
|
|
5
|
+
block-name=input.blockName
|
|
6
|
+
obj=input.obj
|
|
7
|
+
field="ends"
|
|
8
|
+
tag=input.tag
|
|
9
|
+
class=input.class
|
|
10
|
+
modifiers=input.modifiers
|
|
11
|
+
attrs=input.attrs
|
|
12
|
+
link=input.link
|
|
13
|
+
...extractRender(input)
|
|
14
|
+
/>
|
|
@@ -0,0 +1,40 @@
|
|
|
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-web$1.0.0/components/element/content/ends.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_extractRender = require("../extract-render"),
|
|
8
|
+
extractRender = module_extractRender.default || module_extractRender,
|
|
9
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
10
|
+
marko_web_obj_text_template = require("../obj-text.marko"),
|
|
11
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
12
|
+
marko_web_obj_text_tag = marko_loadTag(marko_web_obj_text_template);
|
|
13
|
+
|
|
14
|
+
function render(input, out, __component, component, state) {
|
|
15
|
+
var data = input;
|
|
16
|
+
|
|
17
|
+
marko_web_obj_text_tag(marko_assign({
|
|
18
|
+
type: "content",
|
|
19
|
+
blockName: input.blockName,
|
|
20
|
+
obj: input.obj,
|
|
21
|
+
field: "ends",
|
|
22
|
+
tag: input.tag,
|
|
23
|
+
class: input.class,
|
|
24
|
+
modifiers: input.modifiers,
|
|
25
|
+
attrs: input.attrs,
|
|
26
|
+
link: input.link
|
|
27
|
+
}, extractRender(input)), out, __component, "0");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
marko_template._ = marko_renderer(render, {
|
|
31
|
+
d_: true,
|
|
32
|
+
e_: marko_componentType
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
marko_template.meta = {
|
|
36
|
+
id: "/@mindful-web/marko-web$1.0.0/components/element/content/ends.marko",
|
|
37
|
+
tags: [
|
|
38
|
+
"../obj-text.marko"
|
|
39
|
+
]
|
|
40
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import extractRender from "../extract-render";
|
|
2
|
+
|
|
3
|
+
<marko-web-obj-text
|
|
4
|
+
type="content"
|
|
5
|
+
block-name=input.blockName
|
|
6
|
+
obj=input.obj
|
|
7
|
+
field="fax"
|
|
8
|
+
tag=(input.tag || "tel")
|
|
9
|
+
class=input.class
|
|
10
|
+
modifiers=input.modifiers
|
|
11
|
+
attrs=input.attrs
|
|
12
|
+
link=input.link
|
|
13
|
+
...extractRender(input)
|
|
14
|
+
/>
|
|
@@ -0,0 +1,40 @@
|
|
|
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-web$1.0.0/components/element/content/fax.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_extractRender = require("../extract-render"),
|
|
8
|
+
extractRender = module_extractRender.default || module_extractRender,
|
|
9
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
10
|
+
marko_web_obj_text_template = require("../obj-text.marko"),
|
|
11
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
12
|
+
marko_web_obj_text_tag = marko_loadTag(marko_web_obj_text_template);
|
|
13
|
+
|
|
14
|
+
function render(input, out, __component, component, state) {
|
|
15
|
+
var data = input;
|
|
16
|
+
|
|
17
|
+
marko_web_obj_text_tag(marko_assign({
|
|
18
|
+
type: "content",
|
|
19
|
+
blockName: input.blockName,
|
|
20
|
+
obj: input.obj,
|
|
21
|
+
field: "fax",
|
|
22
|
+
tag: input.tag || "tel",
|
|
23
|
+
class: input.class,
|
|
24
|
+
modifiers: input.modifiers,
|
|
25
|
+
attrs: input.attrs,
|
|
26
|
+
link: input.link
|
|
27
|
+
}, extractRender(input)), out, __component, "0");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
marko_template._ = marko_renderer(render, {
|
|
31
|
+
d_: true,
|
|
32
|
+
e_: marko_componentType
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
marko_template.meta = {
|
|
36
|
+
id: "/@mindful-web/marko-web$1.0.0/components/element/content/fax.marko",
|
|
37
|
+
tags: [
|
|
38
|
+
"../obj-text.marko"
|
|
39
|
+
]
|
|
40
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<marko-web-obj-nodes|result|
|
|
2
|
+
type="content"
|
|
3
|
+
block-name=input.blockName
|
|
4
|
+
obj=input.obj
|
|
5
|
+
field="images"
|
|
6
|
+
tag=input.tag
|
|
7
|
+
class=input.class
|
|
8
|
+
modifiers=input.modifiers
|
|
9
|
+
attrs=input.attrs
|
|
10
|
+
>
|
|
11
|
+
<${input.renderBody} ...result />
|
|
12
|
+
</marko-web-obj-nodes>
|
|
@@ -0,0 +1,43 @@
|
|
|
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-web$1.0.0/components/element/content/images.marko",
|
|
6
|
+
marko_component = require("./images.marko"),
|
|
7
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
8
|
+
marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag"),
|
|
9
|
+
marko_web_obj_nodes_template = require("../obj-nodes.marko"),
|
|
10
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
11
|
+
marko_web_obj_nodes_tag = marko_loadTag(marko_web_obj_nodes_template);
|
|
12
|
+
|
|
13
|
+
function render(input, out, __component, component, state) {
|
|
14
|
+
var data = input;
|
|
15
|
+
|
|
16
|
+
marko_web_obj_nodes_tag({
|
|
17
|
+
type: "content",
|
|
18
|
+
blockName: input.blockName,
|
|
19
|
+
obj: input.obj,
|
|
20
|
+
field: "images",
|
|
21
|
+
tag: input.tag,
|
|
22
|
+
class: input.class,
|
|
23
|
+
modifiers: input.modifiers,
|
|
24
|
+
attrs: input.attrs,
|
|
25
|
+
renderBody: function(out, result) {
|
|
26
|
+
marko_dynamicTag(out, input.renderBody, function() {
|
|
27
|
+
return result;
|
|
28
|
+
}, null, null, null, __component, "1");
|
|
29
|
+
}
|
|
30
|
+
}, out, __component, "0");
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
marko_template._ = marko_renderer(render, {
|
|
34
|
+
e_: marko_componentType
|
|
35
|
+
}, marko_component);
|
|
36
|
+
|
|
37
|
+
marko_template.meta = {
|
|
38
|
+
id: "/@mindful-web/marko-web$1.0.0/components/element/content/images.marko",
|
|
39
|
+
component: "./images.marko",
|
|
40
|
+
tags: [
|
|
41
|
+
"../obj-nodes.marko"
|
|
42
|
+
]
|
|
43
|
+
};
|
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
{
|
|
2
|
+
"<marko-web-content-name>": {
|
|
3
|
+
"template": "./name.marko",
|
|
4
|
+
"@block-name": "string",
|
|
5
|
+
"@obj": "object",
|
|
6
|
+
"@tag": "string",
|
|
7
|
+
"@class": "string",
|
|
8
|
+
"@modifiers": "string",
|
|
9
|
+
"@attrs": "object",
|
|
10
|
+
"@link": "expression"
|
|
11
|
+
},
|
|
12
|
+
"<marko-web-content-body>": {
|
|
13
|
+
"template": "./body.marko",
|
|
14
|
+
"<embed-options>": {},
|
|
15
|
+
"@block-name": "string",
|
|
16
|
+
"@obj": "object",
|
|
17
|
+
"@tag": "string",
|
|
18
|
+
"@class": "string",
|
|
19
|
+
"@modifiers": "string",
|
|
20
|
+
"@attrs": "object",
|
|
21
|
+
"@link": "expression",
|
|
22
|
+
"@lazyload-first-image": "boolean"
|
|
23
|
+
},
|
|
24
|
+
"<marko-web-content-transcript>": {
|
|
25
|
+
"template": "./transcript.marko",
|
|
26
|
+
"<embed-options>": {},
|
|
27
|
+
"@block-name": "string",
|
|
28
|
+
"@obj": "object",
|
|
29
|
+
"@tag": "string",
|
|
30
|
+
"@class": "string",
|
|
31
|
+
"@modifiers": "string",
|
|
32
|
+
"@attrs": "object",
|
|
33
|
+
"@link": "expression"
|
|
34
|
+
},
|
|
35
|
+
"<marko-web-content-byline>": {
|
|
36
|
+
"template": "./byline.marko",
|
|
37
|
+
"@block-name": "string",
|
|
38
|
+
"@obj": "object",
|
|
39
|
+
"@tag": "string",
|
|
40
|
+
"@class": "string",
|
|
41
|
+
"@modifiers": "string",
|
|
42
|
+
"@attrs": "object",
|
|
43
|
+
"@link": "expression"
|
|
44
|
+
},
|
|
45
|
+
"<marko-web-content-teaser>": {
|
|
46
|
+
"template": "./teaser.marko",
|
|
47
|
+
"@block-name": "string",
|
|
48
|
+
"@obj": "object",
|
|
49
|
+
"@tag": "string",
|
|
50
|
+
"@class": "string",
|
|
51
|
+
"@modifiers": "string",
|
|
52
|
+
"@attrs": "object",
|
|
53
|
+
"@link": "expression"
|
|
54
|
+
},
|
|
55
|
+
"<marko-web-content-short-name>": {
|
|
56
|
+
"template": "./short-name.marko",
|
|
57
|
+
"@block-name": "string",
|
|
58
|
+
"@obj": "object",
|
|
59
|
+
"@tag": "string",
|
|
60
|
+
"@class": "string",
|
|
61
|
+
"@modifiers": "string",
|
|
62
|
+
"@attrs": "object",
|
|
63
|
+
"@link": "expression"
|
|
64
|
+
},
|
|
65
|
+
"<marko-web-content-embed-code>": {
|
|
66
|
+
"template": "./embed-code.marko",
|
|
67
|
+
"@block-name": "string",
|
|
68
|
+
"@obj": "object",
|
|
69
|
+
"@tag": "string",
|
|
70
|
+
"@class": "string",
|
|
71
|
+
"@modifiers": "string",
|
|
72
|
+
"@attrs": "object",
|
|
73
|
+
"@link": "expression"
|
|
74
|
+
},
|
|
75
|
+
"<marko-web-content-source>": {
|
|
76
|
+
"template": "./source.marko",
|
|
77
|
+
"@block-name": "string",
|
|
78
|
+
"@obj": "object",
|
|
79
|
+
"@tag": "string",
|
|
80
|
+
"@class": "string",
|
|
81
|
+
"@modifiers": "string",
|
|
82
|
+
"@attrs": "object",
|
|
83
|
+
"@link": "expression"
|
|
84
|
+
},
|
|
85
|
+
"<marko-web-content-published>": {
|
|
86
|
+
"template": "./published.marko",
|
|
87
|
+
"@block-name": "string",
|
|
88
|
+
"@obj": "object",
|
|
89
|
+
"@format": "string",
|
|
90
|
+
"@locale": "string",
|
|
91
|
+
"@timezone": "string",
|
|
92
|
+
"@tag": "string",
|
|
93
|
+
"@class": "string",
|
|
94
|
+
"@modifiers": "string",
|
|
95
|
+
"@attrs": "object",
|
|
96
|
+
"@link": "expression"
|
|
97
|
+
},
|
|
98
|
+
"<marko-web-content-start-date>": {
|
|
99
|
+
"template": "./start-date.marko",
|
|
100
|
+
"@block-name": "string",
|
|
101
|
+
"@obj": "object",
|
|
102
|
+
"@format": "string",
|
|
103
|
+
"@locale": "string",
|
|
104
|
+
"@timezone": "string",
|
|
105
|
+
"@tag": "string",
|
|
106
|
+
"@class": "string",
|
|
107
|
+
"@modifiers": "string",
|
|
108
|
+
"@attrs": "object",
|
|
109
|
+
"@link": "expression"
|
|
110
|
+
},
|
|
111
|
+
"<marko-web-content-end-date>": {
|
|
112
|
+
"template": "./end-date.marko",
|
|
113
|
+
"@block-name": "string",
|
|
114
|
+
"@obj": "object",
|
|
115
|
+
"@format": "string",
|
|
116
|
+
"@locale": "string",
|
|
117
|
+
"@timezone": "string",
|
|
118
|
+
"@tag": "string",
|
|
119
|
+
"@class": "string",
|
|
120
|
+
"@modifiers": "string",
|
|
121
|
+
"@attrs": "object",
|
|
122
|
+
"@link": "expression"
|
|
123
|
+
},
|
|
124
|
+
"<marko-web-content-starts>": {
|
|
125
|
+
"template": "./starts.marko",
|
|
126
|
+
"@block-name": "string",
|
|
127
|
+
"@obj": "object",
|
|
128
|
+
"@tag": "string",
|
|
129
|
+
"@class": "string",
|
|
130
|
+
"@modifiers": "string",
|
|
131
|
+
"@attrs": "object",
|
|
132
|
+
"@link": "expression"
|
|
133
|
+
},
|
|
134
|
+
"<marko-web-content-ends>": {
|
|
135
|
+
"template": "./ends.marko",
|
|
136
|
+
"@block-name": "string",
|
|
137
|
+
"@obj": "object",
|
|
138
|
+
"@tag": "string",
|
|
139
|
+
"@class": "string",
|
|
140
|
+
"@modifiers": "string",
|
|
141
|
+
"@attrs": "object",
|
|
142
|
+
"@link": "expression"
|
|
143
|
+
},
|
|
144
|
+
"<marko-web-content-sidebars>": {
|
|
145
|
+
"template": "./sidebars.marko",
|
|
146
|
+
"<embed-options>": {},
|
|
147
|
+
"@block-name": "string",
|
|
148
|
+
"@obj": "object",
|
|
149
|
+
"@tag": "string",
|
|
150
|
+
"@class": "string",
|
|
151
|
+
"@modifiers": "string",
|
|
152
|
+
"@attrs": "object"
|
|
153
|
+
},
|
|
154
|
+
"<marko-web-content-sidebar-stubs>": {
|
|
155
|
+
"template": "./sidebar-stubs.marko",
|
|
156
|
+
"<embed-options>": {},
|
|
157
|
+
"@block-name": "string",
|
|
158
|
+
"@obj": "object",
|
|
159
|
+
"@tag": "string",
|
|
160
|
+
"@class": "string",
|
|
161
|
+
"@modifiers": "string",
|
|
162
|
+
"@attrs": "object"
|
|
163
|
+
},
|
|
164
|
+
"<marko-web-content-images>": {
|
|
165
|
+
"template": "./images.marko",
|
|
166
|
+
"@block-name": "string",
|
|
167
|
+
"@obj": "object",
|
|
168
|
+
"@tag": "string",
|
|
169
|
+
"@class": "string",
|
|
170
|
+
"@modifiers": "string",
|
|
171
|
+
"@attrs": "object"
|
|
172
|
+
},
|
|
173
|
+
"<marko-web-content-address1>": {
|
|
174
|
+
"template": "./address1.marko",
|
|
175
|
+
"@block-name": "string",
|
|
176
|
+
"@obj": "object",
|
|
177
|
+
"@tag": "string",
|
|
178
|
+
"@class": "string",
|
|
179
|
+
"@modifiers": "string",
|
|
180
|
+
"@attrs": "object",
|
|
181
|
+
"@link": "expression"
|
|
182
|
+
},
|
|
183
|
+
"<marko-web-content-address2>": {
|
|
184
|
+
"template": "./address2.marko",
|
|
185
|
+
"@block-name": "string",
|
|
186
|
+
"@obj": "object",
|
|
187
|
+
"@tag": "string",
|
|
188
|
+
"@class": "string",
|
|
189
|
+
"@modifiers": "string",
|
|
190
|
+
"@attrs": "object",
|
|
191
|
+
"@link": "expression"
|
|
192
|
+
},
|
|
193
|
+
"<marko-web-content-city-state-zip>": {
|
|
194
|
+
"template": "./city-state-zip.marko",
|
|
195
|
+
"@block-name": "string",
|
|
196
|
+
"@obj": "object",
|
|
197
|
+
"@tag": "string",
|
|
198
|
+
"@class": "string",
|
|
199
|
+
"@modifiers": "string",
|
|
200
|
+
"@attrs": "object",
|
|
201
|
+
"@link": "expression"
|
|
202
|
+
},
|
|
203
|
+
"<marko-web-content-country>": {
|
|
204
|
+
"template": "./country.marko",
|
|
205
|
+
"@block-name": "string",
|
|
206
|
+
"@obj": "object",
|
|
207
|
+
"@tag": "string",
|
|
208
|
+
"@class": "string",
|
|
209
|
+
"@modifiers": "string",
|
|
210
|
+
"@attrs": "object",
|
|
211
|
+
"@link": "expression"
|
|
212
|
+
},
|
|
213
|
+
"<marko-web-content-fax>": {
|
|
214
|
+
"template": "./fax.marko",
|
|
215
|
+
"@block-name": "string",
|
|
216
|
+
"@obj": "object",
|
|
217
|
+
"@tag": "string",
|
|
218
|
+
"@class": "string",
|
|
219
|
+
"@modifiers": "string",
|
|
220
|
+
"@attrs": "object",
|
|
221
|
+
"@link": "expression"
|
|
222
|
+
},
|
|
223
|
+
"<marko-web-content-mobile>": {
|
|
224
|
+
"template": "./mobile.marko",
|
|
225
|
+
"@block-name": "string",
|
|
226
|
+
"@obj": "object",
|
|
227
|
+
"@tag": "string",
|
|
228
|
+
"@class": "string",
|
|
229
|
+
"@modifiers": "string",
|
|
230
|
+
"@attrs": "object",
|
|
231
|
+
"@link": "expression"
|
|
232
|
+
},
|
|
233
|
+
"<marko-web-content-phone>": {
|
|
234
|
+
"template": "./phone.marko",
|
|
235
|
+
"@block-name": "string",
|
|
236
|
+
"@obj": "object",
|
|
237
|
+
"@tag": "string",
|
|
238
|
+
"@class": "string",
|
|
239
|
+
"@modifiers": "string",
|
|
240
|
+
"@attrs": "object",
|
|
241
|
+
"@link": "expression"
|
|
242
|
+
},
|
|
243
|
+
"<marko-web-content-public-email>": {
|
|
244
|
+
"template": "./public-email.marko",
|
|
245
|
+
"@block-name": "string",
|
|
246
|
+
"@obj": "object",
|
|
247
|
+
"@tag": "string",
|
|
248
|
+
"@class": "string",
|
|
249
|
+
"@modifiers": "string",
|
|
250
|
+
"@attrs": "object",
|
|
251
|
+
"@link": "expression"
|
|
252
|
+
},
|
|
253
|
+
"<marko-web-content-title>": {
|
|
254
|
+
"template": "./title.marko",
|
|
255
|
+
"@block-name": "string",
|
|
256
|
+
"@obj": "object",
|
|
257
|
+
"@tag": "string",
|
|
258
|
+
"@class": "string",
|
|
259
|
+
"@modifiers": "string",
|
|
260
|
+
"@attrs": "object",
|
|
261
|
+
"@link": "expression"
|
|
262
|
+
},
|
|
263
|
+
"<marko-web-content-tollfree>": {
|
|
264
|
+
"template": "./tollfree.marko",
|
|
265
|
+
"@block-name": "string",
|
|
266
|
+
"@obj": "object",
|
|
267
|
+
"@tag": "string",
|
|
268
|
+
"@class": "string",
|
|
269
|
+
"@modifiers": "string",
|
|
270
|
+
"@attrs": "object",
|
|
271
|
+
"@link": "expression"
|
|
272
|
+
},
|
|
273
|
+
"<marko-web-content-website>": {
|
|
274
|
+
"template": "./website.marko",
|
|
275
|
+
"@block-name": "string",
|
|
276
|
+
"@obj": "object",
|
|
277
|
+
"@tag": "string",
|
|
278
|
+
"@class": "string",
|
|
279
|
+
"@modifiers": "string",
|
|
280
|
+
"@attrs": "object",
|
|
281
|
+
"@link": "expression"
|
|
282
|
+
},
|
|
283
|
+
"<marko-web-content-authors>": {
|
|
284
|
+
"template": "./authors.marko",
|
|
285
|
+
"@block-name": "string",
|
|
286
|
+
"@obj": "object",
|
|
287
|
+
"@tag": "string",
|
|
288
|
+
"@class": "string",
|
|
289
|
+
"@modifiers": "string",
|
|
290
|
+
"@attrs": "object"
|
|
291
|
+
},
|
|
292
|
+
"<marko-web-content-contributors>": {
|
|
293
|
+
"template": "./contributors.marko",
|
|
294
|
+
"@block-name": "string",
|
|
295
|
+
"@obj": "object",
|
|
296
|
+
"@tag": "string",
|
|
297
|
+
"@class": "string",
|
|
298
|
+
"@modifiers": "string",
|
|
299
|
+
"@attrs": "object"
|
|
300
|
+
},
|
|
301
|
+
"<marko-web-content-photographers>": {
|
|
302
|
+
"template": "./photographers.marko",
|
|
303
|
+
"@block-name": "string",
|
|
304
|
+
"@obj": "object",
|
|
305
|
+
"@tag": "string",
|
|
306
|
+
"@class": "string",
|
|
307
|
+
"@modifiers": "string",
|
|
308
|
+
"@attrs": "object"
|
|
309
|
+
},
|
|
310
|
+
"<marko-web-content-sponsors>": {
|
|
311
|
+
"template": "./sponsors.marko",
|
|
312
|
+
"@block-name": "string",
|
|
313
|
+
"@obj": "object",
|
|
314
|
+
"@tag": "string",
|
|
315
|
+
"@class": "string",
|
|
316
|
+
"@modifiers": "string",
|
|
317
|
+
"@attrs": "object"
|
|
318
|
+
},
|
|
319
|
+
"<marko-web-content-audio>": {
|
|
320
|
+
"template": "./audio.marko",
|
|
321
|
+
"@block-name": "string",
|
|
322
|
+
"@obj": "object",
|
|
323
|
+
"@tag": "string",
|
|
324
|
+
"@class": "string",
|
|
325
|
+
"@modifiers": "string",
|
|
326
|
+
"@attrs": "object"
|
|
327
|
+
}
|
|
328
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import extractRender from "../extract-render";
|
|
2
|
+
|
|
3
|
+
<marko-web-obj-text
|
|
4
|
+
type="content"
|
|
5
|
+
block-name=input.blockName
|
|
6
|
+
obj=input.obj
|
|
7
|
+
field="mobile"
|
|
8
|
+
tag=(input.tag || "tel")
|
|
9
|
+
class=input.class
|
|
10
|
+
modifiers=input.modifiers
|
|
11
|
+
attrs=input.attrs
|
|
12
|
+
link=input.link
|
|
13
|
+
...extractRender(input)
|
|
14
|
+
/>
|
|
@@ -0,0 +1,40 @@
|
|
|
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-web$1.0.0/components/element/content/mobile.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_extractRender = require("../extract-render"),
|
|
8
|
+
extractRender = module_extractRender.default || module_extractRender,
|
|
9
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
10
|
+
marko_web_obj_text_template = require("../obj-text.marko"),
|
|
11
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
12
|
+
marko_web_obj_text_tag = marko_loadTag(marko_web_obj_text_template);
|
|
13
|
+
|
|
14
|
+
function render(input, out, __component, component, state) {
|
|
15
|
+
var data = input;
|
|
16
|
+
|
|
17
|
+
marko_web_obj_text_tag(marko_assign({
|
|
18
|
+
type: "content",
|
|
19
|
+
blockName: input.blockName,
|
|
20
|
+
obj: input.obj,
|
|
21
|
+
field: "mobile",
|
|
22
|
+
tag: input.tag || "tel",
|
|
23
|
+
class: input.class,
|
|
24
|
+
modifiers: input.modifiers,
|
|
25
|
+
attrs: input.attrs,
|
|
26
|
+
link: input.link
|
|
27
|
+
}, extractRender(input)), out, __component, "0");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
marko_template._ = marko_renderer(render, {
|
|
31
|
+
d_: true,
|
|
32
|
+
e_: marko_componentType
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
marko_template.meta = {
|
|
36
|
+
id: "/@mindful-web/marko-web$1.0.0/components/element/content/mobile.marko",
|
|
37
|
+
tags: [
|
|
38
|
+
"../obj-text.marko"
|
|
39
|
+
]
|
|
40
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import extractRender from "../extract-render";
|
|
2
|
+
|
|
3
|
+
<marko-web-obj-text
|
|
4
|
+
type="content"
|
|
5
|
+
block-name=input.blockName
|
|
6
|
+
obj=input.obj
|
|
7
|
+
field="name"
|
|
8
|
+
html=true
|
|
9
|
+
tag=input.tag
|
|
10
|
+
class=input.class
|
|
11
|
+
modifiers=input.modifiers
|
|
12
|
+
attrs=input.attrs
|
|
13
|
+
link=input.link
|
|
14
|
+
...extractRender(input)
|
|
15
|
+
/>
|
|
@@ -0,0 +1,41 @@
|
|
|
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-web$1.0.0/components/element/content/name.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_extractRender = require("../extract-render"),
|
|
8
|
+
extractRender = module_extractRender.default || module_extractRender,
|
|
9
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
10
|
+
marko_web_obj_text_template = require("../obj-text.marko"),
|
|
11
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
12
|
+
marko_web_obj_text_tag = marko_loadTag(marko_web_obj_text_template);
|
|
13
|
+
|
|
14
|
+
function render(input, out, __component, component, state) {
|
|
15
|
+
var data = input;
|
|
16
|
+
|
|
17
|
+
marko_web_obj_text_tag(marko_assign({
|
|
18
|
+
type: "content",
|
|
19
|
+
blockName: input.blockName,
|
|
20
|
+
obj: input.obj,
|
|
21
|
+
field: "name",
|
|
22
|
+
html: true,
|
|
23
|
+
tag: input.tag,
|
|
24
|
+
class: input.class,
|
|
25
|
+
modifiers: input.modifiers,
|
|
26
|
+
attrs: input.attrs,
|
|
27
|
+
link: input.link
|
|
28
|
+
}, extractRender(input)), out, __component, "0");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
marko_template._ = marko_renderer(render, {
|
|
32
|
+
d_: true,
|
|
33
|
+
e_: marko_componentType
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
marko_template.meta = {
|
|
37
|
+
id: "/@mindful-web/marko-web$1.0.0/components/element/content/name.marko",
|
|
38
|
+
tags: [
|
|
39
|
+
"../obj-text.marko"
|
|
40
|
+
]
|
|
41
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import extractRender from "../extract-render";
|
|
2
|
+
|
|
3
|
+
<marko-web-obj-text
|
|
4
|
+
type="content"
|
|
5
|
+
block-name=input.blockName
|
|
6
|
+
obj=input.obj
|
|
7
|
+
field="phone"
|
|
8
|
+
tag=(input.tag || "tel")
|
|
9
|
+
class=input.class
|
|
10
|
+
modifiers=input.modifiers
|
|
11
|
+
attrs=input.attrs
|
|
12
|
+
link=input.link
|
|
13
|
+
...extractRender(input)
|
|
14
|
+
/>
|
|
@@ -0,0 +1,40 @@
|
|
|
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-web$1.0.0/components/element/content/phone.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_extractRender = require("../extract-render"),
|
|
8
|
+
extractRender = module_extractRender.default || module_extractRender,
|
|
9
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
10
|
+
marko_web_obj_text_template = require("../obj-text.marko"),
|
|
11
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
12
|
+
marko_web_obj_text_tag = marko_loadTag(marko_web_obj_text_template);
|
|
13
|
+
|
|
14
|
+
function render(input, out, __component, component, state) {
|
|
15
|
+
var data = input;
|
|
16
|
+
|
|
17
|
+
marko_web_obj_text_tag(marko_assign({
|
|
18
|
+
type: "content",
|
|
19
|
+
blockName: input.blockName,
|
|
20
|
+
obj: input.obj,
|
|
21
|
+
field: "phone",
|
|
22
|
+
tag: input.tag || "tel",
|
|
23
|
+
class: input.class,
|
|
24
|
+
modifiers: input.modifiers,
|
|
25
|
+
attrs: input.attrs,
|
|
26
|
+
link: input.link
|
|
27
|
+
}, extractRender(input)), out, __component, "0");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
marko_template._ = marko_renderer(render, {
|
|
31
|
+
d_: true,
|
|
32
|
+
e_: marko_componentType
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
marko_template.meta = {
|
|
36
|
+
id: "/@mindful-web/marko-web$1.0.0/components/element/content/phone.marko",
|
|
37
|
+
tags: [
|
|
38
|
+
"../obj-text.marko"
|
|
39
|
+
]
|
|
40
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<marko-web-obj-nodes|result|
|
|
2
|
+
type="content"
|
|
3
|
+
block-name=input.blockName
|
|
4
|
+
obj=input.obj
|
|
5
|
+
field="photgraphers"
|
|
6
|
+
tag=input.tag
|
|
7
|
+
class=input.class
|
|
8
|
+
modifiers=input.modifiers
|
|
9
|
+
attrs=input.attrs
|
|
10
|
+
>
|
|
11
|
+
<${input.renderBody} ...result />
|
|
12
|
+
</marko-web-obj-nodes>
|