@flywheel-io/vision 1.17.0 → 2.0.0-beta-1
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/.editorconfig +56 -0
- package/.eslintrc.json +312 -0
- package/.gitattributes +2 -0
- package/.gitlab-ci.yml +157 -0
- package/.nvmrc +1 -0
- package/.storybook/main.js +23 -0
- package/.storybook/manager-head.html +2 -0
- package/.storybook/manager.js +7 -0
- package/.storybook/preview.js +44 -0
- package/.storybook/public/images/core.svg +22 -0
- package/.storybook/public/images/discovery.svg +22 -0
- package/.storybook/public/images/exchange.svg +28 -0
- package/.storybook/public/images/favicon.png +0 -0
- package/.storybook/public/images/grid.png +0 -0
- package/.storybook/public/images/logo.png +0 -0
- package/.storybook/theme.js +9 -0
- package/.storybook/tsconfig.json +20 -0
- package/.storybook/typings.d.ts +4 -0
- package/.stylelintignore +2 -0
- package/.stylelintrc.json +44 -0
- package/.vscode/extensions.json +18 -0
- package/.vscode/settings.json +7 -0
- package/CONTRIBUTING.md +51 -0
- package/angular.json +79 -0
- package/build.js +66 -0
- package/elements/elements.html +0 -0
- package/flywheel-io-vision-2.0.0-beta-1.tgz +0 -0
- package/install-into-frontend.sh +13 -0
- package/karma.conf.js +50 -0
- package/ng-package.json +26 -0
- package/package.json +79 -23
- package/src/assets/.gitkeep +0 -0
- package/src/assets/brand/core.svg +22 -0
- package/src/assets/brand/discovery.svg +22 -0
- package/src/assets/brand/exchange.svg +28 -0
- package/src/assets/brand/fw-logo-mark-dark-bg.svg +4 -0
- package/src/assets/img/avatar.png +0 -0
- package/src/assets/updating-icons.md +71 -0
- package/src/components/alert/alert.component.html +19 -0
- package/src/components/alert/alert.component.scss +150 -0
- package/src/components/alert/alert.component.spec.ts +22 -0
- package/src/components/alert/alert.component.ts +19 -0
- package/src/components/alert/alert.mdx +16 -0
- package/src/components/alert/alert.module.ts +22 -0
- package/src/components/alert/alert.stories.ts +144 -0
- package/src/components/app-icon/app-icon.component.html +10 -0
- package/src/components/app-icon/app-icon.component.scss +348 -0
- package/src/components/app-icon/app-icon.component.spec.ts +22 -0
- package/src/components/app-icon/app-icon.component.ts +27 -0
- package/src/components/app-icon/app-icon.mdx +16 -0
- package/src/components/app-icon/app-icon.module.ts +20 -0
- package/src/components/app-icon/app-icon.stories.ts +200 -0
- package/src/components/avatar/avatar.component.html +22 -0
- package/src/components/avatar/avatar.component.scss +124 -0
- package/src/components/avatar/avatar.component.spec.ts +26 -0
- package/src/components/avatar/avatar.component.ts +33 -0
- package/src/components/avatar/avatar.mdx +16 -0
- package/src/components/avatar/avatar.module.ts +20 -0
- package/src/components/avatar/avatar.stories.ts +181 -0
- package/src/components/badge/badge.component.html +4 -0
- package/src/components/badge/badge.component.scss +98 -0
- package/src/components/badge/badge.component.spec.ts +26 -0
- package/src/components/badge/badge.component.ts +30 -0
- package/src/components/badge/badge.mdx +33 -0
- package/src/components/badge/badge.module.ts +18 -0
- package/src/components/badge/badge.stories.ts +131 -0
- package/src/components/breadcrumbs/breadcrumbs.component.scss +5 -0
- package/src/components/breadcrumbs/breadcrumbs.component.spec.ts +22 -0
- package/src/components/breadcrumbs/breadcrumbs.component.stories.ts +81 -0
- package/src/components/breadcrumbs/breadcrumbs.component.ts +20 -0
- package/src/components/breadcrumbs/breadcrumbs.mdx +53 -0
- package/src/components/breadcrumbs/breadcrumbs.module.ts +23 -0
- package/src/components/breadcrumbs/crumb.component.html +5 -0
- package/src/components/breadcrumbs/crumb.component.scss +23 -0
- package/src/components/breadcrumbs/crumb.component.stories.ts +53 -0
- package/src/components/breadcrumbs/crumb.component.ts +23 -0
- package/src/components/button/button.component.html +7 -0
- package/src/components/button/button.component.scss +129 -0
- package/src/components/button/button.component.spec.ts +26 -0
- package/src/components/button/button.component.ts +40 -0
- package/src/components/button/button.directives.ts +93 -0
- package/src/components/button/button.mdx +16 -0
- package/src/components/button/button.module.ts +39 -0
- package/src/components/button/button.stories.ts +165 -0
- package/src/components/button/story.css +0 -0
- package/src/components/button-group/button-group.component.scss +94 -0
- package/src/components/button-group/button-group.component.ts +138 -0
- package/src/components/button-group/button-group.mdx +23 -0
- package/src/components/button-group/button-group.module.ts +22 -0
- package/src/components/button-group/button-group.stories.ts +145 -0
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.html +10 -0
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.spec.ts +25 -0
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.ts +36 -0
- package/src/components/button-toggle/button-toggle.component.scss +94 -0
- package/src/components/button-toggle/button-toggle.component.ts +139 -0
- package/src/components/button-toggle/button-toggle.mdx +23 -0
- package/src/components/button-toggle/button-toggle.module.ts +23 -0
- package/src/components/button-toggle/button-toggle.stories.ts +204 -0
- package/src/components/card/card-attribute/card-attribute.component.html +3 -0
- package/src/components/card/card-attribute/card-attribute.component.scss +19 -0
- package/src/components/card/card-attribute/card-attribute.component.spec.ts +22 -0
- package/src/components/card/card-attribute/card-attribute.component.ts +13 -0
- package/src/components/card/card-author/card-author.component.html +5 -0
- package/src/components/card/card-author/card-author.component.scss +21 -0
- package/src/components/card/card-author/card-author.component.spec.ts +22 -0
- package/src/components/card/card-author/card-author.component.ts +11 -0
- package/src/components/card/card-author/card-author.stories.ts +55 -0
- package/src/components/card/card-content/card-content.component.scss +26 -0
- package/src/components/card/card-content/card-content.component.spec.ts +22 -0
- package/src/components/card/card-content/card-content.component.ts +11 -0
- package/src/components/card/card-content/card-content.stories.ts +55 -0
- package/src/components/card/card-footer/card-footer.component.spec.ts +22 -0
- package/src/components/card/card-footer/card-footer.component.ts +24 -0
- package/src/components/card/card-footer/card-footer.stories.ts +72 -0
- package/src/components/card/card-header/card-header.component.html +9 -0
- package/src/components/card/card-header/card-header.component.scss +41 -0
- package/src/components/card/card-header/card-header.component.spec.ts +22 -0
- package/src/components/card/card-header/card-header.component.ts +15 -0
- package/src/components/card/card-header/card-header.stories.ts +58 -0
- package/src/components/card/card.component.html +12 -0
- package/src/components/card/card.component.scss +40 -0
- package/src/components/card/card.component.spec.ts +34 -0
- package/src/components/card/card.component.ts +16 -0
- package/src/components/card/card.mdx +128 -0
- package/src/components/card/card.module.ts +37 -0
- package/src/components/card/card.stories.ts +240 -0
- package/src/components/changelog.mdx +375 -0
- package/src/components/checkbox/checkbox.component.html +16 -0
- package/src/components/checkbox/checkbox.component.scss +189 -0
- package/src/components/checkbox/checkbox.component.ts +68 -0
- package/src/components/checkbox/checkbox.module.ts +21 -0
- package/src/components/checkbox/checkbox.stories.ts +224 -0
- package/src/components/chip/chip.component.html +13 -0
- package/src/components/chip/chip.component.scss +352 -0
- package/src/components/chip/chip.component.spec.ts +22 -0
- package/src/components/chip/chip.component.ts +32 -0
- package/src/components/chip/chip.mdx +16 -0
- package/src/components/chip/chip.module.ts +22 -0
- package/src/components/chip/chip.stories.ts +222 -0
- package/src/components/color-palette/color-palette.component.html +10 -0
- package/src/components/color-palette/color-palette.component.scss +15 -0
- package/src/components/color-palette/color-palette.component.ts +73 -0
- package/src/components/color-palette/color-palette.module.ts +22 -0
- package/src/components/color-palette/color-palette.stories.ts +35 -0
- package/src/components/color-palette/colors.mdx +47 -0
- package/src/components/color-palette/swatch/swatch.component.html +3 -0
- package/src/components/color-palette/swatch/swatch.component.scss +21 -0
- package/src/components/color-palette/swatch/swatch.component.ts +28 -0
- package/src/components/contained-input/contained-input.component.html +15 -0
- package/src/components/contained-input/contained-input.component.scss +88 -0
- package/src/components/contained-input/contained-input.component.spec.ts +34 -0
- package/src/components/contained-input/contained-input.component.ts +65 -0
- package/src/components/contained-input/contained-input.mdx +16 -0
- package/src/components/contained-input/contained-input.module.ts +26 -0
- package/src/components/contained-input/contained-input.stories.ts +155 -0
- package/src/components/date-input/date-input.component.html +28 -0
- package/src/components/date-input/date-input.component.scss +192 -0
- package/src/components/date-input/date-input.component.spec.ts +26 -0
- package/src/components/date-input/date-input.component.ts +126 -0
- package/src/components/date-input/date-input.mdx +23 -0
- package/src/components/date-input/date-input.module.ts +23 -0
- package/src/components/date-input/date-input.stories.ts +96 -0
- package/src/components/dialog/dialog-actions.component.ts +22 -0
- package/src/components/dialog/dialog-confirm.component.html +37 -0
- package/src/components/dialog/dialog-confirm.component.scss +49 -0
- package/src/components/dialog/dialog-confirm.component.ts +35 -0
- package/src/components/dialog/dialog-confirm.stories.ts +47 -0
- package/src/components/dialog/dialog-content.component.ts +28 -0
- package/src/components/dialog/dialog-header.component.ts +25 -0
- package/src/components/dialog/dialog-simple.component.html +27 -0
- package/src/components/dialog/dialog-simple.component.scss +13 -0
- package/src/components/dialog/dialog-simple.component.ts +36 -0
- package/src/components/dialog/dialog-simple.stories.ts +78 -0
- package/src/components/dialog/dialog.component.html +20 -0
- package/src/components/dialog/dialog.component.scss +91 -0
- package/src/components/dialog/dialog.component.ts +39 -0
- package/src/components/dialog/dialog.mdx +252 -0
- package/src/components/dialog/dialog.service.ts +34 -0
- package/src/components/dialog/dialog.stories.ts +169 -0
- package/src/components/dialog/dialogs.module.ts +47 -0
- package/src/components/form-heading/form-heading.component.html +15 -0
- package/src/components/form-heading/form-heading.component.scss +55 -0
- package/src/components/form-heading/form-heading.component.spec.ts +28 -0
- package/src/components/form-heading/form-heading.component.ts +17 -0
- package/src/components/form-heading/form-heading.mdx +16 -0
- package/src/components/form-heading/form-heading.module.ts +22 -0
- package/src/components/form-heading/form-heading.stories.ts +168 -0
- package/src/components/forms/validators.ts +97 -0
- package/src/components/getting-started.mdx +92 -0
- package/src/components/ghost/ghost.stories.ts +76 -0
- package/src/components/icon/README.txt +5 -0
- package/src/components/icon/icon.component.ts +52 -0
- package/src/components/icon/icon.mdx +36 -0
- package/src/components/icon/icon.module.ts +17 -0
- package/src/components/icon/icon.stories.ts +51 -0
- package/src/components/icon/icon.types.ts +318 -0
- package/src/components/icon/icons.stories.scss +63 -0
- package/src/components/icon/icons.stories.ts +95 -0
- package/src/components/icon/selection.json +1 -0
- package/src/components/icon-button/icon-button.component.html +6 -0
- package/src/components/icon-button/icon-button.component.scss +231 -0
- package/src/components/icon-button/icon-button.component.spec.ts +28 -0
- package/src/components/icon-button/icon-button.component.ts +32 -0
- package/src/components/icon-button/icon-button.mdx +16 -0
- package/src/components/icon-button/icon-button.module.ts +20 -0
- package/src/components/icon-button/icon-button.stories.ts +257 -0
- package/src/components/json/json.component.ts +15 -0
- package/src/components/layouts/context/context.component.html +6 -0
- package/src/components/layouts/context/context.component.scss +71 -0
- package/src/components/layouts/context/context.component.spec.ts +22 -0
- package/src/components/layouts/context/context.component.stories.ts +63 -0
- package/src/components/layouts/context/context.component.ts +32 -0
- package/src/components/layouts/context/context.mdx +15 -0
- package/src/components/layouts/grid/grid.component.scss +281 -0
- package/src/components/layouts/grid/grid.component.spec.ts +22 -0
- package/src/components/layouts/grid/grid.component.stories.ts +183 -0
- package/src/components/layouts/grid/grid.component.ts +43 -0
- package/src/components/layouts/grid/grid.mdx +27 -0
- package/src/components/layouts/layout-group.component.scss +38 -0
- package/src/components/layouts/layout-group.component.spec.ts +22 -0
- package/src/components/layouts/layout-group.component.stories.ts +105 -0
- package/src/components/layouts/layout-group.component.ts +24 -0
- package/src/components/layouts/layout-group.mdx +22 -0
- package/src/components/layouts/layouts.mdx +63 -0
- package/src/components/layouts/layouts.module.ts +37 -0
- package/src/components/layouts/panel/panel.component.html +9 -0
- package/src/components/layouts/panel/panel.component.scss +110 -0
- package/src/components/layouts/panel/panel.component.spec.ts +22 -0
- package/src/components/layouts/panel/panel.component.stories.ts +249 -0
- package/src/components/layouts/panel/panel.component.ts +16 -0
- package/src/components/layouts/panel/panel.mdx +28 -0
- package/src/components/layouts/sidebar/sidebar.component.html +14 -0
- package/src/components/layouts/sidebar/sidebar.component.scss +87 -0
- package/src/components/layouts/sidebar/sidebar.component.spec.ts +22 -0
- package/src/components/layouts/sidebar/sidebar.component.stories.ts +243 -0
- package/src/components/layouts/sidebar/sidebar.component.ts +14 -0
- package/src/components/layouts/sidebar/sidebar.mdx +18 -0
- package/src/components/layouts/toolbar/toolbar.component.scss +11 -0
- package/src/components/layouts/toolbar/toolbar.component.spec.ts +22 -0
- package/src/components/layouts/toolbar/toolbar.component.stories.ts +59 -0
- package/src/components/layouts/toolbar/toolbar.component.ts +15 -0
- package/src/components/layouts/toolbar/toolbar.mdx +16 -0
- package/src/components/menu/menu-close-triggers.directive.ts +27 -0
- package/src/components/menu/menu-container/menu-container.component.html +9 -0
- package/src/components/menu/menu-container/menu-container.component.scss +41 -0
- package/src/components/menu/menu-container/menu-container.component.spec.ts +22 -0
- package/src/components/menu/menu-container/menu-container.component.ts +76 -0
- package/src/components/menu/menu-container/menu-container.stories.ts +105 -0
- package/src/components/menu/menu-header/menu-header.component.html +5 -0
- package/src/components/menu/menu-header/menu-header.component.scss +20 -0
- package/src/components/menu/menu-header/menu-header.component.spec.ts +22 -0
- package/src/components/menu/menu-header/menu-header.component.ts +10 -0
- package/src/components/menu/menu-item/menu-item.component.html +42 -0
- package/src/components/menu/menu-item/menu-item.component.scss +282 -0
- package/src/components/menu/menu-item/menu-item.component.ts +108 -0
- package/src/components/menu/menu-item/menu-item.stories.ts +106 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.html +9 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.scss +33 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.spec.ts +23 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.ts +16 -0
- package/src/components/menu/menu-item-group/menu-item-group.stories.ts +83 -0
- package/src/components/menu/menu-separator/menu-separator.component.scss +6 -0
- package/src/components/menu/menu-separator/menu-separator.component.spec.ts +22 -0
- package/src/components/menu/menu-separator/menu-separator.component.ts +9 -0
- package/src/components/menu/menu-sub-item/menu-sub-item.component.html +18 -0
- package/src/components/menu/menu-sub-item/menu-sub-item.component.scss +244 -0
- package/src/components/menu/menu-sub-item/menu-sub-item.component.ts +70 -0
- package/src/components/menu/menu.component.html +6 -0
- package/src/components/menu/menu.component.scss +5 -0
- package/src/components/menu/menu.component.ts +196 -0
- package/src/components/menu/menu.mdx +118 -0
- package/src/components/menu/menu.module.ts +57 -0
- package/src/components/menu/menu.stories.ts +230 -0
- package/src/components/navbar/navbar-header/navbar-header.component.html +5 -0
- package/src/components/navbar/navbar-header/navbar-header.component.scss +20 -0
- package/src/components/navbar/navbar-header/navbar-header.component.ts +10 -0
- package/src/components/navbar/navbar-item/navbar-item.component.html +35 -0
- package/src/components/navbar/navbar-item/navbar-item.component.scss +142 -0
- package/src/components/navbar/navbar-item/navbar-item.component.ts +73 -0
- package/src/components/navbar/navbar-item/navbar-item.stories.ts +82 -0
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.html +22 -0
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.scss +152 -0
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.ts +40 -0
- package/src/components/navbar/navbar.component.html +5 -0
- package/src/components/navbar/navbar.component.scss +16 -0
- package/src/components/navbar/navbar.component.ts +63 -0
- package/src/components/navbar/navbar.mdx +20 -0
- package/src/components/navbar/navbar.module.ts +41 -0
- package/src/components/navbar/navbar.stories.ts +201 -0
- package/src/components/number-input/number-input.component.html +39 -0
- package/src/components/number-input/number-input.component.scss +185 -0
- package/src/components/number-input/number-input.component.spec.ts +26 -0
- package/src/components/number-input/number-input.component.ts +96 -0
- package/src/components/number-input/number-input.mdx +25 -0
- package/src/components/number-input/number-input.module.ts +23 -0
- package/src/components/number-input/number-input.stories.ts +87 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.html +45 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.scss +217 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.spec.ts +32 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.ts +107 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.stories.ts +69 -0
- package/src/components/paginator/paginator.component.html +32 -0
- package/src/components/paginator/paginator.component.scss +212 -0
- package/src/components/paginator/paginator.component.spec.ts +24 -0
- package/src/components/paginator/paginator.component.ts +115 -0
- package/src/components/paginator/paginator.mdx +55 -0
- package/src/components/paginator/paginator.model.ts +8 -0
- package/src/components/paginator/paginator.module.ts +31 -0
- package/src/components/paginator/paginator.stories.ts +142 -0
- package/src/components/phone-input/country-code.data.ts +495 -0
- package/src/components/phone-input/images/arrow_drop_down_grey600_18dp.png +0 -0
- package/src/components/phone-input/images/flags_sprite_2x.png +0 -0
- package/src/components/phone-input/phone-input.component.html +68 -0
- package/src/components/phone-input/phone-input.component.scss +467 -0
- package/src/components/phone-input/phone-input.component.spec.ts +33 -0
- package/src/components/phone-input/phone-input.component.ts +318 -0
- package/src/components/phone-input/phone-input.mdx +49 -0
- package/src/components/phone-input/phone-input.model.ts +11 -0
- package/src/components/phone-input/phone-input.module.ts +29 -0
- package/src/components/phone-input/phone-input.stories.ts +201 -0
- package/src/components/popover/popover-panel/popover-panel.component.html +4 -0
- package/src/components/popover/popover-panel/popover-panel.component.scss +220 -0
- package/src/components/popover/popover-panel/popover-panel.component.spec.ts +22 -0
- package/src/components/popover/popover-panel/popover-panel.component.ts +22 -0
- package/src/components/popover/popover-panel/popover-panel.stories.ts +162 -0
- package/src/components/popover/popover.component.html +13 -0
- package/src/components/popover/popover.component.spec.ts +26 -0
- package/src/components/popover/popover.component.ts +77 -0
- package/src/components/popover/popover.mdx +52 -0
- package/src/components/popover/popover.module.ts +28 -0
- package/src/components/popover/popover.stories.ts +176 -0
- package/src/components/progress/bar/bar.component.html +18 -0
- package/src/components/progress/bar/bar.component.spec.ts +26 -0
- package/src/components/progress/bar/bar.component.ts +98 -0
- package/src/components/progress/bar/bar.mdx +22 -0
- package/src/components/progress/bar/bar.scss +313 -0
- package/src/components/progress/bar/bar.stories.ts +52 -0
- package/src/components/progress/progress.module.ts +21 -0
- package/src/components/progress/spinner/spinner.component.html +53 -0
- package/src/components/progress/spinner/spinner.component.scss +225 -0
- package/src/components/progress/spinner/spinner.component.spec.ts +26 -0
- package/src/components/progress/spinner/spinner.component.ts +107 -0
- package/src/components/progress/spinner/spinner.mdx +21 -0
- package/src/components/progress/spinner/spinner.stories.ts +70 -0
- package/src/components/radio/radio-group.component.ts +124 -0
- package/src/components/radio/radio-group.mdx +45 -0
- package/src/components/radio/radio-group.stories.ts +76 -0
- package/src/components/radio/radio.component.html +19 -0
- package/src/components/radio/radio.component.scss +132 -0
- package/src/components/radio/radio.component.ts +33 -0
- package/src/components/radio/radio.module.ts +24 -0
- package/src/components/radio/radio.stories.ts +168 -0
- package/src/components/section-heading/back-button/back-button.component.html +3 -0
- package/src/components/section-heading/back-button/back-button.component.scss +37 -0
- package/src/components/section-heading/back-button/back-button.component.spec.ts +27 -0
- package/src/components/section-heading/back-button/back-button.component.ts +24 -0
- package/src/components/section-heading/back-button/back-button.stories.ts +39 -0
- package/src/components/section-heading/section-heading.component.html +15 -0
- package/src/components/section-heading/section-heading.component.scss +48 -0
- package/src/components/section-heading/section-heading.component.spec.ts +28 -0
- package/src/components/section-heading/section-heading.component.ts +21 -0
- package/src/components/section-heading/section-heading.mdx +22 -0
- package/src/components/section-heading/section-heading.module.ts +28 -0
- package/src/components/section-heading/section-heading.stories.ts +141 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.html +7 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.scss +31 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.spec.ts +23 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.ts +17 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.stories.ts +60 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.html +62 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.scss +76 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.spec.ts +83 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.ts +324 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.stories.ts +177 -0
- package/src/components/select-menu/select-menu.component.html +39 -0
- package/src/components/select-menu/select-menu.component.scss +4 -0
- package/src/components/select-menu/select-menu.component.spec.ts +121 -0
- package/src/components/select-menu/select-menu.component.ts +317 -0
- package/src/components/select-menu/select-menu.mdx +210 -0
- package/src/components/select-menu/select-menu.module.ts +33 -0
- package/src/components/select-menu/select-menu.stories.ts +368 -0
- package/src/components/shadows/shadows.stories.ts +76 -0
- package/src/components/shared/pipes/pipes.module.ts +24 -0
- package/src/components/shared/pipes/translate.pipe.ts +40 -0
- package/src/components/shared/pipes/trusthtml.pipe.ts +14 -0
- package/src/components/shared/translation.service.ts +24 -0
- package/src/components/snackbar/snackbar/snackbar.component.html +15 -0
- package/src/components/snackbar/snackbar/snackbar.component.scss +58 -0
- package/src/components/snackbar/snackbar/snackbar.component.spec.ts +56 -0
- package/src/components/snackbar/snackbar/snackbar.component.ts +115 -0
- package/src/components/snackbar/snackbar/snackbar.stories.ts +92 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.html +18 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.scss +11 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.spec.ts +98 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.ts +71 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.stories.ts +70 -0
- package/src/components/snackbar/snackbar-message.model.ts +13 -0
- package/src/components/snackbar/snackbar-timer.service.ts +32 -0
- package/src/components/snackbar/snackbar.mdx +90 -0
- package/src/components/snackbar/snackbar.module.ts +31 -0
- package/src/components/snackbar/snackbar.service.spec.ts +16 -0
- package/src/components/snackbar/snackbar.service.ts +36 -0
- package/src/components/stepper/step.component.html +33 -0
- package/src/components/stepper/step.component.scss +421 -0
- package/src/components/stepper/step.component.ts +92 -0
- package/src/components/stepper/step.stories.ts +73 -0
- package/src/components/stepper/stepper.component.ts +100 -0
- package/src/components/stepper/stepper.mdx +83 -0
- package/src/components/stepper/stepper.module.ts +27 -0
- package/src/components/stepper/stepper.stories.ts +233 -0
- package/src/components/switch/switch.component.html +10 -0
- package/src/components/switch/switch.component.scss +179 -0
- package/src/components/switch/switch.component.spec.ts +22 -0
- package/src/components/switch/switch.component.ts +58 -0
- package/src/components/switch/switch.mdx +39 -0
- package/src/components/switch/switch.module.ts +18 -0
- package/src/components/switch/switch.stories.ts +117 -0
- package/src/components/table/cell.ts +111 -0
- package/src/components/table/row.ts +113 -0
- package/src/components/table/table-dense.component.scss +178 -0
- package/src/components/table/table-dense.component.ts +36 -0
- package/src/components/table/table-dense.stories.ts +105 -0
- package/src/components/table/table.component.html +4 -0
- package/src/components/table/table.component.scss +186 -0
- package/src/components/table/table.component.ts +36 -0
- package/src/components/table/table.mdx +83 -0
- package/src/components/table/table.module.ts +53 -0
- package/src/components/table/table.stories.ts +198 -0
- package/src/components/tabs/tab/tab.component.html +3 -0
- package/src/components/tabs/tab/tab.component.scss +79 -0
- package/src/components/tabs/tab/tab.component.spec.ts +22 -0
- package/src/components/tabs/tab/tab.component.ts +47 -0
- package/src/components/tabs/tab/tab.stories.ts +38 -0
- package/src/components/tabs/tab-panel/tab-panel.component.html +1 -0
- package/src/components/tabs/tab-panel/tab-panel.component.scss +7 -0
- package/src/components/tabs/tab-panel/tab-panel.component.spec.ts +22 -0
- package/src/components/tabs/tab-panel/tab-panel.component.ts +11 -0
- package/src/components/tabs/tabs.component.html +2 -0
- package/src/components/tabs/tabs.component.scss +9 -0
- package/src/components/tabs/tabs.component.spec.ts +22 -0
- package/src/components/tabs/tabs.component.ts +69 -0
- package/src/components/tabs/tabs.mdx +74 -0
- package/src/components/tabs/tabs.module.ts +26 -0
- package/src/components/tabs/tabs.stories.ts +87 -0
- package/src/components/text-input/text-input.component.html +36 -0
- package/src/components/text-input/text-input.component.scss +155 -0
- package/src/components/text-input/text-input.component.spec.ts +26 -0
- package/src/components/text-input/text-input.component.ts +90 -0
- package/src/components/text-input/text-input.mdx +24 -0
- package/src/components/text-input/text-input.module.ts +23 -0
- package/src/components/text-input/text-input.stories.ts +125 -0
- package/src/components/textarea-input/textarea-input.component.html +18 -0
- package/src/components/textarea-input/textarea-input.component.scss +97 -0
- package/src/components/textarea-input/textarea-input.component.spec.ts +28 -0
- package/src/components/textarea-input/textarea-input.component.ts +73 -0
- package/src/components/textarea-input/textarea-input.mdx +43 -0
- package/src/components/textarea-input/textarea-input.module.ts +25 -0
- package/src/components/textarea-input/textarea-input.stories.ts +106 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.html +6 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.scss +109 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.ts +22 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.stories.ts +74 -0
- package/src/components/tooltip/tooltip.component.html +16 -0
- package/src/components/tooltip/tooltip.component.scss +26 -0
- package/src/components/tooltip/tooltip.component.spec.ts +24 -0
- package/src/components/tooltip/tooltip.component.ts +30 -0
- package/src/components/tooltip/tooltip.mdx +27 -0
- package/src/components/tooltip/tooltip.module.ts +28 -0
- package/src/components/tooltip/tooltip.stories.ts +111 -0
- package/src/components/typography-sample/typography-sample.component.html +25 -0
- package/src/components/typography-sample/typography-sample.component.ts +10 -0
- package/src/components/typography-sample/typography-sample.module.ts +17 -0
- package/src/components/typography-sample/typography-sample.stories.ts +33 -0
- package/src/components/typography-sample/typography.mdx +41 -0
- package/src/components/wrapped-input/wrapped-input.component.html +10 -0
- package/src/components/wrapped-input/wrapped-input.component.scss +32 -0
- package/src/components/wrapped-input/wrapped-input.component.spec.ts +34 -0
- package/src/components/wrapped-input/wrapped-input.component.ts +18 -0
- package/src/components/wrapped-input/wrapped-input.mdx +26 -0
- package/src/components/wrapped-input/wrapped-input.module.ts +20 -0
- package/src/components/wrapped-input/wrapped-input.stories.ts +195 -0
- package/src/favicon.ico +0 -0
- package/src/global.scss +5 -0
- package/src/index.html +16 -0
- package/src/polyfills.ts +64 -0
- package/src/public-api.scss +6 -0
- package/src/public-api.ts +125 -0
- package/src/scss/atoms/scrollbar.scss +10 -0
- package/src/scss/config/colors.scss +143 -0
- package/src/scss/icons/_icon-font-face.scss +13 -0
- package/src/scss/icons/_icon-glyphs.scss +1614 -0
- package/src/scss/icons/_icon-variables.scss +319 -0
- package/src/test.ts +15 -0
- package/tsconfig.app.json +17 -0
- package/tsconfig.json +29 -0
- package/tsconfig.lib.json +21 -0
- package/tsconfig.spec.json +28 -0
- package/update-icons.js +40 -0
- package/components/alert/alert.component.d.ts +0 -14
- package/components/alert/alert.module.d.ts +0 -10
- package/components/app-icon/app-icon.component.d.ts +0 -19
- package/components/app-icon/app-icon.module.d.ts +0 -9
- package/components/avatar/avatar.component.d.ts +0 -18
- package/components/avatar/avatar.module.d.ts +0 -9
- package/components/badge/badge.component.d.ts +0 -12
- package/components/badge/badge.module.d.ts +0 -8
- package/components/breadcrumbs/breadcrumbs.component.d.ts +0 -9
- package/components/breadcrumbs/breadcrumbs.module.d.ts +0 -10
- package/components/breadcrumbs/crumb.component.d.ts +0 -12
- package/components/button/button.component.d.ts +0 -16
- package/components/button/button.directives.d.ts +0 -37
- package/components/button/button.module.d.ts +0 -11
- package/components/button-group/button-group.component.d.ts +0 -33
- package/components/button-group/button-group.module.d.ts +0 -10
- package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +0 -21
- package/components/button-toggle/button-toggle.component.d.ts +0 -33
- package/components/button-toggle/button-toggle.module.d.ts +0 -10
- package/components/card/card-attribute/card-attribute.component.d.ts +0 -8
- package/components/card/card-author/card-author.component.d.ts +0 -7
- package/components/card/card-content/card-content.component.d.ts +0 -5
- package/components/card/card-footer/card-footer.component.d.ts +0 -9
- package/components/card/card-header/card-header.component.d.ts +0 -10
- package/components/card/card.component.d.ts +0 -12
- package/components/card/card.module.d.ts +0 -15
- package/components/checkbox/checkbox.component.d.ts +0 -23
- package/components/checkbox/checkbox.module.d.ts +0 -9
- package/components/chip/chip.component.d.ts +0 -20
- package/components/chip/chip.module.d.ts +0 -10
- package/components/contained-input/contained-input.component.d.ts +0 -23
- package/components/contained-input/contained-input.module.d.ts +0 -12
- package/components/date-input/date-input.component.d.ts +0 -47
- package/components/date-input/date-input.module.d.ts +0 -10
- package/components/dialog/dialog-actions.component.d.ts +0 -9
- package/components/dialog/dialog-confirm.component.d.ts +0 -25
- package/components/dialog/dialog-content.component.d.ts +0 -10
- package/components/dialog/dialog-header.component.d.ts +0 -9
- package/components/dialog/dialog-simple.component.d.ts +0 -25
- package/components/dialog/dialog.component.d.ts +0 -25
- package/components/dialog/dialog.service.d.ts +0 -17
- package/components/dialog/dialogs.module.d.ts +0 -18
- package/components/form-heading/form-heading.component.d.ts +0 -10
- package/components/form-heading/form-heading.module.d.ts +0 -10
- package/components/forms/validators.d.ts +0 -29
- package/components/icon/icon.component.d.ts +0 -13
- package/components/icon/icon.module.d.ts +0 -8
- package/components/icon/icon.types.d.ts +0 -2
- package/components/icon-button/icon-button.component.d.ts +0 -12
- package/components/icon-button/icon-button.module.d.ts +0 -9
- package/components/layouts/context/context.component.d.ts +0 -18
- package/components/layouts/grid/grid.component.d.ts +0 -19
- package/components/layouts/layout-group.component.d.ts +0 -9
- package/components/layouts/layouts.module.d.ts +0 -14
- package/components/layouts/panel/panel.component.d.ts +0 -11
- package/components/layouts/sidebar/sidebar.component.d.ts +0 -9
- package/components/layouts/toolbar/toolbar.component.d.ts +0 -7
- package/components/legacy/dialog/choice-dialog.component.d.ts +0 -35
- package/components/legacy/dialog/confirm-dialog.component.d.ts +0 -20
- package/components/legacy/dialog/dialog.module.d.ts +0 -19
- package/components/legacy/dialog/dialog.service.d.ts +0 -25
- package/components/legacy/dialog/error-dialog.component.d.ts +0 -18
- package/components/legacy/dialog/portal-dialog.component.d.ts +0 -33
- package/components/legacy/notification/notification/notification.component.d.ts +0 -20
- package/components/legacy/notification/notification/notification.model.d.ts +0 -14
- package/components/legacy/notification/notification-container/notification-container.component.d.ts +0 -25
- package/components/legacy/notification/notification-timer.service.d.ts +0 -10
- package/components/legacy/notification/notification.module.d.ts +0 -12
- package/components/legacy/notification/notification.service.d.ts +0 -13
- package/components/menu/menu-close-triggers.directive.d.ts +0 -10
- package/components/menu/menu-container/menu-container.component.d.ts +0 -28
- package/components/menu/menu-header/menu-header.component.d.ts +0 -5
- package/components/menu/menu-item/menu-item.component.d.ts +0 -38
- package/components/menu/menu-item-group/menu-item-group.component.d.ts +0 -11
- package/components/menu/menu-separator/menu-separator.component.d.ts +0 -5
- package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +0 -25
- package/components/menu/menu.component.d.ts +0 -48
- package/components/menu/menu.module.d.ts +0 -24
- package/components/navbar/navbar-header/navbar-header.component.d.ts +0 -5
- package/components/navbar/navbar-item/navbar-item.component.d.ts +0 -28
- package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +0 -18
- package/components/navbar/navbar.component.d.ts +0 -14
- package/components/navbar/navbar.module.d.ts +0 -18
- package/components/number-input/number-input.component.d.ts +0 -42
- package/components/number-input/number-input.module.d.ts +0 -10
- package/components/paginator/paginator-advanced/paginator-advanced.component.d.ts +0 -32
- package/components/paginator/paginator.component.d.ts +0 -40
- package/components/paginator/paginator.model.d.ts +0 -8
- package/components/paginator/paginator.module.d.ts +0 -14
- package/components/phone-input/country-code.data.d.ts +0 -2
- package/components/phone-input/phone-input.component.d.ts +0 -66
- package/components/phone-input/phone-input.model.d.ts +0 -10
- package/components/phone-input/phone-input.module.d.ts +0 -13
- package/components/popover/popover-panel/popover-panel.component.d.ts +0 -10
- package/components/popover/popover.component.d.ts +0 -19
- package/components/popover/popover.module.d.ts +0 -11
- package/components/progress/bar/bar.component.d.ts +0 -32
- package/components/progress/progress.module.d.ts +0 -9
- package/components/progress/spinner/spinner.component.d.ts +0 -37
- package/components/radio/radio-group.component.d.ts +0 -32
- package/components/radio/radio.component.d.ts +0 -17
- package/components/radio/radio.module.d.ts +0 -10
- package/components/section-heading/back-button/back-button.component.d.ts +0 -11
- package/components/section-heading/section-heading.component.d.ts +0 -13
- package/components/section-heading/section-heading.module.d.ts +0 -12
- package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +0 -9
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +0 -65
- package/components/select-menu/select-menu.component.d.ts +0 -68
- package/components/select-menu/select-menu.module.d.ts +0 -15
- package/components/shared/pipes/pipes.module.d.ts +0 -10
- package/components/shared/pipes/translate.pipe.d.ts +0 -17
- package/components/shared/pipes/trusthtml.pipe.d.ts +0 -10
- package/components/shared/translation.service.d.ts +0 -14
- package/components/snackbar/snackbar/snackbar.component.d.ts +0 -24
- package/components/snackbar/snackbar-container/snackbar-container.component.d.ts +0 -20
- package/components/snackbar/snackbar-message.model.d.ts +0 -12
- package/components/snackbar/snackbar-timer.service.d.ts +0 -10
- package/components/snackbar/snackbar.module.d.ts +0 -14
- package/components/snackbar/snackbar.service.d.ts +0 -13
- package/components/stepper/step.component.d.ts +0 -27
- package/components/stepper/stepper.component.d.ts +0 -23
- package/components/stepper/stepper.module.d.ts +0 -11
- package/components/switch/switch.component.d.ts +0 -22
- package/components/switch/switch.module.d.ts +0 -8
- package/components/table/cell.d.ts +0 -63
- package/components/table/row.d.ts +0 -60
- package/components/table/table-dense.component.d.ts +0 -11
- package/components/table/table.component.d.ts +0 -11
- package/components/table/table.module.d.ts +0 -12
- package/components/tabs/tab/tab.component.d.ts +0 -21
- package/components/tabs/tab-panel/tab-panel.component.d.ts +0 -6
- package/components/tabs/tabs.component.d.ts +0 -17
- package/components/tabs/tabs.module.d.ts +0 -11
- package/components/text-input/text-input.component.d.ts +0 -45
- package/components/text-input/text-input.module.d.ts +0 -10
- package/components/textarea-input/textarea-input.component.d.ts +0 -34
- package/components/textarea-input/textarea-input.module.d.ts +0 -11
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +0 -12
- package/components/tooltip/tooltip.component.d.ts +0 -17
- package/components/tooltip/tooltip.module.d.ts +0 -11
- package/components/wrapped-input/wrapped-input.component.d.ts +0 -10
- package/components/wrapped-input/wrapped-input.module.d.ts +0 -9
- package/esm2020/components/alert/alert.component.mjs +0 -34
- package/esm2020/components/alert/alert.module.mjs +0 -32
- package/esm2020/components/app-icon/app-icon.component.mjs +0 -63
- package/esm2020/components/app-icon/app-icon.module.mjs +0 -28
- package/esm2020/components/avatar/avatar.component.mjs +0 -53
- package/esm2020/components/avatar/avatar.module.mjs +0 -28
- package/esm2020/components/badge/badge.component.mjs +0 -45
- package/esm2020/components/badge/badge.module.mjs +0 -24
- package/esm2020/components/breadcrumbs/breadcrumbs.component.mjs +0 -22
- package/esm2020/components/breadcrumbs/breadcrumbs.module.mjs +0 -33
- package/esm2020/components/breadcrumbs/crumb.component.mjs +0 -34
- package/esm2020/components/button/button.component.mjs +0 -59
- package/esm2020/components/button/button.directives.mjs +0 -129
- package/esm2020/components/button/button.module.mjs +0 -53
- package/esm2020/components/button-group/button-group.component.mjs +0 -131
- package/esm2020/components/button-group/button-group.module.mjs +0 -32
- package/esm2020/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +0 -54
- package/esm2020/components/button-toggle/button-toggle.component.mjs +0 -132
- package/esm2020/components/button-toggle/button-toggle.module.mjs +0 -33
- package/esm2020/components/card/card-attribute/card-attribute.component.mjs +0 -17
- package/esm2020/components/card/card-author/card-author.component.mjs +0 -15
- package/esm2020/components/card/card-content/card-content.component.mjs +0 -11
- package/esm2020/components/card/card-footer/card-footer.component.mjs +0 -29
- package/esm2020/components/card/card-header/card-header.component.mjs +0 -24
- package/esm2020/components/card/card.component.mjs +0 -27
- package/esm2020/components/card/card.module.mjs +0 -57
- package/esm2020/components/checkbox/checkbox.component.mjs +0 -79
- package/esm2020/components/checkbox/checkbox.module.mjs +0 -31
- package/esm2020/components/chip/chip.component.mjs +0 -52
- package/esm2020/components/chip/chip.module.mjs +0 -32
- package/esm2020/components/contained-input/contained-input.component.mjs +0 -86
- package/esm2020/components/contained-input/contained-input.module.mjs +0 -40
- package/esm2020/components/date-input/date-input.component.mjs +0 -139
- package/esm2020/components/date-input/date-input.module.mjs +0 -32
- package/esm2020/components/dialog/dialog-actions.component.mjs +0 -32
- package/esm2020/components/dialog/dialog-confirm.component.mjs +0 -63
- package/esm2020/components/dialog/dialog-content.component.mjs +0 -38
- package/esm2020/components/dialog/dialog-header.component.mjs +0 -35
- package/esm2020/components/dialog/dialog-simple.component.mjs +0 -62
- package/esm2020/components/dialog/dialog.component.mjs +0 -55
- package/esm2020/components/dialog/dialog.service.mjs +0 -49
- package/esm2020/components/dialog/dialogs.module.mjs +0 -75
- package/esm2020/components/form-heading/form-heading.component.mjs +0 -24
- package/esm2020/components/form-heading/form-heading.module.mjs +0 -32
- package/esm2020/components/forms/validators.mjs +0 -81
- package/esm2020/components/icon/icon.component.mjs +0 -61
- package/esm2020/components/icon/icon.module.mjs +0 -24
- package/esm2020/components/icon/icon.types.mjs +0 -317
- package/esm2020/components/icon-button/icon-button.component.mjs +0 -39
- package/esm2020/components/icon-button/icon-button.module.mjs +0 -28
- package/esm2020/components/layouts/context/context.component.mjs +0 -46
- package/esm2020/components/layouts/grid/grid.component.mjs +0 -62
- package/esm2020/components/layouts/layout-group.component.mjs +0 -36
- package/esm2020/components/layouts/layouts.module.mjs +0 -57
- package/esm2020/components/layouts/panel/panel.component.mjs +0 -32
- package/esm2020/components/layouts/sidebar/sidebar.component.mjs +0 -26
- package/esm2020/components/layouts/toolbar/toolbar.component.mjs +0 -21
- package/esm2020/components/legacy/dialog/choice-dialog.component.mjs +0 -107
- package/esm2020/components/legacy/dialog/confirm-dialog.component.mjs +0 -61
- package/esm2020/components/legacy/dialog/dialog.module.mjs +0 -82
- package/esm2020/components/legacy/dialog/dialog.service.mjs +0 -75
- package/esm2020/components/legacy/dialog/error-dialog.component.mjs +0 -52
- package/esm2020/components/legacy/dialog/portal-dialog.component.mjs +0 -109
- package/esm2020/components/legacy/notification/notification/notification.component.mjs +0 -74
- package/esm2020/components/legacy/notification/notification/notification.model.mjs +0 -9
- package/esm2020/components/legacy/notification/notification-container/notification-container.component.mjs +0 -98
- package/esm2020/components/legacy/notification/notification-timer.service.mjs +0 -29
- package/esm2020/components/legacy/notification/notification.module.mjs +0 -47
- package/esm2020/components/legacy/notification/notification.service.mjs +0 -36
- package/esm2020/components/menu/menu-close-triggers.directive.mjs +0 -38
- package/esm2020/components/menu/menu-container/menu-container.component.mjs +0 -90
- package/esm2020/components/menu/menu-header/menu-header.component.mjs +0 -11
- package/esm2020/components/menu/menu-item/menu-item.component.mjs +0 -136
- package/esm2020/components/menu/menu-item-group/menu-item-group.component.mjs +0 -31
- package/esm2020/components/menu/menu-separator/menu-separator.component.mjs +0 -11
- package/esm2020/components/menu/menu-sub-item/menu-sub-item.component.mjs +0 -109
- package/esm2020/components/menu/menu.component.mjs +0 -212
- package/esm2020/components/menu/menu.module.mjs +0 -95
- package/esm2020/components/navbar/navbar-header/navbar-header.component.mjs +0 -11
- package/esm2020/components/navbar/navbar-item/navbar-item.component.mjs +0 -95
- package/esm2020/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +0 -76
- package/esm2020/components/navbar/navbar.component.mjs +0 -75
- package/esm2020/components/navbar/navbar.module.mjs +0 -67
- package/esm2020/components/number-input/number-input.component.mjs +0 -122
- package/esm2020/components/number-input/number-input.module.mjs +0 -32
- package/esm2020/components/paginator/paginator-advanced/paginator-advanced.component.mjs +0 -123
- package/esm2020/components/paginator/paginator.component.mjs +0 -133
- package/esm2020/components/paginator/paginator.model.mjs +0 -2
- package/esm2020/components/paginator/paginator.module.mjs +0 -49
- package/esm2020/components/phone-input/country-code.data.mjs +0 -495
- package/esm2020/components/phone-input/phone-input.component.mjs +0 -285
- package/esm2020/components/phone-input/phone-input.model.mjs +0 -2
- package/esm2020/components/phone-input/phone-input.module.mjs +0 -47
- package/esm2020/components/popover/popover-panel/popover-panel.component.mjs +0 -30
- package/esm2020/components/popover/popover.component.mjs +0 -76
- package/esm2020/components/popover/popover.module.mjs +0 -42
- package/esm2020/components/progress/bar/bar.component.mjs +0 -83
- package/esm2020/components/progress/progress.module.mjs +0 -29
- package/esm2020/components/progress/spinner/spinner.component.mjs +0 -101
- package/esm2020/components/radio/radio-group.component.mjs +0 -117
- package/esm2020/components/radio/radio.component.mjs +0 -51
- package/esm2020/components/radio/radio.module.mjs +0 -36
- package/esm2020/components/section-heading/back-button/back-button.component.mjs +0 -30
- package/esm2020/components/section-heading/section-heading.component.mjs +0 -31
- package/esm2020/components/section-heading/section-heading.module.mjs +0 -42
- package/esm2020/components/section-heading/subsection-heading/subsection-heading.component.mjs +0 -19
- package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +0 -356
- package/esm2020/components/select-menu/select-menu.component.mjs +0 -328
- package/esm2020/components/select-menu/select-menu.module.mjs +0 -53
- package/esm2020/components/shared/pipes/pipes.module.mjs +0 -36
- package/esm2020/components/shared/pipes/translate.pipe.mjs +0 -40
- package/esm2020/components/shared/pipes/trusthtml.pipe.mjs +0 -21
- package/esm2020/components/shared/translation.service.mjs +0 -26
- package/esm2020/components/snackbar/snackbar/snackbar.component.mjs +0 -111
- package/esm2020/components/snackbar/snackbar-container/snackbar-container.component.mjs +0 -63
- package/esm2020/components/snackbar/snackbar-message.model.mjs +0 -2
- package/esm2020/components/snackbar/snackbar-timer.service.mjs +0 -29
- package/esm2020/components/snackbar/snackbar.module.mjs +0 -55
- package/esm2020/components/snackbar/snackbar.service.mjs +0 -36
- package/esm2020/components/stepper/step.component.mjs +0 -113
- package/esm2020/components/stepper/stepper.component.mjs +0 -95
- package/esm2020/components/stepper/stepper.module.mjs +0 -41
- package/esm2020/components/switch/switch.component.mjs +0 -73
- package/esm2020/components/switch/switch.module.mjs +0 -24
- package/esm2020/components/table/cell.mjs +0 -151
- package/esm2020/components/table/row.mjs +0 -170
- package/esm2020/components/table/table-dense.component.mjs +0 -38
- package/esm2020/components/table/table.component.mjs +0 -38
- package/esm2020/components/table/table.module.mjs +0 -91
- package/esm2020/components/tabs/tab/tab.component.mjs +0 -79
- package/esm2020/components/tabs/tab-panel/tab-panel.component.mjs +0 -19
- package/esm2020/components/tabs/tabs.component.mjs +0 -68
- package/esm2020/components/tabs/tabs.module.mjs +0 -38
- package/esm2020/components/text-input/text-input.component.mjs +0 -112
- package/esm2020/components/text-input/text-input.module.mjs +0 -32
- package/esm2020/components/textarea-input/textarea-input.component.mjs +0 -86
- package/esm2020/components/textarea-input/textarea-input.module.mjs +0 -36
- package/esm2020/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +0 -37
- package/esm2020/components/tooltip/tooltip.component.mjs +0 -49
- package/esm2020/components/tooltip/tooltip.module.mjs +0 -42
- package/esm2020/components/wrapped-input/wrapped-input.component.mjs +0 -30
- package/esm2020/components/wrapped-input/wrapped-input.module.mjs +0 -28
- package/esm2020/flywheel-io-vision.mjs +0 -5
- package/esm2020/public-api.mjs +0 -137
- package/fesm2015/flywheel-io-vision.mjs +0 -8767
- package/fesm2015/flywheel-io-vision.mjs.map +0 -1
- package/fesm2020/flywheel-io-vision.mjs +0 -8739
- package/fesm2020/flywheel-io-vision.mjs.map +0 -1
- package/global.scss +0 -9
- package/index.d.ts +0 -5
- package/public-api.d.ts +0 -136
- package/public-api.scss +0 -7
- package/scss/atoms/scrollbar.scss +0 -10
- package/scss/config/colors.scss +0 -148
- package/scss/icons/_icon-font-face.scss +0 -13
- package/scss/icons/_icon-glyphs.scss +0 -1612
- package/scss/icons/_icon-variables.scss +0 -317
- package/scss/material/theme.scss +0 -243
- package/styles.css +0 -8770
- /package/{assets → src/assets}/fonts/Flywheel-Vision-Icons.svg +0 -0
- /package/{assets → src/assets}/fonts/Flywheel-Vision-Icons.ttf +0 -0
- /package/{assets → src/assets}/fonts/Flywheel-Vision-Icons.woff +0 -0
- /package/{assets → src/assets}/svg/3d-sphere-rotate-arrows.svg +0 -0
- /package/{assets → src/assets}/svg/add-circle.svg +0 -0
- /package/{assets → src/assets}/svg/add-new-create.svg +0 -0
- /package/{assets → src/assets}/svg/add-row-above.svg +0 -0
- /package/{assets → src/assets}/svg/add-row-below.svg +0 -0
- /package/{assets → src/assets}/svg/add-server-databases-endpoint.svg +0 -0
- /package/{assets → src/assets}/svg/add-server.svg +0 -0
- /package/{assets → src/assets}/svg/add-user.svg +0 -0
- /package/{assets → src/assets}/svg/ai.svg +0 -0
- /package/{assets → src/assets}/svg/apple.svg +0 -0
- /package/{assets → src/assets}/svg/apply-copy-duplicate.svg +0 -0
- /package/{assets → src/assets}/svg/arrange-filter-sort.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-annotate.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-back-collapse.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-back.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-down.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-forward-collapse.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-forward.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-rotate-restore.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-rotate.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-up.svg +0 -0
- /package/{assets → src/assets}/svg/arrow.svg +0 -0
- /package/{assets → src/assets}/svg/barcode-serial.svg +0 -0
- /package/{assets → src/assets}/svg/barcode-stack-scan.svg +0 -0
- /package/{assets → src/assets}/svg/bell-notification.svg +0 -0
- /package/{assets → src/assets}/svg/bezier-curve.svg +0 -0
- /package/{assets → src/assets}/svg/blocks-code-test-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/book-lab-flask.svg +0 -0
- /package/{assets → src/assets}/svg/bookmark-plus-add.svg +0 -0
- /package/{assets → src/assets}/svg/bookmark.svg +0 -0
- /package/{assets → src/assets}/svg/brain.svg +0 -0
- /package/{assets → src/assets}/svg/brightness-photo-edit.svg +0 -0
- /package/{assets → src/assets}/svg/browser-internet-web-windows.svg +0 -0
- /package/{assets → src/assets}/svg/brush-edit-create.svg +0 -0
- /package/{assets → src/assets}/svg/bucket-paint.svg +0 -0
- /package/{assets → src/assets}/svg/button-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/calendar-arrow-left-center.svg +0 -0
- /package/{assets → src/assets}/svg/calendar-schedule.svg +0 -0
- /package/{assets → src/assets}/svg/camera-photo-capture.svg +0 -0
- /package/{assets → src/assets}/svg/cash-banknotes.svg +0 -0
- /package/{assets → src/assets}/svg/chart-square.svg +0 -0
- /package/{assets → src/assets}/svg/chart-trend-square.svg +0 -0
- /package/{assets → src/assets}/svg/chat-messages-bubble.svg +0 -0
- /package/{assets → src/assets}/svg/checklist-tasks-chechmark-square.svg +0 -0
- /package/{assets → src/assets}/svg/checklist.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-back.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-down.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-forward.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-input-number.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-up.svg +0 -0
- /package/{assets → src/assets}/svg/circle-ellipses.svg +0 -0
- /package/{assets → src/assets}/svg/circle.svg +0 -0
- /package/{assets → src/assets}/svg/clap-applause-hands.svg +0 -0
- /package/{assets → src/assets}/svg/clip-attachment.svg +0 -0
- /package/{assets → src/assets}/svg/clock-history.svg +0 -0
- /package/{assets → src/assets}/svg/clock-hour-4.svg +0 -0
- /package/{assets → src/assets}/svg/clock-loading.svg +0 -0
- /package/{assets → src/assets}/svg/close-circled.svg +0 -0
- /package/{assets → src/assets}/svg/close.svg +0 -0
- /package/{assets → src/assets}/svg/closed-freehand-vector-poly.svg +0 -0
- /package/{assets → src/assets}/svg/cloud-network-add.svg +0 -0
- /package/{assets → src/assets}/svg/cloud-storage-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/cloud-upload.svg +0 -0
- /package/{assets → src/assets}/svg/code-block-embed.svg +0 -0
- /package/{assets → src/assets}/svg/code-text.svg +0 -0
- /package/{assets → src/assets}/svg/color-design-profile.svg +0 -0
- /package/{assets → src/assets}/svg/color-ven-design-profile-central.svg +0 -0
- /package/{assets → src/assets}/svg/column-edit.svg +0 -0
- /package/{assets → src/assets}/svg/computer-chip.svg +0 -0
- /package/{assets → src/assets}/svg/contrast-photo-edit.svg +0 -0
- /package/{assets → src/assets}/svg/copy-item.svg +0 -0
- /package/{assets → src/assets}/svg/creative-commons.svg +0 -0
- /package/{assets → src/assets}/svg/crosshair.svg +0 -0
- /package/{assets → src/assets}/svg/crown-style-circle.svg +0 -0
- /package/{assets → src/assets}/svg/cursor-select.svg +0 -0
- /package/{assets → src/assets}/svg/curve-object-secet-cursor.svg +0 -0
- /package/{assets → src/assets}/svg/data-tree.svg +0 -0
- /package/{assets → src/assets}/svg/delivery-shipment-packages.svg +0 -0
- /package/{assets → src/assets}/svg/dna-hospital-medical.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-add-plus-bottom-left.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-blank.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-download.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-list-protocol.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-tar.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-upload-bottom-center.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-zip.svg +0 -0
- /package/{assets → src/assets}/svg/document-status-done-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/document-visible.svg +0 -0
- /package/{assets → src/assets}/svg/documents-file.svg +0 -0
- /package/{assets → src/assets}/svg/documents-files.svg +0 -0
- /package/{assets → src/assets}/svg/done-check-tracked.svg +0 -0
- /package/{assets → src/assets}/svg/done-check.svg +0 -0
- /package/{assets → src/assets}/svg/download-status.svg +0 -0
- /package/{assets → src/assets}/svg/download.svg +0 -0
- /package/{assets → src/assets}/svg/drag-drop-indicator.svg +0 -0
- /package/{assets → src/assets}/svg/draw-rectangle.svg +0 -0
- /package/{assets → src/assets}/svg/earth-globe-fail.svg +0 -0
- /package/{assets → src/assets}/svg/edit-boxed.svg +0 -0
- /package/{assets → src/assets}/svg/edit-erase.svg +0 -0
- /package/{assets → src/assets}/svg/edit.svg +0 -0
- /package/{assets → src/assets}/svg/email-mail-checkmark-group.svg +0 -0
- /package/{assets → src/assets}/svg/email.svg +0 -0
- /package/{assets → src/assets}/svg/embed-circle.svg +0 -0
- /package/{assets → src/assets}/svg/exchange.svg +0 -0
- /package/{assets → src/assets}/svg/expand-pathfinder-dot-square-segmentation.svg +0 -0
- /package/{assets → src/assets}/svg/facebook.svg +0 -0
- /package/{assets → src/assets}/svg/file-blank-image-load-mask.svg +0 -0
- /package/{assets → src/assets}/svg/file-download.svg +0 -0
- /package/{assets → src/assets}/svg/file-text.svg +0 -0
- /package/{assets → src/assets}/svg/files-library-content.svg +0 -0
- /package/{assets → src/assets}/svg/files-library.svg +0 -0
- /package/{assets → src/assets}/svg/files.svg +0 -0
- /package/{assets → src/assets}/svg/filter-sort-add.svg +0 -0
- /package/{assets → src/assets}/svg/filter-sort-check-mark.svg +0 -0
- /package/{assets → src/assets}/svg/filter-sort-delete.svg +0 -0
- /package/{assets → src/assets}/svg/filter.svg +0 -0
- /package/{assets → src/assets}/svg/flag.svg +0 -0
- /package/{assets → src/assets}/svg/flip-horizontal.svg +0 -0
- /package/{assets → src/assets}/svg/flip-vertical.svg +0 -0
- /package/{assets → src/assets}/svg/floppy-save.svg +0 -0
- /package/{assets → src/assets}/svg/flywheel-mark-logo.svg +0 -0
- /package/{assets → src/assets}/svg/flywheel-viewer-mark-logo.svg +0 -0
- /package/{assets → src/assets}/svg/folder-add.svg +0 -0
- /package/{assets → src/assets}/svg/folder-blank.svg +0 -0
- /package/{assets → src/assets}/svg/folder-checked.svg +0 -0
- /package/{assets → src/assets}/svg/folder-group.svg +0 -0
- /package/{assets → src/assets}/svg/folder-open.svg +0 -0
- /package/{assets → src/assets}/svg/folder-share.svg +0 -0
- /package/{assets → src/assets}/svg/form-metadata-element.svg +0 -0
- /package/{assets → src/assets}/svg/free-rights.svg +0 -0
- /package/{assets → src/assets}/svg/freehand-vector-poly.svg +0 -0
- /package/{assets → src/assets}/svg/full-screen-zoom.svg +0 -0
- /package/{assets → src/assets}/svg/github-color-login.svg +0 -0
- /package/{assets → src/assets}/svg/gitlab.svg +0 -0
- /package/{assets → src/assets}/svg/graduate-hat.svg +0 -0
- /package/{assets → src/assets}/svg/grid-dot-square.svg +0 -0
- /package/{assets → src/assets}/svg/grid-layout.svg +0 -0
- /package/{assets → src/assets}/svg/hammer-legal-square.svg +0 -0
- /package/{assets → src/assets}/svg/hammer-screwdriver.svg +0 -0
- /package/{assets → src/assets}/svg/hand-money-currency.svg +0 -0
- /package/{assets → src/assets}/svg/header-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/home-modern-door.svg +0 -0
- /package/{assets → src/assets}/svg/home-modern-option-lines.svg +0 -0
- /package/{assets → src/assets}/svg/human-artificial-intelligence.svg +0 -0
- /package/{assets → src/assets}/svg/icon-placeholder.svg +0 -0
- /package/{assets → src/assets}/svg/image-photo-copy-left-down.svg +0 -0
- /package/{assets → src/assets}/svg/image-picture-square.svg +0 -0
- /package/{assets → src/assets}/svg/information-circle.svg +0 -0
- /package/{assets → src/assets}/svg/invoice-checkmark-paid.svg +0 -0
- /package/{assets → src/assets}/svg/invoice.svg +0 -0
- /package/{assets → src/assets}/svg/italic.svg +0 -0
- /package/{assets → src/assets}/svg/items-group-elements.svg +0 -0
- /package/{assets → src/assets}/svg/key.svg +0 -0
- /package/{assets → src/assets}/svg/keyboard.svg +0 -0
- /package/{assets → src/assets}/svg/keychain.svg +0 -0
- /package/{assets → src/assets}/svg/label-tag.svg +0 -0
- /package/{assets → src/assets}/svg/laptop-health-medical-cross.svg +0 -0
- /package/{assets → src/assets}/svg/layers.svg +0 -0
- /package/{assets → src/assets}/svg/layout-grid.svg +0 -0
- /package/{assets → src/assets}/svg/layout.svg +0 -0
- /package/{assets → src/assets}/svg/line.svg +0 -0
- /package/{assets → src/assets}/svg/link-unlink.svg +0 -0
- /package/{assets → src/assets}/svg/link.svg +0 -0
- /package/{assets → src/assets}/svg/linkedin.svg +0 -0
- /package/{assets → src/assets}/svg/linux.svg +0 -0
- /package/{assets → src/assets}/svg/list-paragraph-number.svg +0 -0
- /package/{assets → src/assets}/svg/list-paragraph.svg +0 -0
- /package/{assets → src/assets}/svg/list-test-lab-flask.svg +0 -0
- /package/{assets → src/assets}/svg/livewire-tool.svg +0 -0
- /package/{assets → src/assets}/svg/loading-status-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/lock-unlock.svg +0 -0
- /package/{assets → src/assets}/svg/lock.svg +0 -0
- /package/{assets → src/assets}/svg/logout.svg +0 -0
- /package/{assets → src/assets}/svg/lung.svg +0 -0
- /package/{assets → src/assets}/svg/lungs.svg +0 -0
- /package/{assets → src/assets}/svg/markdown.svg +0 -0
- /package/{assets → src/assets}/svg/measure-angle.svg +0 -0
- /package/{assets → src/assets}/svg/measure-ruler-calibration.svg +0 -0
- /package/{assets → src/assets}/svg/media-library-imports-dowload.svg +0 -0
- /package/{assets → src/assets}/svg/menu-burger-handle.svg +0 -0
- /package/{assets → src/assets}/svg/menu-horizontal.svg +0 -0
- /package/{assets → src/assets}/svg/menu-list-form-square.svg +0 -0
- /package/{assets → src/assets}/svg/menu-vertical.svg +0 -0
- /package/{assets → src/assets}/svg/message-chat-info.svg +0 -0
- /package/{assets → src/assets}/svg/message-chat-question-support.svg +0 -0
- /package/{assets → src/assets}/svg/message-checkmark-sent.svg +0 -0
- /package/{assets → src/assets}/svg/message-question-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/microphone-mic-rec-circle.svg +0 -0
- /package/{assets → src/assets}/svg/microphone-mic-rec.svg +0 -0
- /package/{assets → src/assets}/svg/microphone-mic-recording-circle.svg +0 -0
- /package/{assets → src/assets}/svg/minus.svg +0 -0
- /package/{assets → src/assets}/svg/modalities.svg +0 -0
- /package/{assets → src/assets}/svg/molecule.svg +0 -0
- /package/{assets → src/assets}/svg/money-coin.svg +0 -0
- /package/{assets → src/assets}/svg/money-dollar.svg +0 -0
- /package/{assets → src/assets}/svg/money.svg +0 -0
- /package/{assets → src/assets}/svg/mouse-big.svg +0 -0
- /package/{assets → src/assets}/svg/move.svg +0 -0
- /package/{assets → src/assets}/svg/music-play-resume.svg +0 -0
- /package/{assets → src/assets}/svg/music-stop.svg +0 -0
- /package/{assets → src/assets}/svg/mute.svg +0 -0
- /package/{assets → src/assets}/svg/network-storage-alert.svg +0 -0
- /package/{assets → src/assets}/svg/notebook-add-plus.svg +0 -0
- /package/{assets → src/assets}/svg/notebook-open.svg +0 -0
- /package/{assets → src/assets}/svg/notebook-pen-edit.svg +0 -0
- /package/{assets → src/assets}/svg/notebook.svg +0 -0
- /package/{assets → src/assets}/svg/notes-pen.svg +0 -0
- /package/{assets → src/assets}/svg/object-search-zoom-plus.svg +0 -0
- /package/{assets → src/assets}/svg/open.svg +0 -0
- /package/{assets → src/assets}/svg/paint-roller.svg +0 -0
- /package/{assets → src/assets}/svg/pause.svg +0 -0
- /package/{assets → src/assets}/svg/pen-edit-circle.svg +0 -0
- /package/{assets → src/assets}/svg/pencil-edit-create.svg +0 -0
- /package/{assets → src/assets}/svg/photo-edit-brightness-invert.svg +0 -0
- /package/{assets → src/assets}/svg/pie-chart.svg +0 -0
- /package/{assets → src/assets}/svg/pie-graph-chart-sample.svg +0 -0
- /package/{assets → src/assets}/svg/plus-add-rectangle.svg +0 -0
- /package/{assets → src/assets}/svg/polygon.svg +0 -0
- /package/{assets → src/assets}/svg/private-mode-protection-circle.svg +0 -0
- /package/{assets → src/assets}/svg/protection-target.svg +0 -0
- /package/{assets → src/assets}/svg/protective-mask.svg +0 -0
- /package/{assets → src/assets}/svg/question-circle.svg +0 -0
- /package/{assets → src/assets}/svg/quote.svg +0 -0
- /package/{assets → src/assets}/svg/radiology-scan-circle.svg +0 -0
- /package/{assets → src/assets}/svg/radiology-scan.svg +0 -0
- /package/{assets → src/assets}/svg/reader-studies.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-arrow-manual.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-item-left.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-item-right.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-refresh.svg +0 -0
- /package/{assets → src/assets}/svg/rotate.svg +0 -0
- /package/{assets → src/assets}/svg/ruler-bidirectional.svg +0 -0
- /package/{assets → src/assets}/svg/ruler.svg +0 -0
- /package/{assets → src/assets}/svg/scanner.svg +0 -0
- /package/{assets → src/assets}/svg/search-loop.svg +0 -0
- /package/{assets → src/assets}/svg/search-user-profile-person.svg +0 -0
- /package/{assets → src/assets}/svg/search-zoom-minus.svg +0 -0
- /package/{assets → src/assets}/svg/search-zoom-plus.svg +0 -0
- /package/{assets → src/assets}/svg/search.svg +0 -0
- /package/{assets → src/assets}/svg/section-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/send-message-share.svg +0 -0
- /package/{assets → src/assets}/svg/server-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/server-database-endpoint.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-connect.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-download.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-key-protection.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-minimal-download.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-sync-import.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-sync.svg +0 -0
- /package/{assets → src/assets}/svg/server-upload.svg +0 -0
- /package/{assets → src/assets}/svg/server.svg +0 -0
- /package/{assets → src/assets}/svg/servers-database.svg +0 -0
- /package/{assets → src/assets}/svg/setting-gear.svg +0 -0
- /package/{assets → src/assets}/svg/settings-adjust.svg +0 -0
- /package/{assets → src/assets}/svg/settings-gear-square.svg +0 -0
- /package/{assets → src/assets}/svg/settings-gear.svg +0 -0
- /package/{assets → src/assets}/svg/settings-select.svg +0 -0
- /package/{assets → src/assets}/svg/shapes-objects.svg +0 -0
- /package/{assets → src/assets}/svg/share.svg +0 -0
- /package/{assets → src/assets}/svg/shield-protect.svg +0 -0
- /package/{assets → src/assets}/svg/show-visible.svg +0 -0
- /package/{assets → src/assets}/svg/smiley-emoji-face.svg +0 -0
- /package/{assets → src/assets}/svg/speed-dashboard.svg +0 -0
- /package/{assets → src/assets}/svg/square-fill-outline.svg +0 -0
- /package/{assets → src/assets}/svg/square-fill.svg +0 -0
- /package/{assets → src/assets}/svg/square-outline.svg +0 -0
- /package/{assets → src/assets}/svg/star.svg +0 -0
- /package/{assets → src/assets}/svg/stars-light-sparkle.svg +0 -0
- /package/{assets → src/assets}/svg/stomach.svg +0 -0
- /package/{assets → src/assets}/svg/substract-group.svg +0 -0
- /package/{assets → src/assets}/svg/switch.svg +0 -0
- /package/{assets → src/assets}/svg/target-space-object-select.svg +0 -0
- /package/{assets → src/assets}/svg/target.svg +0 -0
- /package/{assets → src/assets}/svg/tasklist-to-do-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/technology-cube-3d.svg +0 -0
- /package/{assets → src/assets}/svg/test-lab-flask.svg +0 -0
- /package/{assets → src/assets}/svg/text-bold.svg +0 -0
- /package/{assets → src/assets}/svg/text-cross.svg +0 -0
- /package/{assets → src/assets}/svg/text-h1.svg +0 -0
- /package/{assets → src/assets}/svg/text-h2.svg +0 -0
- /package/{assets → src/assets}/svg/text-input-form.svg +0 -0
- /package/{assets → src/assets}/svg/text-long.svg +0 -0
- /package/{assets → src/assets}/svg/text-short-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/text-underline.svg +0 -0
- /package/{assets → src/assets}/svg/thumbs-up-like.svg +0 -0
- /package/{assets → src/assets}/svg/timer-clock-style.svg +0 -0
- /package/{assets → src/assets}/svg/trash-delete.svg +0 -0
- /package/{assets → src/assets}/svg/twitter.svg +0 -0
- /package/{assets → src/assets}/svg/undone-uncheck-untracked.svg +0 -0
- /package/{assets → src/assets}/svg/unlimited-repeat-subscription-circle.svg +0 -0
- /package/{assets → src/assets}/svg/upload.svg +0 -0
- /package/{assets → src/assets}/svg/user-checked.svg +0 -0
- /package/{assets → src/assets}/svg/user-delete-cross.svg +0 -0
- /package/{assets → src/assets}/svg/user-document.svg +0 -0
- /package/{assets → src/assets}/svg/user-group.svg +0 -0
- /package/{assets → src/assets}/svg/user-key.svg +0 -0
- /package/{assets → src/assets}/svg/user-lock.svg +0 -0
- /package/{assets → src/assets}/svg/user-profile-group-discovery.svg +0 -0
- /package/{assets → src/assets}/svg/user-setting-gear.svg +0 -0
- /package/{assets → src/assets}/svg/user.svg +0 -0
- /package/{assets → src/assets}/svg/video-player-controls.svg +0 -0
- /package/{assets → src/assets}/svg/visible-eye-hidden.svg +0 -0
- /package/{assets → src/assets}/svg/volume-full.svg +0 -0
- /package/{assets → src/assets}/svg/warning-circle.svg +0 -0
- /package/{assets → src/assets}/svg/warning.svg +0 -0
- /package/{assets → src/assets}/svg/window-finder-resize-arrow-down.svg +0 -0
- /package/{assets → src/assets}/svg/window-finder-resize-arrow-up.svg +0 -0
- /package/{assets → src/assets}/svg/window-resize-left.svg +0 -0
- /package/{assets → src/assets}/svg/window-resize-right.svg +0 -0
- /package/{assets → src/assets}/svg/window-zoom-plus-loupe.svg +0 -0
- /package/{assets → src/assets}/svg/windows.svg +0 -0
- /package/{assets → src/assets}/svg/workspace-mode.svg +0 -0
- /package/{assets → src/assets}/svg/youtube.svg +0 -0
- /package/{assets → src/assets}/svg/zendesk-logo.svg +0 -0
- /package/{scss → src/scss}/atoms/ghost.scss +0 -0
- /package/{scss → src/scss}/config/overlay.scss +0 -0
- /package/{scss → src/scss}/config/shadows.scss +0 -0
- /package/{scss → src/scss}/config/typography.scss +0 -0
- /package/{scss → src/scss}/icons/icons.scss +0 -0
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { CdkMenuTrigger } from '@angular/cdk/menu';
|
|
2
|
-
import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
|
|
3
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
4
|
-
import { FwMenuComponent } from '../../menu/menu.component';
|
|
5
|
-
import { FwMenuItemComponent } from '../../menu/menu-item/menu-item.component';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FwMultiSelectMenuComponent implements ControlValueAccessor, AfterContentInit, OnChanges, OnDestroy {
|
|
8
|
-
protected _changeDetectorRef: ChangeDetectorRef;
|
|
9
|
-
outsideClick(): void;
|
|
10
|
-
options: object[];
|
|
11
|
-
valueProperty?: string;
|
|
12
|
-
titleProperty?: string;
|
|
13
|
-
iconProperty?: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
|
-
useCheckbox?: boolean;
|
|
16
|
-
closeOnSelect?: boolean;
|
|
17
|
-
filterItemsOnSelect?: boolean;
|
|
18
|
-
maxSelectedShown: number;
|
|
19
|
-
width: string;
|
|
20
|
-
minHeight: string;
|
|
21
|
-
maxHeight: string;
|
|
22
|
-
optionsWidth?: string;
|
|
23
|
-
minOptionsHeight?: string;
|
|
24
|
-
maxOptionsHeight?: string;
|
|
25
|
-
size?: 'small' | 'medium' | 'large';
|
|
26
|
-
placeholder: string;
|
|
27
|
-
emptyText: string;
|
|
28
|
-
trigger: CdkMenuTrigger;
|
|
29
|
-
menu: FwMenuComponent;
|
|
30
|
-
renderedMenuItems: QueryList<FwMenuItemComponent>;
|
|
31
|
-
menuItems: QueryList<FwMenuItemComponent>;
|
|
32
|
-
selectedValues: string[];
|
|
33
|
-
selectedOptions: object[];
|
|
34
|
-
filteredOptions: object[];
|
|
35
|
-
private subscriptions;
|
|
36
|
-
textInput: ElementRef<HTMLInputElement>;
|
|
37
|
-
textInitialInput: ElementRef<HTMLInputElement>;
|
|
38
|
-
change: EventEmitter<any>;
|
|
39
|
-
focused: number;
|
|
40
|
-
private touched;
|
|
41
|
-
private _isOpen;
|
|
42
|
-
get value(): any[];
|
|
43
|
-
set value(newValue: any[]);
|
|
44
|
-
private _value;
|
|
45
|
-
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
46
|
-
onChange: (value: any[]) => void;
|
|
47
|
-
onTouched: () => void;
|
|
48
|
-
registerOnChange(fn: (value: any[]) => void): void;
|
|
49
|
-
registerOnTouched(fn: () => void): void;
|
|
50
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
51
|
-
writeValue(value: any[]): void;
|
|
52
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
53
|
-
ngOnDestroy(): void;
|
|
54
|
-
ngAfterContentInit(): void;
|
|
55
|
-
handleTouched(): void;
|
|
56
|
-
handleClose(chip: object): void;
|
|
57
|
-
handleChange(e: string[]): void;
|
|
58
|
-
updateFilteredItems(): void;
|
|
59
|
-
updateValue(value: any[]): void;
|
|
60
|
-
moveFocused(direction: string): void;
|
|
61
|
-
handleKeyDown(event: KeyboardEvent): void;
|
|
62
|
-
handleInput(event: Event): void;
|
|
63
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwMultiSelectMenuComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwMultiSelectMenuComponent, "fw-multi-select", never, { "options": "options"; "valueProperty": "valueProperty"; "titleProperty": "titleProperty"; "iconProperty": "iconProperty"; "disabled": "disabled"; "useCheckbox": "useCheckbox"; "closeOnSelect": "closeOnSelect"; "filterItemsOnSelect": "filterItemsOnSelect"; "maxSelectedShown": "maxSelectedShown"; "width": "width"; "minHeight": "minHeight"; "maxHeight": "maxHeight"; "optionsWidth": "optionsWidth"; "minOptionsHeight": "minOptionsHeight"; "maxOptionsHeight": "maxOptionsHeight"; "size": "size"; "placeholder": "placeholder"; "emptyText": "emptyText"; "value": "value"; }, { "change": "change"; }, ["menuItems"], ["[fw-menu-item, fw-menu-separator]"], false>;
|
|
65
|
-
}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { CdkMenuTrigger } from '@angular/cdk/menu';
|
|
2
|
-
import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
|
|
3
|
-
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
4
|
-
import { IconType } from '../icon/icon.types';
|
|
5
|
-
import { FwMenuComponent } from '../menu/menu.component';
|
|
6
|
-
import { FwMenuItemComponent } from '../menu/menu-item/menu-item.component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class FwSelectMenuComponent implements OnChanges, AfterContentInit, OnDestroy, ControlValueAccessor {
|
|
9
|
-
protected _changeDetectorRef: ChangeDetectorRef;
|
|
10
|
-
private ngControl;
|
|
11
|
-
outsideClick(evt: any): void;
|
|
12
|
-
options: object[];
|
|
13
|
-
valueProperty?: string;
|
|
14
|
-
titleProperty?: string;
|
|
15
|
-
iconProperty?: string;
|
|
16
|
-
staticIcon?: IconType;
|
|
17
|
-
descriptionProperty?: string;
|
|
18
|
-
showFilter?: boolean;
|
|
19
|
-
showReset?: boolean;
|
|
20
|
-
disabled?: boolean;
|
|
21
|
-
errored?: boolean;
|
|
22
|
-
width: string;
|
|
23
|
-
optionsWidth?: string;
|
|
24
|
-
minOptionsHeight?: string;
|
|
25
|
-
maxOptionsHeight?: string;
|
|
26
|
-
size?: 'small' | 'medium' | 'large';
|
|
27
|
-
placeholder: string;
|
|
28
|
-
trigger: CdkMenuTrigger;
|
|
29
|
-
menu: FwMenuComponent;
|
|
30
|
-
menuItems: QueryList<FwMenuItemComponent>;
|
|
31
|
-
change: EventEmitter<any>;
|
|
32
|
-
readonly filterChanged: EventEmitter<string>;
|
|
33
|
-
selectValue: string;
|
|
34
|
-
selectTitle: string;
|
|
35
|
-
selectIcon: string;
|
|
36
|
-
filterValue: string;
|
|
37
|
-
private subscriptions;
|
|
38
|
-
private _isOpen;
|
|
39
|
-
focused: number;
|
|
40
|
-
inFocusOpen: boolean;
|
|
41
|
-
preFocusValue: any;
|
|
42
|
-
get value(): any;
|
|
43
|
-
set value(newValue: any);
|
|
44
|
-
private _value;
|
|
45
|
-
private _valueType;
|
|
46
|
-
constructor(_changeDetectorRef: ChangeDetectorRef, ngControl: NgControl);
|
|
47
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
48
|
-
ngAfterContentInit(): void;
|
|
49
|
-
ngOnDestroy(): void;
|
|
50
|
-
get invalid(): boolean;
|
|
51
|
-
get touched(): boolean;
|
|
52
|
-
onChange?: (value: any) => void;
|
|
53
|
-
onTouched: () => void;
|
|
54
|
-
registerOnChange(fn: (value: any) => void): void;
|
|
55
|
-
registerOnTouched(fn: () => {}): void;
|
|
56
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
57
|
-
writeValue(value: any): void;
|
|
58
|
-
handleClick(e: string): void;
|
|
59
|
-
moveFocused(direction: string): void;
|
|
60
|
-
handleKeyDown(event: KeyboardEvent): void;
|
|
61
|
-
handleKeyUp(event: KeyboardEvent): void;
|
|
62
|
-
updateValue(value: any): void;
|
|
63
|
-
handleReset(): void;
|
|
64
|
-
close(): void;
|
|
65
|
-
onFilterChanged(value: string): void;
|
|
66
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuComponent, [null, { optional: true; self: true; }]>;
|
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSelectMenuComponent, "fw-select", never, { "options": "options"; "valueProperty": "valueProperty"; "titleProperty": "titleProperty"; "iconProperty": "iconProperty"; "staticIcon": "staticIcon"; "descriptionProperty": "descriptionProperty"; "showFilter": "showFilter"; "showReset": "showReset"; "disabled": "disabled"; "errored": "errored"; "width": "width"; "optionsWidth": "optionsWidth"; "minOptionsHeight": "minOptionsHeight"; "maxOptionsHeight": "maxOptionsHeight"; "size": "size"; "placeholder": "placeholder"; "value": "value"; }, { "change": "change"; "filterChanged": "filterChanged"; }, ["menuItems"], ["[fw-menu-item, fw-menu-separator, fw-menu-item-group]"], false>;
|
|
68
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./multi-select-menu/multi-select-menu.component";
|
|
3
|
-
import * as i2 from "./select-menu.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@angular/cdk/menu";
|
|
6
|
-
import * as i5 from "@angular/forms";
|
|
7
|
-
import * as i6 from "../chip/chip.module";
|
|
8
|
-
import * as i7 from "../icon/icon.module";
|
|
9
|
-
import * as i8 from "../menu/menu.module";
|
|
10
|
-
import * as i9 from "../text-input/text-input.module";
|
|
11
|
-
export declare class FwSelectMenuModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSelectMenuModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwSelectMenuModule, [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent], [typeof i3.CommonModule, typeof i4.CdkMenuModule, typeof i5.FormsModule, typeof i6.FwChipModule, typeof i7.FwIconModule, typeof i8.FwMenuModule, typeof i9.FwTextInputModule], [typeof i1.FwMultiSelectMenuComponent, typeof i2.FwSelectMenuComponent]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FwSelectMenuModule>;
|
|
15
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { TranslationService } from '../translation.service';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./translate.pipe";
|
|
4
|
-
import * as i2 from "./trusthtml.pipe";
|
|
5
|
-
export declare class PipesModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.TranslatePipe, typeof i2.TrustHtmlPipe], never, [typeof i1.TranslatePipe, typeof i2.TrustHtmlPipe]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
|
|
9
|
-
}
|
|
10
|
-
export { TranslationService };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, PipeTransform } from '@angular/core';
|
|
2
|
-
import { TranslationService } from '../translation.service';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Translate a message given a nested key to a location in the loaded locale copy.
|
|
6
|
-
*/
|
|
7
|
-
export declare class TranslatePipe implements PipeTransform, OnDestroy {
|
|
8
|
-
private cdr;
|
|
9
|
-
private translationService;
|
|
10
|
-
private subscriptions;
|
|
11
|
-
private messages;
|
|
12
|
-
constructor(cdr: ChangeDetectorRef, translationService: TranslationService);
|
|
13
|
-
ngOnDestroy(): void;
|
|
14
|
-
transform(key: string, silent?: boolean): string;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TranslatePipe, never>;
|
|
16
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TranslatePipe, "translate", false>;
|
|
17
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TrustHtmlPipe implements PipeTransform {
|
|
5
|
-
private sanitizer;
|
|
6
|
-
constructor(sanitizer: DomSanitizer);
|
|
7
|
-
transform(html: string): SafeHtml;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TrustHtmlPipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<TrustHtmlPipe, "trusthtml", false>;
|
|
10
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare abstract class TranslationService {
|
|
4
|
-
abstract getMessage(key: string, silent?: boolean): Observable<string>;
|
|
5
|
-
}
|
|
6
|
-
/**
|
|
7
|
-
* Very basic i18n implementation. Consumer apps can provide their own implementation of TranslationService to override.
|
|
8
|
-
*/
|
|
9
|
-
export declare class MinimalTranslationService implements TranslationService {
|
|
10
|
-
private static messages;
|
|
11
|
-
getMessage(key: string, silent?: boolean): Observable<string>;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MinimalTranslationService, never>;
|
|
13
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MinimalTranslationService>;
|
|
14
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { FwSnackbarMessage } from '../snackbar-message.model';
|
|
3
|
-
import { FwSnackbarTimerService } from '../snackbar-timer.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FwSnackbarComponent implements AfterViewInit, OnInit {
|
|
6
|
-
private cdr;
|
|
7
|
-
private timerService;
|
|
8
|
-
message: FwSnackbarMessage;
|
|
9
|
-
messageDuration: number;
|
|
10
|
-
ready: EventEmitter<FwSnackbarComponent>;
|
|
11
|
-
dismiss: EventEmitter<string>;
|
|
12
|
-
action: EventEmitter<string>;
|
|
13
|
-
color: 'primary' | 'success' | 'warning' | 'danger';
|
|
14
|
-
get cssClass(): string;
|
|
15
|
-
constructor(cdr: ChangeDetectorRef, timerService: FwSnackbarTimerService);
|
|
16
|
-
ngAfterViewInit(): void;
|
|
17
|
-
startTimer(): void;
|
|
18
|
-
stopTimer(): void;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
handleDismiss(): void;
|
|
21
|
-
handleAction(): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSnackbarComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSnackbarComponent, "fw-snackbar", never, { "message": "message"; "messageDuration": "messageDuration"; }, { "ready": "ready"; "dismiss": "dismiss"; "action": "action"; }, never, never, false>;
|
|
24
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
|
-
import { FwSnackbarService } from '../snackbar.service';
|
|
3
|
-
import { FwSnackbarComponent } from '../snackbar/snackbar.component';
|
|
4
|
-
import { FwSnackbarMessage } from '../snackbar-message.model';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FwSnackbarContainerComponent implements OnDestroy {
|
|
7
|
-
private cdr;
|
|
8
|
-
private snackbarService;
|
|
9
|
-
get classes(): string;
|
|
10
|
-
limit: number;
|
|
11
|
-
messages: FwSnackbarMessage[];
|
|
12
|
-
private subscriptions;
|
|
13
|
-
constructor(cdr: ChangeDetectorRef, snackbarService: FwSnackbarService);
|
|
14
|
-
ngOnDestroy(): void;
|
|
15
|
-
onReady(snackbar: FwSnackbarComponent): void;
|
|
16
|
-
onDismiss(messageId: string): void;
|
|
17
|
-
clearAll(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSnackbarContainerComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSnackbarContainerComponent, "fw-snackbar-container", never, {}, {}, never, never, false>;
|
|
20
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { FwSnackbarComponent } from './snackbar/snackbar.component';
|
|
2
|
-
export interface FwSnackbarMessage {
|
|
3
|
-
id?: string;
|
|
4
|
-
severity: 'info' | 'success' | 'warning' | 'error';
|
|
5
|
-
message: string;
|
|
6
|
-
icon?: string;
|
|
7
|
-
showClose?: boolean;
|
|
8
|
-
actionText?: string;
|
|
9
|
-
action?: () => void;
|
|
10
|
-
duration?: number;
|
|
11
|
-
ref?: FwSnackbarComponent;
|
|
12
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./snackbar/snackbar.component";
|
|
3
|
-
import * as i2 from "./snackbar-container/snackbar-container.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "../button/button.module";
|
|
6
|
-
import * as i5 from "@angular/material/button";
|
|
7
|
-
import * as i6 from "@angular/material/icon";
|
|
8
|
-
import * as i7 from "../icon-button/icon-button.module";
|
|
9
|
-
import * as i8 from "../icon/icon.module";
|
|
10
|
-
export declare class FwSnackbarModule {
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSnackbarModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwSnackbarModule, [typeof i1.FwSnackbarComponent, typeof i2.FwSnackbarContainerComponent], [typeof i3.CommonModule, typeof i4.FwButtonModule, typeof i5.MatButtonModule, typeof i6.MatIconModule, typeof i7.FwIconButtonModule, typeof i8.FwIconModule], [typeof i1.FwSnackbarComponent, typeof i2.FwSnackbarContainerComponent]>;
|
|
13
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FwSnackbarModule>;
|
|
14
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { FwSnackbarMessage } from './snackbar-message.model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare function genMessageId(): string;
|
|
5
|
-
export declare class FwSnackbarService {
|
|
6
|
-
readonly messages$: BehaviorSubject<FwSnackbarMessage[]>;
|
|
7
|
-
private messageQueue;
|
|
8
|
-
show(message: FwSnackbarMessage): void;
|
|
9
|
-
dismiss(messageId: string): void;
|
|
10
|
-
dismissAll(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSnackbarService, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FwSnackbarService>;
|
|
13
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { IconType } from '../icon/icon.types';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FwStepComponent implements OnChanges {
|
|
5
|
-
stepNumber: number;
|
|
6
|
-
color?: 'slate' | 'success' | 'error' | 'warning' | 'info';
|
|
7
|
-
variant?: 'number' | 'icon' | 'decorator';
|
|
8
|
-
alignment?: 'left' | 'center';
|
|
9
|
-
backgroundColor?: string;
|
|
10
|
-
title: string;
|
|
11
|
-
description?: string;
|
|
12
|
-
icon?: IconType;
|
|
13
|
-
disabled?: boolean;
|
|
14
|
-
active?: boolean;
|
|
15
|
-
completed?: boolean;
|
|
16
|
-
done?: boolean;
|
|
17
|
-
status?: 'default' | 'active' | 'completed' | 'done' | 'disabled' | 'error' | 'warning' | 'info';
|
|
18
|
-
select: EventEmitter<number>;
|
|
19
|
-
handleClick(): void;
|
|
20
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepComponent, "fw-step", never, { "stepNumber": "stepNumber"; "color": "color"; "variant": "variant"; "alignment": "alignment"; "backgroundColor": "backgroundColor"; "title": "title"; "description": "description"; "icon": "icon"; "disabled": "disabled"; "active": "active"; "completed": "completed"; "done": "done"; "status": "status"; }, { "select": "select"; }, never, ["fw-step-decorator"], false>;
|
|
23
|
-
}
|
|
24
|
-
export declare class FwStepDecoratorComponent {
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepDecoratorComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepDecoratorComponent, "fw-step-decorator", never, {}, {}, never, ["*"], false>;
|
|
27
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
3
|
-
import { FwStepComponent } from './step.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FwStepperComponent implements OnChanges, OnDestroy, AfterContentInit {
|
|
6
|
-
private sanitizer;
|
|
7
|
-
activeStep: number;
|
|
8
|
-
doneStep?: number;
|
|
9
|
-
alignment?: 'left' | 'center';
|
|
10
|
-
backgroundColor?: string;
|
|
11
|
-
stepChange: EventEmitter<number>;
|
|
12
|
-
steps: QueryList<FwStepComponent>;
|
|
13
|
-
get style(): SafeStyle;
|
|
14
|
-
private subscriptions;
|
|
15
|
-
constructor(sanitizer: DomSanitizer);
|
|
16
|
-
ngOnDestroy(): void;
|
|
17
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
18
|
-
ngAfterContentInit(): void;
|
|
19
|
-
handleSelect(step?: number): void;
|
|
20
|
-
updateSteps(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepperComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwStepperComponent, "fw-stepper", never, { "activeStep": "activeStep"; "doneStep": "doneStep"; "alignment": "alignment"; "backgroundColor": "backgroundColor"; }, { "stepChange": "stepChange"; }, ["steps"], ["fw-step"], false>;
|
|
23
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./step.component";
|
|
3
|
-
import * as i2 from "./stepper.component";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "../icon/icon.module";
|
|
6
|
-
import * as i5 from "../icon-button/icon-button.module";
|
|
7
|
-
export declare class FwStepperModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwStepperModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwStepperModule, [typeof i1.FwStepComponent, typeof i1.FwStepDecoratorComponent, typeof i2.FwStepperComponent], [typeof i3.CommonModule, typeof i4.FwIconModule, typeof i5.FwIconButtonModule], [typeof i1.FwStepComponent, typeof i1.FwStepDecoratorComponent, typeof i2.FwStepperComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FwStepperModule>;
|
|
11
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FwSwitchComponent implements ControlValueAccessor {
|
|
5
|
-
name?: string;
|
|
6
|
-
title?: string;
|
|
7
|
-
titlePosition?: 'start' | 'end';
|
|
8
|
-
size?: 'small' | 'medium';
|
|
9
|
-
color?: 'default' | 'primary' | 'secondary';
|
|
10
|
-
disabled?: boolean;
|
|
11
|
-
checked: boolean;
|
|
12
|
-
change: EventEmitter<boolean>;
|
|
13
|
-
onChange: (value: boolean) => void;
|
|
14
|
-
onTouched: () => void;
|
|
15
|
-
registerOnChange(fn: (value: boolean) => void): void;
|
|
16
|
-
registerOnTouched(fn: () => void): void;
|
|
17
|
-
setDisabledState(isDisabled: boolean): void;
|
|
18
|
-
writeValue(checked: boolean): void;
|
|
19
|
-
handleClick(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSwitchComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwSwitchComponent, "fw-switch", never, { "name": "name"; "title": "title"; "titlePosition": "titlePosition"; "size": "size"; "color": "color"; "disabled": "disabled"; "checked": "checked"; }, { "change": "change"; }, never, never, false>;
|
|
22
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./switch.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class FwSwitchModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwSwitchModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwSwitchModule, [typeof i1.FwSwitchComponent], [typeof i2.CommonModule], [typeof i1.FwSwitchComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FwSwitchModule>;
|
|
8
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { CdkCell, CdkCellDef, CdkColumnDef, CdkFooterCell, CdkFooterCellDef, CdkHeaderCell, CdkHeaderCellDef } from '@angular/cdk/table';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* Cell definition for the fw-table.
|
|
5
|
-
* Captures the template of a column's data row cell as well as cell-specific properties.
|
|
6
|
-
*/
|
|
7
|
-
export declare class FwCellDef extends CdkCellDef {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwCellDef, never>;
|
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwCellDef, "[fwCellDef]", never, {}, {}, never, never, true>;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Header cell definition for the fw-table.
|
|
13
|
-
* Captures the template of a column's header cell and as well as cell-specific properties.
|
|
14
|
-
*/
|
|
15
|
-
export declare class FwHeaderCellDef extends CdkHeaderCellDef {
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwHeaderCellDef, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderCellDef, "[fwHeaderCellDef]", never, {}, {}, never, never, true>;
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Footer cell definition for the fw-table.
|
|
21
|
-
* Captures the template of a column's footer cell and as well as cell-specific properties.
|
|
22
|
-
*/
|
|
23
|
-
export declare class FwFooterCellDef extends CdkFooterCellDef {
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwFooterCellDef, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterCellDef, "[fwFooterCellDef]", never, {}, {}, never, never, true>;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* Column definition for the fw-table.
|
|
29
|
-
* Defines a set of cells available for a table column.
|
|
30
|
-
*/
|
|
31
|
-
export declare class FwColumnDef extends CdkColumnDef {
|
|
32
|
-
/** Unique name for this column. */
|
|
33
|
-
get name(): string;
|
|
34
|
-
set name(name: string);
|
|
35
|
-
/**
|
|
36
|
-
* Add "fw-column-" prefix in addition to "cdk-column-" prefix.
|
|
37
|
-
* In the future, this will only add "fw-column-" and columnCssClassName
|
|
38
|
-
* will change from type string[] to string.
|
|
39
|
-
* @docs-private
|
|
40
|
-
*/
|
|
41
|
-
protected _updateColumnCssClassName(): void;
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwColumnDef, never>;
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwColumnDef, "[fwColumnDef]", never, { "name": "fwColumnDef"; }, {}, never, never, true>;
|
|
44
|
-
}
|
|
45
|
-
/** Header cell template container that adds the right classes and role. */
|
|
46
|
-
export declare class FwHeaderCell extends CdkHeaderCell {
|
|
47
|
-
class: string;
|
|
48
|
-
role: string;
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwHeaderCell, never>;
|
|
50
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderCell, "fw-header-cell, th[fw-header-cell]", never, {}, {}, never, never, true>;
|
|
51
|
-
}
|
|
52
|
-
/** Footer cell template container that adds the right classes and role. */
|
|
53
|
-
export declare class FwFooterCell extends CdkFooterCell {
|
|
54
|
-
class: string;
|
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwFooterCell, never>;
|
|
56
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterCell, "fw-footer-cell, td[fw-footer-cell]", never, {}, {}, never, never, true>;
|
|
57
|
-
}
|
|
58
|
-
/** Cell template container that adds the right classes and role. */
|
|
59
|
-
export declare class FwCell extends CdkCell {
|
|
60
|
-
class: string;
|
|
61
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwCell, never>;
|
|
62
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwCell, "fw-cell, td[fw-cell]", never, {}, {}, never, never, true>;
|
|
63
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkNoDataRow, CdkRow, CdkRowDef } from '@angular/cdk/table';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* Header row definition for the fw-table.
|
|
5
|
-
* Captures the header row's template and other header properties such as the columns to display.
|
|
6
|
-
*/
|
|
7
|
-
export declare class FwHeaderRowDef extends CdkHeaderRowDef {
|
|
8
|
-
columns: string[];
|
|
9
|
-
sticky: boolean;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwHeaderRowDef, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwHeaderRowDef, "[fwHeaderRowDef]", never, { "columns": "fwHeaderRowDef"; "sticky": "fwHeaderRowDefSticky"; }, {}, never, never, false>;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* Footer row definition for the fw-table.
|
|
15
|
-
* Captures the footer row's template and other footer properties such as the columns to display.
|
|
16
|
-
*/
|
|
17
|
-
export declare class FwFooterRowDef extends CdkFooterRowDef {
|
|
18
|
-
columns: string[];
|
|
19
|
-
sticky: boolean;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwFooterRowDef, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwFooterRowDef, "[fwFooterRowDef]", never, { "columns": "fwFooterRowDef"; "sticky": "fwFooterRowDefSticky"; }, {}, never, never, false>;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Data row definition for the fw-table.
|
|
25
|
-
* Captures the data row's template and other properties such as the columns to display and
|
|
26
|
-
* a when predicate that describes when this row should be used.
|
|
27
|
-
*/
|
|
28
|
-
export declare class FwRowDef<T> extends CdkRowDef<T> {
|
|
29
|
-
columns: string[];
|
|
30
|
-
when: (index: number, rowData: T) => boolean;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwRowDef<any>, never>;
|
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwRowDef<any>, "[fwRowDef]", never, { "columns": "fwRowDefColumns"; "when": "fwRowDefWhen"; }, {}, never, never, false>;
|
|
33
|
-
}
|
|
34
|
-
/** Header template container that contains the cell outlet. Adds the right class and role. */
|
|
35
|
-
export declare class FwHeaderRow extends CdkHeaderRow {
|
|
36
|
-
class: string;
|
|
37
|
-
role: string;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwHeaderRow, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwHeaderRow, "fw-header-row, tr[fw-header-row]", ["fwHeaderRow"], {}, {}, never, never, false>;
|
|
40
|
-
}
|
|
41
|
-
/** Footer template container that contains the cell outlet. Adds the right class and role. */
|
|
42
|
-
export declare class FwFooterRow extends CdkFooterRow {
|
|
43
|
-
class: string;
|
|
44
|
-
role: string;
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwFooterRow, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwFooterRow, "fw-footer-row, tr[fw-footer-row]", ["fwFooterRow"], {}, {}, never, never, false>;
|
|
47
|
-
}
|
|
48
|
-
/** Data row template container that contains the cell outlet. Adds the right class and role. */
|
|
49
|
-
export declare class FwRow extends CdkRow {
|
|
50
|
-
class: string;
|
|
51
|
-
role: string;
|
|
52
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwRow, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwRow, "fw-row, tr[fw-row]", ["fwRow"], {}, {}, never, never, false>;
|
|
54
|
-
}
|
|
55
|
-
/** Row that can be used to display a message when no data is shown in the table. */
|
|
56
|
-
export declare class FwNoDataRow extends CdkNoDataRow {
|
|
57
|
-
_contentClassName: string;
|
|
58
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwNoDataRow, never>;
|
|
59
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FwNoDataRow, "ng-template[fwNoDataRow]", never, {}, {}, never, never, false>;
|
|
60
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { CdkTable } from '@angular/cdk/table';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FwTableDenseComponent<T> extends CdkTable<T> {
|
|
4
|
-
class: string;
|
|
5
|
-
/** Overrides the sticky CSS class set by the `CdkTable`. */
|
|
6
|
-
protected stickyCssClass: string;
|
|
7
|
-
/** Overrides the need to add position: sticky on every sticky cell element in `CdkTable`. */
|
|
8
|
-
protected needsPositionStickyOnElement: boolean;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTableDenseComponent<any>, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTableDenseComponent<any>, "fw-table-dense, table[fw-table-dense]", ["fwTableDense"], {}, {}, never, never, false>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { CdkTable } from '@angular/cdk/table';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FwTableComponent<T> extends CdkTable<T> {
|
|
4
|
-
class: string;
|
|
5
|
-
/** Overrides the sticky CSS class set by the `CdkTable`. */
|
|
6
|
-
protected stickyCssClass: string;
|
|
7
|
-
/** Overrides the need to add position: sticky on every sticky cell element in `CdkTable`. */
|
|
8
|
-
protected needsPositionStickyOnElement: boolean;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTableComponent<any>, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTableComponent<any>, "fw-table, table[fw-table]", ["fwTable"], {}, {}, never, never, false>;
|
|
11
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./table.component";
|
|
3
|
-
import * as i2 from "./table-dense.component";
|
|
4
|
-
import * as i3 from "./row";
|
|
5
|
-
import * as i4 from "@angular/cdk/table";
|
|
6
|
-
import * as i5 from "@angular/common";
|
|
7
|
-
import * as i6 from "./cell";
|
|
8
|
-
export declare class FwTableModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTableModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwTableModule, [typeof i1.FwTableComponent, typeof i2.FwTableDenseComponent, typeof i3.FwRow, typeof i3.FwRowDef, typeof i3.FwFooterRow, typeof i3.FwFooterRowDef, typeof i3.FwHeaderRow, typeof i3.FwHeaderRowDef, typeof i3.FwNoDataRow], [typeof i4.CdkTableModule, typeof i5.CommonModule, typeof i6.FwCell, typeof i6.FwCellDef, typeof i6.FwColumnDef, typeof i6.FwFooterCell, typeof i6.FwFooterCellDef, typeof i6.FwHeaderCell, typeof i6.FwHeaderCellDef], [typeof i6.FwCell, typeof i6.FwCellDef, typeof i6.FwColumnDef, typeof i6.FwFooterCell, typeof i6.FwFooterCellDef, typeof i3.FwFooterRow, typeof i3.FwFooterRowDef, typeof i6.FwHeaderCell, typeof i6.FwHeaderCellDef, typeof i3.FwHeaderRow, typeof i3.FwHeaderRowDef, typeof i3.FwNoDataRow, typeof i3.FwRow, typeof i3.FwRowDef, typeof i1.FwTableComponent, typeof i2.FwTableDenseComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FwTableModule>;
|
|
12
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { IconType } from '../../../components/icon/icon.types';
|
|
3
|
-
import { FwTabPanelComponent } from '../tab-panel/tab-panel.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FwTabComponent {
|
|
6
|
-
title: string;
|
|
7
|
-
panel?: FwTabPanelComponent;
|
|
8
|
-
color: 'primary' | 'secondary';
|
|
9
|
-
icon?: IconType;
|
|
10
|
-
select: EventEmitter<FwTabComponent>;
|
|
11
|
-
active: boolean;
|
|
12
|
-
disabled: boolean;
|
|
13
|
-
role: string;
|
|
14
|
-
tabindex: string;
|
|
15
|
-
get cssClass(): string;
|
|
16
|
-
onClick(): void;
|
|
17
|
-
keyEvent(event: KeyboardEvent): void;
|
|
18
|
-
handleSelect(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabComponent, "fw-tab", never, { "title": "title"; "panel": "panel"; "color": "color"; "icon": "icon"; "active": "active"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "select": "select"; }, never, ["fw-badge"], false>;
|
|
21
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class FwTabPanelComponent {
|
|
3
|
-
active: boolean;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabPanelComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabPanelComponent, "fw-tab-panel", never, { "active": "active"; }, {}, never, ["*"], false>;
|
|
6
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { AfterContentInit, EventEmitter, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
-
import { FwTabComponent } from './tab/tab.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FwTabsComponent implements AfterContentInit, OnDestroy {
|
|
5
|
-
activeTabIndex: number;
|
|
6
|
-
activeTab?: FwTabComponent;
|
|
7
|
-
bordered?: boolean;
|
|
8
|
-
select: EventEmitter<FwTabComponent>;
|
|
9
|
-
tabs: QueryList<FwTabComponent>;
|
|
10
|
-
get cssClass(): string;
|
|
11
|
-
private subscriptions;
|
|
12
|
-
ngOnDestroy(): void;
|
|
13
|
-
ngAfterContentInit(): void;
|
|
14
|
-
handleTabChange(tab: FwTabComponent): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabsComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FwTabsComponent, "fw-tabs", never, { "activeTabIndex": "activeTabIndex"; "activeTab": "activeTab"; "bordered": "bordered"; }, { "select": "select"; }, ["tabs"], ["fw-tab", "*"], false>;
|
|
17
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./tab/tab.component";
|
|
3
|
-
import * as i2 from "./tab-panel/tab-panel.component";
|
|
4
|
-
import * as i3 from "./tabs.component";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
import * as i5 from "../icon/icon.module";
|
|
7
|
-
export declare class FwTabsModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FwTabsModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FwTabsModule, [typeof i1.FwTabComponent, typeof i2.FwTabPanelComponent, typeof i3.FwTabsComponent], [typeof i4.CommonModule, typeof i5.FwIconModule], [typeof i1.FwTabComponent, typeof i2.FwTabPanelComponent, typeof i3.FwTabsComponent]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FwTabsModule>;
|
|
11
|
-
}
|