@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,61 +1,62 @@
|
|
|
1
1
|
import { type Ref } from 'vue'
|
|
2
2
|
|
|
3
|
+
export type RefSrlPageDialog = Ref<SrlPageDialog | null>
|
|
4
|
+
|
|
3
5
|
type DialogStorage = {
|
|
4
|
-
|
|
6
|
+
[key: string]: RefSrlPageDialog
|
|
5
7
|
}
|
|
6
8
|
|
|
7
9
|
type PageState = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
isMounted: boolean
|
|
11
|
+
dialogStorage: DialogStorage
|
|
12
|
+
accordionAnchored: boolean
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
const pageState: PageState = {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
isMounted: false,
|
|
17
|
+
dialogStorage: {},
|
|
18
|
+
accordionAnchored: false,
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
export function usePageState() {
|
|
20
|
-
|
|
22
|
+
return pageState;
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
export function setMounted(value: boolean): void {
|
|
24
|
-
|
|
26
|
+
pageState.isMounted = value;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
export function isMounted(): boolean {
|
|
28
|
-
|
|
30
|
+
return pageState.isMounted;
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
export function clearPageState() {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
34
|
+
pageState.isMounted = false;
|
|
35
|
+
pageState.dialogStorage = {};
|
|
36
|
+
pageState.accordionAnchored = false;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
39
|
export function isDialogStored(uuid: string): boolean {
|
|
38
|
-
|
|
40
|
+
return uuid in pageState.dialogStorage
|
|
39
41
|
}
|
|
40
42
|
|
|
41
|
-
export function addDialogToStorage(uuid: string, refSrlPageDialog:
|
|
42
|
-
|
|
43
|
+
export function addDialogToStorage(uuid: string, refSrlPageDialog: RefSrlPageDialog): void {
|
|
44
|
+
pageState.dialogStorage[uuid] = refSrlPageDialog
|
|
43
45
|
}
|
|
44
46
|
|
|
45
|
-
export function getDialogFromStorage(uuid: string):
|
|
46
|
-
|
|
47
|
-
|
|
47
|
+
export function getDialogFromStorage(uuid: string): RefSrlPageDialog | null {
|
|
48
|
+
return isDialogStored(uuid)?
|
|
49
|
+
pageState.dialogStorage[uuid] : null
|
|
48
50
|
}
|
|
49
51
|
|
|
50
52
|
export function getDialogStorage() : DialogStorage {
|
|
51
|
-
|
|
53
|
+
return pageState.dialogStorage
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
export function setAccordionAnchored(value: boolean): void {
|
|
55
|
-
|
|
57
|
+
pageState.accordionAnchored = value;
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
export function isAccordionAnchored(): boolean {
|
|
59
|
-
|
|
61
|
+
return pageState.accordionAnchored;
|
|
60
62
|
}
|
|
61
|
-
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@use "srl/fa" as v;
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: 'Font Awesome 7 Brands';
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 400;
|
|
7
|
+
font-display: v.$font-display;
|
|
8
|
+
src: url('#{v.$font-path}/fa-brands-400.woff2');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: v.$family;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 900;
|
|
15
|
+
font-display: v.$font-display;
|
|
16
|
+
src: url('#{v.$font-path}/fa-solid-900.woff2');
|
|
17
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@use "srl/fa" as v;
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: 'Font Awesome 7 Brands';
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 400;
|
|
7
|
+
font-display: v.$font-display;
|
|
8
|
+
src: url('#{v.$font-path}/fa-brands-400.woff2');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: v.$family;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 100;
|
|
15
|
+
font-display: v.$font-display;
|
|
16
|
+
src: url('#{v.$font-path}/fa-thin-100.woff2');
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: v.$family;
|
|
21
|
+
font-style: normal;
|
|
22
|
+
font-weight: 300;
|
|
23
|
+
font-display: v.$font-display;
|
|
24
|
+
src: url('#{v.$font-path}/fa-light-300.woff2');
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@font-face {
|
|
28
|
+
font-family: v.$family;
|
|
29
|
+
font-style: normal;
|
|
30
|
+
font-weight: 400;
|
|
31
|
+
font-display: v.$font-display;
|
|
32
|
+
src: url('#{v.$font-path}/fa-regular-400.woff2');
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@font-face {
|
|
36
|
+
font-family: v.$family;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
font-weight: 900;
|
|
39
|
+
font-display: v.$font-display;
|
|
40
|
+
src: url('#{v.$font-path}/fa-solid-900.woff2');
|
|
41
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
@use "fa-source" as v;
|
|
2
|
+
@forward "fa-source";
|
|
3
|
+
@use "sass:map";
|
|
4
|
+
@use "sass:string";
|
|
5
|
+
@use "../system";
|
|
6
|
+
|
|
7
|
+
@mixin base {
|
|
8
|
+
-webkit-font-smoothing: antialiased;
|
|
9
|
+
-moz-osx-font-smoothing: grayscale;
|
|
10
|
+
display: var(--#{v.$css-prefix}-display, #{v.$display});
|
|
11
|
+
font-family: var(--_#{v.$css-prefix}-family);
|
|
12
|
+
font-feature-settings: normal;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-synthesis: none;
|
|
15
|
+
font-variant: normal;
|
|
16
|
+
font-weight: var(--#{v.$css-prefix}-style, #{v.$style});
|
|
17
|
+
line-height: 1;
|
|
18
|
+
text-align: center;
|
|
19
|
+
text-rendering: auto;
|
|
20
|
+
width: var(--#{v.$css-prefix}-width, #{v.$fw-width});
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@mixin brands($icon) {
|
|
24
|
+
@include content-before($icon, brands);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@mixin icon($icon) {
|
|
28
|
+
@include content-before($icon, v.$default-style);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@mixin thin($icon) {
|
|
32
|
+
@include content-before($icon, thin);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@mixin light($icon) {
|
|
36
|
+
@include content-before($icon, light);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@mixin regular($icon) {
|
|
40
|
+
@include content-before($icon, regular);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@mixin solid($icon) {
|
|
44
|
+
@include content-before($icon, solid);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@mixin size($size) {
|
|
48
|
+
@include v.fa-size($size);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@function find-font-weight($style) {
|
|
52
|
+
@if v.$type == pro {
|
|
53
|
+
@if $style == thin {
|
|
54
|
+
@return 100;
|
|
55
|
+
} @else if $style == light {
|
|
56
|
+
@return 300;
|
|
57
|
+
} @else if $style == regular {
|
|
58
|
+
@return 400;
|
|
59
|
+
} @else if $style == solid {
|
|
60
|
+
@return 900;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
@return 900;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@mixin content($icon, $style: solid) {
|
|
67
|
+
@if not map.has-key(v.$brand-icons, $icon) and not map.has-key(v.$icons, $icon) {
|
|
68
|
+
@debug "Icon "#{$icon}" not found in Font Awesome 7.";
|
|
69
|
+
} @else {
|
|
70
|
+
$var: map.get(v.$brand-icons, $icon);
|
|
71
|
+
@if $var != null {
|
|
72
|
+
@include system.add-root-style(#{v.$css-prefix}-family-brands, '"Font Awesome 7 Brands"');
|
|
73
|
+
@include system.add-root-style(#{v.$css-prefix}-font-brands, normal 400 1em/1 var(--#{v.$css-prefix}-family-brands));
|
|
74
|
+
--#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-brands);
|
|
75
|
+
--#{v.$css-prefix}-style: 400;
|
|
76
|
+
--_#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family, var(--#{v.$css-prefix}-style-family, "Font Awesome 7 Brands"));
|
|
77
|
+
content: string.unquote("\"#{ $var }\"");
|
|
78
|
+
} @else {
|
|
79
|
+
$var: map.get(v.$icons, $icon);
|
|
80
|
+
@include system.add-root-style(#{v.$css-prefix}-family-classic, '"#{ v.$family }"');
|
|
81
|
+
@include system.add-root-style(#{v.$css-prefix}-font-#{$style}, normal #{find-font-weight($style)} 1em/1 var(--#{v.$css-prefix}-family-classic));
|
|
82
|
+
@include system.add-root-style(#{v.$css-prefix}-style-family-classic, var(--#{v.$css-prefix}-family-classic));
|
|
83
|
+
--#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-classic);
|
|
84
|
+
--#{v.$css-prefix}-style: #{find-font-weight($style)};
|
|
85
|
+
--_#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family, var(--#{v.$css-prefix}-style-family, '#{v.$family}'));
|
|
86
|
+
content: string.unquote("\"#{ $var }\"");
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@mixin content-before($icon, $style: solid) {
|
|
92
|
+
@if not map.has-key(v.$brand-icons, $icon) and not map.has-key(v.$icons, $icon) {
|
|
93
|
+
@debug "Icon "#{$icon}" not found in Font Awesome 7.";
|
|
94
|
+
} @else {
|
|
95
|
+
$var: map.get(v.$brand-icons, $icon);
|
|
96
|
+
@if $var != null {
|
|
97
|
+
@include system.add-root-style(#{v.$css-prefix}-family-brands, '"Font Awesome 7 Brands"');
|
|
98
|
+
@include system.add-root-style(#{v.$css-prefix}-font-brands, normal 400 1em/1 var(--#{v.$css-prefix}-family-brands));
|
|
99
|
+
--#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-brands);
|
|
100
|
+
--#{v.$css-prefix}-style: 400;
|
|
101
|
+
--_#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family, var(--#{v.$css-prefix}-style-family, "Font Awesome 7 Brands"));
|
|
102
|
+
&::before {
|
|
103
|
+
content: string.unquote("\"#{ $var }\"");
|
|
104
|
+
}
|
|
105
|
+
} @else {
|
|
106
|
+
$var: map.get(v.$icons, $icon);
|
|
107
|
+
@include system.add-root-style(#{v.$css-prefix}-family-classic, '"#{ v.$family }"');
|
|
108
|
+
@include system.add-root-style(#{v.$css-prefix}-font-#{$style}, normal #{find-font-weight($style)} 1em/1 var(--#{v.$css-prefix}-family-classic));
|
|
109
|
+
@include system.add-root-style(#{v.$css-prefix}-style-family-classic, var(--#{v.$css-prefix}-family-classic));
|
|
110
|
+
--#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family-classic);
|
|
111
|
+
--#{v.$css-prefix}-style: #{find-font-weight($style)};
|
|
112
|
+
--_#{v.$css-prefix}-family: var(--#{v.$css-prefix}-family, var(--#{v.$css-prefix}-style-family, '#{v.$family}'));
|
|
113
|
+
&::before {
|
|
114
|
+
content: string.unquote("\"#{ $var }\"");
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "srl/meta";
|
|
3
|
+
@use "@fortawesome/fontawesome-free/scss/variables" with (
|
|
4
|
+
$css-prefix: srl-icon,
|
|
5
|
+
$icon-property: --srl-icon,
|
|
6
|
+
$font-path: "@fortawesome/fontawesome-free/webfonts"
|
|
7
|
+
);
|
|
8
|
+
@forward "@fortawesome/fontawesome-free/scss/variables";
|
|
9
|
+
@forward "@fortawesome/fontawesome-free/scss/mixins";
|
|
10
|
+
$type: free;
|
|
11
|
+
$default-style: light;
|
|
12
|
+
@if map.has-key(meta.$meta, icon, default-style) {
|
|
13
|
+
$default-style: map.get(meta.$meta, icon, default-style);
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "srl/meta";
|
|
3
|
+
@use "@fortawesome/fontawesome-pro/scss/variables" as v with (
|
|
4
|
+
$css-prefix: srl-icon,
|
|
5
|
+
$icon-property: --srl-icon,
|
|
6
|
+
$font-path: "@fortawesome/fontawesome-pro/webfonts"
|
|
7
|
+
);
|
|
8
|
+
@use "@fortawesome/fontawesome-pro/scss/mixins" as m;
|
|
9
|
+
@forward "@fortawesome/fontawesome-pro/scss/variables";
|
|
10
|
+
@forward "@fortawesome/fontawesome-pro/scss/mixins";
|
|
11
|
+
$type: pro;
|
|
12
|
+
$default-style: light;
|
|
13
|
+
@if map.has-key(meta.$meta, icon, default-style) {
|
|
14
|
+
$default-style: map.get(meta.$meta, icon, default-style);
|
|
15
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 27.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="_x30_0_x5F_logo_x5F_schwarzweiss"
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 85.04 42.52"
|
|
5
|
-
style="enable-background:new 0 0 85.04 42.52;" xml:space="preserve">
|
|
6
|
-
<style type="text/css">
|
|
7
|
-
.st0{fill:#FFFFFF;}
|
|
8
|
-
</style>
|
|
9
|
-
<path class="st0" d="M19.48,21.6c-0.09,0.1-0.2,0.15-0.32,0.15h-2.1c-0.12,0-0.23-0.05-0.32-0.15c-0.09-0.1-0.14-0.21-0.14-0.33
|
|
10
|
-
v-7.74c0-0.44-0.03-0.8-0.08-1.08c-0.05-0.28-0.14-0.5-0.26-0.67c-0.12-0.17-0.29-0.28-0.5-0.35c-0.21-0.07-0.48-0.1-0.8-0.1
|
|
11
|
-
c-0.21,0-0.52,0.04-0.91,0.12c-0.4,0.08-0.8,0.23-1.21,0.44c0.03,0.26,0.05,0.52,0.07,0.8c0.01,0.27,0.02,0.55,0.02,0.84v7.74
|
|
12
|
-
c0,0.12-0.05,0.23-0.14,0.33c-0.09,0.1-0.2,0.15-0.32,0.15h-2.1c-0.12,0-0.23-0.05-0.32-0.15c-0.09-0.1-0.14-0.21-0.14-0.33v-7.74
|
|
13
|
-
c0-0.44-0.02-0.8-0.07-1.08c-0.05-0.28-0.13-0.5-0.24-0.67c-0.11-0.17-0.27-0.28-0.48-0.35c-0.21-0.07-0.47-0.1-0.79-0.1
|
|
14
|
-
c-0.47,0-1.17,0.25-2.1,0.75v9.19c0,0.12-0.05,0.23-0.14,0.33c-0.09,0.1-0.2,0.15-0.32,0.15H3.7c-0.12,0-0.23-0.05-0.32-0.15
|
|
15
|
-
c-0.09-0.1-0.14-0.21-0.14-0.33V9.34c0-0.12,0.05-0.23,0.14-0.32c0.09-0.09,0.2-0.14,0.32-0.14h1.98C5.8,8.89,5.91,8.93,6,9.03
|
|
16
|
-
c0.09,0.09,0.14,0.2,0.14,0.32v0.48c0.49-0.31,0.98-0.57,1.48-0.78c0.5-0.21,1.09-0.32,1.78-0.32c0.65,0,1.2,0.09,1.63,0.27
|
|
17
|
-
c0.43,0.18,0.78,0.43,1.04,0.75c0.58-0.32,1.15-0.57,1.72-0.75c0.57-0.18,1.25-0.27,2.04-0.27c0.78,0,1.41,0.13,1.9,0.38
|
|
18
|
-
c0.49,0.25,0.88,0.59,1.15,1.03c0.27,0.43,0.46,0.94,0.57,1.52c0.11,0.58,0.16,1.2,0.16,1.87v7.75
|
|
19
|
-
C19.61,21.39,19.57,21.5,19.48,21.6z"/>
|
|
20
|
-
<path class="st0" d="M38.81,21.6c-0.09,0.1-0.2,0.15-0.32,0.15h-2.1c-0.12,0-0.23-0.05-0.32-0.15c-0.09-0.1-0.14-0.21-0.14-0.33
|
|
21
|
-
v-7.74c0-0.44-0.03-0.8-0.08-1.08c-0.05-0.28-0.14-0.5-0.26-0.67c-0.12-0.17-0.29-0.28-0.5-0.35c-0.21-0.07-0.48-0.1-0.8-0.1
|
|
22
|
-
c-0.21,0-0.52,0.04-0.91,0.12c-0.4,0.08-0.8,0.23-1.21,0.44c0.03,0.26,0.05,0.52,0.07,0.8c0.01,0.27,0.02,0.55,0.02,0.84v7.74
|
|
23
|
-
c0,0.12-0.05,0.23-0.14,0.33c-0.09,0.1-0.2,0.15-0.32,0.15h-2.1c-0.12,0-0.23-0.05-0.32-0.15c-0.09-0.1-0.14-0.21-0.14-0.33v-7.74
|
|
24
|
-
c0-0.44-0.02-0.8-0.07-1.08c-0.05-0.28-0.13-0.5-0.24-0.67c-0.11-0.17-0.27-0.28-0.48-0.35c-0.21-0.07-0.47-0.1-0.79-0.1
|
|
25
|
-
c-0.47,0-1.17,0.25-2.1,0.75v9.19c0,0.12-0.05,0.23-0.14,0.33c-0.09,0.1-0.2,0.15-0.32,0.15h-2.1c-0.12,0-0.23-0.05-0.32-0.15
|
|
26
|
-
c-0.09-0.1-0.14-0.21-0.14-0.33V9.34c0-0.12,0.05-0.23,0.14-0.32c0.09-0.09,0.2-0.14,0.32-0.14h1.98c0.12,0,0.23,0.05,0.32,0.14
|
|
27
|
-
c0.09,0.09,0.14,0.2,0.14,0.32v0.48c0.49-0.31,0.98-0.57,1.48-0.78c0.5-0.21,1.09-0.32,1.78-0.32c0.65,0,1.2,0.09,1.63,0.27
|
|
28
|
-
c0.43,0.18,0.78,0.43,1.04,0.75c0.58-0.32,1.15-0.57,1.72-0.75c0.57-0.18,1.25-0.27,2.04-0.27c0.78,0,1.41,0.13,1.9,0.38
|
|
29
|
-
c0.49,0.25,0.88,0.59,1.15,1.03c0.27,0.43,0.46,0.94,0.57,1.52c0.11,0.58,0.16,1.2,0.16,1.87v7.75
|
|
30
|
-
C38.95,21.39,38.91,21.5,38.81,21.6z"/>
|
|
31
|
-
<path class="st0" d="M50.56,18.38c0,0.5-0.09,0.97-0.27,1.4c-0.18,0.43-0.46,0.81-0.83,1.13c-0.37,0.32-0.84,0.57-1.4,0.75
|
|
32
|
-
c-0.56,0.18-1.22,0.27-1.96,0.27c-0.23,0-0.51-0.01-0.83-0.02c-0.33-0.02-0.68-0.04-1.06-0.08c-0.38-0.04-0.76-0.08-1.14-0.14
|
|
33
|
-
c-0.38-0.05-0.73-0.13-1.05-0.22c-0.29-0.08-0.43-0.25-0.43-0.53v-1.38c0-0.09,0.03-0.18,0.1-0.25c0.07-0.08,0.16-0.11,0.29-0.11
|
|
34
|
-
h0.09c0.27,0.03,0.6,0.06,0.97,0.09c0.37,0.03,0.74,0.06,1.11,0.08c0.36,0.02,0.71,0.04,1.03,0.06c0.32,0.02,0.56,0.02,0.73,0.02
|
|
35
|
-
c0.35,0,0.63-0.03,0.84-0.08c0.21-0.05,0.38-0.13,0.49-0.23c0.11-0.1,0.19-0.22,0.23-0.35c0.04-0.14,0.06-0.28,0.06-0.43
|
|
36
|
-
c0-0.21-0.08-0.4-0.23-0.57c-0.15-0.17-0.41-0.36-0.78-0.59l-3.12-1.91c-0.56-0.35-1.02-0.79-1.38-1.33
|
|
37
|
-
c-0.36-0.54-0.54-1.14-0.54-1.81c0-2.28,1.44-3.41,4.33-3.41c0.46,0,0.87,0.01,1.24,0.03c0.37,0.02,0.72,0.06,1.04,0.1
|
|
38
|
-
c0.32,0.05,0.62,0.1,0.91,0.15c0.29,0.05,0.58,0.11,0.87,0.17c0.27,0.08,0.41,0.25,0.41,0.53v1.34c0,0.29-0.12,0.43-0.36,0.43h-0.09
|
|
39
|
-
c-0.17-0.01-0.4-0.04-0.68-0.08c-0.29-0.04-0.61-0.07-0.96-0.09c-0.35-0.02-0.71-0.05-1.08-0.07c-0.37-0.02-0.72-0.03-1.04-0.03
|
|
40
|
-
c-0.55,0-0.95,0.07-1.2,0.22c-0.25,0.14-0.38,0.39-0.38,0.74c0,0.18,0.08,0.34,0.24,0.48c0.16,0.14,0.38,0.29,0.67,0.45l2.99,1.82
|
|
41
|
-
c0.47,0.29,0.85,0.58,1.14,0.86c0.29,0.29,0.51,0.58,0.67,0.86c0.16,0.29,0.26,0.58,0.31,0.86C50.53,17.8,50.56,18.09,50.56,18.38z"
|
|
42
|
-
/>
|
|
43
|
-
<g>
|
|
44
|
-
<path class="st0" d="M22.42,32.89c0,0.43-0.08,0.79-0.23,1.1c-0.15,0.31-0.37,0.56-0.64,0.76c-0.28,0.2-0.61,0.34-0.99,0.44
|
|
45
|
-
c-0.39,0.1-0.82,0.14-1.29,0.14c-0.16,0-0.35,0-0.56-0.01c-0.22-0.01-0.45-0.02-0.69-0.04c-0.24-0.02-0.49-0.05-0.73-0.08
|
|
46
|
-
c-0.25-0.03-0.47-0.07-0.67-0.13c-0.24-0.06-0.35-0.17-0.35-0.34v-0.59c0-0.08,0.03-0.14,0.08-0.19c0.06-0.04,0.13-0.07,0.22-0.07
|
|
47
|
-
h0.07c0.2,0.02,0.42,0.05,0.67,0.07c0.24,0.02,0.49,0.04,0.73,0.06c0.25,0.02,0.48,0.03,0.69,0.04c0.21,0.01,0.4,0.02,0.56,0.02
|
|
48
|
-
c0.55,0,0.97-0.08,1.25-0.25c0.28-0.17,0.42-0.48,0.42-0.94c0-0.26-0.09-0.48-0.27-0.67c-0.18-0.19-0.51-0.43-0.99-0.72l-1.7-1.01
|
|
49
|
-
c-0.52-0.31-0.93-0.66-1.25-1.04c-0.31-0.38-0.47-0.83-0.47-1.37c0-0.44,0.08-0.8,0.24-1.09c0.16-0.29,0.37-0.52,0.64-0.69
|
|
50
|
-
c0.27-0.17,0.59-0.29,0.96-0.36c0.37-0.07,0.77-0.1,1.21-0.1c0.47,0,0.93,0.02,1.37,0.06c0.44,0.04,0.86,0.09,1.25,0.16
|
|
51
|
-
c0.21,0.03,0.32,0.15,0.32,0.34v0.56c0,0.19-0.1,0.29-0.29,0.29h-0.05c-0.29-0.02-0.68-0.05-1.17-0.08
|
|
52
|
-
c-0.49-0.03-0.97-0.05-1.44-0.05c-0.47,0-0.85,0.06-1.14,0.17c-0.29,0.11-0.43,0.38-0.43,0.81c0,0.26,0.1,0.48,0.29,0.67
|
|
53
|
-
c0.19,0.19,0.48,0.39,0.88,0.61l1.67,0.99c0.7,0.42,1.18,0.82,1.45,1.21C22.29,31.96,22.42,32.4,22.42,32.89z"/>
|
|
54
|
-
<path class="st0" d="M31.6,31.23c0,0.62-0.08,1.18-0.24,1.68c-0.16,0.51-0.39,0.94-0.71,1.3c-0.31,0.36-0.71,0.64-1.18,0.83
|
|
55
|
-
c-0.47,0.2-1.02,0.29-1.63,0.29c-0.62,0-1.16-0.1-1.63-0.29c-0.47-0.2-0.86-0.47-1.17-0.83c-0.31-0.36-0.55-0.79-0.71-1.3
|
|
56
|
-
c-0.16-0.51-0.24-1.07-0.24-1.68v-1.28c0-0.62,0.08-1.18,0.24-1.68c0.16-0.51,0.39-0.94,0.71-1.3c0.31-0.36,0.7-0.64,1.17-0.83
|
|
57
|
-
c0.47-0.2,1.01-0.29,1.63-0.29c0.62,0,1.16,0.1,1.63,0.29c0.47,0.2,0.86,0.47,1.18,0.83c0.31,0.36,0.55,0.79,0.71,1.3
|
|
58
|
-
c0.16,0.51,0.24,1.07,0.24,1.68V31.23z M30.12,29.95c0-0.86-0.18-1.55-0.54-2.05c-0.36-0.51-0.94-0.76-1.73-0.76
|
|
59
|
-
c-0.79,0-1.36,0.25-1.72,0.75c-0.36,0.5-0.54,1.19-0.54,2.06v1.28c0,0.86,0.18,1.55,0.53,2.05c0.35,0.51,0.93,0.76,1.73,0.76
|
|
60
|
-
c0.79,0,1.36-0.25,1.73-0.75c0.36-0.5,0.55-1.19,0.55-2.06V29.95z"/>
|
|
61
|
-
<path class="st0" d="M35.16,35.12c-0.06,0.07-0.13,0.1-0.22,0.1h-0.88c-0.09,0-0.16-0.03-0.22-0.1c-0.06-0.07-0.08-0.15-0.08-0.24
|
|
62
|
-
V24.25c0-0.09,0.03-0.17,0.08-0.23c0.06-0.06,0.13-0.09,0.22-0.09h0.88c0.09,0,0.16,0.03,0.22,0.09c0.06,0.06,0.08,0.14,0.08,0.23
|
|
63
|
-
v10.64C35.24,34.97,35.21,35.05,35.16,35.12z"/>
|
|
64
|
-
<path class="st0" d="M44.7,35.12c-0.06,0.07-0.14,0.1-0.23,0.1h-0.84c-0.09,0-0.17-0.03-0.23-0.1c-0.06-0.07-0.09-0.15-0.09-0.24
|
|
65
|
-
v-0.32c-0.47,0.26-0.91,0.46-1.31,0.59c-0.4,0.13-0.86,0.2-1.36,0.2c-1.02,0-1.77-0.3-2.23-0.91c-0.47-0.61-0.7-1.47-0.7-2.59
|
|
66
|
-
v-5.54c0-0.09,0.03-0.17,0.1-0.24c0.07-0.07,0.15-0.1,0.24-0.1h0.81c0.09,0,0.17,0.03,0.24,0.1c0.07,0.07,0.1,0.15,0.1,0.24v5.53
|
|
67
|
-
c0,0.43,0.04,0.78,0.11,1.07c0.07,0.29,0.19,0.51,0.34,0.68c0.15,0.17,0.34,0.29,0.57,0.36c0.23,0.07,0.51,0.11,0.83,0.11
|
|
68
|
-
c0.36,0,0.73-0.06,1.11-0.18c0.38-0.12,0.77-0.28,1.16-0.47v-7.09c0-0.09,0.03-0.17,0.1-0.24c0.07-0.07,0.15-0.1,0.24-0.1h0.83
|
|
69
|
-
c0.09,0,0.17,0.03,0.23,0.1c0.06,0.07,0.09,0.15,0.09,0.24v8.59C44.79,34.97,44.76,35.05,44.7,35.12z"/>
|
|
70
|
-
<path class="st0" d="M51.7,35.25c-0.17,0.02-0.35,0.04-0.56,0.06c-0.2,0.02-0.38,0.03-0.54,0.03c-0.39,0-0.73-0.03-1.02-0.09
|
|
71
|
-
c-0.29-0.06-0.52-0.18-0.71-0.35c-0.19-0.17-0.33-0.4-0.42-0.69c-0.1-0.29-0.14-0.67-0.14-1.13V27.2l-1.63-0.18
|
|
72
|
-
c-0.21-0.02-0.32-0.12-0.32-0.3v-0.45c0-0.2,0.11-0.3,0.32-0.3h1.63V24.3c0-0.19,0.1-0.3,0.3-0.34l0.88-0.13h0.05
|
|
73
|
-
c0.07,0,0.13,0.03,0.18,0.08c0.05,0.05,0.08,0.12,0.08,0.21v1.84h1.82c0.09,0,0.17,0.03,0.24,0.1c0.07,0.07,0.1,0.15,0.1,0.24v0.57
|
|
74
|
-
c0,0.09-0.03,0.17-0.1,0.24c-0.07,0.07-0.15,0.1-0.24,0.1h-1.82v5.87c0,0.46,0.07,0.75,0.2,0.87c0.13,0.12,0.37,0.18,0.71,0.18
|
|
75
|
-
h0.94c0.24,0,0.35,0.08,0.35,0.24v0.6C52,35.12,51.9,35.22,51.7,35.25z"/>
|
|
76
|
-
<path class="st0" d="M55.73,21.5c0,0.09-0.03,0.17-0.1,0.24c-0.07,0.07-0.15,0.1-0.24,0.1h-0.86c-0.09,0-0.17-0.03-0.24-0.1
|
|
77
|
-
c-0.07-0.07-0.1-0.15-0.1-0.24v-1.35c0-0.09,0.03-0.17,0.1-0.24c0.07-0.07,0.15-0.1,0.24-0.1h0.86c0.09,0,0.17,0.03,0.24,0.1
|
|
78
|
-
c0.07,0.07,0.1,0.15,0.1,0.24V21.5z M55.7,34.88c0,0.09-0.03,0.17-0.1,0.24c-0.07,0.07-0.15,0.1-0.24,0.1h-0.81
|
|
79
|
-
c-0.09,0-0.17-0.03-0.24-0.1c-0.07-0.07-0.1-0.15-0.1-0.24v-8.59c0-0.09,0.03-0.17,0.1-0.24c0.07-0.07,0.15-0.1,0.24-0.1h0.81
|
|
80
|
-
c0.09,0,0.17,0.03,0.24,0.1c0.07,0.07,0.1,0.15,0.1,0.24V34.88z"/>
|
|
81
|
-
<path class="st0" d="M65.39,31.23c0,0.62-0.08,1.18-0.24,1.68c-0.16,0.51-0.39,0.94-0.71,1.3c-0.31,0.36-0.71,0.64-1.18,0.83
|
|
82
|
-
c-0.47,0.2-1.02,0.29-1.63,0.29c-0.62,0-1.16-0.1-1.63-0.29c-0.47-0.2-0.86-0.47-1.17-0.83c-0.31-0.36-0.55-0.79-0.71-1.3
|
|
83
|
-
c-0.16-0.51-0.24-1.07-0.24-1.68v-1.28c0-0.62,0.08-1.18,0.24-1.68c0.16-0.51,0.39-0.94,0.71-1.3c0.31-0.36,0.7-0.64,1.17-0.83
|
|
84
|
-
c0.47-0.2,1.01-0.29,1.63-0.29c0.62,0,1.16,0.1,1.63,0.29c0.47,0.2,0.86,0.47,1.18,0.83c0.31,0.36,0.55,0.79,0.71,1.3
|
|
85
|
-
c0.16,0.51,0.24,1.07,0.24,1.68V31.23z M63.9,29.95c0-0.86-0.18-1.55-0.54-2.05c-0.36-0.51-0.94-0.76-1.74-0.76
|
|
86
|
-
c-0.79,0-1.36,0.25-1.72,0.75c-0.36,0.5-0.54,1.19-0.54,2.06v1.28c0,0.86,0.18,1.55,0.53,2.05c0.35,0.51,0.93,0.76,1.73,0.76
|
|
87
|
-
c0.79,0,1.36-0.25,1.73-0.75c0.37-0.5,0.55-1.19,0.55-2.06V29.95z"/>
|
|
88
|
-
<path class="st0" d="M74.36,35.12c-0.07,0.07-0.15,0.1-0.24,0.1h-0.81c-0.09,0-0.17-0.03-0.24-0.1c-0.07-0.07-0.1-0.15-0.1-0.24
|
|
89
|
-
v-5.53c0-0.43-0.04-0.78-0.11-1.07c-0.07-0.29-0.19-0.51-0.34-0.68c-0.15-0.17-0.35-0.29-0.58-0.36c-0.24-0.07-0.51-0.11-0.83-0.11
|
|
90
|
-
c-0.36,0-0.73,0.06-1.11,0.18c-0.38,0.12-0.77,0.28-1.16,0.47v7.09c0,0.09-0.03,0.17-0.1,0.24c-0.07,0.07-0.15,0.1-0.24,0.1h-0.83
|
|
91
|
-
c-0.09,0-0.17-0.03-0.23-0.1c-0.06-0.07-0.09-0.15-0.09-0.24v-8.59c0-0.09,0.03-0.17,0.09-0.24c0.06-0.07,0.14-0.1,0.23-0.1h0.84
|
|
92
|
-
c0.09,0,0.17,0.03,0.23,0.1c0.06,0.07,0.09,0.15,0.09,0.24v0.32c0.47-0.26,0.91-0.46,1.31-0.59c0.4-0.13,0.86-0.2,1.36-0.2
|
|
93
|
-
c1.02,0,1.77,0.3,2.23,0.91c0.47,0.61,0.7,1.47,0.7,2.59v5.54C74.46,34.97,74.43,35.05,74.36,35.12z"/>
|
|
94
|
-
<path class="st0" d="M82.62,32.89c0,0.43-0.08,0.79-0.23,1.1c-0.15,0.31-0.37,0.56-0.64,0.76c-0.28,0.2-0.61,0.34-0.99,0.44
|
|
95
|
-
c-0.39,0.1-0.82,0.14-1.29,0.14c-0.16,0-0.35,0-0.56-0.01c-0.22-0.01-0.45-0.02-0.69-0.04c-0.24-0.02-0.49-0.05-0.73-0.08
|
|
96
|
-
c-0.25-0.03-0.47-0.07-0.67-0.13c-0.24-0.06-0.35-0.17-0.35-0.34v-0.59c0-0.08,0.03-0.14,0.08-0.19c0.06-0.04,0.13-0.07,0.22-0.07
|
|
97
|
-
h0.07c0.2,0.02,0.42,0.05,0.67,0.07c0.24,0.02,0.49,0.04,0.73,0.06c0.25,0.02,0.48,0.03,0.69,0.04c0.21,0.01,0.4,0.02,0.56,0.02
|
|
98
|
-
c0.55,0,0.97-0.08,1.25-0.25c0.28-0.17,0.42-0.48,0.42-0.94c0-0.26-0.09-0.48-0.27-0.67c-0.18-0.19-0.51-0.43-0.99-0.72l-1.7-1.01
|
|
99
|
-
c-0.52-0.31-0.93-0.66-1.25-1.04c-0.31-0.38-0.47-0.83-0.47-1.37c0-0.44,0.08-0.8,0.24-1.09c0.16-0.29,0.37-0.52,0.64-0.69
|
|
100
|
-
c0.27-0.17,0.59-0.29,0.96-0.36c0.37-0.07,0.77-0.1,1.21-0.1c0.47,0,0.93,0.02,1.37,0.06c0.44,0.04,0.86,0.09,1.25,0.16
|
|
101
|
-
c0.21,0.03,0.32,0.15,0.32,0.34v0.56c0,0.19-0.1,0.29-0.29,0.29h-0.05c-0.29-0.02-0.68-0.05-1.17-0.08
|
|
102
|
-
c-0.49-0.03-0.97-0.05-1.44-0.05c-0.47,0-0.85,0.06-1.14,0.17c-0.29,0.11-0.43,0.38-0.43,0.81c0,0.26,0.1,0.48,0.29,0.67
|
|
103
|
-
c0.19,0.19,0.48,0.39,0.88,0.61l1.67,0.99c0.7,0.42,1.18,0.82,1.45,1.21C82.48,31.96,82.62,32.4,82.62,32.89z"/>
|
|
104
|
-
</g>
|
|
105
|
-
</svg>
|