@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
|
@@ -5,11 +5,15 @@
|
|
|
5
5
|
* It contains typing information for all components that exist in this project.
|
|
6
6
|
*/
|
|
7
7
|
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
-
import { Font, Layout, Space, StzhAccordionItemClosedEvent, StzhAccordionItemCloseEvent, StzhAccordionItemOpenedEvent, StzhAccordionItemOpenEvent, StzhAppointmentsChangeEvent, StzhButtonBlurEvent, StzhButtonFocusEvent, StzhCalendarChangeEvent, StzhCalendarDateDisabledPredicate, StzhCheckboxBlurEvent, StzhCheckboxChangeEvent, StzhCheckboxFocusEvent, StzhChipBlurEvent, StzhChipClickEvent, StzhChipFocusEvent, StzhChipRemoveEvent, StzhChipSelectChangeEvent, StzhChipSelectItem, StzhDatamessagelistItemActionClickEvent, StzhDatamessagelistItemClickEvent, StzhDatamessagelistItemEntryAction, StzhDatamessagelistItemEntryLoadingStatus, StzhDatamessagelistItemEntryMeta, StzhDatamessagelistItemEntryTag, StzhDatepickerChangeEvent, StzhDialogCloseEvent, StzhDialogOpenEvent, StzhDropdowCloseEvent, StzhDropdowInitEvent, StzhDropdownBlurEvent, StzhDropdownChangeEvent, StzhDropdownFocusEvent, StzhDropdownItemAddEvent, StzhDropdownItemRemoveEvent, StzhDropdownOpenEvent, StzhDropdownOptionAddEvent, StzhDropdownOptionRemoveEvent, StzhGhettoboxCloseEvent, StzhGhettoboxOpenEvent, StzhInputBlurEvent, StzhInputChangeEvent, StzhInputFocusEvent, StzhLinkBlurEvent, StzhLinkFocusEvent, StzhMenuItemBlurEvent, StzhMenuItemFocusEvent, StzhMessageCloseEvent, StzhMessageOpenEvent, StzhOverlayCloseEvent, StzhOverlayOpenEvent, StzhPopoverClosedEvent, StzhPopoverCloseEvent, StzhPopoverOpenedEvent, StzhPopoverOpenEvent, StzhProgressbarDataItem, StzhProgressbarItemClickEvent, StzhProgressbarItemDottedClickEvent, StzhRadioBlurEvent, StzhRadioChangeEvent, StzhRadioFocusEvent,
|
|
8
|
+
import { Font, Layout, Space, StzhAccordionItemClosedEvent, StzhAccordionItemCloseEvent, StzhAccordionItemOpenedEvent, StzhAccordionItemOpenEvent, StzhActionsetItem, StzhActionsetItemClickEvent, StzhAppointmentsChangeEvent, StzhButtonBlurEvent, StzhButtonChangeEvent, StzhButtonFocusEvent, StzhCalendarChangeEvent, StzhCalendarDateDisabledPredicate, StzhCardCollapseEvent, StzhCardHeaderAction, StzhCardHeaderActionClickEvent, StzhCardListCollapseAllEvent, StzhCardStarClickEvent, StzhCardSubtitleClickEvent, StzhCheckboxBlurEvent, StzhCheckboxChangeEvent, StzhCheckboxFocusEvent, StzhChipBlurEvent, StzhChipClickEvent, StzhChipFocusEvent, StzhChipRemoveEvent, StzhChipSelectChangeEvent, StzhChipSelectItem, StzhDatalistItemActionClickEvent, StzhDatalistItemEntry, StzhDatamessagelistItemActionClickEvent, StzhDatamessagelistItemClickEvent, StzhDatamessagelistItemEntryAction, StzhDatamessagelistItemEntryLoadingStatus, StzhDatamessagelistItemEntryMeta, StzhDatamessagelistItemEntryTag, StzhDatepickerChangeEvent, StzhDialogCloseEvent, StzhDialogOpenEvent, StzhDropdowCloseEvent, StzhDropdowInitEvent, StzhDropdownBlurEvent, StzhDropdownChangeEvent, StzhDropdownFocusEvent, StzhDropdownItemAddEvent, StzhDropdownItemRemoveEvent, StzhDropdownOpenEvent, StzhDropdownOptionAddEvent, StzhDropdownOptionRemoveEvent, StzhGhettoboxCloseEvent, StzhGhettoboxOpenEvent, StzhInputBlurEvent, StzhInputChangeEvent, StzhInputFocusEvent, StzhLinkBlurEvent, StzhLinkFocusEvent, StzhMenuItemBlurEvent, StzhMenuItemFocusEvent, StzhMessageCloseEvent, StzhMessageOpenEvent, StzhOverlayCloseEvent, StzhOverlayOpenEvent, StzhPopoverClosedEvent, StzhPopoverCloseEvent, StzhPopoverOpenedEvent, StzhPopoverOpenEvent, StzhProgressbarDataItem, StzhProgressbarItemClickEvent, StzhProgressbarItemDottedClickEvent, StzhRadioBlurEvent, StzhRadioChangeEvent, StzhRadioFocusEvent, StzhSortableDisableEvent, StzhSortableUpdateEvent, StzhToggleBlurEvent, StzhToggleChangeEvent, StzhToggleFocusEvent, StzhTooltipClosedEvent, StzhTooltipCloseEvent, StzhTooltipOpenedEvent, StzhTooltipOpenEvent, StzhUploadCanceledEvent, StzhUploadCanceledMultipleEvent, StzhUploadCompleteEvent, StzhUploadCompleteMultipleEvent, StzhUploadErrorEvent, StzhUploadErrorMultipleEvent, StzhUploadFileAddedEvent, StzhUploadFileRemovedEvent, StzhUploadFilesAddedEvent, StzhUploadFilesItem, StzhUploadProcessingEvent, StzhUploadProcessingMultipleEvent, StzhUploadProgressEvent, StzhUploadProgressTotalEvent, StzhUploadSendingEvent, StzhUploadSendingMultipleEvent, StzhUploadSuccessEvent, StzhUploadSuccessMultipleEvent, StzhVbzLinechipBlurEvent, StzhVbzLinechipFocusEvent, VBZ } from "./index";
|
|
9
|
+
import { StzhActionsetLocalizedText } from "./components/stzh-actionset/stzh-actionset.localization";
|
|
10
|
+
import { Placement } from "@floating-ui/dom";
|
|
9
11
|
import { StzhAppointmentsLocalizedText } from "./components/stzh-appointments/stzh-appointments.localization";
|
|
10
12
|
import { StzhLocaleAdapter } from "./utils/date-adapter";
|
|
11
13
|
import { DaysOfWeek } from "./utils/date-utils";
|
|
12
14
|
import { StzhCalendarLocalizedText } from "./components/stzh-calendar/stzh-calendar.localization";
|
|
15
|
+
import { StzhCardLocalizedText } from "./components/stzh-card/stzh-card.localization";
|
|
16
|
+
import { StzhCardListLocalizedText } from "./components/stzh-card-list/stzh-card-list.localization";
|
|
13
17
|
import { StzhLocaleComponent } from "./utils/translation-utils";
|
|
14
18
|
import { StzhDatamessagelistItemLocalizedText } from "./components/stzh-datamessagelist-item/stzh-datamessagelist-item.localization";
|
|
15
19
|
import { StzhDatatableLocalizedText } from "./components/stzh-datatable/stzh-datatable.localization";
|
|
@@ -19,11 +23,8 @@ import { StzhDropdownLocalizedText } from "./components/stzh-dropdown/stzh-dropd
|
|
|
19
23
|
import { StzhFooterLocalizedText } from "./components/stzh-footer/stzh-footer.localization";
|
|
20
24
|
import { StzhGhettoboxLocalizedText } from "./components/stzh-ghettobox/stzh-ghettobox.localization";
|
|
21
25
|
import { StzhMessageLocalizedText } from "./components/stzh-message/stzh-message.localization";
|
|
22
|
-
import { Placement } from "@floating-ui/dom";
|
|
23
26
|
import { StzhPopoverLocalizedText } from "./components/stzh-popover/stzh-popover.localization";
|
|
24
27
|
import { StzhSaptchaLocalizedText } from "./components/stzh-saptcha/stzh-saptcha.localization";
|
|
25
|
-
import { StzhServicecardLocalizedText } from "./components/stzh-servicecard/stzh-servicecard.localization";
|
|
26
|
-
import { StzhServicecardListLocalizedText } from "./components/stzh-servicecard-list/stzh-servicecard-list.localization";
|
|
27
28
|
import { StzhSortableLocalizedText } from "./components/stzh-sortable/stzh-sortable.localization";
|
|
28
29
|
import { StzhTooltipLocalizedText } from "./components/stzh-tooltip/stzh-tooltip.localization";
|
|
29
30
|
import { StzhUploadLocalizedText } from "./components/stzh-upload/stzh-upload.localization";
|
|
@@ -89,6 +90,32 @@ export namespace Components {
|
|
|
89
90
|
*/
|
|
90
91
|
"withBorder": boolean;
|
|
91
92
|
}
|
|
93
|
+
interface StzhActionset {
|
|
94
|
+
/**
|
|
95
|
+
* Card header actions
|
|
96
|
+
*/
|
|
97
|
+
"actions": string | StzhActionsetItem[];
|
|
98
|
+
/**
|
|
99
|
+
* Translation strings
|
|
100
|
+
*/
|
|
101
|
+
"localization": StzhActionsetLocalizedText;
|
|
102
|
+
/**
|
|
103
|
+
* Popover button size
|
|
104
|
+
*/
|
|
105
|
+
"popoverButtonSize": "" | "default" | "small" | "tiny";
|
|
106
|
+
/**
|
|
107
|
+
* Popover button variant
|
|
108
|
+
*/
|
|
109
|
+
"popoverButtonVariant": "" | "default" | "secondary" | "input" | "tertiary";
|
|
110
|
+
/**
|
|
111
|
+
* Popover placement
|
|
112
|
+
*/
|
|
113
|
+
"popoverPlacement": Placement;
|
|
114
|
+
/**
|
|
115
|
+
* Variant determining what position the action buttons are
|
|
116
|
+
*/
|
|
117
|
+
"variant": "stack" | "overflow";
|
|
118
|
+
}
|
|
92
119
|
interface StzhAppnav {
|
|
93
120
|
/**
|
|
94
121
|
* Link of app title (only used if `app-title` is defined)
|
|
@@ -170,6 +197,10 @@ export namespace Components {
|
|
|
170
197
|
* Badge position
|
|
171
198
|
*/
|
|
172
199
|
"badgePosition": "icon" | "button";
|
|
200
|
+
/**
|
|
201
|
+
* Checked status (if type is radio)
|
|
202
|
+
*/
|
|
203
|
+
"checked": boolean;
|
|
173
204
|
/**
|
|
174
205
|
* Whether the button is disabled
|
|
175
206
|
*/
|
|
@@ -202,6 +233,10 @@ export namespace Components {
|
|
|
202
233
|
* Label
|
|
203
234
|
*/
|
|
204
235
|
"label": string;
|
|
236
|
+
/**
|
|
237
|
+
* The name of the input element (if type is radio)
|
|
238
|
+
*/
|
|
239
|
+
"name": string;
|
|
205
240
|
/**
|
|
206
241
|
* Focus button
|
|
207
242
|
*/
|
|
@@ -221,7 +256,11 @@ export namespace Components {
|
|
|
221
256
|
/**
|
|
222
257
|
* Type of the button
|
|
223
258
|
*/
|
|
224
|
-
"type": "button" | "submit" | "reset";
|
|
259
|
+
"type": "button" | "submit" | "reset" | "radio";
|
|
260
|
+
/**
|
|
261
|
+
* The value of the input element (if type is radio)
|
|
262
|
+
*/
|
|
263
|
+
"value": string;
|
|
225
264
|
/**
|
|
226
265
|
* Variant style
|
|
227
266
|
*/
|
|
@@ -261,6 +300,110 @@ export namespace Components {
|
|
|
261
300
|
*/
|
|
262
301
|
"value": string;
|
|
263
302
|
}
|
|
303
|
+
interface StzhCard {
|
|
304
|
+
/**
|
|
305
|
+
* Whether card is checked (if card is selectable)
|
|
306
|
+
*/
|
|
307
|
+
"checked": boolean;
|
|
308
|
+
/**
|
|
309
|
+
* Whether card is collapsed or not
|
|
310
|
+
*/
|
|
311
|
+
"collapsed": boolean;
|
|
312
|
+
/**
|
|
313
|
+
* Whether card is collapsible
|
|
314
|
+
*/
|
|
315
|
+
"collapsible": boolean;
|
|
316
|
+
/**
|
|
317
|
+
* Whether the element is disabled or not (if card is selectable)
|
|
318
|
+
*/
|
|
319
|
+
"disabled": boolean;
|
|
320
|
+
/**
|
|
321
|
+
* Card footer actions
|
|
322
|
+
*/
|
|
323
|
+
"footerActions": string | StzhActionsetItem[];
|
|
324
|
+
/**
|
|
325
|
+
* Card header actions
|
|
326
|
+
*/
|
|
327
|
+
"headerActions": string | StzhCardHeaderAction[];
|
|
328
|
+
/**
|
|
329
|
+
* Heading
|
|
330
|
+
*/
|
|
331
|
+
"heading": string;
|
|
332
|
+
/**
|
|
333
|
+
* Whether to hide footer separation border
|
|
334
|
+
*/
|
|
335
|
+
"hideFooterBorder": boolean;
|
|
336
|
+
/**
|
|
337
|
+
* Whether to hide header separation border
|
|
338
|
+
*/
|
|
339
|
+
"hideHeaderBorder": boolean;
|
|
340
|
+
/**
|
|
341
|
+
* Whether movement menu items should be shown
|
|
342
|
+
*/
|
|
343
|
+
"hideMovementActions": boolean;
|
|
344
|
+
/**
|
|
345
|
+
* Translation strings
|
|
346
|
+
*/
|
|
347
|
+
"localization": StzhCardLocalizedText;
|
|
348
|
+
/**
|
|
349
|
+
* The name of the input element (if card is selectable)
|
|
350
|
+
*/
|
|
351
|
+
"name": string;
|
|
352
|
+
/**
|
|
353
|
+
* Whether card is selectable
|
|
354
|
+
*/
|
|
355
|
+
"selectable": boolean;
|
|
356
|
+
/**
|
|
357
|
+
* Whether sorting should be disabled
|
|
358
|
+
*/
|
|
359
|
+
"sortableDisabled": boolean;
|
|
360
|
+
/**
|
|
361
|
+
* Whether card star is displayed
|
|
362
|
+
*/
|
|
363
|
+
"starrable": boolean;
|
|
364
|
+
/**
|
|
365
|
+
* Whether card was starred
|
|
366
|
+
*/
|
|
367
|
+
"starred": boolean;
|
|
368
|
+
/**
|
|
369
|
+
* Subtitle
|
|
370
|
+
*/
|
|
371
|
+
"subtitle": string | string[];
|
|
372
|
+
/**
|
|
373
|
+
* Whether subtitle should be rendered as button and event `stzhSubtitleClick` executed on click
|
|
374
|
+
*/
|
|
375
|
+
"subtitleInteractive": boolean;
|
|
376
|
+
/**
|
|
377
|
+
* Type
|
|
378
|
+
*/
|
|
379
|
+
"type": "default" | "alert";
|
|
380
|
+
/**
|
|
381
|
+
* The value of the input element (if card is selectable)
|
|
382
|
+
*/
|
|
383
|
+
"value": string;
|
|
384
|
+
}
|
|
385
|
+
interface StzhCardList {
|
|
386
|
+
/**
|
|
387
|
+
* Translation strings
|
|
388
|
+
*/
|
|
389
|
+
"localization": StzhCardListLocalizedText;
|
|
390
|
+
/**
|
|
391
|
+
* Whether collapse/expand toggle link
|
|
392
|
+
*/
|
|
393
|
+
"showToggleLink": boolean;
|
|
394
|
+
/**
|
|
395
|
+
* HTML attribute that is used by the `toArray()` of sortable method
|
|
396
|
+
*/
|
|
397
|
+
"sortableDataIdAttribute": string;
|
|
398
|
+
/**
|
|
399
|
+
* Whether sorting should be disabled
|
|
400
|
+
*/
|
|
401
|
+
"sortableDisabled": boolean;
|
|
402
|
+
/**
|
|
403
|
+
* Algorithm how the ghost element will be cloned
|
|
404
|
+
*/
|
|
405
|
+
"sortableGhostClone": Function;
|
|
406
|
+
}
|
|
264
407
|
interface StzhCell {
|
|
265
408
|
/**
|
|
266
409
|
* Control how cells items are positioned along a container's cross axis
|
|
@@ -475,6 +618,36 @@ export namespace Components {
|
|
|
475
618
|
}
|
|
476
619
|
interface StzhCspace {
|
|
477
620
|
}
|
|
621
|
+
interface StzhDatalist {
|
|
622
|
+
/**
|
|
623
|
+
* Direction
|
|
624
|
+
*/
|
|
625
|
+
"direction": "vertical" | "horizontal";
|
|
626
|
+
/**
|
|
627
|
+
* Direction above large breakpoint
|
|
628
|
+
*/
|
|
629
|
+
"directionLarge": "vertical" | "horizontal" | "inherit";
|
|
630
|
+
/**
|
|
631
|
+
* Direction above medium breakpoint
|
|
632
|
+
*/
|
|
633
|
+
"directionMedium": "vertical" | "horizontal" | "inherit";
|
|
634
|
+
/**
|
|
635
|
+
* Direction above small breakpoint
|
|
636
|
+
*/
|
|
637
|
+
"directionSmall": "vertical" | "horizontal" | "inherit";
|
|
638
|
+
/**
|
|
639
|
+
* Direction above ultra breakpoint
|
|
640
|
+
*/
|
|
641
|
+
"directionUltra": "vertical" | "horizontal" | "inherit";
|
|
642
|
+
/**
|
|
643
|
+
* Hide border lines between items
|
|
644
|
+
*/
|
|
645
|
+
"hideBorder": boolean;
|
|
646
|
+
/**
|
|
647
|
+
* Items in datalist Array of objects that must at least include `value` attribute. Can optionally contain `label`, `meta`, `icon`, `href` attribute: `[{"value":"Value 1", "label": "Label 1"}, {"value":"Value 2", "label": "Label 2"}]`
|
|
648
|
+
*/
|
|
649
|
+
"items": StzhDatalistItemEntry[] | string;
|
|
650
|
+
}
|
|
478
651
|
interface StzhDatamessagelist {
|
|
479
652
|
}
|
|
480
653
|
interface StzhDatamessagelistItem {
|
|
@@ -614,11 +787,6 @@ export namespace Components {
|
|
|
614
787
|
* Name of the hidden date picker input.
|
|
615
788
|
*/
|
|
616
789
|
"name": string;
|
|
617
|
-
/**
|
|
618
|
-
* Placeholder text
|
|
619
|
-
* @deprecated
|
|
620
|
-
*/
|
|
621
|
-
"placeholder": string;
|
|
622
790
|
/**
|
|
623
791
|
* Whether the element is readonly or not
|
|
624
792
|
*/
|
|
@@ -717,6 +885,10 @@ export namespace Components {
|
|
|
717
885
|
* One or multiple error message (use error slot as alternative)
|
|
718
886
|
*/
|
|
719
887
|
"error": string | string[];
|
|
888
|
+
/**
|
|
889
|
+
* Return loaded/cached search queries (calls from load property function)
|
|
890
|
+
*/
|
|
891
|
+
"getLoadedSearches": () => Promise<any>;
|
|
720
892
|
/**
|
|
721
893
|
* Returns the value of the control. If multiple items can be selected, this returns an array, otherwise a string.
|
|
722
894
|
*/
|
|
@@ -749,6 +921,10 @@ export namespace Components {
|
|
|
749
921
|
* Invoked when new options should be loaded from the server. Called with the current query string and a callback function to call with the results when they are loaded (or nothing when an error arises).
|
|
750
922
|
*/
|
|
751
923
|
"load": (query: string, callback: Function) => any[] | null;
|
|
924
|
+
/**
|
|
925
|
+
* Load items by calling load property/function
|
|
926
|
+
*/
|
|
927
|
+
"loadItems": (query: string) => Promise<any>;
|
|
752
928
|
/**
|
|
753
929
|
* The number of milliseconds to wait before requesting options from the server or null. If null, throttling is disabled. Useful when loading options dynamically while the user types a search / filter expression.
|
|
754
930
|
*/
|
|
@@ -809,11 +985,6 @@ export namespace Components {
|
|
|
809
985
|
* Available options
|
|
810
986
|
*/
|
|
811
987
|
"options": any[] | string;
|
|
812
|
-
/**
|
|
813
|
-
* Placeholder option
|
|
814
|
-
* @deprecated
|
|
815
|
-
*/
|
|
816
|
-
"placeholder": string;
|
|
817
988
|
/**
|
|
818
989
|
* Popover placement
|
|
819
990
|
*/
|
|
@@ -826,6 +997,10 @@ export namespace Components {
|
|
|
826
997
|
* Required status
|
|
827
998
|
*/
|
|
828
999
|
"required": boolean;
|
|
1000
|
+
/**
|
|
1001
|
+
* Reset loaded/cached search queries (calls from load property function)
|
|
1002
|
+
*/
|
|
1003
|
+
"resetLoadedSearches": () => Promise<void>;
|
|
829
1004
|
/**
|
|
830
1005
|
* When searching for multiple terms (separated by space), this is the operator used. Can be 'and' or 'or'
|
|
831
1006
|
*/
|
|
@@ -841,7 +1016,7 @@ export namespace Components {
|
|
|
841
1016
|
/**
|
|
842
1017
|
* Set new value
|
|
843
1018
|
*/
|
|
844
|
-
"setValue": (newValue: string | string[]) => Promise<void>;
|
|
1019
|
+
"setValue": (newValue: string | string[], silent?: boolean) => Promise<void>;
|
|
845
1020
|
/**
|
|
846
1021
|
* Show text in label depending if field is optional/required
|
|
847
1022
|
*/
|
|
@@ -1061,10 +1236,18 @@ export namespace Components {
|
|
|
1061
1236
|
* Translation strings
|
|
1062
1237
|
*/
|
|
1063
1238
|
"localization": StzhLocaleComponent;
|
|
1239
|
+
/**
|
|
1240
|
+
* If input type is number, this will be the maximum step number
|
|
1241
|
+
*/
|
|
1242
|
+
"max": number;
|
|
1064
1243
|
/**
|
|
1065
1244
|
* Maxlength of characters
|
|
1066
1245
|
*/
|
|
1067
1246
|
"maxlength": number;
|
|
1247
|
+
/**
|
|
1248
|
+
* If input type is number, this will be the minimum step number
|
|
1249
|
+
*/
|
|
1250
|
+
"min": number;
|
|
1068
1251
|
/**
|
|
1069
1252
|
* Minimum of characters
|
|
1070
1253
|
*/
|
|
@@ -1081,11 +1264,6 @@ export namespace Components {
|
|
|
1081
1264
|
* Whether autocomplete should be turned off
|
|
1082
1265
|
*/
|
|
1083
1266
|
"noAutocomplete": boolean;
|
|
1084
|
-
/**
|
|
1085
|
-
* Placeholder text
|
|
1086
|
-
* @deprecated
|
|
1087
|
-
*/
|
|
1088
|
-
"placeholder": string;
|
|
1089
1267
|
/**
|
|
1090
1268
|
* Whether the element is readonly or not
|
|
1091
1269
|
*/
|
|
@@ -1106,14 +1284,22 @@ export namespace Components {
|
|
|
1106
1284
|
* Append text to label depending if field is optional/required. true -> show "(optional)", false -> show noting
|
|
1107
1285
|
*/
|
|
1108
1286
|
"showMarker": boolean;
|
|
1287
|
+
/**
|
|
1288
|
+
* If input type is number and this property is true, this will show the spin buttons on hover/focus
|
|
1289
|
+
*/
|
|
1290
|
+
"showSpin": boolean;
|
|
1109
1291
|
/**
|
|
1110
1292
|
* Size variant
|
|
1111
1293
|
*/
|
|
1112
1294
|
"size": "default" | "small";
|
|
1295
|
+
/**
|
|
1296
|
+
* If input type is number, this will be the step size
|
|
1297
|
+
*/
|
|
1298
|
+
"step": number;
|
|
1113
1299
|
/**
|
|
1114
1300
|
* If input field, this defines the type (if `search`, a search icon will be displayed)
|
|
1115
1301
|
*/
|
|
1116
|
-
"type": "text" | "search" | "password" | "email" | "url" | "tel";
|
|
1302
|
+
"type": "text" | "search" | "password" | "email" | "url" | "tel" | "number";
|
|
1117
1303
|
/**
|
|
1118
1304
|
* The value of the input element
|
|
1119
1305
|
*/
|
|
@@ -1167,7 +1353,7 @@ export namespace Components {
|
|
|
1167
1353
|
/**
|
|
1168
1354
|
* Size variant
|
|
1169
1355
|
*/
|
|
1170
|
-
"size": "default" | "small";
|
|
1356
|
+
"size": "default" | "small" | "inherit";
|
|
1171
1357
|
/**
|
|
1172
1358
|
* target if the button is used as link (if href used)
|
|
1173
1359
|
*/
|
|
@@ -1340,6 +1526,10 @@ export namespace Components {
|
|
|
1340
1526
|
* Shifting of popover content
|
|
1341
1527
|
*/
|
|
1342
1528
|
"skidding": number;
|
|
1529
|
+
/**
|
|
1530
|
+
* Position strategy
|
|
1531
|
+
*/
|
|
1532
|
+
"strategy": "absolute" | "fixed";
|
|
1343
1533
|
/**
|
|
1344
1534
|
* Toggle popover content
|
|
1345
1535
|
*/
|
|
@@ -1602,86 +1792,6 @@ export namespace Components {
|
|
|
1602
1792
|
*/
|
|
1603
1793
|
"variant": "default" | "highlight";
|
|
1604
1794
|
}
|
|
1605
|
-
interface StzhServicecard {
|
|
1606
|
-
/**
|
|
1607
|
-
* Card actions
|
|
1608
|
-
*/
|
|
1609
|
-
"actions": string | StzhServiceCardAction[];
|
|
1610
|
-
/**
|
|
1611
|
-
* Whether card is collapsed or not
|
|
1612
|
-
*/
|
|
1613
|
-
"collapsed": boolean;
|
|
1614
|
-
/**
|
|
1615
|
-
* Whether card is collapsible
|
|
1616
|
-
*/
|
|
1617
|
-
"collapsible": boolean;
|
|
1618
|
-
/**
|
|
1619
|
-
* Heading
|
|
1620
|
-
*/
|
|
1621
|
-
"heading": string;
|
|
1622
|
-
/**
|
|
1623
|
-
* Whether movement menu items should be shown
|
|
1624
|
-
*/
|
|
1625
|
-
"hideMovementActions": boolean;
|
|
1626
|
-
/**
|
|
1627
|
-
* Translation strings
|
|
1628
|
-
*/
|
|
1629
|
-
"localization": StzhServicecardLocalizedText;
|
|
1630
|
-
/**
|
|
1631
|
-
* Middle column position variant (positioning behaviour on tablet)
|
|
1632
|
-
*/
|
|
1633
|
-
"middleVariant": "to-right" | "to-left";
|
|
1634
|
-
/**
|
|
1635
|
-
* Set middle column vertical spacing
|
|
1636
|
-
*/
|
|
1637
|
-
"middleVerticalSpacing": "default" | "none";
|
|
1638
|
-
/**
|
|
1639
|
-
* Set right column vertical spacing
|
|
1640
|
-
*/
|
|
1641
|
-
"rightVerticalSpacing": "default" | "none";
|
|
1642
|
-
/**
|
|
1643
|
-
* Whether sorting should be disabled
|
|
1644
|
-
*/
|
|
1645
|
-
"sortableDisabled": boolean;
|
|
1646
|
-
/**
|
|
1647
|
-
* Whether card star is displayed
|
|
1648
|
-
*/
|
|
1649
|
-
"starrable": boolean;
|
|
1650
|
-
/**
|
|
1651
|
-
* Whether card was starred
|
|
1652
|
-
*/
|
|
1653
|
-
"starred": boolean;
|
|
1654
|
-
/**
|
|
1655
|
-
* Subtitle
|
|
1656
|
-
*/
|
|
1657
|
-
"subtitle": string | string[];
|
|
1658
|
-
/**
|
|
1659
|
-
* Whether subtitle should be rendered as button and event `stzhSubtitleClick` executed on click
|
|
1660
|
-
*/
|
|
1661
|
-
"subtitleInteractive": boolean;
|
|
1662
|
-
/**
|
|
1663
|
-
* Type
|
|
1664
|
-
*/
|
|
1665
|
-
"type": "default" | "alert";
|
|
1666
|
-
}
|
|
1667
|
-
interface StzhServicecardList {
|
|
1668
|
-
/**
|
|
1669
|
-
* Translation strings
|
|
1670
|
-
*/
|
|
1671
|
-
"localization": StzhServicecardListLocalizedText;
|
|
1672
|
-
/**
|
|
1673
|
-
* Whether collapse/expand toggle link
|
|
1674
|
-
*/
|
|
1675
|
-
"showToggleLink": boolean;
|
|
1676
|
-
/**
|
|
1677
|
-
* HTML attribute that is used by the `toArray()` of sortable method
|
|
1678
|
-
*/
|
|
1679
|
-
"sortableDataIdAttribute": string;
|
|
1680
|
-
/**
|
|
1681
|
-
* Whether sorting should be disabled
|
|
1682
|
-
*/
|
|
1683
|
-
"sortableDisabled": boolean;
|
|
1684
|
-
}
|
|
1685
1795
|
interface StzhSkiplink {
|
|
1686
1796
|
/**
|
|
1687
1797
|
* href for linking to e.g. id of an element to skip to
|
|
@@ -1713,6 +1823,10 @@ export namespace Components {
|
|
|
1713
1823
|
* Filtered elements that should prevent dragging inside the drag item elements
|
|
1714
1824
|
*/
|
|
1715
1825
|
"filterElements": any[] | string;
|
|
1826
|
+
/**
|
|
1827
|
+
* Algorithm how the ghost element will be cloned
|
|
1828
|
+
*/
|
|
1829
|
+
"ghostClone": Function;
|
|
1716
1830
|
/**
|
|
1717
1831
|
* Translation strings.
|
|
1718
1832
|
*/
|
|
@@ -1895,6 +2009,10 @@ export namespace Components {
|
|
|
1895
2009
|
* Shifting of tooltip content
|
|
1896
2010
|
*/
|
|
1897
2011
|
"skidding": number;
|
|
2012
|
+
/**
|
|
2013
|
+
* Position strategy
|
|
2014
|
+
*/
|
|
2015
|
+
"strategy": "absolute" | "fixed";
|
|
1898
2016
|
/**
|
|
1899
2017
|
* Toggle tooltip content
|
|
1900
2018
|
*/
|
|
@@ -1950,6 +2068,9 @@ export namespace Components {
|
|
|
1950
2068
|
* One or multiple error message (use error slot as alternative)
|
|
1951
2069
|
*/
|
|
1952
2070
|
"error": string | string[];
|
|
2071
|
+
/**
|
|
2072
|
+
* Initially pre existing files (e.g. already uploaded by the user). Array of objects that must at least include `name` and `size` attribute: `[{"name":"file1.txt", "size": 12345}, {"name":"file2.txt", "size": 12345}]`
|
|
2073
|
+
*/
|
|
1953
2074
|
"existingFiles": StzhUploadFilesItem[] | string;
|
|
1954
2075
|
/**
|
|
1955
2076
|
* The base that is used to calculate the **displayed** filesize. You can change this to 1024 if you would rather display kibibytes, mebibytes, etc... 1024 is technically incorrect, because `1024 bytes` are `1 kibibyte` not `1 kilobyte`. You can change this to `1024` if you don't care about validity.
|
|
@@ -2136,6 +2257,10 @@ export interface StzhAccordionItemCustomEvent<T> extends CustomEvent<T> {
|
|
|
2136
2257
|
detail: T;
|
|
2137
2258
|
target: HTMLStzhAccordionItemElement;
|
|
2138
2259
|
}
|
|
2260
|
+
export interface StzhActionsetCustomEvent<T> extends CustomEvent<T> {
|
|
2261
|
+
detail: T;
|
|
2262
|
+
target: HTMLStzhActionsetElement;
|
|
2263
|
+
}
|
|
2139
2264
|
export interface StzhAppointmentsCustomEvent<T> extends CustomEvent<T> {
|
|
2140
2265
|
detail: T;
|
|
2141
2266
|
target: HTMLStzhAppointmentsElement;
|
|
@@ -2148,6 +2273,14 @@ export interface StzhCalendarCustomEvent<T> extends CustomEvent<T> {
|
|
|
2148
2273
|
detail: T;
|
|
2149
2274
|
target: HTMLStzhCalendarElement;
|
|
2150
2275
|
}
|
|
2276
|
+
export interface StzhCardCustomEvent<T> extends CustomEvent<T> {
|
|
2277
|
+
detail: T;
|
|
2278
|
+
target: HTMLStzhCardElement;
|
|
2279
|
+
}
|
|
2280
|
+
export interface StzhCardListCustomEvent<T> extends CustomEvent<T> {
|
|
2281
|
+
detail: T;
|
|
2282
|
+
target: HTMLStzhCardListElement;
|
|
2283
|
+
}
|
|
2151
2284
|
export interface StzhCheckboxCustomEvent<T> extends CustomEvent<T> {
|
|
2152
2285
|
detail: T;
|
|
2153
2286
|
target: HTMLStzhCheckboxElement;
|
|
@@ -2160,6 +2293,10 @@ export interface StzhChipSelectCustomEvent<T> extends CustomEvent<T> {
|
|
|
2160
2293
|
detail: T;
|
|
2161
2294
|
target: HTMLStzhChipSelectElement;
|
|
2162
2295
|
}
|
|
2296
|
+
export interface StzhDatalistCustomEvent<T> extends CustomEvent<T> {
|
|
2297
|
+
detail: T;
|
|
2298
|
+
target: HTMLStzhDatalistElement;
|
|
2299
|
+
}
|
|
2163
2300
|
export interface StzhDatamessagelistItemCustomEvent<T> extends CustomEvent<T> {
|
|
2164
2301
|
detail: T;
|
|
2165
2302
|
target: HTMLStzhDatamessagelistItemElement;
|
|
@@ -2212,10 +2349,6 @@ export interface StzhRadioCustomEvent<T> extends CustomEvent<T> {
|
|
|
2212
2349
|
detail: T;
|
|
2213
2350
|
target: HTMLStzhRadioElement;
|
|
2214
2351
|
}
|
|
2215
|
-
export interface StzhServicecardCustomEvent<T> extends CustomEvent<T> {
|
|
2216
|
-
detail: T;
|
|
2217
|
-
target: HTMLStzhServicecardElement;
|
|
2218
|
-
}
|
|
2219
2352
|
export interface StzhSortableCustomEvent<T> extends CustomEvent<T> {
|
|
2220
2353
|
detail: T;
|
|
2221
2354
|
target: HTMLStzhSortableElement;
|
|
@@ -2255,6 +2388,12 @@ declare global {
|
|
|
2255
2388
|
prototype: HTMLStzhActionsElement;
|
|
2256
2389
|
new (): HTMLStzhActionsElement;
|
|
2257
2390
|
};
|
|
2391
|
+
interface HTMLStzhActionsetElement extends Components.StzhActionset, HTMLStencilElement {
|
|
2392
|
+
}
|
|
2393
|
+
var HTMLStzhActionsetElement: {
|
|
2394
|
+
prototype: HTMLStzhActionsetElement;
|
|
2395
|
+
new (): HTMLStzhActionsetElement;
|
|
2396
|
+
};
|
|
2258
2397
|
interface HTMLStzhAppnavElement extends Components.StzhAppnav, HTMLStencilElement {
|
|
2259
2398
|
}
|
|
2260
2399
|
var HTMLStzhAppnavElement: {
|
|
@@ -2285,6 +2424,18 @@ declare global {
|
|
|
2285
2424
|
prototype: HTMLStzhCalendarElement;
|
|
2286
2425
|
new (): HTMLStzhCalendarElement;
|
|
2287
2426
|
};
|
|
2427
|
+
interface HTMLStzhCardElement extends Components.StzhCard, HTMLStencilElement {
|
|
2428
|
+
}
|
|
2429
|
+
var HTMLStzhCardElement: {
|
|
2430
|
+
prototype: HTMLStzhCardElement;
|
|
2431
|
+
new (): HTMLStzhCardElement;
|
|
2432
|
+
};
|
|
2433
|
+
interface HTMLStzhCardListElement extends Components.StzhCardList, HTMLStencilElement {
|
|
2434
|
+
}
|
|
2435
|
+
var HTMLStzhCardListElement: {
|
|
2436
|
+
prototype: HTMLStzhCardListElement;
|
|
2437
|
+
new (): HTMLStzhCardListElement;
|
|
2438
|
+
};
|
|
2288
2439
|
interface HTMLStzhCellElement extends Components.StzhCell, HTMLStencilElement {
|
|
2289
2440
|
}
|
|
2290
2441
|
var HTMLStzhCellElement: {
|
|
@@ -2327,6 +2478,12 @@ declare global {
|
|
|
2327
2478
|
prototype: HTMLStzhCspaceElement;
|
|
2328
2479
|
new (): HTMLStzhCspaceElement;
|
|
2329
2480
|
};
|
|
2481
|
+
interface HTMLStzhDatalistElement extends Components.StzhDatalist, HTMLStencilElement {
|
|
2482
|
+
}
|
|
2483
|
+
var HTMLStzhDatalistElement: {
|
|
2484
|
+
prototype: HTMLStzhDatalistElement;
|
|
2485
|
+
new (): HTMLStzhDatalistElement;
|
|
2486
|
+
};
|
|
2330
2487
|
interface HTMLStzhDatamessagelistElement extends Components.StzhDatamessagelist, HTMLStencilElement {
|
|
2331
2488
|
}
|
|
2332
2489
|
var HTMLStzhDatamessagelistElement: {
|
|
@@ -2573,18 +2730,6 @@ declare global {
|
|
|
2573
2730
|
prototype: HTMLStzhSectionElement;
|
|
2574
2731
|
new (): HTMLStzhSectionElement;
|
|
2575
2732
|
};
|
|
2576
|
-
interface HTMLStzhServicecardElement extends Components.StzhServicecard, HTMLStencilElement {
|
|
2577
|
-
}
|
|
2578
|
-
var HTMLStzhServicecardElement: {
|
|
2579
|
-
prototype: HTMLStzhServicecardElement;
|
|
2580
|
-
new (): HTMLStzhServicecardElement;
|
|
2581
|
-
};
|
|
2582
|
-
interface HTMLStzhServicecardListElement extends Components.StzhServicecardList, HTMLStencilElement {
|
|
2583
|
-
}
|
|
2584
|
-
var HTMLStzhServicecardListElement: {
|
|
2585
|
-
prototype: HTMLStzhServicecardListElement;
|
|
2586
|
-
new (): HTMLStzhServicecardListElement;
|
|
2587
|
-
};
|
|
2588
2733
|
interface HTMLStzhSkiplinkElement extends Components.StzhSkiplink, HTMLStencilElement {
|
|
2589
2734
|
}
|
|
2590
2735
|
var HTMLStzhSkiplinkElement: {
|
|
@@ -2667,11 +2812,14 @@ declare global {
|
|
|
2667
2812
|
"stzh-accordion": HTMLStzhAccordionElement;
|
|
2668
2813
|
"stzh-accordion-item": HTMLStzhAccordionItemElement;
|
|
2669
2814
|
"stzh-actions": HTMLStzhActionsElement;
|
|
2815
|
+
"stzh-actionset": HTMLStzhActionsetElement;
|
|
2670
2816
|
"stzh-appnav": HTMLStzhAppnavElement;
|
|
2671
2817
|
"stzh-appointments": HTMLStzhAppointmentsElement;
|
|
2672
2818
|
"stzh-badge": HTMLStzhBadgeElement;
|
|
2673
2819
|
"stzh-button": HTMLStzhButtonElement;
|
|
2674
2820
|
"stzh-calendar": HTMLStzhCalendarElement;
|
|
2821
|
+
"stzh-card": HTMLStzhCardElement;
|
|
2822
|
+
"stzh-card-list": HTMLStzhCardListElement;
|
|
2675
2823
|
"stzh-cell": HTMLStzhCellElement;
|
|
2676
2824
|
"stzh-checkbox": HTMLStzhCheckboxElement;
|
|
2677
2825
|
"stzh-checkboxgroup": HTMLStzhCheckboxgroupElement;
|
|
@@ -2679,6 +2827,7 @@ declare global {
|
|
|
2679
2827
|
"stzh-chip-select": HTMLStzhChipSelectElement;
|
|
2680
2828
|
"stzh-container": HTMLStzhContainerElement;
|
|
2681
2829
|
"stzh-cspace": HTMLStzhCspaceElement;
|
|
2830
|
+
"stzh-datalist": HTMLStzhDatalistElement;
|
|
2682
2831
|
"stzh-datamessagelist": HTMLStzhDatamessagelistElement;
|
|
2683
2832
|
"stzh-datamessagelist-item": HTMLStzhDatamessagelistItemElement;
|
|
2684
2833
|
"stzh-datatable": HTMLStzhDatatableElement;
|
|
@@ -2720,8 +2869,6 @@ declare global {
|
|
|
2720
2869
|
"stzh-row": HTMLStzhRowElement;
|
|
2721
2870
|
"stzh-saptcha": HTMLStzhSaptchaElement;
|
|
2722
2871
|
"stzh-section": HTMLStzhSectionElement;
|
|
2723
|
-
"stzh-servicecard": HTMLStzhServicecardElement;
|
|
2724
|
-
"stzh-servicecard-list": HTMLStzhServicecardListElement;
|
|
2725
2872
|
"stzh-skiplink": HTMLStzhSkiplinkElement;
|
|
2726
2873
|
"stzh-sortable": HTMLStzhSortableElement;
|
|
2727
2874
|
"stzh-status": HTMLStzhStatusElement;
|
|
@@ -2796,6 +2943,36 @@ declare namespace LocalJSX {
|
|
|
2796
2943
|
*/
|
|
2797
2944
|
"withBorder"?: boolean;
|
|
2798
2945
|
}
|
|
2946
|
+
interface StzhActionset {
|
|
2947
|
+
/**
|
|
2948
|
+
* Card header actions
|
|
2949
|
+
*/
|
|
2950
|
+
"actions"?: string | StzhActionsetItem[];
|
|
2951
|
+
/**
|
|
2952
|
+
* Translation strings
|
|
2953
|
+
*/
|
|
2954
|
+
"localization"?: StzhActionsetLocalizedText;
|
|
2955
|
+
/**
|
|
2956
|
+
* Header action click event
|
|
2957
|
+
*/
|
|
2958
|
+
"onStzhActionClick"?: (event: StzhActionsetCustomEvent<StzhActionsetItemClickEvent>) => void;
|
|
2959
|
+
/**
|
|
2960
|
+
* Popover button size
|
|
2961
|
+
*/
|
|
2962
|
+
"popoverButtonSize"?: "" | "default" | "small" | "tiny";
|
|
2963
|
+
/**
|
|
2964
|
+
* Popover button variant
|
|
2965
|
+
*/
|
|
2966
|
+
"popoverButtonVariant"?: "" | "default" | "secondary" | "input" | "tertiary";
|
|
2967
|
+
/**
|
|
2968
|
+
* Popover placement
|
|
2969
|
+
*/
|
|
2970
|
+
"popoverPlacement"?: Placement;
|
|
2971
|
+
/**
|
|
2972
|
+
* Variant determining what position the action buttons are
|
|
2973
|
+
*/
|
|
2974
|
+
"variant"?: "stack" | "overflow";
|
|
2975
|
+
}
|
|
2799
2976
|
interface StzhAppnav {
|
|
2800
2977
|
/**
|
|
2801
2978
|
* Link of app title (only used if `app-title` is defined)
|
|
@@ -2881,6 +3058,10 @@ declare namespace LocalJSX {
|
|
|
2881
3058
|
* Badge position
|
|
2882
3059
|
*/
|
|
2883
3060
|
"badgePosition"?: "icon" | "button";
|
|
3061
|
+
/**
|
|
3062
|
+
* Checked status (if type is radio)
|
|
3063
|
+
*/
|
|
3064
|
+
"checked"?: boolean;
|
|
2884
3065
|
/**
|
|
2885
3066
|
* Whether the button is disabled
|
|
2886
3067
|
*/
|
|
@@ -2913,10 +3094,18 @@ declare namespace LocalJSX {
|
|
|
2913
3094
|
* Label
|
|
2914
3095
|
*/
|
|
2915
3096
|
"label"?: string;
|
|
3097
|
+
/**
|
|
3098
|
+
* The name of the input element (if type is radio)
|
|
3099
|
+
*/
|
|
3100
|
+
"name"?: string;
|
|
2916
3101
|
/**
|
|
2917
3102
|
* Input blur event
|
|
2918
3103
|
*/
|
|
2919
3104
|
"onStzhBlur"?: (event: StzhButtonCustomEvent<StzhButtonBlurEvent>) => void;
|
|
3105
|
+
/**
|
|
3106
|
+
* Change event (only called if type is radio)
|
|
3107
|
+
*/
|
|
3108
|
+
"onStzhChange"?: (event: StzhButtonCustomEvent<StzhButtonChangeEvent>) => void;
|
|
2920
3109
|
/**
|
|
2921
3110
|
* Focus event
|
|
2922
3111
|
*/
|
|
@@ -2936,7 +3125,11 @@ declare namespace LocalJSX {
|
|
|
2936
3125
|
/**
|
|
2937
3126
|
* Type of the button
|
|
2938
3127
|
*/
|
|
2939
|
-
"type"?: "button" | "submit" | "reset";
|
|
3128
|
+
"type"?: "button" | "submit" | "reset" | "radio";
|
|
3129
|
+
/**
|
|
3130
|
+
* The value of the input element (if type is radio)
|
|
3131
|
+
*/
|
|
3132
|
+
"value"?: string;
|
|
2940
3133
|
/**
|
|
2941
3134
|
* Variant style
|
|
2942
3135
|
*/
|
|
@@ -2972,6 +3165,130 @@ declare namespace LocalJSX {
|
|
|
2972
3165
|
*/
|
|
2973
3166
|
"value"?: string;
|
|
2974
3167
|
}
|
|
3168
|
+
interface StzhCard {
|
|
3169
|
+
/**
|
|
3170
|
+
* Whether card is checked (if card is selectable)
|
|
3171
|
+
*/
|
|
3172
|
+
"checked"?: boolean;
|
|
3173
|
+
/**
|
|
3174
|
+
* Whether card is collapsed or not
|
|
3175
|
+
*/
|
|
3176
|
+
"collapsed"?: boolean;
|
|
3177
|
+
/**
|
|
3178
|
+
* Whether card is collapsible
|
|
3179
|
+
*/
|
|
3180
|
+
"collapsible"?: boolean;
|
|
3181
|
+
/**
|
|
3182
|
+
* Whether the element is disabled or not (if card is selectable)
|
|
3183
|
+
*/
|
|
3184
|
+
"disabled"?: boolean;
|
|
3185
|
+
/**
|
|
3186
|
+
* Card footer actions
|
|
3187
|
+
*/
|
|
3188
|
+
"footerActions"?: string | StzhActionsetItem[];
|
|
3189
|
+
/**
|
|
3190
|
+
* Card header actions
|
|
3191
|
+
*/
|
|
3192
|
+
"headerActions"?: string | StzhCardHeaderAction[];
|
|
3193
|
+
/**
|
|
3194
|
+
* Heading
|
|
3195
|
+
*/
|
|
3196
|
+
"heading"?: string;
|
|
3197
|
+
/**
|
|
3198
|
+
* Whether to hide footer separation border
|
|
3199
|
+
*/
|
|
3200
|
+
"hideFooterBorder"?: boolean;
|
|
3201
|
+
/**
|
|
3202
|
+
* Whether to hide header separation border
|
|
3203
|
+
*/
|
|
3204
|
+
"hideHeaderBorder"?: boolean;
|
|
3205
|
+
/**
|
|
3206
|
+
* Whether movement menu items should be shown
|
|
3207
|
+
*/
|
|
3208
|
+
"hideMovementActions"?: boolean;
|
|
3209
|
+
/**
|
|
3210
|
+
* Translation strings
|
|
3211
|
+
*/
|
|
3212
|
+
"localization"?: StzhCardLocalizedText;
|
|
3213
|
+
/**
|
|
3214
|
+
* The name of the input element (if card is selectable)
|
|
3215
|
+
*/
|
|
3216
|
+
"name"?: string;
|
|
3217
|
+
/**
|
|
3218
|
+
* Collapse event
|
|
3219
|
+
*/
|
|
3220
|
+
"onStzhCollapse"?: (event: StzhCardCustomEvent<StzhCardCollapseEvent>) => void;
|
|
3221
|
+
/**
|
|
3222
|
+
* Header action click event
|
|
3223
|
+
*/
|
|
3224
|
+
"onStzhHeaderActionClick"?: (event: StzhCardCustomEvent<StzhCardHeaderActionClickEvent>) => void;
|
|
3225
|
+
/**
|
|
3226
|
+
* Star click event
|
|
3227
|
+
*/
|
|
3228
|
+
"onStzhStarClick"?: (event: StzhCardCustomEvent<StzhCardStarClickEvent>) => void;
|
|
3229
|
+
/**
|
|
3230
|
+
* Subtitle click event
|
|
3231
|
+
*/
|
|
3232
|
+
"onStzhSubtitleClick"?: (event: StzhCardCustomEvent<StzhCardSubtitleClickEvent>) => void;
|
|
3233
|
+
/**
|
|
3234
|
+
* Whether card is selectable
|
|
3235
|
+
*/
|
|
3236
|
+
"selectable"?: boolean;
|
|
3237
|
+
/**
|
|
3238
|
+
* Whether sorting should be disabled
|
|
3239
|
+
*/
|
|
3240
|
+
"sortableDisabled"?: boolean;
|
|
3241
|
+
/**
|
|
3242
|
+
* Whether card star is displayed
|
|
3243
|
+
*/
|
|
3244
|
+
"starrable"?: boolean;
|
|
3245
|
+
/**
|
|
3246
|
+
* Whether card was starred
|
|
3247
|
+
*/
|
|
3248
|
+
"starred"?: boolean;
|
|
3249
|
+
/**
|
|
3250
|
+
* Subtitle
|
|
3251
|
+
*/
|
|
3252
|
+
"subtitle"?: string | string[];
|
|
3253
|
+
/**
|
|
3254
|
+
* Whether subtitle should be rendered as button and event `stzhSubtitleClick` executed on click
|
|
3255
|
+
*/
|
|
3256
|
+
"subtitleInteractive"?: boolean;
|
|
3257
|
+
/**
|
|
3258
|
+
* Type
|
|
3259
|
+
*/
|
|
3260
|
+
"type"?: "default" | "alert";
|
|
3261
|
+
/**
|
|
3262
|
+
* The value of the input element (if card is selectable)
|
|
3263
|
+
*/
|
|
3264
|
+
"value"?: string;
|
|
3265
|
+
}
|
|
3266
|
+
interface StzhCardList {
|
|
3267
|
+
/**
|
|
3268
|
+
* Translation strings
|
|
3269
|
+
*/
|
|
3270
|
+
"localization"?: StzhCardListLocalizedText;
|
|
3271
|
+
/**
|
|
3272
|
+
* Collapse all event
|
|
3273
|
+
*/
|
|
3274
|
+
"onStzhCollapseAll"?: (event: StzhCardListCustomEvent<StzhCardListCollapseAllEvent>) => void;
|
|
3275
|
+
/**
|
|
3276
|
+
* Whether collapse/expand toggle link
|
|
3277
|
+
*/
|
|
3278
|
+
"showToggleLink"?: boolean;
|
|
3279
|
+
/**
|
|
3280
|
+
* HTML attribute that is used by the `toArray()` of sortable method
|
|
3281
|
+
*/
|
|
3282
|
+
"sortableDataIdAttribute"?: string;
|
|
3283
|
+
/**
|
|
3284
|
+
* Whether sorting should be disabled
|
|
3285
|
+
*/
|
|
3286
|
+
"sortableDisabled"?: boolean;
|
|
3287
|
+
/**
|
|
3288
|
+
* Algorithm how the ghost element will be cloned
|
|
3289
|
+
*/
|
|
3290
|
+
"sortableGhostClone"?: Function;
|
|
3291
|
+
}
|
|
2975
3292
|
interface StzhCell {
|
|
2976
3293
|
/**
|
|
2977
3294
|
* Control how cells items are positioned along a container's cross axis
|
|
@@ -3210,6 +3527,40 @@ declare namespace LocalJSX {
|
|
|
3210
3527
|
}
|
|
3211
3528
|
interface StzhCspace {
|
|
3212
3529
|
}
|
|
3530
|
+
interface StzhDatalist {
|
|
3531
|
+
/**
|
|
3532
|
+
* Direction
|
|
3533
|
+
*/
|
|
3534
|
+
"direction"?: "vertical" | "horizontal";
|
|
3535
|
+
/**
|
|
3536
|
+
* Direction above large breakpoint
|
|
3537
|
+
*/
|
|
3538
|
+
"directionLarge"?: "vertical" | "horizontal" | "inherit";
|
|
3539
|
+
/**
|
|
3540
|
+
* Direction above medium breakpoint
|
|
3541
|
+
*/
|
|
3542
|
+
"directionMedium"?: "vertical" | "horizontal" | "inherit";
|
|
3543
|
+
/**
|
|
3544
|
+
* Direction above small breakpoint
|
|
3545
|
+
*/
|
|
3546
|
+
"directionSmall"?: "vertical" | "horizontal" | "inherit";
|
|
3547
|
+
/**
|
|
3548
|
+
* Direction above ultra breakpoint
|
|
3549
|
+
*/
|
|
3550
|
+
"directionUltra"?: "vertical" | "horizontal" | "inherit";
|
|
3551
|
+
/**
|
|
3552
|
+
* Hide border lines between items
|
|
3553
|
+
*/
|
|
3554
|
+
"hideBorder"?: boolean;
|
|
3555
|
+
/**
|
|
3556
|
+
* Items in datalist Array of objects that must at least include `value` attribute. Can optionally contain `label`, `meta`, `icon`, `href` attribute: `[{"value":"Value 1", "label": "Label 1"}, {"value":"Value 2", "label": "Label 2"}]`
|
|
3557
|
+
*/
|
|
3558
|
+
"items"?: StzhDatalistItemEntry[] | string;
|
|
3559
|
+
/**
|
|
3560
|
+
* Item action click event
|
|
3561
|
+
*/
|
|
3562
|
+
"onStzhItemActionClick"?: (event: StzhDatalistCustomEvent<StzhDatalistItemActionClickEvent>) => void;
|
|
3563
|
+
}
|
|
3213
3564
|
interface StzhDatamessagelist {
|
|
3214
3565
|
}
|
|
3215
3566
|
interface StzhDatamessagelistItem {
|
|
@@ -3353,11 +3704,6 @@ declare namespace LocalJSX {
|
|
|
3353
3704
|
* Datepicker change event
|
|
3354
3705
|
*/
|
|
3355
3706
|
"onStzhChange"?: (event: StzhDatepickerCustomEvent<StzhDatepickerChangeEvent>) => void;
|
|
3356
|
-
/**
|
|
3357
|
-
* Placeholder text
|
|
3358
|
-
* @deprecated
|
|
3359
|
-
*/
|
|
3360
|
-
"placeholder"?: string;
|
|
3361
3707
|
/**
|
|
3362
3708
|
* Whether the element is readonly or not
|
|
3363
3709
|
*/
|
|
@@ -3586,11 +3932,6 @@ declare namespace LocalJSX {
|
|
|
3586
3932
|
* Available options
|
|
3587
3933
|
*/
|
|
3588
3934
|
"options"?: any[] | string;
|
|
3589
|
-
/**
|
|
3590
|
-
* Placeholder option
|
|
3591
|
-
* @deprecated
|
|
3592
|
-
*/
|
|
3593
|
-
"placeholder"?: string;
|
|
3594
3935
|
/**
|
|
3595
3936
|
* Popover placement
|
|
3596
3937
|
*/
|
|
@@ -3831,10 +4172,18 @@ declare namespace LocalJSX {
|
|
|
3831
4172
|
* Translation strings
|
|
3832
4173
|
*/
|
|
3833
4174
|
"localization"?: StzhLocaleComponent;
|
|
4175
|
+
/**
|
|
4176
|
+
* If input type is number, this will be the maximum step number
|
|
4177
|
+
*/
|
|
4178
|
+
"max"?: number;
|
|
3834
4179
|
/**
|
|
3835
4180
|
* Maxlength of characters
|
|
3836
4181
|
*/
|
|
3837
4182
|
"maxlength"?: number;
|
|
4183
|
+
/**
|
|
4184
|
+
* If input type is number, this will be the minimum step number
|
|
4185
|
+
*/
|
|
4186
|
+
"min"?: number;
|
|
3838
4187
|
/**
|
|
3839
4188
|
* Minimum of characters
|
|
3840
4189
|
*/
|
|
@@ -3863,11 +4212,6 @@ declare namespace LocalJSX {
|
|
|
3863
4212
|
* Input focus event
|
|
3864
4213
|
*/
|
|
3865
4214
|
"onStzhFocus"?: (event: StzhInputCustomEvent<StzhInputFocusEvent>) => void;
|
|
3866
|
-
/**
|
|
3867
|
-
* Placeholder text
|
|
3868
|
-
* @deprecated
|
|
3869
|
-
*/
|
|
3870
|
-
"placeholder"?: string;
|
|
3871
4215
|
/**
|
|
3872
4216
|
* Whether the element is readonly or not
|
|
3873
4217
|
*/
|
|
@@ -3884,14 +4228,22 @@ declare namespace LocalJSX {
|
|
|
3884
4228
|
* Append text to label depending if field is optional/required. true -> show "(optional)", false -> show noting
|
|
3885
4229
|
*/
|
|
3886
4230
|
"showMarker"?: boolean;
|
|
4231
|
+
/**
|
|
4232
|
+
* If input type is number and this property is true, this will show the spin buttons on hover/focus
|
|
4233
|
+
*/
|
|
4234
|
+
"showSpin"?: boolean;
|
|
3887
4235
|
/**
|
|
3888
4236
|
* Size variant
|
|
3889
4237
|
*/
|
|
3890
4238
|
"size"?: "default" | "small";
|
|
4239
|
+
/**
|
|
4240
|
+
* If input type is number, this will be the step size
|
|
4241
|
+
*/
|
|
4242
|
+
"step"?: number;
|
|
3891
4243
|
/**
|
|
3892
4244
|
* If input field, this defines the type (if `search`, a search icon will be displayed)
|
|
3893
4245
|
*/
|
|
3894
|
-
"type"?: "text" | "search" | "password" | "email" | "url" | "tel";
|
|
4246
|
+
"type"?: "text" | "search" | "password" | "email" | "url" | "tel" | "number";
|
|
3895
4247
|
/**
|
|
3896
4248
|
* The value of the input element
|
|
3897
4249
|
*/
|
|
@@ -3949,7 +4301,7 @@ declare namespace LocalJSX {
|
|
|
3949
4301
|
/**
|
|
3950
4302
|
* Size variant
|
|
3951
4303
|
*/
|
|
3952
|
-
"size"?: "default" | "small";
|
|
4304
|
+
"size"?: "default" | "small" | "inherit";
|
|
3953
4305
|
/**
|
|
3954
4306
|
* target if the button is used as link (if href used)
|
|
3955
4307
|
*/
|
|
@@ -4146,6 +4498,10 @@ declare namespace LocalJSX {
|
|
|
4146
4498
|
* Shifting of popover content
|
|
4147
4499
|
*/
|
|
4148
4500
|
"skidding"?: number;
|
|
4501
|
+
/**
|
|
4502
|
+
* Position strategy
|
|
4503
|
+
*/
|
|
4504
|
+
"strategy"?: "absolute" | "fixed";
|
|
4149
4505
|
/**
|
|
4150
4506
|
* Variant
|
|
4151
4507
|
*/
|
|
@@ -4419,102 +4775,6 @@ declare namespace LocalJSX {
|
|
|
4419
4775
|
*/
|
|
4420
4776
|
"variant"?: "default" | "highlight";
|
|
4421
4777
|
}
|
|
4422
|
-
interface StzhServicecard {
|
|
4423
|
-
/**
|
|
4424
|
-
* Card actions
|
|
4425
|
-
*/
|
|
4426
|
-
"actions"?: string | StzhServiceCardAction[];
|
|
4427
|
-
/**
|
|
4428
|
-
* Whether card is collapsed or not
|
|
4429
|
-
*/
|
|
4430
|
-
"collapsed"?: boolean;
|
|
4431
|
-
/**
|
|
4432
|
-
* Whether card is collapsible
|
|
4433
|
-
*/
|
|
4434
|
-
"collapsible"?: boolean;
|
|
4435
|
-
/**
|
|
4436
|
-
* Heading
|
|
4437
|
-
*/
|
|
4438
|
-
"heading"?: string;
|
|
4439
|
-
/**
|
|
4440
|
-
* Whether movement menu items should be shown
|
|
4441
|
-
*/
|
|
4442
|
-
"hideMovementActions"?: boolean;
|
|
4443
|
-
/**
|
|
4444
|
-
* Translation strings
|
|
4445
|
-
*/
|
|
4446
|
-
"localization"?: StzhServicecardLocalizedText;
|
|
4447
|
-
/**
|
|
4448
|
-
* Middle column position variant (positioning behaviour on tablet)
|
|
4449
|
-
*/
|
|
4450
|
-
"middleVariant"?: "to-right" | "to-left";
|
|
4451
|
-
/**
|
|
4452
|
-
* Set middle column vertical spacing
|
|
4453
|
-
*/
|
|
4454
|
-
"middleVerticalSpacing"?: "default" | "none";
|
|
4455
|
-
/**
|
|
4456
|
-
* Action click event
|
|
4457
|
-
*/
|
|
4458
|
-
"onStzhActionClick"?: (event: StzhServicecardCustomEvent<StzhServicecardActionClickEvent>) => void;
|
|
4459
|
-
/**
|
|
4460
|
-
* Collapse event
|
|
4461
|
-
*/
|
|
4462
|
-
"onStzhCollapse"?: (event: StzhServicecardCustomEvent<StzhServicecardCollapseEvent>) => void;
|
|
4463
|
-
/**
|
|
4464
|
-
* Star click event
|
|
4465
|
-
*/
|
|
4466
|
-
"onStzhStarClick"?: (event: StzhServicecardCustomEvent<StzhServicecardStarClickEvent>) => void;
|
|
4467
|
-
/**
|
|
4468
|
-
* Subtitle click event
|
|
4469
|
-
*/
|
|
4470
|
-
"onStzhSubtitleClick"?: (event: StzhServicecardCustomEvent<StzhServicecardSubtitleClickEvent>) => void;
|
|
4471
|
-
/**
|
|
4472
|
-
* Set right column vertical spacing
|
|
4473
|
-
*/
|
|
4474
|
-
"rightVerticalSpacing"?: "default" | "none";
|
|
4475
|
-
/**
|
|
4476
|
-
* Whether sorting should be disabled
|
|
4477
|
-
*/
|
|
4478
|
-
"sortableDisabled"?: boolean;
|
|
4479
|
-
/**
|
|
4480
|
-
* Whether card star is displayed
|
|
4481
|
-
*/
|
|
4482
|
-
"starrable"?: boolean;
|
|
4483
|
-
/**
|
|
4484
|
-
* Whether card was starred
|
|
4485
|
-
*/
|
|
4486
|
-
"starred"?: boolean;
|
|
4487
|
-
/**
|
|
4488
|
-
* Subtitle
|
|
4489
|
-
*/
|
|
4490
|
-
"subtitle"?: string | string[];
|
|
4491
|
-
/**
|
|
4492
|
-
* Whether subtitle should be rendered as button and event `stzhSubtitleClick` executed on click
|
|
4493
|
-
*/
|
|
4494
|
-
"subtitleInteractive"?: boolean;
|
|
4495
|
-
/**
|
|
4496
|
-
* Type
|
|
4497
|
-
*/
|
|
4498
|
-
"type"?: "default" | "alert";
|
|
4499
|
-
}
|
|
4500
|
-
interface StzhServicecardList {
|
|
4501
|
-
/**
|
|
4502
|
-
* Translation strings
|
|
4503
|
-
*/
|
|
4504
|
-
"localization"?: StzhServicecardListLocalizedText;
|
|
4505
|
-
/**
|
|
4506
|
-
* Whether collapse/expand toggle link
|
|
4507
|
-
*/
|
|
4508
|
-
"showToggleLink"?: boolean;
|
|
4509
|
-
/**
|
|
4510
|
-
* HTML attribute that is used by the `toArray()` of sortable method
|
|
4511
|
-
*/
|
|
4512
|
-
"sortableDataIdAttribute"?: string;
|
|
4513
|
-
/**
|
|
4514
|
-
* Whether sorting should be disabled
|
|
4515
|
-
*/
|
|
4516
|
-
"sortableDisabled"?: boolean;
|
|
4517
|
-
}
|
|
4518
4778
|
interface StzhSkiplink {
|
|
4519
4779
|
/**
|
|
4520
4780
|
* href for linking to e.g. id of an element to skip to
|
|
@@ -4546,10 +4806,18 @@ declare namespace LocalJSX {
|
|
|
4546
4806
|
* Filtered elements that should prevent dragging inside the drag item elements
|
|
4547
4807
|
*/
|
|
4548
4808
|
"filterElements"?: any[] | string;
|
|
4809
|
+
/**
|
|
4810
|
+
* Algorithm how the ghost element will be cloned
|
|
4811
|
+
*/
|
|
4812
|
+
"ghostClone"?: Function;
|
|
4549
4813
|
/**
|
|
4550
4814
|
* Translation strings.
|
|
4551
4815
|
*/
|
|
4552
4816
|
"localization"?: StzhSortableLocalizedText;
|
|
4817
|
+
/**
|
|
4818
|
+
* Disable event
|
|
4819
|
+
*/
|
|
4820
|
+
"onStzhDisable"?: (event: StzhSortableCustomEvent<StzhSortableDisableEvent>) => void;
|
|
4553
4821
|
/**
|
|
4554
4822
|
* Update event
|
|
4555
4823
|
*/
|
|
@@ -4736,6 +5004,10 @@ declare namespace LocalJSX {
|
|
|
4736
5004
|
* Shifting of tooltip content
|
|
4737
5005
|
*/
|
|
4738
5006
|
"skidding"?: number;
|
|
5007
|
+
/**
|
|
5008
|
+
* Position strategy
|
|
5009
|
+
*/
|
|
5010
|
+
"strategy"?: "absolute" | "fixed";
|
|
4739
5011
|
/**
|
|
4740
5012
|
* Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple options can be passed by separating them with a space. When manual is used, the tooltip must be activated programmatically.
|
|
4741
5013
|
*/
|
|
@@ -4786,6 +5058,9 @@ declare namespace LocalJSX {
|
|
|
4786
5058
|
* One or multiple error message (use error slot as alternative)
|
|
4787
5059
|
*/
|
|
4788
5060
|
"error"?: string | string[];
|
|
5061
|
+
/**
|
|
5062
|
+
* Initially pre existing files (e.g. already uploaded by the user). Array of objects that must at least include `name` and `size` attribute: `[{"name":"file1.txt", "size": 12345}, {"name":"file2.txt", "size": 12345}]`
|
|
5063
|
+
*/
|
|
4789
5064
|
"existingFiles"?: StzhUploadFilesItem[] | string;
|
|
4790
5065
|
/**
|
|
4791
5066
|
* The base that is used to calculate the **displayed** filesize. You can change this to 1024 if you would rather display kibibytes, mebibytes, etc... 1024 is technically incorrect, because `1024 bytes` are `1 kibibyte` not `1 kilobyte`. You can change this to `1024` if you don't care about validity.
|
|
@@ -5042,11 +5317,14 @@ declare namespace LocalJSX {
|
|
|
5042
5317
|
"stzh-accordion": StzhAccordion;
|
|
5043
5318
|
"stzh-accordion-item": StzhAccordionItem;
|
|
5044
5319
|
"stzh-actions": StzhActions;
|
|
5320
|
+
"stzh-actionset": StzhActionset;
|
|
5045
5321
|
"stzh-appnav": StzhAppnav;
|
|
5046
5322
|
"stzh-appointments": StzhAppointments;
|
|
5047
5323
|
"stzh-badge": StzhBadge;
|
|
5048
5324
|
"stzh-button": StzhButton;
|
|
5049
5325
|
"stzh-calendar": StzhCalendar;
|
|
5326
|
+
"stzh-card": StzhCard;
|
|
5327
|
+
"stzh-card-list": StzhCardList;
|
|
5050
5328
|
"stzh-cell": StzhCell;
|
|
5051
5329
|
"stzh-checkbox": StzhCheckbox;
|
|
5052
5330
|
"stzh-checkboxgroup": StzhCheckboxgroup;
|
|
@@ -5054,6 +5332,7 @@ declare namespace LocalJSX {
|
|
|
5054
5332
|
"stzh-chip-select": StzhChipSelect;
|
|
5055
5333
|
"stzh-container": StzhContainer;
|
|
5056
5334
|
"stzh-cspace": StzhCspace;
|
|
5335
|
+
"stzh-datalist": StzhDatalist;
|
|
5057
5336
|
"stzh-datamessagelist": StzhDatamessagelist;
|
|
5058
5337
|
"stzh-datamessagelist-item": StzhDatamessagelistItem;
|
|
5059
5338
|
"stzh-datatable": StzhDatatable;
|
|
@@ -5095,8 +5374,6 @@ declare namespace LocalJSX {
|
|
|
5095
5374
|
"stzh-row": StzhRow;
|
|
5096
5375
|
"stzh-saptcha": StzhSaptcha;
|
|
5097
5376
|
"stzh-section": StzhSection;
|
|
5098
|
-
"stzh-servicecard": StzhServicecard;
|
|
5099
|
-
"stzh-servicecard-list": StzhServicecardList;
|
|
5100
5377
|
"stzh-skiplink": StzhSkiplink;
|
|
5101
5378
|
"stzh-sortable": StzhSortable;
|
|
5102
5379
|
"stzh-status": StzhStatus;
|
|
@@ -5119,11 +5396,14 @@ declare module "@stencil/core" {
|
|
|
5119
5396
|
"stzh-accordion": LocalJSX.StzhAccordion & JSXBase.HTMLAttributes<HTMLStzhAccordionElement>;
|
|
5120
5397
|
"stzh-accordion-item": LocalJSX.StzhAccordionItem & JSXBase.HTMLAttributes<HTMLStzhAccordionItemElement>;
|
|
5121
5398
|
"stzh-actions": LocalJSX.StzhActions & JSXBase.HTMLAttributes<HTMLStzhActionsElement>;
|
|
5399
|
+
"stzh-actionset": LocalJSX.StzhActionset & JSXBase.HTMLAttributes<HTMLStzhActionsetElement>;
|
|
5122
5400
|
"stzh-appnav": LocalJSX.StzhAppnav & JSXBase.HTMLAttributes<HTMLStzhAppnavElement>;
|
|
5123
5401
|
"stzh-appointments": LocalJSX.StzhAppointments & JSXBase.HTMLAttributes<HTMLStzhAppointmentsElement>;
|
|
5124
5402
|
"stzh-badge": LocalJSX.StzhBadge & JSXBase.HTMLAttributes<HTMLStzhBadgeElement>;
|
|
5125
5403
|
"stzh-button": LocalJSX.StzhButton & JSXBase.HTMLAttributes<HTMLStzhButtonElement>;
|
|
5126
5404
|
"stzh-calendar": LocalJSX.StzhCalendar & JSXBase.HTMLAttributes<HTMLStzhCalendarElement>;
|
|
5405
|
+
"stzh-card": LocalJSX.StzhCard & JSXBase.HTMLAttributes<HTMLStzhCardElement>;
|
|
5406
|
+
"stzh-card-list": LocalJSX.StzhCardList & JSXBase.HTMLAttributes<HTMLStzhCardListElement>;
|
|
5127
5407
|
"stzh-cell": LocalJSX.StzhCell & JSXBase.HTMLAttributes<HTMLStzhCellElement>;
|
|
5128
5408
|
"stzh-checkbox": LocalJSX.StzhCheckbox & JSXBase.HTMLAttributes<HTMLStzhCheckboxElement>;
|
|
5129
5409
|
"stzh-checkboxgroup": LocalJSX.StzhCheckboxgroup & JSXBase.HTMLAttributes<HTMLStzhCheckboxgroupElement>;
|
|
@@ -5131,6 +5411,7 @@ declare module "@stencil/core" {
|
|
|
5131
5411
|
"stzh-chip-select": LocalJSX.StzhChipSelect & JSXBase.HTMLAttributes<HTMLStzhChipSelectElement>;
|
|
5132
5412
|
"stzh-container": LocalJSX.StzhContainer & JSXBase.HTMLAttributes<HTMLStzhContainerElement>;
|
|
5133
5413
|
"stzh-cspace": LocalJSX.StzhCspace & JSXBase.HTMLAttributes<HTMLStzhCspaceElement>;
|
|
5414
|
+
"stzh-datalist": LocalJSX.StzhDatalist & JSXBase.HTMLAttributes<HTMLStzhDatalistElement>;
|
|
5134
5415
|
"stzh-datamessagelist": LocalJSX.StzhDatamessagelist & JSXBase.HTMLAttributes<HTMLStzhDatamessagelistElement>;
|
|
5135
5416
|
"stzh-datamessagelist-item": LocalJSX.StzhDatamessagelistItem & JSXBase.HTMLAttributes<HTMLStzhDatamessagelistItemElement>;
|
|
5136
5417
|
"stzh-datatable": LocalJSX.StzhDatatable & JSXBase.HTMLAttributes<HTMLStzhDatatableElement>;
|
|
@@ -5172,8 +5453,6 @@ declare module "@stencil/core" {
|
|
|
5172
5453
|
"stzh-row": LocalJSX.StzhRow & JSXBase.HTMLAttributes<HTMLStzhRowElement>;
|
|
5173
5454
|
"stzh-saptcha": LocalJSX.StzhSaptcha & JSXBase.HTMLAttributes<HTMLStzhSaptchaElement>;
|
|
5174
5455
|
"stzh-section": LocalJSX.StzhSection & JSXBase.HTMLAttributes<HTMLStzhSectionElement>;
|
|
5175
|
-
"stzh-servicecard": LocalJSX.StzhServicecard & JSXBase.HTMLAttributes<HTMLStzhServicecardElement>;
|
|
5176
|
-
"stzh-servicecard-list": LocalJSX.StzhServicecardList & JSXBase.HTMLAttributes<HTMLStzhServicecardListElement>;
|
|
5177
5456
|
"stzh-skiplink": LocalJSX.StzhSkiplink & JSXBase.HTMLAttributes<HTMLStzhSkiplinkElement>;
|
|
5178
5457
|
"stzh-sortable": LocalJSX.StzhSortable & JSXBase.HTMLAttributes<HTMLStzhSortableElement>;
|
|
5179
5458
|
"stzh-status": LocalJSX.StzhStatus & JSXBase.HTMLAttributes<HTMLStzhStatusElement>;
|