@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,592 +0,0 @@
|
|
|
1
|
-
import { Host, h, Fragment, forceUpdate } from "@stencil/core";
|
|
2
|
-
import { hasSlot } from "../../utils/utils";
|
|
3
|
-
import { media } from '../../utils/media-utils';
|
|
4
|
-
import { fetchTranslations } from "../../utils/translation-utils";
|
|
5
|
-
/**
|
|
6
|
-
* @slot left - Slot for left column for any elements
|
|
7
|
-
* @slot middle - Slot for middle column for any elements
|
|
8
|
-
* @slot right - Slot for right column for any elements
|
|
9
|
-
*/
|
|
10
|
-
export class StzhServicecard {
|
|
11
|
-
constructor() {
|
|
12
|
-
/** Whether card is collapsed or not */
|
|
13
|
-
this.collapsed = false;
|
|
14
|
-
/** Whether card was starred */
|
|
15
|
-
this.starred = false;
|
|
16
|
-
/** Whether card star is displayed */
|
|
17
|
-
this.starrable = false;
|
|
18
|
-
/** Heading */
|
|
19
|
-
this.heading = "";
|
|
20
|
-
/** Subtitle */
|
|
21
|
-
this.subtitle = "";
|
|
22
|
-
this._subtitles = [];
|
|
23
|
-
/** Card actions */
|
|
24
|
-
this.actions = [];
|
|
25
|
-
/** Whether subtitle should be rendered as button and event `stzhSubtitleClick` executed on click */
|
|
26
|
-
this.subtitleInteractive = false;
|
|
27
|
-
/** Type */
|
|
28
|
-
this.type = "default";
|
|
29
|
-
/** Middle column position variant (positioning behaviour on tablet) */
|
|
30
|
-
this.middleVariant = "to-right";
|
|
31
|
-
/** Set middle column vertical spacing */
|
|
32
|
-
this.middleVerticalSpacing = "default";
|
|
33
|
-
/** Set right column vertical spacing */
|
|
34
|
-
this.rightVerticalSpacing = "default";
|
|
35
|
-
/** Whether sorting should be disabled */
|
|
36
|
-
this.sortableDisabled = false;
|
|
37
|
-
/** Whether card is collapsible */
|
|
38
|
-
this.collapsible = false;
|
|
39
|
-
/** Whether movement menu items should be shown */
|
|
40
|
-
this.hideMovementActions = false;
|
|
41
|
-
this.nodeChange = (entries) => {
|
|
42
|
-
let changeInSlot = false;
|
|
43
|
-
entries.forEach((entry) => {
|
|
44
|
-
if (entry.target.closest('[slot]') || entry.target.hasAttribute('slot')) {
|
|
45
|
-
changeInSlot = true;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
if (changeInSlot) {
|
|
49
|
-
forceUpdate(this.element);
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
this.update = () => {
|
|
53
|
-
this.mainElement.classList.remove("stzh-servicecard--has-collapsed-header");
|
|
54
|
-
if (media('medium').matches) {
|
|
55
|
-
const headerWidth = this.headerElement.clientWidth;
|
|
56
|
-
const leftWidth = this.headerLeftElement.clientWidth;
|
|
57
|
-
const rightWidth = this.headerRightElement.clientWidth;
|
|
58
|
-
if (headerWidth - leftWidth <= rightWidth) {
|
|
59
|
-
this.mainElement.classList.add("stzh-servicecard--has-collapsed-header");
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
};
|
|
63
|
-
this.headerClick = (event) => {
|
|
64
|
-
if (!this.collapsible) {
|
|
65
|
-
return;
|
|
66
|
-
}
|
|
67
|
-
const filterTags = ["stzh-popover", "stzh-tooltip", "button", "a", "input", "select", "textarea", "iframe", "details", "label", "area"];
|
|
68
|
-
const composedPathTags = event.composedPath().map(element => { var _a; return (_a = element.tagName) === null || _a === void 0 ? void 0 : _a.toLowerCase(); });
|
|
69
|
-
const found = composedPathTags.some(r => filterTags.includes(r));
|
|
70
|
-
if (!found) {
|
|
71
|
-
this.collapsed = !this.collapsed;
|
|
72
|
-
this.stzhCollapse.emit({
|
|
73
|
-
component: "stzh-servicecard",
|
|
74
|
-
collapsed: this.collapsed
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
};
|
|
78
|
-
this.subtitleClick = () => {
|
|
79
|
-
if (this.subtitleInteractive) {
|
|
80
|
-
this.stzhSubtitleClick.emit({
|
|
81
|
-
component: "stzh-servicecard"
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
};
|
|
85
|
-
this.starToggleClick = () => {
|
|
86
|
-
this.stzhStarClick.emit({
|
|
87
|
-
component: "stzh-servicecard",
|
|
88
|
-
starred: this.starred
|
|
89
|
-
});
|
|
90
|
-
};
|
|
91
|
-
this.actionClick = (action) => {
|
|
92
|
-
this.stzhActionClick.emit({
|
|
93
|
-
component: "stzh-servicecard",
|
|
94
|
-
action
|
|
95
|
-
});
|
|
96
|
-
};
|
|
97
|
-
this.arrowUpClick = () => {
|
|
98
|
-
const sortable = this.element.closest("stzh-sortable");
|
|
99
|
-
if (sortable) {
|
|
100
|
-
sortable.moveItem(this.element, "up");
|
|
101
|
-
}
|
|
102
|
-
};
|
|
103
|
-
this.arrowDownClick = () => {
|
|
104
|
-
const sortable = this.element.closest("stzh-sortable");
|
|
105
|
-
if (sortable) {
|
|
106
|
-
sortable.moveItem(this.element, "down");
|
|
107
|
-
}
|
|
108
|
-
};
|
|
109
|
-
}
|
|
110
|
-
handleResize() {
|
|
111
|
-
if (this.debounceResize) {
|
|
112
|
-
window.cancelAnimationFrame(this.debounceResize);
|
|
113
|
-
}
|
|
114
|
-
this.debounceResize = requestAnimationFrame(this.update);
|
|
115
|
-
}
|
|
116
|
-
subtitleWatcher(newValue) {
|
|
117
|
-
if (typeof newValue === "string") {
|
|
118
|
-
try {
|
|
119
|
-
this._subtitles = JSON.parse(newValue);
|
|
120
|
-
}
|
|
121
|
-
catch (err) {
|
|
122
|
-
this._subtitles = [newValue];
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
else {
|
|
126
|
-
this._subtitles = newValue;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
actionsWatcher(newValue) {
|
|
130
|
-
if (typeof newValue === "string") {
|
|
131
|
-
this._actions = JSON.parse(newValue);
|
|
132
|
-
}
|
|
133
|
-
else {
|
|
134
|
-
this._actions = newValue;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
async componentWillLoad() {
|
|
138
|
-
this.subtitleWatcher(this.subtitle);
|
|
139
|
-
this.actionsWatcher(this.actions);
|
|
140
|
-
if (!this.localization) {
|
|
141
|
-
this.localization = await fetchTranslations(this.element, "servicecard");
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
connectedCallback() {
|
|
145
|
-
this.observer = new MutationObserver(this.nodeChange);
|
|
146
|
-
this.observer.observe(this.element, {
|
|
147
|
-
childList: true,
|
|
148
|
-
subtree: true
|
|
149
|
-
});
|
|
150
|
-
}
|
|
151
|
-
disconnectedCallback() {
|
|
152
|
-
this.observer.disconnect();
|
|
153
|
-
}
|
|
154
|
-
render() {
|
|
155
|
-
const leftUsed = hasSlot(this.element, "left");
|
|
156
|
-
const middleUsed = hasSlot(this.element, "middle");
|
|
157
|
-
const rightUsed = hasSlot(this.element, "right");
|
|
158
|
-
const classes = {
|
|
159
|
-
"stzh-servicecard": true,
|
|
160
|
-
"stzh-servicecard--has-left": leftUsed,
|
|
161
|
-
"stzh-servicecard--has-middle": middleUsed,
|
|
162
|
-
"stzh-servicecard--has-right": rightUsed,
|
|
163
|
-
"stzh-servicecard--has-subtitle": !!this.subtitle,
|
|
164
|
-
"stzh-servicecard--has-subtitle-interactive": !!this.subtitle && this.subtitleInteractive,
|
|
165
|
-
"stzh-servicecard--is-collapsed": this.collapsed,
|
|
166
|
-
"stzh-servicecard--is-starred": this.starred,
|
|
167
|
-
[`stzh-servicecard--middle-${this.middleVariant}`]: !!this.middleVariant && middleUsed,
|
|
168
|
-
[`stzh-servicecard--type-${this.type}`]: !!this.type,
|
|
169
|
-
};
|
|
170
|
-
const Subtitle = `${this.subtitleInteractive ? 'button' : 'span'}`;
|
|
171
|
-
return (h(Host, { role: "listitem", "aria-label": this.heading }, h("article", { ref: (el) => (this.mainElement = el), class: classes }, h("stzh-icon", { class: "stzh-servicecard__dnd", name: "drag" }), h("header", { ref: (el) => (this.headerElement = el), class: "stzh-servicecard__header", onClick: this.headerClick }, h("div", { ref: (el) => (this.headerLeftElement = el), class: "stzh-servicecard__header-left" }, h("div", { class: "stzh-servicecard__title-area", "data-dashboardmknlist": "title" }, h("h3", { class: "stzh-servicecard__title", "data-dashboardmknlist": "dnd" }, this.heading), this._subtitles.length > 0 &&
|
|
172
|
-
h(Subtitle, { class: "stzh-servicecard__subtitle", onClick: this.subtitleClick }, this._subtitles.map(subtitle => (h("span", { class: "stzh-servicecard__subtitle-text" }, subtitle)))))), h("div", { ref: (el) => (this.headerRightElement = el), class: "stzh-servicecard__header-right" }, h("div", { class: "stzh-servicecard__card-actions" }, this._actions.map(action => (h("stzh-button", { class: {
|
|
173
|
-
"stzh-servicecard__card-action": true,
|
|
174
|
-
"is-button": true,
|
|
175
|
-
"show-medium": !action.onlyCollapseText,
|
|
176
|
-
"hide-when-collapsed": !action.onlyCollapseText,
|
|
177
|
-
"hide-text-when-collapsed": action.onlyCollapseText
|
|
178
|
-
}, icon: action.icon, badge: action.badge, variant: "tertiary", size: "tiny", badgePosition: "icon", onClick: () => { this.actionClick(action); } }, h("span", { class: {
|
|
179
|
-
"show-medium": action.onlyCollapseText,
|
|
180
|
-
"hide-when-collapsed": action.onlyCollapseText
|
|
181
|
-
} }, action.label)))), this.starrable &&
|
|
182
|
-
h("stzh-tooltip", null, h("stzh-button", { class: "stzh-servicecard__card-action is-star", icon: this.starred ? "star-filled" : "star", variant: "tertiary", size: "tiny", iconOnly: true, onClick: this.starToggleClick }), h("div", { slot: "content" }, this.starred ? this.localization.actionRemove : this.localization.actionAdd)), h("stzh-popover", { label: this.localization.actionsPopoverLabel, placement: "bottom-end", class: "stzh-servicecard__card-action-popover" }, h("stzh-button", { class: "stzh-servicecard__card-action is-further", variant: "tertiary", size: "tiny", icon: "more-vertical", iconOnly: true }), h("stzh-menu", { slot: "content" }, this.starrable &&
|
|
183
|
-
h("stzh-menu-item", { icon: this.starred ? "star-filled" : "star", onClick: this.starToggleClick }, this.starred ? this.localization.actionRemove : this.localization.actionAdd), this._actions.filter(action => !action.onlyCollapseText).map(action => (h("stzh-menu-item", { class: "hide-medium show-when-collapsed", icon: action.icon, badge: action.badge, onClick: () => { this.actionClick(action); } }, action.label))), (!this.sortableDisabled && !this.hideMovementActions) &&
|
|
184
|
-
h(Fragment, null, h("stzh-menu-item", { icon: "arrow-up", onClick: this.arrowUpClick }, this.localization.actionMoveUp), h("stzh-menu-item", { icon: "arrow-down", onClick: this.arrowDownClick }, this.localization.actionMoveDown))))))), h("div", { class: "stzh-servicecard__columns hide-when-collapsed" }, h("div", { class: {
|
|
185
|
-
"stzh-servicecard__column": true,
|
|
186
|
-
"is-left": true
|
|
187
|
-
} }, h("slot", { name: "left" })), h("div", { class: {
|
|
188
|
-
"stzh-servicecard__column": true,
|
|
189
|
-
"is-middle": true,
|
|
190
|
-
"has-no-spacing": this.middleVerticalSpacing === "none"
|
|
191
|
-
} }, h("slot", { name: "middle" })), h("div", { class: {
|
|
192
|
-
"stzh-servicecard__column": true,
|
|
193
|
-
"is-right": true,
|
|
194
|
-
"has-no-spacing": this.rightVerticalSpacing === "none"
|
|
195
|
-
} }, h("slot", { name: "right" }))))));
|
|
196
|
-
}
|
|
197
|
-
static get is() { return "stzh-servicecard"; }
|
|
198
|
-
static get encapsulation() { return "scoped"; }
|
|
199
|
-
static get originalStyleUrls() {
|
|
200
|
-
return {
|
|
201
|
-
"$": ["stzh-servicecard.scss"]
|
|
202
|
-
};
|
|
203
|
-
}
|
|
204
|
-
static get styleUrls() {
|
|
205
|
-
return {
|
|
206
|
-
"$": ["stzh-servicecard.css"]
|
|
207
|
-
};
|
|
208
|
-
}
|
|
209
|
-
static get properties() {
|
|
210
|
-
return {
|
|
211
|
-
"localization": {
|
|
212
|
-
"type": "unknown",
|
|
213
|
-
"mutable": false,
|
|
214
|
-
"complexType": {
|
|
215
|
-
"original": "StzhServicecardLocalizedText",
|
|
216
|
-
"resolved": "StzhLocaleComponent & { actionsPopoverLabel: string; actionMoveUp: string; actionMoveDown: string; actionAdd: string; actionRemove: string; }",
|
|
217
|
-
"references": {
|
|
218
|
-
"StzhServicecardLocalizedText": {
|
|
219
|
-
"location": "import",
|
|
220
|
-
"path": "./stzh-servicecard.localization"
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
},
|
|
224
|
-
"required": false,
|
|
225
|
-
"optional": false,
|
|
226
|
-
"docs": {
|
|
227
|
-
"tags": [],
|
|
228
|
-
"text": "Translation strings"
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
|
-
"collapsed": {
|
|
232
|
-
"type": "boolean",
|
|
233
|
-
"mutable": true,
|
|
234
|
-
"complexType": {
|
|
235
|
-
"original": "boolean",
|
|
236
|
-
"resolved": "boolean",
|
|
237
|
-
"references": {}
|
|
238
|
-
},
|
|
239
|
-
"required": false,
|
|
240
|
-
"optional": false,
|
|
241
|
-
"docs": {
|
|
242
|
-
"tags": [],
|
|
243
|
-
"text": "Whether card is collapsed or not"
|
|
244
|
-
},
|
|
245
|
-
"attribute": "collapsed",
|
|
246
|
-
"reflect": true,
|
|
247
|
-
"defaultValue": "false"
|
|
248
|
-
},
|
|
249
|
-
"starred": {
|
|
250
|
-
"type": "boolean",
|
|
251
|
-
"mutable": true,
|
|
252
|
-
"complexType": {
|
|
253
|
-
"original": "boolean",
|
|
254
|
-
"resolved": "boolean",
|
|
255
|
-
"references": {}
|
|
256
|
-
},
|
|
257
|
-
"required": false,
|
|
258
|
-
"optional": false,
|
|
259
|
-
"docs": {
|
|
260
|
-
"tags": [],
|
|
261
|
-
"text": "Whether card was starred"
|
|
262
|
-
},
|
|
263
|
-
"attribute": "starred",
|
|
264
|
-
"reflect": true,
|
|
265
|
-
"defaultValue": "false"
|
|
266
|
-
},
|
|
267
|
-
"starrable": {
|
|
268
|
-
"type": "boolean",
|
|
269
|
-
"mutable": false,
|
|
270
|
-
"complexType": {
|
|
271
|
-
"original": "boolean",
|
|
272
|
-
"resolved": "boolean",
|
|
273
|
-
"references": {}
|
|
274
|
-
},
|
|
275
|
-
"required": false,
|
|
276
|
-
"optional": false,
|
|
277
|
-
"docs": {
|
|
278
|
-
"tags": [],
|
|
279
|
-
"text": "Whether card star is displayed"
|
|
280
|
-
},
|
|
281
|
-
"attribute": "starrable",
|
|
282
|
-
"reflect": true,
|
|
283
|
-
"defaultValue": "false"
|
|
284
|
-
},
|
|
285
|
-
"heading": {
|
|
286
|
-
"type": "string",
|
|
287
|
-
"mutable": false,
|
|
288
|
-
"complexType": {
|
|
289
|
-
"original": "string",
|
|
290
|
-
"resolved": "string",
|
|
291
|
-
"references": {}
|
|
292
|
-
},
|
|
293
|
-
"required": false,
|
|
294
|
-
"optional": false,
|
|
295
|
-
"docs": {
|
|
296
|
-
"tags": [],
|
|
297
|
-
"text": "Heading"
|
|
298
|
-
},
|
|
299
|
-
"attribute": "heading",
|
|
300
|
-
"reflect": false,
|
|
301
|
-
"defaultValue": "\"\""
|
|
302
|
-
},
|
|
303
|
-
"subtitle": {
|
|
304
|
-
"type": "string",
|
|
305
|
-
"mutable": false,
|
|
306
|
-
"complexType": {
|
|
307
|
-
"original": "string | string[]",
|
|
308
|
-
"resolved": "string | string[]",
|
|
309
|
-
"references": {}
|
|
310
|
-
},
|
|
311
|
-
"required": false,
|
|
312
|
-
"optional": false,
|
|
313
|
-
"docs": {
|
|
314
|
-
"tags": [],
|
|
315
|
-
"text": "Subtitle"
|
|
316
|
-
},
|
|
317
|
-
"attribute": "subtitle",
|
|
318
|
-
"reflect": false,
|
|
319
|
-
"defaultValue": "\"\""
|
|
320
|
-
},
|
|
321
|
-
"actions": {
|
|
322
|
-
"type": "string",
|
|
323
|
-
"mutable": false,
|
|
324
|
-
"complexType": {
|
|
325
|
-
"original": "string | StzhServiceCardAction[]",
|
|
326
|
-
"resolved": "StzhServiceCardAction[] | string",
|
|
327
|
-
"references": {
|
|
328
|
-
"StzhServiceCardAction": {
|
|
329
|
-
"location": "import",
|
|
330
|
-
"path": "../../index"
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
},
|
|
334
|
-
"required": false,
|
|
335
|
-
"optional": false,
|
|
336
|
-
"docs": {
|
|
337
|
-
"tags": [],
|
|
338
|
-
"text": "Card actions"
|
|
339
|
-
},
|
|
340
|
-
"attribute": "actions",
|
|
341
|
-
"reflect": false,
|
|
342
|
-
"defaultValue": "[]"
|
|
343
|
-
},
|
|
344
|
-
"subtitleInteractive": {
|
|
345
|
-
"type": "boolean",
|
|
346
|
-
"mutable": false,
|
|
347
|
-
"complexType": {
|
|
348
|
-
"original": "boolean",
|
|
349
|
-
"resolved": "boolean",
|
|
350
|
-
"references": {}
|
|
351
|
-
},
|
|
352
|
-
"required": false,
|
|
353
|
-
"optional": false,
|
|
354
|
-
"docs": {
|
|
355
|
-
"tags": [],
|
|
356
|
-
"text": "Whether subtitle should be rendered as button and event `stzhSubtitleClick` executed on click"
|
|
357
|
-
},
|
|
358
|
-
"attribute": "subtitle-interactive",
|
|
359
|
-
"reflect": false,
|
|
360
|
-
"defaultValue": "false"
|
|
361
|
-
},
|
|
362
|
-
"type": {
|
|
363
|
-
"type": "string",
|
|
364
|
-
"mutable": false,
|
|
365
|
-
"complexType": {
|
|
366
|
-
"original": "\"default\" | \"alert\"",
|
|
367
|
-
"resolved": "\"alert\" | \"default\"",
|
|
368
|
-
"references": {}
|
|
369
|
-
},
|
|
370
|
-
"required": false,
|
|
371
|
-
"optional": false,
|
|
372
|
-
"docs": {
|
|
373
|
-
"tags": [],
|
|
374
|
-
"text": "Type"
|
|
375
|
-
},
|
|
376
|
-
"attribute": "type",
|
|
377
|
-
"reflect": true,
|
|
378
|
-
"defaultValue": "\"default\""
|
|
379
|
-
},
|
|
380
|
-
"middleVariant": {
|
|
381
|
-
"type": "string",
|
|
382
|
-
"mutable": false,
|
|
383
|
-
"complexType": {
|
|
384
|
-
"original": "\"to-right\" | \"to-left\"",
|
|
385
|
-
"resolved": "\"to-left\" | \"to-right\"",
|
|
386
|
-
"references": {}
|
|
387
|
-
},
|
|
388
|
-
"required": false,
|
|
389
|
-
"optional": false,
|
|
390
|
-
"docs": {
|
|
391
|
-
"tags": [],
|
|
392
|
-
"text": "Middle column position variant (positioning behaviour on tablet)"
|
|
393
|
-
},
|
|
394
|
-
"attribute": "middle-variant",
|
|
395
|
-
"reflect": true,
|
|
396
|
-
"defaultValue": "\"to-right\""
|
|
397
|
-
},
|
|
398
|
-
"middleVerticalSpacing": {
|
|
399
|
-
"type": "string",
|
|
400
|
-
"mutable": false,
|
|
401
|
-
"complexType": {
|
|
402
|
-
"original": "\"default\" | \"none\"",
|
|
403
|
-
"resolved": "\"default\" | \"none\"",
|
|
404
|
-
"references": {}
|
|
405
|
-
},
|
|
406
|
-
"required": false,
|
|
407
|
-
"optional": false,
|
|
408
|
-
"docs": {
|
|
409
|
-
"tags": [],
|
|
410
|
-
"text": "Set middle column vertical spacing"
|
|
411
|
-
},
|
|
412
|
-
"attribute": "middle-vertical-spacing",
|
|
413
|
-
"reflect": true,
|
|
414
|
-
"defaultValue": "\"default\""
|
|
415
|
-
},
|
|
416
|
-
"rightVerticalSpacing": {
|
|
417
|
-
"type": "string",
|
|
418
|
-
"mutable": false,
|
|
419
|
-
"complexType": {
|
|
420
|
-
"original": "\"default\" | \"none\"",
|
|
421
|
-
"resolved": "\"default\" | \"none\"",
|
|
422
|
-
"references": {}
|
|
423
|
-
},
|
|
424
|
-
"required": false,
|
|
425
|
-
"optional": false,
|
|
426
|
-
"docs": {
|
|
427
|
-
"tags": [],
|
|
428
|
-
"text": "Set right column vertical spacing"
|
|
429
|
-
},
|
|
430
|
-
"attribute": "right-vertical-spacing",
|
|
431
|
-
"reflect": true,
|
|
432
|
-
"defaultValue": "\"default\""
|
|
433
|
-
},
|
|
434
|
-
"sortableDisabled": {
|
|
435
|
-
"type": "boolean",
|
|
436
|
-
"mutable": false,
|
|
437
|
-
"complexType": {
|
|
438
|
-
"original": "boolean",
|
|
439
|
-
"resolved": "boolean",
|
|
440
|
-
"references": {}
|
|
441
|
-
},
|
|
442
|
-
"required": false,
|
|
443
|
-
"optional": false,
|
|
444
|
-
"docs": {
|
|
445
|
-
"tags": [],
|
|
446
|
-
"text": "Whether sorting should be disabled"
|
|
447
|
-
},
|
|
448
|
-
"attribute": "sortable-disabled",
|
|
449
|
-
"reflect": true,
|
|
450
|
-
"defaultValue": "false"
|
|
451
|
-
},
|
|
452
|
-
"collapsible": {
|
|
453
|
-
"type": "boolean",
|
|
454
|
-
"mutable": false,
|
|
455
|
-
"complexType": {
|
|
456
|
-
"original": "boolean",
|
|
457
|
-
"resolved": "boolean",
|
|
458
|
-
"references": {}
|
|
459
|
-
},
|
|
460
|
-
"required": false,
|
|
461
|
-
"optional": false,
|
|
462
|
-
"docs": {
|
|
463
|
-
"tags": [],
|
|
464
|
-
"text": "Whether card is collapsible"
|
|
465
|
-
},
|
|
466
|
-
"attribute": "collapsible",
|
|
467
|
-
"reflect": true,
|
|
468
|
-
"defaultValue": "false"
|
|
469
|
-
},
|
|
470
|
-
"hideMovementActions": {
|
|
471
|
-
"type": "boolean",
|
|
472
|
-
"mutable": false,
|
|
473
|
-
"complexType": {
|
|
474
|
-
"original": "boolean",
|
|
475
|
-
"resolved": "boolean",
|
|
476
|
-
"references": {}
|
|
477
|
-
},
|
|
478
|
-
"required": false,
|
|
479
|
-
"optional": false,
|
|
480
|
-
"docs": {
|
|
481
|
-
"tags": [],
|
|
482
|
-
"text": "Whether movement menu items should be shown"
|
|
483
|
-
},
|
|
484
|
-
"attribute": "hide-movement-actions",
|
|
485
|
-
"reflect": false,
|
|
486
|
-
"defaultValue": "false"
|
|
487
|
-
}
|
|
488
|
-
};
|
|
489
|
-
}
|
|
490
|
-
static get events() {
|
|
491
|
-
return [{
|
|
492
|
-
"method": "stzhCollapse",
|
|
493
|
-
"name": "stzhCollapse",
|
|
494
|
-
"bubbles": true,
|
|
495
|
-
"cancelable": true,
|
|
496
|
-
"composed": true,
|
|
497
|
-
"docs": {
|
|
498
|
-
"tags": [],
|
|
499
|
-
"text": "Collapse event"
|
|
500
|
-
},
|
|
501
|
-
"complexType": {
|
|
502
|
-
"original": "StzhServicecardCollapseEvent",
|
|
503
|
-
"resolved": "{ component: \"stzh-servicecard\"; collapsed: boolean; }",
|
|
504
|
-
"references": {
|
|
505
|
-
"StzhServicecardCollapseEvent": {
|
|
506
|
-
"location": "import",
|
|
507
|
-
"path": "../../index"
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
}, {
|
|
512
|
-
"method": "stzhSubtitleClick",
|
|
513
|
-
"name": "stzhSubtitleClick",
|
|
514
|
-
"bubbles": true,
|
|
515
|
-
"cancelable": true,
|
|
516
|
-
"composed": true,
|
|
517
|
-
"docs": {
|
|
518
|
-
"tags": [],
|
|
519
|
-
"text": "Subtitle click event"
|
|
520
|
-
},
|
|
521
|
-
"complexType": {
|
|
522
|
-
"original": "StzhServicecardSubtitleClickEvent",
|
|
523
|
-
"resolved": "{ component: \"stzh-servicecard\"; }",
|
|
524
|
-
"references": {
|
|
525
|
-
"StzhServicecardSubtitleClickEvent": {
|
|
526
|
-
"location": "import",
|
|
527
|
-
"path": "../../index"
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
}, {
|
|
532
|
-
"method": "stzhStarClick",
|
|
533
|
-
"name": "stzhStarClick",
|
|
534
|
-
"bubbles": true,
|
|
535
|
-
"cancelable": true,
|
|
536
|
-
"composed": true,
|
|
537
|
-
"docs": {
|
|
538
|
-
"tags": [],
|
|
539
|
-
"text": "Star click event"
|
|
540
|
-
},
|
|
541
|
-
"complexType": {
|
|
542
|
-
"original": "StzhServicecardStarClickEvent",
|
|
543
|
-
"resolved": "{ component: \"stzh-servicecard\"; starred: boolean; }",
|
|
544
|
-
"references": {
|
|
545
|
-
"StzhServicecardStarClickEvent": {
|
|
546
|
-
"location": "import",
|
|
547
|
-
"path": "../../index"
|
|
548
|
-
}
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
}, {
|
|
552
|
-
"method": "stzhActionClick",
|
|
553
|
-
"name": "stzhActionClick",
|
|
554
|
-
"bubbles": true,
|
|
555
|
-
"cancelable": true,
|
|
556
|
-
"composed": true,
|
|
557
|
-
"docs": {
|
|
558
|
-
"tags": [],
|
|
559
|
-
"text": "Action click event"
|
|
560
|
-
},
|
|
561
|
-
"complexType": {
|
|
562
|
-
"original": "StzhServicecardActionClickEvent",
|
|
563
|
-
"resolved": "{ component: \"stzh-servicecard\"; action: StzhServiceCardAction; }",
|
|
564
|
-
"references": {
|
|
565
|
-
"StzhServicecardActionClickEvent": {
|
|
566
|
-
"location": "import",
|
|
567
|
-
"path": "../../index"
|
|
568
|
-
}
|
|
569
|
-
}
|
|
570
|
-
}
|
|
571
|
-
}];
|
|
572
|
-
}
|
|
573
|
-
static get elementRef() { return "element"; }
|
|
574
|
-
static get watchers() {
|
|
575
|
-
return [{
|
|
576
|
-
"propName": "subtitle",
|
|
577
|
-
"methodName": "subtitleWatcher"
|
|
578
|
-
}, {
|
|
579
|
-
"propName": "actions",
|
|
580
|
-
"methodName": "actionsWatcher"
|
|
581
|
-
}];
|
|
582
|
-
}
|
|
583
|
-
static get listeners() {
|
|
584
|
-
return [{
|
|
585
|
-
"name": "resize",
|
|
586
|
-
"method": "handleResize",
|
|
587
|
-
"target": "window",
|
|
588
|
-
"capture": true,
|
|
589
|
-
"passive": true
|
|
590
|
-
}];
|
|
591
|
-
}
|
|
592
|
-
}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { h } from '../../utils/h';
|
|
2
|
-
import readme from './readme.md';
|
|
3
|
-
import { withDesign } from 'storybook-addon-designs';
|
|
4
|
-
import { getFigmaLink } from '../../../figma';
|
|
5
|
-
|
|
6
|
-
export default {
|
|
7
|
-
title: 'Components/Servicecard',
|
|
8
|
-
component: 'stzh-servicecard',
|
|
9
|
-
parameters: {
|
|
10
|
-
actions: {
|
|
11
|
-
handles: ['stzhCollapse', 'stzhStarClick', 'stzhSubtitleClick', 'stzhActionClick']
|
|
12
|
-
},
|
|
13
|
-
layout: 'padded',
|
|
14
|
-
docs: {
|
|
15
|
-
description: {
|
|
16
|
-
component: readme
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
design: {
|
|
20
|
-
type: 'figma',
|
|
21
|
-
url: getFigmaLink('servicecard'),
|
|
22
|
-
allowFullscreen: true
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
decorators: [
|
|
26
|
-
withDesign
|
|
27
|
-
]
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
const Template = (args) => (
|
|
31
|
-
<stzh-servicecard {...args}>
|
|
32
|
-
<div slot="left">Content Left</div>
|
|
33
|
-
<div slot="right">Content Right</div>
|
|
34
|
-
</stzh-servicecard>
|
|
35
|
-
);
|
|
36
|
-
|
|
37
|
-
const TemplateThreeColumn = (args) => (
|
|
38
|
-
<stzh-servicecard {...args}>
|
|
39
|
-
<div slot="left">Content Left</div>
|
|
40
|
-
<div slot="middle">Content Middle</div>
|
|
41
|
-
<div slot="right">Content Right</div>
|
|
42
|
-
</stzh-servicecard>
|
|
43
|
-
);
|
|
44
|
-
|
|
45
|
-
const actions = `[
|
|
46
|
-
{
|
|
47
|
-
"id": "delete",
|
|
48
|
-
"icon": "delete",
|
|
49
|
-
"label": "Action"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"id": "message",
|
|
53
|
-
"onlyCollapseText": true,
|
|
54
|
-
"icon": "mail",
|
|
55
|
-
"badge": "3",
|
|
56
|
-
"label": "Messages"
|
|
57
|
-
}
|
|
58
|
-
]`;
|
|
59
|
-
|
|
60
|
-
export const TwoColumn = Template.bind({});
|
|
61
|
-
TwoColumn.args = {
|
|
62
|
-
heading: "Lorem ipsum",
|
|
63
|
-
subtitle: "Dolor si",
|
|
64
|
-
actions
|
|
65
|
-
};
|
|
66
|
-
|
|
67
|
-
export const ThreeColumn = TemplateThreeColumn.bind({});
|
|
68
|
-
ThreeColumn.args = {
|
|
69
|
-
heading: "Lorem ipsum",
|
|
70
|
-
subtitle: "Dolor si",
|
|
71
|
-
actions
|
|
72
|
-
};
|
|
73
|
-
|