@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,5 +1,6 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
-
@use "@/assets/scss/
|
|
2
|
+
@use "@/assets/scss/margins";
|
|
3
|
+
@use "spacing-variations";
|
|
3
4
|
|
|
4
5
|
.srl-grid--media {
|
|
5
6
|
.srl-full-width & {
|
|
@@ -7,10 +8,13 @@
|
|
|
7
8
|
}
|
|
8
9
|
}
|
|
9
10
|
|
|
11
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
12
|
+
|
|
10
13
|
.srl-image__caption {
|
|
11
14
|
@include srl.spacer-margin-top(100);
|
|
12
15
|
}
|
|
13
16
|
|
|
14
17
|
.srl-image__caption-text {
|
|
15
18
|
@include srl.typography-caption();
|
|
16
|
-
|
|
19
|
+
@extend %srl-regular-width;
|
|
20
|
+
}
|
|
@@ -1,11 +1,30 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
+
@use "@/assets/scss/margins";
|
|
3
|
+
@use "spacing-variations";
|
|
4
|
+
|
|
5
|
+
.srl-grid--media {
|
|
6
|
+
.srl-full-width & {
|
|
7
|
+
@extend %srl-grid-reset;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
2
10
|
|
|
3
11
|
.srl-video {
|
|
4
12
|
display: block;
|
|
5
13
|
}
|
|
6
14
|
|
|
15
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
16
|
+
|
|
17
|
+
.srl-video__thumbnail {
|
|
18
|
+
@extend %srl-regular-width;
|
|
19
|
+
|
|
20
|
+
.srl-wide-width & {
|
|
21
|
+
@extend %srl-wide-width;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
7
25
|
.srl-video__video-link-container {
|
|
8
26
|
@include srl.spacer-margin-top(100);
|
|
27
|
+
@extend %srl-regular-width;
|
|
9
28
|
}
|
|
10
29
|
|
|
11
30
|
.srl-video__video-link {
|
|
@@ -13,19 +13,9 @@ $page-margin-left: srl.system-size-unit(map.get(srl.$meta, pdf, margin, left));
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.srl-video__thumbnail {
|
|
16
|
-
@include srl.grid-pdf-flex-col(6);
|
|
17
|
-
|
|
18
|
-
.srl-wide-width & {
|
|
19
|
-
@include srl.grid-pdf-flex-col(8);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
16
|
.srl-full-width & {
|
|
23
17
|
width: 210mm;
|
|
24
18
|
min-width: 210mm;
|
|
25
19
|
}
|
|
26
20
|
}
|
|
27
21
|
|
|
28
|
-
.srl-video__video-link-container {
|
|
29
|
-
@include srl.grid-pdf-flex-col(6);
|
|
30
|
-
}
|
|
31
|
-
|
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
@use "srl";
|
|
2
|
-
@use "@/assets/scss/placeholders";
|
|
3
|
-
|
|
4
|
-
.srl-grid--media {
|
|
5
|
-
.srl-full-width & {
|
|
6
|
-
@extend %srl-grid-reset;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
2
|
|
|
10
3
|
.srl-video__inner {
|
|
11
4
|
position: relative;
|
|
@@ -73,10 +66,6 @@
|
|
|
73
66
|
}
|
|
74
67
|
}
|
|
75
68
|
|
|
76
|
-
.srl-video__video-link-container {
|
|
77
|
-
@extend %srl-regular-width;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
69
|
.srl-video__started {
|
|
81
70
|
.srl-video__thumbnail,
|
|
82
71
|
.srl-video__play {
|
|
@@ -1,89 +1,28 @@
|
|
|
1
1
|
@use "srl";
|
|
2
|
-
@use "
|
|
3
|
-
|
|
4
|
-
.srl-button {
|
|
5
|
-
display: flex;
|
|
6
|
-
gap: srl.spacer-get(100);
|
|
7
|
-
align-items: center;
|
|
8
|
-
padding: srl.spacer-get(200);
|
|
9
|
-
background-color: srl.colors-white-1000();
|
|
10
|
-
border: 1px solid srl.colors-primary-1000();
|
|
11
|
-
text-decoration: none;
|
|
12
|
-
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
|
|
13
|
-
border-radius: srl.system-size-unit(24);
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
@include srl.typography-button-text();
|
|
16
|
-
|
|
17
|
-
@media (prefers-reduced-motion: reduce) {
|
|
18
|
-
transition-duration: 0s;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
&.srl-has-icon,
|
|
22
|
-
[class*="-after"] &,
|
|
23
|
-
.srl-header__meta-navigation &,
|
|
24
|
-
&[class*="-before"],
|
|
25
|
-
&[class*="-after"] {
|
|
26
|
-
padding: srl.system-size-unit(11) srl.spacer-get(200);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
[class*="-after"] &,
|
|
30
|
-
&[class*="-after"] {
|
|
31
|
-
flex-direction: row-reverse;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&[aria-expanded="true"] {
|
|
35
|
-
border-bottom: none;
|
|
36
|
-
border-bottom-left-radius: 0;
|
|
37
|
-
border-bottom-right-radius: 0;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
&:hover {
|
|
41
|
-
background-color: srl.colors-primary-1000();
|
|
42
|
-
//border-color: srl.colors-white-1000();
|
|
43
|
-
color: srl.colors-white-1000();
|
|
44
|
-
|
|
45
|
-
&[aria-expanded="true"] {
|
|
46
|
-
border-color: srl.colors-primary-1000();
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.srl-bg-primary-1000 & {
|
|
50
|
-
border-color: srl.colors-secondary-1000();
|
|
51
|
-
background-color: srl.colors-secondary-1000();
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
&:focus {
|
|
56
|
-
background-color: srl.colors-primary-1000();
|
|
57
|
-
border-color: srl.colors-primary-1000();
|
|
58
|
-
color: srl.colors-white-1000();
|
|
59
|
-
|
|
60
|
-
.srl-bg-primary-1000 & {
|
|
61
|
-
background-color: srl.colors-primary-1000();
|
|
62
|
-
border-color: srl.colors-primary-1000();
|
|
63
|
-
color: srl.colors-white-1000();
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
2
|
+
@use "srl/fa";
|
|
67
3
|
|
|
68
4
|
.srl-button__icon {
|
|
69
5
|
display: none;
|
|
70
6
|
|
|
71
|
-
[class*="srl-icon-"][class*="-before"] &,
|
|
72
|
-
[class*="srl-icon-"][class*="-after"] & {
|
|
7
|
+
[class*="srl-button-icon-"][class*="-before"] &,
|
|
8
|
+
[class*="srl-button-icon-"][class*="-after"] & {
|
|
73
9
|
display: block;
|
|
74
|
-
@extend %srl-icon;
|
|
75
|
-
|
|
10
|
+
@extend %srl-icon-base;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
[class*="srl-button-icon-"][class*="-after"] & {
|
|
14
|
+
order: 2;
|
|
76
15
|
}
|
|
77
16
|
|
|
78
|
-
.srl-icon-arrow-left-before & {
|
|
79
|
-
@
|
|
17
|
+
.srl-button-icon-arrow-left-before & {
|
|
18
|
+
@include fa.icon(chevron-left);
|
|
80
19
|
}
|
|
81
20
|
|
|
82
|
-
.srl-icon-arrow-right-after & {
|
|
83
|
-
@
|
|
21
|
+
.srl-button-icon-arrow-right-after & {
|
|
22
|
+
@include fa.icon(chevron-right);
|
|
84
23
|
}
|
|
85
24
|
|
|
86
|
-
.srl-icon-download-after & {
|
|
87
|
-
@
|
|
25
|
+
.srl-button-icon-download-after & {
|
|
26
|
+
@include fa.icon(download);
|
|
88
27
|
}
|
|
89
28
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@use "srl";
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
|
|
4
|
+
$page-margin-right: srl.system-size-unit(map.get(srl.$meta, pdf, margin, right));
|
|
5
|
+
$page-margin-left: srl.system-size-unit(map.get(srl.$meta, pdf, margin, left));
|
|
6
|
+
|
|
7
|
+
.srl-background-container {
|
|
8
|
+
box-decoration-break: clone;
|
|
9
|
+
margin-left: -$page-margin-left;
|
|
10
|
+
margin-right: -$page-margin-right;
|
|
11
|
+
padding-left: $page-margin-left;
|
|
12
|
+
padding-right: $page-margin-right;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@use "srl";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@use "pdf";
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<div class="srl-article-accordion__wrapper" doc-container="cv-content"></div>
|
|
29
29
|
</div>
|
|
30
30
|
<div class="srl-grid srl-cv__button-container" data-remove-from-pdf="complete" data-remove-from-word="complete" data-remove-from-xhtml="complete">
|
|
31
|
-
<div class="srl-grid__inner srl-
|
|
31
|
+
<div class="srl-grid__inner srl-cv__button-container-inner text-center">
|
|
32
32
|
<button type="button" class="srl-cv__button srl-article-accordion__toggle">
|
|
33
33
|
<span class="srl-cv__button-more" doc-editable="cv-text-more">
|
|
34
34
|
Read more
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
close
|
|
38
38
|
</span>
|
|
39
39
|
</button>
|
|
40
|
+
<hr class="srl-cv__divider"/>
|
|
40
41
|
</div>
|
|
41
42
|
</div>
|
|
42
43
|
</srl-article-accordion>
|
|
@@ -5,10 +5,9 @@
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.srl-cv__header-portrait {
|
|
8
|
-
|
|
9
|
-
width: srl.grid-calculate-pdf-col-span-minus-one-gutter(2);
|
|
8
|
+
@extend %srl-cv-header-portrait;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
11
|
.srl-cv__header-content {
|
|
13
|
-
|
|
12
|
+
@extend %srl-cv-header-content;
|
|
14
13
|
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
|
-
@use "@/assets/scss/placeholders";
|
|
3
2
|
|
|
4
3
|
.srl-cv__inner {
|
|
5
4
|
display: grid;
|
|
@@ -12,4 +11,21 @@
|
|
|
12
11
|
|
|
13
12
|
.srl-cv__header-content {
|
|
14
13
|
@extend %srl-cv-header-content;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.srl-cv__button-container-inner {
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.srl-cv__button {
|
|
20
|
+
@extend %srl-button;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.srl-cv__divider {
|
|
24
|
+
margin: 0;
|
|
25
|
+
padding: 0;
|
|
26
|
+
position: relative;
|
|
27
|
+
top: calc((srl.spacer-get(150) + (#{srl.typography-get-line-height(button-text)}) / 2) * -1);
|
|
28
|
+
z-index: -1;
|
|
29
|
+
border-top: 0;
|
|
30
|
+
border-bottom: 1px solid srl.colors-grey-200();
|
|
15
31
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$margins: (
|
|
2
|
+
('.srl-cv-time-span', '*'): 200,
|
|
3
|
+
('.srl-cv-time-span', '.srl-cv-time-span'): 0,
|
|
4
|
+
('.srl-cv-time-span', '.srl-cv-time-span-strong'): 0,
|
|
5
|
+
('.srl-cv-time-span', '.srl-list-group'): 200,
|
|
6
|
+
('.srl-cv-time-span', '.srl-footnote'): 200,
|
|
7
|
+
('.srl-cv-time-span', '.srl-title-h2'): 400,
|
|
8
|
+
('.srl-cv-time-span', '.srl-title-h3'): 400,
|
|
9
|
+
('.srl-cv-time-span', '.srl-title-h4'): 400,
|
|
10
|
+
('.srl-cv-time-span', '.srl-title-h5'): 400,
|
|
11
|
+
('.srl-cv-time-span', '.srl-title-h6'): 400,
|
|
12
|
+
('.srl-cv-time-span', '.srl-pdf-pagebreak'): 800,
|
|
13
|
+
('.srl-cv-time-span', '.srl-anchor'): 800,
|
|
14
|
+
)
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
@use 'srl';
|
|
2
2
|
@use "sass:map";
|
|
3
|
+
@use "@/assets/scss/margins";
|
|
4
|
+
@use "spacing-variations";
|
|
3
5
|
|
|
4
6
|
.srl-cv-time-span {
|
|
5
7
|
@include srl.typography-cv-time-span();
|
|
6
8
|
}
|
|
7
9
|
|
|
10
|
+
@include margins.srl-component-margin(spacing-variations.$margins);
|
|
11
|
+
|
|
8
12
|
.srl-cv-time-span__inner {
|
|
9
13
|
display: flex;
|
|
10
14
|
}
|
|
@@ -1,10 +1,57 @@
|
|
|
1
|
-
<srl-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
<srl-ld-accordion class="srl-category-accordion srl-category-accordion--category"
|
|
2
|
+
data-remove-from-pdf="transient"
|
|
3
|
+
data-remove-from-word="transient"
|
|
4
|
+
data-remove-from-xbrl="transient"
|
|
5
|
+
>
|
|
6
|
+
<div class="srl-category-accordion__inner"
|
|
7
|
+
data-remove-from-web="transient"
|
|
8
|
+
data-remove-from-pdf="transient"
|
|
9
|
+
data-remove-from-word="transient"
|
|
10
|
+
data-remove-from-xbrl="transient"
|
|
11
|
+
>
|
|
12
|
+
<div class="srl-category-accordion__inner-head"
|
|
13
|
+
data-remove-from-web="transient"
|
|
14
|
+
data-remove-from-pdf="transient"
|
|
15
|
+
data-remove-from-word="transient"
|
|
16
|
+
data-remove-from-xbrl="transient"
|
|
17
|
+
>
|
|
18
|
+
<div class="srl-category-accordion__head"
|
|
19
|
+
data-remove-from-web="transient"
|
|
20
|
+
data-remove-from-pdf="transient"
|
|
21
|
+
data-remove-from-word="transient"
|
|
22
|
+
data-remove-from-xbrl="transient"
|
|
23
|
+
>
|
|
24
|
+
<div class="srl-category-accordion__head--btn"
|
|
25
|
+
data-remove-from-web="transient"
|
|
26
|
+
data-remove-from-pdf="transient"
|
|
27
|
+
data-remove-from-word="transient"
|
|
28
|
+
data-remove-from-xbrl="transient"
|
|
29
|
+
>
|
|
30
|
+
<template-header doc-container="header"
|
|
31
|
+
data-remove-from-pdf="transient"
|
|
32
|
+
data-remove-from-word="transient"
|
|
33
|
+
data-remove-from-xbrl="transient"
|
|
34
|
+
></template-header>
|
|
35
|
+
<span class="srl-category-accordion__icon"
|
|
36
|
+
data-remove-from-web="complete"
|
|
37
|
+
data-remove-from-pdf="complete"
|
|
38
|
+
data-remove-from-word="complete"
|
|
39
|
+
data-remove-from-xbrl="complete"
|
|
40
|
+
></span>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
5
43
|
</div>
|
|
6
|
-
<div class="srl-
|
|
7
|
-
|
|
44
|
+
<div class="srl-category-accordion__content"
|
|
45
|
+
data-remove-from-web="transient"
|
|
46
|
+
data-remove-from-pdf="transient"
|
|
47
|
+
data-remove-from-word="transient"
|
|
48
|
+
data-remove-from-xbrl="transient"
|
|
49
|
+
>
|
|
50
|
+
<template-content class="srl-category-accordion__content-inner" doc-container="content"
|
|
51
|
+
data-remove-from-pdf="transient"
|
|
52
|
+
data-remove-from-word="transient"
|
|
53
|
+
data-remove-from-xbrl="transient"
|
|
54
|
+
></template-content>
|
|
8
55
|
</div>
|
|
9
56
|
</div>
|
|
10
|
-
</srl-
|
|
57
|
+
</srl-ld-accordion>
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { useSlots, ref, h, computed, Fragment, type VNodeArrayChildren } from 'vue'
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{
|
|
5
|
+
id?: string
|
|
6
|
+
}>()
|
|
7
|
+
|
|
8
|
+
const slots = useSlots()
|
|
9
|
+
const headerSlot = slots.header ? slots.header() : null
|
|
10
|
+
const header = ref<VNodeArrayChildren | null>(null)
|
|
11
|
+
const level = ref(0)
|
|
12
|
+
|
|
13
|
+
if (
|
|
14
|
+
headerSlot
|
|
15
|
+
&& headerSlot[0]
|
|
16
|
+
&& headerSlot[0].type
|
|
17
|
+
&& headerSlot[0].children
|
|
18
|
+
) {
|
|
19
|
+
const match = String(headerSlot[0].type).match(/^h([1-6])$/i)
|
|
20
|
+
if (match) {
|
|
21
|
+
level.value = parseInt(match[1]) - 2
|
|
22
|
+
header.value = headerSlot[0].children
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const renderedHeader = computed(() => {
|
|
27
|
+
if (!header.value) return []
|
|
28
|
+
const res = []
|
|
29
|
+
if (header.value[0].props.class.includes('__number-text-container')) {
|
|
30
|
+
header.value[0].children.forEach((item) => {
|
|
31
|
+
if (item.props.class.includes('__number')) {
|
|
32
|
+
item.props = {
|
|
33
|
+
class: 'srl-category-accordion__head-number'
|
|
34
|
+
}
|
|
35
|
+
res.push(h(Fragment, null, item as VNodeArrayChildren))
|
|
36
|
+
} else if (item.props.class.includes('__text')) {
|
|
37
|
+
item.props = {
|
|
38
|
+
class: 'srl-category-accordion__head-text'
|
|
39
|
+
}
|
|
40
|
+
res.push(h(Fragment, null, item as VNodeArrayChildren))
|
|
41
|
+
}
|
|
42
|
+
})
|
|
43
|
+
} else {
|
|
44
|
+
header.value[0].props = {
|
|
45
|
+
class: 'srl-category-accordion__head-text'
|
|
46
|
+
}
|
|
47
|
+
res.push(h(Fragment, null, header.value[0] as VNodeArrayChildren))
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
return res
|
|
51
|
+
})
|
|
52
|
+
</script>
|
|
53
|
+
|
|
54
|
+
<template>
|
|
55
|
+
<template v-if="renderedHeader.length">
|
|
56
|
+
<srl-category-accordion
|
|
57
|
+
v-slot="{ accordion }"
|
|
58
|
+
class="srl-category-accordion srl-category-accordion--category"
|
|
59
|
+
:class="`srl-category-accordion--level-${level}`"
|
|
60
|
+
:id="props.id"
|
|
61
|
+
>
|
|
62
|
+
<div class="srl-category-accordion__inner">
|
|
63
|
+
<div class="srl-category-accordion__inner-head">
|
|
64
|
+
<srl-category-accordion-toggle :accordion="accordion" class="srl-category-accordion__head" :level="level">
|
|
65
|
+
<template v-for="item in renderedHeader">
|
|
66
|
+
<component :is="item" />
|
|
67
|
+
</template>
|
|
68
|
+
<span class="srl-category-accordion__icon"></span>
|
|
69
|
+
</srl-category-accordion-toggle>
|
|
70
|
+
</div>
|
|
71
|
+
<srl-category-accordion-content :accordion="accordion" class="srl-category-accordion__content">
|
|
72
|
+
<div class="srl-category-accordion__content-inner">
|
|
73
|
+
<slot name="content"/>
|
|
74
|
+
</div>
|
|
75
|
+
</srl-category-accordion-content>
|
|
76
|
+
</div>
|
|
77
|
+
</srl-category-accordion>
|
|
78
|
+
</template>
|
|
79
|
+
<template v-else>
|
|
80
|
+
<slot name="header"/>
|
|
81
|
+
<slot name="content"/>
|
|
82
|
+
</template>
|
|
83
|
+
</template>
|