@oiz/stzh-components 1.4.0-npmjstest → 2.0.0-beta
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/README.md +1 -56
- package/dist/cjs/{app-globals-e07b8f5f.js → app-globals-58a084a9.js} +5 -3
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/stzh-actions.cjs.entry.js +1 -1
- package/dist/cjs/stzh-actionset.cjs.entry.js +164 -0
- package/dist/cjs/stzh-appnav.cjs.entry.js +1 -1
- package/dist/cjs/stzh-badge_3.cjs.entry.js +25 -4
- package/dist/cjs/stzh-card-list.cjs.entry.js +79 -0
- package/dist/cjs/stzh-card.cjs.entry.js +294 -0
- package/dist/cjs/stzh-checkbox.cjs.entry.js +1 -1
- package/dist/cjs/stzh-checkboxgroup.cjs.entry.js +2 -4
- package/dist/cjs/stzh-chip-select.cjs.entry.js +1 -1
- package/dist/cjs/stzh-components.cjs.js +2 -2
- package/dist/cjs/stzh-cspace.cjs.entry.js +1 -1
- package/dist/cjs/stzh-datalist.cjs.entry.js +74 -0
- package/dist/cjs/stzh-datepicker_4.cjs.entry.js +7 -8
- package/dist/cjs/stzh-dialog.cjs.entry.js +2 -2
- package/dist/cjs/stzh-dropdown.cjs.entry.js +33 -8
- package/dist/cjs/stzh-figure.cjs.entry.js +1 -1
- package/dist/cjs/stzh-footer.cjs.entry.js +1 -1
- package/dist/cjs/stzh-ghettobox_2.cjs.entry.js +2 -2
- package/dist/cjs/stzh-header.cjs.entry.js +1 -1
- package/dist/cjs/stzh-icon-sprite.cjs.entry.js +1 -1
- package/dist/cjs/stzh-input.cjs.entry.js +10 -6
- package/dist/cjs/stzh-link.cjs.entry.js +2 -2
- package/dist/cjs/stzh-menu_2.cjs.entry.js +1 -1
- package/dist/cjs/stzh-overlay.cjs.entry.js +1 -1
- package/dist/cjs/stzh-pagetitle.cjs.entry.js +1 -1
- package/dist/cjs/stzh-popover.cjs.entry.js +30 -28
- package/dist/cjs/stzh-portal-mitwirken.cjs.entry.js +1 -1
- package/dist/cjs/stzh-readspeaker.cjs.entry.js +1 -1
- package/dist/cjs/stzh-sortable.cjs.entry.js +3230 -2440
- package/dist/cjs/stzh-table.cjs.entry.js +1 -1
- package/dist/cjs/stzh-toggle.cjs.entry.js +1 -1
- package/dist/cjs/stzh-tooltip.cjs.entry.js +3 -1
- package/dist/cjs/stzh-upload.cjs.entry.js +44 -11
- package/dist/cjs/utils-8dc66449.js +76 -0
- package/dist/collection/assets/fonts.css +5 -5
- package/dist/collection/assets/i18n/de.json +7 -2
- package/dist/collection/assets/i18n/en.json +7 -2
- package/dist/collection/assets/icons/mono/recycling-outline.svg +11 -0
- package/dist/collection/assets/icons/mono/recycling.svg +10 -0
- package/dist/collection/assets/icons/mono/smartphone.svg +10 -0
- package/dist/collection/assets/icons/mono/target.svg +11 -0
- package/dist/collection/collection-manifest.json +4 -2
- package/dist/collection/components/stzh-actionset/stzh-actionset.css +147 -0
- package/dist/collection/components/stzh-actionset/stzh-actionset.js +351 -0
- package/dist/collection/components/{stzh-servicecard-list/stzh-servicecard-list.localization.js → stzh-actionset/stzh-actionset.localization.js} +0 -0
- package/dist/collection/components/stzh-actionset/stzh-actionset.stories.js +72 -0
- package/dist/collection/components/stzh-button/stzh-button.css +66 -0
- package/dist/collection/components/stzh-button/stzh-button.js +98 -4
- package/dist/collection/components/stzh-button/stzh-button.stories.js +1 -1
- package/dist/collection/components/stzh-card/stzh-card.css +408 -0
- package/dist/collection/components/stzh-card/stzh-card.js +771 -0
- package/dist/collection/components/stzh-card/stzh-card.localization.js +1 -0
- package/dist/collection/components/stzh-card/stzh-card.stories.js +137 -0
- package/dist/collection/components/{stzh-servicecard-list/stzh-servicecard-list.css → stzh-card-list/stzh-card-list.css} +9 -9
- package/dist/collection/components/stzh-card-list/stzh-card-list.js +224 -0
- package/dist/collection/components/{stzh-servicecard/stzh-servicecard.localization.js → stzh-card-list/stzh-card-list.localization.js} +0 -0
- package/dist/collection/components/stzh-card-list/stzh-card-list.stories.js +132 -0
- package/dist/collection/components/stzh-checkboxgroup/stzh-checkboxgroup.js +1 -3
- package/dist/collection/components/stzh-chip-select/stzh-chip-select.js +1 -1
- package/dist/collection/components/stzh-cspace/stzh-cspace.css +19 -6
- package/dist/collection/components/stzh-datalist/stzh-datalist.css +621 -0
- package/dist/collection/components/stzh-datalist/stzh-datalist.js +237 -0
- package/dist/collection/components/stzh-datalist/stzh-datalist.stories.js +66 -0
- package/dist/collection/components/stzh-datepicker/stzh-datepicker.js +1 -21
- package/dist/collection/components/stzh-dialog/stzh-dialog.css +11 -2
- package/dist/collection/components/stzh-dialog/stzh-dialog.stories.js +18 -8
- package/dist/collection/components/stzh-dropdown/stzh-dropdown.css +5 -7
- package/dist/collection/components/stzh-dropdown/stzh-dropdown.js +86 -27
- package/dist/collection/components/stzh-dropdown/stzh-dropdown.stories.js +3328 -0
- package/dist/collection/components/stzh-icon-sprite/assets/svgsprites/symbol/sprite.symbol.html +63 -11
- package/dist/collection/components/stzh-icon-sprite/assets/svgsprites/symbol/svg/sprite.symbol.svg +1 -1
- package/dist/collection/components/stzh-input/stzh-input.css +18 -9
- package/dist/collection/components/stzh-input/stzh-input.js +80 -26
- package/dist/collection/components/stzh-link/stzh-link.css +5 -0
- package/dist/collection/components/stzh-link/stzh-link.js +2 -2
- package/dist/collection/components/stzh-overlay/stzh-overlay.css +5 -1
- package/dist/collection/components/stzh-popover/stzh-popover.js +52 -32
- package/dist/collection/components/stzh-portal-mitwirken/stzh-portal-mitwirken.css +292 -9
- package/dist/collection/components/stzh-radio/stzh-radio.css +2 -2
- package/dist/collection/components/stzh-radiogroup/stzh-radiogroup.js +5 -6
- package/dist/collection/components/stzh-radiogroup/stzh-radiogroup.stories.js +3 -0
- package/dist/collection/components/stzh-richtext/stzh-richtext.css +145 -0
- package/dist/collection/components/stzh-richtext/stzh-richtext.stories.js +19 -0
- package/dist/collection/components/stzh-sortable/stzh-sortable.js +75 -8
- package/dist/collection/components/stzh-sortable/stzh-sortable.stories.js +1 -1
- package/dist/collection/components/stzh-tooltip/stzh-tooltip.js +21 -1
- package/dist/collection/components/stzh-upload/stzh-upload.css +3 -0
- package/dist/collection/components/stzh-upload/stzh-upload.js +43 -10
- package/dist/collection/components/stzh-upload/stzh-upload.stories.js +10 -8
- package/dist/collection/global/js/helpers/autofocus.js +3 -1
- package/dist/collection/global/js/script.js +1 -1
- package/dist/collection/libraries/sortable.js +3791 -0
- package/dist/collection/pages/meinkonto.stories.js +93 -88
- package/dist/collection/utils/utils.js +39 -0
- package/dist/components/index.d.ts +4 -2
- package/dist/components/index.js +9 -5
- package/dist/components/{stzh-servicecard.d.ts → stzh-actionset.d.ts} +4 -4
- package/dist/components/stzh-actionset.js +6 -0
- package/dist/components/stzh-actionset2.js +227 -0
- package/dist/components/stzh-button2.js +27 -3
- package/dist/components/{stzh-servicecard-list.d.ts → stzh-card-list.d.ts} +4 -4
- package/dist/components/stzh-card-list.js +123 -0
- package/dist/components/stzh-card.d.ts +11 -0
- package/dist/components/stzh-card.js +376 -0
- package/dist/components/stzh-checkboxgroup.js +1 -3
- package/dist/components/stzh-chip-select.js +1 -1
- package/dist/components/stzh-cspace.js +1 -1
- package/dist/components/stzh-datalist.d.ts +11 -0
- package/dist/components/stzh-datalist.js +113 -0
- package/dist/components/stzh-datepicker2.js +1 -2
- package/dist/components/stzh-dialog.js +1 -1
- package/dist/components/stzh-dropdown2.js +36 -9
- package/dist/components/stzh-icon-sprite.js +1 -1
- package/dist/components/stzh-input2.js +13 -6
- package/dist/components/stzh-link2.js +1 -1
- package/dist/components/stzh-overlay.js +1 -1
- package/dist/components/stzh-popover2.js +31 -28
- package/dist/components/stzh-portal-mitwirken.js +1 -1
- package/dist/components/stzh-radio2.js +1 -1
- package/dist/components/stzh-radiogroup2.js +4 -5
- package/dist/components/stzh-richtext2.js +1 -1
- package/dist/components/stzh-sortable2.js +3232 -2441
- package/dist/components/stzh-tooltip2.js +4 -1
- package/dist/components/stzh-upload.js +43 -10
- package/dist/components/utils.js +40 -1
- package/dist/esm/{app-globals-70c229e3.js → app-globals-6b6ff890.js} +5 -3
- package/dist/esm/{index-0e6d34c6.js → index-84f71a43.js} +1 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/stzh-accordion-item.entry.js +1 -1
- package/dist/esm/stzh-accordion.entry.js +1 -1
- package/dist/esm/stzh-actions.entry.js +2 -2
- package/dist/esm/stzh-actionset.entry.js +160 -0
- package/dist/esm/stzh-appnav.entry.js +2 -2
- package/dist/esm/stzh-appointments.entry.js +1 -1
- package/dist/esm/stzh-badge_3.entry.js +26 -5
- package/dist/esm/stzh-calendar.entry.js +1 -1
- package/dist/esm/stzh-card-list.entry.js +75 -0
- package/dist/esm/stzh-card.entry.js +290 -0
- package/dist/esm/stzh-cell.entry.js +1 -1
- package/dist/esm/stzh-checkbox.entry.js +3 -3
- package/dist/esm/stzh-checkboxgroup.entry.js +4 -6
- package/dist/esm/stzh-chip-select.entry.js +2 -2
- package/dist/esm/stzh-chip.entry.js +1 -1
- package/dist/esm/stzh-components.js +3 -3
- package/dist/esm/stzh-container.entry.js +1 -1
- package/dist/esm/stzh-cspace.entry.js +2 -2
- package/dist/esm/stzh-datalist.entry.js +70 -0
- package/dist/esm/stzh-datamessagelist-item.entry.js +1 -1
- package/dist/esm/stzh-datamessagelist.entry.js +1 -1
- package/dist/esm/stzh-datatable.entry.js +1 -1
- package/dist/esm/stzh-datepicker_4.entry.js +9 -10
- package/dist/esm/stzh-dialog.entry.js +3 -3
- package/dist/esm/stzh-dropdown.entry.js +35 -10
- package/dist/esm/stzh-fieldset.entry.js +1 -1
- package/dist/esm/stzh-figure.entry.js +2 -2
- package/dist/esm/stzh-flyingfocus.entry.js +1 -1
- package/dist/esm/stzh-footer.entry.js +2 -2
- package/dist/esm/stzh-ghettobox_2.entry.js +3 -3
- package/dist/esm/stzh-header.entry.js +2 -2
- package/dist/esm/stzh-heading.entry.js +1 -1
- package/dist/esm/stzh-hr.entry.js +1 -1
- package/dist/esm/stzh-hspace.entry.js +1 -1
- package/dist/esm/stzh-icon-sprite.entry.js +2 -2
- package/dist/esm/{stzh-input-description-da7b0e98.js → stzh-input-description-8c477f97.js} +1 -1
- package/dist/esm/stzh-input.entry.js +12 -8
- package/dist/esm/stzh-link.entry.js +3 -3
- package/dist/esm/stzh-list-item.entry.js +1 -1
- package/dist/esm/stzh-list.entry.js +1 -1
- package/dist/esm/stzh-loader.entry.js +1 -1
- package/dist/esm/stzh-loadingbar.entry.js +1 -1
- package/dist/esm/stzh-menu_2.entry.js +2 -2
- package/dist/esm/stzh-message.entry.js +1 -1
- package/dist/esm/stzh-metanav.entry.js +1 -1
- package/dist/esm/stzh-overlay.entry.js +2 -2
- package/dist/esm/stzh-page-skiplinks.entry.js +1 -1
- package/dist/esm/stzh-pagetitle.entry.js +2 -2
- package/dist/esm/stzh-popover.entry.js +31 -29
- package/dist/esm/stzh-portal-mitwirken.entry.js +2 -2
- package/dist/esm/stzh-progressbar-item.entry.js +1 -1
- package/dist/esm/stzh-progressbar.entry.js +1 -1
- package/dist/esm/stzh-readspeaker.entry.js +2 -2
- package/dist/esm/stzh-row.entry.js +1 -1
- package/dist/esm/stzh-saptcha.entry.js +1 -1
- package/dist/esm/stzh-section.entry.js +1 -1
- package/dist/esm/stzh-skiplink.entry.js +1 -1
- package/dist/esm/stzh-sortable.entry.js +3231 -2441
- package/dist/esm/stzh-status.entry.js +1 -1
- package/dist/esm/stzh-table.entry.js +2 -2
- package/dist/esm/stzh-toggle.entry.js +3 -3
- package/dist/esm/stzh-tooltip.entry.js +4 -2
- package/dist/esm/stzh-upload.entry.js +46 -13
- package/dist/esm/stzh-vbz-linechip.entry.js +1 -1
- package/dist/esm/stzh-vbz-majorticker.entry.js +1 -1
- package/dist/esm/stzh-vbz-ticker.entry.js +1 -1
- package/dist/esm/stzh-visuallyhidden.entry.js +1 -1
- package/dist/esm/stzh-vspace.entry.js +1 -1
- package/dist/esm/utils-68a28fce.js +72 -0
- package/dist/esm-es5/app-globals-6b6ff890.js +1 -0
- package/dist/esm-es5/{index-0e6d34c6.js → index-84f71a43.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/stzh-accordion-item.entry.js +1 -1
- package/dist/esm-es5/stzh-accordion.entry.js +1 -1
- package/dist/esm-es5/stzh-actions.entry.js +1 -1
- package/dist/esm-es5/stzh-actionset.entry.js +1 -0
- package/dist/esm-es5/stzh-appnav.entry.js +1 -1
- package/dist/esm-es5/stzh-appointments.entry.js +1 -1
- package/dist/esm-es5/stzh-badge_3.entry.js +1 -1
- package/dist/esm-es5/stzh-calendar.entry.js +1 -1
- package/dist/esm-es5/stzh-card-list.entry.js +1 -0
- package/dist/esm-es5/stzh-card.entry.js +1 -0
- package/dist/esm-es5/stzh-cell.entry.js +1 -1
- package/dist/esm-es5/stzh-checkbox.entry.js +1 -1
- package/dist/esm-es5/stzh-checkboxgroup.entry.js +1 -1
- package/dist/esm-es5/stzh-chip-select.entry.js +1 -1
- package/dist/esm-es5/stzh-chip.entry.js +1 -1
- package/dist/esm-es5/stzh-components.js +1 -1
- package/dist/esm-es5/stzh-container.entry.js +1 -1
- package/dist/esm-es5/stzh-cspace.entry.js +1 -1
- package/dist/esm-es5/stzh-datalist.entry.js +1 -0
- package/dist/esm-es5/stzh-datamessagelist-item.entry.js +1 -1
- package/dist/esm-es5/stzh-datamessagelist.entry.js +1 -1
- package/dist/esm-es5/stzh-datatable.entry.js +1 -1
- package/dist/esm-es5/stzh-datepicker_4.entry.js +1 -1
- package/dist/esm-es5/stzh-dialog.entry.js +1 -1
- package/dist/esm-es5/stzh-dropdown.entry.js +1 -1
- package/dist/esm-es5/stzh-fieldset.entry.js +1 -1
- package/dist/esm-es5/stzh-figure.entry.js +1 -1
- package/dist/esm-es5/stzh-flyingfocus.entry.js +1 -1
- package/dist/esm-es5/stzh-footer.entry.js +1 -1
- package/dist/esm-es5/stzh-ghettobox_2.entry.js +1 -1
- package/dist/esm-es5/stzh-header.entry.js +1 -1
- package/dist/esm-es5/stzh-heading.entry.js +1 -1
- package/dist/esm-es5/stzh-hr.entry.js +1 -1
- package/dist/esm-es5/stzh-hspace.entry.js +1 -1
- package/dist/esm-es5/stzh-icon-sprite.entry.js +1 -1
- package/dist/esm-es5/{stzh-input-description-da7b0e98.js → stzh-input-description-8c477f97.js} +1 -1
- package/dist/esm-es5/stzh-input.entry.js +1 -1
- package/dist/esm-es5/stzh-link.entry.js +1 -1
- package/dist/esm-es5/stzh-list-item.entry.js +1 -1
- package/dist/esm-es5/stzh-list.entry.js +1 -1
- package/dist/esm-es5/stzh-loader.entry.js +1 -1
- package/dist/esm-es5/stzh-loadingbar.entry.js +1 -1
- package/dist/esm-es5/stzh-menu_2.entry.js +1 -1
- package/dist/esm-es5/stzh-message.entry.js +1 -1
- package/dist/esm-es5/stzh-metanav.entry.js +1 -1
- package/dist/esm-es5/stzh-overlay.entry.js +1 -1
- package/dist/esm-es5/stzh-page-skiplinks.entry.js +1 -1
- package/dist/esm-es5/stzh-pagetitle.entry.js +1 -1
- package/dist/esm-es5/stzh-popover.entry.js +1 -1
- package/dist/esm-es5/stzh-portal-mitwirken.entry.js +1 -1
- package/dist/esm-es5/stzh-progressbar-item.entry.js +1 -1
- package/dist/esm-es5/stzh-progressbar.entry.js +1 -1
- package/dist/esm-es5/stzh-readspeaker.entry.js +1 -1
- package/dist/esm-es5/stzh-row.entry.js +1 -1
- package/dist/esm-es5/stzh-saptcha.entry.js +1 -1
- package/dist/esm-es5/stzh-section.entry.js +1 -1
- package/dist/esm-es5/stzh-skiplink.entry.js +1 -1
- package/dist/esm-es5/stzh-sortable.entry.js +2 -2
- package/dist/esm-es5/stzh-status.entry.js +1 -1
- package/dist/esm-es5/stzh-table.entry.js +1 -1
- package/dist/esm-es5/stzh-toggle.entry.js +1 -1
- package/dist/esm-es5/stzh-tooltip.entry.js +1 -1
- package/dist/esm-es5/stzh-upload.entry.js +1 -1
- package/dist/esm-es5/stzh-vbz-linechip.entry.js +1 -1
- package/dist/esm-es5/stzh-vbz-majorticker.entry.js +1 -1
- package/dist/esm-es5/stzh-vbz-ticker.entry.js +1 -1
- package/dist/esm-es5/stzh-visuallyhidden.entry.js +1 -1
- package/dist/esm-es5/stzh-vspace.entry.js +1 -1
- package/dist/esm-es5/utils-68a28fce.js +1 -0
- package/dist/stzh-components/assets/fonts.css +5 -5
- package/dist/stzh-components/assets/i18n/de.json +7 -2
- package/dist/stzh-components/assets/i18n/en.json +7 -2
- package/dist/stzh-components/assets/icons/mono/recycling-outline.svg +11 -0
- package/dist/stzh-components/assets/icons/mono/recycling.svg +10 -0
- package/dist/stzh-components/assets/icons/mono/smartphone.svg +10 -0
- package/dist/stzh-components/assets/icons/mono/target.svg +11 -0
- package/dist/stzh-components/assets/svgsprites/symbol/sprite.symbol.html +63 -11
- package/dist/stzh-components/assets/svgsprites/symbol/svg/sprite.symbol.svg +1 -1
- package/dist/stzh-components/{p-07f16263.entry.js → p-001b7d10.entry.js} +1 -1
- package/dist/stzh-components/p-0230004d.system.js +1 -0
- package/dist/stzh-components/{p-0837657c.entry.js → p-08a564af.entry.js} +1 -1
- package/dist/stzh-components/{p-a6486f64.system.entry.js → p-0b8de542.system.entry.js} +1 -1
- package/dist/stzh-components/{p-8db4279d.system.entry.js → p-0bbbbe85.system.entry.js} +1 -1
- package/dist/stzh-components/p-0d5522dc.system.entry.js +1 -0
- package/dist/stzh-components/{p-33d033a3.system.entry.js → p-0efe125f.system.entry.js} +1 -1
- package/dist/stzh-components/{p-4cfe83b5.system.entry.js → p-0fc06049.system.entry.js} +1 -1
- package/dist/stzh-components/p-0fc83964.system.entry.js +1 -0
- package/dist/stzh-components/{p-08d4ed80.entry.js → p-13b3500e.entry.js} +1 -1
- package/dist/stzh-components/p-13f44000.entry.js +1 -0
- package/dist/stzh-components/{p-65444117.system.entry.js → p-17c6c1db.system.entry.js} +1 -1
- package/dist/stzh-components/{p-b34774e7.entry.js → p-190de4de.entry.js} +1 -1
- package/dist/stzh-components/{p-b2c8c31e.system.entry.js → p-19bff884.system.entry.js} +1 -1
- package/dist/stzh-components/p-1f57d28e.js +1 -0
- package/dist/stzh-components/{p-debb00e6.entry.js → p-216577b4.entry.js} +1 -1
- package/dist/stzh-components/{p-6edd58a4.system.entry.js → p-27fd6c6f.system.entry.js} +1 -1
- package/dist/stzh-components/{p-55188328.entry.js → p-2818488f.entry.js} +1 -1
- package/dist/stzh-components/{p-f9dc7a9b.entry.js → p-29427863.entry.js} +1 -1
- package/dist/stzh-components/{p-3c4478b0.entry.js → p-2b338050.entry.js} +1 -1
- package/dist/stzh-components/p-2cf1ae40.system.entry.js +1 -0
- package/dist/stzh-components/{p-fa8651dd.entry.js → p-2e559062.entry.js} +1 -1
- package/dist/stzh-components/{p-11d0c8f3.entry.js → p-332e4fd3.entry.js} +1 -1
- package/dist/stzh-components/{p-1ccbd2d6.system.entry.js → p-33c0229f.system.entry.js} +1 -1
- package/dist/stzh-components/p-373f79e8.entry.js +1 -0
- package/dist/stzh-components/{p-b651f251.entry.js → p-3ac93a01.entry.js} +1 -1
- package/dist/stzh-components/p-3b27a43f.system.entry.js +7 -0
- package/dist/stzh-components/{p-1cde29ea.entry.js → p-3d8317b5.entry.js} +1 -1
- package/dist/stzh-components/{p-48bbcc26.system.entry.js → p-45bab70d.system.entry.js} +1 -1
- package/dist/stzh-components/{p-3f03fd94.system.entry.js → p-48b5b697.system.entry.js} +1 -1
- package/dist/stzh-components/{p-ece7ad4d.system.entry.js → p-4c6989ae.system.entry.js} +1 -1
- package/dist/stzh-components/{p-79ca1ba6.entry.js → p-552f49c4.entry.js} +1 -1
- package/dist/stzh-components/{p-562394a9.system.entry.js → p-55d23a3c.system.entry.js} +1 -1
- package/dist/stzh-components/{p-60b4f34c.system.entry.js → p-560f96f0.system.entry.js} +1 -1
- package/dist/stzh-components/{p-f48a2b00.system.entry.js → p-56b9cc3c.system.entry.js} +1 -1
- package/dist/stzh-components/{p-cb4a91b7.system.entry.js → p-58d886cb.system.entry.js} +1 -1
- package/dist/stzh-components/p-5975c355.system.entry.js +1 -0
- package/dist/stzh-components/p-5987573e.system.entry.js +1 -0
- package/dist/stzh-components/{p-634095bd.system.entry.js → p-5997e418.system.entry.js} +1 -1
- package/dist/stzh-components/p-59c323ce.entry.js +1 -0
- package/dist/stzh-components/{p-49968bbf.entry.js → p-5a02ef03.entry.js} +1 -1
- package/dist/stzh-components/{p-82d85c3a.system.entry.js → p-5a354428.system.entry.js} +1 -1
- package/dist/stzh-components/{p-0a71fbac.entry.js → p-5bd2849d.entry.js} +1 -1
- package/dist/stzh-components/{p-19344366.system.entry.js → p-61aac051.system.entry.js} +1 -1
- package/dist/stzh-components/{p-ade1ebcf.system.entry.js → p-6305db38.system.entry.js} +1 -1
- package/dist/stzh-components/{p-ff8a3e96.entry.js → p-6354fee3.entry.js} +1 -1
- package/dist/stzh-components/{p-86d3ce62.entry.js → p-638bedfa.entry.js} +1 -1
- package/dist/stzh-components/{p-9c0494a6.system.js → p-63d89b96.system.js} +1 -1
- package/dist/stzh-components/{p-33d75303.entry.js → p-63d8db7b.entry.js} +1 -1
- package/dist/stzh-components/{p-818634d2.entry.js → p-64b4cc74.entry.js} +1 -1
- package/dist/stzh-components/p-653c6bbc.entry.js +1 -0
- package/dist/stzh-components/{p-b1976630.entry.js → p-67f906b1.entry.js} +1 -1
- package/dist/stzh-components/{p-f44f4d26.system.entry.js → p-69c3187f.system.entry.js} +1 -1
- package/dist/stzh-components/{p-c2d58384.entry.js → p-69f4a27e.entry.js} +1 -1
- package/dist/stzh-components/p-6a81e64b.entry.js +1 -0
- package/dist/stzh-components/p-6a873872.entry.js +1 -0
- package/dist/stzh-components/{p-03b16275.entry.js → p-72f29f07.entry.js} +1 -1
- package/dist/stzh-components/p-75cdc8a6.system.entry.js +1 -0
- package/dist/stzh-components/{p-a4100bd8.system.entry.js → p-7ad87d98.system.entry.js} +1 -1
- package/dist/stzh-components/p-7d8c9866.entry.js +1 -0
- package/dist/stzh-components/{p-1cebd703.entry.js → p-7f9f9a8d.entry.js} +1 -1
- package/dist/stzh-components/{p-7d098987.entry.js → p-83b1e379.entry.js} +1 -1
- package/dist/stzh-components/{p-aec2d2d1.system.entry.js → p-851e0caa.system.entry.js} +1 -1
- package/dist/stzh-components/{p-1f15a4e0.system.entry.js → p-86bc421e.system.entry.js} +1 -1
- package/dist/stzh-components/{p-690d14cd.entry.js → p-88e0f453.entry.js} +1 -1
- package/dist/stzh-components/{p-0338cec3.system.entry.js → p-89274cd5.system.entry.js} +1 -1
- package/dist/stzh-components/{p-346e26f2.system.entry.js → p-8a9e588e.system.entry.js} +1 -1
- package/dist/stzh-components/{p-66556f67.entry.js → p-8aebb240.entry.js} +1 -1
- package/dist/stzh-components/{p-bba52769.system.entry.js → p-8cbc987f.system.entry.js} +1 -1
- package/dist/stzh-components/{p-0ae3e066.system.entry.js → p-8d0da18d.system.entry.js} +1 -1
- package/dist/stzh-components/{p-56fccfa3.system.entry.js → p-8d547247.system.entry.js} +1 -1
- package/dist/stzh-components/p-8f16b0ac.entry.js +8 -0
- package/dist/stzh-components/{p-85d78e08.entry.js → p-938ef748.entry.js} +1 -1
- package/dist/stzh-components/{p-65282c9d.js → p-93e8e31f.js} +1 -1
- package/dist/stzh-components/{p-e9ca8ddc.entry.js → p-961cb979.entry.js} +1 -1
- package/dist/stzh-components/{p-98afd4b0.system.entry.js → p-981b2629.system.entry.js} +1 -1
- package/dist/stzh-components/p-9bda100f.system.js +1 -0
- package/dist/stzh-components/{p-0ec28130.system.entry.js → p-9c72f491.system.entry.js} +1 -1
- package/dist/stzh-components/{p-8cf287d8.system.entry.js → p-9fb4da92.system.entry.js} +1 -1
- package/dist/stzh-components/{p-e58d3bc7.entry.js → p-a448f5a5.entry.js} +1 -1
- package/dist/stzh-components/{p-96fd158c.entry.js → p-a646c09a.entry.js} +1 -1
- package/dist/stzh-components/p-a6627504.entry.js +1 -0
- package/dist/stzh-components/{p-2f2cb544.system.entry.js → p-a67e09cd.system.entry.js} +1 -1
- package/dist/stzh-components/{p-378be0be.system.entry.js → p-a7c35778.system.entry.js} +1 -1
- package/dist/stzh-components/{p-c8bc2812.entry.js → p-a7ee2636.entry.js} +1 -1
- package/dist/stzh-components/{p-632d9076.system.entry.js → p-a99d3e97.system.entry.js} +1 -1
- package/dist/stzh-components/{p-148de4e6.entry.js → p-ab246b66.entry.js} +1 -1
- package/dist/stzh-components/{p-936cc626.system.entry.js → p-ab455116.system.entry.js} +1 -1
- package/dist/stzh-components/p-af2664fc.system.entry.js +1 -0
- package/dist/stzh-components/p-b084fcbf.system.entry.js +1 -0
- package/dist/stzh-components/p-b550feaa.system.entry.js +1 -0
- package/dist/stzh-components/{p-f8d9411d.system.entry.js → p-b636a18a.system.entry.js} +1 -1
- package/dist/stzh-components/{p-f544cf3d.entry.js → p-b9295dc2.entry.js} +1 -1
- package/dist/stzh-components/{p-1bfc1097.entry.js → p-b9382599.entry.js} +1 -1
- package/dist/stzh-components/{p-46f301c0.entry.js → p-b9a027aa.entry.js} +1 -1
- package/dist/stzh-components/{p-e4347cfe.entry.js → p-b9c3f3cc.entry.js} +1 -1
- package/dist/stzh-components/{p-7e3924a0.system.entry.js → p-ba94e315.system.entry.js} +1 -1
- package/dist/stzh-components/{p-7d62dfeb.system.entry.js → p-bd178c32.system.entry.js} +1 -1
- package/dist/stzh-components/{p-e972a44f.system.entry.js → p-be461e19.system.entry.js} +1 -1
- package/dist/stzh-components/{p-30b347ee.system.js → p-bf0fdd23.system.js} +2 -2
- package/dist/stzh-components/{p-0433fff9.system.entry.js → p-c013a00b.system.entry.js} +1 -1
- package/dist/stzh-components/p-c1337453.entry.js +1 -0
- package/dist/stzh-components/{p-915e8ad6.entry.js → p-c3d93395.entry.js} +1 -1
- package/dist/stzh-components/{p-c6cad5ed.system.entry.js → p-c456c04b.system.entry.js} +1 -1
- package/dist/stzh-components/{p-298276e4.entry.js → p-c499e04d.entry.js} +1 -1
- package/dist/stzh-components/{p-e9bc3a43.entry.js → p-c4b7c2be.entry.js} +1 -1
- package/dist/stzh-components/{p-df422d36.entry.js → p-c58dd9de.entry.js} +1 -1
- package/dist/stzh-components/{p-7d2237ca.entry.js → p-c692e405.entry.js} +1 -1
- package/dist/stzh-components/{p-4e9bfeb8.system.entry.js → p-c83e4fec.system.entry.js} +1 -1
- package/dist/stzh-components/p-ca062c11.system.js +1 -0
- package/dist/stzh-components/{p-49e37004.entry.js → p-ce070ccd.entry.js} +1 -1
- package/dist/stzh-components/{p-b3b5ee7e.entry.js → p-ce28428b.entry.js} +1 -1
- package/dist/stzh-components/p-cfaac121.js +1 -0
- package/dist/stzh-components/{p-6ec17efc.entry.js → p-d0aa9d3b.entry.js} +1 -1
- package/dist/stzh-components/{p-2990206c.system.entry.js → p-d11a70e2.system.entry.js} +1 -1
- package/dist/stzh-components/p-d1dba399.system.entry.js +1 -0
- package/dist/stzh-components/p-d2b5e066.entry.js +1 -0
- package/dist/stzh-components/{p-58ffc722.system.entry.js → p-d54f04c8.system.entry.js} +1 -1
- package/dist/stzh-components/p-d645d645.entry.js +1 -0
- package/dist/stzh-components/{p-30cb8bc0.system.entry.js → p-d6c07494.system.entry.js} +1 -1
- package/dist/stzh-components/{p-cf162e67.entry.js → p-d7893dfd.entry.js} +1 -1
- package/dist/stzh-components/{p-73194e28.entry.js → p-d9643cc4.entry.js} +1 -1
- package/dist/stzh-components/{p-c6ad1a8c.entry.js → p-da7b363e.entry.js} +1 -1
- package/dist/stzh-components/{p-58917ce2.entry.js → p-db5363ef.entry.js} +1 -1
- package/dist/stzh-components/p-de017b87.system.entry.js +1 -0
- package/dist/stzh-components/{p-2d0685e3.entry.js → p-e009bfdc.entry.js} +1 -1
- package/dist/stzh-components/{p-fc9c4fc3.system.entry.js → p-e213663c.system.entry.js} +1 -1
- package/dist/stzh-components/{p-7a6e347d.system.entry.js → p-e7a84e53.system.entry.js} +1 -1
- package/dist/stzh-components/{p-14d728f0.entry.js → p-ee22256f.entry.js} +1 -1
- package/dist/stzh-components/{p-670d4834.entry.js → p-f1356a85.entry.js} +1 -1
- package/dist/stzh-components/{p-82e6148a.system.entry.js → p-f167eaa4.system.entry.js} +1 -1
- package/dist/stzh-components/{p-3c799247.entry.js → p-f2ee016a.entry.js} +1 -1
- package/dist/stzh-components/{p-1ace5d80.entry.js → p-f788a468.entry.js} +1 -1
- package/dist/stzh-components/{p-99533090.system.entry.js → p-f832e938.system.entry.js} +1 -1
- package/dist/stzh-components/{p-32b78d65.js → p-f84fa2a4.js} +1 -1
- package/dist/stzh-components/{p-80db7aa6.system.entry.js → p-fa56fc0d.system.entry.js} +1 -1
- package/dist/stzh-components/{p-88a4f756.system.entry.js → p-fc13d017.system.entry.js} +1 -1
- package/dist/stzh-components/p-fc6b4f91.system.entry.js +1 -0
- package/dist/stzh-components/p-fdd1998f.entry.js +1 -0
- package/dist/stzh-components/{p-9e6c25ed.system.entry.js → p-fdf0b4bc.system.entry.js} +1 -1
- package/dist/stzh-components/{p-0c92ee26.system.entry.js → p-ffa1e9dd.system.entry.js} +1 -1
- package/dist/stzh-components/stzh-components.css +1 -1
- package/dist/stzh-components/stzh-components.esm.js +1 -1
- package/dist/stzh-components/stzh-components.js +1 -1
- package/dist/types/components/stzh-actionset/stzh-actionset.localization.d.ts +5 -0
- package/dist/types/components/{stzh-servicecard/stzh-servicecard.localization.d.ts → stzh-card/stzh-card.localization.d.ts} +2 -1
- package/dist/types/components/{stzh-servicecard-list/stzh-servicecard-list.localization.d.ts → stzh-card-list/stzh-card-list.localization.d.ts} +1 -1
- package/dist/types/components.d.ts +518 -239
- package/dist/types/index.d.ts +57 -14
- package/dist/types/utils/utils.d.ts +2 -0
- package/dist/vscode-data.json +366 -132
- package/package.json +1 -1
- package/dist/cjs/stzh-servicecard-list.cjs.entry.js +0 -56
- package/dist/cjs/stzh-servicecard.cjs.entry.js +0 -212
- package/dist/cjs/utils-d327c19d.js +0 -36
- package/dist/collection/components/stzh-servicecard/stzh-servicecard.css +0 -558
- package/dist/collection/components/stzh-servicecard/stzh-servicecard.js +0 -592
- package/dist/collection/components/stzh-servicecard/stzh-servicecard.stories.js +0 -73
- package/dist/collection/components/stzh-servicecard-list/stzh-servicecard-list.js +0 -153
- package/dist/collection/components/stzh-servicecard-list/stzh-servicecard-list.stories.js +0 -115
- package/dist/components/stzh-servicecard-list.js +0 -99
- package/dist/components/stzh-servicecard.js +0 -283
- package/dist/esm/stzh-servicecard-list.entry.js +0 -52
- package/dist/esm/stzh-servicecard.entry.js +0 -208
- package/dist/esm/utils-904416df.js +0 -33
- package/dist/esm-es5/app-globals-70c229e3.js +0 -1
- package/dist/esm-es5/stzh-servicecard-list.entry.js +0 -1
- package/dist/esm-es5/stzh-servicecard.entry.js +0 -1
- package/dist/esm-es5/utils-904416df.js +0 -1
- package/dist/stzh-components/p-043ab41e.system.entry.js +0 -1
- package/dist/stzh-components/p-1d914f6c.entry.js +0 -1
- package/dist/stzh-components/p-323fdc2f.entry.js +0 -1
- package/dist/stzh-components/p-49ea222f.system.entry.js +0 -1
- package/dist/stzh-components/p-5f7b72c8.entry.js +0 -1
- package/dist/stzh-components/p-5f856307.system.js +0 -1
- package/dist/stzh-components/p-63b5068a.system.entry.js +0 -1
- package/dist/stzh-components/p-6c502e6e.js +0 -1
- package/dist/stzh-components/p-6ea5c23d.system.entry.js +0 -7
- package/dist/stzh-components/p-7279af4a.system.entry.js +0 -1
- package/dist/stzh-components/p-7bb1bd3b.entry.js +0 -1
- package/dist/stzh-components/p-8462ba57.entry.js +0 -1
- package/dist/stzh-components/p-88bef2cd.entry.js +0 -1
- package/dist/stzh-components/p-a7c3b41a.entry.js +0 -1
- package/dist/stzh-components/p-a86c6487.entry.js +0 -1
- package/dist/stzh-components/p-aa4e28cc.system.js +0 -1
- package/dist/stzh-components/p-ac1da083.system.js +0 -1
- package/dist/stzh-components/p-b63d6ded.system.entry.js +0 -1
- package/dist/stzh-components/p-bcade28e.entry.js +0 -1
- package/dist/stzh-components/p-be21cebd.js +0 -1
- package/dist/stzh-components/p-d04e8743.system.entry.js +0 -1
- package/dist/stzh-components/p-d8819b74.system.entry.js +0 -1
- package/dist/stzh-components/p-e048de42.entry.js +0 -8
- package/dist/stzh-components/p-e2ce48f1.system.entry.js +0 -1
- package/dist/stzh-components/p-e987954a.system.entry.js +0 -1
- package/dist/stzh-components/p-f21440b3.entry.js +0 -1
- package/dist/stzh-components/p-fe9f8a09.system.entry.js +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
var __awaiter=this&&this.__awaiter||function(r,o,n,t){function a(r){return r instanceof n?r:new n((function(o){o(r)}))}return new(n||(n=Promise))((function(n,e){function b(r){try{c(t.next(r))}catch(o){e(o)}}function i(r){try{c(t["throw"](r))}catch(o){e(o)}}function c(r){r.done?n(r.value):a(r.value).then(b,i)}c((t=t.apply(r,o||[])).next())}))};var __generator=this&&this.__generator||function(r,o){var n={label:0,sent:function(){if(e[0]&1)throw e[1];return e[1]},trys:[],ops:[]},t,a,e,b;return b={next:i(0),throw:i(1),return:i(2)},typeof Symbol==="function"&&(b[Symbol.iterator]=function(){return this}),b;function i(r){return function(o){return c([r,o])}}function c(b){if(t)throw new TypeError("Generator is already executing.");while(n)try{if(t=1,a&&(e=b[0]&2?a["return"]:b[0]?a["throw"]||((e=a["return"])&&e.call(a),0):a.next)&&!(e=e.call(a,b[1])).done)return e;if(a=0,e)b=[b[0]&2,e.value];switch(b[0]){case 0:case 1:e=b;break;case 4:n.label++;return{value:b[1],done:false};case 5:n.label++;a=b[1];b=[0];continue;case 7:b=n.ops.pop();n.trys.pop();continue;default:if(!(e=n.trys,e=e.length>0&&e[e.length-1])&&(b[0]===6||b[0]===2)){n=0;continue}if(b[0]===3&&(!e||b[1]>e[0]&&b[1]<e[3])){n.label=b[1];break}if(b[0]===6&&n.label<e[1]){n.label=e[1];e=b;break}if(e&&n.label<e[2]){n.label=e[2];n.ops.push(b);break}if(e[2])n.ops.pop();n.trys.pop();continue}b=o.call(r,n)}catch(i){b=[6,i];a=0}finally{t=e=0}if(b[0]&5)throw b[1];return{value:b[0]?b[1]:void 0,done:true}}};import{r as registerInstance,c as createEvent,h,a as Host,g as getElement}from"./index-0e6d34c6.js";import{c as createCommonjsModule}from"./_commonjsHelpers-ba3f0406.js";var tinycolor=createCommonjsModule((function(r){(function(o){var n=/^\s+/,t=/\s+$/,a=0,e=o.round,b=o.min,i=o.max,c=o.random;function g(r,o){r=r?r:"";o=o||{};if(r instanceof g){return r}if(!(this instanceof g)){return new g(r,o)}var n=l(r);this._originalInput=r,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=e(100*this._a)/100,this._format=o.format||n.format;this._gradientType=o.gradientType;if(this._r<1){this._r=e(this._r)}if(this._g<1){this._g=e(this._g)}if(this._b<1){this._b=e(this._b)}this._ok=n.ok;this._tc_id=a++}g.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var r=this.toRgb();return(r.r*299+r.g*587+r.b*114)/1e3},getLuminance:function(){var r=this.toRgb();var n,t,a,e,b,i;n=r.r/255;t=r.g/255;a=r.b/255;if(n<=.03928){e=n/12.92}else{e=o.pow((n+.055)/1.055,2.4)}if(t<=.03928){b=t/12.92}else{b=o.pow((t+.055)/1.055,2.4)}if(a<=.03928){i=a/12.92}else{i=o.pow((a+.055)/1.055,2.4)}return.2126*e+.7152*b+.0722*i},setAlpha:function(r){this._a=M(r);this._roundA=e(100*this._a)/100;return this},toHsv:function(){var r=f(this._r,this._g,this._b);return{h:r.h*360,s:r.s,v:r.v,a:this._a}},toHsvString:function(){var r=f(this._r,this._g,this._b);var o=e(r.h*360),n=e(r.s*100),t=e(r.v*100);return this._a==1?"hsv("+o+", "+n+"%, "+t+"%)":"hsva("+o+", "+n+"%, "+t+"%, "+this._roundA+")"},toHsl:function(){var r=u(this._r,this._g,this._b);return{h:r.h*360,s:r.s,l:r.l,a:this._a}},toHslString:function(){var r=u(this._r,this._g,this._b);var o=e(r.h*360),n=e(r.s*100),t=e(r.l*100);return this._a==1?"hsl("+o+", "+n+"%, "+t+"%)":"hsla("+o+", "+n+"%, "+t+"%, "+this._roundA+")"},toHex:function(r){return v(this._r,this._g,this._b,r)},toHexString:function(r){return"#"+this.toHex(r)},toHex8:function(r){return k(this._r,this._g,this._b,this._a,r)},toHex8String:function(r){return"#"+this.toHex8(r)},toRgb:function(){return{r:e(this._r),g:e(this._g),b:e(this._b),a:this._a}},toRgbString:function(){return this._a==1?"rgb("+e(this._r)+", "+e(this._g)+", "+e(this._b)+")":"rgba("+e(this._r)+", "+e(this._g)+", "+e(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:e(q(this._r,255)*100)+"%",g:e(q(this._g,255)*100)+"%",b:e(q(this._b,255)*100)+"%",a:this._a}},toPercentageRgbString:function(){return this._a==1?"rgb("+e(q(this._r,255)*100)+"%, "+e(q(this._g,255)*100)+"%, "+e(q(this._b,255)*100)+"%)":"rgba("+e(q(this._r,255)*100)+"%, "+e(q(this._g,255)*100)+"%, "+e(q(this._b,255)*100)+"%, "+this._roundA+")"},toName:function(){if(this._a===0){return"transparent"}if(this._a<1){return false}return L[v(this._r,this._g,this._b,true)]||false},toFilter:function(r){var o="#"+p(this._r,this._g,this._b,this._a);var n=o;var t=this._gradientType?"GradientType = 1, ":"";if(r){var a=g(r);n="#"+p(a._r,a._g,a._b,a._a)}return"progid:DXImageTransform.Microsoft.gradient("+t+"startColorstr="+o+",endColorstr="+n+")"},toString:function(r){var o=!!r;r=r||this._format;var n=false;var t=this._a<1&&this._a>=0;var a=!o&&t&&(r==="hex"||r==="hex6"||r==="hex3"||r==="hex4"||r==="hex8"||r==="name");if(a){if(r==="name"&&this._a===0){return this.toName()}return this.toRgbString()}if(r==="rgb"){n=this.toRgbString()}if(r==="prgb"){n=this.toPercentageRgbString()}if(r==="hex"||r==="hex6"){n=this.toHexString()}if(r==="hex3"){n=this.toHexString(true)}if(r==="hex4"){n=this.toHex8String(true)}if(r==="hex8"){n=this.toHex8String()}if(r==="name"){n=this.toName()}if(r==="hsl"){n=this.toHslString()}if(r==="hsv"){n=this.toHsvString()}return n||this.toHexString()},clone:function(){return g(this.toString())},_applyModification:function(r,o){var n=r.apply(null,[this].concat([].slice.call(o)));this._r=n._r;this._g=n._g;this._b=n._b;this.setAlpha(n._a);return this},lighten:function(){return this._applyModification(S,arguments)},brighten:function(){return this._applyModification(y,arguments)},darken:function(){return this._applyModification(N,arguments)},desaturate:function(){return this._applyModification(m,arguments)},saturate:function(){return this._applyModification(_,arguments)},greyscale:function(){return this._applyModification(z,arguments)},spin:function(){return this._applyModification(x,arguments)},_applyCombination:function(r,o){return r.apply(null,[this].concat([].slice.call(o)))},analogous:function(){return this._applyCombination(R,arguments)},complement:function(){return this._applyCombination(w,arguments)},monochromatic:function(){return this._applyCombination(C,arguments)},splitcomplement:function(){return this._applyCombination(H,arguments)},triad:function(){return this._applyCombination(A,arguments)},tetrad:function(){return this._applyCombination(F,arguments)}};g.fromRatio=function(r,o){if(typeof r=="object"){var n={};for(var t in r){if(r.hasOwnProperty(t)){if(t==="a"){n[t]=r[t]}else{n[t]=V(r[t])}}}r=n}return g(r,o)};function l(r){var o={r:0,g:0,b:0};var n=1;var t=null;var a=null;var e=null;var c=false;var g=false;if(typeof r=="string"){r=X(r)}if(typeof r=="object"){if(G(r.r)&&G(r.g)&&G(r.b)){o=s(r.r,r.g,r.b);c=true;g=String(r.r).substr(-1)==="%"?"prgb":"rgb"}else if(G(r.h)&&G(r.s)&&G(r.v)){t=V(r.s);a=V(r.v);o=d(r.h,t,a);c=true;g="hsv"}else if(G(r.h)&&G(r.s)&&G(r.l)){t=V(r.s);e=V(r.l);o=h(r.h,t,e);c=true;g="hsl"}if(r.hasOwnProperty("a")){n=r.a}}n=M(n);return{ok:c,format:r.format||g,r:b(255,i(o.r,0)),g:b(255,i(o.g,0)),b:b(255,i(o.b,0)),a:n}}function s(r,o,n){return{r:q(r,255)*255,g:q(o,255)*255,b:q(n,255)*255}}function u(r,o,n){r=q(r,255);o=q(o,255);n=q(n,255);var t=i(r,o,n),a=b(r,o,n);var e,c,g=(t+a)/2;if(t==a){e=c=0}else{var l=t-a;c=g>.5?l/(2-t-a):l/(t+a);switch(t){case r:e=(o-n)/l+(o<n?6:0);break;case o:e=(n-r)/l+2;break;case n:e=(r-o)/l+4;break}e/=6}return{h:e,s:c,l:g}}function h(r,o,n){var t,a,e;r=q(r,360);o=q(o,100);n=q(n,100);function b(r,o,n){if(n<0)n+=1;if(n>1)n-=1;if(n<1/6)return r+(o-r)*6*n;if(n<1/2)return o;if(n<2/3)return r+(o-r)*(2/3-n)*6;return r}if(o===0){t=a=e=n}else{var i=n<.5?n*(1+o):n+o-n*o;var c=2*n-i;t=b(c,i,r+1/3);a=b(c,i,r);e=b(c,i,r-1/3)}return{r:t*255,g:a*255,b:e*255}}function f(r,o,n){r=q(r,255);o=q(o,255);n=q(n,255);var t=i(r,o,n),a=b(r,o,n);var e,c,g=t;var l=t-a;c=t===0?0:l/t;if(t==a){e=0}else{switch(t){case r:e=(o-n)/l+(o<n?6:0);break;case o:e=(n-r)/l+2;break;case n:e=(r-o)/l+4;break}e/=6}return{h:e,s:c,v:g}}function d(r,n,t){r=q(r,360)*6;n=q(n,100);t=q(t,100);var a=o.floor(r),e=r-a,b=t*(1-n),i=t*(1-e*n),c=t*(1-(1-e)*n),g=a%6,l=[t,i,b,b,c,t][g],s=[c,t,t,i,b,b][g],u=[b,b,c,t,t,i][g];return{r:l*255,g:s*255,b:u*255}}function v(r,o,n,t){var a=[O(e(r).toString(16)),O(e(o).toString(16)),O(e(n).toString(16))];if(t&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)){return a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)}return a.join("")}function k(r,o,n,t,a){var b=[O(e(r).toString(16)),O(e(o).toString(16)),O(e(n).toString(16)),O($(t))];if(a&&b[0].charAt(0)==b[0].charAt(1)&&b[1].charAt(0)==b[1].charAt(1)&&b[2].charAt(0)==b[2].charAt(1)&&b[3].charAt(0)==b[3].charAt(1)){return b[0].charAt(0)+b[1].charAt(0)+b[2].charAt(0)+b[3].charAt(0)}return b.join("")}function p(r,o,n,t){var a=[O($(t)),O(e(r).toString(16)),O(e(o).toString(16)),O(e(n).toString(16))];return a.join("")}g.equals=function(r,o){if(!r||!o){return false}return g(r).toRgbString()==g(o).toRgbString()};g.random=function(){return g.fromRatio({r:c(),g:c(),b:c()})};function m(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.s-=o/100;n.s=I(n.s);return g(n)}function _(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.s+=o/100;n.s=I(n.s);return g(n)}function z(r){return g(r).desaturate(100)}function S(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.l+=o/100;n.l=I(n.l);return g(n)}function y(r,o){o=o===0?0:o||10;var n=g(r).toRgb();n.r=i(0,b(255,n.r-e(255*-(o/100))));n.g=i(0,b(255,n.g-e(255*-(o/100))));n.b=i(0,b(255,n.b-e(255*-(o/100))));return g(n)}function N(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.l-=o/100;n.l=I(n.l);return g(n)}function x(r,o){var n=g(r).toHsl();var t=(n.h+o)%360;n.h=t<0?360+t:t;return g(n)}function w(r){var o=g(r).toHsl();o.h=(o.h+180)%360;return g(o)}function A(r){var o=g(r).toHsl();var n=o.h;return[g(r),g({h:(n+120)%360,s:o.s,l:o.l}),g({h:(n+240)%360,s:o.s,l:o.l})]}function F(r){var o=g(r).toHsl();var n=o.h;return[g(r),g({h:(n+90)%360,s:o.s,l:o.l}),g({h:(n+180)%360,s:o.s,l:o.l}),g({h:(n+270)%360,s:o.s,l:o.l})]}function H(r){var o=g(r).toHsl();var n=o.h;return[g(r),g({h:(n+72)%360,s:o.s,l:o.l}),g({h:(n+216)%360,s:o.s,l:o.l})]}function R(r,o,n){o=o||6;n=n||30;var t=g(r).toHsl();var a=360/n;var e=[g(r)];for(t.h=(t.h-(a*o>>1)+720)%360;--o;){t.h=(t.h+a)%360;e.push(g(t))}return e}function C(r,o){o=o||6;var n=g(r).toHsv();var t=n.h,a=n.s,e=n.v;var b=[];var i=1/o;while(o--){b.push(g({h:t,s:a,v:e}));e=(e+i)%1}return b}g.mix=function(r,o,n){n=n===0?0:n||50;var t=g(r).toRgb();var a=g(o).toRgb();var e=n/100;var b={r:(a.r-t.r)*e+t.r,g:(a.g-t.g)*e+t.g,b:(a.b-t.b)*e+t.b,a:(a.a-t.a)*e+t.a};return g(b)};g.readability=function(r,n){var t=g(r);var a=g(n);return(o.max(t.getLuminance(),a.getLuminance())+.05)/(o.min(t.getLuminance(),a.getLuminance())+.05)};g.isReadable=function(r,o,n){var t=g.readability(r,o);var a,e;e=false;a=J(n);switch(a.level+a.size){case"AAsmall":case"AAAlarge":e=t>=4.5;break;case"AAlarge":e=t>=3;break;case"AAAsmall":e=t>=7;break}return e};g.mostReadable=function(r,o,n){var t=null;var a=0;var e;var b,i,c;n=n||{};b=n.includeFallbackColors;i=n.level;c=n.size;for(var l=0;l<o.length;l++){e=g.readability(r,o[l]);if(e>a){a=e;t=g(o[l])}}if(g.isReadable(r,t,{level:i,size:c})||!b){return t}else{n.includeFallbackColors=false;return g.mostReadable(r,["#fff","#000"],n)}};var E=g.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};var L=g.hexNames=j(E);function j(r){var o={};for(var n in r){if(r.hasOwnProperty(n)){o[r[n]]=n}}return o}function M(r){r=parseFloat(r);if(isNaN(r)||r<0||r>1){r=1}return r}function q(r,n){if(P(r)){r="100%"}var t=T(r);r=b(n,i(0,parseFloat(r)));if(t){r=parseInt(r*n,10)/100}if(o.abs(r-n)<1e-6){return 1}return r%n/parseFloat(n)}function I(r){return b(1,i(0,r))}function B(r){return parseInt(r,16)}function P(r){return typeof r=="string"&&r.indexOf(".")!=-1&&parseFloat(r)===1}function T(r){return typeof r==="string"&&r.indexOf("%")!=-1}function O(r){return r.length==1?"0"+r:""+r}function V(r){if(r<=1){r=r*100+"%"}return r}function $(r){return o.round(parseFloat(r)*255).toString(16)}function D(r){return B(r)/255}var U=function(){var r="[-\\+]?\\d+%?";var o="[-\\+]?\\d*\\.\\d+%?";var n="(?:"+o+")|(?:"+r+")";var t="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?";var a="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?";return{CSS_UNIT:new RegExp(n),rgb:new RegExp("rgb"+t),rgba:new RegExp("rgba"+a),hsl:new RegExp("hsl"+t),hsla:new RegExp("hsla"+a),hsv:new RegExp("hsv"+t),hsva:new RegExp("hsva"+a),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function G(r){return!!U.CSS_UNIT.exec(r)}function X(r){r=r.replace(n,"").replace(t,"").toLowerCase();var o=false;if(E[r]){r=E[r];o=true}else if(r=="transparent"){return{r:0,g:0,b:0,a:0,format:"name"}}var a;if(a=U.rgb.exec(r)){return{r:a[1],g:a[2],b:a[3]}}if(a=U.rgba.exec(r)){return{r:a[1],g:a[2],b:a[3],a:a[4]}}if(a=U.hsl.exec(r)){return{h:a[1],s:a[2],l:a[3]}}if(a=U.hsla.exec(r)){return{h:a[1],s:a[2],l:a[3],a:a[4]}}if(a=U.hsv.exec(r)){return{h:a[1],s:a[2],v:a[3]}}if(a=U.hsva.exec(r)){return{h:a[1],s:a[2],v:a[3],a:a[4]}}if(a=U.hex8.exec(r)){return{r:B(a[1]),g:B(a[2]),b:B(a[3]),a:D(a[4]),format:o?"name":"hex8"}}if(a=U.hex6.exec(r)){return{r:B(a[1]),g:B(a[2]),b:B(a[3]),format:o?"name":"hex"}}if(a=U.hex4.exec(r)){return{r:B(a[1]+""+a[1]),g:B(a[2]+""+a[2]),b:B(a[3]+""+a[3]),a:D(a[4]+""+a[4]),format:o?"name":"hex8"}}if(a=U.hex3.exec(r)){return{r:B(a[1]+""+a[1]),g:B(a[2]+""+a[2]),b:B(a[3]+""+a[3]),format:o?"name":"hex"}}return false}function J(r){var o,n;r=r||{level:"AA",size:"small"};o=(r.level||"AA").toUpperCase();n=(r.size||"small").toLowerCase();if(o!=="AA"&&o!=="AAA"){o="AA"}if(n!=="small"&&n!=="large"){n="small"}return{level:o,size:n}}if(r.exports){r.exports=g}else{window.tinycolor=g}})(Math)}));var E={color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"};var N={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N1={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N2={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N4={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N5={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N6={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N7={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N8={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N9={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N10={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N11={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N12={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N13={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N14={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N15={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N16={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N17={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N18={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N19={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N30={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N31={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N32={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N33={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N34={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N45={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N72={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N78={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN1={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN4={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN5={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN6={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN7={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN8={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN9={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var S2={color:"rgb(255, 255, 255)",background:"rgb(93, 165, 38)"};var S3={color:"rgb(255, 255, 255)",background:"rgb(111, 132, 191)"};var S4={color:"rgb(255, 255, 255)",background:"rgb(243, 96, 76)"};var S5={color:"rgb(255, 255, 255)",background:"rgb(27, 136, 164)"};var S6={color:"rgb(255, 255, 255)",background:"rgb(70, 51, 120)"};var S7={color:"rgb(0, 0, 0)",background:"rgb(255, 162, 1)"};var S8={color:"rgb(255, 255, 255)",background:"rgb(47, 20, 97)"};var S9={color:"rgb(255, 255, 255)",background:"rgb(35, 156, 54)"};var S10={color:"rgb(0, 0, 0)",background:"rgb(255, 177, 55)"};var S11={color:"rgb(255, 255, 255)",background:"rgb(130, 118, 170)"};var S14={color:"rgb(255, 255, 255)",background:"rgb(97, 55, 23)"};var S15={color:"rgb(255, 255, 255)",background:"rgb(198, 165, 126)"};var S16={color:"rgb(255, 255, 255)",background:"rgb(130, 187, 162)"};var S18={color:"rgb(255, 255, 255)",background:"rgb(235, 60, 46)"};var S19={color:"rgb(255, 255, 255)",background:"rgb(245, 130, 32)"};var S20={color:"rgb(255, 255, 255)",background:"rgb(240, 91, 148)"};var S21={color:"rgb(255, 255, 255)",background:"rgb(121, 156, 205)"};var S23={color:"rgb(255, 255, 255)",background:"rgb(115, 178, 75)"};var S24={color:"rgb(255, 255, 255)",background:"rgb(148, 102, 68)"};var S25={color:"rgb(255, 255, 255)",background:"rgb(180, 30, 142)"};var LineColors={2:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},3:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},4:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},5:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},6:{color:"rgb(255, 255, 255)",background:"rgb(202, 125, 60)"},7:{color:"rgb(255, 255, 255)",background:"rgb(0, 0, 0)"},8:{color:"rgb(0, 0, 0)",background:"rgb(138, 181, 31)"},9:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},10:{color:"rgb(255, 255, 255)",background:"rgb(225, 36, 114)"},11:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},12:{color:"rgb(0, 0, 0)",background:"rgb(94, 179, 219)"},13:{color:"rgb(0, 0, 0)",background:"rgb(255, 193, 0)"},14:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},15:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},16:{color:"rgb(255, 255, 255)",background:"rgb(16, 55, 82)"},17:{color:"rgb(255, 255, 255)",background:"rgb(142, 34, 77)"},19:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},21:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},23:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)",comment:"Seilbahn Rigiblick"},24:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)",comment:"Polybahn"},25:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)",comment:"Dolderbahn"},29:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},31:{color:"rgb(255, 255, 255)",background:"rgb(165, 162, 198)"},32:{color:"rgb(0, 0, 0)",background:"rgb(204, 178, 209)"},33:{color:"rgb(0, 0, 0)",background:"rgb(218, 214, 156)"},34:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},35:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},36:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},37:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},38:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},39:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},40:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},45:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},46:{color:"rgb(0, 0, 0)",background:"rgb(193, 213, 159)"},54:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},61:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},62:{color:"rgb(0, 0, 0)",background:"rgb(202, 192, 182)"},63:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},64:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},66:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},67:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},69:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},70:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},72:{color:"rgb(0, 0, 0)",background:"rgb(198, 166, 147)"},73:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},75:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},76:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},77:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},78:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},79:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},80:{color:"rgb(0, 0, 0)",background:"rgb(203, 207, 179)"},83:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},89:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},91:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},94:{color:"rgb(255, 255, 255)",background:"rgb(169, 163, 155)"},95:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},99:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},151:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},152:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},153:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},156:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},161:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},162:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},163:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},165:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},184:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},185:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},200:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},201:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},215:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},220:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},235:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},236:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},245:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},301:{color:"rgb(0, 0, 0)",background:"rgb(138, 181, 31)"},302:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},303:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},304:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},305:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},306:{color:"rgb(0, 0, 0)",background:"rgb(255, 193, 0)"},307:{color:"rgb(255, 255, 255)",background:"rgb(202, 125, 60)"},308:{color:"rgb(255, 255, 255)",background:"rgb(225, 36, 114)"},309:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},311:{color:"rgb(255, 255, 255)",background:"rgb(255, 93, 85)"},314:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},315:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},321:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},323:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},325:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},350:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},444:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},445:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},701:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},702:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},703:{color:"rgb(0, 0, 0)",background:"rgb(255, 193, 0)"},704:{color:"rgb(255, 255, 255)",background:"rgb(142, 34, 77)"},705:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},720:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},721:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},725:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},726:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},727:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},742:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},743:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},744:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},745:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},747:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},748:{color:"rgb(255, 255, 255)",background:"rgb(225, 36, 114)"},751:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},752:{color:"rgb(0, 0, 0)",background:"rgb(138, 181, 31)"},753:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},754:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},759:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},760:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},765:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},768:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},781:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},786:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},787:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},910:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},912:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},916:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},917:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},918:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},919:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},E:E,N:N,N1:N1,N2:N2,N4:N4,N5:N5,N6:N6,N7:N7,N8:N8,N9:N9,N10:N10,N11:N11,N12:N12,N13:N13,N14:N14,N15:N15,N16:N16,N17:N17,N18:N18,N19:N19,N30:N30,N31:N31,N32:N32,N33:N33,N34:N34,N45:N45,N72:N72,N78:N78,SN1:SN1,SN4:SN4,SN5:SN5,SN6:SN6,SN7:SN7,SN8:SN8,SN9:SN9,S2:S2,S3:S3,S4:S4,S5:S5,S6:S6,S7:S7,S8:S8,S9:S9,S10:S10,S11:S11,S14:S14,S15:S15,S16:S16,S18:S18,S19:S19,S20:S20,S21:S21,S23:S23,S24:S24,S25:S25};var stzhVbzLinechipCss='.sc-stzh-vbz-linechip-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vbz-linechip-h{display:none}.sc-stzh-vbz-linechip-h *.sc-stzh-vbz-linechip,.sc-stzh-vbz-linechip-h *.sc-stzh-vbz-linechip::before,.sc-stzh-vbz-linechip-h *.sc-stzh-vbz-linechip::after{-webkit-box-sizing:border-box;box-sizing:border-box}.sc-stzh-vbz-linechip-h{border-radius:var(--stzh-button-border-radius)}.stzh-vbz-linechip.sc-stzh-vbz-linechip{font-family:var(--stzh-font-family-heavy);font-weight:var(--stzh-font-weight-heavy);font-style:normal;font-size:var(--stzh-font-nano-font-size);line-height:var(--stzh-font-nano-text-line-height);position:relative;border:none;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--stzh-button-border-radius);width:2.5rem;height:1.5rem;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.stzh-vbz-linechip.sc-stzh-vbz-linechip::before{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;-webkit-transition:opacity var(--stzh-base-transition-animation-speed);transition:opacity var(--stzh-base-transition-animation-speed);background-color:var(--stzh-color-black16);border-radius:var(--stzh-button-border-radius)}.stzh-vbz-linechip__text.sc-stzh-vbz-linechip{position:relative}.stzh-vbz-linechip__global-icon.sc-stzh-vbz-linechip{--size:var(--stzh-icon-size-xxsmall)}.stzh-vbz-linechip__alert.sc-stzh-vbz-linechip{position:absolute;top:-0.3125rem;right:-0.3125rem;color:var(--stzh-color-error);background-color:var(--stzh-color-white);border-radius:100%;display:-ms-flexbox;display:flex}.stzh-vbz-linechip__alert-icon.sc-stzh-vbz-linechip{--size:var(--stzh-icon-size-xsmall)}.stzh-vbz-linechip.sc-stzh-vbz-linechip:hover::before,.stzh-vbz-linechip.sc-stzh-vbz-linechip:focus::before,.stzh-vbz-linechip--is-active.sc-stzh-vbz-linechip::before{opacity:1}.stzh-vbz-linechip--is-dark.sc-stzh-vbz-linechip::before{background-color:var(--stzh-color-white16)}.stzh-vbz-linechip--bg-white.sc-stzh-vbz-linechip{border:0.0625rem solid var(--stzh-color-black)}';var StzhVbzLinechip=function(){function r(r){var o=this;registerInstance(this,r);this.stzhFocus=createEvent(this,"stzhFocus",7);this.stzhBlur=createEvent(this,"stzhBlur",7);this.active=false;this.alert=false;this.global=false;this.onFocus=function(r){var n=new FocusEvent("focus",{view:window,bubbles:false,cancelable:false});o.element.dispatchEvent(n);o.stzhFocus.emit({component:"stzh-vbz-linechip",originalEvent:r})};this.onBlur=function(r){var n=new FocusEvent("blur",{view:window,bubbles:false,cancelable:false});o.element.dispatchEvent(n);o.stzhBlur.emit({component:"stzh-vbz-linechip",originalEvent:r})}}r.prototype.setFocus=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(r){this.chip.focus();return[2]}))}))};r.prototype.render=function(){var r;var o=this;var n=LineColors[this.line]||{};var t={color:this.global?"rgb(0, 0, 0)":n.color||"rgb(255, 255, 255)",background:this.global?"rgb(228, 105, 76)":n.background||"rgb(0, 0, 0)"};var a=tinycolor(t.background);var e=a.getBrightness()<50;var b=(r={"stzh-vbz-linechip":true,"stzh-vbz-linechip--is-global":this.global,"stzh-vbz-linechip--is-alert":this.alert,"stzh-vbz-linechip--is-active":this.active,"stzh-vbz-linechip--is-dark":e,"stzh-vbz-linechip--bg-white":t.background==="rgb(255, 255, 255)"},r["stzh-vbz-linechip--line-".concat(this.line)]=!!this.line,r);var i=n.comment||"";return h(Host,null,h("button",{ref:function(r){return o.chip=r},class:b,style:t,title:i,onFocus:this.onFocus,onBlur:this.onBlur},this.global?h("stzh-icon",{name:"important-warning",class:"stzh-vbz-linechip__global-icon"}):h("div",{class:"stzh-vbz-linechip__text"},this.line),this.alert&&h("div",{class:"stzh-vbz-linechip__alert"},h("stzh-icon",{name:"warning-big",class:"stzh-vbz-linechip__alert-icon"}))))};Object.defineProperty(r.prototype,"element",{get:function(){return getElement(this)},enumerable:false,configurable:true});return r}();StzhVbzLinechip.style=stzhVbzLinechipCss;export{StzhVbzLinechip as stzh_vbz_linechip};
|
|
1
|
+
var __awaiter=this&&this.__awaiter||function(r,o,n,t){function a(r){return r instanceof n?r:new n((function(o){o(r)}))}return new(n||(n=Promise))((function(n,e){function b(r){try{c(t.next(r))}catch(o){e(o)}}function i(r){try{c(t["throw"](r))}catch(o){e(o)}}function c(r){r.done?n(r.value):a(r.value).then(b,i)}c((t=t.apply(r,o||[])).next())}))};var __generator=this&&this.__generator||function(r,o){var n={label:0,sent:function(){if(e[0]&1)throw e[1];return e[1]},trys:[],ops:[]},t,a,e,b;return b={next:i(0),throw:i(1),return:i(2)},typeof Symbol==="function"&&(b[Symbol.iterator]=function(){return this}),b;function i(r){return function(o){return c([r,o])}}function c(b){if(t)throw new TypeError("Generator is already executing.");while(n)try{if(t=1,a&&(e=b[0]&2?a["return"]:b[0]?a["throw"]||((e=a["return"])&&e.call(a),0):a.next)&&!(e=e.call(a,b[1])).done)return e;if(a=0,e)b=[b[0]&2,e.value];switch(b[0]){case 0:case 1:e=b;break;case 4:n.label++;return{value:b[1],done:false};case 5:n.label++;a=b[1];b=[0];continue;case 7:b=n.ops.pop();n.trys.pop();continue;default:if(!(e=n.trys,e=e.length>0&&e[e.length-1])&&(b[0]===6||b[0]===2)){n=0;continue}if(b[0]===3&&(!e||b[1]>e[0]&&b[1]<e[3])){n.label=b[1];break}if(b[0]===6&&n.label<e[1]){n.label=e[1];e=b;break}if(e&&n.label<e[2]){n.label=e[2];n.ops.push(b);break}if(e[2])n.ops.pop();n.trys.pop();continue}b=o.call(r,n)}catch(i){b=[6,i];a=0}finally{t=e=0}if(b[0]&5)throw b[1];return{value:b[0]?b[1]:void 0,done:true}}};import{r as registerInstance,c as createEvent,h,a as Host,g as getElement}from"./index-84f71a43.js";import{c as createCommonjsModule}from"./_commonjsHelpers-ba3f0406.js";var tinycolor=createCommonjsModule((function(r){(function(o){var n=/^\s+/,t=/\s+$/,a=0,e=o.round,b=o.min,i=o.max,c=o.random;function g(r,o){r=r?r:"";o=o||{};if(r instanceof g){return r}if(!(this instanceof g)){return new g(r,o)}var n=l(r);this._originalInput=r,this._r=n.r,this._g=n.g,this._b=n.b,this._a=n.a,this._roundA=e(100*this._a)/100,this._format=o.format||n.format;this._gradientType=o.gradientType;if(this._r<1){this._r=e(this._r)}if(this._g<1){this._g=e(this._g)}if(this._b<1){this._b=e(this._b)}this._ok=n.ok;this._tc_id=a++}g.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var r=this.toRgb();return(r.r*299+r.g*587+r.b*114)/1e3},getLuminance:function(){var r=this.toRgb();var n,t,a,e,b,i;n=r.r/255;t=r.g/255;a=r.b/255;if(n<=.03928){e=n/12.92}else{e=o.pow((n+.055)/1.055,2.4)}if(t<=.03928){b=t/12.92}else{b=o.pow((t+.055)/1.055,2.4)}if(a<=.03928){i=a/12.92}else{i=o.pow((a+.055)/1.055,2.4)}return.2126*e+.7152*b+.0722*i},setAlpha:function(r){this._a=M(r);this._roundA=e(100*this._a)/100;return this},toHsv:function(){var r=f(this._r,this._g,this._b);return{h:r.h*360,s:r.s,v:r.v,a:this._a}},toHsvString:function(){var r=f(this._r,this._g,this._b);var o=e(r.h*360),n=e(r.s*100),t=e(r.v*100);return this._a==1?"hsv("+o+", "+n+"%, "+t+"%)":"hsva("+o+", "+n+"%, "+t+"%, "+this._roundA+")"},toHsl:function(){var r=u(this._r,this._g,this._b);return{h:r.h*360,s:r.s,l:r.l,a:this._a}},toHslString:function(){var r=u(this._r,this._g,this._b);var o=e(r.h*360),n=e(r.s*100),t=e(r.l*100);return this._a==1?"hsl("+o+", "+n+"%, "+t+"%)":"hsla("+o+", "+n+"%, "+t+"%, "+this._roundA+")"},toHex:function(r){return v(this._r,this._g,this._b,r)},toHexString:function(r){return"#"+this.toHex(r)},toHex8:function(r){return k(this._r,this._g,this._b,this._a,r)},toHex8String:function(r){return"#"+this.toHex8(r)},toRgb:function(){return{r:e(this._r),g:e(this._g),b:e(this._b),a:this._a}},toRgbString:function(){return this._a==1?"rgb("+e(this._r)+", "+e(this._g)+", "+e(this._b)+")":"rgba("+e(this._r)+", "+e(this._g)+", "+e(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:e(q(this._r,255)*100)+"%",g:e(q(this._g,255)*100)+"%",b:e(q(this._b,255)*100)+"%",a:this._a}},toPercentageRgbString:function(){return this._a==1?"rgb("+e(q(this._r,255)*100)+"%, "+e(q(this._g,255)*100)+"%, "+e(q(this._b,255)*100)+"%)":"rgba("+e(q(this._r,255)*100)+"%, "+e(q(this._g,255)*100)+"%, "+e(q(this._b,255)*100)+"%, "+this._roundA+")"},toName:function(){if(this._a===0){return"transparent"}if(this._a<1){return false}return L[v(this._r,this._g,this._b,true)]||false},toFilter:function(r){var o="#"+p(this._r,this._g,this._b,this._a);var n=o;var t=this._gradientType?"GradientType = 1, ":"";if(r){var a=g(r);n="#"+p(a._r,a._g,a._b,a._a)}return"progid:DXImageTransform.Microsoft.gradient("+t+"startColorstr="+o+",endColorstr="+n+")"},toString:function(r){var o=!!r;r=r||this._format;var n=false;var t=this._a<1&&this._a>=0;var a=!o&&t&&(r==="hex"||r==="hex6"||r==="hex3"||r==="hex4"||r==="hex8"||r==="name");if(a){if(r==="name"&&this._a===0){return this.toName()}return this.toRgbString()}if(r==="rgb"){n=this.toRgbString()}if(r==="prgb"){n=this.toPercentageRgbString()}if(r==="hex"||r==="hex6"){n=this.toHexString()}if(r==="hex3"){n=this.toHexString(true)}if(r==="hex4"){n=this.toHex8String(true)}if(r==="hex8"){n=this.toHex8String()}if(r==="name"){n=this.toName()}if(r==="hsl"){n=this.toHslString()}if(r==="hsv"){n=this.toHsvString()}return n||this.toHexString()},clone:function(){return g(this.toString())},_applyModification:function(r,o){var n=r.apply(null,[this].concat([].slice.call(o)));this._r=n._r;this._g=n._g;this._b=n._b;this.setAlpha(n._a);return this},lighten:function(){return this._applyModification(S,arguments)},brighten:function(){return this._applyModification(y,arguments)},darken:function(){return this._applyModification(N,arguments)},desaturate:function(){return this._applyModification(m,arguments)},saturate:function(){return this._applyModification(_,arguments)},greyscale:function(){return this._applyModification(z,arguments)},spin:function(){return this._applyModification(x,arguments)},_applyCombination:function(r,o){return r.apply(null,[this].concat([].slice.call(o)))},analogous:function(){return this._applyCombination(R,arguments)},complement:function(){return this._applyCombination(w,arguments)},monochromatic:function(){return this._applyCombination(C,arguments)},splitcomplement:function(){return this._applyCombination(H,arguments)},triad:function(){return this._applyCombination(A,arguments)},tetrad:function(){return this._applyCombination(F,arguments)}};g.fromRatio=function(r,o){if(typeof r=="object"){var n={};for(var t in r){if(r.hasOwnProperty(t)){if(t==="a"){n[t]=r[t]}else{n[t]=V(r[t])}}}r=n}return g(r,o)};function l(r){var o={r:0,g:0,b:0};var n=1;var t=null;var a=null;var e=null;var c=false;var g=false;if(typeof r=="string"){r=X(r)}if(typeof r=="object"){if(G(r.r)&&G(r.g)&&G(r.b)){o=s(r.r,r.g,r.b);c=true;g=String(r.r).substr(-1)==="%"?"prgb":"rgb"}else if(G(r.h)&&G(r.s)&&G(r.v)){t=V(r.s);a=V(r.v);o=d(r.h,t,a);c=true;g="hsv"}else if(G(r.h)&&G(r.s)&&G(r.l)){t=V(r.s);e=V(r.l);o=h(r.h,t,e);c=true;g="hsl"}if(r.hasOwnProperty("a")){n=r.a}}n=M(n);return{ok:c,format:r.format||g,r:b(255,i(o.r,0)),g:b(255,i(o.g,0)),b:b(255,i(o.b,0)),a:n}}function s(r,o,n){return{r:q(r,255)*255,g:q(o,255)*255,b:q(n,255)*255}}function u(r,o,n){r=q(r,255);o=q(o,255);n=q(n,255);var t=i(r,o,n),a=b(r,o,n);var e,c,g=(t+a)/2;if(t==a){e=c=0}else{var l=t-a;c=g>.5?l/(2-t-a):l/(t+a);switch(t){case r:e=(o-n)/l+(o<n?6:0);break;case o:e=(n-r)/l+2;break;case n:e=(r-o)/l+4;break}e/=6}return{h:e,s:c,l:g}}function h(r,o,n){var t,a,e;r=q(r,360);o=q(o,100);n=q(n,100);function b(r,o,n){if(n<0)n+=1;if(n>1)n-=1;if(n<1/6)return r+(o-r)*6*n;if(n<1/2)return o;if(n<2/3)return r+(o-r)*(2/3-n)*6;return r}if(o===0){t=a=e=n}else{var i=n<.5?n*(1+o):n+o-n*o;var c=2*n-i;t=b(c,i,r+1/3);a=b(c,i,r);e=b(c,i,r-1/3)}return{r:t*255,g:a*255,b:e*255}}function f(r,o,n){r=q(r,255);o=q(o,255);n=q(n,255);var t=i(r,o,n),a=b(r,o,n);var e,c,g=t;var l=t-a;c=t===0?0:l/t;if(t==a){e=0}else{switch(t){case r:e=(o-n)/l+(o<n?6:0);break;case o:e=(n-r)/l+2;break;case n:e=(r-o)/l+4;break}e/=6}return{h:e,s:c,v:g}}function d(r,n,t){r=q(r,360)*6;n=q(n,100);t=q(t,100);var a=o.floor(r),e=r-a,b=t*(1-n),i=t*(1-e*n),c=t*(1-(1-e)*n),g=a%6,l=[t,i,b,b,c,t][g],s=[c,t,t,i,b,b][g],u=[b,b,c,t,t,i][g];return{r:l*255,g:s*255,b:u*255}}function v(r,o,n,t){var a=[O(e(r).toString(16)),O(e(o).toString(16)),O(e(n).toString(16))];if(t&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)){return a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)}return a.join("")}function k(r,o,n,t,a){var b=[O(e(r).toString(16)),O(e(o).toString(16)),O(e(n).toString(16)),O($(t))];if(a&&b[0].charAt(0)==b[0].charAt(1)&&b[1].charAt(0)==b[1].charAt(1)&&b[2].charAt(0)==b[2].charAt(1)&&b[3].charAt(0)==b[3].charAt(1)){return b[0].charAt(0)+b[1].charAt(0)+b[2].charAt(0)+b[3].charAt(0)}return b.join("")}function p(r,o,n,t){var a=[O($(t)),O(e(r).toString(16)),O(e(o).toString(16)),O(e(n).toString(16))];return a.join("")}g.equals=function(r,o){if(!r||!o){return false}return g(r).toRgbString()==g(o).toRgbString()};g.random=function(){return g.fromRatio({r:c(),g:c(),b:c()})};function m(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.s-=o/100;n.s=I(n.s);return g(n)}function _(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.s+=o/100;n.s=I(n.s);return g(n)}function z(r){return g(r).desaturate(100)}function S(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.l+=o/100;n.l=I(n.l);return g(n)}function y(r,o){o=o===0?0:o||10;var n=g(r).toRgb();n.r=i(0,b(255,n.r-e(255*-(o/100))));n.g=i(0,b(255,n.g-e(255*-(o/100))));n.b=i(0,b(255,n.b-e(255*-(o/100))));return g(n)}function N(r,o){o=o===0?0:o||10;var n=g(r).toHsl();n.l-=o/100;n.l=I(n.l);return g(n)}function x(r,o){var n=g(r).toHsl();var t=(n.h+o)%360;n.h=t<0?360+t:t;return g(n)}function w(r){var o=g(r).toHsl();o.h=(o.h+180)%360;return g(o)}function A(r){var o=g(r).toHsl();var n=o.h;return[g(r),g({h:(n+120)%360,s:o.s,l:o.l}),g({h:(n+240)%360,s:o.s,l:o.l})]}function F(r){var o=g(r).toHsl();var n=o.h;return[g(r),g({h:(n+90)%360,s:o.s,l:o.l}),g({h:(n+180)%360,s:o.s,l:o.l}),g({h:(n+270)%360,s:o.s,l:o.l})]}function H(r){var o=g(r).toHsl();var n=o.h;return[g(r),g({h:(n+72)%360,s:o.s,l:o.l}),g({h:(n+216)%360,s:o.s,l:o.l})]}function R(r,o,n){o=o||6;n=n||30;var t=g(r).toHsl();var a=360/n;var e=[g(r)];for(t.h=(t.h-(a*o>>1)+720)%360;--o;){t.h=(t.h+a)%360;e.push(g(t))}return e}function C(r,o){o=o||6;var n=g(r).toHsv();var t=n.h,a=n.s,e=n.v;var b=[];var i=1/o;while(o--){b.push(g({h:t,s:a,v:e}));e=(e+i)%1}return b}g.mix=function(r,o,n){n=n===0?0:n||50;var t=g(r).toRgb();var a=g(o).toRgb();var e=n/100;var b={r:(a.r-t.r)*e+t.r,g:(a.g-t.g)*e+t.g,b:(a.b-t.b)*e+t.b,a:(a.a-t.a)*e+t.a};return g(b)};g.readability=function(r,n){var t=g(r);var a=g(n);return(o.max(t.getLuminance(),a.getLuminance())+.05)/(o.min(t.getLuminance(),a.getLuminance())+.05)};g.isReadable=function(r,o,n){var t=g.readability(r,o);var a,e;e=false;a=J(n);switch(a.level+a.size){case"AAsmall":case"AAAlarge":e=t>=4.5;break;case"AAlarge":e=t>=3;break;case"AAAsmall":e=t>=7;break}return e};g.mostReadable=function(r,o,n){var t=null;var a=0;var e;var b,i,c;n=n||{};b=n.includeFallbackColors;i=n.level;c=n.size;for(var l=0;l<o.length;l++){e=g.readability(r,o[l]);if(e>a){a=e;t=g(o[l])}}if(g.isReadable(r,t,{level:i,size:c})||!b){return t}else{n.includeFallbackColors=false;return g.mostReadable(r,["#fff","#000"],n)}};var E=g.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};var L=g.hexNames=j(E);function j(r){var o={};for(var n in r){if(r.hasOwnProperty(n)){o[r[n]]=n}}return o}function M(r){r=parseFloat(r);if(isNaN(r)||r<0||r>1){r=1}return r}function q(r,n){if(P(r)){r="100%"}var t=T(r);r=b(n,i(0,parseFloat(r)));if(t){r=parseInt(r*n,10)/100}if(o.abs(r-n)<1e-6){return 1}return r%n/parseFloat(n)}function I(r){return b(1,i(0,r))}function B(r){return parseInt(r,16)}function P(r){return typeof r=="string"&&r.indexOf(".")!=-1&&parseFloat(r)===1}function T(r){return typeof r==="string"&&r.indexOf("%")!=-1}function O(r){return r.length==1?"0"+r:""+r}function V(r){if(r<=1){r=r*100+"%"}return r}function $(r){return o.round(parseFloat(r)*255).toString(16)}function D(r){return B(r)/255}var U=function(){var r="[-\\+]?\\d+%?";var o="[-\\+]?\\d*\\.\\d+%?";var n="(?:"+o+")|(?:"+r+")";var t="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?";var a="[\\s|\\(]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")[,|\\s]+("+n+")\\s*\\)?";return{CSS_UNIT:new RegExp(n),rgb:new RegExp("rgb"+t),rgba:new RegExp("rgba"+a),hsl:new RegExp("hsl"+t),hsla:new RegExp("hsla"+a),hsv:new RegExp("hsv"+t),hsva:new RegExp("hsva"+a),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function G(r){return!!U.CSS_UNIT.exec(r)}function X(r){r=r.replace(n,"").replace(t,"").toLowerCase();var o=false;if(E[r]){r=E[r];o=true}else if(r=="transparent"){return{r:0,g:0,b:0,a:0,format:"name"}}var a;if(a=U.rgb.exec(r)){return{r:a[1],g:a[2],b:a[3]}}if(a=U.rgba.exec(r)){return{r:a[1],g:a[2],b:a[3],a:a[4]}}if(a=U.hsl.exec(r)){return{h:a[1],s:a[2],l:a[3]}}if(a=U.hsla.exec(r)){return{h:a[1],s:a[2],l:a[3],a:a[4]}}if(a=U.hsv.exec(r)){return{h:a[1],s:a[2],v:a[3]}}if(a=U.hsva.exec(r)){return{h:a[1],s:a[2],v:a[3],a:a[4]}}if(a=U.hex8.exec(r)){return{r:B(a[1]),g:B(a[2]),b:B(a[3]),a:D(a[4]),format:o?"name":"hex8"}}if(a=U.hex6.exec(r)){return{r:B(a[1]),g:B(a[2]),b:B(a[3]),format:o?"name":"hex"}}if(a=U.hex4.exec(r)){return{r:B(a[1]+""+a[1]),g:B(a[2]+""+a[2]),b:B(a[3]+""+a[3]),a:D(a[4]+""+a[4]),format:o?"name":"hex8"}}if(a=U.hex3.exec(r)){return{r:B(a[1]+""+a[1]),g:B(a[2]+""+a[2]),b:B(a[3]+""+a[3]),format:o?"name":"hex"}}return false}function J(r){var o,n;r=r||{level:"AA",size:"small"};o=(r.level||"AA").toUpperCase();n=(r.size||"small").toLowerCase();if(o!=="AA"&&o!=="AAA"){o="AA"}if(n!=="small"&&n!=="large"){n="small"}return{level:o,size:n}}if(r.exports){r.exports=g}else{window.tinycolor=g}})(Math)}));var E={color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"};var N={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N1={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N2={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N4={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N5={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N6={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N7={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N8={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N9={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N10={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N11={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N12={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N13={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N14={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N15={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N16={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N17={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N18={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N19={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N30={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N31={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N32={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N33={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N34={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N45={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N72={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var N78={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN1={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN4={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN5={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN6={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN7={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN8={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var SN9={color:"rgb(255, 241, 0)",background:"rgb(0, 0, 0)"};var S2={color:"rgb(255, 255, 255)",background:"rgb(93, 165, 38)"};var S3={color:"rgb(255, 255, 255)",background:"rgb(111, 132, 191)"};var S4={color:"rgb(255, 255, 255)",background:"rgb(243, 96, 76)"};var S5={color:"rgb(255, 255, 255)",background:"rgb(27, 136, 164)"};var S6={color:"rgb(255, 255, 255)",background:"rgb(70, 51, 120)"};var S7={color:"rgb(0, 0, 0)",background:"rgb(255, 162, 1)"};var S8={color:"rgb(255, 255, 255)",background:"rgb(47, 20, 97)"};var S9={color:"rgb(255, 255, 255)",background:"rgb(35, 156, 54)"};var S10={color:"rgb(0, 0, 0)",background:"rgb(255, 177, 55)"};var S11={color:"rgb(255, 255, 255)",background:"rgb(130, 118, 170)"};var S14={color:"rgb(255, 255, 255)",background:"rgb(97, 55, 23)"};var S15={color:"rgb(255, 255, 255)",background:"rgb(198, 165, 126)"};var S16={color:"rgb(255, 255, 255)",background:"rgb(130, 187, 162)"};var S18={color:"rgb(255, 255, 255)",background:"rgb(235, 60, 46)"};var S19={color:"rgb(255, 255, 255)",background:"rgb(245, 130, 32)"};var S20={color:"rgb(255, 255, 255)",background:"rgb(240, 91, 148)"};var S21={color:"rgb(255, 255, 255)",background:"rgb(121, 156, 205)"};var S23={color:"rgb(255, 255, 255)",background:"rgb(115, 178, 75)"};var S24={color:"rgb(255, 255, 255)",background:"rgb(148, 102, 68)"};var S25={color:"rgb(255, 255, 255)",background:"rgb(180, 30, 142)"};var LineColors={2:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},3:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},4:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},5:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},6:{color:"rgb(255, 255, 255)",background:"rgb(202, 125, 60)"},7:{color:"rgb(255, 255, 255)",background:"rgb(0, 0, 0)"},8:{color:"rgb(0, 0, 0)",background:"rgb(138, 181, 31)"},9:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},10:{color:"rgb(255, 255, 255)",background:"rgb(225, 36, 114)"},11:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},12:{color:"rgb(0, 0, 0)",background:"rgb(94, 179, 219)"},13:{color:"rgb(0, 0, 0)",background:"rgb(255, 193, 0)"},14:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},15:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},16:{color:"rgb(255, 255, 255)",background:"rgb(16, 55, 82)"},17:{color:"rgb(255, 255, 255)",background:"rgb(142, 34, 77)"},19:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},21:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},23:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)",comment:"Seilbahn Rigiblick"},24:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)",comment:"Polybahn"},25:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)",comment:"Dolderbahn"},29:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},31:{color:"rgb(255, 255, 255)",background:"rgb(165, 162, 198)"},32:{color:"rgb(0, 0, 0)",background:"rgb(204, 178, 209)"},33:{color:"rgb(0, 0, 0)",background:"rgb(218, 214, 156)"},34:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},35:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},36:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},37:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},38:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},39:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},40:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},45:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},46:{color:"rgb(0, 0, 0)",background:"rgb(193, 213, 159)"},54:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},61:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},62:{color:"rgb(0, 0, 0)",background:"rgb(202, 192, 182)"},63:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},64:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},66:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},67:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},69:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},70:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},72:{color:"rgb(0, 0, 0)",background:"rgb(198, 166, 147)"},73:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},75:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},76:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},77:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},78:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},79:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},80:{color:"rgb(0, 0, 0)",background:"rgb(203, 207, 179)"},83:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},89:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},91:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},94:{color:"rgb(255, 255, 255)",background:"rgb(169, 163, 155)"},95:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},99:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},151:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},152:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},153:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},156:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},161:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},162:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},163:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},165:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},184:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},185:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},200:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},201:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},215:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},220:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},235:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},236:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},245:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},301:{color:"rgb(0, 0, 0)",background:"rgb(138, 181, 31)"},302:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},303:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},304:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},305:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},306:{color:"rgb(0, 0, 0)",background:"rgb(255, 193, 0)"},307:{color:"rgb(255, 255, 255)",background:"rgb(202, 125, 60)"},308:{color:"rgb(255, 255, 255)",background:"rgb(225, 36, 114)"},309:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},311:{color:"rgb(255, 255, 255)",background:"rgb(255, 93, 85)"},314:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},315:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},321:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},323:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},325:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},350:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},444:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},445:{color:"rgb(0, 0, 0)",background:"rgb(255, 204, 0)"},701:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},702:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},703:{color:"rgb(0, 0, 0)",background:"rgb(255, 193, 0)"},704:{color:"rgb(255, 255, 255)",background:"rgb(142, 34, 77)"},705:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},720:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},721:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},725:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},726:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},727:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},742:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},743:{color:"rgb(255, 255, 255)",background:"rgb(226, 10, 22)"},744:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},745:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},747:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},748:{color:"rgb(255, 255, 255)",background:"rgb(225, 36, 114)"},751:{color:"rgb(255, 255, 255)",background:"rgb(17, 41, 111)"},752:{color:"rgb(0, 0, 0)",background:"rgb(138, 181, 31)"},753:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},754:{color:"rgb(255, 255, 255)",background:"rgb(115, 69, 34)"},759:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},760:{color:"rgb(255, 255, 255)",background:"rgb(0, 137, 47)"},765:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},768:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},781:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},786:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},787:{color:"rgb(255, 255, 255)",background:"rgb(0, 141, 197)"},910:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},912:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},916:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},917:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},918:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},919:{color:"rgb(0, 0, 0)",background:"rgb(255, 255, 255)"},E:E,N:N,N1:N1,N2:N2,N4:N4,N5:N5,N6:N6,N7:N7,N8:N8,N9:N9,N10:N10,N11:N11,N12:N12,N13:N13,N14:N14,N15:N15,N16:N16,N17:N17,N18:N18,N19:N19,N30:N30,N31:N31,N32:N32,N33:N33,N34:N34,N45:N45,N72:N72,N78:N78,SN1:SN1,SN4:SN4,SN5:SN5,SN6:SN6,SN7:SN7,SN8:SN8,SN9:SN9,S2:S2,S3:S3,S4:S4,S5:S5,S6:S6,S7:S7,S8:S8,S9:S9,S10:S10,S11:S11,S14:S14,S15:S15,S16:S16,S18:S18,S19:S19,S20:S20,S21:S21,S23:S23,S24:S24,S25:S25};var stzhVbzLinechipCss='.sc-stzh-vbz-linechip-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vbz-linechip-h{display:none}.sc-stzh-vbz-linechip-h *.sc-stzh-vbz-linechip,.sc-stzh-vbz-linechip-h *.sc-stzh-vbz-linechip::before,.sc-stzh-vbz-linechip-h *.sc-stzh-vbz-linechip::after{-webkit-box-sizing:border-box;box-sizing:border-box}.sc-stzh-vbz-linechip-h{border-radius:var(--stzh-button-border-radius)}.stzh-vbz-linechip.sc-stzh-vbz-linechip{font-family:var(--stzh-font-family-heavy);font-weight:var(--stzh-font-weight-heavy);font-style:normal;font-size:var(--stzh-font-nano-font-size);line-height:var(--stzh-font-nano-text-line-height);position:relative;border:none;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--stzh-button-border-radius);width:2.5rem;height:1.5rem;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.stzh-vbz-linechip.sc-stzh-vbz-linechip::before{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;-webkit-transition:opacity var(--stzh-base-transition-animation-speed);transition:opacity var(--stzh-base-transition-animation-speed);background-color:var(--stzh-color-black16);border-radius:var(--stzh-button-border-radius)}.stzh-vbz-linechip__text.sc-stzh-vbz-linechip{position:relative}.stzh-vbz-linechip__global-icon.sc-stzh-vbz-linechip{--size:var(--stzh-icon-size-xxsmall)}.stzh-vbz-linechip__alert.sc-stzh-vbz-linechip{position:absolute;top:-0.3125rem;right:-0.3125rem;color:var(--stzh-color-error);background-color:var(--stzh-color-white);border-radius:100%;display:-ms-flexbox;display:flex}.stzh-vbz-linechip__alert-icon.sc-stzh-vbz-linechip{--size:var(--stzh-icon-size-xsmall)}.stzh-vbz-linechip.sc-stzh-vbz-linechip:hover::before,.stzh-vbz-linechip.sc-stzh-vbz-linechip:focus::before,.stzh-vbz-linechip--is-active.sc-stzh-vbz-linechip::before{opacity:1}.stzh-vbz-linechip--is-dark.sc-stzh-vbz-linechip::before{background-color:var(--stzh-color-white16)}.stzh-vbz-linechip--bg-white.sc-stzh-vbz-linechip{border:0.0625rem solid var(--stzh-color-black)}';var StzhVbzLinechip=function(){function r(r){var o=this;registerInstance(this,r);this.stzhFocus=createEvent(this,"stzhFocus",7);this.stzhBlur=createEvent(this,"stzhBlur",7);this.active=false;this.alert=false;this.global=false;this.onFocus=function(r){var n=new FocusEvent("focus",{view:window,bubbles:false,cancelable:false});o.element.dispatchEvent(n);o.stzhFocus.emit({component:"stzh-vbz-linechip",originalEvent:r})};this.onBlur=function(r){var n=new FocusEvent("blur",{view:window,bubbles:false,cancelable:false});o.element.dispatchEvent(n);o.stzhBlur.emit({component:"stzh-vbz-linechip",originalEvent:r})}}r.prototype.setFocus=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(r){this.chip.focus();return[2]}))}))};r.prototype.render=function(){var r;var o=this;var n=LineColors[this.line]||{};var t={color:this.global?"rgb(0, 0, 0)":n.color||"rgb(255, 255, 255)",background:this.global?"rgb(228, 105, 76)":n.background||"rgb(0, 0, 0)"};var a=tinycolor(t.background);var e=a.getBrightness()<50;var b=(r={"stzh-vbz-linechip":true,"stzh-vbz-linechip--is-global":this.global,"stzh-vbz-linechip--is-alert":this.alert,"stzh-vbz-linechip--is-active":this.active,"stzh-vbz-linechip--is-dark":e,"stzh-vbz-linechip--bg-white":t.background==="rgb(255, 255, 255)"},r["stzh-vbz-linechip--line-".concat(this.line)]=!!this.line,r);var i=n.comment||"";return h(Host,null,h("button",{ref:function(r){return o.chip=r},class:b,style:t,title:i,onFocus:this.onFocus,onBlur:this.onBlur},this.global?h("stzh-icon",{name:"important-warning",class:"stzh-vbz-linechip__global-icon"}):h("div",{class:"stzh-vbz-linechip__text"},this.line),this.alert&&h("div",{class:"stzh-vbz-linechip__alert"},h("stzh-icon",{name:"warning-big",class:"stzh-vbz-linechip__alert-icon"}))))};Object.defineProperty(r.prototype,"element",{get:function(){return getElement(this)},enumerable:false,configurable:true});return r}();StzhVbzLinechip.style=stzhVbzLinechipCss;export{StzhVbzLinechip as stzh_vbz_linechip};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var __awaiter=this&&this.__awaiter||function(t,e,r,a){function n(t){return t instanceof r?t:new r((function(e){e(t)}))}return new(r||(r=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(e){i(e)}}function s(t){try{c(a["throw"](t))}catch(e){i(e)}}function c(t){t.done?r(t.value):n(t.value).then(o,s)}c((a=a.apply(t,e||[])).next())}))};var __generator=this&&this.__generator||function(t,e){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},a,n,i,o;return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(t){return function(e){return c([t,e])}}function c(o){if(a)throw new TypeError("Generator is already executing.");while(r)try{if(a=1,n&&(i=o[0]&2?n["return"]:o[0]?n["throw"]||((i=n["return"])&&i.call(n),0):n.next)&&!(i=i.call(n,o[1])).done)return i;if(n=0,i)o=[o[0]&2,i.value];switch(o[0]){case 0:case 1:i=o;break;case 4:r.label++;return{value:o[1],done:false};case 5:r.label++;n=o[1];o=[0];continue;case 7:o=r.ops.pop();r.trys.pop();continue;default:if(!(i=r.trys,i=i.length>0&&i[i.length-1])&&(o[0]===6||o[0]===2)){r=0;continue}if(o[0]===3&&(!i||o[1]>i[0]&&o[1]<i[3])){r.label=o[1];break}if(o[0]===6&&r.label<i[1]){r.label=i[1];i=o;break}if(i&&r.label<i[2]){r.label=i[2];r.ops.push(o);break}if(i[2])r.ops.pop();r.trys.pop();continue}o=e.call(t,r)}catch(s){o=[6,s];n=0}finally{a=i=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:true}}};import{r as registerInstance,h,a as Host,g as getElement}from"./index-
|
|
1
|
+
var __awaiter=this&&this.__awaiter||function(t,e,r,a){function n(t){return t instanceof r?t:new r((function(e){e(t)}))}return new(r||(r=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(e){i(e)}}function s(t){try{c(a["throw"](t))}catch(e){i(e)}}function c(t){t.done?r(t.value):n(t.value).then(o,s)}c((a=a.apply(t,e||[])).next())}))};var __generator=this&&this.__generator||function(t,e){var r={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},a,n,i,o;return o={next:s(0),throw:s(1),return:s(2)},typeof Symbol==="function"&&(o[Symbol.iterator]=function(){return this}),o;function s(t){return function(e){return c([t,e])}}function c(o){if(a)throw new TypeError("Generator is already executing.");while(r)try{if(a=1,n&&(i=o[0]&2?n["return"]:o[0]?n["throw"]||((i=n["return"])&&i.call(n),0):n.next)&&!(i=i.call(n,o[1])).done)return i;if(n=0,i)o=[o[0]&2,i.value];switch(o[0]){case 0:case 1:i=o;break;case 4:r.label++;return{value:o[1],done:false};case 5:r.label++;n=o[1];o=[0];continue;case 7:o=r.ops.pop();r.trys.pop();continue;default:if(!(i=r.trys,i=i.length>0&&i[i.length-1])&&(o[0]===6||o[0]===2)){r=0;continue}if(o[0]===3&&(!i||o[1]>i[0]&&o[1]<i[3])){r.label=o[1];break}if(o[0]===6&&r.label<i[1]){r.label=i[1];i=o;break}if(i&&r.label<i[2]){r.label=i[2];r.ops.push(o);break}if(i[2])r.ops.pop();r.trys.pop();continue}o=e.call(t,r)}catch(s){o=[6,s];n=0}finally{a=i=0}if(o[0]&5)throw o[1];return{value:o[0]?o[1]:void 0,done:true}}};import{r as registerInstance,h,a as Host,g as getElement}from"./index-84f71a43.js";import{a as axios}from"./index-545902f4.js";import{a as createParagraphsFromBrs}from"./string-utils-f98ee4e8.js";import{f as fetchTranslations}from"./translation-utils-2623783f.js";import{c as createGlobalAdapter}from"./date-adapter-cbc340fa.js";var stzhVbzMajortickerCss=".sc-stzh-vbz-majorticker-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vbz-majorticker-h{display:none}.sc-stzh-vbz-majorticker-h *.sc-stzh-vbz-majorticker,.sc-stzh-vbz-majorticker-h *.sc-stzh-vbz-majorticker::before,.sc-stzh-vbz-majorticker-h *.sc-stzh-vbz-majorticker::after{-webkit-box-sizing:border-box;box-sizing:border-box}.stzh-vbz-majorticker__ghettobox.sc-stzh-vbz-majorticker{--background-color:var(--stzh-color-coral);--stzh-base-invert-color:var(--stzh-color-black)}";var DISTURBANCE_INFORMATION="0";var BASE_TYPE_GLOBAL="GLOBAL";var CHANNEL_TICKER="ticker";var CHANNEL_INFO_URL_FILTER="stadt-zuerich.ch/vbz";var StzhVbzMajorticker=function(){function t(t){var e=this;registerInstance(this,t);this.api="https://fpbe.zvv.ch/restproxy/himsearch?format=json&accessId=unic&channels=ticker&additionalfields=tickers:VBZ&orderBy=LMOD_DESC&lang={lang}";this.data="";this.moreInfoLink="https://zvv.ch/zvv/{lang}/fahrplan/vl.html?himIds={id}";this.ghettoboxShown=true;this.onGhettoboxOpen=function(){e.ghettoboxShown=true};this.onGhettoboxClose=function(){e.ghettoboxShown=false}}t.prototype.apiWatcher=function(t){return __awaiter(this,void 0,void 0,(function(){var e,r;return __generator(this,(function(a){switch(a.label){case 0:if(!t){return[2]}e=this.api.replace(/\{lang\}/,this.localization.$locale);e=e+(e.includes("?")?"&":"?")+Date.now();return[4,axios.get(e)];case 1:r=a.sent().data;this.data=r;return[2]}}))}))};t.prototype.dataWatcher=function(t){return __awaiter(this,void 0,void 0,(function(){var e,r,a,n,i;return __generator(this,(function(o){if(typeof t==="string"){this._data=JSON.parse(t)}else{this._data=t}a=(r=(e=this._data)===null||e===void 0?void 0:e.Message)===null||r===void 0?void 0:r.find((function(t){return t.category===DISTURBANCE_INFORMATION&&t.baseType===BASE_TYPE_GLOBAL}));if(a){n=a.channel.filter((function(t){return t.name===CHANNEL_TICKER&&t.url})).map((function(t){return t.url})).reduce((function(t,e){return t.concat(e)}),[]);i=n.find((function(t){return t.url.indexOf(CHANNEL_INFO_URL_FILTER)!==-1}));this.disturbance={id:a.id,head:a.head,text:createParagraphsFromBrs(a.text),startDate:new Date("".concat(a.sDate,"T").concat(a.sTime,"+02:00")),endDate:new Date("".concat(a.eDate,"T").concat(a.eTime,"+02:00")),altStart:a.altStart,altEnd:a.altEnd,infoUrl:i}}return[2]}))}))};t.prototype.componentWillLoad=function(){return __awaiter(this,void 0,void 0,(function(){var t;return __generator(this,(function(e){switch(e.label){case 0:if(!!this.localization)return[3,2];t=this;return[4,fetchTranslations(this.element,"vbz-majorticker")];case 1:t.localization=e.sent();e.label=2;case 2:if(!this.dateAdapter){this.dateAdapter=createGlobalAdapter(this.localization.$formats,this.localization.$globals)}if(!this.data)return[3,4];return[4,this.dataWatcher(this.data)];case 3:e.sent();return[3,6];case 4:return[4,this.apiWatcher(this.api)];case 5:e.sent();e.label=6;case 6:return[2]}}))}))};t.prototype.render=function(){var t={"stzh-vbz-majorticker":true};return h(Host,{hidden:!this.disturbance||!this.ghettoboxShown},h("div",{class:t},this.disturbance&&h("stzh-ghettobox",{onStzhOpen:this.onGhettoboxOpen,onStzhClose:this.onGhettoboxClose,class:"stzh-vbz-majorticker__ghettobox",closeTimeKey:this.ghettoboxCloseTimeKey,mainTitle:this.disturbance.head,publishDate:this.disturbance.startDate},h("stzh-richtext",{innerHTML:this.disturbance.text}),this.disturbance.infoUrl?h("stzh-button",{slot:"button",href:this.disturbance.infoUrl.url},this.disturbance.infoUrl.name):h("stzh-button",{slot:"button",target:"_blank",href:this.moreInfoLink.replace(/\{lang\}/,this.localization.$locale).replace(/\{id\}/,this.disturbance.id)},this.localization.moreInfo))))};Object.defineProperty(t.prototype,"element",{get:function(){return getElement(this)},enumerable:false,configurable:true});Object.defineProperty(t,"watchers",{get:function(){return{api:["apiWatcher"],data:["dataWatcher"]}},enumerable:false,configurable:true});return t}();StzhVbzMajorticker.style=stzhVbzMajortickerCss;export{StzhVbzMajorticker as stzh_vbz_majorticker};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var __awaiter=this&&this.__awaiter||function(t,e,i,r){function s(t){return t instanceof i?t:new i((function(e){e(t)}))}return new(i||(i=Promise))((function(i,a){function c(t){try{l(r.next(t))}catch(e){a(e)}}function n(t){try{l(r["throw"](t))}catch(e){a(e)}}function l(t){t.done?i(t.value):s(t.value).then(c,n)}l((r=r.apply(t,e||[])).next())}))};var __generator=this&&this.__generator||function(t,e){var i={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},r,s,a,c;return c={next:n(0),throw:n(1),return:n(2)},typeof Symbol==="function"&&(c[Symbol.iterator]=function(){return this}),c;function n(t){return function(e){return l([t,e])}}function l(c){if(r)throw new TypeError("Generator is already executing.");while(i)try{if(r=1,s&&(a=c[0]&2?s["return"]:c[0]?s["throw"]||((a=s["return"])&&a.call(s),0):s.next)&&!(a=a.call(s,c[1])).done)return a;if(s=0,a)c=[c[0]&2,a.value];switch(c[0]){case 0:case 1:a=c;break;case 4:i.label++;return{value:c[1],done:false};case 5:i.label++;s=c[1];c=[0];continue;case 7:c=i.ops.pop();i.trys.pop();continue;default:if(!(a=i.trys,a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){i.label=c[1];break}if(c[0]===6&&i.label<a[1]){i.label=a[1];a=c;break}if(a&&i.label<a[2]){i.label=a[2];i.ops.push(c);break}if(a[2])i.ops.pop();i.trys.pop();continue}c=e.call(t,i)}catch(n){c=[6,n];s=0}finally{r=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:true}}};import{r as registerInstance,h,F as Fragment,a as Host,g as getElement}from"./index-0e6d34c6.js";import{a as axios}from"./index-545902f4.js";import{f as fetchTranslations}from"./translation-utils-2623783f.js";import{c as createGlobalAdapter}from"./date-adapter-cbc340fa.js";var stzhVbzTickerCss=".sc-stzh-vbz-ticker-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vbz-ticker-h{display:none}.sc-stzh-vbz-ticker-h *.sc-stzh-vbz-ticker,.sc-stzh-vbz-ticker-h *.sc-stzh-vbz-ticker::before,.sc-stzh-vbz-ticker-h *.sc-stzh-vbz-ticker::after{-webkit-box-sizing:border-box;box-sizing:border-box}.stzh-vbz-ticker.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:relative}@media screen and (min-width: 1024px){.stzh-vbz-ticker.sc-stzh-vbz-ticker{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:start;align-items:flex-start}}.stzh-vbz-ticker__icon.sc-stzh-vbz-ticker{--size:var(--stzh-icon-size-small);margin-right:var(--stzh-space-xsmall)}.stzh-vbz-ticker__title.sc-stzh-vbz-ticker{font-family:var(--stzh-font-family-medium);font-weight:var(--stzh-font-weight-medium);font-style:normal;font-size:var(--stzh-font-curve-p1-default-font-size, var(--stzh-font-milli-font-size));line-height:var(--stzh-font-curve-p1-default-text-line-height, var(--stzh-font-milli-text-line-height));letter-spacing:var(--stzh-font-curve-p1-default-text-letter-spacing);display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (min-width: 1024px){.stzh-vbz-ticker__title.sc-stzh-vbz-ticker{font-size:var(--stzh-font-curve-p1-medium-font-size, var(--stzh-font-centi-font-size));line-height:var(--stzh-font-curve-p1-medium-text-line-height, var(--stzh-font-centi-text-line-height));letter-spacing:var(--stzh-font-curve-p1-medium-text-letter-spacing)}}.stzh-vbz-ticker__title-parts.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--stzh-space-xxxsmall) / -1) 0}.stzh-vbz-ticker__title-part.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;white-space:nowrap;margin:var(--stzh-space-xxxsmall) 0}.stzh-vbz-ticker__title-part.sc-stzh-vbz-ticker:not(:last-child){margin-right:var(--stzh-space-large)}.stzh-vbz-ticker__title-part--no-disturbances.sc-stzh-vbz-ticker{color:var(--stzh-color-truegreen)}.stzh-vbz-ticker__title-part--major-events.sc-stzh-vbz-ticker{color:var(--stzh-color-coral)}.stzh-vbz-ticker__title-part--disturbances.sc-stzh-vbz-ticker{color:var(--stzh-color-error)}.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{font-size:var(--stzh-font-micro-font-size);line-height:var(--stzh-font-micro-text-line-height);margin-top:var(--stzh-space-xsmall)}@media screen and (min-width: 600px){.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-small)}}@media screen and (min-width: 1024px){.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-medium)}}@media screen and (min-width: 1260px){.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-large)}}.stzh-vbz-ticker__link.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-small)}@media screen and (min-width: 1024px){.stzh-vbz-ticker__link.sc-stzh-vbz-ticker{position:absolute;top:0;right:0;margin-top:0}}.stzh-vbz-ticker__chips.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.stzh-vbz-ticker__chips.sc-stzh-vbz-ticker:not(:empty){margin:calc(var(--stzh-space-xxsmall) * -1);margin-top:calc(var(--stzh-space-small) - var(--stzh-space-xxsmall))}.stzh-vbz-ticker__chip.sc-stzh-vbz-ticker{margin:var(--stzh-space-xxsmall)}.stzh-vbz-ticker__tooltip.sc-stzh-vbz-ticker{--width:20.875rem}.stzh-vbz-ticker__disturbance.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.stzh-vbz-ticker__disturbance.sc-stzh-vbz-ticker:not(:first-child){margin-top:var(--stzh-space-small)}.stzh-vbz-ticker__disturbance--type0.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type0.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-icon.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type2.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type2.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-icon.sc-stzh-vbz-ticker{color:var(--stzh-color-error)}.stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker{font-family:var(--stzh-font-family-medium);font-weight:var(--stzh-font-weight-medium);font-style:normal;display:-ms-flexbox;display:flex}.stzh-vbz-ticker__disturbance--type0.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type2.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker{font-family:var(--stzh-font-family-heavy);font-weight:var(--stzh-font-weight-heavy);font-style:normal}.stzh-vbz-ticker__disturbance-icon.sc-stzh-vbz-ticker{--size:var(--stzh-icon-size-xsmall);margin-top:var(--stzh-space-xxxsmall);margin-right:var(--stzh-space-xsmall)}.stzh-vbz-ticker__disturbance-link.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-xsmall)}";var CHANNEL_TICKER="ticker";var CHANNEL_INFO_URL_FILTER="stadt-zuerich.ch/vbz";var BASE_TYPE_GLOBAL="GLOBAL";var DISTURBANCE_GLOBAL="__global__";var DISTURBANCE_INFORMATION="0";var DISTURBANCE_CONSTRUCTION="1";var DISTURBANCE_NORMAL="2";var DISTURBANCE_EVENT="4";var DISTURBANCE_BUS="5";var StzhVbzTicker=function(){function t(t){var e;registerInstance(this,t);this.api="https://fpbe.zvv.ch/restproxy/himsearch?format=json&accessId=unic&channels=ticker&additionalfields=tickers:VBZ&orderBy=LMOD_DESC&lang={lang}";this.data="";this.moreInfoLink="https://zvv.ch/zvv/{lang}/fahrplan/vl.html?himIds={id}";this.globalDisturbances=[];this.lines=[];this.counter=(e={},e["".concat(DISTURBANCE_GLOBAL)]=0,e["".concat(DISTURBANCE_INFORMATION)]=0,e["".concat(DISTURBANCE_CONSTRUCTION)]=0,e["".concat(DISTURBANCE_NORMAL)]=0,e["".concat(DISTURBANCE_EVENT)]=0,e["".concat(DISTURBANCE_BUS)]=0,e)}t.prototype.localizationWatcher=function(){this.collator=new Intl.Collator(this.localization.$locale,{numeric:true})};t.prototype.apiWatcher=function(t){return __awaiter(this,void 0,void 0,(function(){var e,i;return __generator(this,(function(r){switch(r.label){case 0:if(!t){return[2]}e=this.api.replace(/\{lang\}/,this.localization.$locale);e=e+(e.includes("?")?"&":"?")+Date.now();return[4,axios.get(e)];case 1:i=r.sent().data;this.data=i;return[2]}}))}))};t.prototype.dataWatcher=function(t){return __awaiter(this,void 0,void 0,(function(){var e,i,r;var s=this;return __generator(this,(function(a){if(typeof t==="string"){this._data=JSON.parse(t)}else{this._data=t}r={};(i=(e=this._data)===null||e===void 0?void 0:e.Message)===null||i===void 0?void 0:i.forEach((function(t){var e=t.channel.filter((function(t){return t.name===CHANNEL_TICKER&&t.url})).map((function(t){return t.url})).reduce((function(t,e){return t.concat(e)}),[]);var i=e.find((function(t){return t.url.indexOf(CHANNEL_INFO_URL_FILTER)!==-1}));if(t.baseType===BASE_TYPE_GLOBAL){s.counter[DISTURBANCE_GLOBAL]++;s.globalDisturbances.push({id:t.id,head:t.head,category:t.category,baseType:t.baseType,startDate:new Date("".concat(t.sDate,"T").concat(t.sTime,"+02:00")),endDate:new Date("".concat(t.eDate,"T").concat(t.eTime,"+02:00")),altStart:t.altStart,altEnd:t.altEnd,infoUrl:i})}else{s.counter[t.category]++}if(t.affectedProduct&&t.category!==DISTURBANCE_INFORMATION&&t.baseType!==BASE_TYPE_GLOBAL){t.affectedProduct.forEach((function(e){if(typeof r[e.lineId]==="undefined"){r[e.lineId]={line:e.line,name:e.name,category:e.cls,disturbances:[],alert:false}}if(t.category===DISTURBANCE_NORMAL){r[e.lineId].alert=true}r[e.lineId].disturbances.push({id:t.id,head:t.head,category:t.category,baseType:t.baseType,startDate:new Date("".concat(t.sDate,"T").concat(t.sTime,"+02:00")),endDate:new Date("".concat(t.eDate,"T").concat(t.eTime,"+02:00")),altStart:t.altStart,altEnd:t.altEnd,infoUrl:i})}))}}));this.lines=Object.keys(r).map((function(t){return r[t]}));this.lines.sort((function(t,e){return s.collator.compare(t.line,e.line)}));return[2]}))}))};t.prototype.componentWillLoad=function(){return __awaiter(this,void 0,void 0,(function(){var t;return __generator(this,(function(e){switch(e.label){case 0:if(!!this.localization)return[3,2];t=this;return[4,fetchTranslations(this.element,"vbz-ticker")];case 1:t.localization=e.sent();this.localizationWatcher();e.label=2;case 2:if(!this.dateAdapter){this.dateAdapter=createGlobalAdapter(this.localization.$formats,this.localization.$globals)}if(!this.data)return[3,4];return[4,this.dataWatcher(this.data)];case 3:e.sent();return[3,6];case 4:return[4,this.apiWatcher(this.api)];case 5:e.sent();e.label=6;case 6:return[2]}}))}))};t.prototype.renderDisturbance=function(t){var e;return h("div",{class:(e={"stzh-vbz-ticker__disturbance":true},e["stzh-vbz-ticker__disturbance--type".concat(t.category)]=!!t.category,e)},t.category===DISTURBANCE_NORMAL||t.baseType===BASE_TYPE_GLOBAL?h("stzh-icon",{name:"warning-big",class:"stzh-vbz-ticker__disturbance-icon"}):h("stzh-icon",{name:"construction",class:"stzh-vbz-ticker__disturbance-icon"}),h("div",{class:"stzh-vbz-ticker__disturbance-text"},h("div",{class:"stzh-vbz-ticker__disturbance-title"},t.head),h("div",{class:"stzh-vbz-ticker__disturbance-date"},t.altStart||this.dateAdapter.format(t.startDate),h("span",{innerHTML:this.localization.$formats.dateRange}),t.altEnd||this.dateAdapter.format(t.endDate)),t.infoUrl?h("stzh-link",{class:"stzh-vbz-ticker__disturbance-link",size:"small",href:t.infoUrl.url},this.localization.moreInfo):h("stzh-link",{class:"stzh-vbz-ticker__disturbance-link",size:"small",target:"_blank",icon:"external-link",href:this.moreInfoLink.replace(/\{lang\}/,this.localization.$locale).replace(/\{id\}/,t.id)},this.localization.moreInfo)))};t.prototype.render=function(){var t=this;var e={"stzh-vbz-ticker":true};return h(Host,null,h("div",{class:e},h("div",{class:"stzh-vbz-ticker__text"},h("div",{class:"stzh-vbz-ticker__title"},h("div",{class:"stzh-vbz-ticker__title-parts"},this.lines.length===0&&this.counter[DISTURBANCE_GLOBAL]===0&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--no-disturbances"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"checkmark-circle"}),this.localization.noDisturbances),this.counter[DISTURBANCE_GLOBAL]>0&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--major-events"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"important-warning"}),this.localization.majorEventTitle),this.counter[DISTURBANCE_NORMAL]>0&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--disturbances"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"warning"}),this.localization.disturbanceTitle),(this.counter[DISTURBANCE_CONSTRUCTION]>0||this.counter[DISTURBANCE_EVENT]>0||this.counter[DISTURBANCE_BUS]>0)&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--others"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"construction"}),this.localization.othersTitle))),(this.lines.length>0||this.counter[DISTURBANCE_GLOBAL]>0)&&h(Fragment,null,h("div",{class:"stzh-vbz-ticker__description"},this.counter[DISTURBANCE_GLOBAL]>0?this.localization.globalDisturbance:this.localization.affectedLines),h("div",{class:"stzh-vbz-ticker__chips",role:"list"},this.counter[DISTURBANCE_GLOBAL]>0&&h("div",{class:"stzh-vbz-ticker__chip",role:"listitem"},h("stzh-tooltip",{class:"stzh-vbz-ticker__tooltip"},h("stzh-vbz-linechip",{global:true}),h("div",{class:"stzh-vbz-ticker__tooltip-content",slot:"content"},this.globalDisturbances.map((function(e){return t.renderDisturbance(e)}))))),this.lines.map((function(e){return h("div",{class:"stzh-vbz-ticker__chip",role:"listitem"},h("stzh-tooltip",{class:"stzh-vbz-ticker__tooltip"},h("stzh-vbz-linechip",{line:e.line,alert:e.alert}),h("div",{class:"stzh-vbz-ticker__tooltip-content",slot:"content"},e.disturbances.map((function(e){return t.renderDisturbance(e)})))))}))))),h("div",{class:"stzh-vbz-ticker__link"},h("slot",{name:"link"}))))};Object.defineProperty(t.prototype,"element",{get:function(){return getElement(this)},enumerable:false,configurable:true});Object.defineProperty(t,"watchers",{get:function(){return{localization:["localizationWatcher"],api:["apiWatcher"],data:["dataWatcher"]}},enumerable:false,configurable:true});return t}();StzhVbzTicker.style=stzhVbzTickerCss;export{StzhVbzTicker as stzh_vbz_ticker};
|
|
1
|
+
var __awaiter=this&&this.__awaiter||function(t,e,i,r){function s(t){return t instanceof i?t:new i((function(e){e(t)}))}return new(i||(i=Promise))((function(i,a){function c(t){try{l(r.next(t))}catch(e){a(e)}}function n(t){try{l(r["throw"](t))}catch(e){a(e)}}function l(t){t.done?i(t.value):s(t.value).then(c,n)}l((r=r.apply(t,e||[])).next())}))};var __generator=this&&this.__generator||function(t,e){var i={label:0,sent:function(){if(a[0]&1)throw a[1];return a[1]},trys:[],ops:[]},r,s,a,c;return c={next:n(0),throw:n(1),return:n(2)},typeof Symbol==="function"&&(c[Symbol.iterator]=function(){return this}),c;function n(t){return function(e){return l([t,e])}}function l(c){if(r)throw new TypeError("Generator is already executing.");while(i)try{if(r=1,s&&(a=c[0]&2?s["return"]:c[0]?s["throw"]||((a=s["return"])&&a.call(s),0):s.next)&&!(a=a.call(s,c[1])).done)return a;if(s=0,a)c=[c[0]&2,a.value];switch(c[0]){case 0:case 1:a=c;break;case 4:i.label++;return{value:c[1],done:false};case 5:i.label++;s=c[1];c=[0];continue;case 7:c=i.ops.pop();i.trys.pop();continue;default:if(!(a=i.trys,a=a.length>0&&a[a.length-1])&&(c[0]===6||c[0]===2)){i=0;continue}if(c[0]===3&&(!a||c[1]>a[0]&&c[1]<a[3])){i.label=c[1];break}if(c[0]===6&&i.label<a[1]){i.label=a[1];a=c;break}if(a&&i.label<a[2]){i.label=a[2];i.ops.push(c);break}if(a[2])i.ops.pop();i.trys.pop();continue}c=e.call(t,i)}catch(n){c=[6,n];s=0}finally{r=a=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:true}}};import{r as registerInstance,h,F as Fragment,a as Host,g as getElement}from"./index-84f71a43.js";import{a as axios}from"./index-545902f4.js";import{f as fetchTranslations}from"./translation-utils-2623783f.js";import{c as createGlobalAdapter}from"./date-adapter-cbc340fa.js";var stzhVbzTickerCss=".sc-stzh-vbz-ticker-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vbz-ticker-h{display:none}.sc-stzh-vbz-ticker-h *.sc-stzh-vbz-ticker,.sc-stzh-vbz-ticker-h *.sc-stzh-vbz-ticker::before,.sc-stzh-vbz-ticker-h *.sc-stzh-vbz-ticker::after{-webkit-box-sizing:border-box;box-sizing:border-box}.stzh-vbz-ticker.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;position:relative}@media screen and (min-width: 1024px){.stzh-vbz-ticker.sc-stzh-vbz-ticker{-ms-flex-direction:row;flex-direction:row;-ms-flex-align:start;align-items:flex-start}}.stzh-vbz-ticker__icon.sc-stzh-vbz-ticker{--size:var(--stzh-icon-size-small);margin-right:var(--stzh-space-xsmall)}.stzh-vbz-ticker__title.sc-stzh-vbz-ticker{font-family:var(--stzh-font-family-medium);font-weight:var(--stzh-font-weight-medium);font-style:normal;font-size:var(--stzh-font-curve-p1-default-font-size, var(--stzh-font-milli-font-size));line-height:var(--stzh-font-curve-p1-default-text-line-height, var(--stzh-font-milli-text-line-height));letter-spacing:var(--stzh-font-curve-p1-default-text-letter-spacing);display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (min-width: 1024px){.stzh-vbz-ticker__title.sc-stzh-vbz-ticker{font-size:var(--stzh-font-curve-p1-medium-font-size, var(--stzh-font-centi-font-size));line-height:var(--stzh-font-curve-p1-medium-text-line-height, var(--stzh-font-centi-text-line-height));letter-spacing:var(--stzh-font-curve-p1-medium-text-letter-spacing)}}.stzh-vbz-ticker__title-parts.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:calc(var(--stzh-space-xxxsmall) / -1) 0}.stzh-vbz-ticker__title-part.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;white-space:nowrap;margin:var(--stzh-space-xxxsmall) 0}.stzh-vbz-ticker__title-part.sc-stzh-vbz-ticker:not(:last-child){margin-right:var(--stzh-space-large)}.stzh-vbz-ticker__title-part--no-disturbances.sc-stzh-vbz-ticker{color:var(--stzh-color-truegreen)}.stzh-vbz-ticker__title-part--major-events.sc-stzh-vbz-ticker{color:var(--stzh-color-coral)}.stzh-vbz-ticker__title-part--disturbances.sc-stzh-vbz-ticker{color:var(--stzh-color-error)}.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{font-size:var(--stzh-font-micro-font-size);line-height:var(--stzh-font-micro-text-line-height);margin-top:var(--stzh-space-xsmall)}@media screen and (min-width: 600px){.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-small)}}@media screen and (min-width: 1024px){.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-medium)}}@media screen and (min-width: 1260px){.stzh-vbz-ticker__description.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-large)}}.stzh-vbz-ticker__link.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-small)}@media screen and (min-width: 1024px){.stzh-vbz-ticker__link.sc-stzh-vbz-ticker{position:absolute;top:0;right:0;margin-top:0}}.stzh-vbz-ticker__chips.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.stzh-vbz-ticker__chips.sc-stzh-vbz-ticker:not(:empty){margin:calc(var(--stzh-space-xxsmall) * -1);margin-top:calc(var(--stzh-space-small) - var(--stzh-space-xxsmall))}.stzh-vbz-ticker__chip.sc-stzh-vbz-ticker{margin:var(--stzh-space-xxsmall)}.stzh-vbz-ticker__tooltip.sc-stzh-vbz-ticker{--width:20.875rem}.stzh-vbz-ticker__disturbance.sc-stzh-vbz-ticker{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.stzh-vbz-ticker__disturbance.sc-stzh-vbz-ticker:not(:first-child){margin-top:var(--stzh-space-small)}.stzh-vbz-ticker__disturbance--type0.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type0.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-icon.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type2.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type2.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-icon.sc-stzh-vbz-ticker{color:var(--stzh-color-error)}.stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker{font-family:var(--stzh-font-family-medium);font-weight:var(--stzh-font-weight-medium);font-style:normal;display:-ms-flexbox;display:flex}.stzh-vbz-ticker__disturbance--type0.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker,.stzh-vbz-ticker__disturbance--type2.sc-stzh-vbz-ticker .stzh-vbz-ticker__disturbance-title.sc-stzh-vbz-ticker{font-family:var(--stzh-font-family-heavy);font-weight:var(--stzh-font-weight-heavy);font-style:normal}.stzh-vbz-ticker__disturbance-icon.sc-stzh-vbz-ticker{--size:var(--stzh-icon-size-xsmall);margin-top:var(--stzh-space-xxxsmall);margin-right:var(--stzh-space-xsmall)}.stzh-vbz-ticker__disturbance-link.sc-stzh-vbz-ticker{margin-top:var(--stzh-space-xsmall)}";var CHANNEL_TICKER="ticker";var CHANNEL_INFO_URL_FILTER="stadt-zuerich.ch/vbz";var BASE_TYPE_GLOBAL="GLOBAL";var DISTURBANCE_GLOBAL="__global__";var DISTURBANCE_INFORMATION="0";var DISTURBANCE_CONSTRUCTION="1";var DISTURBANCE_NORMAL="2";var DISTURBANCE_EVENT="4";var DISTURBANCE_BUS="5";var StzhVbzTicker=function(){function t(t){var e;registerInstance(this,t);this.api="https://fpbe.zvv.ch/restproxy/himsearch?format=json&accessId=unic&channels=ticker&additionalfields=tickers:VBZ&orderBy=LMOD_DESC&lang={lang}";this.data="";this.moreInfoLink="https://zvv.ch/zvv/{lang}/fahrplan/vl.html?himIds={id}";this.globalDisturbances=[];this.lines=[];this.counter=(e={},e["".concat(DISTURBANCE_GLOBAL)]=0,e["".concat(DISTURBANCE_INFORMATION)]=0,e["".concat(DISTURBANCE_CONSTRUCTION)]=0,e["".concat(DISTURBANCE_NORMAL)]=0,e["".concat(DISTURBANCE_EVENT)]=0,e["".concat(DISTURBANCE_BUS)]=0,e)}t.prototype.localizationWatcher=function(){this.collator=new Intl.Collator(this.localization.$locale,{numeric:true})};t.prototype.apiWatcher=function(t){return __awaiter(this,void 0,void 0,(function(){var e,i;return __generator(this,(function(r){switch(r.label){case 0:if(!t){return[2]}e=this.api.replace(/\{lang\}/,this.localization.$locale);e=e+(e.includes("?")?"&":"?")+Date.now();return[4,axios.get(e)];case 1:i=r.sent().data;this.data=i;return[2]}}))}))};t.prototype.dataWatcher=function(t){return __awaiter(this,void 0,void 0,(function(){var e,i,r;var s=this;return __generator(this,(function(a){if(typeof t==="string"){this._data=JSON.parse(t)}else{this._data=t}r={};(i=(e=this._data)===null||e===void 0?void 0:e.Message)===null||i===void 0?void 0:i.forEach((function(t){var e=t.channel.filter((function(t){return t.name===CHANNEL_TICKER&&t.url})).map((function(t){return t.url})).reduce((function(t,e){return t.concat(e)}),[]);var i=e.find((function(t){return t.url.indexOf(CHANNEL_INFO_URL_FILTER)!==-1}));if(t.baseType===BASE_TYPE_GLOBAL){s.counter[DISTURBANCE_GLOBAL]++;s.globalDisturbances.push({id:t.id,head:t.head,category:t.category,baseType:t.baseType,startDate:new Date("".concat(t.sDate,"T").concat(t.sTime,"+02:00")),endDate:new Date("".concat(t.eDate,"T").concat(t.eTime,"+02:00")),altStart:t.altStart,altEnd:t.altEnd,infoUrl:i})}else{s.counter[t.category]++}if(t.affectedProduct&&t.category!==DISTURBANCE_INFORMATION&&t.baseType!==BASE_TYPE_GLOBAL){t.affectedProduct.forEach((function(e){if(typeof r[e.lineId]==="undefined"){r[e.lineId]={line:e.line,name:e.name,category:e.cls,disturbances:[],alert:false}}if(t.category===DISTURBANCE_NORMAL){r[e.lineId].alert=true}r[e.lineId].disturbances.push({id:t.id,head:t.head,category:t.category,baseType:t.baseType,startDate:new Date("".concat(t.sDate,"T").concat(t.sTime,"+02:00")),endDate:new Date("".concat(t.eDate,"T").concat(t.eTime,"+02:00")),altStart:t.altStart,altEnd:t.altEnd,infoUrl:i})}))}}));this.lines=Object.keys(r).map((function(t){return r[t]}));this.lines.sort((function(t,e){return s.collator.compare(t.line,e.line)}));return[2]}))}))};t.prototype.componentWillLoad=function(){return __awaiter(this,void 0,void 0,(function(){var t;return __generator(this,(function(e){switch(e.label){case 0:if(!!this.localization)return[3,2];t=this;return[4,fetchTranslations(this.element,"vbz-ticker")];case 1:t.localization=e.sent();this.localizationWatcher();e.label=2;case 2:if(!this.dateAdapter){this.dateAdapter=createGlobalAdapter(this.localization.$formats,this.localization.$globals)}if(!this.data)return[3,4];return[4,this.dataWatcher(this.data)];case 3:e.sent();return[3,6];case 4:return[4,this.apiWatcher(this.api)];case 5:e.sent();e.label=6;case 6:return[2]}}))}))};t.prototype.renderDisturbance=function(t){var e;return h("div",{class:(e={"stzh-vbz-ticker__disturbance":true},e["stzh-vbz-ticker__disturbance--type".concat(t.category)]=!!t.category,e)},t.category===DISTURBANCE_NORMAL||t.baseType===BASE_TYPE_GLOBAL?h("stzh-icon",{name:"warning-big",class:"stzh-vbz-ticker__disturbance-icon"}):h("stzh-icon",{name:"construction",class:"stzh-vbz-ticker__disturbance-icon"}),h("div",{class:"stzh-vbz-ticker__disturbance-text"},h("div",{class:"stzh-vbz-ticker__disturbance-title"},t.head),h("div",{class:"stzh-vbz-ticker__disturbance-date"},t.altStart||this.dateAdapter.format(t.startDate),h("span",{innerHTML:this.localization.$formats.dateRange}),t.altEnd||this.dateAdapter.format(t.endDate)),t.infoUrl?h("stzh-link",{class:"stzh-vbz-ticker__disturbance-link",size:"small",href:t.infoUrl.url},this.localization.moreInfo):h("stzh-link",{class:"stzh-vbz-ticker__disturbance-link",size:"small",target:"_blank",icon:"external-link",href:this.moreInfoLink.replace(/\{lang\}/,this.localization.$locale).replace(/\{id\}/,t.id)},this.localization.moreInfo)))};t.prototype.render=function(){var t=this;var e={"stzh-vbz-ticker":true};return h(Host,null,h("div",{class:e},h("div",{class:"stzh-vbz-ticker__text"},h("div",{class:"stzh-vbz-ticker__title"},h("div",{class:"stzh-vbz-ticker__title-parts"},this.lines.length===0&&this.counter[DISTURBANCE_GLOBAL]===0&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--no-disturbances"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"checkmark-circle"}),this.localization.noDisturbances),this.counter[DISTURBANCE_GLOBAL]>0&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--major-events"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"important-warning"}),this.localization.majorEventTitle),this.counter[DISTURBANCE_NORMAL]>0&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--disturbances"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"warning"}),this.localization.disturbanceTitle),(this.counter[DISTURBANCE_CONSTRUCTION]>0||this.counter[DISTURBANCE_EVENT]>0||this.counter[DISTURBANCE_BUS]>0)&&h("div",{class:"stzh-vbz-ticker__title-part stzh-vbz-ticker__title-part--others"},h("stzh-icon",{class:"stzh-vbz-ticker__icon",name:"construction"}),this.localization.othersTitle))),(this.lines.length>0||this.counter[DISTURBANCE_GLOBAL]>0)&&h(Fragment,null,h("div",{class:"stzh-vbz-ticker__description"},this.counter[DISTURBANCE_GLOBAL]>0?this.localization.globalDisturbance:this.localization.affectedLines),h("div",{class:"stzh-vbz-ticker__chips",role:"list"},this.counter[DISTURBANCE_GLOBAL]>0&&h("div",{class:"stzh-vbz-ticker__chip",role:"listitem"},h("stzh-tooltip",{class:"stzh-vbz-ticker__tooltip"},h("stzh-vbz-linechip",{global:true}),h("div",{class:"stzh-vbz-ticker__tooltip-content",slot:"content"},this.globalDisturbances.map((function(e){return t.renderDisturbance(e)}))))),this.lines.map((function(e){return h("div",{class:"stzh-vbz-ticker__chip",role:"listitem"},h("stzh-tooltip",{class:"stzh-vbz-ticker__tooltip"},h("stzh-vbz-linechip",{line:e.line,alert:e.alert}),h("div",{class:"stzh-vbz-ticker__tooltip-content",slot:"content"},e.disturbances.map((function(e){return t.renderDisturbance(e)})))))}))))),h("div",{class:"stzh-vbz-ticker__link"},h("slot",{name:"link"}))))};Object.defineProperty(t.prototype,"element",{get:function(){return getElement(this)},enumerable:false,configurable:true});Object.defineProperty(t,"watchers",{get:function(){return{localization:["localizationWatcher"],api:["apiWatcher"],data:["dataWatcher"]}},enumerable:false,configurable:true});return t}();StzhVbzTicker.style=stzhVbzTickerCss;export{StzhVbzTicker as stzh_vbz_ticker};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as registerInstance,h,a as Host}from"./index-
|
|
1
|
+
import{r as registerInstance,h,a as Host}from"./index-84f71a43.js";var stzhVisuallyhiddenCss=".sc-stzh-visuallyhidden-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-visuallyhidden-h{display:none}.sc-stzh-visuallyhidden-h *.sc-stzh-visuallyhidden,.sc-stzh-visuallyhidden-h *.sc-stzh-visuallyhidden::before,.sc-stzh-visuallyhidden-h *.sc-stzh-visuallyhidden::after{-webkit-box-sizing:border-box;box-sizing:border-box}.sc-stzh-visuallyhidden-h .sc-stzh-visuallyhidden-s>*:not(:focus):not(:active){border:0;clip:rect(0 0 0 0);-webkit-clip-path:inset(100%);clip-path:inset(100%);width:0.0625rem;height:0.0625rem;overflow:hidden;padding:0;position:absolute}";var StzhVisuallyhidden=function(){function s(s){registerInstance(this,s)}s.prototype.render=function(){return h(Host,null,h("div",{class:{"stzh-visuallyhidden":true}},h("slot",null)))};return s}();StzhVisuallyhidden.style=stzhVisuallyhiddenCss;export{StzhVisuallyhidden as stzh_visuallyhidden};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as registerInstance,h,a as Host}from"./index-0e6d34c6.js";var stzhVspaceCss=".sc-stzh-vspace-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vspace-h{display:none}.sc-stzh-vspace-h *.sc-stzh-vspace,.sc-stzh-vspace-h *.sc-stzh-vspace::before,.sc-stzh-vspace-h *.sc-stzh-vspace::after{-webkit-box-sizing:border-box;box-sizing:border-box}.sc-stzh-vspace-h{--space:var(--stzh-space-default);--around:0}.sc-stzh-vspace-h .sc-stzh-vspace-s>*{max-width:100%;padding-top:calc(var(--space) * var(--around));padding-bottom:calc(var(--space) * var(--around));margin:0}.sc-stzh-vspace-h .sc-stzh-vspace-s>*:not(:last-child){margin-bottom:calc(var(--space) * (1 - var(--around)))}.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-vspace,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-hspace,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-row,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-container,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-section{-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-positive:1;flex-grow:1}[around].sc-stzh-vspace-h{--around:1}[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}@media screen and (min-width: 600px){[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1024px){[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1260px){[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}[curve=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}@media screen and (min-width: 1024px){[curve=small].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}[curve=regular].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}@media screen and (min-width: 1024px){[curve=regular].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1260px){[curve=regular].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}@media screen and (min-width: 600px){[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1024px){[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1260px){[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}@media screen and (min-width: 600px){[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1024px){[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1260px){[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}[curve=big].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}@media screen and (min-width: 600px){[curve=big].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1260px){[curve=big].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}@media screen and (min-width: 600px){[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1024px){[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1260px){[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}[size=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}[size=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}[size=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}[size=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}[size=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}[size=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}[size=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}[size=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}[size=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}[size=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}[size=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}[size=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}[size=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}[size=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}[size=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}[size=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}@media screen and (min-width: 600px){[size-small=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 600px){[size-small=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 600px){[size-small=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 600px){[size-small=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 600px){[size-small=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 600px){[size-small=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 600px){[size-small=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 600px){[size-small=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 600px){[size-small=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 600px){[size-small=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 600px){[size-small=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 600px){[size-small=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 600px){[size-small=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 600px){[size-small=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 600px){[size-small=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 600px){[size-small=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 800px){[size-smallheader=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 800px){[size-smallheader=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 800px){[size-smallheader=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 800px){[size-smallheader=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 800px){[size-smallheader=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 800px){[size-smallheader=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 800px){[size-smallheader=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 800px){[size-smallheader=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 800px){[size-smallheader=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 800px){[size-smallheader=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 800px){[size-smallheader=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 800px){[size-smallheader=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 800px){[size-smallheader=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 800px){[size-smallheader=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 800px){[size-smallheader=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 800px){[size-smallheader=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 1024px){[size-medium=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 1024px){[size-medium=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 1024px){[size-medium=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 1024px){[size-medium=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1024px){[size-medium=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1024px){[size-medium=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1024px){[size-medium=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1024px){[size-medium=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1024px){[size-medium=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 1024px){[size-medium=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1024px){[size-medium=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1024px){[size-medium=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1024px){[size-medium=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 1024px){[size-medium=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 1024px){[size-medium=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 1024px){[size-medium=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 1260px){[size-large=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 1260px){[size-large=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 1260px){[size-large=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 1260px){[size-large=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1260px){[size-large=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1260px){[size-large=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1260px){[size-large=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1260px){[size-large=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1260px){[size-large=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 1260px){[size-large=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1260px){[size-large=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1260px){[size-large=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1260px){[size-large=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 1260px){[size-large=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 1260px){[size-large=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 1260px){[size-large=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 1440px){[size-ultra=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 1440px){[size-ultra=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 1440px){[size-ultra=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 1440px){[size-ultra=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1440px){[size-ultra=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1440px){[size-ultra=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1440px){[size-ultra=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1440px){[size-ultra=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1440px){[size-ultra=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 1440px){[size-ultra=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1440px){[size-ultra=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1440px){[size-ultra=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1440px){[size-ultra=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 1440px){[size-ultra=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 1440px){[size-ultra=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 1440px){[size-ultra=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}.stzh-vspace.sc-stzh-vspace{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start;padding:0;margin:0}.stzh-vspace.sc-stzh-vspace:empty{height:var(--space)}.stzh-vspace--border-top.sc-stzh-vspace{border-top:0.0625rem solid var(--stzh-base-border-color)}.stzh-vspace--border-bottom.sc-stzh-vspace{border-bottom:0.0625rem solid var(--stzh-base-border-color)}.stzh-vspace--justify-center.sc-stzh-vspace{-ms-flex-pack:center;justify-content:center}.stzh-vspace--justify-end.sc-stzh-vspace{-ms-flex-pack:end;justify-content:flex-end}.stzh-vspace--justify-between.sc-stzh-vspace{-ms-flex-pack:justify;justify-content:space-between}.stzh-vspace--justify-around.sc-stzh-vspace{-ms-flex-pack:distribute;justify-content:space-around}.stzh-vspace--justify-evenly.sc-stzh-vspace{-ms-flex-pack:space-evenly;justify-content:space-evenly}";var StzhVspace=function(){function s(s){registerInstance(this,s);this.curve="none";this.size="inherit";this.sizeSmall="inherit";this.sizeMedium="inherit";this.sizeLarge="inherit";this.sizeUltra="inherit";this.justify="start";this.around=false;this.border="none"}s.prototype.render=function(){var s;return h(Host,null,h("div",{class:(s={"stzh-vspace":true},s["stzh-vspace--justify-".concat(this.justify)]=!!this.justify,s["stzh-vspace--border-".concat(this.border)]=!!this.border,s)},h("slot",null)))};return s}();StzhVspace.style=stzhVspaceCss;export{StzhVspace as stzh_vspace};
|
|
1
|
+
import{r as registerInstance,h,a as Host}from"./index-84f71a43.js";var stzhVspaceCss=".sc-stzh-vspace-h{font-family:var(--stzh-font-family-regular);font-weight:var(--stzh-font-weight-regular);font-style:normal;color:var(--stzh-base-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:block}[hidden].sc-stzh-vspace-h{display:none}.sc-stzh-vspace-h *.sc-stzh-vspace,.sc-stzh-vspace-h *.sc-stzh-vspace::before,.sc-stzh-vspace-h *.sc-stzh-vspace::after{-webkit-box-sizing:border-box;box-sizing:border-box}.sc-stzh-vspace-h{--space:var(--stzh-space-default);--around:0}.sc-stzh-vspace-h .sc-stzh-vspace-s>*{max-width:100%;padding-top:calc(var(--space) * var(--around));padding-bottom:calc(var(--space) * var(--around));margin:0}.sc-stzh-vspace-h .sc-stzh-vspace-s>*:not(:last-child){margin-bottom:calc(var(--space) * (1 - var(--around)))}.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-vspace,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-hspace,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-row,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-container,.sc-stzh-vspace-h .sc-stzh-vspace-s>stzh-section{-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-positive:1;flex-grow:1}[around].sc-stzh-vspace-h{--around:1}[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}@media screen and (min-width: 600px){[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1024px){[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1260px){[curve=tiny].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}[curve=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}@media screen and (min-width: 1024px){[curve=small].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}[curve=regular].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}@media screen and (min-width: 1024px){[curve=regular].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1260px){[curve=regular].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}@media screen and (min-width: 600px){[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1024px){[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1260px){[curve=medium].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}@media screen and (min-width: 600px){[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1024px){[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1260px){[curve=large].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}[curve=big].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}@media screen and (min-width: 600px){[curve=big].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1260px){[curve=big].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}@media screen and (min-width: 600px){[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1024px){[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1260px){[curve=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}[size=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}[size=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}[size=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}[size=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}[size=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}[size=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}[size=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}[size=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}[size=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}[size=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}[size=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}[size=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}[size=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}[size=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}[size=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}[size=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}@media screen and (min-width: 600px){[size-small=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 600px){[size-small=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 600px){[size-small=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 600px){[size-small=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 600px){[size-small=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 600px){[size-small=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 600px){[size-small=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 600px){[size-small=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 600px){[size-small=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 600px){[size-small=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 600px){[size-small=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 600px){[size-small=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 600px){[size-small=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 600px){[size-small=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 600px){[size-small=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 600px){[size-small=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 800px){[size-smallheader=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 800px){[size-smallheader=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 800px){[size-smallheader=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 800px){[size-smallheader=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 800px){[size-smallheader=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 800px){[size-smallheader=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 800px){[size-smallheader=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 800px){[size-smallheader=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 800px){[size-smallheader=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 800px){[size-smallheader=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 800px){[size-smallheader=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 800px){[size-smallheader=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 800px){[size-smallheader=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 800px){[size-smallheader=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 800px){[size-smallheader=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 800px){[size-smallheader=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 1024px){[size-medium=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 1024px){[size-medium=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 1024px){[size-medium=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 1024px){[size-medium=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1024px){[size-medium=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1024px){[size-medium=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1024px){[size-medium=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1024px){[size-medium=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1024px){[size-medium=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 1024px){[size-medium=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1024px){[size-medium=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1024px){[size-medium=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1024px){[size-medium=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 1024px){[size-medium=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 1024px){[size-medium=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 1024px){[size-medium=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 1260px){[size-large=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 1260px){[size-large=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 1260px){[size-large=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 1260px){[size-large=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1260px){[size-large=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1260px){[size-large=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1260px){[size-large=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1260px){[size-large=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1260px){[size-large=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 1260px){[size-large=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1260px){[size-large=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1260px){[size-large=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1260px){[size-large=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 1260px){[size-large=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 1260px){[size-large=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 1260px){[size-large=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}@media screen and (min-width: 1440px){[size-ultra=xxxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxxsmall)}}@media screen and (min-width: 1440px){[size-ultra=xxsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xxsmall)}}@media screen and (min-width: 1440px){[size-ultra=xsmall].sc-stzh-vspace-h{--space:var(--stzh-space-xsmall)}}@media screen and (min-width: 1440px){[size-ultra=small].sc-stzh-vspace-h{--space:var(--stzh-space-small)}}@media screen and (min-width: 1440px){[size-ultra=medium].sc-stzh-vspace-h{--space:var(--stzh-space-medium)}}@media screen and (min-width: 1440px){[size-ultra=large].sc-stzh-vspace-h{--space:var(--stzh-space-large)}}@media screen and (min-width: 1440px){[size-ultra=xlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xlarge)}}@media screen and (min-width: 1440px){[size-ultra=xxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxlarge)}}@media screen and (min-width: 1440px){[size-ultra=xxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxlarge)}}@media screen and (min-width: 1440px){[size-ultra=xxxxlarge].sc-stzh-vspace-h{--space:var(--stzh-space-xxxxlarge)}}@media screen and (min-width: 1440px){[size-ultra=big].sc-stzh-vspace-h{--space:var(--stzh-space-big)}}@media screen and (min-width: 1440px){[size-ultra=xbig].sc-stzh-vspace-h{--space:var(--stzh-space-xbig)}}@media screen and (min-width: 1440px){[size-ultra=huge].sc-stzh-vspace-h{--space:var(--stzh-space-huge)}}@media screen and (min-width: 1440px){[size-ultra=xhuge].sc-stzh-vspace-h{--space:var(--stzh-space-xhuge)}}@media screen and (min-width: 1440px){[size-ultra=none].sc-stzh-vspace-h{--space:var(--stzh-space-none)}}@media screen and (min-width: 1440px){[size-ultra=default].sc-stzh-vspace-h{--space:var(--stzh-space-default)}}.stzh-vspace.sc-stzh-vspace{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:start;align-items:flex-start;padding:0;margin:0}.stzh-vspace.sc-stzh-vspace:empty{height:var(--space)}.stzh-vspace--border-top.sc-stzh-vspace{border-top:0.0625rem solid var(--stzh-base-border-color)}.stzh-vspace--border-bottom.sc-stzh-vspace{border-bottom:0.0625rem solid var(--stzh-base-border-color)}.stzh-vspace--justify-center.sc-stzh-vspace{-ms-flex-pack:center;justify-content:center}.stzh-vspace--justify-end.sc-stzh-vspace{-ms-flex-pack:end;justify-content:flex-end}.stzh-vspace--justify-between.sc-stzh-vspace{-ms-flex-pack:justify;justify-content:space-between}.stzh-vspace--justify-around.sc-stzh-vspace{-ms-flex-pack:distribute;justify-content:space-around}.stzh-vspace--justify-evenly.sc-stzh-vspace{-ms-flex-pack:space-evenly;justify-content:space-evenly}";var StzhVspace=function(){function s(s){registerInstance(this,s);this.curve="none";this.size="inherit";this.sizeSmall="inherit";this.sizeMedium="inherit";this.sizeLarge="inherit";this.sizeUltra="inherit";this.justify="start";this.around=false;this.border="none"}s.prototype.render=function(){var s;return h(Host,null,h("div",{class:(s={"stzh-vspace":true},s["stzh-vspace--justify-".concat(this.justify)]=!!this.justify,s["stzh-vspace--border-".concat(this.border)]=!!this.border,s)},h("slot",null)))};return s}();StzhVspace.style=stzhVspaceCss;export{StzhVspace as stzh_vspace};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function hasSlot(e,t){if(t){return e.querySelector('[slot="'.concat(t,'"]'))!==null}return Array.from(e.childNodes).some((function(e){if(e.nodeType===e.TEXT_NODE&&e.textContent.trim()!==""){return true}if(e.nodeType===e.ELEMENT_NODE){var t=e;if(!t.hasAttribute("slot")){return true}}return false}))}function setPropsIfNull(e,t){Object.keys(t).forEach((function(n){if(e.getAttribute(n)===null){e[n]=t[n]}}))}function isStzhElement(e){if(!e){return false}return e.tagName.toLowerCase().indexOf("stzh-")===0}function cloneElement(e){var t;var n;var r;if(isStzhElement(e)){t=e.cloneNode(true);n=t;r=e}else{t=e.cloneNode();var l=t;var o=e;while(o.children.length===1&&!isStzhElement(o.children[0])){o=o.children[0];var i=o.cloneNode();l.appendChild(i);l=i}if(isStzhElement(o.children[0])){n=o.children[0].cloneNode(true);r=o.children[0];l.appendChild(n)}else{t=e.cloneNode(true)}}return[t,n,r]}export{cloneElement as c,hasSlot as h,setPropsIfNull as s};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
font-family: HelveticaNeueLTW01_41488878;
|
|
4
4
|
src: url("./fonts/HelveticaNeueLTW01_41488878.woff2") format("woff2"),
|
|
5
5
|
url("./fonts/HelveticaNeueLTW01_41488878.woff") format("woff");
|
|
6
|
-
font-
|
|
6
|
+
font-display: fallback;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
/* Regular */
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
font-family: HelveticaNeueLTW01_55Roman;
|
|
12
12
|
src: url("./fonts/HelveticaNeueLTW01_55Roman.woff2") format("woff2"),
|
|
13
13
|
url("./fonts/HelveticaNeueLTW01_55Roman.woff") format("woff");
|
|
14
|
-
font-
|
|
14
|
+
font-display: fallback;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
/* Medium */
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
font-family: HelveticaNeueLTW05_65Medium;
|
|
20
20
|
src: url("./fonts/HelveticaNeueLTW05_65Medium.woff2") format("woff2"),
|
|
21
21
|
url("./fonts/HelveticaNeueLTW05_65Medium.woff") format("woff");
|
|
22
|
-
font-
|
|
22
|
+
font-display: fallback;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
/* Bold (only used for VBZ theme as replacement for heavy font) */
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
font-family: HelveticaNeueLTW01_71488914;
|
|
28
28
|
src: url("./fonts/HelveticaNeueLTW01_71488914.woff2") format("woff2"),
|
|
29
29
|
url("./fonts/HelveticaNeueLTW01_71488914.woff") format("woff");
|
|
30
|
-
font-
|
|
30
|
+
font-display: fallback;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
/* Heavy */
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
font-family: HelveticaNeueLTW05_85Heavy;
|
|
36
36
|
src: url("./fonts/HelveticaNeueLTW05_85Heavy.woff2") format("woff2"),
|
|
37
37
|
url("./fonts/HelveticaNeueLTW05_85Heavy.woff") format("woff");
|
|
38
|
-
font-
|
|
38
|
+
font-display: fallback;
|
|
39
39
|
}
|
|
@@ -115,14 +115,19 @@
|
|
|
115
115
|
"datamessagelist-item": {
|
|
116
116
|
"actionsPopoverLabel": "Aktionen"
|
|
117
117
|
},
|
|
118
|
-
"
|
|
118
|
+
"actionset": {
|
|
119
|
+
"actions": "Aktionen",
|
|
120
|
+
"furtherActions": "Weitere Aktionen"
|
|
121
|
+
},
|
|
122
|
+
"card": {
|
|
123
|
+
"select": "auswählen",
|
|
119
124
|
"actionsPopoverLabel": "Aktionen",
|
|
120
125
|
"actionMoveUp": "Kachel nach oben schieben",
|
|
121
126
|
"actionMoveDown": "Kachel nach unten schieben",
|
|
122
127
|
"actionAdd": "Zu «Meine Services» hinzufügen",
|
|
123
128
|
"actionRemove": "Aus «Meine Services» entfernen"
|
|
124
129
|
},
|
|
125
|
-
"
|
|
130
|
+
"card-list": {
|
|
126
131
|
"expandAll": "alle aufklappen",
|
|
127
132
|
"collapseAll": "alle zuklappen"
|
|
128
133
|
},
|
|
@@ -115,14 +115,19 @@
|
|
|
115
115
|
"datamessagelist-item": {
|
|
116
116
|
"actionsPopoverLabel": "Actions"
|
|
117
117
|
},
|
|
118
|
-
"
|
|
118
|
+
"actionset": {
|
|
119
|
+
"actions": "Actions",
|
|
120
|
+
"furtherActions": "Further Actions"
|
|
121
|
+
},
|
|
122
|
+
"card": {
|
|
123
|
+
"select": "select",
|
|
119
124
|
"actionsPopoverLabel": "Actions",
|
|
120
125
|
"actionMoveUp": "Move card up",
|
|
121
126
|
"actionMoveDown": "Move card down",
|
|
122
127
|
"actionAdd": "Add to «My Services»",
|
|
123
128
|
"actionRemove": "Remove from «My Services»"
|
|
124
129
|
},
|
|
125
|
-
"
|
|
130
|
+
"card-list": {
|
|
126
131
|
"expandAll": "expand all",
|
|
127
132
|
"collapseAll": "collapse all"
|
|
128
133
|
},
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10250_80320)">
|
|
3
|
+
<path d="M23.25 12.7501L19.4374 8.71131L16.1261 12.7913L17.8736 14.2096L18.5696 13.3516C18.3589 15.1518 17.5314 16.8235 16.2275 18.0825C14.9237 19.3416 13.2241 20.1103 11.4176 20.2579L11.5894 22.5016C13.9539 22.309 16.1753 21.291 17.8649 19.6257C19.5545 17.9604 20.6045 15.7539 20.8313 13.3924L21.6911 14.2819L23.25 12.7501Z" stroke="#4D4D4D" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M5.28225 17.3101L5.63288 18.3102C4.32349 17.1514 3.441 15.5866 3.1268 13.8665C2.81259 12.1465 3.08487 10.3707 3.9 8.82381L1.91138 7.77194C0.792692 9.89257 0.468576 12.3431 0.997483 14.6817C1.52639 17.0202 2.87351 19.0928 4.79588 20.5257L3.35513 21.0263L3.75 23.2501L9.19988 21.6856L7.4055 16.5657L5.28225 17.3101ZM16.971 7.58256L18.7429 6.15681C17.8066 4.94393 16.6052 3.96132 15.2307 3.28418C13.8562 2.60704 12.345 2.25331 10.8128 2.25006H10.8116C9.68353 2.27439 8.56747 2.48746 7.50975 2.88044L8.076 1.50381L6 0.73056L3.76988 6.24194L9.2085 7.37819L9.66638 5.17769L8.64 4.88706C9.34205 4.657 10.0729 4.52672 10.8113 4.50006C12.0046 4.51173 13.1803 4.79544 14.2475 5.32959C15.3147 5.86375 16.2464 6.63428 16.971 7.58256Z" stroke="#4D4D4D" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_10250_80320">
|
|
8
|
+
<rect width="24" height="24" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10250_80321)">
|
|
3
|
+
<path d="M6.37538 0.750061L4.5 5.43906M4.5 5.43906L9 6.37544M4.5 5.43906C6.5384 3.84847 9.12499 3.13241 11.6912 3.44828C14.2573 3.76416 16.5931 5.08612 18.1849 7.12356M23.25 14.2504L19.989 10.8754M19.989 10.8754L17.25 14.2504M19.989 10.8754C20.3125 12.2456 20.3357 13.6691 20.057 15.0491C19.7783 16.429 19.2044 17.7324 18.3746 18.8696C17.5447 20.0068 16.4786 20.9511 15.2495 21.6375C14.0204 22.3239 12.6573 22.7362 11.2538 22.8462M2.625 23.2504L7.12313 22.2747M7.12313 22.2747L5.625 18.0004M7.12313 22.2747C5.82055 21.793 4.63581 21.0388 3.6481 20.0625C2.66039 19.0862 1.89246 17.9103 1.39567 16.6134C0.898869 15.3165 0.68464 13.9285 0.767302 12.5421C0.849964 11.1558 1.22761 9.80311 1.875 8.57444" stroke="#4D4D4D" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_10250_80321">
|
|
7
|
+
<rect width="24" height="24" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_10250_80319)">
|
|
3
|
+
<path d="M4.5 3.75006V1.87506C4.5 1.57669 4.61853 1.29054 4.8295 1.07957C5.04048 0.868588 5.32663 0.750061 5.625 0.750061H18.375C18.6734 0.750061 18.9595 0.868588 19.1705 1.07957C19.3815 1.29054 19.5 1.57669 19.5 1.87506V3.75006M4.5 3.75006H19.5M4.5 3.75006V18.7501M19.5 3.75006V18.7501M19.5 18.7501V22.1251C19.5 22.4234 19.3815 22.7096 19.1705 22.9206C18.9595 23.1315 18.6734 23.2501 18.375 23.2501H5.625C5.32663 23.2501 5.04048 23.1315 4.8295 22.9206C4.61853 22.7096 4.5 22.4234 4.5 22.1251V18.7501M19.5 18.7501H4.5M11.25 21.0001H12.75" stroke="#4D4D4D" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_10250_80319">
|
|
7
|
+
<rect width="24" height="24" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_9415_65741)">
|
|
3
|
+
<path d="M12 0.750061V6.75006M12 17.2501V23.2501M6.75 12.0001H0.75M23.25 12.0001H17.25" stroke="#4D4D4D" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M12 20.2501C16.5563 20.2501 20.25 16.5564 20.25 12.0001C20.25 7.44371 16.5563 3.75006 12 3.75006C7.44365 3.75006 3.75 7.44371 3.75 12.0001C3.75 16.5564 7.44365 20.2501 12 20.2501Z" stroke="#4D4D4D" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="clip0_9415_65741">
|
|
8
|
+
<rect width="24" height="24" fill="white"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|