@simple-reporting/base 1.0.37 → 1.0.38
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/dev/.ddev/config.yaml +1 -1
- package/dev/.idea/codeStyles/Project.xml +61 -0
- package/dev/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/dev/.idea/copilot.data.migration.ask2agent.xml +6 -0
- package/dev/.idea/deployment.xml +14 -0
- package/dev/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/dev/.idea/modules.xml +8 -0
- package/dev/.idea/nsfd_report-demo-mms.iml +8 -0
- package/dev/.idea/php.xml +19 -0
- package/dev/.idea/prettier.xml +6 -0
- package/dev/.idea/vcs.xml +6 -0
- package/dev/.idea/watcherTasks.xml +4 -0
- package/dev/livingdocs.config.json +1192 -27
- package/dev/package.json +3 -1
- package/dev/src/App.vue +1 -2
- package/dev/src/Autoload.ts +1 -1
- package/dev/src/Dialog.vue +12 -61
- package/dev/src/assets/fonts/FontAwesome/font.scss +2 -0
- package/dev/src/assets/fonts/Inter/inter.scss +2 -4
- package/dev/src/assets/images/accordion-minus.svg +4 -0
- package/dev/src/assets/images/accordion-plus.svg +4 -0
- package/dev/src/assets/images/arrow-left.svg +5 -0
- package/dev/src/assets/images/arrow-right.svg +5 -0
- package/dev/src/assets/images/arrow-up.svg +5 -0
- package/dev/src/assets/images/chevron-down.svg +1 -0
- package/dev/src/assets/images/chevron-left.svg +1 -0
- package/dev/src/assets/images/chevron-right.svg +1 -0
- package/dev/src/assets/images/chevron-up.svg +1 -0
- package/dev/src/assets/images/close.svg +5 -0
- package/dev/src/assets/images/download.svg +6 -0
- package/dev/src/assets/images/facebook.svg +1 -0
- package/dev/src/assets/images/instagram.svg +1 -0
- package/dev/src/assets/images/language.svg +1 -0
- package/dev/src/assets/images/linkedIn.svg +1 -0
- package/dev/src/assets/images/logo.svg +1 -0
- package/dev/src/assets/images/menu-light.svg +3 -0
- package/dev/src/assets/images/menu.svg +3 -0
- package/dev/src/assets/images/nav-arrow-left.svg +3 -0
- package/dev/src/assets/images/nav-arrow-right.svg +3 -0
- package/dev/src/assets/images/search.svg +5 -0
- package/dev/src/assets/images/twitter.svg +1 -0
- package/dev/src/assets/images/xing.svg +1 -0
- package/dev/src/assets/scss/app.scss +9 -0
- package/dev/src/assets/scss/components/button.scss +37 -0
- package/dev/src/assets/scss/components/dialog.scss +84 -0
- package/dev/src/assets/scss/components/fontawesome.scss +56 -0
- package/dev/src/assets/scss/components/note/accordion.scss +55 -41
- package/dev/src/assets/scss/editor.scss +5 -5
- package/dev/src/assets/scss/general.scss +29 -2
- package/dev/src/assets/scss/margins.scss +57 -0
- package/dev/src/assets/scss/pdf.scss +0 -32
- package/dev/src/assets/scss/placeholders/breakout-grid.scss +34 -0
- package/dev/src/assets/scss/placeholders/button.scss +230 -0
- package/dev/src/assets/scss/placeholders/fontawesome.scss +7 -0
- package/dev/src/assets/scss/placeholders/grid.scss +354 -0
- package/dev/src/assets/scss/web.scss +17 -21
- package/dev/src/assets/scss/xbrl.scss +1 -0
- package/dev/src/components/Button/Default/Action.vue +65 -0
- package/dev/src/components/Button/Default/Content.vue +225 -0
- package/dev/src/components/Button/Default/ExternalLink.vue +63 -0
- package/dev/src/components/Button/Default/InternalLink.vue +64 -0
- package/dev/src/components/Button/Default.vue +101 -0
- package/dev/src/components/Page/MainNavigation.vue +96 -6
- package/dev/src/components/Page/MetaNavigation.vue +116 -0
- package/dev/src/components/Page/PrevNext.vue +140 -70
- package/dev/src/components/PageFooter.vue +405 -0
- package/dev/src/components/PageHeader.vue +828 -0
- package/dev/src/components/{Page/Main.vue → PageMain.vue} +11 -0
- package/dev/src/composables/globalLinks.ts +46 -0
- package/dev/src/composables/isDesktopView.ts +18 -0
- package/dev/src/composables/mainNavigation.ts +11 -0
- package/dev/src/entries/pdf.ts +5 -5
- package/dev/src/i18n/index.ts +1 -1
- package/dev/src/locales/de.json +40 -0
- package/dev/src/locales/en.json +40 -0
- package/dev/src/router/index.ts +1 -2
- package/dev/src/views/DevView.vue +1 -835
- package/dev/src/views/PageNotFound.vue +3 -69
- package/dev/srl.config.json +34 -49
- package/livingdocs/010.Titles/010.title-h1/scss/_spacing-variations.scss +17 -0
- package/livingdocs/010.Titles/010.title-h1/scss/general.scss +4 -0
- package/livingdocs/010.Titles/020.title-h2/scss/_spacing-variations.scss +12 -0
- package/livingdocs/010.Titles/020.title-h2/scss/general.scss +4 -0
- package/livingdocs/010.Titles/020.title-h2/title-h2.html +2 -1
- package/livingdocs/010.Titles/030.title-h3/scss/_spacing-variations.scss +13 -0
- package/livingdocs/010.Titles/030.title-h3/scss/general.scss +5 -1
- package/livingdocs/010.Titles/030.title-h3/title-h3.html +2 -1
- package/livingdocs/010.Titles/040.title-h4/scss/_spacing-variations.scss +12 -0
- package/livingdocs/010.Titles/040.title-h4/scss/general.scss +5 -1
- package/livingdocs/010.Titles/040.title-h4/title-h4.html +2 -1
- package/livingdocs/010.Titles/050.title-h5/scss/_spacing-variations.scss +11 -0
- package/livingdocs/010.Titles/050.title-h5/scss/general.scss +4 -0
- package/livingdocs/010.Titles/060.title-h6/scss/_spacing-variations.scss +10 -0
- package/livingdocs/010.Titles/060.title-h6/scss/general.scss +4 -0
- package/livingdocs/020.Text/010.lead/scss/_spacing-variations.scss +5 -0
- package/livingdocs/020.Text/010.lead/scss/general.scss +4 -0
- package/livingdocs/020.Text/020.paragraph/scss/_spacing-variations.scss +22 -0
- package/livingdocs/020.Text/020.paragraph/scss/general.scss +4 -0
- package/livingdocs/020.Text/060.quote-with-portrait/scss/_spacing-variations.scss +7 -0
- package/livingdocs/020.Text/060.quote-with-portrait/scss/general.scss +4 -1
- package/livingdocs/020.Text/060.quote-with-portrait/scss/pdf.scss +4 -10
- package/livingdocs/020.Text/060.quote-with-portrait/scss/web.scss +0 -1
- package/livingdocs/020.Text/070.footnote-container/scss/_spacing-variations.scss +22 -0
- package/livingdocs/020.Text/070.footnote-container/scss/general.scss +8 -0
- package/livingdocs/020.Text/070.footnote-container/scss/pdf.scss +0 -8
- package/livingdocs/020.Text/070.footnote-container/scss/web.scss +0 -5
- package/livingdocs/020.Text/070.footnote-container/scss/xbrl.scss +9 -1
- package/livingdocs/020.Text/080.footnote-item/scss/_spacing-variations.scss +4 -0
- package/livingdocs/020.Text/080.footnote-item/scss/general.scss +28 -1
- package/livingdocs/020.Text/080.footnote-item/scss/web.scss +0 -20
- package/livingdocs/020.Text/080.footnote-item/scss/xbrl.scss +26 -1
- package/livingdocs/030.Lists/010.unordered-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/010.unordered-list/scss/_spacing-variations.scss +22 -0
- package/livingdocs/030.Lists/010.unordered-list/scss/general.scss +3 -5
- package/livingdocs/030.Lists/010.unordered-list/scss/pdf.scss +3 -1
- package/livingdocs/030.Lists/010.unordered-list/scss/web.scss +15 -1
- package/livingdocs/030.Lists/010.unordered-list/scss/word.scss +1 -6
- package/livingdocs/030.Lists/010.unordered-list/scss/xbrl.scss +2 -1
- package/livingdocs/030.Lists/020.ordered-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/030.alphanumeric-list/ld-conf.json +3 -3
- package/livingdocs/030.Lists/040.list-item-unordered-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/list-item-unordered-list.html +8 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/_spacing-variations.scss +4 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/general.scss +14 -0
- package/livingdocs/030.Lists/{040.list-item → 040.list-item-unordered-list}/scss/pdf.scss +7 -1
- package/livingdocs/030.Lists/{040.list-item/scss/general.scss → 040.list-item-unordered-list/scss/web.scss} +17 -6
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/word.scss +5 -0
- package/livingdocs/030.Lists/040.list-item-unordered-list/scss/xbrl.scss +2 -0
- package/livingdocs/030.Lists/050.list-item-ordered-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/050.list-item-ordered-list/list-item-ordered-list.html +8 -0
- package/livingdocs/030.Lists/060.list-item-alphanumeric-list/ld-conf.json +23 -0
- package/livingdocs/030.Lists/060.list-item-alphanumeric-list/list-item-alphanumeric-list.html +8 -0
- package/livingdocs/040.Media/010.table/scss/_spacing-variations.scss +19 -0
- package/livingdocs/040.Media/010.table/scss/general.scss +270 -251
- package/livingdocs/040.Media/010.table/scss/pdf.scss +2 -18
- package/livingdocs/040.Media/010.table/scss/web.scss +0 -19
- package/livingdocs/040.Media/010.table/scss/xbrl.scss +4 -3
- package/livingdocs/040.Media/020.image/scss/_spacing-variations.scss +7 -0
- package/livingdocs/040.Media/020.image/scss/editor.scss +0 -1
- package/livingdocs/040.Media/020.image/scss/general.scss +6 -2
- package/livingdocs/040.Media/020.image/scss/pdf.scss +0 -4
- package/livingdocs/040.Media/020.image/scss/web.scss +0 -5
- package/livingdocs/040.Media/020.image/scss/xbrl.scss +1 -3
- package/livingdocs/040.Media/030.video/scss/_spacing-variations.scss +7 -0
- package/livingdocs/040.Media/030.video/scss/general.scss +19 -0
- package/livingdocs/040.Media/030.video/scss/pdf.scss +0 -10
- package/livingdocs/040.Media/030.video/scss/web.scss +0 -11
- package/livingdocs/040.Media/030.video/scss/xbrl.scss +1 -4
- package/livingdocs/060.Buttons/020.button/scss/general.scss +14 -75
- package/livingdocs/070.Container/020.columns-container/columns-container.html +1 -1
- package/livingdocs/070.Container/030.background-container/background-container.html +3 -0
- package/livingdocs/070.Container/030.background-container/ld-conf.json +4 -0
- package/livingdocs/070.Container/030.background-container/properties.json +1 -0
- package/livingdocs/070.Container/030.background-container/scss/_spacing-variations.scss +3 -0
- package/livingdocs/070.Container/030.background-container/scss/general.scss +9 -0
- package/livingdocs/070.Container/030.background-container/scss/pdf.scss +13 -0
- package/livingdocs/070.Container/030.background-container/scss/web.scss +1 -0
- package/livingdocs/070.Container/030.background-container/scss/word.scss +1 -0
- package/livingdocs/070.Container/030.background-container/scss/xbrl.scss +3 -0
- package/livingdocs/080.CV/010.cv/cv.html +2 -1
- package/livingdocs/080.CV/010.cv/scss/_spacing-variations.scss +5 -0
- package/livingdocs/080.CV/010.cv/scss/app.scss +16 -1
- package/livingdocs/080.CV/010.cv/scss/general.scss +4 -0
- package/livingdocs/080.CV/010.cv/scss/pdf.scss +2 -3
- package/livingdocs/080.CV/010.cv/scss/web.scss +17 -1
- package/livingdocs/080.CV/020.cv-time-span/scss/_spacing-variations.scss +14 -0
- package/livingdocs/080.CV/020.cv-time-span/scss/general.scss +4 -0
- package/livingdocs/080.CV/020.cv-time-span/scss/web.scss +0 -1
- package/livingdocs/100.Misc/010.anchor/scss/editor.scss +0 -1
- package/livingdocs/100.Misc/020.accordion/accordion.html +54 -7
- package/livingdocs/100.Misc/020.accordion/accordion.vue +83 -0
- package/livingdocs/100.Misc/020.accordion/scss/editor.scss +12 -0
- package/livingdocs/110.PDF/010.pdf-pagebreak/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/021.pdf-columnbreak/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/030.pdf-publication-title/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/040.pdf-chapter-title/scss/editor.scss +0 -1
- package/livingdocs/110.PDF/050.pdf-chapter-navigation-container/scss/editor.scss +1 -1
- package/livingdocs/110.PDF/075.pdf-landscape-container/ld-conf.json +7 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/pdf-landscape-container.html +9 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/properties.json +15 -0
- package/livingdocs/110.PDF/075.pdf-landscape-container/scss/pdf.scss +19 -0
- package/livingdocs/110.PDF/100.pdf-toc-item/pdf-toc-item.html +3 -2
- package/livingdocs/110.PDF/100.pdf-toc-item/scss/general.scss +6 -5
- package/livingdocs/110.PDF/100.pdf-toc-item/scss/pdf.scss +9 -1
- package/livingdocs/130.Hosting_Components/010.download-center/download-center.html +7 -0
- package/livingdocs/130.Hosting_Components/010.download-center/download-center.vue +68 -0
- package/livingdocs/130.Hosting_Components/010.download-center/ld-conf.json +4 -0
- package/livingdocs/130.Hosting_Components/010.download-center/properties.json +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/_spacing-variations.scss +3 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/editor.scss +15 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/general.scss +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/pdf.scss +1 -0
- package/livingdocs/130.Hosting_Components/010.download-center/scss/web.scss +42 -0
- package/livingdocs/130.Hosting_Components/020.search/ld-conf.json +4 -0
- package/livingdocs/130.Hosting_Components/020.search/properties.json +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/_spacing-variations.scss +4 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/editor.scss +14 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/general.scss +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/pdf.scss +1 -0
- package/livingdocs/130.Hosting_Components/020.search/scss/web.scss +200 -0
- package/livingdocs/130.Hosting_Components/020.search/search.html +7 -0
- package/livingdocs/130.Hosting_Components/020.search/search.vue +484 -0
- package/livingdocs/999.Properties/breakout-grid/web.scss +5 -0
- package/livingdocs/999.Properties/grid/scss/app.scss +1 -0
- package/livingdocs/999.Properties/grid/scss/general.scss +31 -0
- package/livingdocs/999.Properties/grid/scss/pdf.scss +9 -0
- package/livingdocs/999.Properties/grid/scss/web.scss +1 -0
- package/livingdocs/999.Properties/grid/scss/xbrl.scss +2 -0
- package/livingdocs/999.Properties/icon/properties.json +2 -2
- package/package.json +1 -1
- package/plugins/viteSrlPlugin.js +16 -1
- package/scripts/build.js +1 -0
- package/scripts/config.js +6 -2
- package/scss/button.scss +25 -0
- package/scss/fa/font-free.scss +17 -0
- package/scss/fa/font-pro.scss +41 -0
- package/scss/fa/index.scss +118 -0
- package/scss/fa/source-free.scss +14 -0
- package/scss/fa/source-pro.scss +15 -0
- package/scss/index.scss +1 -0
- package/srl/.srl/components/Srl/Aria/TabChain.vue +6 -5
- package/srl/.srl/components/Srl/Article/Accordion.vue +37 -24
- package/srl/.srl/components/Srl/Article/Dialog/Button.vue +6 -5
- package/srl/.srl/components/Srl/Article/Root.vue +4 -1
- package/srl/.srl/components/Srl/Category/Accordion/Content.vue +2 -2
- package/srl/.srl/components/Srl/Category/Accordion.vue +8 -5
- package/srl/.srl/components/Srl/Menu/Item.vue +20 -5
- package/srl/.srl/components/Srl/Page/Dialog.vue +31 -14
- package/srl/.srl/types/nswow.d.ts +6 -1
- package/srl/.srl/utils/index.ts +2 -0
- package/srl/.srl/utils/pageState.ts +24 -23
- package/srl/srl/button.scss +2 -0
- package/srl/srl/fa/font-free.scss +17 -0
- package/srl/srl/fa/font-pro.scss +41 -0
- package/srl/srl/fa/index.scss +118 -0
- package/srl/srl/fa/source-free.scss +14 -0
- package/srl/srl/fa/source-pro.scss +15 -0
- package/dev/src/assets/fonts/Inter/Inter-Regular.ttf +0 -0
- package/dev/src/assets/fonts/Inter/Inter-SemiBold.ttf +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-300.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-700.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-italic.woff2 +0 -0
- package/dev/src/assets/fonts/Roboto/roboto-v30-latin-regular.woff2 +0 -0
- package/dev/src/assets/images/mms-logo-white.svg +0 -105
- package/dev/src/assets/scss/components/icons.scss +0 -287
- package/dev/src/assets/scss/components/round-button.scss +0 -75
- package/dev/src/assets/scss/placeholders.scss +0 -588
- package/dev/src/components/Page/Footer.vue +0 -45
- package/dev/src/components/Page/Header.vue +0 -40
- package/dev/src/views/HomeView.vue +0 -5
- package/livingdocs/030.Lists/020.ordered-list/scss/general.scss +0 -6
- package/livingdocs/030.Lists/020.ordered-list/scss/pdf.scss +0 -5
- package/livingdocs/030.Lists/020.ordered-list/scss/word.scss +0 -9
- package/livingdocs/030.Lists/020.ordered-list/scss/xbrl.scss +0 -1
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/general.scss +0 -6
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/pdf.scss +0 -5
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/word.scss +0 -9
- package/livingdocs/030.Lists/030.alphanumeric-list/scss/xbrl.scss +0 -1
- package/livingdocs/030.Lists/040.list-item/ld-conf.json +0 -5
- package/livingdocs/030.Lists/040.list-item/list-item.html +0 -5
- package/livingdocs/030.Lists/040.list-item/scss/web.scss +0 -27
- package/livingdocs/030.Lists/040.list-item/scss/word.scss +0 -19
- package/livingdocs/030.Lists/040.list-item/scss/xbrl.scss +0 -1
- /package/livingdocs/030.Lists/{020.ordered-list → 040.list-item-unordered-list}/scss/app.scss +0 -0
- /package/livingdocs/030.Lists/{020.ordered-list → 040.list-item-unordered-list}/scss/editor.scss +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list → 070.Container/030.background-container}/scss/app.scss +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list → 070.Container/030.background-container}/scss/editor.scss +0 -0
- /package/livingdocs/{030.Lists/040.list-item → 130.Hosting_Components/010.download-center}/scss/app.scss +0 -0
- /package/{dev/livingdocs/.gitkeep → livingdocs/130.Hosting_Components/010.download-center/scss/word.scss} +0 -0
- /package/livingdocs/{030.Lists/020.ordered-list/scss/web.scss → 130.Hosting_Components/010.download-center/scss/xbrl.scss} +0 -0
- /package/livingdocs/{030.Lists/040.list-item/scss/editor.scss → 130.Hosting_Components/020.search/scss/app.scss} +0 -0
- /package/livingdocs/{030.Lists/030.alphanumeric-list/scss/web.scss → 130.Hosting_Components/020.search/scss/word.scss} +0 -0
- /package/livingdocs/{060.Buttons/.gitkeep → 130.Hosting_Components/020.search/scss/xbrl.scss} +0 -0
- /package/livingdocs/999.Properties/{width → grid}/properties.json +0 -0
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "demo-mms-ld",
|
|
3
3
|
"label": "skeleton",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.14",
|
|
5
5
|
"author": "nsgroup",
|
|
6
6
|
"assets": {
|
|
7
|
-
"css": [
|
|
8
|
-
|
|
7
|
+
"css": [
|
|
8
|
+
"assets/ldd.css"
|
|
9
|
+
],
|
|
10
|
+
"js": []
|
|
9
11
|
},
|
|
10
12
|
"wrapper": "<div class=\"srl-article-root doc-section\"></div>",
|
|
11
13
|
"imageRatios": {
|
|
@@ -35,58 +37,425 @@
|
|
|
35
37
|
}
|
|
36
38
|
},
|
|
37
39
|
"componentProperties": {
|
|
38
|
-
"
|
|
39
|
-
"label": "
|
|
40
|
+
"reverse": {
|
|
41
|
+
"label": "Reverse",
|
|
42
|
+
"type": "option",
|
|
43
|
+
"value": "srl-reverse"
|
|
44
|
+
},
|
|
45
|
+
"pdf-spacer": {
|
|
46
|
+
"label": "PDF spacer (please use with caution)",
|
|
47
|
+
"type": "select",
|
|
48
|
+
"options": [
|
|
49
|
+
{
|
|
50
|
+
"caption": "Default"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"caption": "XXS spacer",
|
|
54
|
+
"value": "srl-spacer-25"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"caption": "XS spacer",
|
|
58
|
+
"value": "srl-spacer-50"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"caption": "S spacer",
|
|
62
|
+
"value": "srl-spacer-100"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"caption": "M spacer",
|
|
66
|
+
"value": "srl-spacer-200"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"caption": "L spacer",
|
|
70
|
+
"value": "srl-spacer-400"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"caption": "XL spacer",
|
|
74
|
+
"value": "srl-spacer-800"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"caption": "XXL spacer",
|
|
78
|
+
"value": "srl-spacer-1600"
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"icon": {
|
|
83
|
+
"label": "Icon",
|
|
84
|
+
"type": "select",
|
|
85
|
+
"options": [
|
|
86
|
+
{
|
|
87
|
+
"caption": "None"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"caption": "Arrow right",
|
|
91
|
+
"value": "srl-button-icon-arrow-right-after"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"caption": "Download",
|
|
95
|
+
"value": "srl-button-icon-download-after"
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"hide-quote-characters": {
|
|
100
|
+
"label": "Hide quote characters before and after",
|
|
101
|
+
"type": "option",
|
|
102
|
+
"value": "srl-hide-quote-characters"
|
|
103
|
+
},
|
|
104
|
+
"width-all": {
|
|
105
|
+
"label": "Width",
|
|
106
|
+
"type": "select",
|
|
107
|
+
"options": [
|
|
108
|
+
{
|
|
109
|
+
"caption": "Regular"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"caption": "Wide",
|
|
113
|
+
"value": "srl-wide-width"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"caption": "Full",
|
|
117
|
+
"value": "srl-full-width"
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
},
|
|
121
|
+
"width-reduced": {
|
|
122
|
+
"label": "Width",
|
|
123
|
+
"type": "select",
|
|
124
|
+
"options": [
|
|
125
|
+
{
|
|
126
|
+
"caption": "Regular"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"caption": "Wide",
|
|
130
|
+
"value": "srl-wide-width"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"horizontal-alignment": {
|
|
135
|
+
"label": "Horizontal alignment",
|
|
136
|
+
"type": "select",
|
|
137
|
+
"options": [
|
|
138
|
+
{
|
|
139
|
+
"caption": "left"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"caption": "center",
|
|
143
|
+
"value": "srl-horizontal-center"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"caption": "right",
|
|
147
|
+
"value": "srl-horizontal-right"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"vertical-alignment": {
|
|
152
|
+
"label": "Vertical alignment",
|
|
153
|
+
"type": "select",
|
|
154
|
+
"options": [
|
|
155
|
+
{
|
|
156
|
+
"caption": "top"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"caption": "center",
|
|
160
|
+
"value": "srl-vertical-center"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"caption": "bottom",
|
|
164
|
+
"value": "srl-vertical-bottom"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
"toc-title": {
|
|
169
|
+
"label": "Show as title",
|
|
170
|
+
"type": "option",
|
|
171
|
+
"value": "srl-pdf-toc__item--title"
|
|
172
|
+
},
|
|
173
|
+
"pdf-hide-paging-publication-chapter-title": {
|
|
174
|
+
"label": "Hide Paging/Publication/Chapter title",
|
|
175
|
+
"type": "option",
|
|
176
|
+
"value": "hide-paging-publication-chapter-title"
|
|
177
|
+
},
|
|
178
|
+
"toc-page-type": {
|
|
179
|
+
"label": "ToC page type",
|
|
40
180
|
"type": "select",
|
|
41
181
|
"options": [
|
|
42
182
|
{
|
|
43
|
-
"caption": "
|
|
183
|
+
"caption": "Default"
|
|
44
184
|
},
|
|
45
185
|
{
|
|
46
|
-
"caption": "
|
|
47
|
-
"value": "srl-
|
|
186
|
+
"caption": "Main ToC",
|
|
187
|
+
"value": "srl-pdf-toc-page--main"
|
|
188
|
+
}
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
"page-size": {
|
|
192
|
+
"label": "Page size",
|
|
193
|
+
"type": "select",
|
|
194
|
+
"options": [
|
|
195
|
+
{
|
|
196
|
+
"caption": "Default (A4)"
|
|
48
197
|
},
|
|
49
198
|
{
|
|
50
|
-
"caption": "
|
|
51
|
-
"value": "srl-
|
|
199
|
+
"caption": "A3",
|
|
200
|
+
"value": "srl-pdf-landscape-container--a3"
|
|
52
201
|
}
|
|
53
202
|
]
|
|
54
203
|
},
|
|
55
|
-
"
|
|
56
|
-
"label": "
|
|
204
|
+
"invert-cover": {
|
|
205
|
+
"label": "Font color scheme",
|
|
57
206
|
"type": "select",
|
|
58
207
|
"options": [
|
|
59
208
|
{
|
|
60
|
-
"caption": "
|
|
209
|
+
"caption": "Normal"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"caption": "Black",
|
|
213
|
+
"value": "srl-cover--font-color-black"
|
|
61
214
|
},
|
|
62
215
|
{
|
|
63
|
-
"caption": "
|
|
64
|
-
"value": "srl-
|
|
216
|
+
"caption": "Primary",
|
|
217
|
+
"value": "srl-cover--font-color-primary"
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
"pdf-chapter-navigation-item-current": {
|
|
222
|
+
"label": "Is current navigation item",
|
|
223
|
+
"type": "option",
|
|
224
|
+
"value": "srl-chapter-navigation__list-item--current"
|
|
225
|
+
},
|
|
226
|
+
"column-behaviour": {
|
|
227
|
+
"label": "Column behaviour",
|
|
228
|
+
"type": "select",
|
|
229
|
+
"options": [
|
|
230
|
+
{
|
|
231
|
+
"caption": "Balanced (columns of equal height)"
|
|
65
232
|
},
|
|
66
233
|
{
|
|
67
|
-
"caption": "
|
|
68
|
-
"value": "srl-
|
|
234
|
+
"caption": "Unbalanced (last column should be empty or shorter)",
|
|
235
|
+
"value": "srl-columns-unbalanced"
|
|
69
236
|
}
|
|
70
237
|
]
|
|
71
238
|
},
|
|
72
|
-
"
|
|
73
|
-
"label": "
|
|
239
|
+
"sticky": {
|
|
240
|
+
"label": "Sticky aside column",
|
|
74
241
|
"type": "option",
|
|
75
|
-
"value": "
|
|
242
|
+
"value": "srl-aside-content-container--sticky"
|
|
243
|
+
},
|
|
244
|
+
"pdf-padding": {
|
|
245
|
+
"label": "PDF padding",
|
|
246
|
+
"type": "select",
|
|
247
|
+
"options": [
|
|
248
|
+
{
|
|
249
|
+
"caption": "Normal"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"caption": "Tiny",
|
|
253
|
+
"value": "srl-pdf-padding-tiny"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"caption": "Small",
|
|
257
|
+
"value": "srl-pdf-padding-small"
|
|
258
|
+
}
|
|
259
|
+
]
|
|
260
|
+
},
|
|
261
|
+
"pdf-font-size": {
|
|
262
|
+
"label": "PDF font-size",
|
|
263
|
+
"type": "select",
|
|
264
|
+
"options": [
|
|
265
|
+
{
|
|
266
|
+
"caption": "Normal"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"caption": "Small",
|
|
270
|
+
"value": "srl-pdf-font-size-small"
|
|
271
|
+
}
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
"h5-as": {
|
|
275
|
+
"label": "Title styling",
|
|
276
|
+
"type": "select",
|
|
277
|
+
"options": [
|
|
278
|
+
{
|
|
279
|
+
"caption": "Default"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"caption": "Styling from title h6",
|
|
283
|
+
"value": "srl-title-h6"
|
|
284
|
+
}
|
|
285
|
+
]
|
|
286
|
+
},
|
|
287
|
+
"h4-as": {
|
|
288
|
+
"label": "Title styling",
|
|
289
|
+
"type": "select",
|
|
290
|
+
"options": [
|
|
291
|
+
{
|
|
292
|
+
"caption": "Default"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"caption": "Styling from title h5",
|
|
296
|
+
"value": "srl-title-h5"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"caption": "Styling from title h6",
|
|
300
|
+
"value": "srl-title-h6"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
"h2-as": {
|
|
305
|
+
"label": "Title styling",
|
|
306
|
+
"type": "select",
|
|
307
|
+
"options": [
|
|
308
|
+
{
|
|
309
|
+
"caption": "Default"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"caption": "Styling from title h3",
|
|
313
|
+
"value": "srl-title-h3"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"caption": "Styling from title h4",
|
|
317
|
+
"value": "srl-title-h4"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"caption": "Styling from title h5",
|
|
321
|
+
"value": "srl-title-h5"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"caption": "Styling from title h6",
|
|
325
|
+
"value": "srl-title-h6"
|
|
326
|
+
}
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
"h3-as": {
|
|
330
|
+
"label": "Title styling",
|
|
331
|
+
"type": "select",
|
|
332
|
+
"options": [
|
|
333
|
+
{
|
|
334
|
+
"caption": "Default"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"caption": "Styling from title h4",
|
|
338
|
+
"value": "srl-title-h4"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"caption": "Styling from title h5",
|
|
342
|
+
"value": "srl-title-h5"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"caption": "Styling from title h6",
|
|
346
|
+
"value": "srl-title-h6"
|
|
347
|
+
}
|
|
348
|
+
]
|
|
76
349
|
}
|
|
77
350
|
},
|
|
78
351
|
"groups": [
|
|
79
352
|
{
|
|
80
|
-
"label": "
|
|
81
|
-
"components": [
|
|
353
|
+
"label": "Titles",
|
|
354
|
+
"components": [
|
|
355
|
+
"title-h1",
|
|
356
|
+
"title-h2",
|
|
357
|
+
"title-h3",
|
|
358
|
+
"title-h4",
|
|
359
|
+
"title-h5",
|
|
360
|
+
"title-h6"
|
|
361
|
+
]
|
|
82
362
|
},
|
|
83
363
|
{
|
|
84
364
|
"label": "Text",
|
|
85
|
-
"components": [
|
|
365
|
+
"components": [
|
|
366
|
+
"lead",
|
|
367
|
+
"paragraph",
|
|
368
|
+
"paragraph-strong",
|
|
369
|
+
"link",
|
|
370
|
+
"quote",
|
|
371
|
+
"quote-with-portrait",
|
|
372
|
+
"footnote-container",
|
|
373
|
+
"footnote-item"
|
|
374
|
+
]
|
|
86
375
|
},
|
|
87
376
|
{
|
|
88
|
-
"label": "
|
|
89
|
-
"components": [
|
|
377
|
+
"label": "Lists",
|
|
378
|
+
"components": [
|
|
379
|
+
"unordered-list",
|
|
380
|
+
"ordered-list",
|
|
381
|
+
"alphanumeric-list",
|
|
382
|
+
"list-item-unordered-list",
|
|
383
|
+
"list-item-ordered-list",
|
|
384
|
+
"list-item-alphanumeric-list"
|
|
385
|
+
]
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"label": "Media",
|
|
389
|
+
"components": [
|
|
390
|
+
"table",
|
|
391
|
+
"image",
|
|
392
|
+
"video",
|
|
393
|
+
"interactive-element"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"label": "Buttons",
|
|
398
|
+
"components": [
|
|
399
|
+
"button-container",
|
|
400
|
+
"button"
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"label": "Container",
|
|
405
|
+
"components": [
|
|
406
|
+
"aside-content-container",
|
|
407
|
+
"columns-container",
|
|
408
|
+
"background-container"
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"label": "CV",
|
|
413
|
+
"components": [
|
|
414
|
+
"cv",
|
|
415
|
+
"cv-time-span"
|
|
416
|
+
]
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"label": "Signatures",
|
|
420
|
+
"components": [
|
|
421
|
+
"signature-container",
|
|
422
|
+
"signature-item"
|
|
423
|
+
]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"label": "Misc",
|
|
427
|
+
"components": [
|
|
428
|
+
"anchor",
|
|
429
|
+
"accordion"
|
|
430
|
+
]
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"label": "PDF",
|
|
434
|
+
"components": [
|
|
435
|
+
"pdf-pagebreak",
|
|
436
|
+
"pdf-column-container",
|
|
437
|
+
"pdf-columnbreak",
|
|
438
|
+
"pdf-publication-title",
|
|
439
|
+
"pdf-chapter-title",
|
|
440
|
+
"pdf-chapter-navigation-container",
|
|
441
|
+
"pdf-chapter-navigation-item",
|
|
442
|
+
"pdf-cover",
|
|
443
|
+
"pdf-landscape-container",
|
|
444
|
+
"pdf-toc-page",
|
|
445
|
+
"pdf-toc-item-title",
|
|
446
|
+
"pdf-toc-item"
|
|
447
|
+
]
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"label": "Hosting Components",
|
|
451
|
+
"components": [
|
|
452
|
+
"download-center",
|
|
453
|
+
"search"
|
|
454
|
+
]
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"label": "Properties",
|
|
458
|
+
"components": []
|
|
90
459
|
}
|
|
91
460
|
],
|
|
92
461
|
"defaultComponents": {
|
|
@@ -163,5 +532,801 @@
|
|
|
163
532
|
"image.desktop-image"
|
|
164
533
|
]
|
|
165
534
|
}
|
|
535
|
+
],
|
|
536
|
+
"components": [
|
|
537
|
+
{
|
|
538
|
+
"name": "title-h1",
|
|
539
|
+
"label": "Title (h1)",
|
|
540
|
+
"properties": [
|
|
541
|
+
"width-reduced",
|
|
542
|
+
"pdf-spacer"
|
|
543
|
+
],
|
|
544
|
+
"html": "<h1 class=\"srl-grid srl-title-h1 srl-linkable\"><span class=\"srl-grid__inner srl-title-h1__text\" doc-editable=\"title-h1\">Title h1 Lorem ipsum dolor sit amet</span></h1>"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"name": "title-h2",
|
|
548
|
+
"label": "Title (h2)",
|
|
549
|
+
"properties": [
|
|
550
|
+
"h2-as",
|
|
551
|
+
"width-reduced",
|
|
552
|
+
"pdf-spacer"
|
|
553
|
+
],
|
|
554
|
+
"directives": {
|
|
555
|
+
"title-h2-number": {
|
|
556
|
+
"recommendedMaxLength": 2
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"html": "<h2 class=\"srl-grid srl-title-h2 srl-linkable\"><span\n class=\"srl-grid__inner srl-title-h2__number-text-container\"\n data-category-marker=\"container\"\n ><span\n class=\"srl-title-h2__number\"\n data-category-marker=\"number\"\n doc-optional\n doc-editable=\"title-h2-number\"\n >1</span><span\n class=\"srl-title-h2__text\"\n data-category-marker=\"text\"\n doc-editable=\"title-h2-text\"\n >Title h2 Lorem ipsum dolor sit amet</span></span></h2>"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"name": "title-h3",
|
|
563
|
+
"label": "Title (h3)",
|
|
564
|
+
"properties": [
|
|
565
|
+
"h3-as",
|
|
566
|
+
"width-reduced",
|
|
567
|
+
"pdf-spacer"
|
|
568
|
+
],
|
|
569
|
+
"directives": {
|
|
570
|
+
"title-h3-number": {
|
|
571
|
+
"recommendedMaxLength": 4
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
"html": "<h3 class=\"srl-grid srl-title-h3 srl-linkable\"><span\n class=\"srl-grid__inner srl-title-h3__number-text-container\"\n data-category-marker=\"container\"\n ><span\n class=\"srl-title-h3__number\"\n data-category-marker=\"number\"\n doc-optional\n doc-editable=\"title-h3-number\"\n >1.1.</span><span\n class=\"srl-title-h3__text\"\n data-category-marker=\"text\"\n doc-editable=\"title-h3-text\"\n >Title h3 Lorem ipsum dolor sit amet</span></span></h3>"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"name": "title-h4",
|
|
578
|
+
"label": "Title (h4)",
|
|
579
|
+
"properties": [
|
|
580
|
+
"h4-as",
|
|
581
|
+
"width-reduced",
|
|
582
|
+
"pdf-spacer"
|
|
583
|
+
],
|
|
584
|
+
"directives": {
|
|
585
|
+
"title-h4-number": {
|
|
586
|
+
"recommendedMaxLength": 6
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"html": "<h4 class=\"srl-grid srl-title-h4 srl-linkable\"><span\n class=\"srl-grid__inner srl-title-h4__number-text-container\"\n data-category-marker=\"container\"\n ><span\n class=\"srl-title-h4__number\"\n data-category-marker=\"number\"\n doc-optional\n doc-editable=\"title-h4-number\"\n >1.1.1.</span><span\n class=\"srl-title-h4__text\"\n data-category-marker=\"text\"\n doc-editable=\"title-h4-text\"\n >Title h4 Lorem ipsum dolor sit amet</span></span></h4>"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"name": "title-h5",
|
|
593
|
+
"label": "Title (h5)",
|
|
594
|
+
"properties": [
|
|
595
|
+
"h5-as",
|
|
596
|
+
"width-reduced",
|
|
597
|
+
"pdf-spacer"
|
|
598
|
+
],
|
|
599
|
+
"html": "<h5 class=\"srl-grid srl-title-h5 srl-linkable\"><span class=\"srl-grid__inner srl-title-h5__text\" doc-editable=\"title-h5\">Title h5 Lorem ipsum dolor sit amet</span></h5>"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"name": "title-h6",
|
|
603
|
+
"label": "Title (h6)",
|
|
604
|
+
"properties": [
|
|
605
|
+
"width-reduced",
|
|
606
|
+
"pdf-spacer"
|
|
607
|
+
],
|
|
608
|
+
"html": "<h6 class=\"srl-grid srl-title-h6 srl-linkable\"><span class=\"srl-grid__inner srl-title-h6__text\" doc-editable=\"title-h6\">Title h6 Lorem ipsum dolor sit amet</span></h6>"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"name": "lead",
|
|
612
|
+
"label": "Lead",
|
|
613
|
+
"properties": [
|
|
614
|
+
"pdf-spacer"
|
|
615
|
+
],
|
|
616
|
+
"directives": {
|
|
617
|
+
"lead": {
|
|
618
|
+
"recommendedMaxLength": 325
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
"html": "<div class=\"srl-grid srl-lead\"><p class=\"srl-grid__inner srl-lead__text srl-linkable\" doc-editable=\"lead\">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Iste sapiente,\n magni incidunt aut hic ut sint, repellendus nesciunt alias sequi, vero\n voluptatem! Similique laborum natus eum ullam, rem officiis dolores.</p></div>"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"name": "paragraph",
|
|
625
|
+
"label": "Paragraph",
|
|
626
|
+
"properties": [
|
|
627
|
+
"pdf-spacer"
|
|
628
|
+
],
|
|
629
|
+
"html": "<p class=\"srl-grid srl-paragraph srl-linkable\"><span class=\"srl-grid__inner srl-paragraph__text\" doc-editable=\"paragraph\">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy\n eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\n voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet\n clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\n amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam\n nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed\n diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet\n clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\n amet.</span></p>"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"name": "paragraph-strong",
|
|
633
|
+
"label": "Paragraph (strong)",
|
|
634
|
+
"properties": [
|
|
635
|
+
"pdf-spacer"
|
|
636
|
+
],
|
|
637
|
+
"html": "<p class=\"srl-grid srl-paragraph-strong srl-linkable\"><span\n class=\"srl-grid__inner srl-paragraph-strong__text\"\n doc-editable=\"transformable-text\"\n >Lorem ipsum dolor sit amet?</span></p>"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"name": "link",
|
|
641
|
+
"label": "Link",
|
|
642
|
+
"properties": [
|
|
643
|
+
"pdf-spacer"
|
|
644
|
+
],
|
|
645
|
+
"directives": {
|
|
646
|
+
"showParagraph": {
|
|
647
|
+
"type": "toggle",
|
|
648
|
+
"label": "Show paragraph",
|
|
649
|
+
"default": true
|
|
650
|
+
},
|
|
651
|
+
"link": {
|
|
652
|
+
"plainText": true
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
"html": "<div class=\"srl-grid srl-link srl-linkable\"><div class=\"srl-grid__inner srl-link__content\"><p class=\"srl-paragraph\" doc-toggle=\"showParagraph\"><span class=\"srl-paragraph__link-text\" doc-editable=\"link-text\">Lorem ipsum dolor sit amet, consetetur sadipscing elitr:</span></p><a doc-link=\"href\" class=\"srl-link__link\"><span class=\"srl-link__text\" doc-editable=\"link\">Link text</span></a></div></div>"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "quote",
|
|
659
|
+
"label": "Quote",
|
|
660
|
+
"properties": [
|
|
661
|
+
"width-reduced",
|
|
662
|
+
"pdf-spacer",
|
|
663
|
+
"hide-quote-characters"
|
|
664
|
+
],
|
|
665
|
+
"html": "<blockquote class=\"srl-grid srl-quote\"><div class=\"srl-grid__inner srl-quote__text\"><p class=\"srl-quote__quote srl-linkable\" doc-editable=\"quote-text\">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse</p><p class=\"srl-quote__cite\"><cite class=\"srl-quote__name\" doc-editable=\"quote-name\" doc-optional>Max Mustermann</cite><span class=\"srl-quote__position\" doc-editable=\"quote-position\" doc-optional>CEO</span></p></div></blockquote>"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"name": "quote-with-portrait",
|
|
669
|
+
"label": "Quote with image",
|
|
670
|
+
"properties": [
|
|
671
|
+
"width-reduced",
|
|
672
|
+
"pdf-spacer",
|
|
673
|
+
"hide-quote-characters"
|
|
674
|
+
],
|
|
675
|
+
"directives": {
|
|
676
|
+
"image": {
|
|
677
|
+
"imageRatios": [
|
|
678
|
+
"1:1"
|
|
679
|
+
],
|
|
680
|
+
"allowOriginalRatio": false
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"html": "<blockquote class=\"srl-grid srl-quote srl-quote srl-quote--with-image\"><figure class=\"srl-quote__figure\"><img class=\"srl-quote__img\" doc-image=\"image\" /></figure><div class=\"srl-quote__text\"><p class=\"srl-quote__quote srl-linkable\" doc-editable=\"quote-text\">Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse</p><p class=\"srl-quote__cite\"><cite class=\"srl-quote__name\" doc-editable=\"quote-name\" doc-optional>Max Mustermann</cite><span class=\"srl-quote__position\" doc-editable=\"quote-position\" doc-optional>CEO</span></p></div></blockquote>"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"name": "footnote-container",
|
|
687
|
+
"label": "Footnote container",
|
|
688
|
+
"properties": [
|
|
689
|
+
"pdf-spacer"
|
|
690
|
+
],
|
|
691
|
+
"directives": {
|
|
692
|
+
"container": {
|
|
693
|
+
"allowedChildren": [
|
|
694
|
+
"footnote-item"
|
|
695
|
+
],
|
|
696
|
+
"defaultComponents": {
|
|
697
|
+
"paragraph": "footnote-item"
|
|
698
|
+
},
|
|
699
|
+
"defaultContent": [
|
|
700
|
+
{
|
|
701
|
+
"component": "footnote-item"
|
|
702
|
+
}
|
|
703
|
+
]
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
"html": "<div class=\"srl-grid srl-footnote srl-linkable\"><div\n class=\"srl-grid__inner srl-footnote__inner\"\n doc-container=\"container\"\n ></div></div>"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"name": "footnote-item",
|
|
710
|
+
"label": "Footnote item",
|
|
711
|
+
"allowedParents": [
|
|
712
|
+
"footnote-container"
|
|
713
|
+
],
|
|
714
|
+
"html": "<div class=\"srl-footnote__item\"><span class=\"srl-footnote__number\"><sup doc-editable=\"footnote-number\">1</sup></span><span class=\"srl-footnote__text\" doc-editable=\"footnote-text\">Footnote</span></div>"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "unordered-list",
|
|
718
|
+
"label": "List (unordered)",
|
|
719
|
+
"properties": [
|
|
720
|
+
"pdf-spacer"
|
|
721
|
+
],
|
|
722
|
+
"directives": {
|
|
723
|
+
"list": {
|
|
724
|
+
"allowedChildren": [
|
|
725
|
+
"list-item-unordered-list"
|
|
726
|
+
],
|
|
727
|
+
"defaultComponents": {
|
|
728
|
+
"paragraph": "list-item-unordered-list"
|
|
729
|
+
},
|
|
730
|
+
"defaultContent": [
|
|
731
|
+
{
|
|
732
|
+
"component": "list-item-unordered-list"
|
|
733
|
+
}
|
|
734
|
+
]
|
|
735
|
+
}
|
|
736
|
+
},
|
|
737
|
+
"html": "<div class=\"srl-grid srl-list-group srl-list-group--ul\"><ul\n class=\"srl-grid__inner srl-list-group__list srl-list-group__list--ul\"\n doc-container=\"list\"\n ></ul></div>"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"name": "ordered-list",
|
|
741
|
+
"label": "List (numeric)",
|
|
742
|
+
"properties": [
|
|
743
|
+
"pdf-spacer"
|
|
744
|
+
],
|
|
745
|
+
"directives": {
|
|
746
|
+
"list": {
|
|
747
|
+
"allowedChildren": [
|
|
748
|
+
"list-item-ordered-list"
|
|
749
|
+
],
|
|
750
|
+
"defaultComponents": {
|
|
751
|
+
"paragraph": "list-item-ordered-list"
|
|
752
|
+
},
|
|
753
|
+
"defaultContent": [
|
|
754
|
+
{
|
|
755
|
+
"component": "list-item-ordered-list"
|
|
756
|
+
}
|
|
757
|
+
]
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"html": "<div class=\"srl-grid srl-list-group srl-list-group--ol\"><ol\n class=\"srl-grid__inner srl-list-group__list srl-list-group__list--ol\"\n doc-container=\"list\"\n ></ol></div>"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"name": "alphanumeric-list",
|
|
764
|
+
"label": "List (alphanumeric)",
|
|
765
|
+
"properties": [
|
|
766
|
+
"pdf-spacer"
|
|
767
|
+
],
|
|
768
|
+
"directives": {
|
|
769
|
+
"list": {
|
|
770
|
+
"allowedChildren": [
|
|
771
|
+
"list-item-alphanumeric-list"
|
|
772
|
+
],
|
|
773
|
+
"defaultComponents": {
|
|
774
|
+
"paragraph": "list-item-alphanumeric-list"
|
|
775
|
+
},
|
|
776
|
+
"defaultContent": [
|
|
777
|
+
{
|
|
778
|
+
"component": "list-item-alphanumeric-list"
|
|
779
|
+
}
|
|
780
|
+
]
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"html": "<div class=\"srl-grid srl-list-group srl-list-group--alphanumeric\"><ol\n class=\"srl-grid__inner srl-list-group__list srl-list-group__list--alphanumeric\"\n doc-container=\"list\"\n ></ol></div>"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"name": "list-item-unordered-list",
|
|
787
|
+
"label": "List item (unordered list)",
|
|
788
|
+
"allowedParents": [
|
|
789
|
+
"unordered-list",
|
|
790
|
+
"list-item-unordered-list"
|
|
791
|
+
],
|
|
792
|
+
"directives": {
|
|
793
|
+
"add-nested-list": {
|
|
794
|
+
"type": "toggle",
|
|
795
|
+
"label": "Add nested list container",
|
|
796
|
+
"default": false
|
|
797
|
+
},
|
|
798
|
+
"sub-list": {
|
|
799
|
+
"allowedChildren": [
|
|
800
|
+
"list-item-unordered-list"
|
|
801
|
+
],
|
|
802
|
+
"defaultComponents": {
|
|
803
|
+
"paragraph": "list-item-unordered-list"
|
|
804
|
+
},
|
|
805
|
+
"defaultContent": [
|
|
806
|
+
{
|
|
807
|
+
"component": "list-item-unordered-list"
|
|
808
|
+
}
|
|
809
|
+
]
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"html": "<li class=\"srl-list-group__item srl-list-group__item--ul\"><div class=\"srl-list-group__item-inner\"><span class=\"srl-list-group__item-text srl-linkable\" doc-editable=\"list-text\">List-Item</span></div><ul class=\"srl-list-group__sub-list srl-list-group__sub-list--ul\" doc-container=\"sub-list\" doc-toggle=\"add-nested-list\"></ul></li>"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"name": "list-item-ordered-list",
|
|
816
|
+
"label": "List item (numeric list)",
|
|
817
|
+
"allowedParents": [
|
|
818
|
+
"ordered-list",
|
|
819
|
+
"list-item-ordered-list"
|
|
820
|
+
],
|
|
821
|
+
"directives": {
|
|
822
|
+
"add-nested-list": {
|
|
823
|
+
"type": "toggle",
|
|
824
|
+
"label": "Add nested list container",
|
|
825
|
+
"default": false
|
|
826
|
+
},
|
|
827
|
+
"sub-list": {
|
|
828
|
+
"allowedChildren": [
|
|
829
|
+
"list-item-ordered-list"
|
|
830
|
+
],
|
|
831
|
+
"defaultComponents": {
|
|
832
|
+
"paragraph": "list-item-ordered-list"
|
|
833
|
+
},
|
|
834
|
+
"defaultContent": [
|
|
835
|
+
{
|
|
836
|
+
"component": "list-item-ordered-list"
|
|
837
|
+
}
|
|
838
|
+
]
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
"html": "<li class=\"srl-list-group__item srl-list-group__item--ol\"><div class=\"srl-list-group__item-inner\"><span class=\"srl-list-group__item-text srl-linkable\" doc-editable=\"list-text\">List-Item</span></div><ol class=\"srl-list-group__sub-list srl-list-group__sub-list--ol\" doc-container=\"sub-list\" doc-toggle=\"add-nested-list\"></ol></li>"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"name": "list-item-alphanumeric-list",
|
|
845
|
+
"label": "List item (alphanumeric list)",
|
|
846
|
+
"allowedParents": [
|
|
847
|
+
"alphanumeric-list",
|
|
848
|
+
"list-item-alphanumeric-list"
|
|
849
|
+
],
|
|
850
|
+
"directives": {
|
|
851
|
+
"add-nested-list": {
|
|
852
|
+
"type": "toggle",
|
|
853
|
+
"label": "Add nested list container",
|
|
854
|
+
"default": false
|
|
855
|
+
},
|
|
856
|
+
"sub-list": {
|
|
857
|
+
"allowedChildren": [
|
|
858
|
+
"list-item-alphanumeric-list"
|
|
859
|
+
],
|
|
860
|
+
"defaultComponents": {
|
|
861
|
+
"paragraph": "list-item-alphanumeric-list"
|
|
862
|
+
},
|
|
863
|
+
"defaultContent": [
|
|
864
|
+
{
|
|
865
|
+
"component": "list-item-alphanumeric-list"
|
|
866
|
+
}
|
|
867
|
+
]
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
"html": "<li class=\"srl-list-group__item srl-list-group__item--alphanumeric\"><div class=\"srl-list-group__item-inner\"><span class=\"srl-list-group__item-text srl-linkable\" doc-editable=\"list-text\">List-Item</span></div><ol class=\"srl-list-group__sub-list srl-list-group__sub-list--alphanumeric\" doc-container=\"sub-list\" doc-toggle=\"add-nested-list\"></ol></li>"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"name": "table",
|
|
874
|
+
"label": "Table (finance plus)",
|
|
875
|
+
"properties": [
|
|
876
|
+
"pdf-padding",
|
|
877
|
+
"pdf-font-size",
|
|
878
|
+
"width-reduced",
|
|
879
|
+
"pdf-spacer"
|
|
880
|
+
],
|
|
881
|
+
"directives": {
|
|
882
|
+
"nswow-table": {
|
|
883
|
+
"service": "nswow-table"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
"html": "<div class=\"srl-table\"><srl-ld-table data-replace-tag=\"div\" data-remove-from-xhtml=\"transient\" data-remove-from-pdf=\"transient\"><div ref=\"wrapper\" class=\"srl-table__container\" doc-include=\"nswow-table\"><p class=\"srl-grid srl-paragraph\"><span class=\"srl-grid__inner srl-paragraph__text\">Table placeholder</span></p></div></srl-ld-table></div>"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"name": "image",
|
|
890
|
+
"label": "Image",
|
|
891
|
+
"properties": [
|
|
892
|
+
"width-all",
|
|
893
|
+
"pdf-spacer"
|
|
894
|
+
],
|
|
895
|
+
"directives": {
|
|
896
|
+
"show-alt-text": {
|
|
897
|
+
"type": "toggle",
|
|
898
|
+
"label": "Show alt text",
|
|
899
|
+
"default": false
|
|
900
|
+
},
|
|
901
|
+
"show-mobile-image": {
|
|
902
|
+
"type": "toggle",
|
|
903
|
+
"label": "Show mobile image",
|
|
904
|
+
"default": false
|
|
905
|
+
},
|
|
906
|
+
"show-caption": {
|
|
907
|
+
"type": "toggle",
|
|
908
|
+
"label": "Show caption",
|
|
909
|
+
"default": true
|
|
910
|
+
},
|
|
911
|
+
"desktop-image": {
|
|
912
|
+
"imageRatios": [
|
|
913
|
+
"1:1",
|
|
914
|
+
"3:2",
|
|
915
|
+
"4:3",
|
|
916
|
+
"16:9"
|
|
917
|
+
],
|
|
918
|
+
"allowOriginalRatio": true
|
|
919
|
+
},
|
|
920
|
+
"mobile-image": {
|
|
921
|
+
"imageRatios": [
|
|
922
|
+
"1:1",
|
|
923
|
+
"3:2",
|
|
924
|
+
"4:3",
|
|
925
|
+
"16:9"
|
|
926
|
+
],
|
|
927
|
+
"allowOriginalRatio": true
|
|
928
|
+
}
|
|
929
|
+
},
|
|
930
|
+
"html": "<figure class=\"srl-image\"><div class=\"srl-grid srl-grid--media\"><div class=\"srl-image__alt-text\" doc-editable=\"alt-tag\" doc-toggle=\"show-alt-text\"\n data-alt-text-source=\"alt\">Write the alt text here (optional, but recommended)</div><div\n class=\"srl-grid__inner srl-image__image-container srl-image__image-container--desktop\"\n ><img\n class=\"srl-image__img srl-image__img--desktop\"\n doc-image=\"desktop-image\"\n data-alt-text-target=\"alt\"\n /></div><div\n class=\"srl-grid__inner srl-image__image-container srl-image__image-container--mobile\"\n doc-toggle=\"show-mobile-image\"\n data-remove-from-pdf=\"complete\"\n ><img\n class=\"srl-image__img srl-image__img--mobile\"\n doc-image=\"mobile-image\"\n data-alt-text-target=\"alt\"\n /></div></div><figcaption\n class=\"srl-grid srl-image__caption srl-linkable\"\n doc-toggle=\"show-caption\"\n ><span class=\"srl-image__caption-text\" doc-editable=\"image-caption\">Write an image caption here (optional)</span></figcaption></figure>"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "video",
|
|
934
|
+
"label": "Video",
|
|
935
|
+
"properties": [
|
|
936
|
+
"width-all",
|
|
937
|
+
"pdf-spacer"
|
|
938
|
+
],
|
|
939
|
+
"directives": {
|
|
940
|
+
"video-thumbnail": {
|
|
941
|
+
"imageRatios": [
|
|
942
|
+
"16:9"
|
|
943
|
+
],
|
|
944
|
+
"allowOriginalRatio": false
|
|
945
|
+
},
|
|
946
|
+
"showVideoLink": {
|
|
947
|
+
"type": "toggle",
|
|
948
|
+
"label": "Enable video link for PDF",
|
|
949
|
+
"default": false
|
|
950
|
+
},
|
|
951
|
+
"link": {
|
|
952
|
+
"plainText": true
|
|
953
|
+
},
|
|
954
|
+
"text": {
|
|
955
|
+
"plainText": true
|
|
956
|
+
}
|
|
957
|
+
},
|
|
958
|
+
"html": "<div class=\"srl-video\" data-remove-from-word=\"complete\"><div class=\"srl-grid srl-grid--media\"><div class=\"srl-grid__inner srl-video__inner\"><srl-ld-video data-remove-from-xhtml=\"transient\" data-remove-from-pdf=\"transient\"><div class=\"srl-video__video-container\" doc-html=\"free-html\" data-remove-from-pdf=\"complete\"></div><img class=\"srl-video__thumbnail\" doc-image=\"video-thumbnail\"></img><div class=\"srl-video__play\" data-remove-from-pdf=\"complete\"><button class=\"srl-button srl-has-icon\" type=\"button\"><svg class=\"svg svg-play\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5 3L19 12L5 21V3Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg><span doc-editable=\"text\">Video abspielen</span></button></div></srl-ld-video></div></div><div class=\"srl-grid\"><div\n class=\"srl-video__video-link-container\"\n data-remove-from-web=\"complete\"\n doc-toggle=\"showVideoLink\"\n ><a class=\"srl-video__video-link\" doc-link=\"href\" target=\"_blank\"><span class=\"srl-video__video-link-icon\"><svg\n class=\"svg svg-play\"\n viewBox=\"0 0 14 18\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n ><path\n d=\"M0.5 17C0.5 17.1844 0.601492 17.3538 0.764071 17.4408C0.92665 17.5278 1.12392 17.5183 1.27735 17.416L13.2774 9.41603C13.4164 9.32329 13.5 9.16718 13.5 9C13.5 8.83282 13.4164 8.67671 13.2774 8.58397L1.27735 0.583975C1.12392 0.481689 0.92665 0.472153 0.764071 0.559163C0.601492 0.646172 0.5 0.815602 0.5 1V17Z\"\n stroke=\"currentColor\"\n stroke-linecap=\"round\"\n stroke-linejoin=\"round\"\n /></svg></span><span class=\"srl-video__video-link-text\" doc-editable=\"link\">Link to the video in your report</span></a></div></div></div>"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"name": "interactive-element",
|
|
962
|
+
"label": "Interactive element",
|
|
963
|
+
"description": "Separate image for PDF",
|
|
964
|
+
"properties": [
|
|
965
|
+
"width-reduced",
|
|
966
|
+
"pdf-spacer"
|
|
967
|
+
],
|
|
968
|
+
"html": "<div class=\"srl-grid srl-interactive-element\"><div class=\"srl-grid__inner\"><p class=\"srl-paragraph srl-paragraph--strong srl-linkable\"><span class=\"srl-paragraph__text\" doc-editable=\"interactive-chart-title\">Subtitle</span></p><p class=\"srl-paragraph srl-linkable\"><span\n class=\"srl-paragraph__text\"\n doc-editable=\"interactive-chart-sub-title\"\n >Title</span></p><div\n doc-html=\"free-html\"\n class=\"srl-chart__chart\"\n data-remove-from-pdf=\"complete\"\n ><div class=\"iframe-placeholder\"></div></div><figure class=\"srl-chart__image-container\" data-remove-from-web=\"complete\"><img class=\"srl-chart__image\" doc-image=\"pdf-image\" /></figure></div></div>"
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"name": "button-container",
|
|
972
|
+
"label": "Button container",
|
|
973
|
+
"directives": {
|
|
974
|
+
"button-container": {
|
|
975
|
+
"allowedChildren": [
|
|
976
|
+
"button"
|
|
977
|
+
],
|
|
978
|
+
"defaultComponents": {
|
|
979
|
+
"paragraph": "button"
|
|
980
|
+
},
|
|
981
|
+
"defaultContent": [
|
|
982
|
+
{
|
|
983
|
+
"component": "button"
|
|
984
|
+
}
|
|
985
|
+
]
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
"html": "<div class=\"srl-grid srl-button-container\"><div class=\"srl-grid__inner srl-button-container__inner\" doc-container=\"button-container\"></div></div>"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"name": "button",
|
|
992
|
+
"label": "Button",
|
|
993
|
+
"properties": [
|
|
994
|
+
"icon"
|
|
995
|
+
],
|
|
996
|
+
"allowedParents": [
|
|
997
|
+
"button-container"
|
|
998
|
+
],
|
|
999
|
+
"directives": {
|
|
1000
|
+
"button-text": {
|
|
1001
|
+
"plainText": true
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
"html": "<a doc-link=\"href\" class=\"srl-button\"><i class=\"srl-button__icon\" aria-hidden=\"true\"></i><span class=\"srl-button__text\" doc-editable=\"button-text\">Button</span></a>"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"name": "aside-content-container",
|
|
1008
|
+
"label": "Aside / Content container",
|
|
1009
|
+
"properties": [
|
|
1010
|
+
"sticky",
|
|
1011
|
+
"pdf-spacer"
|
|
1012
|
+
],
|
|
1013
|
+
"directives": {
|
|
1014
|
+
"aside": {
|
|
1015
|
+
"allowedChildren": [
|
|
1016
|
+
"paragraph",
|
|
1017
|
+
"link"
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
"content": {
|
|
1021
|
+
"defaultComponents": {
|
|
1022
|
+
"paragraph": "paragraph"
|
|
1023
|
+
},
|
|
1024
|
+
"defaultContent": [
|
|
1025
|
+
{
|
|
1026
|
+
"component": "paragraph"
|
|
1027
|
+
}
|
|
1028
|
+
]
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
"html": "<div class=\"srl-grid srl-aside-content-container\"><div\n class=\"srl-grid__aside srl-aside-content-container__aside\"\n doc-container=\"aside\"\n ></div><div\n class=\"srl-grid__content srl-aside-content-container__content\"\n doc-container=\"content\"\n ></div></div>"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"name": "columns-container",
|
|
1035
|
+
"label": "Columns container",
|
|
1036
|
+
"properties": [
|
|
1037
|
+
"width-reduced",
|
|
1038
|
+
"vertical-alignment",
|
|
1039
|
+
"pdf-spacer"
|
|
1040
|
+
],
|
|
1041
|
+
"directives": {
|
|
1042
|
+
"show-column-3": {
|
|
1043
|
+
"type": "toggle",
|
|
1044
|
+
"label": "Show column 3",
|
|
1045
|
+
"default": false
|
|
1046
|
+
},
|
|
1047
|
+
"show-column-4": {
|
|
1048
|
+
"type": "toggle",
|
|
1049
|
+
"label": "Show column 4",
|
|
1050
|
+
"default": false
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"html": "<div class=\"srl-grid srl-columns srl-nested-container\"><div class=\"srl-grid__inner srl-flex srl-flex-gap\"><div\n class=\"srl-columns__column srl-columns__column--1\"\n doc-container=\"column-1\"\n ></div><div\n class=\"srl-columns__column srl-columns__column--2\"\n doc-container=\"column-2\"\n ></div><div\n class=\"srl-columns__column srl-columns__column--3\"\n doc-container=\"column-3\"\n doc-toggle=\"show-column-3\"\n ></div><div\n class=\"srl-columns__column srl-columns__column--4\"\n doc-container=\"column-4\"\n doc-toggle=\"show-column-4\"\n ></div></div></div>"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "background-container",
|
|
1057
|
+
"label": "Background container",
|
|
1058
|
+
"html": "<div class=\"srl-background-container srl-nested-container\" doc-container=\"content\"></div>"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"name": "cv",
|
|
1062
|
+
"label": "CV",
|
|
1063
|
+
"properties": [
|
|
1064
|
+
"pdf-spacer"
|
|
1065
|
+
],
|
|
1066
|
+
"directives": {
|
|
1067
|
+
"image": {
|
|
1068
|
+
"imageRatios": [
|
|
1069
|
+
"1:1"
|
|
1070
|
+
],
|
|
1071
|
+
"allowOriginalRatio": false
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
"html": "<srl-article-accordion class=\"srl-cv\" data-replace-tag=\"div\"><div class=\"srl-grid srl-cv__header\"><div class=\"srl-grid__inner srl-cv__inner\"><div class=\"srl-cv__header-portrait\"><figure class=\"srl-cv__figure\"><img class=\"srl-cv__img\" doc-image=\"image\" /></figure></div><div class=\"srl-cv__header-content\"><p class=\"srl-title-h3\"><span class=\"srl-title-h3__text\" doc-editable=\"cv-title-h3\">Max Mustermann</span></p><p class=\"srl-title-h4\"><span class=\"srl-title-h4__text\" doc-editable=\"cv-title-h4\">Chairman of the Group Management, Chief Executive Officer (CEO)</span></p><p class=\"srl-paragraph\" doc-editable=\"cv-text-excerpt\">Swiss, born 1956<br />Appointed in 2018</p></div></div></div><div class=\"srl-cv__content srl-article-accordion__content\"><div class=\"srl-article-accordion__wrapper\" doc-container=\"cv-content\"></div></div><div class=\"srl-grid srl-cv__button-container\" data-remove-from-pdf=\"complete\" data-remove-from-word=\"complete\" data-remove-from-xhtml=\"complete\"><div class=\"srl-grid__inner srl-cv__button-container-inner text-center\"><button type=\"button\" class=\"srl-cv__button srl-article-accordion__toggle\"><span class=\"srl-cv__button-more\" doc-editable=\"cv-text-more\">Read more</span><span class=\"srl-cv__button-close\" doc-editable=\"cv-text-close\">close</span></button><hr class=\"srl-cv__divider\"/></div></div></srl-article-accordion>"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"name": "cv-time-span",
|
|
1078
|
+
"label": "CV time span",
|
|
1079
|
+
"html": "<div class=\"srl-grid srl-cv-time-span\"><div class=\"srl-grid__inner srl-cv-time-span__inner\"><span class=\"srl-cv-time-span__years\" doc-editable=\"cv-time-span-years\">2010 - 2012</span><span\n class=\"srl-cv-time-span__position srl-linkable\"\n doc-editable=\"cv-time-span-position\"\n >Ut enim ad minim veniam, quis nostrud exercitation ullamco, Ut enim ad minim\n veniam, quis nostrud exercitation ullamco. Ut enim ad minim veniam, quis\n nostrud exercitation ullamco</span></div></div>"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"name": "signature-container",
|
|
1083
|
+
"label": "Signature container",
|
|
1084
|
+
"properties": [
|
|
1085
|
+
"pdf-spacer"
|
|
1086
|
+
],
|
|
1087
|
+
"directives": {
|
|
1088
|
+
"content": {
|
|
1089
|
+
"allowedChildren": [
|
|
1090
|
+
"signature-item"
|
|
1091
|
+
],
|
|
1092
|
+
"defaultContent": [
|
|
1093
|
+
{
|
|
1094
|
+
"component": "signature-item"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"component": "signature-item"
|
|
1098
|
+
}
|
|
1099
|
+
]
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
"html": "<div class=\"srl-grid srl-signature\"><div\n class=\"srl-grid__inner srl-signature__content\"\n doc-container=\"content\"\n ></div></div>"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"name": "signature-item",
|
|
1106
|
+
"label": "Signature item",
|
|
1107
|
+
"allowedParents": [
|
|
1108
|
+
"signature-container"
|
|
1109
|
+
],
|
|
1110
|
+
"directives": {
|
|
1111
|
+
"signature-item-name": {
|
|
1112
|
+
"plainText": true
|
|
1113
|
+
},
|
|
1114
|
+
"signature-item-position": {
|
|
1115
|
+
"plainText": true
|
|
1116
|
+
},
|
|
1117
|
+
"image": {
|
|
1118
|
+
"imageRatios": [
|
|
1119
|
+
"1:1",
|
|
1120
|
+
"4:3",
|
|
1121
|
+
"16:9"
|
|
1122
|
+
],
|
|
1123
|
+
"allowOriginalRatio": true
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
"html": "<div class=\"srl-signature__item\"><img class=\"srl-signature__img\" doc-image=\"image\" /><p class=\"srl-signature__name\" doc-editable=\"signature-item-name\">Max Mustermann</p><p class=\"srl-signature__position\" doc-editable=\"signature-item-position\">Position</p></div>"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "anchor",
|
|
1130
|
+
"label": "Anchor",
|
|
1131
|
+
"directives": {
|
|
1132
|
+
"anchor-text": {
|
|
1133
|
+
"plainText": true
|
|
1134
|
+
}
|
|
1135
|
+
},
|
|
1136
|
+
"html": "<p\n class=\"srl-anchor srl-editor-component\"\n data-remove-from-translate-plus=\"true\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n data-is-anchor=\"true\"\n><span class=\"srl-anchor__text srl-editor-component__text\" doc-editable=\"anchor-text\">Must start with a letter (A–Z or a–z); a number is not allowed. After the\n first letter, any combination of letters (a–z, A–Z), digits (0–9), hyphens\n (-), underscores (_), colons (:), and periods (.) is allowed. The ID must be\n unique and is case-sensitive.</span></p>"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"name": "accordion",
|
|
1140
|
+
"label": "Accordion",
|
|
1141
|
+
"properties": [
|
|
1142
|
+
"pdf-spacer"
|
|
1143
|
+
],
|
|
1144
|
+
"directives": {
|
|
1145
|
+
"header": {
|
|
1146
|
+
"allowedChildren": [
|
|
1147
|
+
"title-h2",
|
|
1148
|
+
"title-h3",
|
|
1149
|
+
"title-h4",
|
|
1150
|
+
"title-h5",
|
|
1151
|
+
"title-h6"
|
|
1152
|
+
],
|
|
1153
|
+
"defaultContent": [
|
|
1154
|
+
{
|
|
1155
|
+
"component": "title-h2"
|
|
1156
|
+
}
|
|
1157
|
+
]
|
|
1158
|
+
},
|
|
1159
|
+
"content": {
|
|
1160
|
+
"defaultComponents": {
|
|
1161
|
+
"paragraph": "paragraph"
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
"html": "<srl-ld-accordion class=\"srl-category-accordion srl-category-accordion--category\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n><div class=\"srl-category-accordion__inner\"\n data-remove-from-web=\"transient\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ><div class=\"srl-category-accordion__inner-head\"\n data-remove-from-web=\"transient\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ><div class=\"srl-category-accordion__head\"\n data-remove-from-web=\"transient\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ><div class=\"srl-category-accordion__head--btn\"\n data-remove-from-web=\"transient\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ><template-header doc-container=\"header\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ></template-header><span class=\"srl-category-accordion__icon\"\n data-remove-from-web=\"complete\"\n data-remove-from-pdf=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xbrl=\"complete\"\n ></span></div></div></div><div class=\"srl-category-accordion__content\"\n data-remove-from-web=\"transient\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ><template-content class=\"srl-category-accordion__content-inner\" doc-container=\"content\"\n data-remove-from-pdf=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xbrl=\"transient\"\n ></template-content></div></div></srl-ld-accordion>"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"name": "pdf-pagebreak",
|
|
1169
|
+
"label": "PDF page break",
|
|
1170
|
+
"html": "<div\n class=\"srl-pdf-pagebreak srl-editor-component\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><span class=\"srl-pdf-pagebreak__editor-text srl-editor-component__text\" data-remove-from-pdf=\"complete\">PDF page break</span></div>"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "pdf-column-container",
|
|
1174
|
+
"label": "PDF column container",
|
|
1175
|
+
"properties": [
|
|
1176
|
+
"column-behaviour",
|
|
1177
|
+
"width-reduced"
|
|
1178
|
+
],
|
|
1179
|
+
"html": "<div\n class=\"srl-grid srl-pdf-column-container\"\n data-remove-from-web=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xhtml=\"transient\"\n><div\n class=\"srl-grid__inner\"\n data-remove-from-web=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xhtml=\"transient\"\n ><div\n class=\"srl-pdf-column-container__content\"\n data-remove-from-web=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xhtml=\"transient\"\n doc-container=\"column-container\"\n ></div></div></div>"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"name": "pdf-columnbreak",
|
|
1183
|
+
"label": "PDF column break",
|
|
1184
|
+
"allowedParents": [
|
|
1185
|
+
"pdf-column-container"
|
|
1186
|
+
],
|
|
1187
|
+
"html": "<div\n class=\"srl-pdf-columnbreak srl-editor-component\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><span class=\"srl-pdf-columnbreak__editor-text srl-editor-component__text\" data-remove-from-pdf=\"complete\">PDF column break</span></div>"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"name": "pdf-publication-title",
|
|
1191
|
+
"label": "PDF publication title",
|
|
1192
|
+
"html": "<p\n class=\"srl-pdf-publication-title srl-editor-component\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><span class=\"srl-pdf-publication-title__text srl-editor-component__text\" doc-editable=\"pdf-publication-titletext\">Publication title</span></p>"
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"name": "pdf-chapter-title",
|
|
1196
|
+
"label": "PDF chapter title",
|
|
1197
|
+
"html": "<p\n class=\"srl-pdf-chapter-title srl-editor-component\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><span class=\"srl-pdf-chapter-title__text srl-editor-component__text\" doc-editable=\"pdf-chapter-title-text\">Chapter title</span></p>"
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"name": "pdf-chapter-navigation-container",
|
|
1201
|
+
"label": "PDF chapter navigation container",
|
|
1202
|
+
"directives": {
|
|
1203
|
+
"pdf-chapter-navigation-list": {
|
|
1204
|
+
"allowedChildren": [
|
|
1205
|
+
"pdf-chapter-navigation-item"
|
|
1206
|
+
],
|
|
1207
|
+
"defaultComponents": {
|
|
1208
|
+
"paragraph": "pdf-chapter-navigation-item"
|
|
1209
|
+
},
|
|
1210
|
+
"defaultContent": [
|
|
1211
|
+
{
|
|
1212
|
+
"component": "pdf-chapter-navigation-item"
|
|
1213
|
+
}
|
|
1214
|
+
]
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"html": "<div\n class=\"srl-chapter-navigation srl-editor-component\"\n data-is-chapter-override=\"true\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><ol\n class=\"srl-chapter-navigation__list\"\n doc-container=\"pdf-chapter-navigation-list\"\n ></ol></div>"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "pdf-chapter-navigation-item",
|
|
1221
|
+
"label": "PDF chapter navigation item",
|
|
1222
|
+
"properties": [
|
|
1223
|
+
"pdf-chapter-navigation-item-current"
|
|
1224
|
+
],
|
|
1225
|
+
"allowedParents": [
|
|
1226
|
+
"pdf-chapter-navigation-container"
|
|
1227
|
+
],
|
|
1228
|
+
"html": "<li\n class=\"srl-chapter-navigation__list-item\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><a class=\"srl-chapter-navigation__link\" doc-link=\"href\" doc-editable=\"pdf-chapter-navigation-item-text\">Chapter Title</a></li>"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"name": "pdf-cover",
|
|
1232
|
+
"label": "PDF cover",
|
|
1233
|
+
"properties": [
|
|
1234
|
+
"invert-cover"
|
|
1235
|
+
],
|
|
1236
|
+
"directives": {
|
|
1237
|
+
"show-logo": {
|
|
1238
|
+
"type": "toggle",
|
|
1239
|
+
"label": "Show logo",
|
|
1240
|
+
"default": false
|
|
1241
|
+
},
|
|
1242
|
+
"show-main-title": {
|
|
1243
|
+
"type": "toggle",
|
|
1244
|
+
"label": "Show main title",
|
|
1245
|
+
"default": true
|
|
1246
|
+
},
|
|
1247
|
+
"show-sub-title": {
|
|
1248
|
+
"type": "toggle",
|
|
1249
|
+
"label": "Show sub title",
|
|
1250
|
+
"default": false
|
|
1251
|
+
},
|
|
1252
|
+
"cover": {
|
|
1253
|
+
"imageRatios": [
|
|
1254
|
+
"a4"
|
|
1255
|
+
],
|
|
1256
|
+
"allowOriginalRatio": false
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
"html": "<div\n class=\"srl-pdf-cover\"\n doc-image=\"cover\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><div class=\"srl-pdf-cover__content\"><div class=\"srl-pdf-cover__top\"><div class=\"srl-pdf-cover__logo-container\" doc-toggle=\"show-logo\"><img class=\"srl-pdf-cover__logo\" doc-image=\"logo\" /></div></div><div class=\"srl-pdf-cover__bottom\"><h1\n class=\"srl-title-h1\"\n doc-editable=\"pdf-cover-main-title\"\n doc-toggle=\"show-main-title\"\n >Annual Report 2050</h1><h2\n class=\"srl-title-h2\"\n doc-editable=\"pdf-cover-sub-title\"\n doc-toggle=\"show-sub-title\"\n >Committed to continuous improvement</h2></div></div></div>"
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"name": "pdf-landscape-container",
|
|
1263
|
+
"label": "PDF landscape container",
|
|
1264
|
+
"properties": [
|
|
1265
|
+
"page-size"
|
|
1266
|
+
],
|
|
1267
|
+
"html": "<div\n class=\"srl-pdf-landscape-container srl-nested-container\"\n data-remove-from-web=\"transient\"\n data-remove-from-word=\"transient\"\n data-remove-from-xhtml=\"transient\"\n doc-container=\"container\"\n></div>"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"name": "pdf-toc-page",
|
|
1271
|
+
"label": "ToC page",
|
|
1272
|
+
"properties": [
|
|
1273
|
+
"pdf-hide-paging-publication-chapter-title",
|
|
1274
|
+
"toc-page-type"
|
|
1275
|
+
],
|
|
1276
|
+
"directives": {
|
|
1277
|
+
"toc": {
|
|
1278
|
+
"allowedChildren": [
|
|
1279
|
+
"pdf-toc-item-title",
|
|
1280
|
+
"pdf-toc-item"
|
|
1281
|
+
],
|
|
1282
|
+
"defaultComponents": {
|
|
1283
|
+
"paragraph": "pdf-toc-item"
|
|
1284
|
+
},
|
|
1285
|
+
"defaultContent": [
|
|
1286
|
+
{
|
|
1287
|
+
"component": "pdf-toc-item"
|
|
1288
|
+
}
|
|
1289
|
+
]
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1292
|
+
"html": "<div\n class=\"srl-pdf-toc-page\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n data-is-toc-page=\"true\"\n><div class=\"srl-pdf-toc-page__inner\"><div class=\"srl-pdf-toc-page__title\" doc-editable=\"pdf-toc-page-title\">Chapter title</div><div class=\"srl-pdf-toc-page__toc-container\" doc-container=\"toc\" data-is-toc-container=\"true\"></div></div></div>"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"name": "pdf-toc-item-title",
|
|
1296
|
+
"label": "ToC item title",
|
|
1297
|
+
"allowedParents": [
|
|
1298
|
+
"pdf-toc-page"
|
|
1299
|
+
],
|
|
1300
|
+
"html": "<div\n class=\"srl-pdf-toc-item-title\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n doc-editable=\"pdf-toc-item-title-text\"\n>Chapter title</div>"
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"name": "pdf-toc-item",
|
|
1304
|
+
"label": "ToC item",
|
|
1305
|
+
"properties": [
|
|
1306
|
+
"toc-title"
|
|
1307
|
+
],
|
|
1308
|
+
"allowedParents": [
|
|
1309
|
+
"pdf-toc-page"
|
|
1310
|
+
],
|
|
1311
|
+
"directives": {
|
|
1312
|
+
"pdf-toc-item-number": {
|
|
1313
|
+
"plainText": true
|
|
1314
|
+
},
|
|
1315
|
+
"pdf-toc-item-text": {
|
|
1316
|
+
"plainText": true
|
|
1317
|
+
}
|
|
1318
|
+
},
|
|
1319
|
+
"html": "<a\n class=\"srl-pdf-toc__item\"\n doc-link=\"href\"\n data-page-number=\"\"\n data-is-toc-item=\"true\"\n data-remove-from-web=\"complete\"\n data-remove-from-word=\"complete\"\n data-remove-from-xhtml=\"complete\"\n><div class=\"srl-pdf-toc__text\" doc-editable=\"pdf-toc-item-text\" data-is-toc-text=\"true\">Article title</div><div class=\"srl-pdf-toc__page-number\" doc-editable=\"pdf-toc-item-number\" data-is-toc-number=\"true\">1</div></a>"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "download-center",
|
|
1323
|
+
"label": "Download center",
|
|
1324
|
+
"html": "<srl-ld-download-center><div class=\"srl-download-center\" data-remove-from-web=\"complete\"><span class=\"srl-download-center__editor-text\" data-remove-from-pdf=\"complete\">Placeholder for download list</span></div></srl-ld-download-center>"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"name": "search",
|
|
1328
|
+
"label": "Search",
|
|
1329
|
+
"html": "<srl-ld-search use-auto-search use-more-results><div class=\"srl-search\" data-remove-from-web=\"complete\"><span class=\"srl-search__editor-text\">Placeholder for search form</span></div></srl-ld-search>"
|
|
1330
|
+
}
|
|
166
1331
|
]
|
|
167
|
-
}
|
|
1332
|
+
}
|