@six-group/ui-library 3.0.0-beta.1.11
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/LICENSE +201 -0
- package/dist/cjs/event-listeners-74715e62.js +43 -0
- package/dist/cjs/execution-control-46f388e0.js +43 -0
- package/dist/cjs/focus-visible-0b352c74.js +45 -0
- package/dist/cjs/form-control-866bbece.js +32 -0
- package/dist/cjs/index-341df120.js +1801 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/modal-48d42228.js +49 -0
- package/dist/cjs/popover-1d2a037c.js +1898 -0
- package/dist/cjs/scroll-76e6f5d7.js +67 -0
- package/dist/cjs/set-attributes_2.cjs.entry.js +71 -0
- package/dist/cjs/six-alert.cjs.entry.js +142 -0
- package/dist/cjs/six-avatar.cjs.entry.js +39 -0
- package/dist/cjs/six-badge.cjs.entry.js +37 -0
- package/dist/cjs/six-button.cjs.entry.js +108 -0
- package/dist/cjs/six-card.cjs.entry.js +19 -0
- package/dist/cjs/six-checkbox.cjs.entry.js +163 -0
- package/dist/cjs/six-datepicker.cjs.entry.js +1210 -0
- package/dist/cjs/six-details.cjs.entry.js +150 -0
- package/dist/cjs/six-dialog.cjs.entry.js +163 -0
- package/dist/cjs/six-drawer.cjs.entry.js +185 -0
- package/dist/cjs/six-dropdown_3.cjs.entry.js +751 -0
- package/dist/cjs/six-error-page.cjs.entry.js +105 -0
- package/dist/cjs/six-file-list-item.cjs.entry.js +49 -0
- package/dist/cjs/six-file-list.cjs.entry.js +19 -0
- package/dist/cjs/six-file-upload.cjs.entry.js +107 -0
- package/dist/cjs/six-footer.cjs.entry.js +19 -0
- package/dist/cjs/six-form.cjs.entry.js +230 -0
- package/dist/cjs/six-group-label.cjs.entry.js +57 -0
- package/dist/cjs/six-header.cjs.entry.js +160 -0
- package/dist/cjs/six-icon-button.cjs.entry.js +44 -0
- package/dist/cjs/six-icon.cjs.entry.js +35 -0
- package/dist/cjs/six-input.cjs.entry.js +241 -0
- package/dist/cjs/six-item-picker.cjs.entry.js +372 -0
- package/dist/cjs/six-language-switcher.cjs.entry.js +63 -0
- package/dist/cjs/six-layout-grid.cjs.entry.js +30 -0
- package/dist/cjs/six-main-container.cjs.entry.js +22 -0
- package/dist/cjs/six-menu-divider.cjs.entry.js +19 -0
- package/dist/cjs/six-menu-label.cjs.entry.js +19 -0
- package/dist/cjs/six-picto.cjs.entry.js +26 -0
- package/dist/cjs/six-progress-bar.cjs.entry.js +28 -0
- package/dist/cjs/six-progress-ring.cjs.entry.js +42 -0
- package/dist/cjs/six-radio.cjs.entry.js +132 -0
- package/dist/cjs/six-range.cjs.entry.js +209 -0
- package/dist/cjs/six-root.cjs.entry.js +45 -0
- package/dist/cjs/six-search-field.cjs.entry.js +54 -0
- package/dist/cjs/six-select.cjs.entry.js +458 -0
- package/dist/cjs/six-sidebar-item-group.cjs.entry.js +53 -0
- package/dist/cjs/six-sidebar-item.cjs.entry.js +29 -0
- package/dist/cjs/six-sidebar.cjs.entry.js +182 -0
- package/dist/cjs/six-spinner.cjs.entry.js +27 -0
- package/dist/cjs/six-switch.cjs.entry.js +111 -0
- package/dist/cjs/six-tab-group.cjs.entry.js +237 -0
- package/dist/cjs/six-tab-panel.cjs.entry.js +28 -0
- package/dist/cjs/six-tab.cjs.entry.js +53 -0
- package/dist/cjs/six-table-cell_4.cjs.entry.js +102 -0
- package/dist/cjs/six-table.cjs.entry.js +168 -0
- package/dist/cjs/six-tag.cjs.entry.js +51 -0
- package/dist/cjs/six-textarea.cjs.entry.js +222 -0
- package/dist/cjs/six-tile.cjs.entry.js +100 -0
- package/dist/cjs/six-timepicker.cjs.entry.js +504 -0
- package/dist/cjs/six-timepicker.types-c19ebff3.js +54 -0
- package/dist/cjs/six-tooltip.cjs.entry.js +183 -0
- package/dist/cjs/slot-ad537f24.js +50 -0
- package/dist/cjs/types-581e8ff0.js +15 -0
- package/dist/cjs/types-64878648.js +15 -0
- package/dist/cjs/ui-library.cjs.js +19 -0
- package/dist/collection/assets/TRADEMARKS.md +7 -0
- package/dist/collection/assets/commons.js +5 -0
- package/dist/collection/assets/data.json +642 -0
- package/dist/collection/collection-manifest.json +69 -0
- package/dist/collection/components/six-alert/six-alert.css +109 -0
- package/dist/collection/components/six-alert/six-alert.js +366 -0
- package/dist/collection/components/six-avatar/six-avatar.css +74 -0
- package/dist/collection/components/six-avatar/six-avatar.js +131 -0
- package/dist/collection/components/six-badge/six-badge.css +101 -0
- package/dist/collection/components/six-badge/six-badge.js +101 -0
- package/dist/collection/components/six-button/six-button.css +372 -0
- package/dist/collection/components/six-button/six-button.js +466 -0
- package/dist/collection/components/six-card/six-card.css +15 -0
- package/dist/collection/components/six-card/six-card.js +21 -0
- package/dist/collection/components/six-checkbox/six-checkbox.css +166 -0
- package/dist/collection/components/six-checkbox/six-checkbox.js +550 -0
- package/dist/collection/components/six-datepicker/components/day-selection.js +13 -0
- package/dist/collection/components/six-datepicker/components/month-selection.js +12 -0
- package/dist/collection/components/six-datepicker/components/year-selection.js +10 -0
- package/dist/collection/components/six-datepicker/six-date-formats.js +23 -0
- package/dist/collection/components/six-datepicker/six-datepicker.css +156 -0
- package/dist/collection/components/six-datepicker/six-datepicker.js +1343 -0
- package/dist/collection/components/six-datepicker/test/six-datepicker.test-helpers.js +16 -0
- package/dist/collection/components/six-details/six-details.css +118 -0
- package/dist/collection/components/six-details/six-details.js +432 -0
- package/dist/collection/components/six-dialog/six-dialog.css +123 -0
- package/dist/collection/components/six-dialog/six-dialog.js +401 -0
- package/dist/collection/components/six-drawer/six-drawer.css +166 -0
- package/dist/collection/components/six-drawer/six-drawer.js +458 -0
- package/dist/collection/components/six-dropdown/six-dropdown.css +67 -0
- package/dist/collection/components/six-dropdown/six-dropdown.js +939 -0
- package/dist/collection/components/six-error-page/six-error-page.css +17 -0
- package/dist/collection/components/six-error-page/six-error-page.js +199 -0
- package/dist/collection/components/six-file-list/six-file-list.css +6 -0
- package/dist/collection/components/six-file-list/six-file-list.js +20 -0
- package/dist/collection/components/six-file-list-item/six-file-list-item.css +36 -0
- package/dist/collection/components/six-file-list-item/six-file-list-item.js +203 -0
- package/dist/collection/components/six-file-upload/six-file-upload.css +63 -0
- package/dist/collection/components/six-file-upload/six-file-upload.js +272 -0
- package/dist/collection/components/six-footer/six-footer.css +20 -0
- package/dist/collection/components/six-footer/six-footer.js +21 -0
- package/dist/collection/components/six-form/six-form.css +11 -0
- package/dist/collection/components/six-form/six-form.js +408 -0
- package/dist/collection/components/six-group-label/six-group-label.css +88 -0
- package/dist/collection/components/six-group-label/six-group-label.js +166 -0
- package/dist/collection/components/six-header/assets/six-logo.svg +1 -0
- package/dist/collection/components/six-header/six-header.css +79 -0
- package/dist/collection/components/six-header/six-header.js +420 -0
- package/dist/collection/components/six-icon/six-icon.css +63 -0
- package/dist/collection/components/six-icon/six-icon.js +77 -0
- package/dist/collection/components/six-icon-button/six-icon-button.css +71 -0
- package/dist/collection/components/six-icon-button/six-icon-button.js +142 -0
- package/dist/collection/components/six-input/six-input.css +298 -0
- package/dist/collection/components/six-input/six-input.js +1141 -0
- package/dist/collection/components/six-item-picker/six-item-picker.css +40 -0
- package/dist/collection/components/six-item-picker/six-item-picker.js +688 -0
- package/dist/collection/components/six-item-picker/types.js +13 -0
- package/dist/collection/components/six-language-switcher/six-language-switcher.css +15 -0
- package/dist/collection/components/six-language-switcher/six-language-switcher.js +128 -0
- package/dist/collection/components/six-layout-grid/six-layout-grid.css +5 -0
- package/dist/collection/components/six-layout-grid/six-layout-grid.js +52 -0
- package/dist/collection/components/six-main-container/six-main-container.css +20 -0
- package/dist/collection/components/six-main-container/six-main-container.js +53 -0
- package/dist/collection/components/six-menu/six-menu.css +26 -0
- package/dist/collection/components/six-menu/six-menu.js +406 -0
- package/dist/collection/components/six-menu-divider/six-menu-divider.css +16 -0
- package/dist/collection/components/six-menu-divider/six-menu-divider.js +22 -0
- package/dist/collection/components/six-menu-item/six-menu-item.css +71 -0
- package/dist/collection/components/six-menu-item/six-menu-item.js +177 -0
- package/dist/collection/components/six-menu-label/six-menu-label.css +22 -0
- package/dist/collection/components/six-menu-label/six-menu-label.js +25 -0
- package/dist/collection/components/six-picto/six-picto.css +1232 -0
- package/dist/collection/components/six-picto/six-picto.js +50 -0
- package/dist/collection/components/six-progress-bar/six-progress-bar.css +60 -0
- package/dist/collection/components/six-progress-bar/six-progress-bar.js +77 -0
- package/dist/collection/components/six-progress-ring/six-progress-ring.css +52 -0
- package/dist/collection/components/six-progress-ring/six-progress-ring.js +111 -0
- package/dist/collection/components/six-radio/six-radio.css +84 -0
- package/dist/collection/components/six-radio/six-radio.js +410 -0
- package/dist/collection/components/six-range/six-range.css +231 -0
- package/dist/collection/components/six-range/six-range.js +620 -0
- package/dist/collection/components/six-root/six-root.css +48 -0
- package/dist/collection/components/six-root/six-root.js +167 -0
- package/dist/collection/components/six-search-field/six-search-field.css +18 -0
- package/dist/collection/components/six-search-field/six-search-field.js +171 -0
- package/dist/collection/components/six-select/six-select.css +348 -0
- package/dist/collection/components/six-select/six-select.js +1105 -0
- package/dist/collection/components/six-sidebar/six-sidebar.css +47 -0
- package/dist/collection/components/six-sidebar/six-sidebar.js +455 -0
- package/dist/collection/components/six-sidebar-item/six-sidebar-item.css +22 -0
- package/dist/collection/components/six-sidebar-item/six-sidebar-item.js +89 -0
- package/dist/collection/components/six-sidebar-item-group/six-sidebar-item-group.css +32 -0
- package/dist/collection/components/six-sidebar-item-group/six-sidebar-item-group.js +158 -0
- package/dist/collection/components/six-spinner/six-spinner.css +79 -0
- package/dist/collection/components/six-spinner/six-spinner.js +55 -0
- package/dist/collection/components/six-stage-indicator/six-stage-indicator.css +49 -0
- package/dist/collection/components/six-stage-indicator/six-stage-indicator.js +46 -0
- package/dist/collection/components/six-switch/six-switch.css +90 -0
- package/dist/collection/components/six-switch/six-switch.js +393 -0
- package/dist/collection/components/six-tab/six-tab.css +54 -0
- package/dist/collection/components/six-tab/six-tab.js +198 -0
- package/dist/collection/components/six-tab-group/six-tab-group.css +155 -0
- package/dist/collection/components/six-tab-group/six-tab-group.js +362 -0
- package/dist/collection/components/six-tab-panel/six-tab-panel.css +17 -0
- package/dist/collection/components/six-tab-panel/six-tab-panel.js +75 -0
- package/dist/collection/components/six-table/six-table.css +44 -0
- package/dist/collection/components/six-table/six-table.js +209 -0
- package/dist/collection/components/six-table/test/helpers.js +13 -0
- package/dist/collection/components/six-table/types.js +8 -0
- package/dist/collection/components/six-table/util/filter-by.js +34 -0
- package/dist/collection/components/six-table/util/from-data.js +33 -0
- package/dist/collection/components/six-table/util/is.js +3 -0
- package/dist/collection/components/six-table/util/quick-filter-by.js +13 -0
- package/dist/collection/components/six-table/util/sort-by.js +25 -0
- package/dist/collection/components/six-table-cell/six-table-cell.css +13 -0
- package/dist/collection/components/six-table-cell/six-table-cell.js +21 -0
- package/dist/collection/components/six-table-header/six-table-header.css +17 -0
- package/dist/collection/components/six-table-header/six-table-header.js +21 -0
- package/dist/collection/components/six-table-header-cell/get-next-state.js +7 -0
- package/dist/collection/components/six-table-header-cell/icons.js +12 -0
- package/dist/collection/components/six-table-header-cell/six-table-header-cell.css +37 -0
- package/dist/collection/components/six-table-header-cell/six-table-header-cell.js +174 -0
- package/dist/collection/components/six-table-header-cell/types.js +13 -0
- package/dist/collection/components/six-table-header-cell/util/create-model.js +6 -0
- package/dist/collection/components/six-table-header-cell/util/get-next-state.js +7 -0
- package/dist/collection/components/six-table-row/six-table-row.css +16 -0
- package/dist/collection/components/six-table-row/six-table-row.js +21 -0
- package/dist/collection/components/six-tag/six-tag.css +103 -0
- package/dist/collection/components/six-tag/six-tag.js +157 -0
- package/dist/collection/components/six-textarea/six-textarea.css +196 -0
- package/dist/collection/components/six-textarea/six-textarea.js +912 -0
- package/dist/collection/components/six-tile/six-tile.css +105 -0
- package/dist/collection/components/six-tile/six-tile.js +315 -0
- package/dist/collection/components/six-timepicker/six-time-format.js +14 -0
- package/dist/collection/components/six-timepicker/six-timepicker.css +94 -0
- package/dist/collection/components/six-timepicker/six-timepicker.js +980 -0
- package/dist/collection/components/six-timepicker/six-timepicker.types.js +40 -0
- package/dist/collection/components/six-tooltip/six-tooltip.css +146 -0
- package/dist/collection/components/six-tooltip/six-tooltip.js +435 -0
- package/dist/collection/files/file-list.json +308 -0
- package/dist/collection/files/noto-sans-all-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-all-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-all-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-cyrillic-ext-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-devanagari-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-devanagari-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-greek-ext-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-greek-ext-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-latin-ext-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-latin-ext-900-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-100-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-100-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-100-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-100-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-200-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-200-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-200-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-200-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-300-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-300-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-300-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-300-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-400-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-400-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-400-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-400-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-500-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-500-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-500-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-500-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-600-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-600-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-600-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-600-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-700-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-700-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-700-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-700-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-800-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-800-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-800-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-800-normal.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-900-italic.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-900-italic.woff2 +0 -0
- package/dist/collection/files/noto-sans-vietnamese-900-normal.woff +0 -0
- package/dist/collection/files/noto-sans-vietnamese-900-normal.woff2 +0 -0
- package/dist/collection/functional-components/form-control/form-control.js +28 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/material-icons-outlined.woff +0 -0
- package/dist/collection/material-icons-outlined.woff2 +0 -0
- package/dist/collection/material-icons-round.woff +0 -0
- package/dist/collection/material-icons-round.woff2 +0 -0
- package/dist/collection/material-icons-sharp.woff +0 -0
- package/dist/collection/material-icons-sharp.woff2 +0 -0
- package/dist/collection/material-icons-two-tone.woff +0 -0
- package/dist/collection/material-icons-two-tone.woff2 +0 -0
- package/dist/collection/material-icons.css +124 -0
- package/dist/collection/material-icons.scss +5 -0
- package/dist/collection/material-icons.woff +0 -0
- package/dist/collection/material-icons.woff2 +0 -0
- package/dist/collection/testUtil/delay.js +3 -0
- package/dist/collection/utils/as-array.js +1 -0
- package/dist/collection/utils/date-util.js +712 -0
- package/dist/collection/utils/event-listeners.js +39 -0
- package/dist/collection/utils/execution-control.js +38 -0
- package/dist/collection/utils/focus-visible.js +41 -0
- package/dist/collection/utils/matchers.js +2 -0
- package/dist/collection/utils/modal.js +28 -0
- package/dist/collection/utils/offset.js +13 -0
- package/dist/collection/utils/popover.js +113 -0
- package/dist/collection/utils/scroll.js +47 -0
- package/dist/collection/utils/slot.js +59 -0
- package/dist/collection/utils/support.js +15 -0
- package/dist/collection/utils/tabbable.js +22 -0
- package/dist/collection/utils/testing.js +38 -0
- package/dist/collection/utils/time.util.js +74 -0
- package/dist/collection/utils/type-check.js +5 -0
- package/dist/collection/utils/types.js +1 -0
- package/dist/collection/wrappers/set-attributes/set-attributes.js +68 -0
- package/dist/components.d.ts +121 -0
- package/dist/components.json +12649 -0
- package/dist/custom-elements/index.d.ts +387 -0
- package/dist/custom-elements/index.js +9757 -0
- package/dist/esm/event-listeners-570a24ea.js +41 -0
- package/dist/esm/execution-control-1a60d709.js +38 -0
- package/dist/esm/focus-visible-97933ea9.js +43 -0
- package/dist/esm/form-control-24f446af.js +30 -0
- package/dist/esm/index-a2605a62.js +1771 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/modal-5ebdc320.js +46 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/popover-1c7a1139.js +1896 -0
- package/dist/esm/scroll-180b53fd.js +62 -0
- package/dist/esm/set-attributes_2.entry.js +66 -0
- package/dist/esm/six-alert.entry.js +138 -0
- package/dist/esm/six-avatar.entry.js +35 -0
- package/dist/esm/six-badge.entry.js +33 -0
- package/dist/esm/six-button.entry.js +104 -0
- package/dist/esm/six-card.entry.js +15 -0
- package/dist/esm/six-checkbox.entry.js +159 -0
- package/dist/esm/six-datepicker.entry.js +1206 -0
- package/dist/esm/six-details.entry.js +146 -0
- package/dist/esm/six-dialog.entry.js +159 -0
- package/dist/esm/six-drawer.entry.js +181 -0
- package/dist/esm/six-dropdown_3.entry.js +745 -0
- package/dist/esm/six-error-page.entry.js +101 -0
- package/dist/esm/six-file-list-item.entry.js +45 -0
- package/dist/esm/six-file-list.entry.js +15 -0
- package/dist/esm/six-file-upload.entry.js +103 -0
- package/dist/esm/six-footer.entry.js +15 -0
- package/dist/esm/six-form.entry.js +226 -0
- package/dist/esm/six-group-label.entry.js +53 -0
- package/dist/esm/six-header.entry.js +156 -0
- package/dist/esm/six-icon-button.entry.js +40 -0
- package/dist/esm/six-icon.entry.js +31 -0
- package/dist/esm/six-input.entry.js +237 -0
- package/dist/esm/six-item-picker.entry.js +368 -0
- package/dist/esm/six-language-switcher.entry.js +59 -0
- package/dist/esm/six-layout-grid.entry.js +26 -0
- package/dist/esm/six-main-container.entry.js +18 -0
- package/dist/esm/six-menu-divider.entry.js +15 -0
- package/dist/esm/six-menu-label.entry.js +15 -0
- package/dist/esm/six-picto.entry.js +22 -0
- package/dist/esm/six-progress-bar.entry.js +24 -0
- package/dist/esm/six-progress-ring.entry.js +38 -0
- package/dist/esm/six-radio.entry.js +128 -0
- package/dist/esm/six-range.entry.js +205 -0
- package/dist/esm/six-root.entry.js +41 -0
- package/dist/esm/six-search-field.entry.js +50 -0
- package/dist/esm/six-select.entry.js +454 -0
- package/dist/esm/six-sidebar-item-group.entry.js +49 -0
- package/dist/esm/six-sidebar-item.entry.js +25 -0
- package/dist/esm/six-sidebar.entry.js +178 -0
- package/dist/esm/six-spinner.entry.js +23 -0
- package/dist/esm/six-switch.entry.js +107 -0
- package/dist/esm/six-tab-group.entry.js +233 -0
- package/dist/esm/six-tab-panel.entry.js +24 -0
- package/dist/esm/six-tab.entry.js +49 -0
- package/dist/esm/six-table-cell_4.entry.js +95 -0
- package/dist/esm/six-table.entry.js +164 -0
- package/dist/esm/six-tag.entry.js +47 -0
- package/dist/esm/six-textarea.entry.js +218 -0
- package/dist/esm/six-tile.entry.js +96 -0
- package/dist/esm/six-timepicker.entry.js +500 -0
- package/dist/esm/six-timepicker.types-e161a447.js +48 -0
- package/dist/esm/six-tooltip.entry.js +179 -0
- package/dist/esm/slot-6f3984c7.js +45 -0
- package/dist/esm/types-4b10b413.js +15 -0
- package/dist/esm/types-ed860f7c.js +15 -0
- package/dist/esm/ui-library.js +17 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/types/components/six-alert/six-alert.d.ts +60 -0
- package/dist/types/components/six-avatar/six-avatar.d.ts +27 -0
- package/dist/types/components/six-badge/six-badge.d.ts +20 -0
- package/dist/types/components/six-button/six-button.d.ts +69 -0
- package/dist/types/components/six-card/six-card.d.ts +9 -0
- package/dist/types/components/six-checkbox/six-checkbox.d.ts +86 -0
- package/dist/types/components/six-datepicker/components/day-selection.d.ts +5 -0
- package/dist/types/components/six-datepicker/components/month-selection.d.ts +5 -0
- package/dist/types/components/six-datepicker/components/year-selection.d.ts +5 -0
- package/dist/types/components/six-datepicker/six-date-formats.d.ts +22 -0
- package/dist/types/components/six-datepicker/six-datepicker.d.ts +214 -0
- package/dist/types/components/six-datepicker/test/six-datepicker.test-helpers.d.ts +1 -0
- package/dist/types/components/six-details/six-details.d.ts +61 -0
- package/dist/types/components/six-dialog/six-dialog.d.ts +75 -0
- package/dist/types/components/six-drawer/six-drawer.d.ts +82 -0
- package/dist/types/components/six-dropdown/six-dropdown.d.ts +140 -0
- package/dist/types/components/six-error-page/six-error-page.d.ts +27 -0
- package/dist/types/components/six-file-list/six-file-list.d.ts +8 -0
- package/dist/types/components/six-file-list-item/six-file-list-item.d.ts +35 -0
- package/dist/types/components/six-file-upload/six-file-upload.d.ts +42 -0
- package/dist/types/components/six-footer/six-footer.d.ts +9 -0
- package/dist/types/components/six-form/six-form.d.ts +69 -0
- package/dist/types/components/six-group-label/six-group-label.d.ts +37 -0
- package/dist/types/components/six-header/six-header.d.ts +90 -0
- package/dist/types/components/six-icon/six-icon.d.ts +13 -0
- package/dist/types/components/six-icon-button/six-icon-button.d.ts +28 -0
- package/dist/types/components/six-input/six-input.d.ts +165 -0
- package/dist/types/components/six-item-picker/six-item-picker.d.ts +106 -0
- package/dist/types/components/six-item-picker/types.d.ts +11 -0
- package/dist/types/components/six-language-switcher/six-language-switcher.d.ts +25 -0
- package/dist/types/components/six-layout-grid/six-layout-grid.d.ts +14 -0
- package/dist/types/components/six-main-container/six-main-container.d.ts +16 -0
- package/dist/types/components/six-menu/six-menu.d.ts +81 -0
- package/dist/types/components/six-menu-divider/six-menu-divider.d.ts +11 -0
- package/dist/types/components/six-menu-item/six-menu-item.d.ts +36 -0
- package/dist/types/components/six-menu-label/six-menu-label.d.ts +13 -0
- package/dist/types/components/six-picto/six-picto.d.ts +14 -0
- package/dist/types/components/six-progress-bar/six-progress-bar.d.ts +19 -0
- package/dist/types/components/six-progress-ring/six-progress-ring.d.ts +24 -0
- package/dist/types/components/six-radio/six-radio.d.ts +66 -0
- package/dist/types/components/six-range/six-range.d.ts +101 -0
- package/dist/types/components/six-root/six-root.d.ts +34 -0
- package/dist/types/components/six-search-field/six-search-field.d.ts +32 -0
- package/dist/types/components/six-select/six-select.d.ts +163 -0
- package/dist/types/components/six-sidebar/six-sidebar.d.ts +55 -0
- package/dist/types/components/six-sidebar-item/six-sidebar-item.d.ts +15 -0
- package/dist/types/components/six-sidebar-item-group/six-sidebar-item-group.d.ts +26 -0
- package/dist/types/components/six-spinner/six-spinner.d.ts +15 -0
- package/dist/types/components/six-stage-indicator/six-stage-indicator.d.ts +6 -0
- package/dist/types/components/six-switch/six-switch.d.ts +62 -0
- package/dist/types/components/six-tab/six-tab.d.ts +35 -0
- package/dist/types/components/six-tab-group/six-tab-group.d.ts +62 -0
- package/dist/types/components/six-tab-panel/six-tab-panel.d.ts +19 -0
- package/dist/types/components/six-table/six-table.d.ts +30 -0
- package/dist/types/components/six-table/test/helpers.d.ts +2 -0
- package/dist/types/components/six-table/types.d.ts +33 -0
- package/dist/types/components/six-table/util/filter-by.d.ts +2 -0
- package/dist/types/components/six-table/util/from-data.d.ts +8 -0
- package/dist/types/components/six-table/util/is.d.ts +3 -0
- package/dist/types/components/six-table/util/quick-filter-by.d.ts +2 -0
- package/dist/types/components/six-table/util/sort-by.d.ts +2 -0
- package/dist/types/components/six-table-cell/six-table-cell.d.ts +9 -0
- package/dist/types/components/six-table-header/six-table-header.d.ts +9 -0
- package/dist/types/components/six-table-header-cell/get-next-state.d.ts +2 -0
- package/dist/types/components/six-table-header-cell/icons.d.ts +3 -0
- package/dist/types/components/six-table-header-cell/six-table-header-cell.d.ts +32 -0
- package/dist/types/components/six-table-header-cell/types.d.ts +11 -0
- package/dist/types/components/six-table-header-cell/util/create-model.d.ts +4 -0
- package/dist/types/components/six-table-header-cell/util/get-next-state.d.ts +3 -0
- package/dist/types/components/six-table-row/six-table-row.d.ts +9 -0
- package/dist/types/components/six-tag/six-tag.d.ts +30 -0
- package/dist/types/components/six-textarea/six-textarea.d.ts +134 -0
- package/dist/types/components/six-tile/six-tile.d.ts +40 -0
- package/dist/types/components/six-timepicker/six-time-format.d.ts +13 -0
- package/dist/types/components/six-timepicker/six-timepicker.d.ts +184 -0
- package/dist/types/components/six-timepicker/six-timepicker.types.d.ts +36 -0
- package/dist/types/components/six-tooltip/six-tooltip.d.ts +72 -0
- package/dist/types/components.d.ts +4335 -0
- package/dist/types/functional-components/form-control/form-control.d.ts +34 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/testUtil/delay.d.ts +1 -0
- package/dist/types/utils/as-array.d.ts +1 -0
- package/dist/types/utils/date-util.d.ts +194 -0
- package/dist/types/utils/event-listeners.d.ts +15 -0
- package/dist/types/utils/execution-control.d.ts +26 -0
- package/dist/types/utils/focus-visible.d.ts +6 -0
- package/dist/types/utils/matchers.d.ts +2 -0
- package/dist/types/utils/modal.d.ts +13 -0
- package/dist/types/utils/offset.d.ts +4 -0
- package/dist/types/utils/popover.d.ts +27 -0
- package/dist/types/utils/popper.d.ts +33 -0
- package/dist/types/utils/scroll.d.ts +3 -0
- package/dist/types/utils/slot.d.ts +9 -0
- package/dist/types/utils/support.d.ts +1 -0
- package/dist/types/utils/tabbable.d.ts +2 -0
- package/dist/types/utils/testing.d.ts +2 -0
- package/dist/types/utils/time.util.d.ts +10 -0
- package/dist/types/utils/type-check.d.ts +4 -0
- package/dist/types/utils/types.d.ts +4 -0
- package/dist/types/wrappers/set-attributes/set-attributes.d.ts +9 -0
- package/dist/ui-library/assets/TRADEMARKS.md +7 -0
- package/dist/ui-library/assets/commons.js +5 -0
- package/dist/ui-library/assets/data.json +642 -0
- package/dist/ui-library/assets/six-logo.svg +1 -0
- package/dist/ui-library/files/file-list.json +308 -0
- package/dist/ui-library/files/noto-sans-all-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-all-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-cyrillic-ext-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-devanagari-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-greek-ext-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-latin-ext-900-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-100-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-100-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-100-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-100-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-200-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-200-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-200-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-200-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-300-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-300-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-300-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-300-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-400-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-400-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-400-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-400-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-500-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-500-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-500-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-500-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-600-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-600-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-600-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-600-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-700-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-700-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-700-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-700-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-800-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-800-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-800-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-800-normal.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-900-italic.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-900-italic.woff2 +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-900-normal.woff +0 -0
- package/dist/ui-library/files/noto-sans-vietnamese-900-normal.woff2 +0 -0
- package/dist/ui-library/index.esm.js +0 -0
- package/dist/ui-library/material-icons-outlined.woff +0 -0
- package/dist/ui-library/material-icons-outlined.woff2 +0 -0
- package/dist/ui-library/material-icons-round.woff +0 -0
- package/dist/ui-library/material-icons-round.woff2 +0 -0
- package/dist/ui-library/material-icons-sharp.woff +0 -0
- package/dist/ui-library/material-icons-sharp.woff2 +0 -0
- package/dist/ui-library/material-icons-two-tone.woff +0 -0
- package/dist/ui-library/material-icons-two-tone.woff2 +0 -0
- package/dist/ui-library/material-icons.css +124 -0
- package/dist/ui-library/material-icons.scss +5 -0
- package/dist/ui-library/material-icons.woff +0 -0
- package/dist/ui-library/material-icons.woff2 +0 -0
- package/dist/ui-library/p-007bc8e8.entry.js +1 -0
- package/dist/ui-library/p-044b784e.entry.js +1 -0
- package/dist/ui-library/p-0493c926.entry.js +1 -0
- package/dist/ui-library/p-0786fa7c.js +1 -0
- package/dist/ui-library/p-07d1e830.js +1 -0
- package/dist/ui-library/p-09cb13fa.entry.js +1 -0
- package/dist/ui-library/p-0c596054.entry.js +1 -0
- package/dist/ui-library/p-1005d1a8.entry.js +1 -0
- package/dist/ui-library/p-19ff1079.entry.js +1 -0
- package/dist/ui-library/p-1b8dc7b7.entry.js +1 -0
- package/dist/ui-library/p-2053c61a.entry.js +1 -0
- package/dist/ui-library/p-25a3bf57.js +1 -0
- package/dist/ui-library/p-281e8c2d.entry.js +1 -0
- package/dist/ui-library/p-2924f82f.entry.js +1 -0
- package/dist/ui-library/p-2d7ed407.entry.js +1 -0
- package/dist/ui-library/p-30ebc1e7.js +1 -0
- package/dist/ui-library/p-354704e5.entry.js +1 -0
- package/dist/ui-library/p-376b8f30.entry.js +1 -0
- package/dist/ui-library/p-3a7daff8.entry.js +1 -0
- package/dist/ui-library/p-3f577392.entry.js +1 -0
- package/dist/ui-library/p-4162dcdd.entry.js +1 -0
- package/dist/ui-library/p-4d3a4e93.entry.js +1 -0
- package/dist/ui-library/p-4ed023b8.entry.js +1 -0
- package/dist/ui-library/p-4f8394d7.js +1 -0
- package/dist/ui-library/p-530ea6ec.entry.js +1 -0
- package/dist/ui-library/p-531ab886.entry.js +1 -0
- package/dist/ui-library/p-54c48654.entry.js +1 -0
- package/dist/ui-library/p-55c64cbc.entry.js +1 -0
- package/dist/ui-library/p-5f1c6a5f.js +1 -0
- package/dist/ui-library/p-6494e92d.entry.js +1 -0
- package/dist/ui-library/p-66601906.entry.js +1 -0
- package/dist/ui-library/p-675a8243.entry.js +1 -0
- package/dist/ui-library/p-6a4f0542.entry.js +1 -0
- package/dist/ui-library/p-6d622ed0.entry.js +1 -0
- package/dist/ui-library/p-75297ad7.js +1 -0
- package/dist/ui-library/p-76bfa55f.entry.js +1 -0
- package/dist/ui-library/p-7fe09462.entry.js +1 -0
- package/dist/ui-library/p-88e1e390.entry.js +1 -0
- package/dist/ui-library/p-8e8e922b.entry.js +1 -0
- package/dist/ui-library/p-90b26447.entry.js +1 -0
- package/dist/ui-library/p-93945629.entry.js +1 -0
- package/dist/ui-library/p-9a860acc.js +1 -0
- package/dist/ui-library/p-a98198bd.entry.js +1 -0
- package/dist/ui-library/p-aa37e45a.entry.js +1 -0
- package/dist/ui-library/p-b1e66136.js +1 -0
- package/dist/ui-library/p-b391f704.entry.js +1 -0
- package/dist/ui-library/p-b4dfb7cf.js +1 -0
- package/dist/ui-library/p-b9377445.entry.js +1 -0
- package/dist/ui-library/p-bf110ea9.entry.js +1 -0
- package/dist/ui-library/p-c24292b3.entry.js +1 -0
- package/dist/ui-library/p-c4b22513.entry.js +1 -0
- package/dist/ui-library/p-c536792e.entry.js +1 -0
- package/dist/ui-library/p-cd79de73.entry.js +1 -0
- package/dist/ui-library/p-ce02c34f.entry.js +1 -0
- package/dist/ui-library/p-d12c6092.js +1 -0
- package/dist/ui-library/p-d28ac80a.entry.js +1 -0
- package/dist/ui-library/p-d724bbc9.entry.js +1 -0
- package/dist/ui-library/p-d837e5a8.entry.js +1 -0
- package/dist/ui-library/p-dd3cae68.entry.js +1 -0
- package/dist/ui-library/p-ea781e94.entry.js +1 -0
- package/dist/ui-library/p-eae232c3.entry.js +1 -0
- package/dist/ui-library/p-eb0956d2.entry.js +1 -0
- package/dist/ui-library/p-eb8f05a9.js +1 -0
- package/dist/ui-library/p-f00c1783.entry.js +1 -0
- package/dist/ui-library/ui-library.css +10 -0
- package/dist/ui-library/ui-library.esm.js +1 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +74 -0
- package/readme.md +154 -0
|
@@ -0,0 +1,4335 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
import { EmptyPayload } from "./utils/types";
|
|
9
|
+
import { SixDateFormats } from "./components/six-datepicker/six-date-formats";
|
|
10
|
+
import { SixDatepickerSelectPayload } from "./components/six-datepicker/six-datepicker";
|
|
11
|
+
import { SixMenuItemData } from "./components/six-menu/six-menu";
|
|
12
|
+
import { SixDropdownAsyncFilterPayload, SixDropdownAutoFilterPayload, SixDropdownScrollPayload } from "./components/six-dropdown/six-dropdown";
|
|
13
|
+
import { SixFileListDownloadPayload, SixFileListRemovePayload } from "./components/six-file-list-item/six-file-list-item";
|
|
14
|
+
import { SixFileUploadFailurePayload, SixFileUploadSuccessPayload } from "./components/six-file-upload/six-file-upload";
|
|
15
|
+
import { SixFormChangePayload, SixFormSubmitPayload } from "./components/six-form/six-form";
|
|
16
|
+
import { SixHeaderAppSwitcherSelectPayload, SixHeaderProfileSelectPayload, SixHeaderSearchFieldToggle } from "./components/six-header/six-header";
|
|
17
|
+
import { ItemPickerPaddingDirection, ItemPickerType } from "./components/six-item-picker/types";
|
|
18
|
+
import { SixItemPickerChangePayload } from "./components/six-item-picker/six-item-picker";
|
|
19
|
+
import { SixLanguageSwitcherChangePayload, SixLanguageSwitcherInput } from "./components/six-language-switcher/six-language-switcher";
|
|
20
|
+
import { SixMenuItemData as SixMenuItemData1, SixMenuItemSelectedPayload } from "./components/six-menu/six-menu";
|
|
21
|
+
import { StageType } from "./components/six-stage-indicator/six-stage-indicator";
|
|
22
|
+
import { SixRootCollapsedPayload } from "./components/six-root/six-root";
|
|
23
|
+
import { SixSearchFieldChangePayload } from "./components/six-search-field/six-search-field";
|
|
24
|
+
import { SixSelectChangePayload } from "./components/six-select/six-select";
|
|
25
|
+
import { StageType as StageType1 } from "./components/six-stage-indicator/six-stage-indicator";
|
|
26
|
+
import { SixTabHidePayload, SixTabShowPayload } from "./components/six-tab-group/six-tab-group";
|
|
27
|
+
import { Data, Item, TableCellClickedPayload, TableReadyPayload, TableRowClickedPayload } from "./components/six-table/types";
|
|
28
|
+
import { FilterMode, SortDirection } from "./components/six-table-header-cell/types";
|
|
29
|
+
import { SixTableHeaderCellFilterUpdatedPayload, SixTableHeaderCellSortUpdatedPayload } from "./components/six-table-header-cell/six-table-header-cell";
|
|
30
|
+
import { SixTimeFormat } from "./components/six-timepicker/six-time-format";
|
|
31
|
+
import { SixTimepickerChange } from "./components/six-timepicker/six-timepicker";
|
|
32
|
+
export namespace Components {
|
|
33
|
+
interface SetAttributes {
|
|
34
|
+
/**
|
|
35
|
+
* Attributes map
|
|
36
|
+
*/
|
|
37
|
+
"value": {};
|
|
38
|
+
}
|
|
39
|
+
interface SixAlert {
|
|
40
|
+
/**
|
|
41
|
+
* Set to true to make the alert closable.
|
|
42
|
+
*/
|
|
43
|
+
"closable": boolean;
|
|
44
|
+
/**
|
|
45
|
+
* The length of time, in milliseconds, the alert will show before closing itself. If the user interacts with the alert before it closes (e.g. moves the mouse over it), the timer will restart.
|
|
46
|
+
*/
|
|
47
|
+
"duration": number;
|
|
48
|
+
/**
|
|
49
|
+
* Hides the alert
|
|
50
|
+
*/
|
|
51
|
+
"hide": () => Promise<void>;
|
|
52
|
+
/**
|
|
53
|
+
* Indicates whether or not the alert is open. You can use this in lieu of the show/hide methods.
|
|
54
|
+
*/
|
|
55
|
+
"open": boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Shows the alert.
|
|
58
|
+
*/
|
|
59
|
+
"show": () => Promise<void>;
|
|
60
|
+
/**
|
|
61
|
+
* Displays the alert as a toast notification. This will move the alert out of its position in the DOM and, when dismissed, it will be removed from the DOM completely. By storing a reference to the alert, you can reuse it by calling this method again. The returned promise will resolve after the alert is hidden.
|
|
62
|
+
*/
|
|
63
|
+
"toast": () => Promise<void>;
|
|
64
|
+
/**
|
|
65
|
+
* The type of alert.
|
|
66
|
+
*/
|
|
67
|
+
"type": 'primary' | 'success' | 'info' | 'warning' | 'danger';
|
|
68
|
+
}
|
|
69
|
+
interface SixAvatar {
|
|
70
|
+
/**
|
|
71
|
+
* Alternative text for the image.
|
|
72
|
+
*/
|
|
73
|
+
"alt": string;
|
|
74
|
+
/**
|
|
75
|
+
* The image source to use for the avatar.
|
|
76
|
+
*/
|
|
77
|
+
"image": string;
|
|
78
|
+
/**
|
|
79
|
+
* Initials to use as a fallback when no image is available (1-2 characters max recommended).
|
|
80
|
+
*/
|
|
81
|
+
"initials": string;
|
|
82
|
+
/**
|
|
83
|
+
* The shape of the avatar.
|
|
84
|
+
*/
|
|
85
|
+
"shape": 'circle' | 'square' | 'rounded';
|
|
86
|
+
}
|
|
87
|
+
interface SixBadge {
|
|
88
|
+
/**
|
|
89
|
+
* Set to true to draw a pill-style badge with rounded edges.
|
|
90
|
+
*/
|
|
91
|
+
"pill": boolean;
|
|
92
|
+
/**
|
|
93
|
+
* Set to true to make the badge pulsate to draw attention.
|
|
94
|
+
*/
|
|
95
|
+
"pulse": boolean;
|
|
96
|
+
/**
|
|
97
|
+
* The badge's type.
|
|
98
|
+
*/
|
|
99
|
+
"type": 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'action';
|
|
100
|
+
}
|
|
101
|
+
interface SixButton {
|
|
102
|
+
/**
|
|
103
|
+
* Set to true to draw the button with a caret for use with dropdowns, popovers, etc.
|
|
104
|
+
*/
|
|
105
|
+
"caret": boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Set to true to draw a circle button.
|
|
108
|
+
*/
|
|
109
|
+
"circle": boolean;
|
|
110
|
+
/**
|
|
111
|
+
* Set to true to disable the button.
|
|
112
|
+
*/
|
|
113
|
+
"disabled": boolean;
|
|
114
|
+
/**
|
|
115
|
+
* Tells the browser to download the linked file as this filename. Only used when `href` is set.
|
|
116
|
+
*/
|
|
117
|
+
"download": string;
|
|
118
|
+
/**
|
|
119
|
+
* When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.
|
|
120
|
+
*/
|
|
121
|
+
"href": string;
|
|
122
|
+
/**
|
|
123
|
+
* Set to true to draw the button in a loading state.
|
|
124
|
+
*/
|
|
125
|
+
"loading": boolean;
|
|
126
|
+
/**
|
|
127
|
+
* An optional name for the button. Ignored when `href` is set.
|
|
128
|
+
*/
|
|
129
|
+
"name": string;
|
|
130
|
+
/**
|
|
131
|
+
* Set to true to draw a pill-style button with rounded edges.
|
|
132
|
+
*/
|
|
133
|
+
"pill": boolean;
|
|
134
|
+
/**
|
|
135
|
+
* Removes focus from the button.
|
|
136
|
+
*/
|
|
137
|
+
"removeFocus": () => Promise<void>;
|
|
138
|
+
/**
|
|
139
|
+
* Indicates if activating the button should reset the form.
|
|
140
|
+
*/
|
|
141
|
+
"reset": boolean;
|
|
142
|
+
/**
|
|
143
|
+
* Sets focus on the button.
|
|
144
|
+
*/
|
|
145
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
146
|
+
/**
|
|
147
|
+
* The button's size.
|
|
148
|
+
*/
|
|
149
|
+
"size": 'small' | 'medium' | 'large';
|
|
150
|
+
/**
|
|
151
|
+
* Indicates if activating the button should submit the form. Ignored when `href` is set.
|
|
152
|
+
*/
|
|
153
|
+
"submit": boolean;
|
|
154
|
+
/**
|
|
155
|
+
* Tells the browser where to open the link. Only used when `href` is set.
|
|
156
|
+
*/
|
|
157
|
+
"target": '_blank' | '_parent' | '_self' | '_top';
|
|
158
|
+
/**
|
|
159
|
+
* The button's type.
|
|
160
|
+
*/
|
|
161
|
+
"type": 'secondary' | 'primary' | 'link' | 'success' | 'warning' | 'danger' | 'action';
|
|
162
|
+
/**
|
|
163
|
+
* An optional value for the button. Ignored when `href` is set.
|
|
164
|
+
*/
|
|
165
|
+
"value": string;
|
|
166
|
+
}
|
|
167
|
+
interface SixCard {
|
|
168
|
+
}
|
|
169
|
+
interface SixCheckbox {
|
|
170
|
+
/**
|
|
171
|
+
* Checks for validity.
|
|
172
|
+
*/
|
|
173
|
+
"checkValidity": () => Promise<boolean>;
|
|
174
|
+
/**
|
|
175
|
+
* Set to true to draw the checkbox in a checked state.
|
|
176
|
+
*/
|
|
177
|
+
"checked": boolean;
|
|
178
|
+
/**
|
|
179
|
+
* Set to true to disable the checkbox.
|
|
180
|
+
*/
|
|
181
|
+
"disabled": boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Set to display the error text on blur and not when typing
|
|
184
|
+
*/
|
|
185
|
+
"errorOnBlur": boolean;
|
|
186
|
+
/**
|
|
187
|
+
* The checkbox's error text. Alternatively, you can use the error-text slot.
|
|
188
|
+
*/
|
|
189
|
+
"errorText": string;
|
|
190
|
+
/**
|
|
191
|
+
* Set to true to draw the checkbox in an indeterminate state.
|
|
192
|
+
*/
|
|
193
|
+
"indeterminate": boolean;
|
|
194
|
+
/**
|
|
195
|
+
* This will be true when the control is in an invalid state. Validity is determined by the `required` prop.
|
|
196
|
+
*/
|
|
197
|
+
"invalid": boolean;
|
|
198
|
+
/**
|
|
199
|
+
* The checkbox label. Alternatively, you can use the label slot.
|
|
200
|
+
*/
|
|
201
|
+
"label": string;
|
|
202
|
+
/**
|
|
203
|
+
* The checkbox's name attribute.
|
|
204
|
+
*/
|
|
205
|
+
"name": string;
|
|
206
|
+
/**
|
|
207
|
+
* Removes focus from the checkbox.
|
|
208
|
+
*/
|
|
209
|
+
"removeFocus": () => Promise<void>;
|
|
210
|
+
/**
|
|
211
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
212
|
+
*/
|
|
213
|
+
"reportValidity": () => Promise<boolean>;
|
|
214
|
+
/**
|
|
215
|
+
* Set to true to make the checkbox a required field.
|
|
216
|
+
*/
|
|
217
|
+
"required": boolean;
|
|
218
|
+
/**
|
|
219
|
+
* Resets the formcontrol
|
|
220
|
+
*/
|
|
221
|
+
"reset": () => Promise<void>;
|
|
222
|
+
/**
|
|
223
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
224
|
+
*/
|
|
225
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
226
|
+
/**
|
|
227
|
+
* Sets focus on the checkbox.
|
|
228
|
+
*/
|
|
229
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
230
|
+
/**
|
|
231
|
+
* The checkbox's value attribute.
|
|
232
|
+
*/
|
|
233
|
+
"value": string;
|
|
234
|
+
}
|
|
235
|
+
interface SixDatepicker {
|
|
236
|
+
/**
|
|
237
|
+
* Callback to determine which date in the datepicker should be selectable. the callback function will get a datestring as an argument, e.g. '2021-07-04' Usage e.g.: const datepicker = document.getElementById('allowed-date-picker'); datepicker.allowedDates = datestring => parseInt(datestring.split('-')[2], 10) % 2 === 0;
|
|
238
|
+
*/
|
|
239
|
+
"allowedDates": (date: Date) => boolean;
|
|
240
|
+
/**
|
|
241
|
+
* Checks for validity.
|
|
242
|
+
*/
|
|
243
|
+
"checkValidity": () => Promise<boolean>;
|
|
244
|
+
/**
|
|
245
|
+
* Set to true to add a clear button when the input is populated.
|
|
246
|
+
*/
|
|
247
|
+
"clearable": boolean;
|
|
248
|
+
/**
|
|
249
|
+
* Closes the datepicker dropdown after selection
|
|
250
|
+
*/
|
|
251
|
+
"closeOnSelect": boolean;
|
|
252
|
+
/**
|
|
253
|
+
* The dropdown will close when the user interacts outside of this element (e.g. clicking).
|
|
254
|
+
*/
|
|
255
|
+
"containingElement": HTMLElement;
|
|
256
|
+
/**
|
|
257
|
+
* Define the dateFormat. Valid formats are: 'dd.mm.yyyy' 'yyyy-mm-dd' 'dd-mm-yyyy' 'dd/mm/yyyy' 'yyyy/mm/dd' 'dd.mm.yy' 'yy-mm-dd' 'dd-mm-yy' 'dd/mm/yy' 'yy/mm/dd'
|
|
258
|
+
*/
|
|
259
|
+
"dateFormat": SixDateFormats;
|
|
260
|
+
/**
|
|
261
|
+
* Set the amount of time, in milliseconds, to wait to trigger the `dateChange` event after each keystroke.
|
|
262
|
+
*/
|
|
263
|
+
"debounce": number;
|
|
264
|
+
/**
|
|
265
|
+
* The date to defines where the datepicker popup starts. The prop accepts ISO 8601 date strings (YYYY-MM-DD).
|
|
266
|
+
*/
|
|
267
|
+
"defaultDate"?: string | null;
|
|
268
|
+
/**
|
|
269
|
+
* If `true` the component is disabled.
|
|
270
|
+
*/
|
|
271
|
+
"disabled": boolean;
|
|
272
|
+
/**
|
|
273
|
+
* Set to display the error text on blur and not when typing
|
|
274
|
+
*/
|
|
275
|
+
"errorOnBlur": boolean;
|
|
276
|
+
/**
|
|
277
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
278
|
+
*/
|
|
279
|
+
"errorText": string;
|
|
280
|
+
/**
|
|
281
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
282
|
+
*/
|
|
283
|
+
"hoist": boolean;
|
|
284
|
+
/**
|
|
285
|
+
* Set the position of the icon
|
|
286
|
+
*/
|
|
287
|
+
"iconPosition": 'left' | 'right';
|
|
288
|
+
/**
|
|
289
|
+
* Indicates whether or not the calendar should be shown as an inline (always open) component
|
|
290
|
+
*/
|
|
291
|
+
"inline": boolean;
|
|
292
|
+
/**
|
|
293
|
+
* The input's label. Alternatively, you can use the label slot.
|
|
294
|
+
*/
|
|
295
|
+
"label": string;
|
|
296
|
+
/**
|
|
297
|
+
* The language used to render the weekdays and months.
|
|
298
|
+
*/
|
|
299
|
+
"locale": 'en' | 'de' | 'fr' | 'it';
|
|
300
|
+
/**
|
|
301
|
+
* The maximum datetime allowed. Value must be a date object
|
|
302
|
+
*/
|
|
303
|
+
"max"?: Date | null;
|
|
304
|
+
/**
|
|
305
|
+
* The minimum datetime allowed. Value must be a date object
|
|
306
|
+
*/
|
|
307
|
+
"min"?: Date | null;
|
|
308
|
+
/**
|
|
309
|
+
* The input's name attribute.
|
|
310
|
+
*/
|
|
311
|
+
"name": string;
|
|
312
|
+
/**
|
|
313
|
+
* Indicates whether or not the calendar dropdown is open on startup. You can use this in lieu of the show/hide methods.
|
|
314
|
+
*/
|
|
315
|
+
"open": boolean;
|
|
316
|
+
/**
|
|
317
|
+
* The placeholder defines what text to be shown on the input element
|
|
318
|
+
*/
|
|
319
|
+
"placeholder"?: string | null;
|
|
320
|
+
/**
|
|
321
|
+
* The enforced placement of the dropdown panel.
|
|
322
|
+
*/
|
|
323
|
+
"placement": 'top' | 'bottom';
|
|
324
|
+
/**
|
|
325
|
+
* If `true` the user can only select a date via the component in the popup, but not directly edit the input field.
|
|
326
|
+
*/
|
|
327
|
+
"readonly": boolean;
|
|
328
|
+
/**
|
|
329
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
330
|
+
*/
|
|
331
|
+
"reportValidity": () => Promise<boolean>;
|
|
332
|
+
/**
|
|
333
|
+
* Set to true to make the input a required field.
|
|
334
|
+
*/
|
|
335
|
+
"required": boolean;
|
|
336
|
+
/**
|
|
337
|
+
* Resets the formcontrol
|
|
338
|
+
*/
|
|
339
|
+
"reset": () => Promise<void>;
|
|
340
|
+
/**
|
|
341
|
+
* Selects an option
|
|
342
|
+
*/
|
|
343
|
+
"select": (datestring: string) => Promise<void>;
|
|
344
|
+
/**
|
|
345
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
346
|
+
*/
|
|
347
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
348
|
+
/**
|
|
349
|
+
* Datepicker size.
|
|
350
|
+
*/
|
|
351
|
+
"size": 'small' | 'medium' | 'large';
|
|
352
|
+
/**
|
|
353
|
+
* Set the type.
|
|
354
|
+
*/
|
|
355
|
+
"type": 'date' | 'date-time';
|
|
356
|
+
/**
|
|
357
|
+
* The value of the form field, which accepts a date object.
|
|
358
|
+
*/
|
|
359
|
+
"value"?: Date | null;
|
|
360
|
+
}
|
|
361
|
+
interface SixDetails {
|
|
362
|
+
/**
|
|
363
|
+
* Set to true to prevent the user from toggling the details.
|
|
364
|
+
*/
|
|
365
|
+
"disabled": boolean;
|
|
366
|
+
"hasContent": boolean;
|
|
367
|
+
/**
|
|
368
|
+
* Hides the detail body
|
|
369
|
+
*/
|
|
370
|
+
"hide": () => Promise<void>;
|
|
371
|
+
/**
|
|
372
|
+
* Set to true when you want to use six-details inline e.g. in a sidebar
|
|
373
|
+
*/
|
|
374
|
+
"inline": boolean;
|
|
375
|
+
/**
|
|
376
|
+
* Indicates whether or not the details is open. You can use this in lieu of the show/hide methods.
|
|
377
|
+
*/
|
|
378
|
+
"open": boolean;
|
|
379
|
+
/**
|
|
380
|
+
* Set to true when you want details without content to be selectable. This is important if you e.g. have a toggled sidebar where some menus have no children
|
|
381
|
+
*/
|
|
382
|
+
"selectableEmpty": boolean;
|
|
383
|
+
/**
|
|
384
|
+
* Shows the detail body
|
|
385
|
+
*/
|
|
386
|
+
"show": () => Promise<void>;
|
|
387
|
+
/**
|
|
388
|
+
* The summary to show in the details header. If you need to display HTML, use the `summary` slot instead.
|
|
389
|
+
*/
|
|
390
|
+
"summary": string;
|
|
391
|
+
/**
|
|
392
|
+
* The summary icon to show in the details header. If you need to display HTML, use the `summary-icon` slot instead.
|
|
393
|
+
*/
|
|
394
|
+
"summaryIcon": string;
|
|
395
|
+
/**
|
|
396
|
+
* The icon's size.
|
|
397
|
+
*/
|
|
398
|
+
"summaryIconSize": | 'inherit'
|
|
399
|
+
| 'xSmall'
|
|
400
|
+
| 'small'
|
|
401
|
+
| 'medium'
|
|
402
|
+
| 'large'
|
|
403
|
+
| 'xLarge'
|
|
404
|
+
| 'xxLarge'
|
|
405
|
+
| 'xxxLarge';
|
|
406
|
+
}
|
|
407
|
+
interface SixDialog {
|
|
408
|
+
/**
|
|
409
|
+
* Hides the dialog
|
|
410
|
+
*/
|
|
411
|
+
"hide": () => Promise<void>;
|
|
412
|
+
/**
|
|
413
|
+
* The dialog's label as displayed in the header. You should always include a relevant label even when using `no-header`, as it is required for proper accessibility.
|
|
414
|
+
*/
|
|
415
|
+
"label": string;
|
|
416
|
+
/**
|
|
417
|
+
* Set to true to disable the header. This will also remove the default close button, so please ensure you provide an easy, accessible way for users to dismiss the dialog.
|
|
418
|
+
*/
|
|
419
|
+
"noHeader": boolean;
|
|
420
|
+
/**
|
|
421
|
+
* Indicates whether or not the dialog is open. You can use this in lieu of the show/hide methods.
|
|
422
|
+
*/
|
|
423
|
+
"open": boolean;
|
|
424
|
+
/**
|
|
425
|
+
* Shows the dialog
|
|
426
|
+
*/
|
|
427
|
+
"show": () => Promise<void>;
|
|
428
|
+
}
|
|
429
|
+
interface SixDrawer {
|
|
430
|
+
/**
|
|
431
|
+
* By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of its parent element, set this prop and add `position: relative` to the parent.
|
|
432
|
+
*/
|
|
433
|
+
"contained": boolean;
|
|
434
|
+
/**
|
|
435
|
+
* Hides the drawer
|
|
436
|
+
*/
|
|
437
|
+
"hide": () => Promise<void>;
|
|
438
|
+
/**
|
|
439
|
+
* The drawer's label as displayed in the header. You should always include a relevant label even when using `no-header`, as it is required for proper accessibility.
|
|
440
|
+
*/
|
|
441
|
+
"label": string;
|
|
442
|
+
/**
|
|
443
|
+
* Removes the header. This will also remove the default close button, so please ensure you provide an easy, accessible way for users to dismiss the drawer.
|
|
444
|
+
*/
|
|
445
|
+
"noHeader": boolean;
|
|
446
|
+
/**
|
|
447
|
+
* Indicates whether or not the drawer is open. You can use this in lieu of the show/hide methods.
|
|
448
|
+
*/
|
|
449
|
+
"open": boolean;
|
|
450
|
+
/**
|
|
451
|
+
* The direction from which the drawer will open.
|
|
452
|
+
*/
|
|
453
|
+
"placement": 'top' | 'right' | 'bottom' | 'left';
|
|
454
|
+
/**
|
|
455
|
+
* Shows the drawer
|
|
456
|
+
*/
|
|
457
|
+
"show": () => Promise<void>;
|
|
458
|
+
}
|
|
459
|
+
interface SixDropdown {
|
|
460
|
+
/**
|
|
461
|
+
* Set to true to allow async filtering. When you enter something in the search field the component will only emit an event but not filter any elements itself. You can then simply listen to the 'six-async-filter-fired' event to manage the shown menu-items yourself
|
|
462
|
+
*/
|
|
463
|
+
"asyncFilter": boolean;
|
|
464
|
+
/**
|
|
465
|
+
* By default the search field will be focused when opening a dropdown with filtering enabled.
|
|
466
|
+
*/
|
|
467
|
+
"autofocusFilter": boolean;
|
|
468
|
+
/**
|
|
469
|
+
* Determines whether the dropdown should hide when a menu item is selected.
|
|
470
|
+
*/
|
|
471
|
+
"closeOnSelect": boolean;
|
|
472
|
+
/**
|
|
473
|
+
* The dropdown will close when the user interacts outside of this element (e.g. clicking).
|
|
474
|
+
*/
|
|
475
|
+
"containingElement": HTMLElement;
|
|
476
|
+
/**
|
|
477
|
+
* The panel can be opend/closed by pressing the spacebar or the enter key. In some cases you might want to avoid this
|
|
478
|
+
*/
|
|
479
|
+
"disableHideOnEnterAndSpace": boolean;
|
|
480
|
+
/**
|
|
481
|
+
* The distance in pixels from which to offset the panel away from its trigger.
|
|
482
|
+
*/
|
|
483
|
+
"distance": number;
|
|
484
|
+
/**
|
|
485
|
+
* Set to true to allow auto filtering for entries in the dropdown. With this flag the dropdown will automatically filter itsel. If you need to coordinate the shown elements yourself, e.g. because you need to call an endpoint use asyncFilter instead
|
|
486
|
+
*/
|
|
487
|
+
"filter": boolean;
|
|
488
|
+
/**
|
|
489
|
+
* The debounce for the filter callbacks.
|
|
490
|
+
*/
|
|
491
|
+
"filterDebounce": number;
|
|
492
|
+
/**
|
|
493
|
+
* The filter's placeholder text.
|
|
494
|
+
*/
|
|
495
|
+
"filterPlaceholder": string;
|
|
496
|
+
/**
|
|
497
|
+
* Hides the dropdown panel
|
|
498
|
+
*/
|
|
499
|
+
"hide": () => Promise<void>;
|
|
500
|
+
/**
|
|
501
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
502
|
+
*/
|
|
503
|
+
"hoist": boolean;
|
|
504
|
+
/**
|
|
505
|
+
* Indicates whether or not the dropdown is open. You can use this in lieu of the show/hide methods.
|
|
506
|
+
*/
|
|
507
|
+
"open": boolean;
|
|
508
|
+
/**
|
|
509
|
+
* Set the options to be shown in the dropdown (alternative to setting the elements via html)
|
|
510
|
+
*/
|
|
511
|
+
"options": SixMenuItemData[] | null;
|
|
512
|
+
/**
|
|
513
|
+
* The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel inside of the viewport.
|
|
514
|
+
*/
|
|
515
|
+
"placement": | 'top'
|
|
516
|
+
| 'top-start'
|
|
517
|
+
| 'top-end'
|
|
518
|
+
| 'bottom'
|
|
519
|
+
| 'bottom-start'
|
|
520
|
+
| 'bottom-end'
|
|
521
|
+
| 'right'
|
|
522
|
+
| 'right-start'
|
|
523
|
+
| 'right-end'
|
|
524
|
+
| 'left'
|
|
525
|
+
| 'left-start'
|
|
526
|
+
| 'left-end';
|
|
527
|
+
/**
|
|
528
|
+
* Instructs the dropdown menu to reposition. Useful when the position or size of the trigger changes when the menu is activated.
|
|
529
|
+
*/
|
|
530
|
+
"reposition": () => Promise<void>;
|
|
531
|
+
/**
|
|
532
|
+
* Shows the dropdown panel
|
|
533
|
+
*/
|
|
534
|
+
"show": () => Promise<void>;
|
|
535
|
+
/**
|
|
536
|
+
* The distance in pixels from which to offset the panel along its trigger.
|
|
537
|
+
*/
|
|
538
|
+
"skidding": number;
|
|
539
|
+
/**
|
|
540
|
+
* Defines whether the menu list will be rendered virtually i.e. only the elements actually shown (and a couple around) are actually rendered in the DOM. If you use virtual scrolling pass the elements via prop instead of via slot.
|
|
541
|
+
*/
|
|
542
|
+
"virtualScroll": boolean;
|
|
543
|
+
}
|
|
544
|
+
interface SixErrorPage {
|
|
545
|
+
/**
|
|
546
|
+
* Defines a custom description.
|
|
547
|
+
*/
|
|
548
|
+
"customDescription"?: string[];
|
|
549
|
+
/**
|
|
550
|
+
* Defines a custom icon.
|
|
551
|
+
*/
|
|
552
|
+
"customIcon"?: string;
|
|
553
|
+
/**
|
|
554
|
+
* Defines a custom title.
|
|
555
|
+
*/
|
|
556
|
+
"customTitle"?: string;
|
|
557
|
+
/**
|
|
558
|
+
* Defines error Code and thus displays the proper error page.
|
|
559
|
+
*/
|
|
560
|
+
"errorCode": number;
|
|
561
|
+
/**
|
|
562
|
+
* Defines language and thus displays the proper error page in the selected language.
|
|
563
|
+
*/
|
|
564
|
+
"language": 'en' | 'de';
|
|
565
|
+
}
|
|
566
|
+
interface SixFileList {
|
|
567
|
+
}
|
|
568
|
+
interface SixFileListItem {
|
|
569
|
+
/**
|
|
570
|
+
* The date when the file was uploaded
|
|
571
|
+
*/
|
|
572
|
+
"date": string;
|
|
573
|
+
/**
|
|
574
|
+
* An id to clearly identify the file
|
|
575
|
+
*/
|
|
576
|
+
"identifier": string;
|
|
577
|
+
/**
|
|
578
|
+
* The filename
|
|
579
|
+
*/
|
|
580
|
+
"name": string;
|
|
581
|
+
/**
|
|
582
|
+
* Set to true if you don't want to allow to delete this file
|
|
583
|
+
*/
|
|
584
|
+
"nodelete": boolean;
|
|
585
|
+
/**
|
|
586
|
+
* Set to true if you don't want to allow to download this file
|
|
587
|
+
*/
|
|
588
|
+
"nodownload": boolean;
|
|
589
|
+
/**
|
|
590
|
+
* The file size. This number will be divided by 1024 to show the filesize in KB
|
|
591
|
+
*/
|
|
592
|
+
"size": number;
|
|
593
|
+
}
|
|
594
|
+
interface SixFileUpload {
|
|
595
|
+
/**
|
|
596
|
+
* Accepted MIME-Types.
|
|
597
|
+
*/
|
|
598
|
+
"accept": string;
|
|
599
|
+
/**
|
|
600
|
+
* Set to true if file control should be small.
|
|
601
|
+
*/
|
|
602
|
+
"compact": boolean;
|
|
603
|
+
/**
|
|
604
|
+
* Set when button is disabled.
|
|
605
|
+
*/
|
|
606
|
+
"disabled": boolean;
|
|
607
|
+
/**
|
|
608
|
+
* Label of the drop area.
|
|
609
|
+
*/
|
|
610
|
+
"label": string;
|
|
611
|
+
/**
|
|
612
|
+
* Allowed max file size in bytes.
|
|
613
|
+
*/
|
|
614
|
+
"maxFileSize": number | undefined;
|
|
615
|
+
}
|
|
616
|
+
interface SixFooter {
|
|
617
|
+
}
|
|
618
|
+
interface SixForm {
|
|
619
|
+
/**
|
|
620
|
+
* Checks for validity.
|
|
621
|
+
*/
|
|
622
|
+
"checkValidity": () => Promise<boolean>;
|
|
623
|
+
/**
|
|
624
|
+
* Gets all form control elements (native and custom).
|
|
625
|
+
*/
|
|
626
|
+
"getFormControls": () => Promise<HTMLFormElement[]>;
|
|
627
|
+
/**
|
|
628
|
+
* Serializes all form controls elements and returns a `FormData` object.
|
|
629
|
+
*/
|
|
630
|
+
"getFormData": () => Promise<FormData>;
|
|
631
|
+
/**
|
|
632
|
+
* Prevent the form from validating inputs before submitting.
|
|
633
|
+
*/
|
|
634
|
+
"novalidate": boolean;
|
|
635
|
+
/**
|
|
636
|
+
* Resets the form and resets the value of all descendants
|
|
637
|
+
*/
|
|
638
|
+
"reset": () => Promise<void>;
|
|
639
|
+
/**
|
|
640
|
+
* Submits the form. If all controls are valid, the `six-form-submit` event will be emitted and the promise will resolve with `true`. If any form control is invalid, the promise will resolve with `false` and no event will be emitted.
|
|
641
|
+
*/
|
|
642
|
+
"submit": () => Promise<boolean>;
|
|
643
|
+
}
|
|
644
|
+
interface SixGroupLabel {
|
|
645
|
+
/**
|
|
646
|
+
* Set to true to disable the label.
|
|
647
|
+
*/
|
|
648
|
+
"disabled": boolean;
|
|
649
|
+
/**
|
|
650
|
+
* The wrapper label's help text. Alternatively, you can use the help-text slot.
|
|
651
|
+
*/
|
|
652
|
+
"helpText": string;
|
|
653
|
+
/**
|
|
654
|
+
* The wrapper label's label. Alternatively, you can use the label slot.
|
|
655
|
+
*/
|
|
656
|
+
"label": string;
|
|
657
|
+
/**
|
|
658
|
+
* The label's required attribute.
|
|
659
|
+
*/
|
|
660
|
+
"required": boolean;
|
|
661
|
+
/**
|
|
662
|
+
* The label's size.
|
|
663
|
+
*/
|
|
664
|
+
"size": 'small' | 'medium' | 'large';
|
|
665
|
+
}
|
|
666
|
+
interface SixHeader {
|
|
667
|
+
/**
|
|
668
|
+
* Set whether the logo should be clickable
|
|
669
|
+
*/
|
|
670
|
+
"clickableLogo": boolean;
|
|
671
|
+
/**
|
|
672
|
+
* Get open state for search
|
|
673
|
+
*/
|
|
674
|
+
"getIsSearchOpen": () => Promise<boolean>;
|
|
675
|
+
/**
|
|
676
|
+
* Set the hamburger menu icon to open or closed state
|
|
677
|
+
*/
|
|
678
|
+
"openHamburgerMenu": boolean;
|
|
679
|
+
/**
|
|
680
|
+
* Set the header search to be in an open or closed state
|
|
681
|
+
*/
|
|
682
|
+
"openSearch": boolean;
|
|
683
|
+
/**
|
|
684
|
+
* Sets open state for search
|
|
685
|
+
*/
|
|
686
|
+
"setSearchOpenState": (openState: boolean) => Promise<void>;
|
|
687
|
+
/**
|
|
688
|
+
* Indicates if content should be shifted down when search field is visible.
|
|
689
|
+
*/
|
|
690
|
+
"shiftContent": boolean;
|
|
691
|
+
}
|
|
692
|
+
interface SixIcon {
|
|
693
|
+
/**
|
|
694
|
+
* If set to true the default material outlined icons are not used.
|
|
695
|
+
*/
|
|
696
|
+
"filled": boolean;
|
|
697
|
+
/**
|
|
698
|
+
* The icon's size.
|
|
699
|
+
*/
|
|
700
|
+
"size": | 'inherit'
|
|
701
|
+
| 'xSmall'
|
|
702
|
+
| 'small'
|
|
703
|
+
| 'medium'
|
|
704
|
+
| 'large'
|
|
705
|
+
| 'xLarge'
|
|
706
|
+
| 'xxLarge'
|
|
707
|
+
| 'xxxLarge';
|
|
708
|
+
}
|
|
709
|
+
interface SixIconButton {
|
|
710
|
+
/**
|
|
711
|
+
* Set to true to disable the button.
|
|
712
|
+
*/
|
|
713
|
+
"disabled": boolean;
|
|
714
|
+
/**
|
|
715
|
+
* HTML symbol code or entity.
|
|
716
|
+
*/
|
|
717
|
+
"html": string;
|
|
718
|
+
/**
|
|
719
|
+
* A description that gets read by screen readers and other assistive devices. For optimal accessibility, you should always include a label that describes what the icon button does.
|
|
720
|
+
*/
|
|
721
|
+
"label": string;
|
|
722
|
+
/**
|
|
723
|
+
* The name of the icon to draw.
|
|
724
|
+
*/
|
|
725
|
+
"name": string;
|
|
726
|
+
/**
|
|
727
|
+
* The icon's size.
|
|
728
|
+
*/
|
|
729
|
+
"size": 'xSmall' | 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge' | 'xxxLarge';
|
|
730
|
+
}
|
|
731
|
+
interface SixInput {
|
|
732
|
+
/**
|
|
733
|
+
* The input's autocaptialize attribute.
|
|
734
|
+
*/
|
|
735
|
+
"autocapitalize": string;
|
|
736
|
+
/**
|
|
737
|
+
* The input's autocomplete attribute.
|
|
738
|
+
*/
|
|
739
|
+
"autocomplete": string;
|
|
740
|
+
/**
|
|
741
|
+
* The input's autocorrect attribute.
|
|
742
|
+
*/
|
|
743
|
+
"autocorrect": string;
|
|
744
|
+
/**
|
|
745
|
+
* The input's autofocus attribute.
|
|
746
|
+
*/
|
|
747
|
+
"autofocus": boolean;
|
|
748
|
+
/**
|
|
749
|
+
* Checks for validity.
|
|
750
|
+
*/
|
|
751
|
+
"checkValidity": () => Promise<boolean>;
|
|
752
|
+
/**
|
|
753
|
+
* Set to true to add a clear button when the input is populated.
|
|
754
|
+
*/
|
|
755
|
+
"clearable": boolean;
|
|
756
|
+
/**
|
|
757
|
+
* Set to true to disable the input.
|
|
758
|
+
*/
|
|
759
|
+
"disabled": boolean;
|
|
760
|
+
/**
|
|
761
|
+
* Set to display the error text on blur and not when typing
|
|
762
|
+
*/
|
|
763
|
+
"errorOnBlur": boolean;
|
|
764
|
+
/**
|
|
765
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
766
|
+
*/
|
|
767
|
+
"errorText": string;
|
|
768
|
+
/**
|
|
769
|
+
* Returns the native input's validationMessage
|
|
770
|
+
*/
|
|
771
|
+
"getValidationMessage": () => Promise<string>;
|
|
772
|
+
/**
|
|
773
|
+
* Returns the native input's validity
|
|
774
|
+
*/
|
|
775
|
+
"getValidity": () => Promise<ValidityState>;
|
|
776
|
+
/**
|
|
777
|
+
* The input's help text. Alternatively, you can use the help-text slot.
|
|
778
|
+
*/
|
|
779
|
+
"helpText": string;
|
|
780
|
+
/**
|
|
781
|
+
* The input's inputmode attribute.
|
|
782
|
+
*/
|
|
783
|
+
"inputmode": 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
|
|
784
|
+
/**
|
|
785
|
+
* This will be true when the control is in an invalid state. Validity is determined by props such as `type`, `required`, `minlength`, `maxlength`, and `pattern` using the browser's constraint validation API.
|
|
786
|
+
*/
|
|
787
|
+
"invalid": boolean;
|
|
788
|
+
/**
|
|
789
|
+
* Returns the native input's validity
|
|
790
|
+
*/
|
|
791
|
+
"isValid": () => Promise<boolean>;
|
|
792
|
+
/**
|
|
793
|
+
* The input's label. Alternatively, you can use the label slot.
|
|
794
|
+
*/
|
|
795
|
+
"label": string;
|
|
796
|
+
/**
|
|
797
|
+
* Set to render as line
|
|
798
|
+
*/
|
|
799
|
+
"line": boolean;
|
|
800
|
+
/**
|
|
801
|
+
* The input's maximum value.
|
|
802
|
+
*/
|
|
803
|
+
"max": number;
|
|
804
|
+
/**
|
|
805
|
+
* The maximum length of input that will be considered valid.
|
|
806
|
+
*/
|
|
807
|
+
"maxlength": number;
|
|
808
|
+
/**
|
|
809
|
+
* The input's minimum value.
|
|
810
|
+
*/
|
|
811
|
+
"min": number;
|
|
812
|
+
/**
|
|
813
|
+
* The minimum length of input that will be considered valid.
|
|
814
|
+
*/
|
|
815
|
+
"minlength": number;
|
|
816
|
+
/**
|
|
817
|
+
* The input's name attribute.
|
|
818
|
+
*/
|
|
819
|
+
"name": string;
|
|
820
|
+
/**
|
|
821
|
+
* A pattern to validate input against.
|
|
822
|
+
*/
|
|
823
|
+
"pattern": string;
|
|
824
|
+
/**
|
|
825
|
+
* Set to true to draw a pill-style input with rounded edges.
|
|
826
|
+
*/
|
|
827
|
+
"pill": boolean;
|
|
828
|
+
/**
|
|
829
|
+
* The input's placeholder text.
|
|
830
|
+
*/
|
|
831
|
+
"placeholder": string;
|
|
832
|
+
/**
|
|
833
|
+
* Set to true to make the input readonly.
|
|
834
|
+
*/
|
|
835
|
+
"readonly": boolean;
|
|
836
|
+
/**
|
|
837
|
+
* Removes focus from the input.
|
|
838
|
+
*/
|
|
839
|
+
"removeFocus": () => Promise<void>;
|
|
840
|
+
/**
|
|
841
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
842
|
+
*/
|
|
843
|
+
"reportValidity": () => Promise<boolean>;
|
|
844
|
+
/**
|
|
845
|
+
* Set to true to make the input a required field.
|
|
846
|
+
*/
|
|
847
|
+
"required": boolean;
|
|
848
|
+
/**
|
|
849
|
+
* Resets the formcontrol
|
|
850
|
+
*/
|
|
851
|
+
"reset": () => Promise<void>;
|
|
852
|
+
/**
|
|
853
|
+
* Selects all the text in the input.
|
|
854
|
+
*/
|
|
855
|
+
"select": () => Promise<void>;
|
|
856
|
+
/**
|
|
857
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
858
|
+
*/
|
|
859
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
860
|
+
/**
|
|
861
|
+
* Sets focus on the input.
|
|
862
|
+
*/
|
|
863
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
864
|
+
/**
|
|
865
|
+
* Replaces a range of text with a new string.
|
|
866
|
+
*/
|
|
867
|
+
"setRangeText": (replacement: string, start: number, end: number, selectMode?: 'select' | 'start' | 'end' | 'preserve') => Promise<void>;
|
|
868
|
+
/**
|
|
869
|
+
* Sets the start and end positions of the text selection (0-based).
|
|
870
|
+
*/
|
|
871
|
+
"setSelectionRange": (selectionStart: number, selectionEnd: number, selectionDirection?: 'forward' | 'backward' | 'none') => Promise<void>;
|
|
872
|
+
/**
|
|
873
|
+
* The input's size.
|
|
874
|
+
*/
|
|
875
|
+
"size": 'small' | 'medium' | 'large';
|
|
876
|
+
/**
|
|
877
|
+
* Enables spell checking on the input.
|
|
878
|
+
*/
|
|
879
|
+
"spellcheck": boolean;
|
|
880
|
+
/**
|
|
881
|
+
* The input's step attribute.
|
|
882
|
+
*/
|
|
883
|
+
"step": number;
|
|
884
|
+
/**
|
|
885
|
+
* Set to true to add a password toggle button for password inputs.
|
|
886
|
+
*/
|
|
887
|
+
"togglePassword": boolean;
|
|
888
|
+
/**
|
|
889
|
+
* The input's type.
|
|
890
|
+
*/
|
|
891
|
+
"type": 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url';
|
|
892
|
+
/**
|
|
893
|
+
* The input's value attribute.
|
|
894
|
+
*/
|
|
895
|
+
"value": string;
|
|
896
|
+
}
|
|
897
|
+
interface SixItemPicker {
|
|
898
|
+
/**
|
|
899
|
+
* Set the amount of time, in milliseconds, to wait to trigger the `six-item-picker-change-debounced` event. If you want your change debounce event to not trigger when keeping the nav button pressed before, make sure debounce is a bit bigger than timeout, otherwise keeping the button pressed will trigger the event twice: once you click (and keep pressed) and once you release
|
|
900
|
+
*/
|
|
901
|
+
"debounce": number;
|
|
902
|
+
/**
|
|
903
|
+
* Set the amount of time, in milliseconds, to wait between switching to next item when mouse button is held pressed.
|
|
904
|
+
*/
|
|
905
|
+
"interval": number;
|
|
906
|
+
/**
|
|
907
|
+
* Defines a custom list of items you can iterate through
|
|
908
|
+
*/
|
|
909
|
+
"items": string[];
|
|
910
|
+
/**
|
|
911
|
+
* The maximum value allowed to pick.
|
|
912
|
+
*/
|
|
913
|
+
"max": number | string;
|
|
914
|
+
/**
|
|
915
|
+
* The minimum value allowed to pick.
|
|
916
|
+
*/
|
|
917
|
+
"min": number | string;
|
|
918
|
+
/**
|
|
919
|
+
* Defines whether the items should be padded
|
|
920
|
+
*/
|
|
921
|
+
"padded": boolean;
|
|
922
|
+
/**
|
|
923
|
+
* Defines the character used for padding
|
|
924
|
+
*/
|
|
925
|
+
"paddingChar": string;
|
|
926
|
+
/**
|
|
927
|
+
* Defines whether the padding should be before or after the value. You can either use 'before' or 'after'. By default before is selected
|
|
928
|
+
*/
|
|
929
|
+
"paddingDirection": ItemPickerPaddingDirection;
|
|
930
|
+
/**
|
|
931
|
+
* Defines the length of the padded area
|
|
932
|
+
*/
|
|
933
|
+
"paddingLength": number;
|
|
934
|
+
/**
|
|
935
|
+
* Define whether the picker should to a roundtrip i.e. start at max when reaching min and vice versa.
|
|
936
|
+
*/
|
|
937
|
+
"roundtrip": boolean;
|
|
938
|
+
/**
|
|
939
|
+
* Defines how many steps should be taken when navigating
|
|
940
|
+
*/
|
|
941
|
+
"step": number;
|
|
942
|
+
/**
|
|
943
|
+
* Set the amount of time, in milliseconds, to wait to trigger faster switching between items.
|
|
944
|
+
*/
|
|
945
|
+
"timeout": number;
|
|
946
|
+
/**
|
|
947
|
+
* The type of items you want to rotate through.
|
|
948
|
+
*/
|
|
949
|
+
"type": ItemPickerType;
|
|
950
|
+
/**
|
|
951
|
+
* The item picker's value attribute.
|
|
952
|
+
*/
|
|
953
|
+
"value": number | string;
|
|
954
|
+
}
|
|
955
|
+
interface SixLanguageSwitcher {
|
|
956
|
+
/**
|
|
957
|
+
* The languages which should be selectable options.
|
|
958
|
+
*/
|
|
959
|
+
"languages": string[] | SixLanguageSwitcherInput[];
|
|
960
|
+
/**
|
|
961
|
+
* The language which should be shown as selected
|
|
962
|
+
*/
|
|
963
|
+
"selected"?: string;
|
|
964
|
+
}
|
|
965
|
+
interface SixLayoutGrid {
|
|
966
|
+
/**
|
|
967
|
+
* Set the number of grid columns
|
|
968
|
+
*/
|
|
969
|
+
"columns": any;
|
|
970
|
+
}
|
|
971
|
+
interface SixMainContainer {
|
|
972
|
+
/**
|
|
973
|
+
* Set to false to remove top and bottom padding.
|
|
974
|
+
*/
|
|
975
|
+
"padded": boolean;
|
|
976
|
+
}
|
|
977
|
+
interface SixMenu {
|
|
978
|
+
/**
|
|
979
|
+
* Used for virtual scrolling Define how many items should be rendered in the DOM when using virtual scrolling
|
|
980
|
+
*/
|
|
981
|
+
"itemSize": number;
|
|
982
|
+
/**
|
|
983
|
+
* Set the options to be shown in the dropdown
|
|
984
|
+
*/
|
|
985
|
+
"items": SixMenuItemData[] | null;
|
|
986
|
+
/**
|
|
987
|
+
* Defines how many items should be shown. If the number of items is larger than this properties a scrollbar will be shown
|
|
988
|
+
*/
|
|
989
|
+
"itemsShown"?: number;
|
|
990
|
+
/**
|
|
991
|
+
* Set to true to remove the box-shadow
|
|
992
|
+
*/
|
|
993
|
+
"removeBoxShadow": boolean;
|
|
994
|
+
/**
|
|
995
|
+
* Used for virtual scrolling Define the debounce for listening on scrolling changes in milliseconds. The lower the number the more sensitive the component reacts to scrolling changes.
|
|
996
|
+
*/
|
|
997
|
+
"scrollingDebounce": number;
|
|
998
|
+
/**
|
|
999
|
+
* Initiates type-to-select logic, which automatically selects an option based on what the user is currently typing. The key passed will be appended to the internal query and the selection will be updated. After a brief period, the internal query is cleared automatically. This method is intended to be used with the keydown event. Useful for enabling type-to-select when the menu doesn't have focus.
|
|
1000
|
+
*/
|
|
1001
|
+
"typeToSelect": (key: string) => Promise<void>;
|
|
1002
|
+
/**
|
|
1003
|
+
* Defines whether the menu list will be rendered virtually i.e. only the elements actually shown (and a couple around) are actually rendered in the DOM. If you use virtual scrolling pass the elements via prop instead of via slot.
|
|
1004
|
+
*/
|
|
1005
|
+
"virtualScroll": boolean;
|
|
1006
|
+
}
|
|
1007
|
+
interface SixMenuDivider {
|
|
1008
|
+
}
|
|
1009
|
+
interface SixMenuItem {
|
|
1010
|
+
/**
|
|
1011
|
+
* Set to true to draw the item in a checked state.
|
|
1012
|
+
*/
|
|
1013
|
+
"checked": boolean;
|
|
1014
|
+
/**
|
|
1015
|
+
* Set to true to draw the menu item in a disabled state.
|
|
1016
|
+
*/
|
|
1017
|
+
"disabled": boolean;
|
|
1018
|
+
/**
|
|
1019
|
+
* Removes focus from the button.
|
|
1020
|
+
*/
|
|
1021
|
+
"removeFocus": () => Promise<void>;
|
|
1022
|
+
/**
|
|
1023
|
+
* Sets focus on the button.
|
|
1024
|
+
*/
|
|
1025
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
1026
|
+
/**
|
|
1027
|
+
* A unique value to store in the menu item. This can be used as a way to identify menu items when selected.
|
|
1028
|
+
*/
|
|
1029
|
+
"value": string;
|
|
1030
|
+
}
|
|
1031
|
+
interface SixMenuLabel {
|
|
1032
|
+
}
|
|
1033
|
+
interface SixPicto {
|
|
1034
|
+
/**
|
|
1035
|
+
* Defines the size of the icon.
|
|
1036
|
+
*/
|
|
1037
|
+
"size": 'xSmall' | 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge' | 'xxxLarge' | '4xl';
|
|
1038
|
+
}
|
|
1039
|
+
interface SixProgressBar {
|
|
1040
|
+
/**
|
|
1041
|
+
* When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
|
|
1042
|
+
*/
|
|
1043
|
+
"indeterminate": boolean;
|
|
1044
|
+
/**
|
|
1045
|
+
* The progress bar's percentage, 0 to 100.
|
|
1046
|
+
*/
|
|
1047
|
+
"percentage": number;
|
|
1048
|
+
}
|
|
1049
|
+
interface SixProgressRing {
|
|
1050
|
+
/**
|
|
1051
|
+
* The current progress percentage, 0 - 100.
|
|
1052
|
+
*/
|
|
1053
|
+
"percentage": number;
|
|
1054
|
+
/**
|
|
1055
|
+
* The size of the progress ring in pixels.
|
|
1056
|
+
*/
|
|
1057
|
+
"size": number;
|
|
1058
|
+
/**
|
|
1059
|
+
* The stroke width of the progress ring in pixels.
|
|
1060
|
+
*/
|
|
1061
|
+
"strokeWidth": number;
|
|
1062
|
+
}
|
|
1063
|
+
interface SixRadio {
|
|
1064
|
+
/**
|
|
1065
|
+
* Checks for validity.
|
|
1066
|
+
*/
|
|
1067
|
+
"checkValidity": () => Promise<boolean>;
|
|
1068
|
+
/**
|
|
1069
|
+
* Set to true to draw the radio in a checked state.
|
|
1070
|
+
*/
|
|
1071
|
+
"checked": boolean;
|
|
1072
|
+
/**
|
|
1073
|
+
* Set to true to disable the radio.
|
|
1074
|
+
*/
|
|
1075
|
+
"disabled": boolean;
|
|
1076
|
+
/**
|
|
1077
|
+
* This will be true when the control is in an invalid state. Validity in range inputs is determined by the message provided by the `setCustomValidity` method.
|
|
1078
|
+
*/
|
|
1079
|
+
"invalid": boolean;
|
|
1080
|
+
/**
|
|
1081
|
+
* The radio's name attribute.
|
|
1082
|
+
*/
|
|
1083
|
+
"name": string;
|
|
1084
|
+
/**
|
|
1085
|
+
* Removes focus from the radio.
|
|
1086
|
+
*/
|
|
1087
|
+
"removeFocus": () => Promise<void>;
|
|
1088
|
+
/**
|
|
1089
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
1090
|
+
*/
|
|
1091
|
+
"reportValidity": () => Promise<boolean>;
|
|
1092
|
+
/**
|
|
1093
|
+
* Resets the formcontrol
|
|
1094
|
+
*/
|
|
1095
|
+
"reset": () => Promise<void>;
|
|
1096
|
+
/**
|
|
1097
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
1098
|
+
*/
|
|
1099
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
1100
|
+
/**
|
|
1101
|
+
* Sets focus on the radio.
|
|
1102
|
+
*/
|
|
1103
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
1104
|
+
/**
|
|
1105
|
+
* The radio's value attribute.
|
|
1106
|
+
*/
|
|
1107
|
+
"value": string;
|
|
1108
|
+
}
|
|
1109
|
+
interface SixRange {
|
|
1110
|
+
/**
|
|
1111
|
+
* Set to true to disable the input.
|
|
1112
|
+
*/
|
|
1113
|
+
"disabled": boolean;
|
|
1114
|
+
/**
|
|
1115
|
+
* Set to display the error text on blur and not when typing
|
|
1116
|
+
*/
|
|
1117
|
+
"errorOnBlur": boolean;
|
|
1118
|
+
/**
|
|
1119
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
1120
|
+
*/
|
|
1121
|
+
"errorText": string;
|
|
1122
|
+
/**
|
|
1123
|
+
* The range's help text. Alternatively, you can use the help-text slot.
|
|
1124
|
+
*/
|
|
1125
|
+
"helpText": string;
|
|
1126
|
+
/**
|
|
1127
|
+
* This will be true when the control is in an invalid state. Validity in range inputs is determined by the message provided by the `setCustomValidity` method.
|
|
1128
|
+
*/
|
|
1129
|
+
"invalid": boolean;
|
|
1130
|
+
/**
|
|
1131
|
+
* The range's label. Alternatively, you can use the label slot.
|
|
1132
|
+
*/
|
|
1133
|
+
"label": string;
|
|
1134
|
+
/**
|
|
1135
|
+
* The input's max attribute.
|
|
1136
|
+
*/
|
|
1137
|
+
"max": number;
|
|
1138
|
+
/**
|
|
1139
|
+
* The input's min attribute.
|
|
1140
|
+
*/
|
|
1141
|
+
"min": number;
|
|
1142
|
+
/**
|
|
1143
|
+
* The input's name attribute.
|
|
1144
|
+
*/
|
|
1145
|
+
"name": string;
|
|
1146
|
+
/**
|
|
1147
|
+
* Removes focus from the input.
|
|
1148
|
+
*/
|
|
1149
|
+
"removeFocus": () => Promise<void>;
|
|
1150
|
+
/**
|
|
1151
|
+
* Set to true to make the input a required field.
|
|
1152
|
+
*/
|
|
1153
|
+
"required": boolean;
|
|
1154
|
+
/**
|
|
1155
|
+
* Resets the formcontrol
|
|
1156
|
+
*/
|
|
1157
|
+
"reset": () => Promise<void>;
|
|
1158
|
+
/**
|
|
1159
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
1160
|
+
*/
|
|
1161
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
1162
|
+
/**
|
|
1163
|
+
* Sets focus on the input.
|
|
1164
|
+
*/
|
|
1165
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
1166
|
+
/**
|
|
1167
|
+
* The input's step attribute.
|
|
1168
|
+
*/
|
|
1169
|
+
"step": number;
|
|
1170
|
+
/**
|
|
1171
|
+
* The preferred placedment of the tooltip.
|
|
1172
|
+
*/
|
|
1173
|
+
"tooltip": 'top' | 'bottom' | 'none';
|
|
1174
|
+
/**
|
|
1175
|
+
* A function used to format the tooltip's value.
|
|
1176
|
+
*/
|
|
1177
|
+
"tooltipFormatter": (value: number) => string;
|
|
1178
|
+
/**
|
|
1179
|
+
* The input's value attribute.
|
|
1180
|
+
*/
|
|
1181
|
+
"value": number;
|
|
1182
|
+
}
|
|
1183
|
+
interface SixRoot {
|
|
1184
|
+
/**
|
|
1185
|
+
* Breakpoint for smaller screens when the right sidebar is collapsed by default.
|
|
1186
|
+
*/
|
|
1187
|
+
"breakpoint": number;
|
|
1188
|
+
/**
|
|
1189
|
+
* Defines whether the content section should be padded
|
|
1190
|
+
*/
|
|
1191
|
+
"padded": boolean;
|
|
1192
|
+
/**
|
|
1193
|
+
* Defines the stage of the application
|
|
1194
|
+
*/
|
|
1195
|
+
"stage": StageType;
|
|
1196
|
+
/**
|
|
1197
|
+
* Defines the version of the application
|
|
1198
|
+
*/
|
|
1199
|
+
"version": string;
|
|
1200
|
+
}
|
|
1201
|
+
interface SixSearchField {
|
|
1202
|
+
/**
|
|
1203
|
+
* Set to true to add a clear button when the input is populated.
|
|
1204
|
+
*/
|
|
1205
|
+
"clearable": boolean;
|
|
1206
|
+
/**
|
|
1207
|
+
* Debounce time in milliseconds, default is 300 ms
|
|
1208
|
+
*/
|
|
1209
|
+
"debounce": number;
|
|
1210
|
+
/**
|
|
1211
|
+
* Set to true to disable the input.
|
|
1212
|
+
*/
|
|
1213
|
+
"disabled": boolean;
|
|
1214
|
+
/**
|
|
1215
|
+
* The input's placeholder text.
|
|
1216
|
+
*/
|
|
1217
|
+
"placeholder": string;
|
|
1218
|
+
/**
|
|
1219
|
+
* The input's value attribute.
|
|
1220
|
+
*/
|
|
1221
|
+
"value": string;
|
|
1222
|
+
}
|
|
1223
|
+
interface SixSelect {
|
|
1224
|
+
/**
|
|
1225
|
+
* Set to true to allow async filtering. When you enter something in the search field the component will only emit an event but not filter any elements itself. You can then simply listen to the 'six-async-filter-fired' event to manage the shown menu-items yourself
|
|
1226
|
+
*/
|
|
1227
|
+
"asyncFilter": boolean;
|
|
1228
|
+
/**
|
|
1229
|
+
* Set to true to turn the six-select into an autocomplete.
|
|
1230
|
+
*/
|
|
1231
|
+
"autocomplete": boolean;
|
|
1232
|
+
/**
|
|
1233
|
+
* Checks for validity.
|
|
1234
|
+
*/
|
|
1235
|
+
"checkValidity": () => Promise<boolean>;
|
|
1236
|
+
/**
|
|
1237
|
+
* Set to true to add a clear button when the select is populated.
|
|
1238
|
+
*/
|
|
1239
|
+
"clearable": boolean;
|
|
1240
|
+
/**
|
|
1241
|
+
* The default value the select will be reverted to when reset is executed
|
|
1242
|
+
*/
|
|
1243
|
+
"defaultValue": string | string[];
|
|
1244
|
+
/**
|
|
1245
|
+
* Set to true to disable the select control.
|
|
1246
|
+
*/
|
|
1247
|
+
"disabled": boolean;
|
|
1248
|
+
/**
|
|
1249
|
+
* Set to display the error text on blur and not when typing
|
|
1250
|
+
*/
|
|
1251
|
+
"errorOnBlur": boolean;
|
|
1252
|
+
/**
|
|
1253
|
+
* The select's error text. Alternatively, you can use the error-text slot.
|
|
1254
|
+
*/
|
|
1255
|
+
"errorText": string;
|
|
1256
|
+
/**
|
|
1257
|
+
* Set to true to allow filtering for entries in the dropdown
|
|
1258
|
+
*/
|
|
1259
|
+
"filter": boolean;
|
|
1260
|
+
/**
|
|
1261
|
+
* The debounce for the filter callbacks.
|
|
1262
|
+
*/
|
|
1263
|
+
"filterDebounce": number;
|
|
1264
|
+
/**
|
|
1265
|
+
* The filter's placeholder text.
|
|
1266
|
+
*/
|
|
1267
|
+
"filterPlaceholder": string;
|
|
1268
|
+
/**
|
|
1269
|
+
* The select's help text. Alternatively, you can use the help-text slot.
|
|
1270
|
+
*/
|
|
1271
|
+
"helpText": string;
|
|
1272
|
+
/**
|
|
1273
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
1274
|
+
*/
|
|
1275
|
+
"hoist": boolean;
|
|
1276
|
+
/**
|
|
1277
|
+
* The debounce for when the input changes for autocompletes should be emitted
|
|
1278
|
+
*/
|
|
1279
|
+
"inputDebounce": number;
|
|
1280
|
+
/**
|
|
1281
|
+
* This will be true when the control is in an invalid state. Validity is determined by the `required` prop.
|
|
1282
|
+
*/
|
|
1283
|
+
"invalid": boolean;
|
|
1284
|
+
/**
|
|
1285
|
+
* The select's label. Alternatively, you can use the label slot.
|
|
1286
|
+
*/
|
|
1287
|
+
"label": string;
|
|
1288
|
+
/**
|
|
1289
|
+
* Set to render as line
|
|
1290
|
+
*/
|
|
1291
|
+
"line": boolean;
|
|
1292
|
+
/**
|
|
1293
|
+
* The maximum number of tags to show when `multiple` is true. After the maximum, "+n" will be shown to indicate the number of additional items that are selected. Set to -1 to remove the limit.
|
|
1294
|
+
*/
|
|
1295
|
+
"maxTagsVisible": number;
|
|
1296
|
+
/**
|
|
1297
|
+
* Set to true to enable multiselect.
|
|
1298
|
+
*/
|
|
1299
|
+
"multiple": boolean;
|
|
1300
|
+
/**
|
|
1301
|
+
* The select's name.
|
|
1302
|
+
*/
|
|
1303
|
+
"name": string;
|
|
1304
|
+
/**
|
|
1305
|
+
* Set the options to be shown in the dropdown (alternative to setting the elements via html)
|
|
1306
|
+
*/
|
|
1307
|
+
"options": SixMenuItemData[] | null;
|
|
1308
|
+
/**
|
|
1309
|
+
* Set to true to draw a pill-style select with rounded edges.
|
|
1310
|
+
*/
|
|
1311
|
+
"pill": boolean;
|
|
1312
|
+
/**
|
|
1313
|
+
* The select's placeholder text.
|
|
1314
|
+
*/
|
|
1315
|
+
"placeholder": string;
|
|
1316
|
+
/**
|
|
1317
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
1318
|
+
*/
|
|
1319
|
+
"reportValidity": () => Promise<boolean>;
|
|
1320
|
+
/**
|
|
1321
|
+
* The select's required attribute.
|
|
1322
|
+
*/
|
|
1323
|
+
"required": boolean;
|
|
1324
|
+
/**
|
|
1325
|
+
* Resets the formcontrol
|
|
1326
|
+
*/
|
|
1327
|
+
"reset": () => Promise<void>;
|
|
1328
|
+
/**
|
|
1329
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
1330
|
+
*/
|
|
1331
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
1332
|
+
/**
|
|
1333
|
+
* The select's size.
|
|
1334
|
+
*/
|
|
1335
|
+
"size": 'small' | 'medium' | 'large';
|
|
1336
|
+
/**
|
|
1337
|
+
* The value of the control. This will be a string or an array depending on `multiple`.
|
|
1338
|
+
*/
|
|
1339
|
+
"value": string | string[];
|
|
1340
|
+
/**
|
|
1341
|
+
* Defines whether the menu list will be rendered virtually i.e. only the elements actually shown (and a couple around) are actually rendered in the DOM. If you use virtual scrolling pass the elements via prop instead of via slot.
|
|
1342
|
+
*/
|
|
1343
|
+
"virtualScroll": boolean;
|
|
1344
|
+
}
|
|
1345
|
+
interface SixSidebar {
|
|
1346
|
+
/**
|
|
1347
|
+
* Hides the sidebar
|
|
1348
|
+
*/
|
|
1349
|
+
"hide": () => Promise<void>;
|
|
1350
|
+
/**
|
|
1351
|
+
* Indicates whether or not the sidebar is open. You can use this in lieu of the show/hide methods.
|
|
1352
|
+
*/
|
|
1353
|
+
"open": boolean;
|
|
1354
|
+
/**
|
|
1355
|
+
* Sidebar position
|
|
1356
|
+
*/
|
|
1357
|
+
"position": 'left' | 'right';
|
|
1358
|
+
/**
|
|
1359
|
+
* Allows to select a menu item programmatically by index
|
|
1360
|
+
*/
|
|
1361
|
+
"selectItemByIndex": (index: number) => Promise<void>;
|
|
1362
|
+
/**
|
|
1363
|
+
* Allows to select a menu item programmatically by name
|
|
1364
|
+
*/
|
|
1365
|
+
"selectItemByName": (value: string) => Promise<void>;
|
|
1366
|
+
/**
|
|
1367
|
+
* Shows the sidebar
|
|
1368
|
+
*/
|
|
1369
|
+
"show": () => Promise<void>;
|
|
1370
|
+
/**
|
|
1371
|
+
* Toggles whether the sidebar should be shown or hidden
|
|
1372
|
+
*/
|
|
1373
|
+
"toggle": () => Promise<void>;
|
|
1374
|
+
/**
|
|
1375
|
+
* Define whether sidebar is toggled meaning only one menu can be open at the same time
|
|
1376
|
+
*/
|
|
1377
|
+
"toggled": boolean;
|
|
1378
|
+
/**
|
|
1379
|
+
* Sidebar width
|
|
1380
|
+
*/
|
|
1381
|
+
"width": string;
|
|
1382
|
+
}
|
|
1383
|
+
interface SixSidebarItem {
|
|
1384
|
+
/**
|
|
1385
|
+
* Set to true to draw the sidebar item in a disabled state.
|
|
1386
|
+
*/
|
|
1387
|
+
"disabled": boolean;
|
|
1388
|
+
/**
|
|
1389
|
+
* Set to true to draw the item in a selected state.
|
|
1390
|
+
*/
|
|
1391
|
+
"selected": boolean;
|
|
1392
|
+
/**
|
|
1393
|
+
* A unique value to store in the sidebar item. This can be used as a way to identify sidebar items when selected.
|
|
1394
|
+
*/
|
|
1395
|
+
"value": string;
|
|
1396
|
+
}
|
|
1397
|
+
interface SixSidebarItemGroup {
|
|
1398
|
+
/**
|
|
1399
|
+
* Icon of the group
|
|
1400
|
+
*/
|
|
1401
|
+
"icon": string;
|
|
1402
|
+
/**
|
|
1403
|
+
* Title of item group
|
|
1404
|
+
*/
|
|
1405
|
+
"name": string;
|
|
1406
|
+
"open": boolean;
|
|
1407
|
+
/**
|
|
1408
|
+
* Custom summary icon name.
|
|
1409
|
+
*/
|
|
1410
|
+
"summaryIcon": string;
|
|
1411
|
+
/**
|
|
1412
|
+
* A unique value to store in the sidebar item of the group label. This can be used as a way to identify sidebar items when selected.
|
|
1413
|
+
*/
|
|
1414
|
+
"value": string;
|
|
1415
|
+
}
|
|
1416
|
+
interface SixSpinner {
|
|
1417
|
+
/**
|
|
1418
|
+
* Indicates if the spinner is shown as animated SIX logo or simple spinner.
|
|
1419
|
+
*/
|
|
1420
|
+
"six": boolean;
|
|
1421
|
+
}
|
|
1422
|
+
interface SixStageIndicator {
|
|
1423
|
+
/**
|
|
1424
|
+
* The indicators value attribute
|
|
1425
|
+
*/
|
|
1426
|
+
"stage": StageType;
|
|
1427
|
+
}
|
|
1428
|
+
interface SixSwitch {
|
|
1429
|
+
/**
|
|
1430
|
+
* Checks for validity.
|
|
1431
|
+
*/
|
|
1432
|
+
"checkValidity": () => Promise<boolean>;
|
|
1433
|
+
/**
|
|
1434
|
+
* Set to true to draw the switch in a checked state.
|
|
1435
|
+
*/
|
|
1436
|
+
"checked": boolean;
|
|
1437
|
+
/**
|
|
1438
|
+
* Set to true to disable the switch.
|
|
1439
|
+
*/
|
|
1440
|
+
"disabled": boolean;
|
|
1441
|
+
/**
|
|
1442
|
+
* This will be true when the control is in an invalid state. Validity is determined by the `required` prop.
|
|
1443
|
+
*/
|
|
1444
|
+
"invalid": boolean;
|
|
1445
|
+
/**
|
|
1446
|
+
* The switch's name attribute.
|
|
1447
|
+
*/
|
|
1448
|
+
"name": string;
|
|
1449
|
+
/**
|
|
1450
|
+
* Removes focus from the switch.
|
|
1451
|
+
*/
|
|
1452
|
+
"removeFocus": () => Promise<void>;
|
|
1453
|
+
/**
|
|
1454
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
1455
|
+
*/
|
|
1456
|
+
"reportValidity": () => Promise<boolean>;
|
|
1457
|
+
/**
|
|
1458
|
+
* Set to true to make the switch a required field.
|
|
1459
|
+
*/
|
|
1460
|
+
"required": boolean;
|
|
1461
|
+
/**
|
|
1462
|
+
* Resets the formcontrol
|
|
1463
|
+
*/
|
|
1464
|
+
"reset": () => Promise<void>;
|
|
1465
|
+
/**
|
|
1466
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
1467
|
+
*/
|
|
1468
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
1469
|
+
/**
|
|
1470
|
+
* Sets focus on the switch.
|
|
1471
|
+
*/
|
|
1472
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
1473
|
+
/**
|
|
1474
|
+
* The switch's value attribute.
|
|
1475
|
+
*/
|
|
1476
|
+
"value": string;
|
|
1477
|
+
}
|
|
1478
|
+
interface SixTab {
|
|
1479
|
+
/**
|
|
1480
|
+
* Set to true to draw the tab in an active state.
|
|
1481
|
+
*/
|
|
1482
|
+
"active": boolean;
|
|
1483
|
+
/**
|
|
1484
|
+
* When true, the tab will be rendered with a close icon.
|
|
1485
|
+
*/
|
|
1486
|
+
"closable": boolean;
|
|
1487
|
+
/**
|
|
1488
|
+
* Set to true to draw the tab in a disabled state.
|
|
1489
|
+
*/
|
|
1490
|
+
"disabled": boolean;
|
|
1491
|
+
/**
|
|
1492
|
+
* The name of the tab panel the tab will control. The panel must be located in the same tab group.
|
|
1493
|
+
*/
|
|
1494
|
+
"panel": string;
|
|
1495
|
+
/**
|
|
1496
|
+
* Removes focus from the tab.
|
|
1497
|
+
*/
|
|
1498
|
+
"removeFocus": () => Promise<void>;
|
|
1499
|
+
/**
|
|
1500
|
+
* Sets focus to the tab.
|
|
1501
|
+
*/
|
|
1502
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
1503
|
+
}
|
|
1504
|
+
interface SixTabGroup {
|
|
1505
|
+
/**
|
|
1506
|
+
* Disables the scroll arrows that appear when tabs overflow.
|
|
1507
|
+
*/
|
|
1508
|
+
"noScrollControls": boolean;
|
|
1509
|
+
/**
|
|
1510
|
+
* The placement of the tabs.
|
|
1511
|
+
*/
|
|
1512
|
+
"placement": 'top' | 'bottom' | 'left' | 'right';
|
|
1513
|
+
/**
|
|
1514
|
+
* Shows the specified tab panel.
|
|
1515
|
+
*/
|
|
1516
|
+
"show": (panel: string) => Promise<void>;
|
|
1517
|
+
}
|
|
1518
|
+
interface SixTabPanel {
|
|
1519
|
+
/**
|
|
1520
|
+
* When true, the tab panel will be shown.
|
|
1521
|
+
*/
|
|
1522
|
+
"active": boolean;
|
|
1523
|
+
/**
|
|
1524
|
+
* The tab panel's name.
|
|
1525
|
+
*/
|
|
1526
|
+
"name": string;
|
|
1527
|
+
}
|
|
1528
|
+
interface SixTable {
|
|
1529
|
+
/**
|
|
1530
|
+
* Set to true to display loading indicator.
|
|
1531
|
+
*/
|
|
1532
|
+
"loading": boolean;
|
|
1533
|
+
"setData": <T extends Item>(value: Data<T>) => Promise<void>;
|
|
1534
|
+
/**
|
|
1535
|
+
* Set to true to stripe the table.
|
|
1536
|
+
*/
|
|
1537
|
+
"striped": boolean;
|
|
1538
|
+
}
|
|
1539
|
+
interface SixTableCell {
|
|
1540
|
+
}
|
|
1541
|
+
interface SixTableHeader {
|
|
1542
|
+
}
|
|
1543
|
+
interface SixTableHeaderCell {
|
|
1544
|
+
/**
|
|
1545
|
+
* Filter mode. Applied only when set.
|
|
1546
|
+
*/
|
|
1547
|
+
"filter": FilterMode;
|
|
1548
|
+
/**
|
|
1549
|
+
* Table row property name. Used in the custom events to identify the row.
|
|
1550
|
+
*/
|
|
1551
|
+
"name": keyof Item;
|
|
1552
|
+
/**
|
|
1553
|
+
* Sort direction. Applied only when set.
|
|
1554
|
+
*/
|
|
1555
|
+
"sort": SortDirection;
|
|
1556
|
+
/**
|
|
1557
|
+
* Filter value. Applied only when filter mode is set.
|
|
1558
|
+
*/
|
|
1559
|
+
"value": string;
|
|
1560
|
+
}
|
|
1561
|
+
interface SixTableRow {
|
|
1562
|
+
}
|
|
1563
|
+
interface SixTag {
|
|
1564
|
+
/**
|
|
1565
|
+
* Set to true to make the tag clearable.
|
|
1566
|
+
*/
|
|
1567
|
+
"clearable": boolean;
|
|
1568
|
+
/**
|
|
1569
|
+
* Set to true to draw a pill-style tag with rounded edges.
|
|
1570
|
+
*/
|
|
1571
|
+
"pill": boolean;
|
|
1572
|
+
/**
|
|
1573
|
+
* The tag's size.
|
|
1574
|
+
*/
|
|
1575
|
+
"size": 'small' | 'medium' | 'large';
|
|
1576
|
+
/**
|
|
1577
|
+
* The tag's type.
|
|
1578
|
+
*/
|
|
1579
|
+
"type": 'primary' | 'success' | 'info' | 'warning' | 'danger' | 'action' | 'text';
|
|
1580
|
+
}
|
|
1581
|
+
interface SixTextarea {
|
|
1582
|
+
/**
|
|
1583
|
+
* The textarea's autocaptialize attribute.
|
|
1584
|
+
*/
|
|
1585
|
+
"autocapitalize": string;
|
|
1586
|
+
/**
|
|
1587
|
+
* The textarea's autocomplete attribute.
|
|
1588
|
+
*/
|
|
1589
|
+
"autocomplete": string;
|
|
1590
|
+
/**
|
|
1591
|
+
* The textarea's autocorrect attribute.
|
|
1592
|
+
*/
|
|
1593
|
+
"autocorrect": string;
|
|
1594
|
+
/**
|
|
1595
|
+
* The textarea's autofocus attribute.
|
|
1596
|
+
*/
|
|
1597
|
+
"autofocus": boolean;
|
|
1598
|
+
/**
|
|
1599
|
+
* Checks for validity.
|
|
1600
|
+
*/
|
|
1601
|
+
"checkValidity": () => Promise<boolean>;
|
|
1602
|
+
/**
|
|
1603
|
+
* Set to true to disable the textarea.
|
|
1604
|
+
*/
|
|
1605
|
+
"disabled": boolean;
|
|
1606
|
+
/**
|
|
1607
|
+
* Set to display the error text on blur and not when typing
|
|
1608
|
+
*/
|
|
1609
|
+
"errorOnBlur": boolean;
|
|
1610
|
+
/**
|
|
1611
|
+
* The textarea's error text. Alternatively, you can use the error-text slot.
|
|
1612
|
+
*/
|
|
1613
|
+
"errorText": string;
|
|
1614
|
+
/**
|
|
1615
|
+
* The textarea's help text. Alternatively, you can use the help-text slot.
|
|
1616
|
+
*/
|
|
1617
|
+
"helpText": string;
|
|
1618
|
+
/**
|
|
1619
|
+
* The textarea's inputmode attribute.
|
|
1620
|
+
*/
|
|
1621
|
+
"inputmode": 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
|
|
1622
|
+
/**
|
|
1623
|
+
* This will be true when the control is in an invalid state. Validity is determined by props such as `required`, `minlength`, and `maxlength` using the browser's constraint validation API.
|
|
1624
|
+
*/
|
|
1625
|
+
"invalid": boolean;
|
|
1626
|
+
/**
|
|
1627
|
+
* The textarea's label. Alternatively, you can use the label slot.
|
|
1628
|
+
*/
|
|
1629
|
+
"label": string;
|
|
1630
|
+
/**
|
|
1631
|
+
* The maximum length of input that will be considered valid.
|
|
1632
|
+
*/
|
|
1633
|
+
"maxlength": number;
|
|
1634
|
+
/**
|
|
1635
|
+
* The minimum length of input that will be considered valid.
|
|
1636
|
+
*/
|
|
1637
|
+
"minlength": number;
|
|
1638
|
+
/**
|
|
1639
|
+
* The textarea's name attribute.
|
|
1640
|
+
*/
|
|
1641
|
+
"name": string;
|
|
1642
|
+
/**
|
|
1643
|
+
* The textarea's placeholder text.
|
|
1644
|
+
*/
|
|
1645
|
+
"placeholder": string;
|
|
1646
|
+
/**
|
|
1647
|
+
* Set to true for a readonly textarea.
|
|
1648
|
+
*/
|
|
1649
|
+
"readonly": boolean;
|
|
1650
|
+
/**
|
|
1651
|
+
* Removes focus fromt the textarea.
|
|
1652
|
+
*/
|
|
1653
|
+
"removeFocus": () => Promise<void>;
|
|
1654
|
+
/**
|
|
1655
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
1656
|
+
*/
|
|
1657
|
+
"reportValidity": () => Promise<boolean>;
|
|
1658
|
+
/**
|
|
1659
|
+
* The textarea's required attribute.
|
|
1660
|
+
*/
|
|
1661
|
+
"required": boolean;
|
|
1662
|
+
/**
|
|
1663
|
+
* Resets the formcontrol
|
|
1664
|
+
*/
|
|
1665
|
+
"reset": () => Promise<void>;
|
|
1666
|
+
/**
|
|
1667
|
+
* Controls how the textarea can be resized.
|
|
1668
|
+
*/
|
|
1669
|
+
"resize": 'none' | 'vertical' | 'auto';
|
|
1670
|
+
/**
|
|
1671
|
+
* The number of rows to display by default.
|
|
1672
|
+
*/
|
|
1673
|
+
"rows": number;
|
|
1674
|
+
/**
|
|
1675
|
+
* Selects all the text in the input.
|
|
1676
|
+
*/
|
|
1677
|
+
"select": () => Promise<void>;
|
|
1678
|
+
/**
|
|
1679
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
1680
|
+
*/
|
|
1681
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
1682
|
+
/**
|
|
1683
|
+
* Sets focus on the textarea.
|
|
1684
|
+
*/
|
|
1685
|
+
"setFocus": (options?: FocusOptions) => Promise<void>;
|
|
1686
|
+
/**
|
|
1687
|
+
* Replaces a range of text with a new string.
|
|
1688
|
+
*/
|
|
1689
|
+
"setRangeText": (replacement: string, start: number, end: number, selectMode?: 'select' | 'start' | 'end' | 'preserve') => Promise<void>;
|
|
1690
|
+
/**
|
|
1691
|
+
* Sets the start and end positions of the text selection (0-based).
|
|
1692
|
+
*/
|
|
1693
|
+
"setSelectionRange": (selectionStart: number, selectionEnd: number, selectionDirection?: 'forward' | 'backward' | 'none') => Promise<void>;
|
|
1694
|
+
/**
|
|
1695
|
+
* The textarea's size.
|
|
1696
|
+
*/
|
|
1697
|
+
"size": 'small' | 'medium' | 'large';
|
|
1698
|
+
/**
|
|
1699
|
+
* The textarea's spellcheck attribute.
|
|
1700
|
+
*/
|
|
1701
|
+
"spellcheck": boolean;
|
|
1702
|
+
/**
|
|
1703
|
+
* The textarea's value attribute.
|
|
1704
|
+
*/
|
|
1705
|
+
"value": string;
|
|
1706
|
+
}
|
|
1707
|
+
interface SixTile {
|
|
1708
|
+
/**
|
|
1709
|
+
* Flag, whether the tile is closeable.
|
|
1710
|
+
*/
|
|
1711
|
+
"closeable": boolean;
|
|
1712
|
+
/**
|
|
1713
|
+
* Enables tile tooltip for tiles
|
|
1714
|
+
*/
|
|
1715
|
+
"disableTooltip": boolean;
|
|
1716
|
+
/**
|
|
1717
|
+
* Set to true to disable the tile.
|
|
1718
|
+
*/
|
|
1719
|
+
"disabled": boolean;
|
|
1720
|
+
/**
|
|
1721
|
+
* Flag, whether the tile should cast a shadow.
|
|
1722
|
+
*/
|
|
1723
|
+
"elevated": boolean;
|
|
1724
|
+
/**
|
|
1725
|
+
* Hides the tile
|
|
1726
|
+
*/
|
|
1727
|
+
"hide": () => Promise<void>;
|
|
1728
|
+
/**
|
|
1729
|
+
* The icon's name.
|
|
1730
|
+
*/
|
|
1731
|
+
"iconName": any;
|
|
1732
|
+
/**
|
|
1733
|
+
* The tile's label.
|
|
1734
|
+
*/
|
|
1735
|
+
"label": string;
|
|
1736
|
+
/**
|
|
1737
|
+
* Shows the tile
|
|
1738
|
+
*/
|
|
1739
|
+
"show": () => Promise<void>;
|
|
1740
|
+
/**
|
|
1741
|
+
* The tile's size.
|
|
1742
|
+
*/
|
|
1743
|
+
"size": 'small' | 'medium' | 'large';
|
|
1744
|
+
}
|
|
1745
|
+
interface SixTimepicker {
|
|
1746
|
+
/**
|
|
1747
|
+
* Checks for validity.
|
|
1748
|
+
*/
|
|
1749
|
+
"checkValidity": () => Promise<boolean>;
|
|
1750
|
+
/**
|
|
1751
|
+
* Set to true to add a clear button when the input is populated.
|
|
1752
|
+
*/
|
|
1753
|
+
"clearable": boolean;
|
|
1754
|
+
/**
|
|
1755
|
+
* Set the amount of time, in milliseconds, to wait to trigger the `six-timepicker-change-debounced` event. If you want your change debounce event to not trigger when keeping the nav button pressed before, make sure debounce is a bit bigger than timeout, otherwise keeping the button pressed will trigger the event twice: once you click (and keep pressed) and once you release
|
|
1756
|
+
*/
|
|
1757
|
+
"debounce": number;
|
|
1758
|
+
/**
|
|
1759
|
+
* The defaultTime defines the default setting for the timepicker when you open the popup. Default time must match the provided format.
|
|
1760
|
+
*/
|
|
1761
|
+
"defaultTime"?: string | null;
|
|
1762
|
+
/**
|
|
1763
|
+
* If `true` the component is disabled.
|
|
1764
|
+
*/
|
|
1765
|
+
"disabled": boolean;
|
|
1766
|
+
/**
|
|
1767
|
+
* Set to display the error text on blur and not when typing
|
|
1768
|
+
*/
|
|
1769
|
+
"errorOnBlur": boolean;
|
|
1770
|
+
/**
|
|
1771
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
1772
|
+
*/
|
|
1773
|
+
"errorText": string;
|
|
1774
|
+
/**
|
|
1775
|
+
* Define the time format. Valid formats are: HH:mm:ss hh:mm:ss:aa HH:mm:ss:ms hh:mm:ss:ms:aa HH:mm hh:mm:aa HH hh:aa mm ss ms where HH is the 24 hour format and hh is the 12 hour format Please notice that when using the 12-hour-clock (hh) you always need a period indicator (aa). So the time can be parsed as either am or pm
|
|
1776
|
+
*/
|
|
1777
|
+
"format": SixTimeFormat;
|
|
1778
|
+
/**
|
|
1779
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
1780
|
+
*/
|
|
1781
|
+
"hoist": boolean;
|
|
1782
|
+
/**
|
|
1783
|
+
* Set the position of the icon
|
|
1784
|
+
*/
|
|
1785
|
+
"iconPosition": 'left' | 'right';
|
|
1786
|
+
/**
|
|
1787
|
+
* Indicates whether or not the timepicker should be shown as an inline (always open) component
|
|
1788
|
+
*/
|
|
1789
|
+
"inline": boolean;
|
|
1790
|
+
/**
|
|
1791
|
+
* Set the amount of time, in milliseconds, to wait between switching to next timeunit (e.g. next hour) when mouse button is held pressed.
|
|
1792
|
+
*/
|
|
1793
|
+
"interval": number;
|
|
1794
|
+
/**
|
|
1795
|
+
* The input's label. Alternatively, you can use the label slot.
|
|
1796
|
+
*/
|
|
1797
|
+
"label": string;
|
|
1798
|
+
/**
|
|
1799
|
+
* The input's name attribute.
|
|
1800
|
+
*/
|
|
1801
|
+
"name": string;
|
|
1802
|
+
/**
|
|
1803
|
+
* Indicates whether or not the timepicker dropdown is open on startup. You can use this in lieu of the show/hide methods.
|
|
1804
|
+
*/
|
|
1805
|
+
"open": boolean;
|
|
1806
|
+
/**
|
|
1807
|
+
* The placeholder defines what text to be shown on the input element
|
|
1808
|
+
*/
|
|
1809
|
+
"placeholder"?: string | null;
|
|
1810
|
+
/**
|
|
1811
|
+
* The enforced placement of the dropdown panel.
|
|
1812
|
+
*/
|
|
1813
|
+
"placement": 'top' | 'bottom';
|
|
1814
|
+
/**
|
|
1815
|
+
* If `true` the user can only select a time via the timepicker but not directly edit the input field.
|
|
1816
|
+
*/
|
|
1817
|
+
"readonly": boolean;
|
|
1818
|
+
/**
|
|
1819
|
+
* Checks for validity and shows the browser's validation message if the control is invalid.
|
|
1820
|
+
*/
|
|
1821
|
+
"reportValidity": () => Promise<boolean>;
|
|
1822
|
+
/**
|
|
1823
|
+
* Set to true to make the input a required field.
|
|
1824
|
+
*/
|
|
1825
|
+
"required": boolean;
|
|
1826
|
+
/**
|
|
1827
|
+
* Resets the formcontrol
|
|
1828
|
+
*/
|
|
1829
|
+
"reset": () => Promise<void>;
|
|
1830
|
+
/**
|
|
1831
|
+
* Define the separator to be shown between the time unit pickers. Please be aware that this property will modify the displayed separator only. The separator for a timestring is always expected to be a colon (eg. '13:52:20')
|
|
1832
|
+
*/
|
|
1833
|
+
"separator": string;
|
|
1834
|
+
/**
|
|
1835
|
+
* Sets a custom validation message. If `message` is not empty, the field will be considered invalid.
|
|
1836
|
+
*/
|
|
1837
|
+
"setCustomValidity": (message: string) => Promise<void>;
|
|
1838
|
+
/**
|
|
1839
|
+
* Timepicker size.
|
|
1840
|
+
*/
|
|
1841
|
+
"size": 'small' | 'medium' | 'large';
|
|
1842
|
+
/**
|
|
1843
|
+
* Set the amount of time, in milliseconds, to wait to trigger faster switching between timeunits (e.g. hours).
|
|
1844
|
+
*/
|
|
1845
|
+
"timeout": number;
|
|
1846
|
+
/**
|
|
1847
|
+
* The value of the timepicker provided as a string. The string mast match the provided format (or default format)
|
|
1848
|
+
*/
|
|
1849
|
+
"value"?: string | null;
|
|
1850
|
+
}
|
|
1851
|
+
interface SixTooltip {
|
|
1852
|
+
/**
|
|
1853
|
+
* The tooltip's content. Alternatively, you can use the content slot.
|
|
1854
|
+
*/
|
|
1855
|
+
"content": string;
|
|
1856
|
+
/**
|
|
1857
|
+
* Set to true to disable the tooltip so it won't show when triggered.
|
|
1858
|
+
*/
|
|
1859
|
+
"disabled": boolean;
|
|
1860
|
+
/**
|
|
1861
|
+
* The distance in pixels from which to offset the tooltip away from its target.
|
|
1862
|
+
*/
|
|
1863
|
+
"distance": number;
|
|
1864
|
+
/**
|
|
1865
|
+
* Shows the tooltip.
|
|
1866
|
+
*/
|
|
1867
|
+
"hide": () => Promise<void>;
|
|
1868
|
+
/**
|
|
1869
|
+
* Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.
|
|
1870
|
+
*/
|
|
1871
|
+
"open": boolean;
|
|
1872
|
+
/**
|
|
1873
|
+
* The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip inside of the viewport.
|
|
1874
|
+
*/
|
|
1875
|
+
"placement": | 'top'
|
|
1876
|
+
| 'top-start'
|
|
1877
|
+
| 'top-end'
|
|
1878
|
+
| 'right'
|
|
1879
|
+
| 'right-start'
|
|
1880
|
+
| 'right-end'
|
|
1881
|
+
| 'bottom'
|
|
1882
|
+
| 'bottom-start'
|
|
1883
|
+
| 'bottom-end'
|
|
1884
|
+
| 'left'
|
|
1885
|
+
| 'left-start'
|
|
1886
|
+
| 'left-end';
|
|
1887
|
+
/**
|
|
1888
|
+
* Shows the tooltip.
|
|
1889
|
+
*/
|
|
1890
|
+
"show": () => Promise<void>;
|
|
1891
|
+
/**
|
|
1892
|
+
* The distance in pixels from which to offset the tooltip along its target.
|
|
1893
|
+
*/
|
|
1894
|
+
"skidding": number;
|
|
1895
|
+
/**
|
|
1896
|
+
* 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.
|
|
1897
|
+
*/
|
|
1898
|
+
"trigger": string;
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
declare global {
|
|
1902
|
+
interface HTMLSetAttributesElement extends Components.SetAttributes, HTMLStencilElement {
|
|
1903
|
+
}
|
|
1904
|
+
var HTMLSetAttributesElement: {
|
|
1905
|
+
prototype: HTMLSetAttributesElement;
|
|
1906
|
+
new (): HTMLSetAttributesElement;
|
|
1907
|
+
};
|
|
1908
|
+
interface HTMLSixAlertElement extends Components.SixAlert, HTMLStencilElement {
|
|
1909
|
+
}
|
|
1910
|
+
var HTMLSixAlertElement: {
|
|
1911
|
+
prototype: HTMLSixAlertElement;
|
|
1912
|
+
new (): HTMLSixAlertElement;
|
|
1913
|
+
};
|
|
1914
|
+
interface HTMLSixAvatarElement extends Components.SixAvatar, HTMLStencilElement {
|
|
1915
|
+
}
|
|
1916
|
+
var HTMLSixAvatarElement: {
|
|
1917
|
+
prototype: HTMLSixAvatarElement;
|
|
1918
|
+
new (): HTMLSixAvatarElement;
|
|
1919
|
+
};
|
|
1920
|
+
interface HTMLSixBadgeElement extends Components.SixBadge, HTMLStencilElement {
|
|
1921
|
+
}
|
|
1922
|
+
var HTMLSixBadgeElement: {
|
|
1923
|
+
prototype: HTMLSixBadgeElement;
|
|
1924
|
+
new (): HTMLSixBadgeElement;
|
|
1925
|
+
};
|
|
1926
|
+
interface HTMLSixButtonElement extends Components.SixButton, HTMLStencilElement {
|
|
1927
|
+
}
|
|
1928
|
+
var HTMLSixButtonElement: {
|
|
1929
|
+
prototype: HTMLSixButtonElement;
|
|
1930
|
+
new (): HTMLSixButtonElement;
|
|
1931
|
+
};
|
|
1932
|
+
interface HTMLSixCardElement extends Components.SixCard, HTMLStencilElement {
|
|
1933
|
+
}
|
|
1934
|
+
var HTMLSixCardElement: {
|
|
1935
|
+
prototype: HTMLSixCardElement;
|
|
1936
|
+
new (): HTMLSixCardElement;
|
|
1937
|
+
};
|
|
1938
|
+
interface HTMLSixCheckboxElement extends Components.SixCheckbox, HTMLStencilElement {
|
|
1939
|
+
}
|
|
1940
|
+
var HTMLSixCheckboxElement: {
|
|
1941
|
+
prototype: HTMLSixCheckboxElement;
|
|
1942
|
+
new (): HTMLSixCheckboxElement;
|
|
1943
|
+
};
|
|
1944
|
+
interface HTMLSixDatepickerElement extends Components.SixDatepicker, HTMLStencilElement {
|
|
1945
|
+
}
|
|
1946
|
+
var HTMLSixDatepickerElement: {
|
|
1947
|
+
prototype: HTMLSixDatepickerElement;
|
|
1948
|
+
new (): HTMLSixDatepickerElement;
|
|
1949
|
+
};
|
|
1950
|
+
interface HTMLSixDetailsElement extends Components.SixDetails, HTMLStencilElement {
|
|
1951
|
+
}
|
|
1952
|
+
var HTMLSixDetailsElement: {
|
|
1953
|
+
prototype: HTMLSixDetailsElement;
|
|
1954
|
+
new (): HTMLSixDetailsElement;
|
|
1955
|
+
};
|
|
1956
|
+
interface HTMLSixDialogElement extends Components.SixDialog, HTMLStencilElement {
|
|
1957
|
+
}
|
|
1958
|
+
var HTMLSixDialogElement: {
|
|
1959
|
+
prototype: HTMLSixDialogElement;
|
|
1960
|
+
new (): HTMLSixDialogElement;
|
|
1961
|
+
};
|
|
1962
|
+
interface HTMLSixDrawerElement extends Components.SixDrawer, HTMLStencilElement {
|
|
1963
|
+
}
|
|
1964
|
+
var HTMLSixDrawerElement: {
|
|
1965
|
+
prototype: HTMLSixDrawerElement;
|
|
1966
|
+
new (): HTMLSixDrawerElement;
|
|
1967
|
+
};
|
|
1968
|
+
interface HTMLSixDropdownElement extends Components.SixDropdown, HTMLStencilElement {
|
|
1969
|
+
}
|
|
1970
|
+
var HTMLSixDropdownElement: {
|
|
1971
|
+
prototype: HTMLSixDropdownElement;
|
|
1972
|
+
new (): HTMLSixDropdownElement;
|
|
1973
|
+
};
|
|
1974
|
+
interface HTMLSixErrorPageElement extends Components.SixErrorPage, HTMLStencilElement {
|
|
1975
|
+
}
|
|
1976
|
+
var HTMLSixErrorPageElement: {
|
|
1977
|
+
prototype: HTMLSixErrorPageElement;
|
|
1978
|
+
new (): HTMLSixErrorPageElement;
|
|
1979
|
+
};
|
|
1980
|
+
interface HTMLSixFileListElement extends Components.SixFileList, HTMLStencilElement {
|
|
1981
|
+
}
|
|
1982
|
+
var HTMLSixFileListElement: {
|
|
1983
|
+
prototype: HTMLSixFileListElement;
|
|
1984
|
+
new (): HTMLSixFileListElement;
|
|
1985
|
+
};
|
|
1986
|
+
interface HTMLSixFileListItemElement extends Components.SixFileListItem, HTMLStencilElement {
|
|
1987
|
+
}
|
|
1988
|
+
var HTMLSixFileListItemElement: {
|
|
1989
|
+
prototype: HTMLSixFileListItemElement;
|
|
1990
|
+
new (): HTMLSixFileListItemElement;
|
|
1991
|
+
};
|
|
1992
|
+
interface HTMLSixFileUploadElement extends Components.SixFileUpload, HTMLStencilElement {
|
|
1993
|
+
}
|
|
1994
|
+
var HTMLSixFileUploadElement: {
|
|
1995
|
+
prototype: HTMLSixFileUploadElement;
|
|
1996
|
+
new (): HTMLSixFileUploadElement;
|
|
1997
|
+
};
|
|
1998
|
+
interface HTMLSixFooterElement extends Components.SixFooter, HTMLStencilElement {
|
|
1999
|
+
}
|
|
2000
|
+
var HTMLSixFooterElement: {
|
|
2001
|
+
prototype: HTMLSixFooterElement;
|
|
2002
|
+
new (): HTMLSixFooterElement;
|
|
2003
|
+
};
|
|
2004
|
+
interface HTMLSixFormElement extends Components.SixForm, HTMLStencilElement {
|
|
2005
|
+
}
|
|
2006
|
+
var HTMLSixFormElement: {
|
|
2007
|
+
prototype: HTMLSixFormElement;
|
|
2008
|
+
new (): HTMLSixFormElement;
|
|
2009
|
+
};
|
|
2010
|
+
interface HTMLSixGroupLabelElement extends Components.SixGroupLabel, HTMLStencilElement {
|
|
2011
|
+
}
|
|
2012
|
+
var HTMLSixGroupLabelElement: {
|
|
2013
|
+
prototype: HTMLSixGroupLabelElement;
|
|
2014
|
+
new (): HTMLSixGroupLabelElement;
|
|
2015
|
+
};
|
|
2016
|
+
interface HTMLSixHeaderElement extends Components.SixHeader, HTMLStencilElement {
|
|
2017
|
+
}
|
|
2018
|
+
var HTMLSixHeaderElement: {
|
|
2019
|
+
prototype: HTMLSixHeaderElement;
|
|
2020
|
+
new (): HTMLSixHeaderElement;
|
|
2021
|
+
};
|
|
2022
|
+
interface HTMLSixIconElement extends Components.SixIcon, HTMLStencilElement {
|
|
2023
|
+
}
|
|
2024
|
+
var HTMLSixIconElement: {
|
|
2025
|
+
prototype: HTMLSixIconElement;
|
|
2026
|
+
new (): HTMLSixIconElement;
|
|
2027
|
+
};
|
|
2028
|
+
interface HTMLSixIconButtonElement extends Components.SixIconButton, HTMLStencilElement {
|
|
2029
|
+
}
|
|
2030
|
+
var HTMLSixIconButtonElement: {
|
|
2031
|
+
prototype: HTMLSixIconButtonElement;
|
|
2032
|
+
new (): HTMLSixIconButtonElement;
|
|
2033
|
+
};
|
|
2034
|
+
interface HTMLSixInputElement extends Components.SixInput, HTMLStencilElement {
|
|
2035
|
+
}
|
|
2036
|
+
var HTMLSixInputElement: {
|
|
2037
|
+
prototype: HTMLSixInputElement;
|
|
2038
|
+
new (): HTMLSixInputElement;
|
|
2039
|
+
};
|
|
2040
|
+
interface HTMLSixItemPickerElement extends Components.SixItemPicker, HTMLStencilElement {
|
|
2041
|
+
}
|
|
2042
|
+
var HTMLSixItemPickerElement: {
|
|
2043
|
+
prototype: HTMLSixItemPickerElement;
|
|
2044
|
+
new (): HTMLSixItemPickerElement;
|
|
2045
|
+
};
|
|
2046
|
+
interface HTMLSixLanguageSwitcherElement extends Components.SixLanguageSwitcher, HTMLStencilElement {
|
|
2047
|
+
}
|
|
2048
|
+
var HTMLSixLanguageSwitcherElement: {
|
|
2049
|
+
prototype: HTMLSixLanguageSwitcherElement;
|
|
2050
|
+
new (): HTMLSixLanguageSwitcherElement;
|
|
2051
|
+
};
|
|
2052
|
+
interface HTMLSixLayoutGridElement extends Components.SixLayoutGrid, HTMLStencilElement {
|
|
2053
|
+
}
|
|
2054
|
+
var HTMLSixLayoutGridElement: {
|
|
2055
|
+
prototype: HTMLSixLayoutGridElement;
|
|
2056
|
+
new (): HTMLSixLayoutGridElement;
|
|
2057
|
+
};
|
|
2058
|
+
interface HTMLSixMainContainerElement extends Components.SixMainContainer, HTMLStencilElement {
|
|
2059
|
+
}
|
|
2060
|
+
var HTMLSixMainContainerElement: {
|
|
2061
|
+
prototype: HTMLSixMainContainerElement;
|
|
2062
|
+
new (): HTMLSixMainContainerElement;
|
|
2063
|
+
};
|
|
2064
|
+
interface HTMLSixMenuElement extends Components.SixMenu, HTMLStencilElement {
|
|
2065
|
+
}
|
|
2066
|
+
var HTMLSixMenuElement: {
|
|
2067
|
+
prototype: HTMLSixMenuElement;
|
|
2068
|
+
new (): HTMLSixMenuElement;
|
|
2069
|
+
};
|
|
2070
|
+
interface HTMLSixMenuDividerElement extends Components.SixMenuDivider, HTMLStencilElement {
|
|
2071
|
+
}
|
|
2072
|
+
var HTMLSixMenuDividerElement: {
|
|
2073
|
+
prototype: HTMLSixMenuDividerElement;
|
|
2074
|
+
new (): HTMLSixMenuDividerElement;
|
|
2075
|
+
};
|
|
2076
|
+
interface HTMLSixMenuItemElement extends Components.SixMenuItem, HTMLStencilElement {
|
|
2077
|
+
}
|
|
2078
|
+
var HTMLSixMenuItemElement: {
|
|
2079
|
+
prototype: HTMLSixMenuItemElement;
|
|
2080
|
+
new (): HTMLSixMenuItemElement;
|
|
2081
|
+
};
|
|
2082
|
+
interface HTMLSixMenuLabelElement extends Components.SixMenuLabel, HTMLStencilElement {
|
|
2083
|
+
}
|
|
2084
|
+
var HTMLSixMenuLabelElement: {
|
|
2085
|
+
prototype: HTMLSixMenuLabelElement;
|
|
2086
|
+
new (): HTMLSixMenuLabelElement;
|
|
2087
|
+
};
|
|
2088
|
+
interface HTMLSixPictoElement extends Components.SixPicto, HTMLStencilElement {
|
|
2089
|
+
}
|
|
2090
|
+
var HTMLSixPictoElement: {
|
|
2091
|
+
prototype: HTMLSixPictoElement;
|
|
2092
|
+
new (): HTMLSixPictoElement;
|
|
2093
|
+
};
|
|
2094
|
+
interface HTMLSixProgressBarElement extends Components.SixProgressBar, HTMLStencilElement {
|
|
2095
|
+
}
|
|
2096
|
+
var HTMLSixProgressBarElement: {
|
|
2097
|
+
prototype: HTMLSixProgressBarElement;
|
|
2098
|
+
new (): HTMLSixProgressBarElement;
|
|
2099
|
+
};
|
|
2100
|
+
interface HTMLSixProgressRingElement extends Components.SixProgressRing, HTMLStencilElement {
|
|
2101
|
+
}
|
|
2102
|
+
var HTMLSixProgressRingElement: {
|
|
2103
|
+
prototype: HTMLSixProgressRingElement;
|
|
2104
|
+
new (): HTMLSixProgressRingElement;
|
|
2105
|
+
};
|
|
2106
|
+
interface HTMLSixRadioElement extends Components.SixRadio, HTMLStencilElement {
|
|
2107
|
+
}
|
|
2108
|
+
var HTMLSixRadioElement: {
|
|
2109
|
+
prototype: HTMLSixRadioElement;
|
|
2110
|
+
new (): HTMLSixRadioElement;
|
|
2111
|
+
};
|
|
2112
|
+
interface HTMLSixRangeElement extends Components.SixRange, HTMLStencilElement {
|
|
2113
|
+
}
|
|
2114
|
+
var HTMLSixRangeElement: {
|
|
2115
|
+
prototype: HTMLSixRangeElement;
|
|
2116
|
+
new (): HTMLSixRangeElement;
|
|
2117
|
+
};
|
|
2118
|
+
interface HTMLSixRootElement extends Components.SixRoot, HTMLStencilElement {
|
|
2119
|
+
}
|
|
2120
|
+
var HTMLSixRootElement: {
|
|
2121
|
+
prototype: HTMLSixRootElement;
|
|
2122
|
+
new (): HTMLSixRootElement;
|
|
2123
|
+
};
|
|
2124
|
+
interface HTMLSixSearchFieldElement extends Components.SixSearchField, HTMLStencilElement {
|
|
2125
|
+
}
|
|
2126
|
+
var HTMLSixSearchFieldElement: {
|
|
2127
|
+
prototype: HTMLSixSearchFieldElement;
|
|
2128
|
+
new (): HTMLSixSearchFieldElement;
|
|
2129
|
+
};
|
|
2130
|
+
interface HTMLSixSelectElement extends Components.SixSelect, HTMLStencilElement {
|
|
2131
|
+
}
|
|
2132
|
+
var HTMLSixSelectElement: {
|
|
2133
|
+
prototype: HTMLSixSelectElement;
|
|
2134
|
+
new (): HTMLSixSelectElement;
|
|
2135
|
+
};
|
|
2136
|
+
interface HTMLSixSidebarElement extends Components.SixSidebar, HTMLStencilElement {
|
|
2137
|
+
}
|
|
2138
|
+
var HTMLSixSidebarElement: {
|
|
2139
|
+
prototype: HTMLSixSidebarElement;
|
|
2140
|
+
new (): HTMLSixSidebarElement;
|
|
2141
|
+
};
|
|
2142
|
+
interface HTMLSixSidebarItemElement extends Components.SixSidebarItem, HTMLStencilElement {
|
|
2143
|
+
}
|
|
2144
|
+
var HTMLSixSidebarItemElement: {
|
|
2145
|
+
prototype: HTMLSixSidebarItemElement;
|
|
2146
|
+
new (): HTMLSixSidebarItemElement;
|
|
2147
|
+
};
|
|
2148
|
+
interface HTMLSixSidebarItemGroupElement extends Components.SixSidebarItemGroup, HTMLStencilElement {
|
|
2149
|
+
}
|
|
2150
|
+
var HTMLSixSidebarItemGroupElement: {
|
|
2151
|
+
prototype: HTMLSixSidebarItemGroupElement;
|
|
2152
|
+
new (): HTMLSixSidebarItemGroupElement;
|
|
2153
|
+
};
|
|
2154
|
+
interface HTMLSixSpinnerElement extends Components.SixSpinner, HTMLStencilElement {
|
|
2155
|
+
}
|
|
2156
|
+
var HTMLSixSpinnerElement: {
|
|
2157
|
+
prototype: HTMLSixSpinnerElement;
|
|
2158
|
+
new (): HTMLSixSpinnerElement;
|
|
2159
|
+
};
|
|
2160
|
+
interface HTMLSixStageIndicatorElement extends Components.SixStageIndicator, HTMLStencilElement {
|
|
2161
|
+
}
|
|
2162
|
+
var HTMLSixStageIndicatorElement: {
|
|
2163
|
+
prototype: HTMLSixStageIndicatorElement;
|
|
2164
|
+
new (): HTMLSixStageIndicatorElement;
|
|
2165
|
+
};
|
|
2166
|
+
interface HTMLSixSwitchElement extends Components.SixSwitch, HTMLStencilElement {
|
|
2167
|
+
}
|
|
2168
|
+
var HTMLSixSwitchElement: {
|
|
2169
|
+
prototype: HTMLSixSwitchElement;
|
|
2170
|
+
new (): HTMLSixSwitchElement;
|
|
2171
|
+
};
|
|
2172
|
+
interface HTMLSixTabElement extends Components.SixTab, HTMLStencilElement {
|
|
2173
|
+
}
|
|
2174
|
+
var HTMLSixTabElement: {
|
|
2175
|
+
prototype: HTMLSixTabElement;
|
|
2176
|
+
new (): HTMLSixTabElement;
|
|
2177
|
+
};
|
|
2178
|
+
interface HTMLSixTabGroupElement extends Components.SixTabGroup, HTMLStencilElement {
|
|
2179
|
+
}
|
|
2180
|
+
var HTMLSixTabGroupElement: {
|
|
2181
|
+
prototype: HTMLSixTabGroupElement;
|
|
2182
|
+
new (): HTMLSixTabGroupElement;
|
|
2183
|
+
};
|
|
2184
|
+
interface HTMLSixTabPanelElement extends Components.SixTabPanel, HTMLStencilElement {
|
|
2185
|
+
}
|
|
2186
|
+
var HTMLSixTabPanelElement: {
|
|
2187
|
+
prototype: HTMLSixTabPanelElement;
|
|
2188
|
+
new (): HTMLSixTabPanelElement;
|
|
2189
|
+
};
|
|
2190
|
+
interface HTMLSixTableElement extends Components.SixTable, HTMLStencilElement {
|
|
2191
|
+
}
|
|
2192
|
+
var HTMLSixTableElement: {
|
|
2193
|
+
prototype: HTMLSixTableElement;
|
|
2194
|
+
new (): HTMLSixTableElement;
|
|
2195
|
+
};
|
|
2196
|
+
interface HTMLSixTableCellElement extends Components.SixTableCell, HTMLStencilElement {
|
|
2197
|
+
}
|
|
2198
|
+
var HTMLSixTableCellElement: {
|
|
2199
|
+
prototype: HTMLSixTableCellElement;
|
|
2200
|
+
new (): HTMLSixTableCellElement;
|
|
2201
|
+
};
|
|
2202
|
+
interface HTMLSixTableHeaderElement extends Components.SixTableHeader, HTMLStencilElement {
|
|
2203
|
+
}
|
|
2204
|
+
var HTMLSixTableHeaderElement: {
|
|
2205
|
+
prototype: HTMLSixTableHeaderElement;
|
|
2206
|
+
new (): HTMLSixTableHeaderElement;
|
|
2207
|
+
};
|
|
2208
|
+
interface HTMLSixTableHeaderCellElement extends Components.SixTableHeaderCell, HTMLStencilElement {
|
|
2209
|
+
}
|
|
2210
|
+
var HTMLSixTableHeaderCellElement: {
|
|
2211
|
+
prototype: HTMLSixTableHeaderCellElement;
|
|
2212
|
+
new (): HTMLSixTableHeaderCellElement;
|
|
2213
|
+
};
|
|
2214
|
+
interface HTMLSixTableRowElement extends Components.SixTableRow, HTMLStencilElement {
|
|
2215
|
+
}
|
|
2216
|
+
var HTMLSixTableRowElement: {
|
|
2217
|
+
prototype: HTMLSixTableRowElement;
|
|
2218
|
+
new (): HTMLSixTableRowElement;
|
|
2219
|
+
};
|
|
2220
|
+
interface HTMLSixTagElement extends Components.SixTag, HTMLStencilElement {
|
|
2221
|
+
}
|
|
2222
|
+
var HTMLSixTagElement: {
|
|
2223
|
+
prototype: HTMLSixTagElement;
|
|
2224
|
+
new (): HTMLSixTagElement;
|
|
2225
|
+
};
|
|
2226
|
+
interface HTMLSixTextareaElement extends Components.SixTextarea, HTMLStencilElement {
|
|
2227
|
+
}
|
|
2228
|
+
var HTMLSixTextareaElement: {
|
|
2229
|
+
prototype: HTMLSixTextareaElement;
|
|
2230
|
+
new (): HTMLSixTextareaElement;
|
|
2231
|
+
};
|
|
2232
|
+
interface HTMLSixTileElement extends Components.SixTile, HTMLStencilElement {
|
|
2233
|
+
}
|
|
2234
|
+
var HTMLSixTileElement: {
|
|
2235
|
+
prototype: HTMLSixTileElement;
|
|
2236
|
+
new (): HTMLSixTileElement;
|
|
2237
|
+
};
|
|
2238
|
+
interface HTMLSixTimepickerElement extends Components.SixTimepicker, HTMLStencilElement {
|
|
2239
|
+
}
|
|
2240
|
+
var HTMLSixTimepickerElement: {
|
|
2241
|
+
prototype: HTMLSixTimepickerElement;
|
|
2242
|
+
new (): HTMLSixTimepickerElement;
|
|
2243
|
+
};
|
|
2244
|
+
interface HTMLSixTooltipElement extends Components.SixTooltip, HTMLStencilElement {
|
|
2245
|
+
}
|
|
2246
|
+
var HTMLSixTooltipElement: {
|
|
2247
|
+
prototype: HTMLSixTooltipElement;
|
|
2248
|
+
new (): HTMLSixTooltipElement;
|
|
2249
|
+
};
|
|
2250
|
+
interface HTMLElementTagNameMap {
|
|
2251
|
+
"set-attributes": HTMLSetAttributesElement;
|
|
2252
|
+
"six-alert": HTMLSixAlertElement;
|
|
2253
|
+
"six-avatar": HTMLSixAvatarElement;
|
|
2254
|
+
"six-badge": HTMLSixBadgeElement;
|
|
2255
|
+
"six-button": HTMLSixButtonElement;
|
|
2256
|
+
"six-card": HTMLSixCardElement;
|
|
2257
|
+
"six-checkbox": HTMLSixCheckboxElement;
|
|
2258
|
+
"six-datepicker": HTMLSixDatepickerElement;
|
|
2259
|
+
"six-details": HTMLSixDetailsElement;
|
|
2260
|
+
"six-dialog": HTMLSixDialogElement;
|
|
2261
|
+
"six-drawer": HTMLSixDrawerElement;
|
|
2262
|
+
"six-dropdown": HTMLSixDropdownElement;
|
|
2263
|
+
"six-error-page": HTMLSixErrorPageElement;
|
|
2264
|
+
"six-file-list": HTMLSixFileListElement;
|
|
2265
|
+
"six-file-list-item": HTMLSixFileListItemElement;
|
|
2266
|
+
"six-file-upload": HTMLSixFileUploadElement;
|
|
2267
|
+
"six-footer": HTMLSixFooterElement;
|
|
2268
|
+
"six-form": HTMLSixFormElement;
|
|
2269
|
+
"six-group-label": HTMLSixGroupLabelElement;
|
|
2270
|
+
"six-header": HTMLSixHeaderElement;
|
|
2271
|
+
"six-icon": HTMLSixIconElement;
|
|
2272
|
+
"six-icon-button": HTMLSixIconButtonElement;
|
|
2273
|
+
"six-input": HTMLSixInputElement;
|
|
2274
|
+
"six-item-picker": HTMLSixItemPickerElement;
|
|
2275
|
+
"six-language-switcher": HTMLSixLanguageSwitcherElement;
|
|
2276
|
+
"six-layout-grid": HTMLSixLayoutGridElement;
|
|
2277
|
+
"six-main-container": HTMLSixMainContainerElement;
|
|
2278
|
+
"six-menu": HTMLSixMenuElement;
|
|
2279
|
+
"six-menu-divider": HTMLSixMenuDividerElement;
|
|
2280
|
+
"six-menu-item": HTMLSixMenuItemElement;
|
|
2281
|
+
"six-menu-label": HTMLSixMenuLabelElement;
|
|
2282
|
+
"six-picto": HTMLSixPictoElement;
|
|
2283
|
+
"six-progress-bar": HTMLSixProgressBarElement;
|
|
2284
|
+
"six-progress-ring": HTMLSixProgressRingElement;
|
|
2285
|
+
"six-radio": HTMLSixRadioElement;
|
|
2286
|
+
"six-range": HTMLSixRangeElement;
|
|
2287
|
+
"six-root": HTMLSixRootElement;
|
|
2288
|
+
"six-search-field": HTMLSixSearchFieldElement;
|
|
2289
|
+
"six-select": HTMLSixSelectElement;
|
|
2290
|
+
"six-sidebar": HTMLSixSidebarElement;
|
|
2291
|
+
"six-sidebar-item": HTMLSixSidebarItemElement;
|
|
2292
|
+
"six-sidebar-item-group": HTMLSixSidebarItemGroupElement;
|
|
2293
|
+
"six-spinner": HTMLSixSpinnerElement;
|
|
2294
|
+
"six-stage-indicator": HTMLSixStageIndicatorElement;
|
|
2295
|
+
"six-switch": HTMLSixSwitchElement;
|
|
2296
|
+
"six-tab": HTMLSixTabElement;
|
|
2297
|
+
"six-tab-group": HTMLSixTabGroupElement;
|
|
2298
|
+
"six-tab-panel": HTMLSixTabPanelElement;
|
|
2299
|
+
"six-table": HTMLSixTableElement;
|
|
2300
|
+
"six-table-cell": HTMLSixTableCellElement;
|
|
2301
|
+
"six-table-header": HTMLSixTableHeaderElement;
|
|
2302
|
+
"six-table-header-cell": HTMLSixTableHeaderCellElement;
|
|
2303
|
+
"six-table-row": HTMLSixTableRowElement;
|
|
2304
|
+
"six-tag": HTMLSixTagElement;
|
|
2305
|
+
"six-textarea": HTMLSixTextareaElement;
|
|
2306
|
+
"six-tile": HTMLSixTileElement;
|
|
2307
|
+
"six-timepicker": HTMLSixTimepickerElement;
|
|
2308
|
+
"six-tooltip": HTMLSixTooltipElement;
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
2311
|
+
declare namespace LocalJSX {
|
|
2312
|
+
interface SetAttributes {
|
|
2313
|
+
/**
|
|
2314
|
+
* Attributes map
|
|
2315
|
+
*/
|
|
2316
|
+
"value"?: {};
|
|
2317
|
+
}
|
|
2318
|
+
interface SixAlert {
|
|
2319
|
+
/**
|
|
2320
|
+
* Set to true to make the alert closable.
|
|
2321
|
+
*/
|
|
2322
|
+
"closable"?: boolean;
|
|
2323
|
+
/**
|
|
2324
|
+
* The length of time, in milliseconds, the alert will show before closing itself. If the user interacts with the alert before it closes (e.g. moves the mouse over it), the timer will restart.
|
|
2325
|
+
*/
|
|
2326
|
+
"duration"?: number;
|
|
2327
|
+
/**
|
|
2328
|
+
* Emitted after the alert closes and all transitions are complete.
|
|
2329
|
+
*/
|
|
2330
|
+
"onSix-alert-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2331
|
+
/**
|
|
2332
|
+
* Emitted after the alert opens and all transitions are complete.
|
|
2333
|
+
*/
|
|
2334
|
+
"onSix-alert-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2335
|
+
/**
|
|
2336
|
+
* Emitted when the alert closes. Calling `event.preventDefault()` will prevent it from being closed.
|
|
2337
|
+
*/
|
|
2338
|
+
"onSix-alert-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2339
|
+
/**
|
|
2340
|
+
* Emitted when the alert opens. Calling `event.preventDefault()` will prevent it from being opened.
|
|
2341
|
+
*/
|
|
2342
|
+
"onSix-alert-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2343
|
+
/**
|
|
2344
|
+
* Indicates whether or not the alert is open. You can use this in lieu of the show/hide methods.
|
|
2345
|
+
*/
|
|
2346
|
+
"open"?: boolean;
|
|
2347
|
+
/**
|
|
2348
|
+
* The type of alert.
|
|
2349
|
+
*/
|
|
2350
|
+
"type"?: 'primary' | 'success' | 'info' | 'warning' | 'danger';
|
|
2351
|
+
}
|
|
2352
|
+
interface SixAvatar {
|
|
2353
|
+
/**
|
|
2354
|
+
* Alternative text for the image.
|
|
2355
|
+
*/
|
|
2356
|
+
"alt"?: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* The image source to use for the avatar.
|
|
2359
|
+
*/
|
|
2360
|
+
"image"?: string;
|
|
2361
|
+
/**
|
|
2362
|
+
* Initials to use as a fallback when no image is available (1-2 characters max recommended).
|
|
2363
|
+
*/
|
|
2364
|
+
"initials"?: string;
|
|
2365
|
+
/**
|
|
2366
|
+
* The shape of the avatar.
|
|
2367
|
+
*/
|
|
2368
|
+
"shape"?: 'circle' | 'square' | 'rounded';
|
|
2369
|
+
}
|
|
2370
|
+
interface SixBadge {
|
|
2371
|
+
/**
|
|
2372
|
+
* Set to true to draw a pill-style badge with rounded edges.
|
|
2373
|
+
*/
|
|
2374
|
+
"pill"?: boolean;
|
|
2375
|
+
/**
|
|
2376
|
+
* Set to true to make the badge pulsate to draw attention.
|
|
2377
|
+
*/
|
|
2378
|
+
"pulse"?: boolean;
|
|
2379
|
+
/**
|
|
2380
|
+
* The badge's type.
|
|
2381
|
+
*/
|
|
2382
|
+
"type"?: 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'action';
|
|
2383
|
+
}
|
|
2384
|
+
interface SixButton {
|
|
2385
|
+
/**
|
|
2386
|
+
* Set to true to draw the button with a caret for use with dropdowns, popovers, etc.
|
|
2387
|
+
*/
|
|
2388
|
+
"caret"?: boolean;
|
|
2389
|
+
/**
|
|
2390
|
+
* Set to true to draw a circle button.
|
|
2391
|
+
*/
|
|
2392
|
+
"circle"?: boolean;
|
|
2393
|
+
/**
|
|
2394
|
+
* Set to true to disable the button.
|
|
2395
|
+
*/
|
|
2396
|
+
"disabled"?: boolean;
|
|
2397
|
+
/**
|
|
2398
|
+
* Tells the browser to download the linked file as this filename. Only used when `href` is set.
|
|
2399
|
+
*/
|
|
2400
|
+
"download"?: string;
|
|
2401
|
+
/**
|
|
2402
|
+
* When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.
|
|
2403
|
+
*/
|
|
2404
|
+
"href"?: string;
|
|
2405
|
+
/**
|
|
2406
|
+
* Set to true to draw the button in a loading state.
|
|
2407
|
+
*/
|
|
2408
|
+
"loading"?: boolean;
|
|
2409
|
+
/**
|
|
2410
|
+
* An optional name for the button. Ignored when `href` is set.
|
|
2411
|
+
*/
|
|
2412
|
+
"name"?: string;
|
|
2413
|
+
/**
|
|
2414
|
+
* Emitted when the button loses focus.
|
|
2415
|
+
*/
|
|
2416
|
+
"onSix-button-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2417
|
+
/**
|
|
2418
|
+
* Emitted when the button gains focus.
|
|
2419
|
+
*/
|
|
2420
|
+
"onSix-button-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2421
|
+
/**
|
|
2422
|
+
* Set to true to draw a pill-style button with rounded edges.
|
|
2423
|
+
*/
|
|
2424
|
+
"pill"?: boolean;
|
|
2425
|
+
/**
|
|
2426
|
+
* Indicates if activating the button should reset the form.
|
|
2427
|
+
*/
|
|
2428
|
+
"reset"?: boolean;
|
|
2429
|
+
/**
|
|
2430
|
+
* The button's size.
|
|
2431
|
+
*/
|
|
2432
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
2433
|
+
/**
|
|
2434
|
+
* Indicates if activating the button should submit the form. Ignored when `href` is set.
|
|
2435
|
+
*/
|
|
2436
|
+
"submit"?: boolean;
|
|
2437
|
+
/**
|
|
2438
|
+
* Tells the browser where to open the link. Only used when `href` is set.
|
|
2439
|
+
*/
|
|
2440
|
+
"target"?: '_blank' | '_parent' | '_self' | '_top';
|
|
2441
|
+
/**
|
|
2442
|
+
* The button's type.
|
|
2443
|
+
*/
|
|
2444
|
+
"type"?: 'secondary' | 'primary' | 'link' | 'success' | 'warning' | 'danger' | 'action';
|
|
2445
|
+
/**
|
|
2446
|
+
* An optional value for the button. Ignored when `href` is set.
|
|
2447
|
+
*/
|
|
2448
|
+
"value"?: string;
|
|
2449
|
+
}
|
|
2450
|
+
interface SixCard {
|
|
2451
|
+
}
|
|
2452
|
+
interface SixCheckbox {
|
|
2453
|
+
/**
|
|
2454
|
+
* Set to true to draw the checkbox in a checked state.
|
|
2455
|
+
*/
|
|
2456
|
+
"checked"?: boolean;
|
|
2457
|
+
/**
|
|
2458
|
+
* Set to true to disable the checkbox.
|
|
2459
|
+
*/
|
|
2460
|
+
"disabled"?: boolean;
|
|
2461
|
+
/**
|
|
2462
|
+
* Set to display the error text on blur and not when typing
|
|
2463
|
+
*/
|
|
2464
|
+
"errorOnBlur"?: boolean;
|
|
2465
|
+
/**
|
|
2466
|
+
* The checkbox's error text. Alternatively, you can use the error-text slot.
|
|
2467
|
+
*/
|
|
2468
|
+
"errorText"?: string;
|
|
2469
|
+
/**
|
|
2470
|
+
* Set to true to draw the checkbox in an indeterminate state.
|
|
2471
|
+
*/
|
|
2472
|
+
"indeterminate"?: boolean;
|
|
2473
|
+
/**
|
|
2474
|
+
* This will be true when the control is in an invalid state. Validity is determined by the `required` prop.
|
|
2475
|
+
*/
|
|
2476
|
+
"invalid"?: boolean;
|
|
2477
|
+
/**
|
|
2478
|
+
* The checkbox label. Alternatively, you can use the label slot.
|
|
2479
|
+
*/
|
|
2480
|
+
"label"?: string;
|
|
2481
|
+
/**
|
|
2482
|
+
* The checkbox's name attribute.
|
|
2483
|
+
*/
|
|
2484
|
+
"name"?: string;
|
|
2485
|
+
/**
|
|
2486
|
+
* Emitted when the control loses focus.
|
|
2487
|
+
*/
|
|
2488
|
+
"onSix-checkbox-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2489
|
+
/**
|
|
2490
|
+
* Emitted when the control's checked state changes.
|
|
2491
|
+
*/
|
|
2492
|
+
"onSix-checkbox-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2493
|
+
/**
|
|
2494
|
+
* Emitted when the control gains focus.
|
|
2495
|
+
*/
|
|
2496
|
+
"onSix-checkbox-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2497
|
+
/**
|
|
2498
|
+
* Set to true to make the checkbox a required field.
|
|
2499
|
+
*/
|
|
2500
|
+
"required"?: boolean;
|
|
2501
|
+
/**
|
|
2502
|
+
* The checkbox's value attribute.
|
|
2503
|
+
*/
|
|
2504
|
+
"value"?: string;
|
|
2505
|
+
}
|
|
2506
|
+
interface SixDatepicker {
|
|
2507
|
+
/**
|
|
2508
|
+
* Callback to determine which date in the datepicker should be selectable. the callback function will get a datestring as an argument, e.g. '2021-07-04' Usage e.g.: const datepicker = document.getElementById('allowed-date-picker'); datepicker.allowedDates = datestring => parseInt(datestring.split('-')[2], 10) % 2 === 0;
|
|
2509
|
+
*/
|
|
2510
|
+
"allowedDates"?: (date: Date) => boolean;
|
|
2511
|
+
/**
|
|
2512
|
+
* Set to true to add a clear button when the input is populated.
|
|
2513
|
+
*/
|
|
2514
|
+
"clearable"?: boolean;
|
|
2515
|
+
/**
|
|
2516
|
+
* Closes the datepicker dropdown after selection
|
|
2517
|
+
*/
|
|
2518
|
+
"closeOnSelect"?: boolean;
|
|
2519
|
+
/**
|
|
2520
|
+
* The dropdown will close when the user interacts outside of this element (e.g. clicking).
|
|
2521
|
+
*/
|
|
2522
|
+
"containingElement"?: HTMLElement;
|
|
2523
|
+
/**
|
|
2524
|
+
* Define the dateFormat. Valid formats are: 'dd.mm.yyyy' 'yyyy-mm-dd' 'dd-mm-yyyy' 'dd/mm/yyyy' 'yyyy/mm/dd' 'dd.mm.yy' 'yy-mm-dd' 'dd-mm-yy' 'dd/mm/yy' 'yy/mm/dd'
|
|
2525
|
+
*/
|
|
2526
|
+
"dateFormat"?: SixDateFormats;
|
|
2527
|
+
/**
|
|
2528
|
+
* Set the amount of time, in milliseconds, to wait to trigger the `dateChange` event after each keystroke.
|
|
2529
|
+
*/
|
|
2530
|
+
"debounce"?: number;
|
|
2531
|
+
/**
|
|
2532
|
+
* The date to defines where the datepicker popup starts. The prop accepts ISO 8601 date strings (YYYY-MM-DD).
|
|
2533
|
+
*/
|
|
2534
|
+
"defaultDate"?: string | null;
|
|
2535
|
+
/**
|
|
2536
|
+
* If `true` the component is disabled.
|
|
2537
|
+
*/
|
|
2538
|
+
"disabled"?: boolean;
|
|
2539
|
+
/**
|
|
2540
|
+
* Set to display the error text on blur and not when typing
|
|
2541
|
+
*/
|
|
2542
|
+
"errorOnBlur"?: boolean;
|
|
2543
|
+
/**
|
|
2544
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
2545
|
+
*/
|
|
2546
|
+
"errorText"?: string;
|
|
2547
|
+
/**
|
|
2548
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
2549
|
+
*/
|
|
2550
|
+
"hoist"?: boolean;
|
|
2551
|
+
/**
|
|
2552
|
+
* Set the position of the icon
|
|
2553
|
+
*/
|
|
2554
|
+
"iconPosition"?: 'left' | 'right';
|
|
2555
|
+
/**
|
|
2556
|
+
* Indicates whether or not the calendar should be shown as an inline (always open) component
|
|
2557
|
+
*/
|
|
2558
|
+
"inline"?: boolean;
|
|
2559
|
+
/**
|
|
2560
|
+
* The input's label. Alternatively, you can use the label slot.
|
|
2561
|
+
*/
|
|
2562
|
+
"label"?: string;
|
|
2563
|
+
/**
|
|
2564
|
+
* The language used to render the weekdays and months.
|
|
2565
|
+
*/
|
|
2566
|
+
"locale"?: 'en' | 'de' | 'fr' | 'it';
|
|
2567
|
+
/**
|
|
2568
|
+
* The maximum datetime allowed. Value must be a date object
|
|
2569
|
+
*/
|
|
2570
|
+
"max"?: Date | null;
|
|
2571
|
+
/**
|
|
2572
|
+
* The minimum datetime allowed. Value must be a date object
|
|
2573
|
+
*/
|
|
2574
|
+
"min"?: Date | null;
|
|
2575
|
+
/**
|
|
2576
|
+
* The input's name attribute.
|
|
2577
|
+
*/
|
|
2578
|
+
"name"?: string;
|
|
2579
|
+
/**
|
|
2580
|
+
* Emitted when a option got selected.
|
|
2581
|
+
*/
|
|
2582
|
+
"onSix-datepicker-blur"?: (event: CustomEvent<SixDatepickerSelectPayload>) => void;
|
|
2583
|
+
/**
|
|
2584
|
+
* Emitted when the clear button is activated.
|
|
2585
|
+
*/
|
|
2586
|
+
"onSix-datepicker-clear"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2587
|
+
/**
|
|
2588
|
+
* Emitted when a option got selected.
|
|
2589
|
+
*/
|
|
2590
|
+
"onSix-datepicker-select"?: (event: CustomEvent<SixDatepickerSelectPayload>) => void;
|
|
2591
|
+
/**
|
|
2592
|
+
* Indicates whether or not the calendar dropdown is open on startup. You can use this in lieu of the show/hide methods.
|
|
2593
|
+
*/
|
|
2594
|
+
"open"?: boolean;
|
|
2595
|
+
/**
|
|
2596
|
+
* The placeholder defines what text to be shown on the input element
|
|
2597
|
+
*/
|
|
2598
|
+
"placeholder"?: string | null;
|
|
2599
|
+
/**
|
|
2600
|
+
* The enforced placement of the dropdown panel.
|
|
2601
|
+
*/
|
|
2602
|
+
"placement"?: 'top' | 'bottom';
|
|
2603
|
+
/**
|
|
2604
|
+
* If `true` the user can only select a date via the component in the popup, but not directly edit the input field.
|
|
2605
|
+
*/
|
|
2606
|
+
"readonly"?: boolean;
|
|
2607
|
+
/**
|
|
2608
|
+
* Set to true to make the input a required field.
|
|
2609
|
+
*/
|
|
2610
|
+
"required"?: boolean;
|
|
2611
|
+
/**
|
|
2612
|
+
* Datepicker size.
|
|
2613
|
+
*/
|
|
2614
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
2615
|
+
/**
|
|
2616
|
+
* Set the type.
|
|
2617
|
+
*/
|
|
2618
|
+
"type"?: 'date' | 'date-time';
|
|
2619
|
+
/**
|
|
2620
|
+
* The value of the form field, which accepts a date object.
|
|
2621
|
+
*/
|
|
2622
|
+
"value"?: Date | null;
|
|
2623
|
+
}
|
|
2624
|
+
interface SixDetails {
|
|
2625
|
+
/**
|
|
2626
|
+
* Set to true to prevent the user from toggling the details.
|
|
2627
|
+
*/
|
|
2628
|
+
"disabled"?: boolean;
|
|
2629
|
+
"hasContent"?: boolean;
|
|
2630
|
+
/**
|
|
2631
|
+
* Set to true when you want to use six-details inline e.g. in a sidebar
|
|
2632
|
+
*/
|
|
2633
|
+
"inline"?: boolean;
|
|
2634
|
+
/**
|
|
2635
|
+
* Emitted after the details closes and all transitions are complete.
|
|
2636
|
+
*/
|
|
2637
|
+
"onSix-details-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2638
|
+
/**
|
|
2639
|
+
* Emitted after the details opens and all transitions are complete.
|
|
2640
|
+
*/
|
|
2641
|
+
"onSix-details-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2642
|
+
/**
|
|
2643
|
+
* Emitted when the details closes. Calling `event.preventDefault()` will prevent it from being closed.
|
|
2644
|
+
*/
|
|
2645
|
+
"onSix-details-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2646
|
+
/**
|
|
2647
|
+
* Emitted when the details opens. Calling `event.preventDefault()` will prevent it from being opened.
|
|
2648
|
+
*/
|
|
2649
|
+
"onSix-details-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2650
|
+
/**
|
|
2651
|
+
* Indicates whether or not the details is open. You can use this in lieu of the show/hide methods.
|
|
2652
|
+
*/
|
|
2653
|
+
"open"?: boolean;
|
|
2654
|
+
/**
|
|
2655
|
+
* Set to true when you want details without content to be selectable. This is important if you e.g. have a toggled sidebar where some menus have no children
|
|
2656
|
+
*/
|
|
2657
|
+
"selectableEmpty"?: boolean;
|
|
2658
|
+
/**
|
|
2659
|
+
* The summary to show in the details header. If you need to display HTML, use the `summary` slot instead.
|
|
2660
|
+
*/
|
|
2661
|
+
"summary"?: string;
|
|
2662
|
+
/**
|
|
2663
|
+
* The summary icon to show in the details header. If you need to display HTML, use the `summary-icon` slot instead.
|
|
2664
|
+
*/
|
|
2665
|
+
"summaryIcon"?: string;
|
|
2666
|
+
/**
|
|
2667
|
+
* The icon's size.
|
|
2668
|
+
*/
|
|
2669
|
+
"summaryIconSize"?: | 'inherit'
|
|
2670
|
+
| 'xSmall'
|
|
2671
|
+
| 'small'
|
|
2672
|
+
| 'medium'
|
|
2673
|
+
| 'large'
|
|
2674
|
+
| 'xLarge'
|
|
2675
|
+
| 'xxLarge'
|
|
2676
|
+
| 'xxxLarge';
|
|
2677
|
+
}
|
|
2678
|
+
interface SixDialog {
|
|
2679
|
+
/**
|
|
2680
|
+
* The dialog's label as displayed in the header. You should always include a relevant label even when using `no-header`, as it is required for proper accessibility.
|
|
2681
|
+
*/
|
|
2682
|
+
"label"?: string;
|
|
2683
|
+
/**
|
|
2684
|
+
* Set to true to disable the header. This will also remove the default close button, so please ensure you provide an easy, accessible way for users to dismiss the dialog.
|
|
2685
|
+
*/
|
|
2686
|
+
"noHeader"?: boolean;
|
|
2687
|
+
/**
|
|
2688
|
+
* Emitted after the dialog closes and all transitions are complete.
|
|
2689
|
+
*/
|
|
2690
|
+
"onSix-dialog-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2691
|
+
/**
|
|
2692
|
+
* Emitted after the dialog opens and all transitions are complete.
|
|
2693
|
+
*/
|
|
2694
|
+
"onSix-dialog-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2695
|
+
/**
|
|
2696
|
+
* Emitted when the dialog closes. Calling `event.preventDefault()` will prevent it from being closed.
|
|
2697
|
+
*/
|
|
2698
|
+
"onSix-dialog-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2699
|
+
/**
|
|
2700
|
+
* Emitted when the dialog opens and the panel gains focus. Calling `event.preventDefault()` will prevent focus and allow you to set it on a different element in the dialog, such as an input or button.
|
|
2701
|
+
*/
|
|
2702
|
+
"onSix-dialog-initial-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2703
|
+
/**
|
|
2704
|
+
* Emitted when the overlay is clicked. Calling `event.preventDefault()` will prevent the dialog from closing.
|
|
2705
|
+
*/
|
|
2706
|
+
"onSix-dialog-overlay-dismiss"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2707
|
+
/**
|
|
2708
|
+
* Emitted when the dialog opens. Calling `event.preventDefault()` will prevent it from being opened.
|
|
2709
|
+
*/
|
|
2710
|
+
"onSix-dialog-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2711
|
+
/**
|
|
2712
|
+
* Indicates whether or not the dialog is open. You can use this in lieu of the show/hide methods.
|
|
2713
|
+
*/
|
|
2714
|
+
"open"?: boolean;
|
|
2715
|
+
}
|
|
2716
|
+
interface SixDrawer {
|
|
2717
|
+
/**
|
|
2718
|
+
* By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of its parent element, set this prop and add `position: relative` to the parent.
|
|
2719
|
+
*/
|
|
2720
|
+
"contained"?: boolean;
|
|
2721
|
+
/**
|
|
2722
|
+
* The drawer's label as displayed in the header. You should always include a relevant label even when using `no-header`, as it is required for proper accessibility.
|
|
2723
|
+
*/
|
|
2724
|
+
"label"?: string;
|
|
2725
|
+
/**
|
|
2726
|
+
* Removes the header. This will also remove the default close button, so please ensure you provide an easy, accessible way for users to dismiss the drawer.
|
|
2727
|
+
*/
|
|
2728
|
+
"noHeader"?: boolean;
|
|
2729
|
+
/**
|
|
2730
|
+
* Emitted after the drawer closes and all transitions are complete.
|
|
2731
|
+
*/
|
|
2732
|
+
"onSix-drawer-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2733
|
+
/**
|
|
2734
|
+
* Emitted after the drawer opens and all transitions are complete.
|
|
2735
|
+
*/
|
|
2736
|
+
"onSix-drawer-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2737
|
+
/**
|
|
2738
|
+
* Emitted when the drawer closes. Calling `event.preventDefault()` will prevent it from being closed.
|
|
2739
|
+
*/
|
|
2740
|
+
"onSix-drawer-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2741
|
+
/**
|
|
2742
|
+
* Emitted when the drawer opens and the panel gains focus. Calling `event.preventDefault()` will prevent focus and allow you to set it on a different element in the drawer, such as an input or button.
|
|
2743
|
+
*/
|
|
2744
|
+
"onSix-drawer-initial-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2745
|
+
/**
|
|
2746
|
+
* Emitted when the overlay is clicked. Calling `event.preventDefault()` will prevent the drawer from closing.
|
|
2747
|
+
*/
|
|
2748
|
+
"onSix-drawer-overlay-dismiss"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2749
|
+
/**
|
|
2750
|
+
* Emitted when the drawer opens. Calling `event.preventDefault()` will prevent it from being opened.
|
|
2751
|
+
*/
|
|
2752
|
+
"onSix-drawer-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2753
|
+
/**
|
|
2754
|
+
* Indicates whether or not the drawer is open. You can use this in lieu of the show/hide methods.
|
|
2755
|
+
*/
|
|
2756
|
+
"open"?: boolean;
|
|
2757
|
+
/**
|
|
2758
|
+
* The direction from which the drawer will open.
|
|
2759
|
+
*/
|
|
2760
|
+
"placement"?: 'top' | 'right' | 'bottom' | 'left';
|
|
2761
|
+
}
|
|
2762
|
+
interface SixDropdown {
|
|
2763
|
+
/**
|
|
2764
|
+
* Set to true to allow async filtering. When you enter something in the search field the component will only emit an event but not filter any elements itself. You can then simply listen to the 'six-async-filter-fired' event to manage the shown menu-items yourself
|
|
2765
|
+
*/
|
|
2766
|
+
"asyncFilter"?: boolean;
|
|
2767
|
+
/**
|
|
2768
|
+
* By default the search field will be focused when opening a dropdown with filtering enabled.
|
|
2769
|
+
*/
|
|
2770
|
+
"autofocusFilter"?: boolean;
|
|
2771
|
+
/**
|
|
2772
|
+
* Determines whether the dropdown should hide when a menu item is selected.
|
|
2773
|
+
*/
|
|
2774
|
+
"closeOnSelect"?: boolean;
|
|
2775
|
+
/**
|
|
2776
|
+
* The dropdown will close when the user interacts outside of this element (e.g. clicking).
|
|
2777
|
+
*/
|
|
2778
|
+
"containingElement"?: HTMLElement;
|
|
2779
|
+
/**
|
|
2780
|
+
* The panel can be opend/closed by pressing the spacebar or the enter key. In some cases you might want to avoid this
|
|
2781
|
+
*/
|
|
2782
|
+
"disableHideOnEnterAndSpace"?: boolean;
|
|
2783
|
+
/**
|
|
2784
|
+
* The distance in pixels from which to offset the panel away from its trigger.
|
|
2785
|
+
*/
|
|
2786
|
+
"distance"?: number;
|
|
2787
|
+
/**
|
|
2788
|
+
* Set to true to allow auto filtering for entries in the dropdown. With this flag the dropdown will automatically filter itsel. If you need to coordinate the shown elements yourself, e.g. because you need to call an endpoint use asyncFilter instead
|
|
2789
|
+
*/
|
|
2790
|
+
"filter"?: boolean;
|
|
2791
|
+
/**
|
|
2792
|
+
* The debounce for the filter callbacks.
|
|
2793
|
+
*/
|
|
2794
|
+
"filterDebounce"?: number;
|
|
2795
|
+
/**
|
|
2796
|
+
* The filter's placeholder text.
|
|
2797
|
+
*/
|
|
2798
|
+
"filterPlaceholder"?: string;
|
|
2799
|
+
/**
|
|
2800
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
2801
|
+
*/
|
|
2802
|
+
"hoist"?: boolean;
|
|
2803
|
+
/**
|
|
2804
|
+
* Emitted when the async filter is triggered
|
|
2805
|
+
*/
|
|
2806
|
+
"onSix-async-filter-fired"?: (event: CustomEvent<SixDropdownAsyncFilterPayload>) => void;
|
|
2807
|
+
/**
|
|
2808
|
+
* Emitted after the dropdown closes and all transitions are complete.
|
|
2809
|
+
*/
|
|
2810
|
+
"onSix-dropdown-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2811
|
+
/**
|
|
2812
|
+
* Emitted after the dropdown opens and all transitions are complete.
|
|
2813
|
+
*/
|
|
2814
|
+
"onSix-dropdown-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2815
|
+
/**
|
|
2816
|
+
* Emitted when the auto filter is triggered
|
|
2817
|
+
*/
|
|
2818
|
+
"onSix-dropdown-auto-filter-fired"?: (event: CustomEvent<SixDropdownAutoFilterPayload>) => void;
|
|
2819
|
+
/**
|
|
2820
|
+
* Emitted when the dropdown closes. Calling `event.preventDefault()` will prevent it from being closed.
|
|
2821
|
+
*/
|
|
2822
|
+
"onSix-dropdown-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2823
|
+
/**
|
|
2824
|
+
* Emitted when the user scrolls inside dropdown panel.
|
|
2825
|
+
*/
|
|
2826
|
+
"onSix-dropdown-scroll"?: (event: CustomEvent<SixDropdownScrollPayload>) => void;
|
|
2827
|
+
/**
|
|
2828
|
+
* Emitted when the dropdown opens. Calling `event.preventDefault()` will prevent it from being opened.
|
|
2829
|
+
*/
|
|
2830
|
+
"onSix-dropdown-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2831
|
+
/**
|
|
2832
|
+
* Indicates whether or not the dropdown is open. You can use this in lieu of the show/hide methods.
|
|
2833
|
+
*/
|
|
2834
|
+
"open"?: boolean;
|
|
2835
|
+
/**
|
|
2836
|
+
* Set the options to be shown in the dropdown (alternative to setting the elements via html)
|
|
2837
|
+
*/
|
|
2838
|
+
"options"?: SixMenuItemData[] | null;
|
|
2839
|
+
/**
|
|
2840
|
+
* The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel inside of the viewport.
|
|
2841
|
+
*/
|
|
2842
|
+
"placement"?: | 'top'
|
|
2843
|
+
| 'top-start'
|
|
2844
|
+
| 'top-end'
|
|
2845
|
+
| 'bottom'
|
|
2846
|
+
| 'bottom-start'
|
|
2847
|
+
| 'bottom-end'
|
|
2848
|
+
| 'right'
|
|
2849
|
+
| 'right-start'
|
|
2850
|
+
| 'right-end'
|
|
2851
|
+
| 'left'
|
|
2852
|
+
| 'left-start'
|
|
2853
|
+
| 'left-end';
|
|
2854
|
+
/**
|
|
2855
|
+
* The distance in pixels from which to offset the panel along its trigger.
|
|
2856
|
+
*/
|
|
2857
|
+
"skidding"?: number;
|
|
2858
|
+
/**
|
|
2859
|
+
* Defines whether the menu list will be rendered virtually i.e. only the elements actually shown (and a couple around) are actually rendered in the DOM. If you use virtual scrolling pass the elements via prop instead of via slot.
|
|
2860
|
+
*/
|
|
2861
|
+
"virtualScroll"?: boolean;
|
|
2862
|
+
}
|
|
2863
|
+
interface SixErrorPage {
|
|
2864
|
+
/**
|
|
2865
|
+
* Defines a custom description.
|
|
2866
|
+
*/
|
|
2867
|
+
"customDescription"?: string[];
|
|
2868
|
+
/**
|
|
2869
|
+
* Defines a custom icon.
|
|
2870
|
+
*/
|
|
2871
|
+
"customIcon"?: string;
|
|
2872
|
+
/**
|
|
2873
|
+
* Defines a custom title.
|
|
2874
|
+
*/
|
|
2875
|
+
"customTitle"?: string;
|
|
2876
|
+
/**
|
|
2877
|
+
* Defines error Code and thus displays the proper error page.
|
|
2878
|
+
*/
|
|
2879
|
+
"errorCode"?: number;
|
|
2880
|
+
/**
|
|
2881
|
+
* Defines language and thus displays the proper error page in the selected language.
|
|
2882
|
+
*/
|
|
2883
|
+
"language"?: 'en' | 'de';
|
|
2884
|
+
}
|
|
2885
|
+
interface SixFileList {
|
|
2886
|
+
}
|
|
2887
|
+
interface SixFileListItem {
|
|
2888
|
+
/**
|
|
2889
|
+
* The date when the file was uploaded
|
|
2890
|
+
*/
|
|
2891
|
+
"date"?: string;
|
|
2892
|
+
/**
|
|
2893
|
+
* An id to clearly identify the file
|
|
2894
|
+
*/
|
|
2895
|
+
"identifier"?: string;
|
|
2896
|
+
/**
|
|
2897
|
+
* The filename
|
|
2898
|
+
*/
|
|
2899
|
+
"name"?: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* Set to true if you don't want to allow to delete this file
|
|
2902
|
+
*/
|
|
2903
|
+
"nodelete"?: boolean;
|
|
2904
|
+
/**
|
|
2905
|
+
* Set to true if you don't want to allow to download this file
|
|
2906
|
+
*/
|
|
2907
|
+
"nodownload"?: boolean;
|
|
2908
|
+
/**
|
|
2909
|
+
* Triggered on file download.
|
|
2910
|
+
*/
|
|
2911
|
+
"onSix-file-list-item-download"?: (event: CustomEvent<SixFileListDownloadPayload>) => void;
|
|
2912
|
+
/**
|
|
2913
|
+
* Triggered on file remove.
|
|
2914
|
+
*/
|
|
2915
|
+
"onSix-file-list-item-remove"?: (event: CustomEvent<SixFileListRemovePayload>) => void;
|
|
2916
|
+
/**
|
|
2917
|
+
* The file size. This number will be divided by 1024 to show the filesize in KB
|
|
2918
|
+
*/
|
|
2919
|
+
"size"?: number;
|
|
2920
|
+
}
|
|
2921
|
+
interface SixFileUpload {
|
|
2922
|
+
/**
|
|
2923
|
+
* Accepted MIME-Types.
|
|
2924
|
+
*/
|
|
2925
|
+
"accept"?: string;
|
|
2926
|
+
/**
|
|
2927
|
+
* Set to true if file control should be small.
|
|
2928
|
+
*/
|
|
2929
|
+
"compact"?: boolean;
|
|
2930
|
+
/**
|
|
2931
|
+
* Set when button is disabled.
|
|
2932
|
+
*/
|
|
2933
|
+
"disabled"?: boolean;
|
|
2934
|
+
/**
|
|
2935
|
+
* Label of the drop area.
|
|
2936
|
+
*/
|
|
2937
|
+
"label"?: string;
|
|
2938
|
+
/**
|
|
2939
|
+
* Allowed max file size in bytes.
|
|
2940
|
+
*/
|
|
2941
|
+
"maxFileSize"?: number | undefined;
|
|
2942
|
+
/**
|
|
2943
|
+
* Triggers when an uploaded file doesn't match MIME type or max file size.
|
|
2944
|
+
*/
|
|
2945
|
+
"onSix-file-upload-failure"?: (event: CustomEvent<SixFileUploadFailurePayload>) => void;
|
|
2946
|
+
/**
|
|
2947
|
+
* Triggers when a file is added.
|
|
2948
|
+
*/
|
|
2949
|
+
"onSix-file-upload-success"?: (event: CustomEvent<SixFileUploadSuccessPayload>) => void;
|
|
2950
|
+
}
|
|
2951
|
+
interface SixFooter {
|
|
2952
|
+
}
|
|
2953
|
+
interface SixForm {
|
|
2954
|
+
/**
|
|
2955
|
+
* Prevent the form from validating inputs before submitting.
|
|
2956
|
+
*/
|
|
2957
|
+
"novalidate"?: boolean;
|
|
2958
|
+
/**
|
|
2959
|
+
* Emitted when the control's value changes.
|
|
2960
|
+
*/
|
|
2961
|
+
"onSix-form-change"?: (event: CustomEvent<SixFormChangePayload>) => void;
|
|
2962
|
+
/**
|
|
2963
|
+
* Emitted when the forms values are reset.
|
|
2964
|
+
*/
|
|
2965
|
+
"onSix-form-reset"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
2966
|
+
/**
|
|
2967
|
+
* Emitted when the form is submitted. This event will not be emitted if any form control inside of it is in an invalid state, unless the form has the `novalidate` attribute. Note that there is never a need to prevent this event, since it doen't send a GET or POST request like native forms. To "prevent" submission, use a conditional around the XHR request you use to submit the form's data with.
|
|
2968
|
+
*/
|
|
2969
|
+
"onSix-form-submit"?: (event: CustomEvent<SixFormSubmitPayload>) => void;
|
|
2970
|
+
}
|
|
2971
|
+
interface SixGroupLabel {
|
|
2972
|
+
/**
|
|
2973
|
+
* Set to true to disable the label.
|
|
2974
|
+
*/
|
|
2975
|
+
"disabled"?: boolean;
|
|
2976
|
+
/**
|
|
2977
|
+
* The wrapper label's help text. Alternatively, you can use the help-text slot.
|
|
2978
|
+
*/
|
|
2979
|
+
"helpText"?: string;
|
|
2980
|
+
/**
|
|
2981
|
+
* The wrapper label's label. Alternatively, you can use the label slot.
|
|
2982
|
+
*/
|
|
2983
|
+
"label"?: string;
|
|
2984
|
+
/**
|
|
2985
|
+
* The label's required attribute.
|
|
2986
|
+
*/
|
|
2987
|
+
"required"?: boolean;
|
|
2988
|
+
/**
|
|
2989
|
+
* The label's size.
|
|
2990
|
+
*/
|
|
2991
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
2992
|
+
}
|
|
2993
|
+
interface SixHeader {
|
|
2994
|
+
/**
|
|
2995
|
+
* Set whether the logo should be clickable
|
|
2996
|
+
*/
|
|
2997
|
+
"clickableLogo"?: boolean;
|
|
2998
|
+
/**
|
|
2999
|
+
* Emitted when the name of the selected app is clicked.
|
|
3000
|
+
*/
|
|
3001
|
+
"onSix-header-app-name-clicked"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3002
|
+
/**
|
|
3003
|
+
* Emitted when a menu item is in the app switcher menu is selected.
|
|
3004
|
+
*/
|
|
3005
|
+
"onSix-header-app-switcher-select"?: (event: CustomEvent<SixHeaderAppSwitcherSelectPayload>) => void;
|
|
3006
|
+
/**
|
|
3007
|
+
* Emitted when the hamburger menu is clicked.
|
|
3008
|
+
*/
|
|
3009
|
+
"onSix-header-hamburger-menu-clicked"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3010
|
+
/**
|
|
3011
|
+
* Emitted when the header logo is clicked.
|
|
3012
|
+
*/
|
|
3013
|
+
"onSix-header-logo-clicked"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3014
|
+
/**
|
|
3015
|
+
* Emitted when a menu item is in the profile menu is selected.
|
|
3016
|
+
*/
|
|
3017
|
+
"onSix-header-profile-select"?: (event: CustomEvent<SixHeaderProfileSelectPayload>) => void;
|
|
3018
|
+
/**
|
|
3019
|
+
* Emitted when search field is toggled.
|
|
3020
|
+
*/
|
|
3021
|
+
"onSix-header-search-field-toggle"?: (event: CustomEvent<SixHeaderSearchFieldToggle>) => void;
|
|
3022
|
+
/**
|
|
3023
|
+
* Set the hamburger menu icon to open or closed state
|
|
3024
|
+
*/
|
|
3025
|
+
"openHamburgerMenu"?: boolean;
|
|
3026
|
+
/**
|
|
3027
|
+
* Set the header search to be in an open or closed state
|
|
3028
|
+
*/
|
|
3029
|
+
"openSearch"?: boolean;
|
|
3030
|
+
/**
|
|
3031
|
+
* Indicates if content should be shifted down when search field is visible.
|
|
3032
|
+
*/
|
|
3033
|
+
"shiftContent"?: boolean;
|
|
3034
|
+
}
|
|
3035
|
+
interface SixIcon {
|
|
3036
|
+
/**
|
|
3037
|
+
* If set to true the default material outlined icons are not used.
|
|
3038
|
+
*/
|
|
3039
|
+
"filled"?: boolean;
|
|
3040
|
+
/**
|
|
3041
|
+
* The icon's size.
|
|
3042
|
+
*/
|
|
3043
|
+
"size"?: | 'inherit'
|
|
3044
|
+
| 'xSmall'
|
|
3045
|
+
| 'small'
|
|
3046
|
+
| 'medium'
|
|
3047
|
+
| 'large'
|
|
3048
|
+
| 'xLarge'
|
|
3049
|
+
| 'xxLarge'
|
|
3050
|
+
| 'xxxLarge';
|
|
3051
|
+
}
|
|
3052
|
+
interface SixIconButton {
|
|
3053
|
+
/**
|
|
3054
|
+
* Set to true to disable the button.
|
|
3055
|
+
*/
|
|
3056
|
+
"disabled"?: boolean;
|
|
3057
|
+
/**
|
|
3058
|
+
* HTML symbol code or entity.
|
|
3059
|
+
*/
|
|
3060
|
+
"html"?: string;
|
|
3061
|
+
/**
|
|
3062
|
+
* A description that gets read by screen readers and other assistive devices. For optimal accessibility, you should always include a label that describes what the icon button does.
|
|
3063
|
+
*/
|
|
3064
|
+
"label"?: string;
|
|
3065
|
+
/**
|
|
3066
|
+
* The name of the icon to draw.
|
|
3067
|
+
*/
|
|
3068
|
+
"name"?: string;
|
|
3069
|
+
/**
|
|
3070
|
+
* The icon's size.
|
|
3071
|
+
*/
|
|
3072
|
+
"size"?: 'xSmall' | 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge' | 'xxxLarge';
|
|
3073
|
+
}
|
|
3074
|
+
interface SixInput {
|
|
3075
|
+
/**
|
|
3076
|
+
* The input's autocaptialize attribute.
|
|
3077
|
+
*/
|
|
3078
|
+
"autocapitalize"?: string;
|
|
3079
|
+
/**
|
|
3080
|
+
* The input's autocomplete attribute.
|
|
3081
|
+
*/
|
|
3082
|
+
"autocomplete"?: string;
|
|
3083
|
+
/**
|
|
3084
|
+
* The input's autocorrect attribute.
|
|
3085
|
+
*/
|
|
3086
|
+
"autocorrect"?: string;
|
|
3087
|
+
/**
|
|
3088
|
+
* The input's autofocus attribute.
|
|
3089
|
+
*/
|
|
3090
|
+
"autofocus"?: boolean;
|
|
3091
|
+
/**
|
|
3092
|
+
* Set to true to add a clear button when the input is populated.
|
|
3093
|
+
*/
|
|
3094
|
+
"clearable"?: boolean;
|
|
3095
|
+
/**
|
|
3096
|
+
* Set to true to disable the input.
|
|
3097
|
+
*/
|
|
3098
|
+
"disabled"?: boolean;
|
|
3099
|
+
/**
|
|
3100
|
+
* Set to display the error text on blur and not when typing
|
|
3101
|
+
*/
|
|
3102
|
+
"errorOnBlur"?: boolean;
|
|
3103
|
+
/**
|
|
3104
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
3105
|
+
*/
|
|
3106
|
+
"errorText"?: string;
|
|
3107
|
+
/**
|
|
3108
|
+
* The input's help text. Alternatively, you can use the help-text slot.
|
|
3109
|
+
*/
|
|
3110
|
+
"helpText"?: string;
|
|
3111
|
+
/**
|
|
3112
|
+
* The input's inputmode attribute.
|
|
3113
|
+
*/
|
|
3114
|
+
"inputmode"?: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
|
|
3115
|
+
/**
|
|
3116
|
+
* This will be true when the control is in an invalid state. Validity is determined by props such as `type`, `required`, `minlength`, `maxlength`, and `pattern` using the browser's constraint validation API.
|
|
3117
|
+
*/
|
|
3118
|
+
"invalid"?: boolean;
|
|
3119
|
+
/**
|
|
3120
|
+
* The input's label. Alternatively, you can use the label slot.
|
|
3121
|
+
*/
|
|
3122
|
+
"label"?: string;
|
|
3123
|
+
/**
|
|
3124
|
+
* Set to render as line
|
|
3125
|
+
*/
|
|
3126
|
+
"line"?: boolean;
|
|
3127
|
+
/**
|
|
3128
|
+
* The input's maximum value.
|
|
3129
|
+
*/
|
|
3130
|
+
"max"?: number;
|
|
3131
|
+
/**
|
|
3132
|
+
* The maximum length of input that will be considered valid.
|
|
3133
|
+
*/
|
|
3134
|
+
"maxlength"?: number;
|
|
3135
|
+
/**
|
|
3136
|
+
* The input's minimum value.
|
|
3137
|
+
*/
|
|
3138
|
+
"min"?: number;
|
|
3139
|
+
/**
|
|
3140
|
+
* The minimum length of input that will be considered valid.
|
|
3141
|
+
*/
|
|
3142
|
+
"minlength"?: number;
|
|
3143
|
+
/**
|
|
3144
|
+
* The input's name attribute.
|
|
3145
|
+
*/
|
|
3146
|
+
"name"?: string;
|
|
3147
|
+
/**
|
|
3148
|
+
* Emitted when the control loses focus. Access the new value via event.target.value.
|
|
3149
|
+
*/
|
|
3150
|
+
"onSix-input-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3151
|
+
/**
|
|
3152
|
+
* Emitted when the control's value changes. Access the new value via event.target.value.
|
|
3153
|
+
*/
|
|
3154
|
+
"onSix-input-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3155
|
+
/**
|
|
3156
|
+
* Emitted when the clear button is activated.
|
|
3157
|
+
*/
|
|
3158
|
+
"onSix-input-clear"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3159
|
+
/**
|
|
3160
|
+
* Emitted when the control gains focus.
|
|
3161
|
+
*/
|
|
3162
|
+
"onSix-input-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3163
|
+
/**
|
|
3164
|
+
* Emitted when the control receives input. Access the new value via event.target.value.
|
|
3165
|
+
*/
|
|
3166
|
+
"onSix-input-input"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3167
|
+
/**
|
|
3168
|
+
* Emitted whenever the value changes. Access the new value via event.target.value. six-input-value-change will emit whenever the value changes. So be it on input or when dynamically set. six-input-input will only be emitted when the user enters data, but not when a value is dynamically set. six-input-change will only be emitted when the user either presses enter or leaves the input field after entering some data.
|
|
3169
|
+
*/
|
|
3170
|
+
"onSix-input-value-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3171
|
+
/**
|
|
3172
|
+
* A pattern to validate input against.
|
|
3173
|
+
*/
|
|
3174
|
+
"pattern"?: string;
|
|
3175
|
+
/**
|
|
3176
|
+
* Set to true to draw a pill-style input with rounded edges.
|
|
3177
|
+
*/
|
|
3178
|
+
"pill"?: boolean;
|
|
3179
|
+
/**
|
|
3180
|
+
* The input's placeholder text.
|
|
3181
|
+
*/
|
|
3182
|
+
"placeholder"?: string;
|
|
3183
|
+
/**
|
|
3184
|
+
* Set to true to make the input readonly.
|
|
3185
|
+
*/
|
|
3186
|
+
"readonly"?: boolean;
|
|
3187
|
+
/**
|
|
3188
|
+
* Set to true to make the input a required field.
|
|
3189
|
+
*/
|
|
3190
|
+
"required"?: boolean;
|
|
3191
|
+
/**
|
|
3192
|
+
* The input's size.
|
|
3193
|
+
*/
|
|
3194
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
3195
|
+
/**
|
|
3196
|
+
* Enables spell checking on the input.
|
|
3197
|
+
*/
|
|
3198
|
+
"spellcheck"?: boolean;
|
|
3199
|
+
/**
|
|
3200
|
+
* The input's step attribute.
|
|
3201
|
+
*/
|
|
3202
|
+
"step"?: number;
|
|
3203
|
+
/**
|
|
3204
|
+
* Set to true to add a password toggle button for password inputs.
|
|
3205
|
+
*/
|
|
3206
|
+
"togglePassword"?: boolean;
|
|
3207
|
+
/**
|
|
3208
|
+
* The input's type.
|
|
3209
|
+
*/
|
|
3210
|
+
"type"?: 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url';
|
|
3211
|
+
/**
|
|
3212
|
+
* The input's value attribute.
|
|
3213
|
+
*/
|
|
3214
|
+
"value"?: string;
|
|
3215
|
+
}
|
|
3216
|
+
interface SixItemPicker {
|
|
3217
|
+
/**
|
|
3218
|
+
* Set the amount of time, in milliseconds, to wait to trigger the `six-item-picker-change-debounced` event. If you want your change debounce event to not trigger when keeping the nav button pressed before, make sure debounce is a bit bigger than timeout, otherwise keeping the button pressed will trigger the event twice: once you click (and keep pressed) and once you release
|
|
3219
|
+
*/
|
|
3220
|
+
"debounce"?: number;
|
|
3221
|
+
/**
|
|
3222
|
+
* Set the amount of time, in milliseconds, to wait between switching to next item when mouse button is held pressed.
|
|
3223
|
+
*/
|
|
3224
|
+
"interval"?: number;
|
|
3225
|
+
/**
|
|
3226
|
+
* Defines a custom list of items you can iterate through
|
|
3227
|
+
*/
|
|
3228
|
+
"items"?: string[];
|
|
3229
|
+
/**
|
|
3230
|
+
* The maximum value allowed to pick.
|
|
3231
|
+
*/
|
|
3232
|
+
"max"?: number | string;
|
|
3233
|
+
/**
|
|
3234
|
+
* The minimum value allowed to pick.
|
|
3235
|
+
*/
|
|
3236
|
+
"min"?: number | string;
|
|
3237
|
+
/**
|
|
3238
|
+
* Emitted when the item picker's value changes
|
|
3239
|
+
*/
|
|
3240
|
+
"onSix-item-picker-change"?: (event: CustomEvent<SixItemPickerChangePayload>) => void;
|
|
3241
|
+
/**
|
|
3242
|
+
* Emitted when the item picker's value changes, but debounced
|
|
3243
|
+
*/
|
|
3244
|
+
"onSix-item-picker-change-debounced"?: (event: CustomEvent<SixItemPickerChangePayload>) => void;
|
|
3245
|
+
/**
|
|
3246
|
+
* Defines whether the items should be padded
|
|
3247
|
+
*/
|
|
3248
|
+
"padded"?: boolean;
|
|
3249
|
+
/**
|
|
3250
|
+
* Defines the character used for padding
|
|
3251
|
+
*/
|
|
3252
|
+
"paddingChar"?: string;
|
|
3253
|
+
/**
|
|
3254
|
+
* Defines whether the padding should be before or after the value. You can either use 'before' or 'after'. By default before is selected
|
|
3255
|
+
*/
|
|
3256
|
+
"paddingDirection"?: ItemPickerPaddingDirection;
|
|
3257
|
+
/**
|
|
3258
|
+
* Defines the length of the padded area
|
|
3259
|
+
*/
|
|
3260
|
+
"paddingLength"?: number;
|
|
3261
|
+
/**
|
|
3262
|
+
* Define whether the picker should to a roundtrip i.e. start at max when reaching min and vice versa.
|
|
3263
|
+
*/
|
|
3264
|
+
"roundtrip"?: boolean;
|
|
3265
|
+
/**
|
|
3266
|
+
* Defines how many steps should be taken when navigating
|
|
3267
|
+
*/
|
|
3268
|
+
"step"?: number;
|
|
3269
|
+
/**
|
|
3270
|
+
* Set the amount of time, in milliseconds, to wait to trigger faster switching between items.
|
|
3271
|
+
*/
|
|
3272
|
+
"timeout"?: number;
|
|
3273
|
+
/**
|
|
3274
|
+
* The type of items you want to rotate through.
|
|
3275
|
+
*/
|
|
3276
|
+
"type"?: ItemPickerType;
|
|
3277
|
+
/**
|
|
3278
|
+
* The item picker's value attribute.
|
|
3279
|
+
*/
|
|
3280
|
+
"value"?: number | string;
|
|
3281
|
+
}
|
|
3282
|
+
interface SixLanguageSwitcher {
|
|
3283
|
+
/**
|
|
3284
|
+
* The languages which should be selectable options.
|
|
3285
|
+
*/
|
|
3286
|
+
"languages"?: string[] | SixLanguageSwitcherInput[];
|
|
3287
|
+
/**
|
|
3288
|
+
* Emitted when the language switchers value changes
|
|
3289
|
+
*/
|
|
3290
|
+
"onSix-language-switcher-change"?: (event: CustomEvent<SixLanguageSwitcherChangePayload>) => void;
|
|
3291
|
+
/**
|
|
3292
|
+
* The language which should be shown as selected
|
|
3293
|
+
*/
|
|
3294
|
+
"selected"?: string;
|
|
3295
|
+
}
|
|
3296
|
+
interface SixLayoutGrid {
|
|
3297
|
+
/**
|
|
3298
|
+
* Set the number of grid columns
|
|
3299
|
+
*/
|
|
3300
|
+
"columns"?: any;
|
|
3301
|
+
}
|
|
3302
|
+
interface SixMainContainer {
|
|
3303
|
+
/**
|
|
3304
|
+
* Set to false to remove top and bottom padding.
|
|
3305
|
+
*/
|
|
3306
|
+
"padded"?: boolean;
|
|
3307
|
+
}
|
|
3308
|
+
interface SixMenu {
|
|
3309
|
+
/**
|
|
3310
|
+
* Used for virtual scrolling Define how many items should be rendered in the DOM when using virtual scrolling
|
|
3311
|
+
*/
|
|
3312
|
+
"itemSize"?: number;
|
|
3313
|
+
/**
|
|
3314
|
+
* Set the options to be shown in the dropdown
|
|
3315
|
+
*/
|
|
3316
|
+
"items"?: SixMenuItemData[] | null;
|
|
3317
|
+
/**
|
|
3318
|
+
* Defines how many items should be shown. If the number of items is larger than this properties a scrollbar will be shown
|
|
3319
|
+
*/
|
|
3320
|
+
"itemsShown"?: number;
|
|
3321
|
+
/**
|
|
3322
|
+
* Emitted when a menu item is selected.
|
|
3323
|
+
*/
|
|
3324
|
+
"onSix-menu-item-selected"?: (event: CustomEvent<SixMenuItemSelectedPayload>) => void;
|
|
3325
|
+
/**
|
|
3326
|
+
* Set to true to remove the box-shadow
|
|
3327
|
+
*/
|
|
3328
|
+
"removeBoxShadow"?: boolean;
|
|
3329
|
+
/**
|
|
3330
|
+
* Used for virtual scrolling Define the debounce for listening on scrolling changes in milliseconds. The lower the number the more sensitive the component reacts to scrolling changes.
|
|
3331
|
+
*/
|
|
3332
|
+
"scrollingDebounce"?: number;
|
|
3333
|
+
/**
|
|
3334
|
+
* Defines whether the menu list will be rendered virtually i.e. only the elements actually shown (and a couple around) are actually rendered in the DOM. If you use virtual scrolling pass the elements via prop instead of via slot.
|
|
3335
|
+
*/
|
|
3336
|
+
"virtualScroll"?: boolean;
|
|
3337
|
+
}
|
|
3338
|
+
interface SixMenuDivider {
|
|
3339
|
+
}
|
|
3340
|
+
interface SixMenuItem {
|
|
3341
|
+
/**
|
|
3342
|
+
* Set to true to draw the item in a checked state.
|
|
3343
|
+
*/
|
|
3344
|
+
"checked"?: boolean;
|
|
3345
|
+
/**
|
|
3346
|
+
* Set to true to draw the menu item in a disabled state.
|
|
3347
|
+
*/
|
|
3348
|
+
"disabled"?: boolean;
|
|
3349
|
+
/**
|
|
3350
|
+
* A unique value to store in the menu item. This can be used as a way to identify menu items when selected.
|
|
3351
|
+
*/
|
|
3352
|
+
"value"?: string;
|
|
3353
|
+
}
|
|
3354
|
+
interface SixMenuLabel {
|
|
3355
|
+
}
|
|
3356
|
+
interface SixPicto {
|
|
3357
|
+
/**
|
|
3358
|
+
* Defines the size of the icon.
|
|
3359
|
+
*/
|
|
3360
|
+
"size"?: 'xSmall' | 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge' | 'xxxLarge' | '4xl';
|
|
3361
|
+
}
|
|
3362
|
+
interface SixProgressBar {
|
|
3363
|
+
/**
|
|
3364
|
+
* When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.
|
|
3365
|
+
*/
|
|
3366
|
+
"indeterminate"?: boolean;
|
|
3367
|
+
/**
|
|
3368
|
+
* The progress bar's percentage, 0 to 100.
|
|
3369
|
+
*/
|
|
3370
|
+
"percentage"?: number;
|
|
3371
|
+
}
|
|
3372
|
+
interface SixProgressRing {
|
|
3373
|
+
/**
|
|
3374
|
+
* The current progress percentage, 0 - 100.
|
|
3375
|
+
*/
|
|
3376
|
+
"percentage"?: number;
|
|
3377
|
+
/**
|
|
3378
|
+
* The size of the progress ring in pixels.
|
|
3379
|
+
*/
|
|
3380
|
+
"size"?: number;
|
|
3381
|
+
/**
|
|
3382
|
+
* The stroke width of the progress ring in pixels.
|
|
3383
|
+
*/
|
|
3384
|
+
"strokeWidth"?: number;
|
|
3385
|
+
}
|
|
3386
|
+
interface SixRadio {
|
|
3387
|
+
/**
|
|
3388
|
+
* Set to true to draw the radio in a checked state.
|
|
3389
|
+
*/
|
|
3390
|
+
"checked"?: boolean;
|
|
3391
|
+
/**
|
|
3392
|
+
* Set to true to disable the radio.
|
|
3393
|
+
*/
|
|
3394
|
+
"disabled"?: boolean;
|
|
3395
|
+
/**
|
|
3396
|
+
* This will be true when the control is in an invalid state. Validity in range inputs is determined by the message provided by the `setCustomValidity` method.
|
|
3397
|
+
*/
|
|
3398
|
+
"invalid"?: boolean;
|
|
3399
|
+
/**
|
|
3400
|
+
* The radio's name attribute.
|
|
3401
|
+
*/
|
|
3402
|
+
"name"?: string;
|
|
3403
|
+
/**
|
|
3404
|
+
* Emitted when the control loses focus.
|
|
3405
|
+
*/
|
|
3406
|
+
"onSix-radio-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3407
|
+
/**
|
|
3408
|
+
* Emitted when the control's checked state changes.
|
|
3409
|
+
*/
|
|
3410
|
+
"onSix-radio-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3411
|
+
/**
|
|
3412
|
+
* Emitted when the control gains focus.
|
|
3413
|
+
*/
|
|
3414
|
+
"onSix-radio-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3415
|
+
/**
|
|
3416
|
+
* The radio's value attribute.
|
|
3417
|
+
*/
|
|
3418
|
+
"value"?: string;
|
|
3419
|
+
}
|
|
3420
|
+
interface SixRange {
|
|
3421
|
+
/**
|
|
3422
|
+
* Set to true to disable the input.
|
|
3423
|
+
*/
|
|
3424
|
+
"disabled"?: boolean;
|
|
3425
|
+
/**
|
|
3426
|
+
* Set to display the error text on blur and not when typing
|
|
3427
|
+
*/
|
|
3428
|
+
"errorOnBlur"?: boolean;
|
|
3429
|
+
/**
|
|
3430
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
3431
|
+
*/
|
|
3432
|
+
"errorText"?: string;
|
|
3433
|
+
/**
|
|
3434
|
+
* The range's help text. Alternatively, you can use the help-text slot.
|
|
3435
|
+
*/
|
|
3436
|
+
"helpText"?: string;
|
|
3437
|
+
/**
|
|
3438
|
+
* This will be true when the control is in an invalid state. Validity in range inputs is determined by the message provided by the `setCustomValidity` method.
|
|
3439
|
+
*/
|
|
3440
|
+
"invalid"?: boolean;
|
|
3441
|
+
/**
|
|
3442
|
+
* The range's label. Alternatively, you can use the label slot.
|
|
3443
|
+
*/
|
|
3444
|
+
"label"?: string;
|
|
3445
|
+
/**
|
|
3446
|
+
* The input's max attribute.
|
|
3447
|
+
*/
|
|
3448
|
+
"max"?: number;
|
|
3449
|
+
/**
|
|
3450
|
+
* The input's min attribute.
|
|
3451
|
+
*/
|
|
3452
|
+
"min"?: number;
|
|
3453
|
+
/**
|
|
3454
|
+
* The input's name attribute.
|
|
3455
|
+
*/
|
|
3456
|
+
"name"?: string;
|
|
3457
|
+
/**
|
|
3458
|
+
* Emitted when the control loses focus.
|
|
3459
|
+
*/
|
|
3460
|
+
"onSix-range-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3461
|
+
/**
|
|
3462
|
+
* Emitted when the control's value changes.
|
|
3463
|
+
*/
|
|
3464
|
+
"onSix-range-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3465
|
+
/**
|
|
3466
|
+
* Emitted when the control gains focus.
|
|
3467
|
+
*/
|
|
3468
|
+
"onSix-range-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3469
|
+
/**
|
|
3470
|
+
* Set to true to make the input a required field.
|
|
3471
|
+
*/
|
|
3472
|
+
"required"?: boolean;
|
|
3473
|
+
/**
|
|
3474
|
+
* The input's step attribute.
|
|
3475
|
+
*/
|
|
3476
|
+
"step"?: number;
|
|
3477
|
+
/**
|
|
3478
|
+
* The preferred placedment of the tooltip.
|
|
3479
|
+
*/
|
|
3480
|
+
"tooltip"?: 'top' | 'bottom' | 'none';
|
|
3481
|
+
/**
|
|
3482
|
+
* A function used to format the tooltip's value.
|
|
3483
|
+
*/
|
|
3484
|
+
"tooltipFormatter"?: (value: number) => string;
|
|
3485
|
+
/**
|
|
3486
|
+
* The input's value attribute.
|
|
3487
|
+
*/
|
|
3488
|
+
"value"?: number;
|
|
3489
|
+
}
|
|
3490
|
+
interface SixRoot {
|
|
3491
|
+
/**
|
|
3492
|
+
* Breakpoint for smaller screens when the right sidebar is collapsed by default.
|
|
3493
|
+
*/
|
|
3494
|
+
"breakpoint"?: number;
|
|
3495
|
+
/**
|
|
3496
|
+
* Emitted when display size is updated.
|
|
3497
|
+
*/
|
|
3498
|
+
"onSix-root-collapsed"?: (event: CustomEvent<SixRootCollapsedPayload>) => void;
|
|
3499
|
+
/**
|
|
3500
|
+
* Defines whether the content section should be padded
|
|
3501
|
+
*/
|
|
3502
|
+
"padded"?: boolean;
|
|
3503
|
+
/**
|
|
3504
|
+
* Defines the stage of the application
|
|
3505
|
+
*/
|
|
3506
|
+
"stage"?: StageType;
|
|
3507
|
+
/**
|
|
3508
|
+
* Defines the version of the application
|
|
3509
|
+
*/
|
|
3510
|
+
"version"?: string;
|
|
3511
|
+
}
|
|
3512
|
+
interface SixSearchField {
|
|
3513
|
+
/**
|
|
3514
|
+
* Set to true to add a clear button when the input is populated.
|
|
3515
|
+
*/
|
|
3516
|
+
"clearable"?: boolean;
|
|
3517
|
+
/**
|
|
3518
|
+
* Debounce time in milliseconds, default is 300 ms
|
|
3519
|
+
*/
|
|
3520
|
+
"debounce"?: number;
|
|
3521
|
+
/**
|
|
3522
|
+
* Set to true to disable the input.
|
|
3523
|
+
*/
|
|
3524
|
+
"disabled"?: boolean;
|
|
3525
|
+
/**
|
|
3526
|
+
* Emitted when a search is triggered
|
|
3527
|
+
*/
|
|
3528
|
+
"onSix-search-field-change"?: (event: CustomEvent<SixSearchFieldChangePayload>) => void;
|
|
3529
|
+
/**
|
|
3530
|
+
* The input's placeholder text.
|
|
3531
|
+
*/
|
|
3532
|
+
"placeholder"?: string;
|
|
3533
|
+
/**
|
|
3534
|
+
* The input's value attribute.
|
|
3535
|
+
*/
|
|
3536
|
+
"value"?: string;
|
|
3537
|
+
}
|
|
3538
|
+
interface SixSelect {
|
|
3539
|
+
/**
|
|
3540
|
+
* Set to true to allow async filtering. When you enter something in the search field the component will only emit an event but not filter any elements itself. You can then simply listen to the 'six-async-filter-fired' event to manage the shown menu-items yourself
|
|
3541
|
+
*/
|
|
3542
|
+
"asyncFilter"?: boolean;
|
|
3543
|
+
/**
|
|
3544
|
+
* Set to true to turn the six-select into an autocomplete.
|
|
3545
|
+
*/
|
|
3546
|
+
"autocomplete"?: boolean;
|
|
3547
|
+
/**
|
|
3548
|
+
* Set to true to add a clear button when the select is populated.
|
|
3549
|
+
*/
|
|
3550
|
+
"clearable"?: boolean;
|
|
3551
|
+
/**
|
|
3552
|
+
* The default value the select will be reverted to when reset is executed
|
|
3553
|
+
*/
|
|
3554
|
+
"defaultValue"?: string | string[];
|
|
3555
|
+
/**
|
|
3556
|
+
* Set to true to disable the select control.
|
|
3557
|
+
*/
|
|
3558
|
+
"disabled"?: boolean;
|
|
3559
|
+
/**
|
|
3560
|
+
* Set to display the error text on blur and not when typing
|
|
3561
|
+
*/
|
|
3562
|
+
"errorOnBlur"?: boolean;
|
|
3563
|
+
/**
|
|
3564
|
+
* The select's error text. Alternatively, you can use the error-text slot.
|
|
3565
|
+
*/
|
|
3566
|
+
"errorText"?: string;
|
|
3567
|
+
/**
|
|
3568
|
+
* Set to true to allow filtering for entries in the dropdown
|
|
3569
|
+
*/
|
|
3570
|
+
"filter"?: boolean;
|
|
3571
|
+
/**
|
|
3572
|
+
* The debounce for the filter callbacks.
|
|
3573
|
+
*/
|
|
3574
|
+
"filterDebounce"?: number;
|
|
3575
|
+
/**
|
|
3576
|
+
* The filter's placeholder text.
|
|
3577
|
+
*/
|
|
3578
|
+
"filterPlaceholder"?: string;
|
|
3579
|
+
/**
|
|
3580
|
+
* The select's help text. Alternatively, you can use the help-text slot.
|
|
3581
|
+
*/
|
|
3582
|
+
"helpText"?: string;
|
|
3583
|
+
/**
|
|
3584
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
3585
|
+
*/
|
|
3586
|
+
"hoist"?: boolean;
|
|
3587
|
+
/**
|
|
3588
|
+
* The debounce for when the input changes for autocompletes should be emitted
|
|
3589
|
+
*/
|
|
3590
|
+
"inputDebounce"?: number;
|
|
3591
|
+
/**
|
|
3592
|
+
* This will be true when the control is in an invalid state. Validity is determined by the `required` prop.
|
|
3593
|
+
*/
|
|
3594
|
+
"invalid"?: boolean;
|
|
3595
|
+
/**
|
|
3596
|
+
* The select's label. Alternatively, you can use the label slot.
|
|
3597
|
+
*/
|
|
3598
|
+
"label"?: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* Set to render as line
|
|
3601
|
+
*/
|
|
3602
|
+
"line"?: boolean;
|
|
3603
|
+
/**
|
|
3604
|
+
* The maximum number of tags to show when `multiple` is true. After the maximum, "+n" will be shown to indicate the number of additional items that are selected. Set to -1 to remove the limit.
|
|
3605
|
+
*/
|
|
3606
|
+
"maxTagsVisible"?: number;
|
|
3607
|
+
/**
|
|
3608
|
+
* Set to true to enable multiselect.
|
|
3609
|
+
*/
|
|
3610
|
+
"multiple"?: boolean;
|
|
3611
|
+
/**
|
|
3612
|
+
* The select's name.
|
|
3613
|
+
*/
|
|
3614
|
+
"name"?: string;
|
|
3615
|
+
/**
|
|
3616
|
+
* Emitted when the control loses focus.
|
|
3617
|
+
*/
|
|
3618
|
+
"onSix-select-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3619
|
+
/**
|
|
3620
|
+
* Emitted when the control's value changes.
|
|
3621
|
+
*/
|
|
3622
|
+
"onSix-select-change"?: (event: CustomEvent<SixSelectChangePayload>) => void;
|
|
3623
|
+
/**
|
|
3624
|
+
* Emitted when the control gains focus.
|
|
3625
|
+
*/
|
|
3626
|
+
"onSix-select-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3627
|
+
/**
|
|
3628
|
+
* Set the options to be shown in the dropdown (alternative to setting the elements via html)
|
|
3629
|
+
*/
|
|
3630
|
+
"options"?: SixMenuItemData[] | null;
|
|
3631
|
+
/**
|
|
3632
|
+
* Set to true to draw a pill-style select with rounded edges.
|
|
3633
|
+
*/
|
|
3634
|
+
"pill"?: boolean;
|
|
3635
|
+
/**
|
|
3636
|
+
* The select's placeholder text.
|
|
3637
|
+
*/
|
|
3638
|
+
"placeholder"?: string;
|
|
3639
|
+
/**
|
|
3640
|
+
* The select's required attribute.
|
|
3641
|
+
*/
|
|
3642
|
+
"required"?: boolean;
|
|
3643
|
+
/**
|
|
3644
|
+
* The select's size.
|
|
3645
|
+
*/
|
|
3646
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
3647
|
+
/**
|
|
3648
|
+
* The value of the control. This will be a string or an array depending on `multiple`.
|
|
3649
|
+
*/
|
|
3650
|
+
"value"?: string | string[];
|
|
3651
|
+
/**
|
|
3652
|
+
* Defines whether the menu list will be rendered virtually i.e. only the elements actually shown (and a couple around) are actually rendered in the DOM. If you use virtual scrolling pass the elements via prop instead of via slot.
|
|
3653
|
+
*/
|
|
3654
|
+
"virtualScroll"?: boolean;
|
|
3655
|
+
}
|
|
3656
|
+
interface SixSidebar {
|
|
3657
|
+
/**
|
|
3658
|
+
* Emitted after the sidebar closes and all transitions are complete.
|
|
3659
|
+
*/
|
|
3660
|
+
"onSix-sidebar-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3661
|
+
/**
|
|
3662
|
+
* Emitted after the sidebar opens and all transitions are complete.
|
|
3663
|
+
*/
|
|
3664
|
+
"onSix-sidebar-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3665
|
+
/**
|
|
3666
|
+
* Emitted when the sidebar closes. Calling `event.preventDefault()` will prevent it from being closed.
|
|
3667
|
+
*/
|
|
3668
|
+
"onSix-sidebar-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3669
|
+
/**
|
|
3670
|
+
* Emitted when the sidebar opens and the panel gains focus. Calling `event.preventDefault()` will prevent focus and allow you to set it on a different element in the sidebar, such as an input or button.
|
|
3671
|
+
*/
|
|
3672
|
+
"onSix-sidebar-initial-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3673
|
+
/**
|
|
3674
|
+
* Emitted when the sidebar opens. Calling `event.preventDefault()` will prevent it from being opened.
|
|
3675
|
+
*/
|
|
3676
|
+
"onSix-sidebar-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3677
|
+
/**
|
|
3678
|
+
* Indicates whether or not the sidebar is open. You can use this in lieu of the show/hide methods.
|
|
3679
|
+
*/
|
|
3680
|
+
"open"?: boolean;
|
|
3681
|
+
/**
|
|
3682
|
+
* Sidebar position
|
|
3683
|
+
*/
|
|
3684
|
+
"position"?: 'left' | 'right';
|
|
3685
|
+
/**
|
|
3686
|
+
* Define whether sidebar is toggled meaning only one menu can be open at the same time
|
|
3687
|
+
*/
|
|
3688
|
+
"toggled"?: boolean;
|
|
3689
|
+
/**
|
|
3690
|
+
* Sidebar width
|
|
3691
|
+
*/
|
|
3692
|
+
"width"?: string;
|
|
3693
|
+
}
|
|
3694
|
+
interface SixSidebarItem {
|
|
3695
|
+
/**
|
|
3696
|
+
* Set to true to draw the sidebar item in a disabled state.
|
|
3697
|
+
*/
|
|
3698
|
+
"disabled"?: boolean;
|
|
3699
|
+
/**
|
|
3700
|
+
* Set to true to draw the item in a selected state.
|
|
3701
|
+
*/
|
|
3702
|
+
"selected"?: boolean;
|
|
3703
|
+
/**
|
|
3704
|
+
* A unique value to store in the sidebar item. This can be used as a way to identify sidebar items when selected.
|
|
3705
|
+
*/
|
|
3706
|
+
"value"?: string;
|
|
3707
|
+
}
|
|
3708
|
+
interface SixSidebarItemGroup {
|
|
3709
|
+
/**
|
|
3710
|
+
* Icon of the group
|
|
3711
|
+
*/
|
|
3712
|
+
"icon"?: string;
|
|
3713
|
+
/**
|
|
3714
|
+
* Title of item group
|
|
3715
|
+
*/
|
|
3716
|
+
"name"?: string;
|
|
3717
|
+
"open"?: boolean;
|
|
3718
|
+
/**
|
|
3719
|
+
* Custom summary icon name.
|
|
3720
|
+
*/
|
|
3721
|
+
"summaryIcon"?: string;
|
|
3722
|
+
/**
|
|
3723
|
+
* A unique value to store in the sidebar item of the group label. This can be used as a way to identify sidebar items when selected.
|
|
3724
|
+
*/
|
|
3725
|
+
"value"?: string;
|
|
3726
|
+
}
|
|
3727
|
+
interface SixSpinner {
|
|
3728
|
+
/**
|
|
3729
|
+
* Indicates if the spinner is shown as animated SIX logo or simple spinner.
|
|
3730
|
+
*/
|
|
3731
|
+
"six"?: boolean;
|
|
3732
|
+
}
|
|
3733
|
+
interface SixStageIndicator {
|
|
3734
|
+
/**
|
|
3735
|
+
* The indicators value attribute
|
|
3736
|
+
*/
|
|
3737
|
+
"stage"?: StageType;
|
|
3738
|
+
}
|
|
3739
|
+
interface SixSwitch {
|
|
3740
|
+
/**
|
|
3741
|
+
* Set to true to draw the switch in a checked state.
|
|
3742
|
+
*/
|
|
3743
|
+
"checked"?: boolean;
|
|
3744
|
+
/**
|
|
3745
|
+
* Set to true to disable the switch.
|
|
3746
|
+
*/
|
|
3747
|
+
"disabled"?: boolean;
|
|
3748
|
+
/**
|
|
3749
|
+
* This will be true when the control is in an invalid state. Validity is determined by the `required` prop.
|
|
3750
|
+
*/
|
|
3751
|
+
"invalid"?: boolean;
|
|
3752
|
+
/**
|
|
3753
|
+
* The switch's name attribute.
|
|
3754
|
+
*/
|
|
3755
|
+
"name"?: string;
|
|
3756
|
+
/**
|
|
3757
|
+
* Emitted when the control loses focus.
|
|
3758
|
+
*/
|
|
3759
|
+
"onSix-switch-blur"?: (event: CustomEvent<boolean>) => void;
|
|
3760
|
+
/**
|
|
3761
|
+
* Emitted when the control's checked state changes.
|
|
3762
|
+
*/
|
|
3763
|
+
"onSix-switch-change"?: (event: CustomEvent<boolean>) => void;
|
|
3764
|
+
/**
|
|
3765
|
+
* Emitted when the control gains focus.
|
|
3766
|
+
*/
|
|
3767
|
+
"onSix-switch-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3768
|
+
/**
|
|
3769
|
+
* Set to true to make the switch a required field.
|
|
3770
|
+
*/
|
|
3771
|
+
"required"?: boolean;
|
|
3772
|
+
/**
|
|
3773
|
+
* The switch's value attribute.
|
|
3774
|
+
*/
|
|
3775
|
+
"value"?: string;
|
|
3776
|
+
}
|
|
3777
|
+
interface SixTab {
|
|
3778
|
+
/**
|
|
3779
|
+
* Set to true to draw the tab in an active state.
|
|
3780
|
+
*/
|
|
3781
|
+
"active"?: boolean;
|
|
3782
|
+
/**
|
|
3783
|
+
* When true, the tab will be rendered with a close icon.
|
|
3784
|
+
*/
|
|
3785
|
+
"closable"?: boolean;
|
|
3786
|
+
/**
|
|
3787
|
+
* Set to true to draw the tab in a disabled state.
|
|
3788
|
+
*/
|
|
3789
|
+
"disabled"?: boolean;
|
|
3790
|
+
/**
|
|
3791
|
+
* Emitted when the tab is closable and the close button is activated.
|
|
3792
|
+
*/
|
|
3793
|
+
"onSix-tab-close"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3794
|
+
/**
|
|
3795
|
+
* The name of the tab panel the tab will control. The panel must be located in the same tab group.
|
|
3796
|
+
*/
|
|
3797
|
+
"panel"?: string;
|
|
3798
|
+
}
|
|
3799
|
+
interface SixTabGroup {
|
|
3800
|
+
/**
|
|
3801
|
+
* Disables the scroll arrows that appear when tabs overflow.
|
|
3802
|
+
*/
|
|
3803
|
+
"noScrollControls"?: boolean;
|
|
3804
|
+
/**
|
|
3805
|
+
* Emitted when a tab is hidden.
|
|
3806
|
+
*/
|
|
3807
|
+
"onSix-tab-hide"?: (event: CustomEvent<SixTabHidePayload>) => void;
|
|
3808
|
+
/**
|
|
3809
|
+
* Emitted when a tab is shown.
|
|
3810
|
+
*/
|
|
3811
|
+
"onSix-tab-show"?: (event: CustomEvent<SixTabShowPayload>) => void;
|
|
3812
|
+
/**
|
|
3813
|
+
* The placement of the tabs.
|
|
3814
|
+
*/
|
|
3815
|
+
"placement"?: 'top' | 'bottom' | 'left' | 'right';
|
|
3816
|
+
}
|
|
3817
|
+
interface SixTabPanel {
|
|
3818
|
+
/**
|
|
3819
|
+
* When true, the tab panel will be shown.
|
|
3820
|
+
*/
|
|
3821
|
+
"active"?: boolean;
|
|
3822
|
+
/**
|
|
3823
|
+
* The tab panel's name.
|
|
3824
|
+
*/
|
|
3825
|
+
"name"?: string;
|
|
3826
|
+
}
|
|
3827
|
+
interface SixTable {
|
|
3828
|
+
/**
|
|
3829
|
+
* Set to true to display loading indicator.
|
|
3830
|
+
*/
|
|
3831
|
+
"loading"?: boolean;
|
|
3832
|
+
/**
|
|
3833
|
+
* Emitted when table cell is clicked.
|
|
3834
|
+
*/
|
|
3835
|
+
"onSix-table-cell-clicked"?: (event: CustomEvent<TableCellClickedPayload<Item>>) => void;
|
|
3836
|
+
/**
|
|
3837
|
+
* Emitted when table is ready.
|
|
3838
|
+
*/
|
|
3839
|
+
"onSix-table-ready"?: (event: CustomEvent<TableReadyPayload>) => void;
|
|
3840
|
+
/**
|
|
3841
|
+
* Emitted when table row is clicked.
|
|
3842
|
+
*/
|
|
3843
|
+
"onSix-table-row-clicked"?: (event: CustomEvent<TableRowClickedPayload<Item>>) => void;
|
|
3844
|
+
/**
|
|
3845
|
+
* Set to true to stripe the table.
|
|
3846
|
+
*/
|
|
3847
|
+
"striped"?: boolean;
|
|
3848
|
+
}
|
|
3849
|
+
interface SixTableCell {
|
|
3850
|
+
}
|
|
3851
|
+
interface SixTableHeader {
|
|
3852
|
+
}
|
|
3853
|
+
interface SixTableHeaderCell {
|
|
3854
|
+
/**
|
|
3855
|
+
* Filter mode. Applied only when set.
|
|
3856
|
+
*/
|
|
3857
|
+
"filter"?: FilterMode;
|
|
3858
|
+
/**
|
|
3859
|
+
* Table row property name. Used in the custom events to identify the row.
|
|
3860
|
+
*/
|
|
3861
|
+
"name"?: keyof Item;
|
|
3862
|
+
/**
|
|
3863
|
+
* Emitted when filter model is updated.
|
|
3864
|
+
*/
|
|
3865
|
+
"onSix-table-header-cell-filter-updated"?: (event: CustomEvent<SixTableHeaderCellFilterUpdatedPayload>) => void;
|
|
3866
|
+
/**
|
|
3867
|
+
* Emitted when sort model is updated.
|
|
3868
|
+
*/
|
|
3869
|
+
"onSix-table-header-cell-sort-updated"?: (event: CustomEvent<SixTableHeaderCellSortUpdatedPayload>) => void;
|
|
3870
|
+
/**
|
|
3871
|
+
* Sort direction. Applied only when set.
|
|
3872
|
+
*/
|
|
3873
|
+
"sort"?: SortDirection;
|
|
3874
|
+
/**
|
|
3875
|
+
* Filter value. Applied only when filter mode is set.
|
|
3876
|
+
*/
|
|
3877
|
+
"value"?: string;
|
|
3878
|
+
}
|
|
3879
|
+
interface SixTableRow {
|
|
3880
|
+
}
|
|
3881
|
+
interface SixTag {
|
|
3882
|
+
/**
|
|
3883
|
+
* Set to true to make the tag clearable.
|
|
3884
|
+
*/
|
|
3885
|
+
"clearable"?: boolean;
|
|
3886
|
+
/**
|
|
3887
|
+
* Emitted when the clear button is activated.
|
|
3888
|
+
*/
|
|
3889
|
+
"onSix-tag-clear"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3890
|
+
/**
|
|
3891
|
+
* Set to true to draw a pill-style tag with rounded edges.
|
|
3892
|
+
*/
|
|
3893
|
+
"pill"?: boolean;
|
|
3894
|
+
/**
|
|
3895
|
+
* The tag's size.
|
|
3896
|
+
*/
|
|
3897
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
3898
|
+
/**
|
|
3899
|
+
* The tag's type.
|
|
3900
|
+
*/
|
|
3901
|
+
"type"?: 'primary' | 'success' | 'info' | 'warning' | 'danger' | 'action' | 'text';
|
|
3902
|
+
}
|
|
3903
|
+
interface SixTextarea {
|
|
3904
|
+
/**
|
|
3905
|
+
* The textarea's autocaptialize attribute.
|
|
3906
|
+
*/
|
|
3907
|
+
"autocapitalize"?: string;
|
|
3908
|
+
/**
|
|
3909
|
+
* The textarea's autocomplete attribute.
|
|
3910
|
+
*/
|
|
3911
|
+
"autocomplete"?: string;
|
|
3912
|
+
/**
|
|
3913
|
+
* The textarea's autocorrect attribute.
|
|
3914
|
+
*/
|
|
3915
|
+
"autocorrect"?: string;
|
|
3916
|
+
/**
|
|
3917
|
+
* The textarea's autofocus attribute.
|
|
3918
|
+
*/
|
|
3919
|
+
"autofocus"?: boolean;
|
|
3920
|
+
/**
|
|
3921
|
+
* Set to true to disable the textarea.
|
|
3922
|
+
*/
|
|
3923
|
+
"disabled"?: boolean;
|
|
3924
|
+
/**
|
|
3925
|
+
* Set to display the error text on blur and not when typing
|
|
3926
|
+
*/
|
|
3927
|
+
"errorOnBlur"?: boolean;
|
|
3928
|
+
/**
|
|
3929
|
+
* The textarea's error text. Alternatively, you can use the error-text slot.
|
|
3930
|
+
*/
|
|
3931
|
+
"errorText"?: string;
|
|
3932
|
+
/**
|
|
3933
|
+
* The textarea's help text. Alternatively, you can use the help-text slot.
|
|
3934
|
+
*/
|
|
3935
|
+
"helpText"?: string;
|
|
3936
|
+
/**
|
|
3937
|
+
* The textarea's inputmode attribute.
|
|
3938
|
+
*/
|
|
3939
|
+
"inputmode"?: 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
|
|
3940
|
+
/**
|
|
3941
|
+
* This will be true when the control is in an invalid state. Validity is determined by props such as `required`, `minlength`, and `maxlength` using the browser's constraint validation API.
|
|
3942
|
+
*/
|
|
3943
|
+
"invalid"?: boolean;
|
|
3944
|
+
/**
|
|
3945
|
+
* The textarea's label. Alternatively, you can use the label slot.
|
|
3946
|
+
*/
|
|
3947
|
+
"label"?: string;
|
|
3948
|
+
/**
|
|
3949
|
+
* The maximum length of input that will be considered valid.
|
|
3950
|
+
*/
|
|
3951
|
+
"maxlength"?: number;
|
|
3952
|
+
/**
|
|
3953
|
+
* The minimum length of input that will be considered valid.
|
|
3954
|
+
*/
|
|
3955
|
+
"minlength"?: number;
|
|
3956
|
+
/**
|
|
3957
|
+
* The textarea's name attribute.
|
|
3958
|
+
*/
|
|
3959
|
+
"name"?: string;
|
|
3960
|
+
/**
|
|
3961
|
+
* Emitted when the control loses focus. Access the new value via event.target.value.
|
|
3962
|
+
*/
|
|
3963
|
+
"onSix-textarea-blur"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3964
|
+
/**
|
|
3965
|
+
* Emitted when the control's value changes. Access the new value via event.target.value.
|
|
3966
|
+
*/
|
|
3967
|
+
"onSix-textarea-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3968
|
+
/**
|
|
3969
|
+
* Emitted when the control gains focus.
|
|
3970
|
+
*/
|
|
3971
|
+
"onSix-textarea-focus"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3972
|
+
/**
|
|
3973
|
+
* Emitted when the control receives input. Access the new value via event.target.value.
|
|
3974
|
+
*/
|
|
3975
|
+
"onSix-textarea-input"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3976
|
+
/**
|
|
3977
|
+
* Emitted whenever the value changes. Access the new value via event.target.value. six-textarea-value-change will emit whenever the value changes. So be it on textarea or when dynamically set. six-textarea-input will only be emitted when the user enters data, but not when a value is dynamically set. six-textarea-change will only be emitted when the user either presses enter or leaves the textarea field after entering some data.
|
|
3978
|
+
*/
|
|
3979
|
+
"onSix-textarea-value-change"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
3980
|
+
/**
|
|
3981
|
+
* The textarea's placeholder text.
|
|
3982
|
+
*/
|
|
3983
|
+
"placeholder"?: string;
|
|
3984
|
+
/**
|
|
3985
|
+
* Set to true for a readonly textarea.
|
|
3986
|
+
*/
|
|
3987
|
+
"readonly"?: boolean;
|
|
3988
|
+
/**
|
|
3989
|
+
* The textarea's required attribute.
|
|
3990
|
+
*/
|
|
3991
|
+
"required"?: boolean;
|
|
3992
|
+
/**
|
|
3993
|
+
* Controls how the textarea can be resized.
|
|
3994
|
+
*/
|
|
3995
|
+
"resize"?: 'none' | 'vertical' | 'auto';
|
|
3996
|
+
/**
|
|
3997
|
+
* The number of rows to display by default.
|
|
3998
|
+
*/
|
|
3999
|
+
"rows"?: number;
|
|
4000
|
+
/**
|
|
4001
|
+
* The textarea's size.
|
|
4002
|
+
*/
|
|
4003
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
4004
|
+
/**
|
|
4005
|
+
* The textarea's spellcheck attribute.
|
|
4006
|
+
*/
|
|
4007
|
+
"spellcheck"?: boolean;
|
|
4008
|
+
/**
|
|
4009
|
+
* The textarea's value attribute.
|
|
4010
|
+
*/
|
|
4011
|
+
"value"?: string;
|
|
4012
|
+
}
|
|
4013
|
+
interface SixTile {
|
|
4014
|
+
/**
|
|
4015
|
+
* Flag, whether the tile is closeable.
|
|
4016
|
+
*/
|
|
4017
|
+
"closeable"?: boolean;
|
|
4018
|
+
/**
|
|
4019
|
+
* Enables tile tooltip for tiles
|
|
4020
|
+
*/
|
|
4021
|
+
"disableTooltip"?: boolean;
|
|
4022
|
+
/**
|
|
4023
|
+
* Set to true to disable the tile.
|
|
4024
|
+
*/
|
|
4025
|
+
"disabled"?: boolean;
|
|
4026
|
+
/**
|
|
4027
|
+
* Flag, whether the tile should cast a shadow.
|
|
4028
|
+
*/
|
|
4029
|
+
"elevated"?: boolean;
|
|
4030
|
+
/**
|
|
4031
|
+
* The icon's name.
|
|
4032
|
+
*/
|
|
4033
|
+
"iconName"?: any;
|
|
4034
|
+
/**
|
|
4035
|
+
* The tile's label.
|
|
4036
|
+
*/
|
|
4037
|
+
"label"?: string;
|
|
4038
|
+
/**
|
|
4039
|
+
* Emitted when the tile was closed.
|
|
4040
|
+
*/
|
|
4041
|
+
"onSix-tile-closed"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4042
|
+
/**
|
|
4043
|
+
* Emitted when the tile is selected.
|
|
4044
|
+
*/
|
|
4045
|
+
"onSix-tile-selected"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4046
|
+
/**
|
|
4047
|
+
* The tile's size.
|
|
4048
|
+
*/
|
|
4049
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
4050
|
+
}
|
|
4051
|
+
interface SixTimepicker {
|
|
4052
|
+
/**
|
|
4053
|
+
* Set to true to add a clear button when the input is populated.
|
|
4054
|
+
*/
|
|
4055
|
+
"clearable"?: boolean;
|
|
4056
|
+
/**
|
|
4057
|
+
* Set the amount of time, in milliseconds, to wait to trigger the `six-timepicker-change-debounced` event. If you want your change debounce event to not trigger when keeping the nav button pressed before, make sure debounce is a bit bigger than timeout, otherwise keeping the button pressed will trigger the event twice: once you click (and keep pressed) and once you release
|
|
4058
|
+
*/
|
|
4059
|
+
"debounce"?: number;
|
|
4060
|
+
/**
|
|
4061
|
+
* The defaultTime defines the default setting for the timepicker when you open the popup. Default time must match the provided format.
|
|
4062
|
+
*/
|
|
4063
|
+
"defaultTime"?: string | null;
|
|
4064
|
+
/**
|
|
4065
|
+
* If `true` the component is disabled.
|
|
4066
|
+
*/
|
|
4067
|
+
"disabled"?: boolean;
|
|
4068
|
+
/**
|
|
4069
|
+
* Set to display the error text on blur and not when typing
|
|
4070
|
+
*/
|
|
4071
|
+
"errorOnBlur"?: boolean;
|
|
4072
|
+
/**
|
|
4073
|
+
* The input's error text. Alternatively, you can use the error-text slot.
|
|
4074
|
+
*/
|
|
4075
|
+
"errorText"?: string;
|
|
4076
|
+
/**
|
|
4077
|
+
* Define the time format. Valid formats are: HH:mm:ss hh:mm:ss:aa HH:mm:ss:ms hh:mm:ss:ms:aa HH:mm hh:mm:aa HH hh:aa mm ss ms where HH is the 24 hour format and hh is the 12 hour format Please notice that when using the 12-hour-clock (hh) you always need a period indicator (aa). So the time can be parsed as either am or pm
|
|
4078
|
+
*/
|
|
4079
|
+
"format"?: SixTimeFormat;
|
|
4080
|
+
/**
|
|
4081
|
+
* Enable this option to prevent the panel from being clipped when the component is placed inside a container with `overflow: auto|scroll`.
|
|
4082
|
+
*/
|
|
4083
|
+
"hoist"?: boolean;
|
|
4084
|
+
/**
|
|
4085
|
+
* Set the position of the icon
|
|
4086
|
+
*/
|
|
4087
|
+
"iconPosition"?: 'left' | 'right';
|
|
4088
|
+
/**
|
|
4089
|
+
* Indicates whether or not the timepicker should be shown as an inline (always open) component
|
|
4090
|
+
*/
|
|
4091
|
+
"inline"?: boolean;
|
|
4092
|
+
/**
|
|
4093
|
+
* Set the amount of time, in milliseconds, to wait between switching to next timeunit (e.g. next hour) when mouse button is held pressed.
|
|
4094
|
+
*/
|
|
4095
|
+
"interval"?: number;
|
|
4096
|
+
/**
|
|
4097
|
+
* The input's label. Alternatively, you can use the label slot.
|
|
4098
|
+
*/
|
|
4099
|
+
"label"?: string;
|
|
4100
|
+
/**
|
|
4101
|
+
* The input's name attribute.
|
|
4102
|
+
*/
|
|
4103
|
+
"name"?: string;
|
|
4104
|
+
/**
|
|
4105
|
+
* Emitted when the timepicker's value changes
|
|
4106
|
+
*/
|
|
4107
|
+
"onSix-timepicker-change"?: (event: CustomEvent<SixTimepickerChange>) => void;
|
|
4108
|
+
/**
|
|
4109
|
+
* Emitted when the timepicker's value changes, but debounced
|
|
4110
|
+
*/
|
|
4111
|
+
"onSix-timepicker-change-debounced"?: (event: CustomEvent<SixTimepickerChange>) => void;
|
|
4112
|
+
/**
|
|
4113
|
+
* Emitted when the clear button is activated.
|
|
4114
|
+
*/
|
|
4115
|
+
"onSix-timepicker-clear"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4116
|
+
/**
|
|
4117
|
+
* Indicates whether or not the timepicker dropdown is open on startup. You can use this in lieu of the show/hide methods.
|
|
4118
|
+
*/
|
|
4119
|
+
"open"?: boolean;
|
|
4120
|
+
/**
|
|
4121
|
+
* The placeholder defines what text to be shown on the input element
|
|
4122
|
+
*/
|
|
4123
|
+
"placeholder"?: string | null;
|
|
4124
|
+
/**
|
|
4125
|
+
* The enforced placement of the dropdown panel.
|
|
4126
|
+
*/
|
|
4127
|
+
"placement"?: 'top' | 'bottom';
|
|
4128
|
+
/**
|
|
4129
|
+
* If `true` the user can only select a time via the timepicker but not directly edit the input field.
|
|
4130
|
+
*/
|
|
4131
|
+
"readonly"?: boolean;
|
|
4132
|
+
/**
|
|
4133
|
+
* Set to true to make the input a required field.
|
|
4134
|
+
*/
|
|
4135
|
+
"required"?: boolean;
|
|
4136
|
+
/**
|
|
4137
|
+
* Define the separator to be shown between the time unit pickers. Please be aware that this property will modify the displayed separator only. The separator for a timestring is always expected to be a colon (eg. '13:52:20')
|
|
4138
|
+
*/
|
|
4139
|
+
"separator"?: string;
|
|
4140
|
+
/**
|
|
4141
|
+
* Timepicker size.
|
|
4142
|
+
*/
|
|
4143
|
+
"size"?: 'small' | 'medium' | 'large';
|
|
4144
|
+
/**
|
|
4145
|
+
* Set the amount of time, in milliseconds, to wait to trigger faster switching between timeunits (e.g. hours).
|
|
4146
|
+
*/
|
|
4147
|
+
"timeout"?: number;
|
|
4148
|
+
/**
|
|
4149
|
+
* The value of the timepicker provided as a string. The string mast match the provided format (or default format)
|
|
4150
|
+
*/
|
|
4151
|
+
"value"?: string | null;
|
|
4152
|
+
}
|
|
4153
|
+
interface SixTooltip {
|
|
4154
|
+
/**
|
|
4155
|
+
* The tooltip's content. Alternatively, you can use the content slot.
|
|
4156
|
+
*/
|
|
4157
|
+
"content"?: string;
|
|
4158
|
+
/**
|
|
4159
|
+
* Set to true to disable the tooltip so it won't show when triggered.
|
|
4160
|
+
*/
|
|
4161
|
+
"disabled"?: boolean;
|
|
4162
|
+
/**
|
|
4163
|
+
* The distance in pixels from which to offset the tooltip away from its target.
|
|
4164
|
+
*/
|
|
4165
|
+
"distance"?: number;
|
|
4166
|
+
/**
|
|
4167
|
+
* Emitted after the tooltip has hidden and all transitions are complete.
|
|
4168
|
+
*/
|
|
4169
|
+
"onSix-tooltip-after-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4170
|
+
/**
|
|
4171
|
+
* Emitted after the tooltip has shown and all transitions are complete.
|
|
4172
|
+
*/
|
|
4173
|
+
"onSix-tooltip-after-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4174
|
+
/**
|
|
4175
|
+
* Emitted when the tooltip begins to hide. Calling `event.preventDefault()` will prevent it from being hidden.
|
|
4176
|
+
*/
|
|
4177
|
+
"onSix-tooltip-hide"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4178
|
+
/**
|
|
4179
|
+
* Emitted when the tooltip begins to show. Calling `event.preventDefault()` will prevent it from being shown.
|
|
4180
|
+
*/
|
|
4181
|
+
"onSix-tooltip-show"?: (event: CustomEvent<EmptyPayload>) => void;
|
|
4182
|
+
/**
|
|
4183
|
+
* Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.
|
|
4184
|
+
*/
|
|
4185
|
+
"open"?: boolean;
|
|
4186
|
+
/**
|
|
4187
|
+
* The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip inside of the viewport.
|
|
4188
|
+
*/
|
|
4189
|
+
"placement"?: | 'top'
|
|
4190
|
+
| 'top-start'
|
|
4191
|
+
| 'top-end'
|
|
4192
|
+
| 'right'
|
|
4193
|
+
| 'right-start'
|
|
4194
|
+
| 'right-end'
|
|
4195
|
+
| 'bottom'
|
|
4196
|
+
| 'bottom-start'
|
|
4197
|
+
| 'bottom-end'
|
|
4198
|
+
| 'left'
|
|
4199
|
+
| 'left-start'
|
|
4200
|
+
| 'left-end';
|
|
4201
|
+
/**
|
|
4202
|
+
* The distance in pixels from which to offset the tooltip along its target.
|
|
4203
|
+
*/
|
|
4204
|
+
"skidding"?: number;
|
|
4205
|
+
/**
|
|
4206
|
+
* 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.
|
|
4207
|
+
*/
|
|
4208
|
+
"trigger"?: string;
|
|
4209
|
+
}
|
|
4210
|
+
interface IntrinsicElements {
|
|
4211
|
+
"set-attributes": SetAttributes;
|
|
4212
|
+
"six-alert": SixAlert;
|
|
4213
|
+
"six-avatar": SixAvatar;
|
|
4214
|
+
"six-badge": SixBadge;
|
|
4215
|
+
"six-button": SixButton;
|
|
4216
|
+
"six-card": SixCard;
|
|
4217
|
+
"six-checkbox": SixCheckbox;
|
|
4218
|
+
"six-datepicker": SixDatepicker;
|
|
4219
|
+
"six-details": SixDetails;
|
|
4220
|
+
"six-dialog": SixDialog;
|
|
4221
|
+
"six-drawer": SixDrawer;
|
|
4222
|
+
"six-dropdown": SixDropdown;
|
|
4223
|
+
"six-error-page": SixErrorPage;
|
|
4224
|
+
"six-file-list": SixFileList;
|
|
4225
|
+
"six-file-list-item": SixFileListItem;
|
|
4226
|
+
"six-file-upload": SixFileUpload;
|
|
4227
|
+
"six-footer": SixFooter;
|
|
4228
|
+
"six-form": SixForm;
|
|
4229
|
+
"six-group-label": SixGroupLabel;
|
|
4230
|
+
"six-header": SixHeader;
|
|
4231
|
+
"six-icon": SixIcon;
|
|
4232
|
+
"six-icon-button": SixIconButton;
|
|
4233
|
+
"six-input": SixInput;
|
|
4234
|
+
"six-item-picker": SixItemPicker;
|
|
4235
|
+
"six-language-switcher": SixLanguageSwitcher;
|
|
4236
|
+
"six-layout-grid": SixLayoutGrid;
|
|
4237
|
+
"six-main-container": SixMainContainer;
|
|
4238
|
+
"six-menu": SixMenu;
|
|
4239
|
+
"six-menu-divider": SixMenuDivider;
|
|
4240
|
+
"six-menu-item": SixMenuItem;
|
|
4241
|
+
"six-menu-label": SixMenuLabel;
|
|
4242
|
+
"six-picto": SixPicto;
|
|
4243
|
+
"six-progress-bar": SixProgressBar;
|
|
4244
|
+
"six-progress-ring": SixProgressRing;
|
|
4245
|
+
"six-radio": SixRadio;
|
|
4246
|
+
"six-range": SixRange;
|
|
4247
|
+
"six-root": SixRoot;
|
|
4248
|
+
"six-search-field": SixSearchField;
|
|
4249
|
+
"six-select": SixSelect;
|
|
4250
|
+
"six-sidebar": SixSidebar;
|
|
4251
|
+
"six-sidebar-item": SixSidebarItem;
|
|
4252
|
+
"six-sidebar-item-group": SixSidebarItemGroup;
|
|
4253
|
+
"six-spinner": SixSpinner;
|
|
4254
|
+
"six-stage-indicator": SixStageIndicator;
|
|
4255
|
+
"six-switch": SixSwitch;
|
|
4256
|
+
"six-tab": SixTab;
|
|
4257
|
+
"six-tab-group": SixTabGroup;
|
|
4258
|
+
"six-tab-panel": SixTabPanel;
|
|
4259
|
+
"six-table": SixTable;
|
|
4260
|
+
"six-table-cell": SixTableCell;
|
|
4261
|
+
"six-table-header": SixTableHeader;
|
|
4262
|
+
"six-table-header-cell": SixTableHeaderCell;
|
|
4263
|
+
"six-table-row": SixTableRow;
|
|
4264
|
+
"six-tag": SixTag;
|
|
4265
|
+
"six-textarea": SixTextarea;
|
|
4266
|
+
"six-tile": SixTile;
|
|
4267
|
+
"six-timepicker": SixTimepicker;
|
|
4268
|
+
"six-tooltip": SixTooltip;
|
|
4269
|
+
}
|
|
4270
|
+
}
|
|
4271
|
+
export { LocalJSX as JSX };
|
|
4272
|
+
declare module "@stencil/core" {
|
|
4273
|
+
export namespace JSX {
|
|
4274
|
+
interface IntrinsicElements {
|
|
4275
|
+
"set-attributes": LocalJSX.SetAttributes & JSXBase.HTMLAttributes<HTMLSetAttributesElement>;
|
|
4276
|
+
"six-alert": LocalJSX.SixAlert & JSXBase.HTMLAttributes<HTMLSixAlertElement>;
|
|
4277
|
+
"six-avatar": LocalJSX.SixAvatar & JSXBase.HTMLAttributes<HTMLSixAvatarElement>;
|
|
4278
|
+
"six-badge": LocalJSX.SixBadge & JSXBase.HTMLAttributes<HTMLSixBadgeElement>;
|
|
4279
|
+
"six-button": LocalJSX.SixButton & JSXBase.HTMLAttributes<HTMLSixButtonElement>;
|
|
4280
|
+
"six-card": LocalJSX.SixCard & JSXBase.HTMLAttributes<HTMLSixCardElement>;
|
|
4281
|
+
"six-checkbox": LocalJSX.SixCheckbox & JSXBase.HTMLAttributes<HTMLSixCheckboxElement>;
|
|
4282
|
+
"six-datepicker": LocalJSX.SixDatepicker & JSXBase.HTMLAttributes<HTMLSixDatepickerElement>;
|
|
4283
|
+
"six-details": LocalJSX.SixDetails & JSXBase.HTMLAttributes<HTMLSixDetailsElement>;
|
|
4284
|
+
"six-dialog": LocalJSX.SixDialog & JSXBase.HTMLAttributes<HTMLSixDialogElement>;
|
|
4285
|
+
"six-drawer": LocalJSX.SixDrawer & JSXBase.HTMLAttributes<HTMLSixDrawerElement>;
|
|
4286
|
+
"six-dropdown": LocalJSX.SixDropdown & JSXBase.HTMLAttributes<HTMLSixDropdownElement>;
|
|
4287
|
+
"six-error-page": LocalJSX.SixErrorPage & JSXBase.HTMLAttributes<HTMLSixErrorPageElement>;
|
|
4288
|
+
"six-file-list": LocalJSX.SixFileList & JSXBase.HTMLAttributes<HTMLSixFileListElement>;
|
|
4289
|
+
"six-file-list-item": LocalJSX.SixFileListItem & JSXBase.HTMLAttributes<HTMLSixFileListItemElement>;
|
|
4290
|
+
"six-file-upload": LocalJSX.SixFileUpload & JSXBase.HTMLAttributes<HTMLSixFileUploadElement>;
|
|
4291
|
+
"six-footer": LocalJSX.SixFooter & JSXBase.HTMLAttributes<HTMLSixFooterElement>;
|
|
4292
|
+
"six-form": LocalJSX.SixForm & JSXBase.HTMLAttributes<HTMLSixFormElement>;
|
|
4293
|
+
"six-group-label": LocalJSX.SixGroupLabel & JSXBase.HTMLAttributes<HTMLSixGroupLabelElement>;
|
|
4294
|
+
"six-header": LocalJSX.SixHeader & JSXBase.HTMLAttributes<HTMLSixHeaderElement>;
|
|
4295
|
+
"six-icon": LocalJSX.SixIcon & JSXBase.HTMLAttributes<HTMLSixIconElement>;
|
|
4296
|
+
"six-icon-button": LocalJSX.SixIconButton & JSXBase.HTMLAttributes<HTMLSixIconButtonElement>;
|
|
4297
|
+
"six-input": LocalJSX.SixInput & JSXBase.HTMLAttributes<HTMLSixInputElement>;
|
|
4298
|
+
"six-item-picker": LocalJSX.SixItemPicker & JSXBase.HTMLAttributes<HTMLSixItemPickerElement>;
|
|
4299
|
+
"six-language-switcher": LocalJSX.SixLanguageSwitcher & JSXBase.HTMLAttributes<HTMLSixLanguageSwitcherElement>;
|
|
4300
|
+
"six-layout-grid": LocalJSX.SixLayoutGrid & JSXBase.HTMLAttributes<HTMLSixLayoutGridElement>;
|
|
4301
|
+
"six-main-container": LocalJSX.SixMainContainer & JSXBase.HTMLAttributes<HTMLSixMainContainerElement>;
|
|
4302
|
+
"six-menu": LocalJSX.SixMenu & JSXBase.HTMLAttributes<HTMLSixMenuElement>;
|
|
4303
|
+
"six-menu-divider": LocalJSX.SixMenuDivider & JSXBase.HTMLAttributes<HTMLSixMenuDividerElement>;
|
|
4304
|
+
"six-menu-item": LocalJSX.SixMenuItem & JSXBase.HTMLAttributes<HTMLSixMenuItemElement>;
|
|
4305
|
+
"six-menu-label": LocalJSX.SixMenuLabel & JSXBase.HTMLAttributes<HTMLSixMenuLabelElement>;
|
|
4306
|
+
"six-picto": LocalJSX.SixPicto & JSXBase.HTMLAttributes<HTMLSixPictoElement>;
|
|
4307
|
+
"six-progress-bar": LocalJSX.SixProgressBar & JSXBase.HTMLAttributes<HTMLSixProgressBarElement>;
|
|
4308
|
+
"six-progress-ring": LocalJSX.SixProgressRing & JSXBase.HTMLAttributes<HTMLSixProgressRingElement>;
|
|
4309
|
+
"six-radio": LocalJSX.SixRadio & JSXBase.HTMLAttributes<HTMLSixRadioElement>;
|
|
4310
|
+
"six-range": LocalJSX.SixRange & JSXBase.HTMLAttributes<HTMLSixRangeElement>;
|
|
4311
|
+
"six-root": LocalJSX.SixRoot & JSXBase.HTMLAttributes<HTMLSixRootElement>;
|
|
4312
|
+
"six-search-field": LocalJSX.SixSearchField & JSXBase.HTMLAttributes<HTMLSixSearchFieldElement>;
|
|
4313
|
+
"six-select": LocalJSX.SixSelect & JSXBase.HTMLAttributes<HTMLSixSelectElement>;
|
|
4314
|
+
"six-sidebar": LocalJSX.SixSidebar & JSXBase.HTMLAttributes<HTMLSixSidebarElement>;
|
|
4315
|
+
"six-sidebar-item": LocalJSX.SixSidebarItem & JSXBase.HTMLAttributes<HTMLSixSidebarItemElement>;
|
|
4316
|
+
"six-sidebar-item-group": LocalJSX.SixSidebarItemGroup & JSXBase.HTMLAttributes<HTMLSixSidebarItemGroupElement>;
|
|
4317
|
+
"six-spinner": LocalJSX.SixSpinner & JSXBase.HTMLAttributes<HTMLSixSpinnerElement>;
|
|
4318
|
+
"six-stage-indicator": LocalJSX.SixStageIndicator & JSXBase.HTMLAttributes<HTMLSixStageIndicatorElement>;
|
|
4319
|
+
"six-switch": LocalJSX.SixSwitch & JSXBase.HTMLAttributes<HTMLSixSwitchElement>;
|
|
4320
|
+
"six-tab": LocalJSX.SixTab & JSXBase.HTMLAttributes<HTMLSixTabElement>;
|
|
4321
|
+
"six-tab-group": LocalJSX.SixTabGroup & JSXBase.HTMLAttributes<HTMLSixTabGroupElement>;
|
|
4322
|
+
"six-tab-panel": LocalJSX.SixTabPanel & JSXBase.HTMLAttributes<HTMLSixTabPanelElement>;
|
|
4323
|
+
"six-table": LocalJSX.SixTable & JSXBase.HTMLAttributes<HTMLSixTableElement>;
|
|
4324
|
+
"six-table-cell": LocalJSX.SixTableCell & JSXBase.HTMLAttributes<HTMLSixTableCellElement>;
|
|
4325
|
+
"six-table-header": LocalJSX.SixTableHeader & JSXBase.HTMLAttributes<HTMLSixTableHeaderElement>;
|
|
4326
|
+
"six-table-header-cell": LocalJSX.SixTableHeaderCell & JSXBase.HTMLAttributes<HTMLSixTableHeaderCellElement>;
|
|
4327
|
+
"six-table-row": LocalJSX.SixTableRow & JSXBase.HTMLAttributes<HTMLSixTableRowElement>;
|
|
4328
|
+
"six-tag": LocalJSX.SixTag & JSXBase.HTMLAttributes<HTMLSixTagElement>;
|
|
4329
|
+
"six-textarea": LocalJSX.SixTextarea & JSXBase.HTMLAttributes<HTMLSixTextareaElement>;
|
|
4330
|
+
"six-tile": LocalJSX.SixTile & JSXBase.HTMLAttributes<HTMLSixTileElement>;
|
|
4331
|
+
"six-timepicker": LocalJSX.SixTimepicker & JSXBase.HTMLAttributes<HTMLSixTimepickerElement>;
|
|
4332
|
+
"six-tooltip": LocalJSX.SixTooltip & JSXBase.HTMLAttributes<HTMLSixTooltipElement>;
|
|
4333
|
+
}
|
|
4334
|
+
}
|
|
4335
|
+
}
|