@simple-reporting/base 1.0.37 → 1.0.39
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 -38
- 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 +5 -4
- 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 +5 -4
- 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 +5 -4
- 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
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-paragraph', '*'): 200,
|
|
3
|
+
('.srl-paragraph', '.srl-paragraph'): 200,
|
|
4
|
+
('.srl-paragraph', '.srl-paragraph-strong'): 200,
|
|
5
|
+
('.srl-paragraph', '.srl-list-group'): 200,
|
|
6
|
+
('.srl-paragraph', '.srl-footnote'): 200,
|
|
7
|
+
('.srl-paragraph', '.srl-table'): 400,
|
|
8
|
+
('.srl-paragraph', '.srl-signature'): 400,
|
|
9
|
+
('.srl-paragraph', '.srl-button-container'): 400,
|
|
10
|
+
('.srl-paragraph', '.srl-columns'): 400,
|
|
11
|
+
('.srl-paragraph', '.srl-quote'): 800,
|
|
12
|
+
('.srl-paragraph', '.srl-image'): 800,
|
|
13
|
+
('.srl-paragraph', '.srl-video'): 800,
|
|
14
|
+
('.srl-paragraph', '.srl-title-h2'): 800,
|
|
15
|
+
('.srl-paragraph', '.srl-title-h3'): 800,
|
|
16
|
+
('.srl-paragraph', '.srl-title-h4'): 400,
|
|
17
|
+
('.srl-paragraph', '.srl-title-h5'): 200,
|
|
18
|
+
('.srl-paragraph', '.srl-title-h6'): 200,
|
|
19
|
+
('.srl-paragraph', '.srl-pdf-pagebreak'): 800,
|
|
20
|
+
('.srl-paragraph', '.srl-anchor'): 800,
|
|
21
|
+
('.srl-paragraph', '.srl-background-container'): 1600,
|
|
22
|
+
)
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
2
|
@use "sass:map";
|
|
3
|
+
@use "@/assets/scss/margins";
|
|
4
|
+
@use "spacing-variations";
|
|
3
5
|
|
|
4
6
|
$quote-open: map.get(srl.$meta, quote, quote-open);
|
|
5
7
|
$quote-close: map.get(srl.$meta, quote, quote-close);
|
|
6
8
|
|
|
7
|
-
|
|
8
9
|
.srl-quote {
|
|
9
10
|
align-items: center;
|
|
10
11
|
row-gap: srl.spacer-get(400);
|
|
11
12
|
}
|
|
12
13
|
|
|
14
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
15
|
+
|
|
13
16
|
.srl-quote__img {
|
|
14
17
|
border-radius: 50%;
|
|
15
18
|
}
|
|
@@ -15,26 +15,20 @@
|
|
|
15
15
|
|
|
16
16
|
.srl-quote__figure {
|
|
17
17
|
.srl-quote--with-image & {
|
|
18
|
-
|
|
19
|
-
margin-right: srl.grid-get-gutter-column-gap();
|
|
20
|
-
width: srl.grid-calculate-pdf-col-span-minus-one-gutter(2);
|
|
18
|
+
@extend %srl-quote-with-image-image-regular-width;
|
|
21
19
|
}
|
|
22
20
|
|
|
23
21
|
.srl-quote--with-image.srl-wide-width & {
|
|
24
|
-
|
|
25
|
-
margin-right: 0;
|
|
26
|
-
@include srl.grid-pdf-flex-col(2);
|
|
22
|
+
@extend %srl-quote-with-image-image-wide-width;
|
|
27
23
|
}
|
|
28
24
|
}
|
|
29
25
|
|
|
30
26
|
.srl-quote__text {
|
|
31
27
|
.srl-quote--with-image & {
|
|
32
|
-
|
|
28
|
+
@extend %srl-quote-with-image-text-regular-width;
|
|
33
29
|
}
|
|
34
30
|
|
|
35
31
|
.srl-quote--with-image.srl-wide-width & {
|
|
36
|
-
@
|
|
32
|
+
@extend %srl-quote-with-image-text-wide-width;
|
|
37
33
|
}
|
|
38
34
|
}
|
|
39
|
-
|
|
40
|
-
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-footnote', '*'): 200,
|
|
3
|
+
('.srl-footnote', '.srl-paragraph'): 200,
|
|
4
|
+
('.srl-footnote', '.srl-paragraph-strong'): 200,
|
|
5
|
+
('.srl-footnote', '.srl-list-group'): 200,
|
|
6
|
+
('.srl-footnote', '.srl-footnote'): 200,
|
|
7
|
+
('.srl-footnote', '.srl-table'): 400,
|
|
8
|
+
('.srl-footnote', '.srl-signature'): 400,
|
|
9
|
+
('.srl-footnote', '.srl-button-container'): 400,
|
|
10
|
+
('.srl-footnote', '.srl-columns'): 400,
|
|
11
|
+
('.srl-footnote', '.srl-quote'): 800,
|
|
12
|
+
('.srl-footnote', '.srl-image'): 800,
|
|
13
|
+
('.srl-footnote', '.srl-video'): 800,
|
|
14
|
+
('.srl-footnote', '.srl-title-h2'): 800,
|
|
15
|
+
('.srl-footnote', '.srl-title-h3'): 800,
|
|
16
|
+
('.srl-footnote', '.srl-title-h4'): 400,
|
|
17
|
+
('.srl-footnote', '.srl-title-h5'): 200,
|
|
18
|
+
('.srl-footnote', '.srl-title-h6'): 200,
|
|
19
|
+
('.srl-footnote', '.srl-pdf-pagebreak'): 800,
|
|
20
|
+
('.srl-footnote', '.srl-anchor'): 800,
|
|
21
|
+
('.srl-footnote', '.srl-background-container'): 1600,
|
|
22
|
+
)
|
|
@@ -1,8 +1,35 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
-
@use
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
@use "@/assets/scss/margins";
|
|
4
|
+
@use "spacing-variations";
|
|
5
|
+
|
|
6
|
+
$number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width));
|
|
7
|
+
|
|
8
|
+
@if srl.$system-build == "pdf" {
|
|
9
|
+
$number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width-pdf));
|
|
10
|
+
}
|
|
3
11
|
|
|
4
12
|
.srl-footnote:not(.srl-grid),
|
|
5
13
|
.srl-footnote__item {
|
|
6
14
|
display: flex;
|
|
7
15
|
@include srl.typography-footnote-text();
|
|
8
16
|
}
|
|
17
|
+
|
|
18
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
19
|
+
|
|
20
|
+
.srl-footnote__key,
|
|
21
|
+
.srl-footnote__number {
|
|
22
|
+
width: $number-width;
|
|
23
|
+
|
|
24
|
+
&:empty {
|
|
25
|
+
width: 0;
|
|
26
|
+
|
|
27
|
+
& + .srl-footnote__text {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.srl-footnote__text {
|
|
34
|
+
width: calc(100% - #{$number-width});
|
|
35
|
+
}
|
|
@@ -1,21 +1 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
-
@use 'sass:map';
|
|
3
|
-
|
|
4
|
-
$number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width));
|
|
5
|
-
|
|
6
|
-
.srl-footnote__key,
|
|
7
|
-
.srl-footnote__number {
|
|
8
|
-
width: $number-width;
|
|
9
|
-
|
|
10
|
-
&:empty {
|
|
11
|
-
width: 0;
|
|
12
|
-
|
|
13
|
-
& + .srl-footnote__text {
|
|
14
|
-
width: 100%;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.srl-footnote__text {
|
|
20
|
-
width: calc(100% - #{$number-width});
|
|
21
|
-
}
|
|
@@ -1 +1,26 @@
|
|
|
1
|
-
@use '
|
|
1
|
+
@use 'srl';
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
@use 'general';
|
|
4
|
+
|
|
5
|
+
$number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width));
|
|
6
|
+
|
|
7
|
+
.srl-table-footnote-item {
|
|
8
|
+
display: flex;
|
|
9
|
+
@include srl.typography-footnote-text();
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.srl-table-footnote-id {
|
|
13
|
+
width: $number-width;
|
|
14
|
+
|
|
15
|
+
&:empty {
|
|
16
|
+
width: 0;
|
|
17
|
+
|
|
18
|
+
& + .srl-table-footnote-text {
|
|
19
|
+
width: 100%;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.srl-table-footnote-text {
|
|
25
|
+
width: calc(100% - #{$number-width});
|
|
26
|
+
}
|
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
"directives": {
|
|
8
8
|
"list": {
|
|
9
9
|
"allowedChildren": [
|
|
10
|
-
"list-item"
|
|
10
|
+
"list-item-unordered-list"
|
|
11
11
|
],
|
|
12
12
|
"defaultComponents": {
|
|
13
|
-
"paragraph": "list-item"
|
|
13
|
+
"paragraph": "list-item-unordered-list"
|
|
14
14
|
},
|
|
15
15
|
"defaultContent": [
|
|
16
16
|
{
|
|
17
|
-
"component": "list-item"
|
|
17
|
+
"component": "list-item-unordered-list"
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-list-group', '*'): 200,
|
|
3
|
+
('.srl-list-group', '.srl-paragraph'): 200,
|
|
4
|
+
('.srl-list-group', '.srl-paragraph-strong'): 200,
|
|
5
|
+
('.srl-list-group', '.srl-list-group'): 200,
|
|
6
|
+
('.srl-list-group', '.srl-footnote'): 200,
|
|
7
|
+
('.srl-list-group', '.srl-table'): 400,
|
|
8
|
+
('.srl-list-group', '.srl-signature'): 400,
|
|
9
|
+
('.srl-list-group', '.srl-button-container'): 400,
|
|
10
|
+
('.srl-list-group', '.srl-columns'): 400,
|
|
11
|
+
('.srl-list-group', '.srl-quote'): 800,
|
|
12
|
+
('.srl-list-group', '.srl-image'): 800,
|
|
13
|
+
('.srl-list-group', '.srl-video'): 800,
|
|
14
|
+
('.srl-list-group', '.srl-title-h2'): 800,
|
|
15
|
+
('.srl-list-group', '.srl-title-h3'): 800,
|
|
16
|
+
('.srl-list-group', '.srl-title-h4'): 400,
|
|
17
|
+
('.srl-list-group', '.srl-title-h5'): 200,
|
|
18
|
+
('.srl-list-group', '.srl-title-h6'): 200,
|
|
19
|
+
('.srl-list-group', '.srl-pdf-pagebreak'): 800,
|
|
20
|
+
('.srl-list-group', '.srl-anchor'): 800,
|
|
21
|
+
('.srl-list-group', '.srl-background-container'): 1600,
|
|
22
|
+
)
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use 'web';
|
|
2
3
|
@use 'sass:map';
|
|
3
4
|
|
|
4
5
|
$number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width-pdf));
|
|
@@ -7,6 +8,7 @@ $number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width-pd
|
|
|
7
8
|
margin-left: $number-width;
|
|
8
9
|
}
|
|
9
10
|
|
|
10
|
-
.srl-list-group__list
|
|
11
|
+
.srl-list-group__list,
|
|
12
|
+
.srl-list-group__sub-list {
|
|
11
13
|
-ro-pdf-tag-type: L;
|
|
12
14
|
}
|
|
@@ -1,2 +1,16 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
.srl-list-group__list {
|
|
4
|
+
list-style: none;
|
|
5
|
+
padding: 0;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.srl-list-group__list--ol,
|
|
9
|
+
.srl-list-group__sub-list--ol {
|
|
10
|
+
counter-reset: ordered-list;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.srl-list-group__list--alphanumeric,
|
|
14
|
+
.srl-list-group__sub-list--alphanumeric {
|
|
15
|
+
counter-reset: alphanumeric-list;
|
|
16
|
+
}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
@use 'general';
|
|
1
|
+
@use 'general';
|
|
2
|
+
@use 'web';
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"properties": ["pdf-spacer"],
|
|
5
5
|
"directives": {
|
|
6
6
|
"list": {
|
|
7
|
-
"allowedChildren": ["list-item"],
|
|
7
|
+
"allowedChildren": ["list-item-ordered-list"],
|
|
8
8
|
"defaultComponents": {
|
|
9
|
-
"paragraph": "list-item"
|
|
9
|
+
"paragraph": "list-item-ordered-list"
|
|
10
10
|
},
|
|
11
11
|
"defaultContent": [
|
|
12
12
|
{
|
|
13
|
-
"component": "list-item"
|
|
13
|
+
"component": "list-item-ordered-list"
|
|
14
14
|
}
|
|
15
15
|
]
|
|
16
16
|
}
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
"properties": ["pdf-spacer"],
|
|
5
5
|
"directives": {
|
|
6
6
|
"list": {
|
|
7
|
-
"allowedChildren": ["list-item"],
|
|
7
|
+
"allowedChildren": ["list-item-alphanumeric-list"],
|
|
8
8
|
"defaultComponents": {
|
|
9
|
-
"paragraph": "list-item"
|
|
9
|
+
"paragraph": "list-item-alphanumeric-list"
|
|
10
10
|
},
|
|
11
11
|
"defaultContent": [
|
|
12
12
|
{
|
|
13
|
-
"component": "list-item"
|
|
13
|
+
"component": "list-item-alphanumeric-list"
|
|
14
14
|
}
|
|
15
15
|
]
|
|
16
16
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "list-item-unordered-list",
|
|
3
|
+
"label": "List item (unordered list)",
|
|
4
|
+
"allowedParents": ["unordered-list", "list-item-unordered-list"],
|
|
5
|
+
"directives": {
|
|
6
|
+
"add-nested-list": {
|
|
7
|
+
"type": "toggle",
|
|
8
|
+
"label": "Add nested list container",
|
|
9
|
+
"default": false
|
|
10
|
+
},
|
|
11
|
+
"sub-list": {
|
|
12
|
+
"allowedChildren": ["list-item-unordered-list"],
|
|
13
|
+
"defaultComponents": {
|
|
14
|
+
"paragraph": "list-item-unordered-list"
|
|
15
|
+
},
|
|
16
|
+
"defaultContent": [
|
|
17
|
+
{
|
|
18
|
+
"component": "list-item-unordered-list"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<li class="srl-list-group__item srl-list-group__item--ul">
|
|
2
|
+
<div class="srl-list-group__item-inner">
|
|
3
|
+
<span class="srl-list-group__item-text srl-linkable" doc-editable="list-text">List-Item</span>
|
|
4
|
+
</div>
|
|
5
|
+
<ul class="srl-list-group__sub-list srl-list-group__sub-list--ul" doc-container="sub-list" doc-toggle="add-nested-list">
|
|
6
|
+
|
|
7
|
+
</ul>
|
|
8
|
+
</li>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@use 'srl';
|
|
2
|
+
@use "sass:map";
|
|
3
|
+
@use "@/assets/scss/margins";
|
|
4
|
+
@use "spacing-variations";
|
|
5
|
+
|
|
6
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
7
|
+
|
|
8
|
+
.srl-list-group__item-inner {
|
|
9
|
+
@include srl.typography-list();
|
|
10
|
+
|
|
11
|
+
.srl-footnote-container .srl-table-list & {
|
|
12
|
+
@include srl.typography-footnote-text();
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use 'web';
|
|
2
3
|
@use "sass:map";
|
|
3
4
|
|
|
4
5
|
$marker-width: srl.system-size-unit(map.get(srl.$meta, list, marker-width-pdf));
|
|
5
6
|
|
|
6
|
-
.srl-list-group__item {
|
|
7
|
+
.srl-list-group__item-inner {
|
|
7
8
|
-ro-pdf-tag-type: LI;
|
|
8
9
|
|
|
9
10
|
&:before {
|
|
@@ -16,3 +17,8 @@ $marker-width: srl.system-size-unit(map.get(srl.$meta, list, marker-width-pdf));
|
|
|
16
17
|
width: calc(100% - #{$marker-width});
|
|
17
18
|
-ro-pdf-tag-type: LBody;
|
|
18
19
|
}
|
|
20
|
+
|
|
21
|
+
.srl-list-group__sub-list {
|
|
22
|
+
-ro-pdf-tag-type: L;
|
|
23
|
+
padding: 0 0 0 $marker-width;
|
|
24
|
+
}
|
|
@@ -2,19 +2,17 @@
|
|
|
2
2
|
@use "sass:map";
|
|
3
3
|
|
|
4
4
|
$marker-width: srl.system-size-unit(map.get(srl.$meta, list, marker-width));
|
|
5
|
+
$number-width: srl.system-size-unit(map.get(srl.$meta, footnote, number-width));
|
|
5
6
|
$unordered-marker: "–";
|
|
6
7
|
$ordered-marker-after: ".";
|
|
7
8
|
$alphanumeric-marker-after: ")";
|
|
8
9
|
|
|
9
|
-
.srl-list-group__item {
|
|
10
|
+
.srl-list-group__item-inner {
|
|
10
11
|
display: flex;
|
|
11
|
-
@include srl.typography-list();
|
|
12
|
-
|
|
13
|
-
.srl-footnote-container .srl-table-list & {
|
|
14
|
-
@include srl.typography-footnote-text();
|
|
15
|
-
}
|
|
16
12
|
|
|
17
13
|
&:before {
|
|
14
|
+
width: $marker-width;
|
|
15
|
+
|
|
18
16
|
.srl-table-list--ul &,
|
|
19
17
|
.srl-list-group--ul & {
|
|
20
18
|
content: "#{$unordered-marker}";
|
|
@@ -33,4 +31,17 @@ $alphanumeric-marker-after: ")";
|
|
|
33
31
|
content: counter(alphanumeric-list, lower-alpha) $alphanumeric-marker-after;
|
|
34
32
|
}
|
|
35
33
|
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.srl-list-group__item-text {
|
|
37
|
+
width: calc(100% - #{$marker-width});
|
|
38
|
+
|
|
39
|
+
.srl-table-list--ul &,
|
|
40
|
+
.srl-list-group--ul & {
|
|
41
|
+
width: calc(100% - #{$marker-width} - #{$number-width});
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.srl-list-group__sub-list {
|
|
46
|
+
list-style: none;
|
|
36
47
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "list-item-ordered-list",
|
|
3
|
+
"label": "List item (numeric list)",
|
|
4
|
+
"allowedParents": ["ordered-list", "list-item-ordered-list"],
|
|
5
|
+
"directives": {
|
|
6
|
+
"add-nested-list": {
|
|
7
|
+
"type": "toggle",
|
|
8
|
+
"label": "Add nested list container",
|
|
9
|
+
"default": false
|
|
10
|
+
},
|
|
11
|
+
"sub-list": {
|
|
12
|
+
"allowedChildren": ["list-item-ordered-list"],
|
|
13
|
+
"defaultComponents": {
|
|
14
|
+
"paragraph": "list-item-ordered-list"
|
|
15
|
+
},
|
|
16
|
+
"defaultContent": [
|
|
17
|
+
{
|
|
18
|
+
"component": "list-item-ordered-list"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<li class="srl-list-group__item srl-list-group__item--ol">
|
|
2
|
+
<div class="srl-list-group__item-inner">
|
|
3
|
+
<span class="srl-list-group__item-text srl-linkable" doc-editable="list-text">List-Item</span>
|
|
4
|
+
</div>
|
|
5
|
+
<ol class="srl-list-group__sub-list srl-list-group__sub-list--ol" doc-container="sub-list" doc-toggle="add-nested-list">
|
|
6
|
+
|
|
7
|
+
</ol>
|
|
8
|
+
</li>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "list-item-alphanumeric-list",
|
|
3
|
+
"label": "List item (alphanumeric list)",
|
|
4
|
+
"allowedParents": ["alphanumeric-list", "list-item-alphanumeric-list"],
|
|
5
|
+
"directives": {
|
|
6
|
+
"add-nested-list": {
|
|
7
|
+
"type": "toggle",
|
|
8
|
+
"label": "Add nested list container",
|
|
9
|
+
"default": false
|
|
10
|
+
},
|
|
11
|
+
"sub-list": {
|
|
12
|
+
"allowedChildren": ["list-item-alphanumeric-list"],
|
|
13
|
+
"defaultComponents": {
|
|
14
|
+
"paragraph": "list-item-alphanumeric-list"
|
|
15
|
+
},
|
|
16
|
+
"defaultContent": [
|
|
17
|
+
{
|
|
18
|
+
"component": "list-item-alphanumeric-list"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<li class="srl-list-group__item srl-list-group__item--alphanumeric">
|
|
2
|
+
<div class="srl-list-group__item-inner">
|
|
3
|
+
<span class="srl-list-group__item-text srl-linkable" doc-editable="list-text">List-Item</span>
|
|
4
|
+
</div>
|
|
5
|
+
<ol class="srl-list-group__sub-list srl-list-group__sub-list--alphanumeric" doc-container="sub-list" doc-toggle="add-nested-list">
|
|
6
|
+
|
|
7
|
+
</ol>
|
|
8
|
+
</li>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-table', '*'): 400,
|
|
3
|
+
('.srl-table', '.srl-button-container'): 400,
|
|
4
|
+
('.srl-table', '.srl-columns'): 400,
|
|
5
|
+
('.srl-table', '.srl-table'): 800,
|
|
6
|
+
('.srl-table', '.srl-title-h2'): 800,
|
|
7
|
+
('.srl-table', '.srl-title-h3'): 800,
|
|
8
|
+
('.srl-table', '.srl-title-h4'): 800,
|
|
9
|
+
('.srl-table', '.srl-image'): 800,
|
|
10
|
+
('.srl-table', '.srl-video'): 800,
|
|
11
|
+
('.srl-table-container', '*'): 200,
|
|
12
|
+
('.srl-table > table', '*'): 200,
|
|
13
|
+
('.srl-table-container', '*:empty'): 0,
|
|
14
|
+
('.srl-table > table', '*:empty'): 0,
|
|
15
|
+
('.srl-table', '.srl-pdf-pagebreak'): 800,
|
|
16
|
+
('.srl-table', '.srl-anchor'): 800,
|
|
17
|
+
('.srl-table', '.srl-quote'): 800,
|
|
18
|
+
('.srl-table', '.srl-background-container'): 1600,
|
|
19
|
+
)
|