@flywheel-io/vision 2.1.0-beta.0 → 2.1.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/color.utils.d.ts +2 -0
- package/components/alert/alert.component.d.ts +14 -0
- package/components/alert/alert.module.d.ts +10 -0
- package/components/app-icon/app-icon.component.d.ts +19 -0
- package/components/app-icon/app-icon.module.d.ts +9 -0
- package/components/avatar/avatar.component.d.ts +23 -0
- package/components/avatar/avatar.module.d.ts +9 -0
- package/components/badge/badge.component.d.ts +12 -0
- package/components/badge/badge.module.d.ts +8 -0
- package/components/breadcrumbs/breadcrumbs.component.d.ts +9 -0
- package/components/breadcrumbs/breadcrumbs.module.d.ts +10 -0
- package/components/breadcrumbs/crumb.component.d.ts +12 -0
- package/components/button/button.component.d.ts +16 -0
- package/components/button/button.directives.d.ts +37 -0
- package/components/button/button.module.d.ts +11 -0
- package/components/button-group/button-group.component.d.ts +33 -0
- package/components/button-group/button-group.module.d.ts +10 -0
- package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +21 -0
- package/components/button-toggle/button-toggle.component.d.ts +34 -0
- package/components/button-toggle/button-toggle.module.d.ts +10 -0
- package/components/card/card-attribute/card-attribute.component.d.ts +8 -0
- package/components/card/card-author/card-author.component.d.ts +7 -0
- package/components/card/card-content/card-content.component.d.ts +5 -0
- package/components/card/card-footer/card-footer.component.d.ts +9 -0
- package/components/card/card-header/card-header.component.d.ts +10 -0
- package/components/card/card.component.d.ts +12 -0
- package/components/card/card.module.d.ts +15 -0
- package/components/checkbox/checkbox.component.d.ts +23 -0
- package/components/checkbox/checkbox.module.d.ts +9 -0
- package/components/chip/chip.component.d.ts +20 -0
- package/components/chip/chip.module.d.ts +10 -0
- package/components/contained-input/contained-input.component.d.ts +23 -0
- package/components/contained-input/contained-input.module.d.ts +12 -0
- package/components/date-input/date-input.component.d.ts +47 -0
- package/components/date-input/date-input.module.d.ts +10 -0
- package/components/dialog/dialog-actions.component.d.ts +9 -0
- package/components/dialog/dialog-confirm.component.d.ts +25 -0
- package/components/dialog/dialog-content.component.d.ts +10 -0
- package/components/dialog/dialog-header.component.d.ts +9 -0
- package/components/dialog/dialog-simple.component.d.ts +25 -0
- package/components/dialog/dialog.component.d.ts +25 -0
- package/components/dialog/dialog.service.d.ts +17 -0
- package/components/dialog/dialogs.module.d.ts +18 -0
- package/components/form-heading/form-heading.component.d.ts +10 -0
- package/components/form-heading/form-heading.module.d.ts +10 -0
- package/components/forms/validators.d.ts +29 -0
- package/components/icon/icon.component.d.ts +13 -0
- package/components/icon/icon.module.d.ts +8 -0
- package/components/icon/icon.types.d.ts +2 -0
- package/components/icon-button/icon-button.component.d.ts +12 -0
- package/components/icon-button/icon-button.module.d.ts +9 -0
- package/components/layouts/context/context.component.d.ts +18 -0
- package/components/layouts/grid/grid.component.d.ts +19 -0
- package/components/layouts/layout-group.component.d.ts +9 -0
- package/components/layouts/layouts.module.d.ts +14 -0
- package/components/layouts/panel/panel.component.d.ts +11 -0
- package/components/layouts/sidebar/sidebar.component.d.ts +9 -0
- package/components/layouts/toolbar/toolbar.component.d.ts +7 -0
- package/components/menu/menu-close-triggers.directive.d.ts +10 -0
- package/components/menu/menu-container/menu-container.component.d.ts +43 -0
- package/components/menu/menu-header/menu-header.component.d.ts +5 -0
- package/components/menu/menu-item/menu-item.component.d.ts +41 -0
- package/components/menu/menu-item-group/menu-item-group.component.d.ts +11 -0
- package/components/menu/menu-separator/menu-separator.component.d.ts +5 -0
- package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +21 -0
- package/components/menu/menu.component.d.ts +28 -0
- package/components/menu/menu.module.d.ts +24 -0
- package/components/navbar/navbar-header/navbar-header.component.d.ts +5 -0
- package/components/navbar/navbar-item/navbar-item.component.d.ts +28 -0
- package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +18 -0
- package/components/navbar/navbar.component.d.ts +14 -0
- package/components/navbar/navbar.module.d.ts +18 -0
- package/components/number-input/number-input.component.d.ts +42 -0
- package/components/number-input/number-input.module.d.ts +10 -0
- package/components/paginator/paginator-advanced/paginator-advanced.component.d.ts +32 -0
- package/components/paginator/paginator.component.d.ts +43 -0
- package/components/paginator/paginator.model.d.ts +8 -0
- package/components/paginator/paginator.module.d.ts +14 -0
- package/components/phone-input/country-code.data.d.ts +2 -0
- package/components/phone-input/phone-input.component.d.ts +66 -0
- package/components/phone-input/phone-input.model.d.ts +10 -0
- package/components/phone-input/phone-input.module.d.ts +13 -0
- package/components/popover/popover-panel/popover-panel.component.d.ts +10 -0
- package/components/popover/popover.component.d.ts +19 -0
- package/components/popover/popover.module.d.ts +11 -0
- package/components/progress/bar/bar.component.d.ts +32 -0
- package/components/progress/progress.module.d.ts +9 -0
- package/components/progress/spinner/spinner.component.d.ts +37 -0
- package/components/radio/radio-group.component.d.ts +32 -0
- package/components/radio/radio.component.d.ts +17 -0
- package/components/radio/radio.module.d.ts +10 -0
- package/components/section-heading/back-button/back-button.component.d.ts +11 -0
- package/components/section-heading/section-heading.component.d.ts +13 -0
- package/components/section-heading/section-heading.module.d.ts +12 -0
- package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +9 -0
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +82 -0
- package/components/select-menu/select-menu.component.d.ts +70 -0
- package/components/select-menu/select-menu.module.d.ts +17 -0
- package/components/shared/pipes/pipes.module.d.ts +10 -0
- package/components/shared/pipes/translate.pipe.d.ts +17 -0
- package/components/shared/pipes/trusthtml.pipe.d.ts +10 -0
- package/components/shared/services/menu-manager.service.d.ts +10 -0
- package/components/shared/translation.service.d.ts +14 -0
- package/components/snackbar/snackbar/snackbar.component.d.ts +24 -0
- package/components/snackbar/snackbar-container/snackbar-container.component.d.ts +20 -0
- package/components/snackbar/snackbar-message.model.d.ts +12 -0
- package/components/snackbar/snackbar-timer.service.d.ts +10 -0
- package/components/snackbar/snackbar.module.d.ts +12 -0
- package/components/snackbar/snackbar.service.d.ts +13 -0
- package/components/stepper/step.component.d.ts +27 -0
- package/components/stepper/stepper.component.d.ts +23 -0
- package/components/stepper/stepper.module.d.ts +11 -0
- package/components/switch/switch.component.d.ts +22 -0
- package/components/switch/switch.module.d.ts +8 -0
- package/components/table/cell.d.ts +63 -0
- package/components/table/row.d.ts +58 -0
- package/components/table/table-dense.component.d.ts +11 -0
- package/components/table/table.component.d.ts +11 -0
- package/components/table/table.module.d.ts +12 -0
- package/components/tabs/tab/tab.component.d.ts +21 -0
- package/components/tabs/tab-panel/tab-panel.component.d.ts +6 -0
- package/components/tabs/tabs.component.d.ts +17 -0
- package/components/tabs/tabs.module.d.ts +11 -0
- package/components/text-input/text-input.component.d.ts +48 -0
- package/components/text-input/text-input.module.d.ts +10 -0
- package/components/textarea-input/textarea-input.component.d.ts +34 -0
- package/components/textarea-input/textarea-input.module.d.ts +11 -0
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +12 -0
- package/components/tooltip/tooltip.component.d.ts +17 -0
- package/components/tooltip/tooltip.module.d.ts +11 -0
- package/components/wrapped-input/wrapped-input.component.d.ts +10 -0
- package/components/wrapped-input/wrapped-input.module.d.ts +9 -0
- package/directives/menu-register.directive.d.ts +14 -0
- package/esm2022/color.utils.mjs +45 -0
- package/esm2022/components/alert/alert.component.mjs +34 -0
- package/esm2022/components/alert/alert.module.mjs +32 -0
- package/esm2022/components/app-icon/app-icon.component.mjs +63 -0
- package/esm2022/components/app-icon/app-icon.module.mjs +28 -0
- package/esm2022/components/avatar/avatar.component.mjs +66 -0
- package/esm2022/components/avatar/avatar.module.mjs +28 -0
- package/esm2022/components/badge/badge.component.mjs +45 -0
- package/esm2022/components/badge/badge.module.mjs +24 -0
- package/esm2022/components/breadcrumbs/breadcrumbs.component.mjs +22 -0
- package/esm2022/components/breadcrumbs/breadcrumbs.module.mjs +33 -0
- package/esm2022/components/breadcrumbs/crumb.component.mjs +34 -0
- package/esm2022/components/button/button.component.mjs +59 -0
- package/esm2022/components/button/button.directives.mjs +129 -0
- package/esm2022/components/button/button.module.mjs +53 -0
- package/esm2022/components/button-group/button-group.component.mjs +131 -0
- package/esm2022/components/button-group/button-group.module.mjs +32 -0
- package/esm2022/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +54 -0
- package/esm2022/components/button-toggle/button-toggle.component.mjs +137 -0
- package/esm2022/components/button-toggle/button-toggle.module.mjs +33 -0
- package/esm2022/components/card/card-attribute/card-attribute.component.mjs +17 -0
- package/esm2022/components/card/card-author/card-author.component.mjs +15 -0
- package/esm2022/components/card/card-content/card-content.component.mjs +11 -0
- package/esm2022/components/card/card-footer/card-footer.component.mjs +29 -0
- package/esm2022/components/card/card-header/card-header.component.mjs +24 -0
- package/esm2022/components/card/card.component.mjs +27 -0
- package/esm2022/components/card/card.module.mjs +57 -0
- package/esm2022/components/checkbox/checkbox.component.mjs +79 -0
- package/esm2022/components/checkbox/checkbox.module.mjs +31 -0
- package/esm2022/components/chip/chip.component.mjs +52 -0
- package/esm2022/components/chip/chip.module.mjs +32 -0
- package/esm2022/components/contained-input/contained-input.component.mjs +86 -0
- package/esm2022/components/contained-input/contained-input.module.mjs +40 -0
- package/esm2022/components/date-input/date-input.component.mjs +139 -0
- package/esm2022/components/date-input/date-input.module.mjs +32 -0
- package/esm2022/components/dialog/dialog-actions.component.mjs +32 -0
- package/esm2022/components/dialog/dialog-confirm.component.mjs +63 -0
- package/esm2022/components/dialog/dialog-content.component.mjs +38 -0
- package/esm2022/components/dialog/dialog-header.component.mjs +35 -0
- package/esm2022/components/dialog/dialog-simple.component.mjs +62 -0
- package/esm2022/components/dialog/dialog.component.mjs +55 -0
- package/esm2022/components/dialog/dialog.service.mjs +49 -0
- package/esm2022/components/dialog/dialogs.module.mjs +75 -0
- package/esm2022/components/form-heading/form-heading.component.mjs +24 -0
- package/esm2022/components/form-heading/form-heading.module.mjs +32 -0
- package/esm2022/components/forms/validators.mjs +81 -0
- package/esm2022/components/icon/icon.component.mjs +61 -0
- package/esm2022/components/icon/icon.module.mjs +24 -0
- package/esm2022/components/icon/icon.types.mjs +330 -0
- package/esm2022/components/icon-button/icon-button.component.mjs +39 -0
- package/esm2022/components/icon-button/icon-button.module.mjs +28 -0
- package/esm2022/components/layouts/context/context.component.mjs +46 -0
- package/esm2022/components/layouts/grid/grid.component.mjs +62 -0
- package/esm2022/components/layouts/layout-group.component.mjs +36 -0
- package/esm2022/components/layouts/layouts.module.mjs +57 -0
- package/esm2022/components/layouts/panel/panel.component.mjs +32 -0
- package/esm2022/components/layouts/sidebar/sidebar.component.mjs +26 -0
- package/esm2022/components/layouts/toolbar/toolbar.component.mjs +21 -0
- package/esm2022/components/menu/menu-close-triggers.directive.mjs +38 -0
- package/esm2022/components/menu/menu-container/menu-container.component.mjs +126 -0
- package/esm2022/components/menu/menu-header/menu-header.component.mjs +11 -0
- package/esm2022/components/menu/menu-item/menu-item.component.mjs +141 -0
- package/esm2022/components/menu/menu-item-group/menu-item-group.component.mjs +31 -0
- package/esm2022/components/menu/menu-separator/menu-separator.component.mjs +11 -0
- package/esm2022/components/menu/menu-sub-item/menu-sub-item.component.mjs +103 -0
- package/esm2022/components/menu/menu.component.mjs +129 -0
- package/esm2022/components/menu/menu.module.mjs +95 -0
- package/esm2022/components/navbar/navbar-header/navbar-header.component.mjs +11 -0
- package/esm2022/components/navbar/navbar-item/navbar-item.component.mjs +95 -0
- package/esm2022/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +76 -0
- package/esm2022/components/navbar/navbar.component.mjs +75 -0
- package/esm2022/components/navbar/navbar.module.mjs +67 -0
- package/esm2022/components/number-input/number-input.component.mjs +122 -0
- package/esm2022/components/number-input/number-input.module.mjs +32 -0
- package/esm2022/components/paginator/paginator-advanced/paginator-advanced.component.mjs +123 -0
- package/esm2022/components/paginator/paginator.component.mjs +133 -0
- package/esm2022/components/paginator/paginator.model.mjs +2 -0
- package/esm2022/components/paginator/paginator.module.mjs +49 -0
- package/esm2022/components/phone-input/country-code.data.mjs +495 -0
- package/esm2022/components/phone-input/phone-input.component.mjs +285 -0
- package/esm2022/components/phone-input/phone-input.model.mjs +2 -0
- package/esm2022/components/phone-input/phone-input.module.mjs +47 -0
- package/esm2022/components/popover/popover-panel/popover-panel.component.mjs +30 -0
- package/esm2022/components/popover/popover.component.mjs +76 -0
- package/esm2022/components/popover/popover.module.mjs +42 -0
- package/esm2022/components/progress/bar/bar.component.mjs +83 -0
- package/esm2022/components/progress/progress.module.mjs +29 -0
- package/esm2022/components/progress/spinner/spinner.component.mjs +101 -0
- package/esm2022/components/radio/radio-group.component.mjs +117 -0
- package/esm2022/components/radio/radio.component.mjs +51 -0
- package/esm2022/components/radio/radio.module.mjs +36 -0
- package/esm2022/components/section-heading/back-button/back-button.component.mjs +30 -0
- package/esm2022/components/section-heading/section-heading.component.mjs +31 -0
- package/esm2022/components/section-heading/section-heading.module.mjs +42 -0
- package/esm2022/components/section-heading/subsection-heading/subsection-heading.component.mjs +19 -0
- package/esm2022/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +368 -0
- package/esm2022/components/select-menu/select-menu.component.mjs +332 -0
- package/esm2022/components/select-menu/select-menu.module.mjs +60 -0
- package/esm2022/components/shared/pipes/pipes.module.mjs +36 -0
- package/esm2022/components/shared/pipes/translate.pipe.mjs +40 -0
- package/esm2022/components/shared/pipes/trusthtml.pipe.mjs +21 -0
- package/esm2022/components/shared/services/menu-manager.service.mjs +27 -0
- package/esm2022/components/shared/translation.service.mjs +26 -0
- package/esm2022/components/snackbar/snackbar/snackbar.component.mjs +111 -0
- package/esm2022/components/snackbar/snackbar-container/snackbar-container.component.mjs +63 -0
- package/esm2022/components/snackbar/snackbar-message.model.mjs +2 -0
- package/esm2022/components/snackbar/snackbar-timer.service.mjs +29 -0
- package/esm2022/components/snackbar/snackbar.module.mjs +47 -0
- package/esm2022/components/snackbar/snackbar.service.mjs +36 -0
- package/esm2022/components/stepper/step.component.mjs +113 -0
- package/esm2022/components/stepper/stepper.component.mjs +95 -0
- package/esm2022/components/stepper/stepper.module.mjs +41 -0
- package/esm2022/components/switch/switch.component.mjs +73 -0
- package/esm2022/components/switch/switch.module.mjs +24 -0
- package/esm2022/components/table/cell.mjs +151 -0
- package/esm2022/components/table/row.mjs +164 -0
- package/esm2022/components/table/table-dense.component.mjs +38 -0
- package/esm2022/components/table/table.component.mjs +38 -0
- package/esm2022/components/table/table.module.mjs +91 -0
- package/esm2022/components/tabs/tab/tab.component.mjs +79 -0
- package/esm2022/components/tabs/tab-panel/tab-panel.component.mjs +19 -0
- package/esm2022/components/tabs/tabs.component.mjs +68 -0
- package/esm2022/components/tabs/tabs.module.mjs +38 -0
- package/esm2022/components/text-input/text-input.component.mjs +125 -0
- package/esm2022/components/text-input/text-input.module.mjs +32 -0
- package/esm2022/components/textarea-input/textarea-input.component.mjs +86 -0
- package/esm2022/components/textarea-input/textarea-input.module.mjs +36 -0
- package/esm2022/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +37 -0
- package/esm2022/components/tooltip/tooltip.component.mjs +49 -0
- package/esm2022/components/tooltip/tooltip.module.mjs +42 -0
- package/esm2022/components/wrapped-input/wrapped-input.component.mjs +27 -0
- package/esm2022/components/wrapped-input/wrapped-input.module.mjs +28 -0
- package/esm2022/directives/menu-register.directive.mjs +38 -0
- package/esm2022/flywheel-io-vision.mjs +5 -0
- package/esm2022/public-api.mjs +128 -0
- package/fesm2022/flywheel-io-vision.mjs +8129 -0
- package/fesm2022/flywheel-io-vision.mjs.map +1 -0
- package/flywheel-io-vision-2.1.0-beta.1.tgz +0 -0
- package/index.d.ts +5 -0
- package/package.json +14 -77
- package/styles.css +1776 -0
- package/.editorconfig +0 -56
- package/.eslintrc.json +0 -307
- package/.gitattributes +0 -2
- package/.gitlab-ci.yml +0 -157
- package/.nvmrc +0 -1
- package/.storybook/DocsContainer.tsx +0 -103
- package/.storybook/main.ts +0 -18
- package/.storybook/manager-head.html +0 -29
- package/.storybook/manager.ts +0 -7
- package/.storybook/preview.tsx +0 -45
- package/.storybook/public/images/brand-dark.png +0 -0
- package/.storybook/public/images/brand-light.png +0 -0
- package/.storybook/public/images/core.svg +0 -22
- package/.storybook/public/images/discovery.svg +0 -22
- package/.storybook/public/images/exchange.svg +0 -28
- package/.storybook/public/images/favicon.png +0 -0
- package/.storybook/public/images/grid.png +0 -0
- package/.storybook/sb-theme.ts +0 -80
- package/.storybook/tsconfig.json +0 -19
- package/.stylelintignore +0 -2
- package/.stylelintrc.json +0 -48
- package/.vscode/extensions.json +0 -18
- package/.vscode/settings.json +0 -7
- package/CONTRIBUTING.md +0 -51
- package/angular.json +0 -95
- package/build.js +0 -66
- package/elements/elements.html +0 -0
- package/install-into-frontend.sh +0 -13
- package/karma.conf.js +0 -49
- package/ng-package.json +0 -26
- package/publish-beta.sh +0 -18
- package/src/assets/.gitkeep +0 -0
- package/src/assets/brand/core.svg +0 -22
- package/src/assets/brand/discovery.svg +0 -22
- package/src/assets/brand/exchange.svg +0 -28
- package/src/assets/brand/fw-logo-mark-dark-bg.svg +0 -4
- package/src/assets/img/avatar.png +0 -0
- package/src/assets/updating-icons.md +0 -71
- package/src/color.utils.ts +0 -47
- package/src/components/alert/alert.component.html +0 -19
- package/src/components/alert/alert.component.scss +0 -150
- package/src/components/alert/alert.component.spec.ts +0 -22
- package/src/components/alert/alert.component.ts +0 -19
- package/src/components/alert/alert.mdx +0 -16
- package/src/components/alert/alert.module.ts +0 -22
- package/src/components/alert/alert.stories.ts +0 -144
- package/src/components/app-icon/app-icon.component.html +0 -10
- package/src/components/app-icon/app-icon.component.scss +0 -348
- package/src/components/app-icon/app-icon.component.spec.ts +0 -22
- package/src/components/app-icon/app-icon.component.ts +0 -27
- package/src/components/app-icon/app-icon.mdx +0 -16
- package/src/components/app-icon/app-icon.module.ts +0 -20
- package/src/components/app-icon/app-icon.stories.ts +0 -200
- package/src/components/avatar/avatar.component.html +0 -22
- package/src/components/avatar/avatar.component.scss +0 -97
- package/src/components/avatar/avatar.component.spec.ts +0 -26
- package/src/components/avatar/avatar.component.ts +0 -50
- package/src/components/avatar/avatar.mdx +0 -16
- package/src/components/avatar/avatar.module.ts +0 -20
- package/src/components/avatar/avatar.stories.ts +0 -207
- package/src/components/badge/badge.component.html +0 -4
- package/src/components/badge/badge.component.scss +0 -98
- package/src/components/badge/badge.component.spec.ts +0 -26
- package/src/components/badge/badge.component.ts +0 -30
- package/src/components/badge/badge.mdx +0 -33
- package/src/components/badge/badge.module.ts +0 -18
- package/src/components/badge/badge.stories.ts +0 -131
- package/src/components/breadcrumbs/breadcrumbs.component.scss +0 -5
- package/src/components/breadcrumbs/breadcrumbs.component.spec.ts +0 -22
- package/src/components/breadcrumbs/breadcrumbs.component.stories.ts +0 -81
- package/src/components/breadcrumbs/breadcrumbs.component.ts +0 -20
- package/src/components/breadcrumbs/breadcrumbs.mdx +0 -53
- package/src/components/breadcrumbs/breadcrumbs.module.ts +0 -23
- package/src/components/breadcrumbs/crumb.component.html +0 -5
- package/src/components/breadcrumbs/crumb.component.scss +0 -23
- package/src/components/breadcrumbs/crumb.component.stories.ts +0 -53
- package/src/components/breadcrumbs/crumb.component.ts +0 -23
- package/src/components/button/button.component.html +0 -7
- package/src/components/button/button.component.scss +0 -129
- package/src/components/button/button.component.spec.ts +0 -26
- package/src/components/button/button.component.ts +0 -40
- package/src/components/button/button.directives.ts +0 -93
- package/src/components/button/button.mdx +0 -16
- package/src/components/button/button.module.ts +0 -39
- package/src/components/button/button.stories.ts +0 -165
- package/src/components/button/story.css +0 -0
- package/src/components/button-group/button-group.component.scss +0 -94
- package/src/components/button-group/button-group.component.ts +0 -138
- package/src/components/button-group/button-group.mdx +0 -23
- package/src/components/button-group/button-group.module.ts +0 -22
- package/src/components/button-group/button-group.stories.ts +0 -145
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.html +0 -10
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.spec.ts +0 -25
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.ts +0 -36
- package/src/components/button-toggle/button-toggle.component.scss +0 -94
- package/src/components/button-toggle/button-toggle.component.ts +0 -145
- package/src/components/button-toggle/button-toggle.mdx +0 -23
- package/src/components/button-toggle/button-toggle.module.ts +0 -23
- package/src/components/button-toggle/button-toggle.stories.ts +0 -204
- package/src/components/card/card-attribute/card-attribute.component.html +0 -3
- package/src/components/card/card-attribute/card-attribute.component.scss +0 -19
- package/src/components/card/card-attribute/card-attribute.component.spec.ts +0 -22
- package/src/components/card/card-attribute/card-attribute.component.ts +0 -13
- package/src/components/card/card-author/card-author.component.html +0 -5
- package/src/components/card/card-author/card-author.component.scss +0 -21
- package/src/components/card/card-author/card-author.component.spec.ts +0 -22
- package/src/components/card/card-author/card-author.component.ts +0 -11
- package/src/components/card/card-author/card-author.stories.ts +0 -55
- package/src/components/card/card-content/card-content.component.scss +0 -26
- package/src/components/card/card-content/card-content.component.spec.ts +0 -22
- package/src/components/card/card-content/card-content.component.ts +0 -11
- package/src/components/card/card-content/card-content.stories.ts +0 -55
- package/src/components/card/card-footer/card-footer.component.spec.ts +0 -22
- package/src/components/card/card-footer/card-footer.component.ts +0 -24
- package/src/components/card/card-footer/card-footer.stories.ts +0 -72
- package/src/components/card/card-header/card-header.component.html +0 -9
- package/src/components/card/card-header/card-header.component.scss +0 -41
- package/src/components/card/card-header/card-header.component.spec.ts +0 -22
- package/src/components/card/card-header/card-header.component.ts +0 -15
- package/src/components/card/card-header/card-header.stories.ts +0 -58
- package/src/components/card/card.component.html +0 -12
- package/src/components/card/card.component.scss +0 -40
- package/src/components/card/card.component.spec.ts +0 -34
- package/src/components/card/card.component.ts +0 -16
- package/src/components/card/card.mdx +0 -128
- package/src/components/card/card.module.ts +0 -37
- package/src/components/card/card.stories.ts +0 -240
- package/src/components/changelog.mdx +0 -405
- package/src/components/checkbox/checkbox.component.html +0 -16
- package/src/components/checkbox/checkbox.component.scss +0 -189
- package/src/components/checkbox/checkbox.component.ts +0 -68
- package/src/components/checkbox/checkbox.module.ts +0 -21
- package/src/components/checkbox/checkbox.stories.ts +0 -224
- package/src/components/chip/chip.component.html +0 -14
- package/src/components/chip/chip.component.scss +0 -357
- package/src/components/chip/chip.component.spec.ts +0 -22
- package/src/components/chip/chip.component.ts +0 -32
- package/src/components/chip/chip.mdx +0 -16
- package/src/components/chip/chip.module.ts +0 -22
- package/src/components/chip/chip.stories.ts +0 -236
- package/src/components/color-palette/color-palette.component.html +0 -10
- package/src/components/color-palette/color-palette.component.scss +0 -15
- package/src/components/color-palette/color-palette.component.ts +0 -73
- package/src/components/color-palette/color-palette.module.ts +0 -22
- package/src/components/color-palette/color-palette.stories.ts +0 -35
- package/src/components/color-palette/colors.mdx +0 -47
- package/src/components/color-palette/swatch/swatch.component.html +0 -3
- package/src/components/color-palette/swatch/swatch.component.scss +0 -21
- package/src/components/color-palette/swatch/swatch.component.ts +0 -28
- package/src/components/contained-input/contained-input.component.html +0 -15
- package/src/components/contained-input/contained-input.component.scss +0 -88
- package/src/components/contained-input/contained-input.component.spec.ts +0 -34
- package/src/components/contained-input/contained-input.component.ts +0 -65
- package/src/components/contained-input/contained-input.mdx +0 -16
- package/src/components/contained-input/contained-input.module.ts +0 -26
- package/src/components/contained-input/contained-input.stories.ts +0 -155
- package/src/components/date-input/date-input.component.html +0 -28
- package/src/components/date-input/date-input.component.scss +0 -192
- package/src/components/date-input/date-input.component.spec.ts +0 -26
- package/src/components/date-input/date-input.component.ts +0 -126
- package/src/components/date-input/date-input.mdx +0 -23
- package/src/components/date-input/date-input.module.ts +0 -23
- package/src/components/date-input/date-input.stories.ts +0 -96
- package/src/components/dialog/dialog-actions.component.ts +0 -22
- package/src/components/dialog/dialog-confirm.component.html +0 -37
- package/src/components/dialog/dialog-confirm.component.scss +0 -49
- package/src/components/dialog/dialog-confirm.component.ts +0 -35
- package/src/components/dialog/dialog-confirm.stories.ts +0 -47
- package/src/components/dialog/dialog-content.component.ts +0 -28
- package/src/components/dialog/dialog-header.component.ts +0 -25
- package/src/components/dialog/dialog-simple.component.html +0 -27
- package/src/components/dialog/dialog-simple.component.scss +0 -13
- package/src/components/dialog/dialog-simple.component.ts +0 -36
- package/src/components/dialog/dialog-simple.stories.ts +0 -78
- package/src/components/dialog/dialog.component.html +0 -20
- package/src/components/dialog/dialog.component.scss +0 -94
- package/src/components/dialog/dialog.component.ts +0 -39
- package/src/components/dialog/dialog.mdx +0 -252
- package/src/components/dialog/dialog.service.ts +0 -34
- package/src/components/dialog/dialog.stories.ts +0 -169
- package/src/components/dialog/dialogs.module.ts +0 -47
- package/src/components/form-heading/form-heading.component.html +0 -15
- package/src/components/form-heading/form-heading.component.scss +0 -55
- package/src/components/form-heading/form-heading.component.spec.ts +0 -28
- package/src/components/form-heading/form-heading.component.ts +0 -17
- package/src/components/form-heading/form-heading.mdx +0 -16
- package/src/components/form-heading/form-heading.module.ts +0 -22
- package/src/components/form-heading/form-heading.stories.ts +0 -168
- package/src/components/forms/validators.ts +0 -97
- package/src/components/getting-started.mdx +0 -92
- package/src/components/ghost/ghost.stories.ts +0 -79
- package/src/components/icon/README.txt +0 -5
- package/src/components/icon/icon.component.ts +0 -52
- package/src/components/icon/icon.mdx +0 -36
- package/src/components/icon/icon.module.ts +0 -17
- package/src/components/icon/icon.stories.ts +0 -51
- package/src/components/icon/icon.types.ts +0 -331
- package/src/components/icon/icons.stories.scss +0 -63
- package/src/components/icon/icons.stories.ts +0 -95
- package/src/components/icon/selection.json +0 -1
- package/src/components/icon-button/icon-button.component.html +0 -6
- package/src/components/icon-button/icon-button.component.scss +0 -231
- package/src/components/icon-button/icon-button.component.spec.ts +0 -28
- package/src/components/icon-button/icon-button.component.ts +0 -32
- package/src/components/icon-button/icon-button.mdx +0 -16
- package/src/components/icon-button/icon-button.module.ts +0 -20
- package/src/components/icon-button/icon-button.stories.ts +0 -257
- package/src/components/json/json.component.ts +0 -15
- package/src/components/layouts/context/context.component.html +0 -6
- package/src/components/layouts/context/context.component.scss +0 -71
- package/src/components/layouts/context/context.component.spec.ts +0 -22
- package/src/components/layouts/context/context.component.stories.ts +0 -63
- package/src/components/layouts/context/context.component.ts +0 -32
- package/src/components/layouts/context/context.mdx +0 -15
- package/src/components/layouts/grid/grid.component.scss +0 -281
- package/src/components/layouts/grid/grid.component.spec.ts +0 -22
- package/src/components/layouts/grid/grid.component.stories.ts +0 -183
- package/src/components/layouts/grid/grid.component.ts +0 -43
- package/src/components/layouts/grid/grid.mdx +0 -27
- package/src/components/layouts/layout-group.component.scss +0 -38
- package/src/components/layouts/layout-group.component.spec.ts +0 -22
- package/src/components/layouts/layout-group.component.stories.ts +0 -105
- package/src/components/layouts/layout-group.component.ts +0 -24
- package/src/components/layouts/layout-group.mdx +0 -22
- package/src/components/layouts/layouts.mdx +0 -63
- package/src/components/layouts/layouts.module.ts +0 -37
- package/src/components/layouts/panel/panel.component.html +0 -9
- package/src/components/layouts/panel/panel.component.scss +0 -110
- package/src/components/layouts/panel/panel.component.spec.ts +0 -22
- package/src/components/layouts/panel/panel.component.stories.ts +0 -249
- package/src/components/layouts/panel/panel.component.ts +0 -16
- package/src/components/layouts/panel/panel.mdx +0 -28
- package/src/components/layouts/sidebar/sidebar.component.html +0 -14
- package/src/components/layouts/sidebar/sidebar.component.scss +0 -87
- package/src/components/layouts/sidebar/sidebar.component.spec.ts +0 -22
- package/src/components/layouts/sidebar/sidebar.component.stories.ts +0 -243
- package/src/components/layouts/sidebar/sidebar.component.ts +0 -14
- package/src/components/layouts/sidebar/sidebar.mdx +0 -18
- package/src/components/layouts/toolbar/toolbar.component.scss +0 -11
- package/src/components/layouts/toolbar/toolbar.component.spec.ts +0 -22
- package/src/components/layouts/toolbar/toolbar.component.stories.ts +0 -59
- package/src/components/layouts/toolbar/toolbar.component.ts +0 -15
- package/src/components/layouts/toolbar/toolbar.mdx +0 -16
- package/src/components/menu/menu-close-triggers.directive.ts +0 -27
- package/src/components/menu/menu-container/menu-container.component.html +0 -15
- package/src/components/menu/menu-container/menu-container.component.scss +0 -32
- package/src/components/menu/menu-container/menu-container.component.spec.ts +0 -22
- package/src/components/menu/menu-container/menu-container.component.ts +0 -125
- package/src/components/menu/menu-container/menu-container.stories.ts +0 -105
- package/src/components/menu/menu-header/menu-header.component.html +0 -5
- package/src/components/menu/menu-header/menu-header.component.scss +0 -20
- package/src/components/menu/menu-header/menu-header.component.spec.ts +0 -22
- package/src/components/menu/menu-header/menu-header.component.ts +0 -10
- package/src/components/menu/menu-item/menu-item.component.html +0 -42
- package/src/components/menu/menu-item/menu-item.component.scss +0 -163
- package/src/components/menu/menu-item/menu-item.component.ts +0 -120
- package/src/components/menu/menu-item/menu-item.stories.ts +0 -104
- package/src/components/menu/menu-item-group/menu-item-group.component.html +0 -9
- package/src/components/menu/menu-item-group/menu-item-group.component.scss +0 -33
- package/src/components/menu/menu-item-group/menu-item-group.component.spec.ts +0 -23
- package/src/components/menu/menu-item-group/menu-item-group.component.ts +0 -16
- package/src/components/menu/menu-item-group/menu-item-group.stories.ts +0 -83
- package/src/components/menu/menu-separator/menu-separator.component.scss +0 -6
- package/src/components/menu/menu-separator/menu-separator.component.spec.ts +0 -22
- package/src/components/menu/menu-separator/menu-separator.component.ts +0 -9
- package/src/components/menu/menu-sub-item/menu-sub-item.component.html +0 -18
- package/src/components/menu/menu-sub-item/menu-sub-item.component.scss +0 -125
- package/src/components/menu/menu-sub-item/menu-sub-item.component.ts +0 -66
- package/src/components/menu/menu.component.html +0 -3
- package/src/components/menu/menu.component.scss +0 -5
- package/src/components/menu/menu.component.ts +0 -135
- package/src/components/menu/menu.mdx +0 -119
- package/src/components/menu/menu.module.ts +0 -57
- package/src/components/menu/menu.stories.ts +0 -211
- package/src/components/navbar/navbar-header/navbar-header.component.html +0 -5
- package/src/components/navbar/navbar-header/navbar-header.component.scss +0 -20
- package/src/components/navbar/navbar-header/navbar-header.component.ts +0 -10
- package/src/components/navbar/navbar-item/navbar-item.component.html +0 -35
- package/src/components/navbar/navbar-item/navbar-item.component.scss +0 -142
- package/src/components/navbar/navbar-item/navbar-item.component.ts +0 -73
- package/src/components/navbar/navbar-item/navbar-item.stories.ts +0 -82
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.html +0 -22
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.scss +0 -152
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.ts +0 -40
- package/src/components/navbar/navbar.component.html +0 -5
- package/src/components/navbar/navbar.component.scss +0 -16
- package/src/components/navbar/navbar.component.ts +0 -63
- package/src/components/navbar/navbar.mdx +0 -20
- package/src/components/navbar/navbar.module.ts +0 -41
- package/src/components/navbar/navbar.stories.ts +0 -201
- package/src/components/number-input/number-input.component.html +0 -39
- package/src/components/number-input/number-input.component.scss +0 -184
- package/src/components/number-input/number-input.component.spec.ts +0 -26
- package/src/components/number-input/number-input.component.ts +0 -96
- package/src/components/number-input/number-input.mdx +0 -25
- package/src/components/number-input/number-input.module.ts +0 -23
- package/src/components/number-input/number-input.stories.ts +0 -87
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.html +0 -45
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.scss +0 -217
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.spec.ts +0 -32
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.ts +0 -107
- package/src/components/paginator/paginator-advanced/paginator-advanced.stories.ts +0 -69
- package/src/components/paginator/paginator.component.html +0 -32
- package/src/components/paginator/paginator.component.scss +0 -212
- package/src/components/paginator/paginator.component.spec.ts +0 -24
- package/src/components/paginator/paginator.component.ts +0 -118
- package/src/components/paginator/paginator.mdx +0 -55
- package/src/components/paginator/paginator.model.ts +0 -8
- package/src/components/paginator/paginator.module.ts +0 -31
- package/src/components/paginator/paginator.stories.ts +0 -142
- package/src/components/phone-input/country-code.data.ts +0 -495
- 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 +0 -68
- package/src/components/phone-input/phone-input.component.scss +0 -467
- package/src/components/phone-input/phone-input.component.spec.ts +0 -33
- package/src/components/phone-input/phone-input.component.ts +0 -318
- package/src/components/phone-input/phone-input.mdx +0 -49
- package/src/components/phone-input/phone-input.model.ts +0 -11
- package/src/components/phone-input/phone-input.module.ts +0 -29
- package/src/components/phone-input/phone-input.stories.ts +0 -201
- package/src/components/popover/popover-panel/popover-panel.component.html +0 -4
- package/src/components/popover/popover-panel/popover-panel.component.scss +0 -220
- package/src/components/popover/popover-panel/popover-panel.component.spec.ts +0 -22
- package/src/components/popover/popover-panel/popover-panel.component.ts +0 -22
- package/src/components/popover/popover-panel/popover-panel.stories.ts +0 -162
- package/src/components/popover/popover.component.html +0 -13
- package/src/components/popover/popover.component.spec.ts +0 -26
- package/src/components/popover/popover.component.ts +0 -77
- package/src/components/popover/popover.mdx +0 -52
- package/src/components/popover/popover.module.ts +0 -28
- package/src/components/popover/popover.stories.ts +0 -176
- package/src/components/progress/bar/bar.component.html +0 -18
- package/src/components/progress/bar/bar.component.spec.ts +0 -26
- package/src/components/progress/bar/bar.component.ts +0 -98
- package/src/components/progress/bar/bar.mdx +0 -22
- package/src/components/progress/bar/bar.scss +0 -313
- package/src/components/progress/bar/bar.stories.ts +0 -52
- package/src/components/progress/progress.module.ts +0 -21
- package/src/components/progress/spinner/spinner.component.html +0 -53
- package/src/components/progress/spinner/spinner.component.scss +0 -225
- package/src/components/progress/spinner/spinner.component.spec.ts +0 -26
- package/src/components/progress/spinner/spinner.component.ts +0 -107
- package/src/components/progress/spinner/spinner.mdx +0 -21
- package/src/components/progress/spinner/spinner.stories.ts +0 -70
- package/src/components/radio/radio-group.component.ts +0 -124
- package/src/components/radio/radio-group.mdx +0 -45
- package/src/components/radio/radio-group.stories.ts +0 -76
- package/src/components/radio/radio.component.html +0 -19
- package/src/components/radio/radio.component.scss +0 -132
- package/src/components/radio/radio.component.ts +0 -33
- package/src/components/radio/radio.module.ts +0 -24
- package/src/components/radio/radio.stories.ts +0 -168
- package/src/components/section-heading/back-button/back-button.component.html +0 -3
- package/src/components/section-heading/back-button/back-button.component.scss +0 -37
- package/src/components/section-heading/back-button/back-button.component.spec.ts +0 -27
- package/src/components/section-heading/back-button/back-button.component.ts +0 -24
- package/src/components/section-heading/back-button/back-button.stories.ts +0 -39
- package/src/components/section-heading/section-heading.component.html +0 -15
- package/src/components/section-heading/section-heading.component.scss +0 -48
- package/src/components/section-heading/section-heading.component.spec.ts +0 -28
- package/src/components/section-heading/section-heading.component.ts +0 -21
- package/src/components/section-heading/section-heading.mdx +0 -22
- package/src/components/section-heading/section-heading.module.ts +0 -28
- package/src/components/section-heading/section-heading.stories.ts +0 -141
- package/src/components/section-heading/subsection-heading/subsection-heading.component.html +0 -7
- package/src/components/section-heading/subsection-heading/subsection-heading.component.scss +0 -31
- package/src/components/section-heading/subsection-heading/subsection-heading.component.spec.ts +0 -23
- package/src/components/section-heading/subsection-heading/subsection-heading.component.ts +0 -17
- package/src/components/section-heading/subsection-heading/subsection-heading.stories.ts +0 -60
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.html +0 -75
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.scss +0 -91
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.spec.ts +0 -89
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.ts +0 -388
- package/src/components/select-menu/multi-select-menu/multi-select-menu.mdx +0 -27
- package/src/components/select-menu/multi-select-menu/multi-select-menu.stories.ts +0 -415
- package/src/components/select-menu/select-menu.component.html +0 -40
- package/src/components/select-menu/select-menu.component.scss +0 -4
- package/src/components/select-menu/select-menu.component.spec.ts +0 -242
- package/src/components/select-menu/select-menu.component.ts +0 -331
- package/src/components/select-menu/select-menu.mdx +0 -222
- package/src/components/select-menu/select-menu.module.ts +0 -37
- package/src/components/select-menu/select-menu.stories.ts +0 -409
- package/src/components/shadows/shadows.stories.ts +0 -75
- package/src/components/shared/pipes/pipes.module.ts +0 -24
- package/src/components/shared/pipes/translate.pipe.ts +0 -40
- package/src/components/shared/pipes/trusthtml.pipe.ts +0 -14
- package/src/components/shared/services/menu-manager.service.ts +0 -23
- package/src/components/shared/translation.service.ts +0 -24
- package/src/components/snackbar/snackbar/snackbar.component.html +0 -15
- package/src/components/snackbar/snackbar/snackbar.component.scss +0 -58
- package/src/components/snackbar/snackbar/snackbar.component.spec.ts +0 -56
- package/src/components/snackbar/snackbar/snackbar.component.ts +0 -115
- package/src/components/snackbar/snackbar/snackbar.stories.ts +0 -92
- package/src/components/snackbar/snackbar-container/snackbar-container.component.html +0 -18
- package/src/components/snackbar/snackbar-container/snackbar-container.component.scss +0 -22
- package/src/components/snackbar/snackbar-container/snackbar-container.component.spec.ts +0 -98
- package/src/components/snackbar/snackbar-container/snackbar-container.component.ts +0 -71
- package/src/components/snackbar/snackbar-container/snackbar-container.stories.ts +0 -70
- package/src/components/snackbar/snackbar-message.model.ts +0 -13
- package/src/components/snackbar/snackbar-timer.service.ts +0 -32
- package/src/components/snackbar/snackbar.mdx +0 -90
- package/src/components/snackbar/snackbar.module.ts +0 -31
- package/src/components/snackbar/snackbar.service.spec.ts +0 -16
- package/src/components/snackbar/snackbar.service.ts +0 -36
- package/src/components/stepper/step.component.html +0 -33
- package/src/components/stepper/step.component.scss +0 -421
- package/src/components/stepper/step.component.ts +0 -92
- package/src/components/stepper/step.stories.ts +0 -73
- package/src/components/stepper/stepper.component.ts +0 -100
- package/src/components/stepper/stepper.mdx +0 -83
- package/src/components/stepper/stepper.module.ts +0 -27
- package/src/components/stepper/stepper.stories.ts +0 -233
- package/src/components/switch/switch.component.html +0 -10
- package/src/components/switch/switch.component.scss +0 -179
- package/src/components/switch/switch.component.spec.ts +0 -22
- package/src/components/switch/switch.component.ts +0 -58
- package/src/components/switch/switch.mdx +0 -39
- package/src/components/switch/switch.module.ts +0 -18
- package/src/components/switch/switch.stories.ts +0 -117
- package/src/components/table/cell.ts +0 -111
- package/src/components/table/row.ts +0 -113
- package/src/components/table/table-dense.component.scss +0 -178
- package/src/components/table/table-dense.component.ts +0 -36
- package/src/components/table/table-dense.stories.ts +0 -105
- package/src/components/table/table.component.html +0 -4
- package/src/components/table/table.component.scss +0 -186
- package/src/components/table/table.component.ts +0 -36
- package/src/components/table/table.mdx +0 -83
- package/src/components/table/table.module.ts +0 -53
- package/src/components/table/table.stories.ts +0 -198
- package/src/components/tabs/tab/tab.component.html +0 -3
- package/src/components/tabs/tab/tab.component.scss +0 -79
- package/src/components/tabs/tab/tab.component.spec.ts +0 -22
- package/src/components/tabs/tab/tab.component.ts +0 -47
- package/src/components/tabs/tab/tab.stories.ts +0 -38
- package/src/components/tabs/tab-panel/tab-panel.component.html +0 -1
- package/src/components/tabs/tab-panel/tab-panel.component.scss +0 -7
- package/src/components/tabs/tab-panel/tab-panel.component.spec.ts +0 -22
- package/src/components/tabs/tab-panel/tab-panel.component.ts +0 -11
- package/src/components/tabs/tabs.component.html +0 -2
- package/src/components/tabs/tabs.component.scss +0 -9
- package/src/components/tabs/tabs.component.spec.ts +0 -22
- package/src/components/tabs/tabs.component.ts +0 -69
- package/src/components/tabs/tabs.mdx +0 -74
- package/src/components/tabs/tabs.module.ts +0 -26
- package/src/components/tabs/tabs.stories.ts +0 -87
- package/src/components/text-input/text-input.component.html +0 -37
- package/src/components/text-input/text-input.component.scss +0 -155
- package/src/components/text-input/text-input.component.spec.ts +0 -26
- package/src/components/text-input/text-input.component.ts +0 -100
- package/src/components/text-input/text-input.mdx +0 -24
- package/src/components/text-input/text-input.module.ts +0 -23
- package/src/components/text-input/text-input.stories.ts +0 -125
- package/src/components/textarea-input/textarea-input.component.html +0 -18
- package/src/components/textarea-input/textarea-input.component.scss +0 -97
- package/src/components/textarea-input/textarea-input.component.spec.ts +0 -28
- package/src/components/textarea-input/textarea-input.component.ts +0 -73
- package/src/components/textarea-input/textarea-input.mdx +0 -43
- package/src/components/textarea-input/textarea-input.module.ts +0 -25
- package/src/components/textarea-input/textarea-input.stories.ts +0 -106
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.html +0 -6
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.scss +0 -109
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.ts +0 -22
- package/src/components/tooltip/tooltip-panel/tooltip-panel.stories.ts +0 -74
- package/src/components/tooltip/tooltip.component.html +0 -16
- package/src/components/tooltip/tooltip.component.scss +0 -26
- package/src/components/tooltip/tooltip.component.spec.ts +0 -24
- package/src/components/tooltip/tooltip.component.ts +0 -30
- package/src/components/tooltip/tooltip.mdx +0 -27
- package/src/components/tooltip/tooltip.module.ts +0 -28
- package/src/components/tooltip/tooltip.stories.ts +0 -111
- package/src/components/typography-sample/typography-sample.component.html +0 -25
- package/src/components/typography-sample/typography-sample.component.ts +0 -10
- package/src/components/typography-sample/typography-sample.module.ts +0 -17
- package/src/components/typography-sample/typography-sample.stories.ts +0 -34
- package/src/components/typography-sample/typography.mdx +0 -41
- package/src/components/wrapped-input/wrapped-input.component.html +0 -10
- package/src/components/wrapped-input/wrapped-input.component.scss +0 -32
- package/src/components/wrapped-input/wrapped-input.component.spec.ts +0 -34
- package/src/components/wrapped-input/wrapped-input.component.ts +0 -18
- package/src/components/wrapped-input/wrapped-input.mdx +0 -26
- package/src/components/wrapped-input/wrapped-input.module.ts +0 -20
- package/src/components/wrapped-input/wrapped-input.stories.ts +0 -195
- package/src/directives/menu-register.directive.ts +0 -25
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -16
- package/src/storybook.helper.ts +0 -35
- package/src/test.ts +0 -15
- package/tsconfig.json +0 -29
- package/tsconfig.lib.json +0 -21
- package/tsconfig.spec.json +0 -28
- package/update-icons.js +0 -40
- /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.svg +0 -0
- /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.ttf +0 -0
- /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.woff +0 -0
- /package/{src/assets → assets}/svg/3d-sphere-rotate-arrows.svg +0 -0
- /package/{src/assets → assets}/svg/add-circle.svg +0 -0
- /package/{src/assets → assets}/svg/add-new-create.svg +0 -0
- /package/{src/assets → assets}/svg/add-row-above.svg +0 -0
- /package/{src/assets → assets}/svg/add-row-below.svg +0 -0
- /package/{src/assets → assets}/svg/add-server-databases-endpoint.svg +0 -0
- /package/{src/assets → assets}/svg/add-server.svg +0 -0
- /package/{src/assets → assets}/svg/add-user.svg +0 -0
- /package/{src/assets → assets}/svg/ai.svg +0 -0
- /package/{src/assets → assets}/svg/apple.svg +0 -0
- /package/{src/assets → assets}/svg/apply-copy-duplicate.svg +0 -0
- /package/{src/assets → assets}/svg/arrange-filter-sort.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-annotate.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-back-collapse.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-back.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-down.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-forward-collapse.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-forward.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-redo.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-rotate-restore.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-rotate.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-undo.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-up-high-priority.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-up-low-priority.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-up.svg +0 -0
- /package/{src/assets → assets}/svg/arrow.svg +0 -0
- /package/{src/assets → assets}/svg/barcode-serial.svg +0 -0
- /package/{src/assets → assets}/svg/barcode-stack-scan.svg +0 -0
- /package/{src/assets → assets}/svg/bell-notification.svg +0 -0
- /package/{src/assets → assets}/svg/bezier-curve.svg +0 -0
- /package/{src/assets → assets}/svg/blocks-code-test-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/book-lab-flask.svg +0 -0
- /package/{src/assets → assets}/svg/bookmark-plus-add.svg +0 -0
- /package/{src/assets → assets}/svg/bookmark.svg +0 -0
- /package/{src/assets → assets}/svg/brain.svg +0 -0
- /package/{src/assets → assets}/svg/brightness-photo-edit.svg +0 -0
- /package/{src/assets → assets}/svg/browser-internet-web-windows.svg +0 -0
- /package/{src/assets → assets}/svg/brush-edit-create.svg +0 -0
- /package/{src/assets → assets}/svg/bucket-paint.svg +0 -0
- /package/{src/assets → assets}/svg/button-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/calendar-arrow-left-center.svg +0 -0
- /package/{src/assets → assets}/svg/calendar-schedule.svg +0 -0
- /package/{src/assets → assets}/svg/camera-photo-capture.svg +0 -0
- /package/{src/assets → assets}/svg/cash-banknotes.svg +0 -0
- /package/{src/assets → assets}/svg/certificate.svg +0 -0
- /package/{src/assets → assets}/svg/chart-square.svg +0 -0
- /package/{src/assets → assets}/svg/chart-trend-square.svg +0 -0
- /package/{src/assets → assets}/svg/chat-messages-bubble.svg +0 -0
- /package/{src/assets → assets}/svg/check-mark-certificate.svg +0 -0
- /package/{src/assets → assets}/svg/checklist-tasks-chechmark-square.svg +0 -0
- /package/{src/assets → assets}/svg/checklist.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-back.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-down.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-forward.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-input-number.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-up.svg +0 -0
- /package/{src/assets → assets}/svg/circle-ellipses.svg +0 -0
- /package/{src/assets → assets}/svg/circle.svg +0 -0
- /package/{src/assets → assets}/svg/clap-applause-hands.svg +0 -0
- /package/{src/assets → assets}/svg/clip-attachment.svg +0 -0
- /package/{src/assets → assets}/svg/clock-history.svg +0 -0
- /package/{src/assets → assets}/svg/clock-hour-4.svg +0 -0
- /package/{src/assets → assets}/svg/clock-loading.svg +0 -0
- /package/{src/assets → assets}/svg/close-circled.svg +0 -0
- /package/{src/assets → assets}/svg/close.svg +0 -0
- /package/{src/assets → assets}/svg/closed-freehand-vector-poly.svg +0 -0
- /package/{src/assets → assets}/svg/cloud-network-add.svg +0 -0
- /package/{src/assets → assets}/svg/cloud-storage-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/cloud-upload.svg +0 -0
- /package/{src/assets → assets}/svg/code-block-embed.svg +0 -0
- /package/{src/assets → assets}/svg/code-text.svg +0 -0
- /package/{src/assets → assets}/svg/color-design-profile.svg +0 -0
- /package/{src/assets → assets}/svg/color-ven-design-profile-central.svg +0 -0
- /package/{src/assets → assets}/svg/column-edit.svg +0 -0
- /package/{src/assets → assets}/svg/computer-chip.svg +0 -0
- /package/{src/assets → assets}/svg/contrast-photo-edit.svg +0 -0
- /package/{src/assets → assets}/svg/copy-item.svg +0 -0
- /package/{src/assets → assets}/svg/creative-commons.svg +0 -0
- /package/{src/assets → assets}/svg/crosshair.svg +0 -0
- /package/{src/assets → assets}/svg/crown-style-circle.svg +0 -0
- /package/{src/assets → assets}/svg/cursor-select.svg +0 -0
- /package/{src/assets → assets}/svg/curve-object-secet-cursor.svg +0 -0
- /package/{src/assets → assets}/svg/data-tree.svg +0 -0
- /package/{src/assets → assets}/svg/delivery-shipment-packages.svg +0 -0
- /package/{src/assets → assets}/svg/dna-hospital-medical.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-add-plus-bottom-left.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-blank.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-checkmark-bottom-left.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-download.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-list-protocol.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-tar.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-upload-bottom-center.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-zip.svg +0 -0
- /package/{src/assets → assets}/svg/document-status-done-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/document-visible.svg +0 -0
- /package/{src/assets → assets}/svg/documents-file.svg +0 -0
- /package/{src/assets → assets}/svg/documents-files.svg +0 -0
- /package/{src/assets → assets}/svg/done-check-tracked.svg +0 -0
- /package/{src/assets → assets}/svg/done-check.svg +0 -0
- /package/{src/assets → assets}/svg/download-status.svg +0 -0
- /package/{src/assets → assets}/svg/download.svg +0 -0
- /package/{src/assets → assets}/svg/drag-drop-indicator.svg +0 -0
- /package/{src/assets → assets}/svg/draw-rectangle.svg +0 -0
- /package/{src/assets → assets}/svg/earth-globe-fail.svg +0 -0
- /package/{src/assets → assets}/svg/edit-boxed.svg +0 -0
- /package/{src/assets → assets}/svg/edit-erase.svg +0 -0
- /package/{src/assets → assets}/svg/edit.svg +0 -0
- /package/{src/assets → assets}/svg/email-mail-checkmark-group.svg +0 -0
- /package/{src/assets → assets}/svg/email.svg +0 -0
- /package/{src/assets → assets}/svg/embed-circle.svg +0 -0
- /package/{src/assets → assets}/svg/exchange.svg +0 -0
- /package/{src/assets → assets}/svg/expand-pathfinder-dot-square-segmentation.svg +0 -0
- /package/{src/assets → assets}/svg/facebook.svg +0 -0
- /package/{src/assets → assets}/svg/file-blank-image-load-mask.svg +0 -0
- /package/{src/assets → assets}/svg/file-download.svg +0 -0
- /package/{src/assets → assets}/svg/file-text.svg +0 -0
- /package/{src/assets → assets}/svg/files-library-content.svg +0 -0
- /package/{src/assets → assets}/svg/files-library.svg +0 -0
- /package/{src/assets → assets}/svg/files.svg +0 -0
- /package/{src/assets → assets}/svg/filter-sort-add.svg +0 -0
- /package/{src/assets → assets}/svg/filter-sort-check-mark.svg +0 -0
- /package/{src/assets → assets}/svg/filter-sort-delete.svg +0 -0
- /package/{src/assets → assets}/svg/filter.svg +0 -0
- /package/{src/assets → assets}/svg/flag.svg +0 -0
- /package/{src/assets → assets}/svg/flip-horizontal.svg +0 -0
- /package/{src/assets → assets}/svg/flip-vertical.svg +0 -0
- /package/{src/assets → assets}/svg/floppy-save.svg +0 -0
- /package/{src/assets → assets}/svg/flywheel-mark-logo.svg +0 -0
- /package/{src/assets → assets}/svg/flywheel-viewer-mark-logo.svg +0 -0
- /package/{src/assets → assets}/svg/folder-add.svg +0 -0
- /package/{src/assets → assets}/svg/folder-blank.svg +0 -0
- /package/{src/assets → assets}/svg/folder-checked.svg +0 -0
- /package/{src/assets → assets}/svg/folder-group.svg +0 -0
- /package/{src/assets → assets}/svg/folder-open.svg +0 -0
- /package/{src/assets → assets}/svg/folder-share.svg +0 -0
- /package/{src/assets → assets}/svg/folders-copy-expand-arrow-down.svg +0 -0
- /package/{src/assets → assets}/svg/folders-copy-expand-arrow-up.svg +0 -0
- /package/{src/assets → assets}/svg/form-metadata-element.svg +0 -0
- /package/{src/assets → assets}/svg/free-rights.svg +0 -0
- /package/{src/assets → assets}/svg/freehand-vector-poly.svg +0 -0
- /package/{src/assets → assets}/svg/full-screen-zoom.svg +0 -0
- /package/{src/assets → assets}/svg/github-color-login.svg +0 -0
- /package/{src/assets → assets}/svg/gitlab.svg +0 -0
- /package/{src/assets → assets}/svg/graduate-hat.svg +0 -0
- /package/{src/assets → assets}/svg/grid-dot-square.svg +0 -0
- /package/{src/assets → assets}/svg/grid-layout.svg +0 -0
- /package/{src/assets → assets}/svg/hammer-legal-square.svg +0 -0
- /package/{src/assets → assets}/svg/hammer-screwdriver.svg +0 -0
- /package/{src/assets → assets}/svg/hand-money-currency.svg +0 -0
- /package/{src/assets → assets}/svg/header-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/home-modern-door.svg +0 -0
- /package/{src/assets → assets}/svg/home-modern-option-lines.svg +0 -0
- /package/{src/assets → assets}/svg/human-artificial-intelligence.svg +0 -0
- /package/{src/assets → assets}/svg/icon-placeholder.svg +0 -0
- /package/{src/assets → assets}/svg/image-photo-copy-left-down.svg +0 -0
- /package/{src/assets → assets}/svg/image-picture-square.svg +0 -0
- /package/{src/assets → assets}/svg/information-circle.svg +0 -0
- /package/{src/assets → assets}/svg/invoice-checkmark-paid.svg +0 -0
- /package/{src/assets → assets}/svg/invoice.svg +0 -0
- /package/{src/assets → assets}/svg/italic.svg +0 -0
- /package/{src/assets → assets}/svg/items-group-elements.svg +0 -0
- /package/{src/assets → assets}/svg/key.svg +0 -0
- /package/{src/assets → assets}/svg/keyboard.svg +0 -0
- /package/{src/assets → assets}/svg/keychain.svg +0 -0
- /package/{src/assets → assets}/svg/label-tag.svg +0 -0
- /package/{src/assets → assets}/svg/laptop-health-medical-cross.svg +0 -0
- /package/{src/assets → assets}/svg/layers.svg +0 -0
- /package/{src/assets → assets}/svg/layout-grid.svg +0 -0
- /package/{src/assets → assets}/svg/layout.svg +0 -0
- /package/{src/assets → assets}/svg/line.svg +0 -0
- /package/{src/assets → assets}/svg/link-unlink.svg +0 -0
- /package/{src/assets → assets}/svg/link.svg +0 -0
- /package/{src/assets → assets}/svg/linkedin.svg +0 -0
- /package/{src/assets → assets}/svg/linux.svg +0 -0
- /package/{src/assets → assets}/svg/list-paragraph-number.svg +0 -0
- /package/{src/assets → assets}/svg/list-paragraph.svg +0 -0
- /package/{src/assets → assets}/svg/list-test-lab-flask.svg +0 -0
- /package/{src/assets → assets}/svg/livewire-tool.svg +0 -0
- /package/{src/assets → assets}/svg/loading-status-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/lock-unlock.svg +0 -0
- /package/{src/assets → assets}/svg/lock.svg +0 -0
- /package/{src/assets → assets}/svg/logout.svg +0 -0
- /package/{src/assets → assets}/svg/lung.svg +0 -0
- /package/{src/assets → assets}/svg/lungs.svg +0 -0
- /package/{src/assets → assets}/svg/markdown.svg +0 -0
- /package/{src/assets → assets}/svg/measure-angle.svg +0 -0
- /package/{src/assets → assets}/svg/measure-ruler-calibration.svg +0 -0
- /package/{src/assets → assets}/svg/media-library-imports-dowload.svg +0 -0
- /package/{src/assets → assets}/svg/menu-burger-handle.svg +0 -0
- /package/{src/assets → assets}/svg/menu-horizontal.svg +0 -0
- /package/{src/assets → assets}/svg/menu-list-form-square.svg +0 -0
- /package/{src/assets → assets}/svg/menu-vertical.svg +0 -0
- /package/{src/assets → assets}/svg/message-chat-info.svg +0 -0
- /package/{src/assets → assets}/svg/message-chat-question-support.svg +0 -0
- /package/{src/assets → assets}/svg/message-checkmark-sent.svg +0 -0
- /package/{src/assets → assets}/svg/message-question-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/microphone-mic-rec-circle.svg +0 -0
- /package/{src/assets → assets}/svg/microphone-mic-rec.svg +0 -0
- /package/{src/assets → assets}/svg/microphone-mic-recording-circle.svg +0 -0
- /package/{src/assets → assets}/svg/minus.svg +0 -0
- /package/{src/assets → assets}/svg/modalities.svg +0 -0
- /package/{src/assets → assets}/svg/molecule.svg +0 -0
- /package/{src/assets → assets}/svg/money-coin.svg +0 -0
- /package/{src/assets → assets}/svg/money-dollar.svg +0 -0
- /package/{src/assets → assets}/svg/money.svg +0 -0
- /package/{src/assets → assets}/svg/monitor-computer.svg +0 -0
- /package/{src/assets → assets}/svg/mouse-big.svg +0 -0
- /package/{src/assets → assets}/svg/move.svg +0 -0
- /package/{src/assets → assets}/svg/music-play-resume.svg +0 -0
- /package/{src/assets → assets}/svg/music-stop.svg +0 -0
- /package/{src/assets → assets}/svg/mute.svg +0 -0
- /package/{src/assets → assets}/svg/network-storage-alert.svg +0 -0
- /package/{src/assets → assets}/svg/notebook-add-plus.svg +0 -0
- /package/{src/assets → assets}/svg/notebook-open.svg +0 -0
- /package/{src/assets → assets}/svg/notebook-pen-edit.svg +0 -0
- /package/{src/assets → assets}/svg/notebook.svg +0 -0
- /package/{src/assets → assets}/svg/notes-pen.svg +0 -0
- /package/{src/assets → assets}/svg/object-search-zoom-plus.svg +0 -0
- /package/{src/assets → assets}/svg/open.svg +0 -0
- /package/{src/assets → assets}/svg/paint-roller.svg +0 -0
- /package/{src/assets → assets}/svg/pause.svg +0 -0
- /package/{src/assets → assets}/svg/pen-edit-circle.svg +0 -0
- /package/{src/assets → assets}/svg/pencil-edit-create.svg +0 -0
- /package/{src/assets → assets}/svg/photo-edit-brightness-invert.svg +0 -0
- /package/{src/assets → assets}/svg/pie-chart.svg +0 -0
- /package/{src/assets → assets}/svg/pie-graph-chart-sample.svg +0 -0
- /package/{src/assets → assets}/svg/plus-add-rectangle.svg +0 -0
- /package/{src/assets → assets}/svg/polygon.svg +0 -0
- /package/{src/assets → assets}/svg/private-mode-protection-circle.svg +0 -0
- /package/{src/assets → assets}/svg/protection-target.svg +0 -0
- /package/{src/assets → assets}/svg/protective-mask.svg +0 -0
- /package/{src/assets → assets}/svg/question-circle.svg +0 -0
- /package/{src/assets → assets}/svg/quote.svg +0 -0
- /package/{src/assets → assets}/svg/radiology-scan-circle.svg +0 -0
- /package/{src/assets → assets}/svg/radiology-scan.svg +0 -0
- /package/{src/assets → assets}/svg/reader-studies.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-arrow-manual.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-item-left.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-item-right.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-refresh.svg +0 -0
- /package/{src/assets → assets}/svg/rotate.svg +0 -0
- /package/{src/assets → assets}/svg/ruler-bidirectional.svg +0 -0
- /package/{src/assets → assets}/svg/ruler.svg +0 -0
- /package/{src/assets → assets}/svg/scanner.svg +0 -0
- /package/{src/assets → assets}/svg/search-loop.svg +0 -0
- /package/{src/assets → assets}/svg/search-user-profile-person.svg +0 -0
- /package/{src/assets → assets}/svg/search-zoom-minus.svg +0 -0
- /package/{src/assets → assets}/svg/search-zoom-plus.svg +0 -0
- /package/{src/assets → assets}/svg/search.svg +0 -0
- /package/{src/assets → assets}/svg/section-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/send-message-share.svg +0 -0
- /package/{src/assets → assets}/svg/server-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/server-database-endpoint.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-checkmark-user.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-connect.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-download.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-key-protection.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-minimal-download.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-sync-import.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-sync.svg +0 -0
- /package/{src/assets → assets}/svg/server-upload.svg +0 -0
- /package/{src/assets → assets}/svg/server.svg +0 -0
- /package/{src/assets → assets}/svg/servers-database.svg +0 -0
- /package/{src/assets → assets}/svg/setting-gear.svg +0 -0
- /package/{src/assets → assets}/svg/settings-adjust.svg +0 -0
- /package/{src/assets → assets}/svg/settings-gear-square.svg +0 -0
- /package/{src/assets → assets}/svg/settings-gear.svg +0 -0
- /package/{src/assets → assets}/svg/settings-select.svg +0 -0
- /package/{src/assets → assets}/svg/shapes-objects.svg +0 -0
- /package/{src/assets → assets}/svg/share.svg +0 -0
- /package/{src/assets → assets}/svg/shield-protect.svg +0 -0
- /package/{src/assets → assets}/svg/show-visible.svg +0 -0
- /package/{src/assets → assets}/svg/smiley-emoji-face.svg +0 -0
- /package/{src/assets → assets}/svg/speed-dashboard.svg +0 -0
- /package/{src/assets → assets}/svg/square-fill-outline.svg +0 -0
- /package/{src/assets → assets}/svg/square-fill.svg +0 -0
- /package/{src/assets → assets}/svg/square-outline.svg +0 -0
- /package/{src/assets → assets}/svg/star.svg +0 -0
- /package/{src/assets → assets}/svg/stars-light-sparkle.svg +0 -0
- /package/{src/assets → assets}/svg/stomach.svg +0 -0
- /package/{src/assets → assets}/svg/stop-minus.svg +0 -0
- /package/{src/assets → assets}/svg/substract-group.svg +0 -0
- /package/{src/assets → assets}/svg/switch.svg +0 -0
- /package/{src/assets → assets}/svg/target-space-object-select.svg +0 -0
- /package/{src/assets → assets}/svg/target.svg +0 -0
- /package/{src/assets → assets}/svg/tasklist-to-do-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/technology-cube-3d.svg +0 -0
- /package/{src/assets → assets}/svg/test-lab-flask.svg +0 -0
- /package/{src/assets → assets}/svg/text-bold.svg +0 -0
- /package/{src/assets → assets}/svg/text-cross.svg +0 -0
- /package/{src/assets → assets}/svg/text-h1.svg +0 -0
- /package/{src/assets → assets}/svg/text-h2.svg +0 -0
- /package/{src/assets → assets}/svg/text-input-form.svg +0 -0
- /package/{src/assets → assets}/svg/text-long.svg +0 -0
- /package/{src/assets → assets}/svg/text-short-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/text-underline.svg +0 -0
- /package/{src/assets → assets}/svg/thumbs-up-like.svg +0 -0
- /package/{src/assets → assets}/svg/timer-clock-style.svg +0 -0
- /package/{src/assets → assets}/svg/trash-delete.svg +0 -0
- /package/{src/assets → assets}/svg/twitter.svg +0 -0
- /package/{src/assets → assets}/svg/undone-uncheck-untracked.svg +0 -0
- /package/{src/assets → assets}/svg/unlimited-repeat-subscription-circle.svg +0 -0
- /package/{src/assets → assets}/svg/upload.svg +0 -0
- /package/{src/assets → assets}/svg/user-checked.svg +0 -0
- /package/{src/assets → assets}/svg/user-delete-cross.svg +0 -0
- /package/{src/assets → assets}/svg/user-document.svg +0 -0
- /package/{src/assets → assets}/svg/user-group.svg +0 -0
- /package/{src/assets → assets}/svg/user-key.svg +0 -0
- /package/{src/assets → assets}/svg/user-lock.svg +0 -0
- /package/{src/assets → assets}/svg/user-profile-cards-pool.svg +0 -0
- /package/{src/assets → assets}/svg/user-profile-group-discovery.svg +0 -0
- /package/{src/assets → assets}/svg/user-setting-gear.svg +0 -0
- /package/{src/assets → assets}/svg/user.svg +0 -0
- /package/{src/assets → assets}/svg/video-player-controls.svg +0 -0
- /package/{src/assets → assets}/svg/visible-eye-hidden.svg +0 -0
- /package/{src/assets → assets}/svg/volume-full.svg +0 -0
- /package/{src/assets → assets}/svg/warning-circle.svg +0 -0
- /package/{src/assets → assets}/svg/warning.svg +0 -0
- /package/{src/assets → assets}/svg/window-finder-resize-arrow-down.svg +0 -0
- /package/{src/assets → assets}/svg/window-finder-resize-arrow-up.svg +0 -0
- /package/{src/assets → assets}/svg/window-resize-left.svg +0 -0
- /package/{src/assets → assets}/svg/window-resize-right.svg +0 -0
- /package/{src/assets → assets}/svg/window-zoom-plus-loupe.svg +0 -0
- /package/{src/assets → assets}/svg/windows.svg +0 -0
- /package/{src/assets → assets}/svg/workspace-mode.svg +0 -0
- /package/{src/assets → assets}/svg/youtube.svg +0 -0
- /package/{src/assets → assets}/svg/zendesk-logo.svg +0 -0
- /package/{src/global.scss → global.scss} +0 -0
- /package/{src/public-api.ts → public-api.d.ts} +0 -0
- /package/{src/public-api.scss → public-api.scss} +0 -0
- /package/{src/scss → scss}/atoms/ghost.scss +0 -0
- /package/{src/scss → scss}/atoms/scrollbar.scss +0 -0
- /package/{src/scss → scss}/config/colors.scss +0 -0
- /package/{src/scss → scss}/config/overlay.scss +0 -0
- /package/{src/scss → scss}/config/shadows.scss +0 -0
- /package/{src/scss → scss}/config/typography.scss +0 -0
- /package/{src/scss → scss}/icons/_icon-font-face.scss +0 -0
- /package/{src/scss → scss}/icons/_icon-glyphs.scss +0 -0
- /package/{src/scss → scss}/icons/_icon-variables.scss +0 -0
- /package/{src/scss → scss}/icons/icons.scss +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
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": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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": { "alias": "activeTabIndex"; "required": false; }; "activeTab": { "alias": "activeTab"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; }, { "select": "select"; }, ["tabs"], ["fw-tab", "*"], false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
|
+
import { IconType } from '../icon/icon.types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FwTextInputComponent implements ControlValueAccessor {
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
useActionableIcons?: boolean;
|
|
8
|
+
leftIcon?: IconType;
|
|
9
|
+
rightIcon?: string;
|
|
10
|
+
prefix?: string;
|
|
11
|
+
context?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated please use fw-wrapped-input instead
|
|
14
|
+
*/
|
|
15
|
+
helperText?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated please use fw-wrapped-input instead
|
|
18
|
+
*/
|
|
19
|
+
errorText?: string;
|
|
20
|
+
placeholder?: string;
|
|
21
|
+
readOnly?: boolean;
|
|
22
|
+
size?: 'small' | 'medium' | 'large';
|
|
23
|
+
type?: string;
|
|
24
|
+
maxLength?: number;
|
|
25
|
+
autofocus?: boolean;
|
|
26
|
+
autocomplete?: string;
|
|
27
|
+
value: string;
|
|
28
|
+
inputRef: ElementRef<HTMLInputElement>;
|
|
29
|
+
error?: boolean;
|
|
30
|
+
leftIconAction: EventEmitter<void>;
|
|
31
|
+
rightIconAction: EventEmitter<void>;
|
|
32
|
+
textInput: any;
|
|
33
|
+
width: string;
|
|
34
|
+
externalControl: FormControl;
|
|
35
|
+
onTouch: () => void;
|
|
36
|
+
onChange: (value: string) => void;
|
|
37
|
+
writeValue(obj: string): void;
|
|
38
|
+
registerOnChange(fn: any): void;
|
|
39
|
+
registerOnTouched(fn: any): void;
|
|
40
|
+
setDisabledState(isDisabled: boolean): void;
|
|
41
|
+
changeHandler(event: KeyboardEvent): void;
|
|
42
|
+
blurHandler(): void;
|
|
43
|
+
onLeftIconClick(): void;
|
|
44
|
+
onRightIconClick(): void;
|
|
45
|
+
focus(): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "useActionableIcons": { "alias": "useActionableIcons"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "context": { "alias": "context"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, ["textInput"], ["input", "*"], false, never>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./text-input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class FwTextInputModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwTextInputModule, [typeof i1.FwTextInputComponent], [typeof i2.CommonModule, typeof i3.FwIconModule, typeof i4.ReactiveFormsModule], [typeof i1.FwTextInputComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwTextInputModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
2
|
+
import { min } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FwTextAreaInputComponent implements ControlValueAccessor {
|
|
5
|
+
minRows: number;
|
|
6
|
+
maxRows: number;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated please use fw-wrapped-input instead
|
|
10
|
+
*/
|
|
11
|
+
helperText?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated please use fw-wrapped-input instead
|
|
14
|
+
*/
|
|
15
|
+
errorText?: string;
|
|
16
|
+
placeholder?: string;
|
|
17
|
+
readOnly?: boolean;
|
|
18
|
+
autofocus?: string;
|
|
19
|
+
width?: string;
|
|
20
|
+
error?: boolean;
|
|
21
|
+
value: string;
|
|
22
|
+
externalControl: FormControl;
|
|
23
|
+
onTouch: () => void;
|
|
24
|
+
onChange: (value: string) => void;
|
|
25
|
+
writeValue(obj: string): void;
|
|
26
|
+
registerOnChange(fn: any): void;
|
|
27
|
+
registerOnTouched(fn: any): void;
|
|
28
|
+
setDisabledState(isDisabled: boolean): void;
|
|
29
|
+
changeHandler(event: KeyboardEvent): void;
|
|
30
|
+
blurHandler(): void;
|
|
31
|
+
protected readonly min: typeof min;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTextAreaInputComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTextAreaInputComponent, "fw-textarea-input", never, { "minRows": { "alias": "minRows"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "width": { "alias": "width"; "required": false; }; "error": { "alias": "error"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textarea-input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/cdk/text-field";
|
|
6
|
+
import * as i5 from "../icon/icon.module";
|
|
7
|
+
export declare class FwTextAreaInputModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTextAreaInputModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwTextAreaInputModule, [typeof i1.FwTextAreaInputComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.TextFieldModule, typeof i5.FwIconModule], [typeof i1.FwTextAreaInputComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwTextAreaInputModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FwTooltipPanelComponent {
|
|
4
|
+
position: 'above' | 'below' | 'left' | 'right' | 'none';
|
|
5
|
+
color?: 'light' | 'dark';
|
|
6
|
+
maxWidth?: number;
|
|
7
|
+
mouseLeave: EventEmitter<MouseEvent>;
|
|
8
|
+
get classes(): string;
|
|
9
|
+
hidePopover(e: MouseEvent): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipPanelComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipPanelComponent, "fw-tooltip-panel", never, { "position": { "alias": "position"; "required": false; }; "color": { "alias": "color"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { CdkOverlayOrigin, ConnectedPosition, FlexibleConnectedPositionStrategyOrigin } from '@angular/cdk/overlay';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FwTooltipComponent {
|
|
4
|
+
title: string;
|
|
5
|
+
color: 'light' | 'dark';
|
|
6
|
+
position: 'above' | 'below' | 'left' | 'right' | 'none';
|
|
7
|
+
maxWidth?: number;
|
|
8
|
+
fullWidth?: boolean;
|
|
9
|
+
isOpen: boolean;
|
|
10
|
+
trigger: CdkOverlayOrigin | FlexibleConnectedPositionStrategyOrigin;
|
|
11
|
+
get classes(): string;
|
|
12
|
+
positionMap: {
|
|
13
|
+
[key: string]: ConnectedPosition;
|
|
14
|
+
};
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipComponent, "fw-tooltip", never, { "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; "position": { "alias": "position"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tooltip.component";
|
|
3
|
+
import * as i2 from "./tooltip-panel/tooltip-panel.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "../popover/popover.module";
|
|
6
|
+
import * as i5 from "@angular/cdk/overlay";
|
|
7
|
+
export declare class FwTooltipModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwTooltipModule, [typeof i1.FwTooltipComponent, typeof i2.FwTooltipPanelComponent], [typeof i3.CommonModule, typeof i4.FwPopoverModule, typeof i5.OverlayModule], [typeof i1.FwTooltipComponent, typeof i2.FwTooltipPanelComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwTooltipModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FwWrappedInputComponent {
|
|
3
|
+
title: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
helperText?: string;
|
|
6
|
+
errorText?: string;
|
|
7
|
+
class: boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwWrappedInputComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FwWrappedInputComponent, "fw-wrapped-input", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; }, {}, never, ["fw-form-heading", "fw-button-toggle, fw-date-input, fw-text-input, fw-number-input, fw-phone-input, fw-textarea-input, fw-select, fw-multi-select, fw-checkbox"], false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./wrapped-input.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../form-heading/form-heading.module";
|
|
5
|
+
export declare class FwWrappedInputModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FwWrappedInputModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FwWrappedInputModule, [typeof i1.FwWrappedInputComponent], [typeof i2.CommonModule, typeof i3.FwFormHeadingModule], [typeof i1.FwWrappedInputComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FwWrappedInputModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CdkMenuTrigger } from '@angular/cdk/menu';
|
|
2
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { MenuManagerService } from '../components/shared/services/menu-manager.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MenuRegisterDirective implements OnInit, OnDestroy {
|
|
6
|
+
private trigger;
|
|
7
|
+
private menuManager;
|
|
8
|
+
constructor(trigger: CdkMenuTrigger, menuManager: MenuManagerService);
|
|
9
|
+
private onClick;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
ngOnDestroy(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuRegisterDirective, [{ optional: true; host: true; }, { optional: true; }]>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuRegisterDirective, "[fwMenuRegister]", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const accesibilityPallete = [
|
|
2
|
+
'#00c0cb',
|
|
3
|
+
'#ffff00',
|
|
4
|
+
'#00ff00',
|
|
5
|
+
'#80d8c7',
|
|
6
|
+
'#ffff80',
|
|
7
|
+
'#80ff80',
|
|
8
|
+
'#00ff00',
|
|
9
|
+
'#ffe0b0',
|
|
10
|
+
'#c0ffc0',
|
|
11
|
+
'#80c0ff',
|
|
12
|
+
'#ff8000',
|
|
13
|
+
'#80d8c7',
|
|
14
|
+
'#b080ff',
|
|
15
|
+
'#ffc080',
|
|
16
|
+
'#c0ffc0',
|
|
17
|
+
'#ff69b4',
|
|
18
|
+
'#fff0d0',
|
|
19
|
+
'#ff8080',
|
|
20
|
+
'#ff6040',
|
|
21
|
+
'#40e0e0',
|
|
22
|
+
'#ff6930',
|
|
23
|
+
'#ffc0c0',
|
|
24
|
+
'#80e0e0',
|
|
25
|
+
'#ff8000',
|
|
26
|
+
'#c0f0f0',
|
|
27
|
+
'#ffc000',
|
|
28
|
+
'#ffb0c0',
|
|
29
|
+
'#b0d0ff',
|
|
30
|
+
'#f0f0c0',
|
|
31
|
+
'#ffc0e0',
|
|
32
|
+
'#d0e0ff',
|
|
33
|
+
];
|
|
34
|
+
export const hashCode = (str) => {
|
|
35
|
+
let hash = 0;
|
|
36
|
+
for (let i = 0; i < str.length; i++) {
|
|
37
|
+
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
|
38
|
+
}
|
|
39
|
+
return Math.abs(hash);
|
|
40
|
+
};
|
|
41
|
+
export const pickColorViaHash = (seed = '') => {
|
|
42
|
+
const hash = hashCode(seed);
|
|
43
|
+
return accesibilityPallete[hash % (accesibilityPallete.length - 1)];
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3IudXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29sb3IudXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsTUFBTSxtQkFBbUIsR0FBRztJQUMxQixTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0NBQ1YsQ0FBQTtBQUVELE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRyxDQUFDLEdBQVcsRUFBVSxFQUFFO0lBQzlDLElBQUksSUFBSSxHQUFHLENBQUMsQ0FBQztJQUNiLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxHQUFHLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUM7UUFDcEMsSUFBSSxHQUFHLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQztJQUNsRCxDQUFDO0lBQ0QsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO0FBQ3hCLENBQUMsQ0FBQTtBQUVELE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLENBQUMsSUFBSSxHQUFHLEVBQUUsRUFBVSxFQUFFO0lBQ3BELE1BQU0sSUFBSSxHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QixPQUFPLG1CQUFtQixDQUFDLElBQUksR0FBRyxDQUFDLG1CQUFtQixDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ3JFLENBQUMsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbIlxuY29uc3QgYWNjZXNpYmlsaXR5UGFsbGV0ZSA9IFtcbiAgJyMwMGMwY2InLFxuICAnI2ZmZmYwMCcsXG4gICcjMDBmZjAwJyxcbiAgJyM4MGQ4YzcnLFxuICAnI2ZmZmY4MCcsXG4gICcjODBmZjgwJyxcbiAgJyMwMGZmMDAnLFxuICAnI2ZmZTBiMCcsXG4gICcjYzBmZmMwJyxcbiAgJyM4MGMwZmYnLFxuICAnI2ZmODAwMCcsXG4gICcjODBkOGM3JyxcbiAgJyNiMDgwZmYnLFxuICAnI2ZmYzA4MCcsXG4gICcjYzBmZmMwJyxcbiAgJyNmZjY5YjQnLFxuICAnI2ZmZjBkMCcsXG4gICcjZmY4MDgwJyxcbiAgJyNmZjYwNDAnLFxuICAnIzQwZTBlMCcsXG4gICcjZmY2OTMwJyxcbiAgJyNmZmMwYzAnLFxuICAnIzgwZTBlMCcsXG4gICcjZmY4MDAwJyxcbiAgJyNjMGYwZjAnLFxuICAnI2ZmYzAwMCcsXG4gICcjZmZiMGMwJyxcbiAgJyNiMGQwZmYnLFxuICAnI2YwZjBjMCcsXG4gICcjZmZjMGUwJyxcbiAgJyNkMGUwZmYnLFxuXVxuXG5leHBvcnQgY29uc3QgaGFzaENvZGUgPSAoc3RyOiBzdHJpbmcpOiBudW1iZXIgPT4ge1xuICBsZXQgaGFzaCA9IDA7XG4gIGZvciAobGV0IGkgPSAwOyBpIDwgc3RyLmxlbmd0aDsgaSsrKSB7XG4gICAgaGFzaCA9IHN0ci5jaGFyQ29kZUF0KGkpICsgKChoYXNoIDw8IDUpIC0gaGFzaCk7XG4gIH1cbiAgcmV0dXJuIE1hdGguYWJzKGhhc2gpO1xufVxuXG5leHBvcnQgY29uc3QgcGlja0NvbG9yVmlhSGFzaCA9IChzZWVkID0gJycpOiBzdHJpbmcgPT4ge1xuICBjb25zdCBoYXNoID0gaGFzaENvZGUoc2VlZCk7XG4gIHJldHVybiBhY2Nlc2liaWxpdHlQYWxsZXRlW2hhc2ggJSAoYWNjZXNpYmlsaXR5UGFsbGV0ZS5sZW5ndGggLSAxKV1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "../icon/icon.component";
|
|
5
|
+
import * as i3 from "../icon-button/icon-button.component";
|
|
6
|
+
export class FwAlertComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.severity = 'info';
|
|
9
|
+
this.variant = 'standard';
|
|
10
|
+
// eslint-disable-next-line @angular-eslint/no-output-native
|
|
11
|
+
this.close = new EventEmitter();
|
|
12
|
+
}
|
|
13
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwAlertComponent, selector: "fw-alert", inputs: { description: "description", icon: "icon", severity: "severity", title: "title", variant: "variant", showClose: "showClose" }, outputs: { close: "close" }, ngImport: i0, template: "<div [ngClass]=\"['fw-alert', variant, severity]\">\n <fw-icon *ngIf=\"icon\" class=\"fw-alert-icon\">{{ icon }}</fw-icon>\n <div class=\"fw-alert-text\">\n <h4 *ngIf=\"title\" class=\"vision-h4\">{{ title }}</h4>\n <p *ngIf=\"description\" class=\"vision-p2\">{{ description }}</p>\n <p class=\"vision-p2\">\n <ng-content></ng-content>\n </p>\n </div>\n <div class=\"close-icon\">\n <ng-content select=\"fw-button\"></ng-content>\n <fw-icon-button\n *ngIf=\"showClose\"\n icon=\"close\" size=\"small\"\n [color]=\"variant==='filled'?'overlay':severity\"\n (click)=\"close?close.emit():undefined\">\n </fw-icon-button>\n </div>\n</div>\n", styles: [".fw-alert{border-radius:8px;padding:6px 16px;display:flex;box-sizing:border-box;min-height:48px}.fw-alert .fw-alert-icon{padding:7px 12px 7px 0;align-items:flex-start;font-size:22px}.fw-alert .fw-alert-text{padding:6px 0;flex:1;display:flex;flex-direction:column;justify-items:center}.fw-alert h4{margin:3px 0;color:var(--typography-contrast)}.fw-alert p{margin:3px 0 0;color:inherit;font-size:12px;font-weight:400;line-height:16.8px}.fw-alert .close-icon{display:flex;align-items:flex-start;margin-left:16px;gap:16px;margin-top:4px;height:30px}.fw-alert .close-icon:empty{display:none}.fw-alert.standard.info{color:var(--primary-base);background-color:var(--primary-hover);border:1px solid var(--primary-border)}.fw-alert.standard.info h4{color:var(--primary-base)}.fw-alert.standard.warning{color:var(--orange-base);background-color:var(--orange-hover);border:1px solid var(--orange-border)}.fw-alert.standard.warning h4{color:var(--orange-base)}.fw-alert.standard.success{color:var(--green-base);background-color:var(--green-hover);border:1px solid var(--green-border)}.fw-alert.standard.success h4{color:var(--green-base)}.fw-alert.standard.error{color:var(--red-base);background-color:var(--red-hover);border:1px solid var(--red-border)}.fw-alert.standard.error h4{color:var(--red-base)}.fw-alert.outlined.info{color:var(--primary-base);border:1px solid var(--primary-base)}.fw-alert.outlined.info h4{color:var(--primary-base)}.fw-alert.outlined.warning{color:var(--orange-base);border:1px solid var(--orange-base)}.fw-alert.outlined.warning h4{color:var(--orange-base)}.fw-alert.outlined.success{color:var(--green-base);border:1px solid var(--green-base)}.fw-alert.outlined.success h4{color:var(--green-base)}.fw-alert.outlined.error{color:var(--red-base);border:1px solid var(--red-base)}.fw-alert.outlined.error h4{color:var(--red-base)}.fw-alert.filled.info{color:var(--typography-contrast);background-color:var(--primary-base)}.fw-alert.filled.warning{color:var(--typography-contrast);background-color:var(--orange-base)}.fw-alert.filled.success{color:var(--typography-contrast);background-color:var(--green-base)}.fw-alert.filled.error{color:var(--typography-contrast);background-color:var(--red-base)}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }, { kind: "component", type: i3.FwIconButtonComponent, selector: "fw-icon-button", inputs: ["color", "icon", "size", "disabled", "selected"] }] }); }
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertComponent, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{ selector: 'fw-alert', template: "<div [ngClass]=\"['fw-alert', variant, severity]\">\n <fw-icon *ngIf=\"icon\" class=\"fw-alert-icon\">{{ icon }}</fw-icon>\n <div class=\"fw-alert-text\">\n <h4 *ngIf=\"title\" class=\"vision-h4\">{{ title }}</h4>\n <p *ngIf=\"description\" class=\"vision-p2\">{{ description }}</p>\n <p class=\"vision-p2\">\n <ng-content></ng-content>\n </p>\n </div>\n <div class=\"close-icon\">\n <ng-content select=\"fw-button\"></ng-content>\n <fw-icon-button\n *ngIf=\"showClose\"\n icon=\"close\" size=\"small\"\n [color]=\"variant==='filled'?'overlay':severity\"\n (click)=\"close?close.emit():undefined\">\n </fw-icon-button>\n </div>\n</div>\n", styles: [".fw-alert{border-radius:8px;padding:6px 16px;display:flex;box-sizing:border-box;min-height:48px}.fw-alert .fw-alert-icon{padding:7px 12px 7px 0;align-items:flex-start;font-size:22px}.fw-alert .fw-alert-text{padding:6px 0;flex:1;display:flex;flex-direction:column;justify-items:center}.fw-alert h4{margin:3px 0;color:var(--typography-contrast)}.fw-alert p{margin:3px 0 0;color:inherit;font-size:12px;font-weight:400;line-height:16.8px}.fw-alert .close-icon{display:flex;align-items:flex-start;margin-left:16px;gap:16px;margin-top:4px;height:30px}.fw-alert .close-icon:empty{display:none}.fw-alert.standard.info{color:var(--primary-base);background-color:var(--primary-hover);border:1px solid var(--primary-border)}.fw-alert.standard.info h4{color:var(--primary-base)}.fw-alert.standard.warning{color:var(--orange-base);background-color:var(--orange-hover);border:1px solid var(--orange-border)}.fw-alert.standard.warning h4{color:var(--orange-base)}.fw-alert.standard.success{color:var(--green-base);background-color:var(--green-hover);border:1px solid var(--green-border)}.fw-alert.standard.success h4{color:var(--green-base)}.fw-alert.standard.error{color:var(--red-base);background-color:var(--red-hover);border:1px solid var(--red-border)}.fw-alert.standard.error h4{color:var(--red-base)}.fw-alert.outlined.info{color:var(--primary-base);border:1px solid var(--primary-base)}.fw-alert.outlined.info h4{color:var(--primary-base)}.fw-alert.outlined.warning{color:var(--orange-base);border:1px solid var(--orange-base)}.fw-alert.outlined.warning h4{color:var(--orange-base)}.fw-alert.outlined.success{color:var(--green-base);border:1px solid var(--green-base)}.fw-alert.outlined.success h4{color:var(--green-base)}.fw-alert.outlined.error{color:var(--red-base);border:1px solid var(--red-base)}.fw-alert.outlined.error h4{color:var(--red-base)}.fw-alert.filled.info{color:var(--typography-contrast);background-color:var(--primary-base)}.fw-alert.filled.warning{color:var(--typography-contrast);background-color:var(--orange-base)}.fw-alert.filled.success{color:var(--typography-contrast);background-color:var(--green-base)}.fw-alert.filled.error{color:var(--typography-contrast);background-color:var(--red-base)}\n"] }]
|
|
19
|
+
}], propDecorators: { description: [{
|
|
20
|
+
type: Input
|
|
21
|
+
}], icon: [{
|
|
22
|
+
type: Input
|
|
23
|
+
}], severity: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], title: [{
|
|
26
|
+
type: Input
|
|
27
|
+
}], variant: [{
|
|
28
|
+
type: Input
|
|
29
|
+
}], showClose: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], close: [{
|
|
32
|
+
type: Output
|
|
33
|
+
}] } });
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQvYWxlcnQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQvYWxlcnQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFTdkUsTUFBTSxPQUFPLGdCQUFnQjtJQUw3QjtRQVFXLGFBQVEsR0FBOEMsTUFBTSxDQUFDO1FBRTdELFlBQU8sR0FBd0MsVUFBVSxDQUFDO1FBRW5FLDREQUE0RDtRQUNsRCxVQUFLLEdBQXVCLElBQUksWUFBWSxFQUFRLENBQUM7S0FDaEU7K0dBVFksZ0JBQWdCO21HQUFoQixnQkFBZ0IscU5DVDdCLGtyQkFtQkE7OzRGRFZhLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDRSxVQUFVOzhCQUtYLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUVJLEtBQUs7c0JBQWQsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEljb25UeXBlIH0gZnJvbSAnLi4vaWNvbi9pY29uLnR5cGVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZnctYWxlcnQnLFxuICB0ZW1wbGF0ZVVybDogJy4vYWxlcnQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hbGVydC5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBGd0FsZXJ0Q29tcG9uZW50IHtcbiAgQElucHV0KCkgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGljb24/OiBJY29uVHlwZTtcbiAgQElucHV0KCkgc2V2ZXJpdHk/OiAnaW5mbycgfCAnc3VjY2VzcycgfCAnd2FybmluZycgfCAnZXJyb3InID0gJ2luZm8nO1xuICBASW5wdXQoKSB0aXRsZT86IHN0cmluZztcbiAgQElucHV0KCkgdmFyaWFudD86ICdzdGFuZGFyZCcgfCAnb3V0bGluZWQnIHwgJ2ZpbGxlZCcgPSAnc3RhbmRhcmQnO1xuICBASW5wdXQoKSBzaG93Q2xvc2U/OiBib29sZWFuO1xuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLW91dHB1dC1uYXRpdmVcbiAgQE91dHB1dCgpIGNsb3NlOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cIlsnZnctYWxlcnQnLCB2YXJpYW50LCBzZXZlcml0eV1cIj5cbiAgPGZ3LWljb24gKm5nSWY9XCJpY29uXCIgY2xhc3M9XCJmdy1hbGVydC1pY29uXCI+e3sgaWNvbiB9fTwvZnctaWNvbj5cbiAgPGRpdiBjbGFzcz1cImZ3LWFsZXJ0LXRleHRcIj5cbiAgICA8aDQgKm5nSWY9XCJ0aXRsZVwiIGNsYXNzPVwidmlzaW9uLWg0XCI+e3sgdGl0bGUgfX08L2g0PlxuICAgIDxwICpuZ0lmPVwiZGVzY3JpcHRpb25cIiBjbGFzcz1cInZpc2lvbi1wMlwiPnt7IGRlc2NyaXB0aW9uIH19PC9wPlxuICAgIDxwIGNsYXNzPVwidmlzaW9uLXAyXCI+XG4gICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgPC9wPlxuICA8L2Rpdj5cbiAgPGRpdiBjbGFzcz1cImNsb3NlLWljb25cIj5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJmdy1idXR0b25cIj48L25nLWNvbnRlbnQ+XG4gICAgPGZ3LWljb24tYnV0dG9uXG4gICAgICAqbmdJZj1cInNob3dDbG9zZVwiXG4gICAgICBpY29uPVwiY2xvc2VcIiBzaXplPVwic21hbGxcIlxuICAgICAgW2NvbG9yXT1cInZhcmlhbnQ9PT0nZmlsbGVkJz8nb3ZlcmxheSc6c2V2ZXJpdHlcIlxuICAgICAgKGNsaWNrKT1cImNsb3NlP2Nsb3NlLmVtaXQoKTp1bmRlZmluZWRcIj5cbiAgICA8L2Z3LWljb24tYnV0dG9uPlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { FwIconModule } from '../icon/icon.module';
|
|
4
|
+
import { FwIconButtonModule } from '../icon-button/icon-button.module';
|
|
5
|
+
import { FwAlertComponent } from './alert.component';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export class FwAlertModule {
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, declarations: [FwAlertComponent], imports: [CommonModule,
|
|
10
|
+
FwIconModule,
|
|
11
|
+
FwIconButtonModule], exports: [FwAlertComponent] }); }
|
|
12
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, imports: [CommonModule,
|
|
13
|
+
FwIconModule,
|
|
14
|
+
FwIconButtonModule] }); }
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, decorators: [{
|
|
17
|
+
type: NgModule,
|
|
18
|
+
args: [{
|
|
19
|
+
imports: [
|
|
20
|
+
CommonModule,
|
|
21
|
+
FwIconModule,
|
|
22
|
+
FwIconButtonModule,
|
|
23
|
+
],
|
|
24
|
+
exports: [
|
|
25
|
+
FwAlertComponent,
|
|
26
|
+
],
|
|
27
|
+
declarations: [
|
|
28
|
+
FwAlertComponent,
|
|
29
|
+
],
|
|
30
|
+
}]
|
|
31
|
+
}] });
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQvYWxlcnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7QUFlckQsTUFBTSxPQUFPLGFBQWE7K0dBQWIsYUFBYTtnSEFBYixhQUFhLGlCQUhsQixnQkFBZ0IsYUFSaEIsWUFBWTtZQUNaLFlBQVk7WUFDWixrQkFBa0IsYUFHbEIsZ0JBQWdCO2dIQU1YLGFBQWEsWUFYbEIsWUFBWTtZQUNaLFlBQVk7WUFDWixrQkFBa0I7OzRGQVNiLGFBQWE7a0JBYnpCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFO3dCQUNMLFlBQVk7d0JBQ1osWUFBWTt3QkFDWixrQkFBa0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRTt3QkFDTCxnQkFBZ0I7cUJBQ25CO29CQUNELFlBQVksRUFBRTt3QkFDVixnQkFBZ0I7cUJBQ25CO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZ3SWNvbk1vZHVsZSB9IGZyb20gJy4uL2ljb24vaWNvbi5tb2R1bGUnO1xuaW1wb3J0IHsgRndJY29uQnV0dG9uTW9kdWxlIH0gZnJvbSAnLi4vaWNvbi1idXR0b24vaWNvbi1idXR0b24ubW9kdWxlJztcbmltcG9ydCB7IEZ3QWxlcnRDb21wb25lbnQgfSBmcm9tICcuL2FsZXJ0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIEZ3SWNvbk1vZHVsZSxcbiAgICAgICAgRndJY29uQnV0dG9uTW9kdWxlLFxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBGd0FsZXJ0Q29tcG9uZW50LFxuICAgIF0sXG4gICAgZGVjbGFyYXRpb25zOiBbXG4gICAgICAgIEZ3QWxlcnRDb21wb25lbnQsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgRndBbGVydE1vZHVsZSB7XG59XG4iXX0=
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Component, HostBinding, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "../icon/icon.component";
|
|
5
|
+
export class FwAppIconComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.color = 'primary';
|
|
8
|
+
this.fontColor = 'contrast';
|
|
9
|
+
this.size = 'medium';
|
|
10
|
+
this.variant = 'interactive';
|
|
11
|
+
this.tabindex = '';
|
|
12
|
+
this.locked = false;
|
|
13
|
+
this.animated = false;
|
|
14
|
+
this.role = 'button';
|
|
15
|
+
}
|
|
16
|
+
get cssClass() {
|
|
17
|
+
return ['fw-app-icon', this.size, this.color, this.variant].join(' ');
|
|
18
|
+
}
|
|
19
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
20
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwAppIconComponent, selector: "fw-app-icon", inputs: { title: "title", icon: "icon", imageUrl: "imageUrl", color: "color", fontColor: "fontColor", size: "size", variant: "variant", badge: "badge", tabindex: "tabindex", locked: "locked", animated: "animated" }, host: { properties: { "tabindex": "this.tabindex", "class.locked": "this.locked", "class.animated": "this.animated", "role": "this.role", "class": "this.cssClass" } }, ngImport: i0, template: "<div class=\"icon-highlight\"></div>\n<div class=\"icon-wrapper\">\n <div class=\"app-badge\" *ngIf=\"badge\"><span>{{ badge }}</span></div>\n <div class=\"app-locked\" *ngIf=\"locked\">\n <fw-icon>lock</fw-icon>\n </div>\n <img *ngIf=\"imageUrl\" [src]=\"imageUrl\" alt=\"App Icon\">\n <fw-icon *ngIf=\"icon\" [ngClass]=\"fontColor\">{{ icon }}</fw-icon>\n</div>\n<p class=\"vision-p3\" *ngIf=\"title\">{{ title }}</p>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large{box-shadow:0 5px 15px #0000001a}.vision-shadow-medium,:host .app-locked{box-shadow:0 2px 5px #0000001a}.vision-shadow-small,:host .app-badge{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}:host{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;position:relative;outline:none}:host .icon-highlight{box-sizing:content-box;display:inline-flex;border:4px solid transparent;padding:2px;position:absolute;top:0}:host .icon-wrapper{display:inline-flex;align-items:center;justify-content:center;-webkit-user-select:none;user-select:none;position:relative;box-sizing:border-box;margin:6px}:host p{margin:0;line-height:16.8px;-webkit-user-select:none;user-select:none;display:inline-block;color:var(--typography-muted);text-align:center}:host .app-badge{min-width:18px;height:18px;border-radius:64px;background:var(--red-base);font-family:Inter,sans-serif;font-size:10px;font-weight:500;line-height:180%;letter-spacing:0;text-align:center;color:var(--typography-contrast);display:inline-flex;align-items:flex-start;justify-content:center;position:absolute;top:-8px;right:-8px;padding:0 6px;box-sizing:border-box;overflow:hidden;white-space:nowrap}:host .app-locked{width:21px;height:21px;border-radius:64px;background:var(--slate-base);font-size:15px;color:var(--typography-contrast);display:inline-flex;align-items:center;justify-content:center;position:absolute;top:-6px;right:-6px;overflow:hidden;white-space:nowrap}:host.primary .icon-wrapper{background-color:var(--primary-base)}:host.primary .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.primary .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.primary .icon-wrapper>fw-icon.transparent{color:transparent}:host.dark .icon-wrapper{background-color:var(--primary-dark)}:host.dark .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.dark .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.gradient .icon-wrapper{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%)}:host.gradient .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.gradient .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.light .icon-wrapper{background-color:var(--page-light);outline:1px solid var(--separations-base)}:host.light .icon-wrapper>fw-icon{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}:host.transparent .icon-wrapper{background-color:transparent;outline:1px solid transparent}:host.small .icon-highlight{border-radius:12px;width:24px;height:24px}:host.small .icon-wrapper{display:inline-flex;width:24px;height:24px;border-radius:6px;align-items:center;justify-content:center}:host.small .icon-wrapper>fw-icon{font-size:16px;width:16px;min-width:16px}:host.small .icon-wrapper img{height:24px;width:24px}:host.small .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.medium .icon-highlight{border-radius:14px;width:32px;height:32px}:host.medium .icon-wrapper{display:inline-flex;width:32px;height:32px;border-radius:8px;align-items:center;justify-content:center}:host.medium .icon-wrapper>fw-icon{font-size:20px;width:20px;min-width:20px}:host.medium .icon-wrapper img{height:32px;width:32px}:host.medium .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.large .icon-highlight{border-radius:18px;width:48px;height:48px}:host.large .icon-wrapper{display:inline-flex;width:48px;height:48px;border-radius:12px;align-items:center;justify-content:center}:host.large .icon-wrapper>fw-icon{font-size:32px;width:32px;min-width:32px}:host.large .icon-wrapper img{height:48px;width:48px}:host.extra-large .icon-highlight{border-radius:22px;width:64px;height:64px}:host.extra-large .icon-wrapper{display:inline-flex;width:64px;height:64px;border-radius:16px;align-items:center;justify-content:center}:host.extra-large .icon-wrapper>fw-icon{font-size:48px;width:48px;min-width:48px}:host.extra-large .icon-wrapper img{height:64px;width:64px}:host.extra-large p{max-width:64px}:host.interactive .icon-highlight{border:4px solid transparent}:host.hover .icon-highlight,:host:hover .icon-highlight{border:4px solid var(--primary-border)}@keyframes rubber-band{0%{transform:scale(.95)}20%{transform:scale(1.05)}32%{transform:scale(.95)}48%{transform:scale(1)}}:host.animated.hover .icon-highlight,:host.animated:hover .icon-highlight{animation:rubber-band .5s linear forwards;border:4px solid var(--primary-border)}:host.focused .icon-highlight,:host:focus .icon-highlight,:host.animated:focus .icon-highlight{border:4px solid var(--primary-base)}:host.focused p,:host:focus p,:host.animated:focus p{color:var(--typography-base)}:host.static .icon-highlight,:host.static:hover .icon-highlight,:host.static.animated:hover .icon-highlight{border:4px solid transparent}:host.locked{pointer-events:none}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }] }); }
|
|
21
|
+
}
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconComponent, decorators: [{
|
|
23
|
+
type: Component,
|
|
24
|
+
args: [{ selector: 'fw-app-icon', template: "<div class=\"icon-highlight\"></div>\n<div class=\"icon-wrapper\">\n <div class=\"app-badge\" *ngIf=\"badge\"><span>{{ badge }}</span></div>\n <div class=\"app-locked\" *ngIf=\"locked\">\n <fw-icon>lock</fw-icon>\n </div>\n <img *ngIf=\"imageUrl\" [src]=\"imageUrl\" alt=\"App Icon\">\n <fw-icon *ngIf=\"icon\" [ngClass]=\"fontColor\">{{ icon }}</fw-icon>\n</div>\n<p class=\"vision-p3\" *ngIf=\"title\">{{ title }}</p>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large{box-shadow:0 5px 15px #0000001a}.vision-shadow-medium,:host .app-locked{box-shadow:0 2px 5px #0000001a}.vision-shadow-small,:host .app-badge{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}:host{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;position:relative;outline:none}:host .icon-highlight{box-sizing:content-box;display:inline-flex;border:4px solid transparent;padding:2px;position:absolute;top:0}:host .icon-wrapper{display:inline-flex;align-items:center;justify-content:center;-webkit-user-select:none;user-select:none;position:relative;box-sizing:border-box;margin:6px}:host p{margin:0;line-height:16.8px;-webkit-user-select:none;user-select:none;display:inline-block;color:var(--typography-muted);text-align:center}:host .app-badge{min-width:18px;height:18px;border-radius:64px;background:var(--red-base);font-family:Inter,sans-serif;font-size:10px;font-weight:500;line-height:180%;letter-spacing:0;text-align:center;color:var(--typography-contrast);display:inline-flex;align-items:flex-start;justify-content:center;position:absolute;top:-8px;right:-8px;padding:0 6px;box-sizing:border-box;overflow:hidden;white-space:nowrap}:host .app-locked{width:21px;height:21px;border-radius:64px;background:var(--slate-base);font-size:15px;color:var(--typography-contrast);display:inline-flex;align-items:center;justify-content:center;position:absolute;top:-6px;right:-6px;overflow:hidden;white-space:nowrap}:host.primary .icon-wrapper{background-color:var(--primary-base)}:host.primary .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.primary .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.primary .icon-wrapper>fw-icon.transparent{color:transparent}:host.dark .icon-wrapper{background-color:var(--primary-dark)}:host.dark .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.dark .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.gradient .icon-wrapper{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%)}:host.gradient .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.gradient .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.light .icon-wrapper{background-color:var(--page-light);outline:1px solid var(--separations-base)}:host.light .icon-wrapper>fw-icon{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}:host.transparent .icon-wrapper{background-color:transparent;outline:1px solid transparent}:host.small .icon-highlight{border-radius:12px;width:24px;height:24px}:host.small .icon-wrapper{display:inline-flex;width:24px;height:24px;border-radius:6px;align-items:center;justify-content:center}:host.small .icon-wrapper>fw-icon{font-size:16px;width:16px;min-width:16px}:host.small .icon-wrapper img{height:24px;width:24px}:host.small .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.medium .icon-highlight{border-radius:14px;width:32px;height:32px}:host.medium .icon-wrapper{display:inline-flex;width:32px;height:32px;border-radius:8px;align-items:center;justify-content:center}:host.medium .icon-wrapper>fw-icon{font-size:20px;width:20px;min-width:20px}:host.medium .icon-wrapper img{height:32px;width:32px}:host.medium .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.large .icon-highlight{border-radius:18px;width:48px;height:48px}:host.large .icon-wrapper{display:inline-flex;width:48px;height:48px;border-radius:12px;align-items:center;justify-content:center}:host.large .icon-wrapper>fw-icon{font-size:32px;width:32px;min-width:32px}:host.large .icon-wrapper img{height:48px;width:48px}:host.extra-large .icon-highlight{border-radius:22px;width:64px;height:64px}:host.extra-large .icon-wrapper{display:inline-flex;width:64px;height:64px;border-radius:16px;align-items:center;justify-content:center}:host.extra-large .icon-wrapper>fw-icon{font-size:48px;width:48px;min-width:48px}:host.extra-large .icon-wrapper img{height:64px;width:64px}:host.extra-large p{max-width:64px}:host.interactive .icon-highlight{border:4px solid transparent}:host.hover .icon-highlight,:host:hover .icon-highlight{border:4px solid var(--primary-border)}@keyframes rubber-band{0%{transform:scale(.95)}20%{transform:scale(1.05)}32%{transform:scale(.95)}48%{transform:scale(1)}}:host.animated.hover .icon-highlight,:host.animated:hover .icon-highlight{animation:rubber-band .5s linear forwards;border:4px solid var(--primary-border)}:host.focused .icon-highlight,:host:focus .icon-highlight,:host.animated:focus .icon-highlight{border:4px solid var(--primary-base)}:host.focused p,:host:focus p,:host.animated:focus p{color:var(--typography-base)}:host.static .icon-highlight,:host.static:hover .icon-highlight,:host.static.animated:hover .icon-highlight{border:4px solid transparent}:host.locked{pointer-events:none}\n"] }]
|
|
25
|
+
}], propDecorators: { title: [{
|
|
26
|
+
type: Input
|
|
27
|
+
}], icon: [{
|
|
28
|
+
type: Input
|
|
29
|
+
}], imageUrl: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], color: [{
|
|
32
|
+
type: Input
|
|
33
|
+
}], fontColor: [{
|
|
34
|
+
type: Input
|
|
35
|
+
}], size: [{
|
|
36
|
+
type: Input
|
|
37
|
+
}], variant: [{
|
|
38
|
+
type: Input
|
|
39
|
+
}], badge: [{
|
|
40
|
+
type: Input
|
|
41
|
+
}], tabindex: [{
|
|
42
|
+
type: HostBinding,
|
|
43
|
+
args: ['tabindex']
|
|
44
|
+
}, {
|
|
45
|
+
type: Input
|
|
46
|
+
}], locked: [{
|
|
47
|
+
type: HostBinding,
|
|
48
|
+
args: ['class.locked']
|
|
49
|
+
}, {
|
|
50
|
+
type: Input
|
|
51
|
+
}], animated: [{
|
|
52
|
+
type: HostBinding,
|
|
53
|
+
args: ['class.animated']
|
|
54
|
+
}, {
|
|
55
|
+
type: Input
|
|
56
|
+
}], role: [{
|
|
57
|
+
type: HostBinding,
|
|
58
|
+
args: ['role']
|
|
59
|
+
}], cssClass: [{
|
|
60
|
+
type: HostBinding,
|
|
61
|
+
args: ['class']
|
|
62
|
+
}] } });
|
|
63
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWljb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXBwLWljb24vYXBwLWljb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXBwLWljb24vYXBwLWljb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBUzlELE1BQU0sT0FBTyxrQkFBa0I7SUFML0I7UUFTVyxVQUFLLEdBQStELFNBQVMsQ0FBQztRQUM5RSxjQUFTLEdBQXlCLFVBQVUsQ0FBQztRQUM3QyxTQUFJLEdBQWtELFFBQVEsQ0FBQztRQUMvRCxZQUFPLEdBQW9ELGFBQWEsQ0FBQztRQUVoRCxhQUFRLEdBQUcsRUFBRSxDQUFDO1FBQ1YsV0FBTSxHQUFhLEtBQUssQ0FBQztRQUN2QixhQUFRLEdBQWEsS0FBSyxDQUFDO1FBQzlDLFNBQUksR0FBRyxRQUFRLENBQUM7S0FLdEM7SUFIQyxJQUEwQixRQUFRO1FBQ2hDLE9BQU8sQ0FBQyxhQUFhLEVBQUUsSUFBSSxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDeEUsQ0FBQzsrR0FoQlUsa0JBQWtCO21HQUFsQixrQkFBa0IsbWJDVC9CLCthQVVBOzs0RkREYSxrQkFBa0I7a0JBTDlCLFNBQVM7K0JBQ0UsYUFBYTs4QkFLZCxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQzRCLFFBQVE7c0JBQXpDLFdBQVc7dUJBQUMsVUFBVTs7c0JBQUcsS0FBSztnQkFDTyxNQUFNO3NCQUEzQyxXQUFXO3VCQUFDLGNBQWM7O3NCQUFHLEtBQUs7Z0JBQ0ssUUFBUTtzQkFBL0MsV0FBVzt1QkFBQyxnQkFBZ0I7O3NCQUFHLEtBQUs7Z0JBQ2hCLElBQUk7c0JBQXhCLFdBQVc7dUJBQUMsTUFBTTtnQkFFTyxRQUFRO3NCQUFqQyxXQUFXO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEhvc3RCaW5kaW5nLCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBJY29uVHlwZSB9IGZyb20gJy4uL2ljb24vaWNvbi50eXBlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Z3LWFwcC1pY29uJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FwcC1pY29uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYXBwLWljb24uY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgRndBcHBJY29uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgdGl0bGU/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGljb24/OiBJY29uVHlwZTtcbiAgQElucHV0KCkgaW1hZ2VVcmw/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvbG9yPzogJ3ByaW1hcnknIHwgJ2RhcmsnIHwgJ2xpZ2h0JyB8ICdncmFkaWVudCcgfCAndHJhbnNwYXJlbnQnID0gJ3ByaW1hcnknO1xuICBASW5wdXQoKSBmb250Q29sb3I/OiAnY29udHJhc3QnIHwgJ2Jhc2UnID0gJ2NvbnRyYXN0JztcbiAgQElucHV0KCkgc2l6ZT86ICdzbWFsbCcgfCAnbWVkaXVtJyB8ICdsYXJnZScgfCAnZXh0cmEtbGFyZ2UnID0gJ21lZGl1bSc7XG4gIEBJbnB1dCgpIHZhcmlhbnQ/OiAnaW50ZXJhY3RpdmUnIHwgJ2hvdmVyJyB8ICdmb2N1c2VkJyB8ICdzdGF0aWMnID0gJ2ludGVyYWN0aXZlJztcbiAgQElucHV0KCkgYmFkZ2U/OiBzdHJpbmc7XG4gIEBIb3N0QmluZGluZygndGFiaW5kZXgnKSBASW5wdXQoKSB0YWJpbmRleCA9ICcnO1xuICBASG9zdEJpbmRpbmcoJ2NsYXNzLmxvY2tlZCcpIEBJbnB1dCgpIGxvY2tlZD86IGJvb2xlYW4gPSBmYWxzZTtcbiAgQEhvc3RCaW5kaW5nKCdjbGFzcy5hbmltYXRlZCcpIEBJbnB1dCgpIGFuaW1hdGVkPzogYm9vbGVhbiA9IGZhbHNlO1xuICBASG9zdEJpbmRpbmcoJ3JvbGUnKSByb2xlID0gJ2J1dHRvbic7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpIGdldCBjc3NDbGFzcygpOiBzdHJpbmcge1xuICAgIHJldHVybiBbJ2Z3LWFwcC1pY29uJywgdGhpcy5zaXplLCB0aGlzLmNvbG9yLCB0aGlzLnZhcmlhbnRdLmpvaW4oJyAnKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImljb24taGlnaGxpZ2h0XCI+PC9kaXY+XG48ZGl2IGNsYXNzPVwiaWNvbi13cmFwcGVyXCI+XG4gIDxkaXYgY2xhc3M9XCJhcHAtYmFkZ2VcIiAqbmdJZj1cImJhZGdlXCI+PHNwYW4+e3sgYmFkZ2UgfX08L3NwYW4+PC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJhcHAtbG9ja2VkXCIgKm5nSWY9XCJsb2NrZWRcIj5cbiAgICA8ZnctaWNvbj5sb2NrPC9mdy1pY29uPlxuICA8L2Rpdj5cbiAgPGltZyAqbmdJZj1cImltYWdlVXJsXCIgW3NyY109XCJpbWFnZVVybFwiIGFsdD1cIkFwcCBJY29uXCI+XG4gIDxmdy1pY29uICpuZ0lmPVwiaWNvblwiIFtuZ0NsYXNzXT1cImZvbnRDb2xvclwiPnt7IGljb24gfX08L2Z3LWljb24+XG48L2Rpdj5cbjxwIGNsYXNzPVwidmlzaW9uLXAzXCIgKm5nSWY9XCJ0aXRsZVwiPnt7IHRpdGxlIH19PC9wPlxuIl19
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { FwIconModule } from '../icon/icon.module';
|
|
4
|
+
import { FwAppIconComponent } from './app-icon.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class FwAppIconModule {
|
|
7
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, declarations: [FwAppIconComponent], imports: [CommonModule,
|
|
9
|
+
FwIconModule], exports: [FwAppIconComponent] }); }
|
|
10
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, imports: [CommonModule,
|
|
11
|
+
FwIconModule] }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, decorators: [{
|
|
14
|
+
type: NgModule,
|
|
15
|
+
args: [{
|
|
16
|
+
imports: [
|
|
17
|
+
CommonModule,
|
|
18
|
+
FwIconModule,
|
|
19
|
+
],
|
|
20
|
+
exports: [
|
|
21
|
+
FwAppIconComponent,
|
|
22
|
+
],
|
|
23
|
+
declarations: [
|
|
24
|
+
FwAppIconComponent,
|
|
25
|
+
],
|
|
26
|
+
}]
|
|
27
|
+
}] });
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWljb24ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXBwLWljb24vYXBwLWljb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFjMUQsTUFBTSxPQUFPLGVBQWU7K0dBQWYsZUFBZTtnSEFBZixlQUFlLGlCQUh4QixrQkFBa0IsYUFQbEIsWUFBWTtZQUNaLFlBQVksYUFHWixrQkFBa0I7Z0hBTVQsZUFBZSxZQVZ4QixZQUFZO1lBQ1osWUFBWTs7NEZBU0gsZUFBZTtrQkFaM0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixZQUFZO3FCQUNiO29CQUNELE9BQU8sRUFBRTt3QkFDUCxrQkFBa0I7cUJBQ25CO29CQUNELFlBQVksRUFBRTt3QkFDWixrQkFBa0I7cUJBQ25CO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZ3SWNvbk1vZHVsZSB9IGZyb20gJy4uL2ljb24vaWNvbi5tb2R1bGUnO1xuaW1wb3J0IHsgRndBcHBJY29uQ29tcG9uZW50IH0gZnJvbSAnLi9hcHAtaWNvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEZ3SWNvbk1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEZ3QXBwSWNvbkNvbXBvbmVudCxcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRndBcHBJY29uQ29tcG9uZW50LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBGd0FwcEljb25Nb2R1bGUge1xufVxuIl19
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { Component, computed, HostBinding, Input, input } from '@angular/core';
|
|
2
|
+
import { pickColorViaHash } from '../../color.utils';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "../icon/icon.component";
|
|
6
|
+
const namedColorMap = {
|
|
7
|
+
primary: 'var(--primary-base)',
|
|
8
|
+
secondary: 'var(--secondary-base)',
|
|
9
|
+
red: 'var(--red-base)',
|
|
10
|
+
'light-slate': 'var(--slate-light)',
|
|
11
|
+
slate: 'var(--slate-base)',
|
|
12
|
+
warning: 'var(--orange-base)',
|
|
13
|
+
success: 'var(--green-base)',
|
|
14
|
+
};
|
|
15
|
+
export class FwAvatarComponent {
|
|
16
|
+
constructor() {
|
|
17
|
+
this.color = 'primary';
|
|
18
|
+
this.variant = 'circular';
|
|
19
|
+
this.content = 'icon';
|
|
20
|
+
this.size = 'small';
|
|
21
|
+
this.initial = '';
|
|
22
|
+
this.imageUrl = '';
|
|
23
|
+
this.imageAltText = '';
|
|
24
|
+
this.icon = 'user';
|
|
25
|
+
this.colorSeed = input();
|
|
26
|
+
this.hasedColor = computed(() => pickColorViaHash(this.colorSeed()));
|
|
27
|
+
this.colorToDisplay = computed(() => this.colorSeed() ? this.hasedColor() : namedColorMap[this.color]);
|
|
28
|
+
this.isImageBroken = false;
|
|
29
|
+
}
|
|
30
|
+
get classes() {
|
|
31
|
+
return [this.size, this.variant, this.content].filter(Boolean).join(' ');
|
|
32
|
+
}
|
|
33
|
+
;
|
|
34
|
+
loadImage() {
|
|
35
|
+
this.isImageBroken = false;
|
|
36
|
+
}
|
|
37
|
+
errorImage() {
|
|
38
|
+
this.isImageBroken = true;
|
|
39
|
+
}
|
|
40
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
41
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.3.12", type: FwAvatarComponent, selector: "fw-avatar", inputs: { color: { classPropertyName: "color", publicName: "color", isSignal: false, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: false, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: false, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: false, isRequired: false, transformFunction: null }, initial: { classPropertyName: "initial", publicName: "initial", isSignal: false, isRequired: false, transformFunction: null }, imageUrl: { classPropertyName: "imageUrl", publicName: "imageUrl", isSignal: false, isRequired: false, transformFunction: null }, imageAltText: { classPropertyName: "imageAltText", publicName: "imageAltText", isSignal: false, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: false, isRequired: false, transformFunction: null }, colorSeed: { classPropertyName: "colorSeed", publicName: "colorSeed", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.class": "this.classes" } }, ngImport: i0, template: "<ng-container [ngSwitch]=\"content\">\n <div [style.backgroundColor]=\"colorToDisplay()\" *ngSwitchCase=\"'image'\" class=\"avatar\">\n <img\n *ngIf=\"!isImageBroken else displayInitial\"\n [src]=\"imageUrl\"\n [alt]=\"imageAltText\"\n (load)=\"loadImage()\"\n (error)=\"errorImage()\">\n </div>\n <div *ngSwitchCase=\"'icon'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayIcon\"></ng-container>\n </div>\n <div *ngSwitchCase=\"'initial'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayInitial\"></ng-container>\n </div>\n</ng-container>\n<ng-template #displayInitial>\n <span class=\"initial\" *ngIf=\"initial else displayIcon\">{{ initial }}</span>\n</ng-template>\n<ng-template #displayIcon>\n <fw-icon>{{ icon }}</fw-icon>\n</ng-template>\n", styles: [":host{display:block}:host .avatar{display:flex;flex-direction:row;justify-content:center;align-items:center;width:inherit;height:inherit;border-radius:inherit;font-size:inherit}:host .avatar fw-icon{color:var(--typography-contrast);font-size:inherit}:host .avatar img{width:100%;height:100%;object-fit:cover;border-radius:inherit}:host .avatar .initial{font-family:Inter,sans-serif;font-style:normal;font-weight:500;color:var(--typography-contrast);font-size:inherit}:host.small{width:16px;height:16px;font-size:8px}:host.small .avatar fw-icon{font-size:12px}:host.medium{width:32px;height:32px;font-size:14px}:host.medium .avatar fw-icon{font-size:24px}:host.large{width:48px;height:48px;font-size:22px}:host.large .avatar fw-icon{font-size:32px}:host.x-large{width:96px;height:96px;font-size:36px}:host.x-large .avatar fw-icon{font-size:64px}:host.rounded.small{border-radius:4px}:host.rounded.medium{border-radius:8px}:host.rounded.large{border-radius:12px}:host.rounded.x-large{border-radius:16px}:host.circular{border-radius:64px}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }] }); }
|
|
42
|
+
}
|
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAvatarComponent, decorators: [{
|
|
44
|
+
type: Component,
|
|
45
|
+
args: [{ selector: 'fw-avatar', template: "<ng-container [ngSwitch]=\"content\">\n <div [style.backgroundColor]=\"colorToDisplay()\" *ngSwitchCase=\"'image'\" class=\"avatar\">\n <img\n *ngIf=\"!isImageBroken else displayInitial\"\n [src]=\"imageUrl\"\n [alt]=\"imageAltText\"\n (load)=\"loadImage()\"\n (error)=\"errorImage()\">\n </div>\n <div *ngSwitchCase=\"'icon'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayIcon\"></ng-container>\n </div>\n <div *ngSwitchCase=\"'initial'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayInitial\"></ng-container>\n </div>\n</ng-container>\n<ng-template #displayInitial>\n <span class=\"initial\" *ngIf=\"initial else displayIcon\">{{ initial }}</span>\n</ng-template>\n<ng-template #displayIcon>\n <fw-icon>{{ icon }}</fw-icon>\n</ng-template>\n", styles: [":host{display:block}:host .avatar{display:flex;flex-direction:row;justify-content:center;align-items:center;width:inherit;height:inherit;border-radius:inherit;font-size:inherit}:host .avatar fw-icon{color:var(--typography-contrast);font-size:inherit}:host .avatar img{width:100%;height:100%;object-fit:cover;border-radius:inherit}:host .avatar .initial{font-family:Inter,sans-serif;font-style:normal;font-weight:500;color:var(--typography-contrast);font-size:inherit}:host.small{width:16px;height:16px;font-size:8px}:host.small .avatar fw-icon{font-size:12px}:host.medium{width:32px;height:32px;font-size:14px}:host.medium .avatar fw-icon{font-size:24px}:host.large{width:48px;height:48px;font-size:22px}:host.large .avatar fw-icon{font-size:32px}:host.x-large{width:96px;height:96px;font-size:36px}:host.x-large .avatar fw-icon{font-size:64px}:host.rounded.small{border-radius:4px}:host.rounded.medium{border-radius:8px}:host.rounded.large{border-radius:12px}:host.rounded.x-large{border-radius:16px}:host.circular{border-radius:64px}\n"] }]
|
|
46
|
+
}], propDecorators: { classes: [{
|
|
47
|
+
type: HostBinding,
|
|
48
|
+
args: ['attr.class']
|
|
49
|
+
}], color: [{
|
|
50
|
+
type: Input
|
|
51
|
+
}], variant: [{
|
|
52
|
+
type: Input
|
|
53
|
+
}], content: [{
|
|
54
|
+
type: Input
|
|
55
|
+
}], size: [{
|
|
56
|
+
type: Input
|
|
57
|
+
}], initial: [{
|
|
58
|
+
type: Input
|
|
59
|
+
}], imageUrl: [{
|
|
60
|
+
type: Input
|
|
61
|
+
}], imageAltText: [{
|
|
62
|
+
type: Input
|
|
63
|
+
}], icon: [{
|
|
64
|
+
type: Input
|
|
65
|
+
}] } });
|
|
66
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2F2YXRhci9hdmF0YXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXZhdGFyL2F2YXRhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBQyxXQUFXLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUU5RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7OztBQUtyRCxNQUFNLGFBQWEsR0FBeUM7SUFDMUQsT0FBTyxFQUFFLHFCQUFxQjtJQUM5QixTQUFTLEVBQUUsdUJBQXVCO0lBQ2xDLEdBQUcsRUFBRSxpQkFBaUI7SUFDdEIsYUFBYSxFQUFFLG9CQUFvQjtJQUNuQyxLQUFLLEVBQUUsbUJBQW1CO0lBQzFCLE9BQU8sRUFBRSxvQkFBb0I7SUFDN0IsT0FBTyxFQUFFLG1CQUFtQjtDQUM3QixDQUFBO0FBTUQsTUFBTSxPQUFPLGlCQUFpQjtJQUw5QjtRQVVXLFVBQUssR0FBdUIsU0FBUyxDQUFDO1FBQ3RDLFlBQU8sR0FBdUMsVUFBVSxDQUFDO1FBQ3pELFlBQU8sR0FBa0MsTUFBTSxDQUFDO1FBQ2hELFNBQUksR0FBOEMsT0FBTyxDQUFDO1FBQzFELFlBQU8sR0FBWSxFQUFFLENBQUM7UUFDdEIsYUFBUSxHQUFZLEVBQUUsQ0FBQztRQUN2QixpQkFBWSxHQUFZLEVBQUUsQ0FBQztRQUMzQixTQUFJLEdBQWMsTUFBTSxDQUFDO1FBQ2xDLGNBQVMsR0FBRyxLQUFLLEVBQVUsQ0FBQztRQUU1QixlQUFVLEdBQUcsUUFBUSxDQUFDLEdBQUcsRUFBRSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFFaEUsbUJBQWMsR0FBRyxRQUFRLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztRQUVsRyxrQkFBYSxHQUFZLEtBQUssQ0FBQztLQVNoQztJQTNCQyxJQUErQixPQUFPO1FBQ3BDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDM0UsQ0FBQztJQUFBLENBQUM7SUFrQkYsU0FBUztRQUNQLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDO0lBQzdCLENBQUM7SUFFRCxVQUFVO1FBQ1IsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7SUFDNUIsQ0FBQzsrR0EzQlUsaUJBQWlCO21HQUFqQixpQkFBaUIsMnVDQ3JCOUIsNjRCQXNCQTs7NEZERGEsaUJBQWlCO2tCQUw3QixTQUFTOytCQUNFLFdBQVc7OEJBS1UsT0FBTztzQkFBckMsV0FBVzt1QkFBQyxZQUFZO2dCQUloQixLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csWUFBWTtzQkFBcEIsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGNvbXB1dGVkLEhvc3RCaW5kaW5nLCBJbnB1dCwgaW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgcGlja0NvbG9yVmlhSGFzaCB9IGZyb20gJy4uLy4uL2NvbG9yLnV0aWxzJztcbmltcG9ydCB7IEljb25UeXBlIH0gZnJvbSAnLi4vaWNvbi9pY29uLnR5cGVzJztcblxudHlwZSBBdmF0YXJDb2xvck9wdGlvbiA9ICdwcmltYXJ5JyB8ICdzZWNvbmRhcnknIHwgJ3JlZCcgfCAnbGlnaHQtc2xhdGUnIHwgJ3NsYXRlJyB8ICd3YXJuaW5nJyB8ICdzdWNjZXNzJztcblxuY29uc3QgbmFtZWRDb2xvck1hcDogeyBbSyBpbiBBdmF0YXJDb2xvck9wdGlvbl06IHN0cmluZyB9ID0ge1xuICBwcmltYXJ5OiAndmFyKC0tcHJpbWFyeS1iYXNlKScsXG4gIHNlY29uZGFyeTogJ3ZhcigtLXNlY29uZGFyeS1iYXNlKScsXG4gIHJlZDogJ3ZhcigtLXJlZC1iYXNlKScsXG4gICdsaWdodC1zbGF0ZSc6ICd2YXIoLS1zbGF0ZS1saWdodCknLFxuICBzbGF0ZTogJ3ZhcigtLXNsYXRlLWJhc2UpJyxcbiAgd2FybmluZzogJ3ZhcigtLW9yYW5nZS1iYXNlKScsXG4gIHN1Y2Nlc3M6ICd2YXIoLS1ncmVlbi1iYXNlKScsXG59XG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmdy1hdmF0YXInLFxuICBzdHlsZVVybHM6IFsnLi9hdmF0YXIuY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2F2YXRhci5jb21wb25lbnQuaHRtbCcsXG59KVxuZXhwb3J0IGNsYXNzIEZ3QXZhdGFyQ29tcG9uZW50IHtcbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmNsYXNzJykgZ2V0IGNsYXNzZXMoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gW3RoaXMuc2l6ZSwgdGhpcy52YXJpYW50LCB0aGlzLmNvbnRlbnRdLmZpbHRlcihCb29sZWFuKS5qb2luKCcgJyk7XG4gIH07XG5cbiAgQElucHV0KCkgY29sb3I/OiBBdmF0YXJDb2xvck9wdGlvbiA9ICdwcmltYXJ5JztcbiAgQElucHV0KCkgdmFyaWFudD86ICdjaXJjdWxhcicgfCAncm91bmRlZCcgfCAnc3F1YXJlJyA9ICdjaXJjdWxhcic7XG4gIEBJbnB1dCgpIGNvbnRlbnQ/OiAnaW1hZ2UnIHwgJ2ljb24nIHwgJ2luaXRpYWwnID0gJ2ljb24nO1xuICBASW5wdXQoKSBzaXplPzogJ3NtYWxsJyB8ICdtZWRpdW0nIHwgJ2xhcmdlJyB8ICd4LWxhcmdlJyA9ICdzbWFsbCc7XG4gIEBJbnB1dCgpIGluaXRpYWw/OiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgaW1hZ2VVcmw/OiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgaW1hZ2VBbHRUZXh0Pzogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIGljb24/OiBJY29uVHlwZSA9ICd1c2VyJztcbiAgY29sb3JTZWVkID0gaW5wdXQ8c3RyaW5nPigpO1xuXG4gIGhhc2VkQ29sb3IgPSBjb21wdXRlZCgoKSA9PiBwaWNrQ29sb3JWaWFIYXNoKHRoaXMuY29sb3JTZWVkKCkpKTtcblxuICBjb2xvclRvRGlzcGxheSA9IGNvbXB1dGVkKCgpID0+IHRoaXMuY29sb3JTZWVkKCkgPyB0aGlzLmhhc2VkQ29sb3IoKSA6IG5hbWVkQ29sb3JNYXBbdGhpcy5jb2xvcl0pO1xuXG4gIGlzSW1hZ2VCcm9rZW46IGJvb2xlYW4gPSBmYWxzZTtcblxuICBsb2FkSW1hZ2UoKTogdm9pZCB7XG4gICAgdGhpcy5pc0ltYWdlQnJva2VuID0gZmFsc2U7XG4gIH1cblxuICBlcnJvckltYWdlKCk6IHZvaWQge1xuICAgIHRoaXMuaXNJbWFnZUJyb2tlbiA9IHRydWU7XG4gIH1cbn1cbiIsIjxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cImNvbnRlbnRcIj5cbiAgPGRpdiBbc3R5bGUuYmFja2dyb3VuZENvbG9yXT1cImNvbG9yVG9EaXNwbGF5KClcIiAqbmdTd2l0Y2hDYXNlPVwiJ2ltYWdlJ1wiIGNsYXNzPVwiYXZhdGFyXCI+XG4gICAgPGltZ1xuICAgICAgKm5nSWY9XCIhaXNJbWFnZUJyb2tlbiBlbHNlIGRpc3BsYXlJbml0aWFsXCJcbiAgICAgIFtzcmNdPVwiaW1hZ2VVcmxcIlxuICAgICAgW2FsdF09XCJpbWFnZUFsdFRleHRcIlxuICAgICAgKGxvYWQpPVwibG9hZEltYWdlKClcIlxuICAgICAgKGVycm9yKT1cImVycm9ySW1hZ2UoKVwiPlxuICA8L2Rpdj5cbiAgPGRpdiAqbmdTd2l0Y2hDYXNlPVwiJ2ljb24nXCIgW3N0eWxlLmJhY2tncm91bmRDb2xvcl09XCJjb2xvclRvRGlzcGxheSgpXCIgY2xhc3M9XCJhdmF0YXJcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiZGlzcGxheUljb25cIj48L25nLWNvbnRhaW5lcj5cbiAgPC9kaXY+XG4gIDxkaXYgKm5nU3dpdGNoQ2FzZT1cIidpbml0aWFsJ1wiIFtzdHlsZS5iYWNrZ3JvdW5kQ29sb3JdPVwiY29sb3JUb0Rpc3BsYXkoKVwiIGNsYXNzPVwiYXZhdGFyXCI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImRpc3BsYXlJbml0aWFsXCI+PC9uZy1jb250YWluZXI+XG4gIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG48bmctdGVtcGxhdGUgI2Rpc3BsYXlJbml0aWFsPlxuICA8c3BhbiBjbGFzcz1cImluaXRpYWxcIiAqbmdJZj1cImluaXRpYWwgZWxzZSBkaXNwbGF5SWNvblwiPnt7IGluaXRpYWwgfX08L3NwYW4+XG48L25nLXRlbXBsYXRlPlxuPG5nLXRlbXBsYXRlICNkaXNwbGF5SWNvbj5cbiAgPGZ3LWljb24+e3sgaWNvbiB9fTwvZnctaWNvbj5cbjwvbmctdGVtcGxhdGU+XG4iXX0=
|