@flywheel-io/vision 1.17.0 → 2.0.0-beta-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +56 -0
- package/.eslintrc.json +312 -0
- package/.gitattributes +2 -0
- package/.gitlab-ci.yml +157 -0
- package/.nvmrc +1 -0
- package/.storybook/main.js +23 -0
- package/.storybook/manager-head.html +2 -0
- package/.storybook/manager.js +7 -0
- package/.storybook/preview.js +44 -0
- package/.storybook/public/images/core.svg +22 -0
- package/.storybook/public/images/discovery.svg +22 -0
- package/.storybook/public/images/exchange.svg +28 -0
- package/.storybook/public/images/favicon.png +0 -0
- package/.storybook/public/images/grid.png +0 -0
- package/.storybook/public/images/logo.png +0 -0
- package/.storybook/theme.js +9 -0
- package/.storybook/tsconfig.json +20 -0
- package/.storybook/typings.d.ts +4 -0
- package/.stylelintignore +2 -0
- package/.stylelintrc.json +44 -0
- package/.vscode/extensions.json +18 -0
- package/.vscode/settings.json +7 -0
- package/CONTRIBUTING.md +51 -0
- package/angular.json +79 -0
- package/build.js +66 -0
- package/elements/elements.html +0 -0
- package/flywheel-io-vision-2.0.0-beta-1.tgz +0 -0
- package/install-into-frontend.sh +13 -0
- package/karma.conf.js +50 -0
- package/ng-package.json +26 -0
- package/package.json +79 -23
- package/src/assets/.gitkeep +0 -0
- package/src/assets/brand/core.svg +22 -0
- package/src/assets/brand/discovery.svg +22 -0
- package/src/assets/brand/exchange.svg +28 -0
- package/src/assets/brand/fw-logo-mark-dark-bg.svg +4 -0
- package/src/assets/img/avatar.png +0 -0
- package/src/assets/updating-icons.md +71 -0
- package/src/components/alert/alert.component.html +19 -0
- package/src/components/alert/alert.component.scss +150 -0
- package/src/components/alert/alert.component.spec.ts +22 -0
- package/src/components/alert/alert.component.ts +19 -0
- package/src/components/alert/alert.mdx +16 -0
- package/src/components/alert/alert.module.ts +22 -0
- package/src/components/alert/alert.stories.ts +144 -0
- package/src/components/app-icon/app-icon.component.html +10 -0
- package/src/components/app-icon/app-icon.component.scss +348 -0
- package/src/components/app-icon/app-icon.component.spec.ts +22 -0
- package/src/components/app-icon/app-icon.component.ts +27 -0
- package/src/components/app-icon/app-icon.mdx +16 -0
- package/src/components/app-icon/app-icon.module.ts +20 -0
- package/src/components/app-icon/app-icon.stories.ts +200 -0
- package/src/components/avatar/avatar.component.html +22 -0
- package/src/components/avatar/avatar.component.scss +124 -0
- package/src/components/avatar/avatar.component.spec.ts +26 -0
- package/src/components/avatar/avatar.component.ts +33 -0
- package/src/components/avatar/avatar.mdx +16 -0
- package/src/components/avatar/avatar.module.ts +20 -0
- package/src/components/avatar/avatar.stories.ts +181 -0
- package/src/components/badge/badge.component.html +4 -0
- package/src/components/badge/badge.component.scss +98 -0
- package/src/components/badge/badge.component.spec.ts +26 -0
- package/src/components/badge/badge.component.ts +30 -0
- package/src/components/badge/badge.mdx +33 -0
- package/src/components/badge/badge.module.ts +18 -0
- package/src/components/badge/badge.stories.ts +131 -0
- package/src/components/breadcrumbs/breadcrumbs.component.scss +5 -0
- package/src/components/breadcrumbs/breadcrumbs.component.spec.ts +22 -0
- package/src/components/breadcrumbs/breadcrumbs.component.stories.ts +81 -0
- package/src/components/breadcrumbs/breadcrumbs.component.ts +20 -0
- package/src/components/breadcrumbs/breadcrumbs.mdx +53 -0
- package/src/components/breadcrumbs/breadcrumbs.module.ts +23 -0
- package/src/components/breadcrumbs/crumb.component.html +5 -0
- package/src/components/breadcrumbs/crumb.component.scss +23 -0
- package/src/components/breadcrumbs/crumb.component.stories.ts +53 -0
- package/src/components/breadcrumbs/crumb.component.ts +23 -0
- package/src/components/button/button.component.html +7 -0
- package/src/components/button/button.component.scss +129 -0
- package/src/components/button/button.component.spec.ts +26 -0
- package/src/components/button/button.component.ts +40 -0
- package/src/components/button/button.directives.ts +93 -0
- package/src/components/button/button.mdx +16 -0
- package/src/components/button/button.module.ts +39 -0
- package/src/components/button/button.stories.ts +165 -0
- package/src/components/button/story.css +0 -0
- package/src/components/button-group/button-group.component.scss +94 -0
- package/src/components/button-group/button-group.component.ts +138 -0
- package/src/components/button-group/button-group.mdx +23 -0
- package/src/components/button-group/button-group.module.ts +22 -0
- package/src/components/button-group/button-group.stories.ts +145 -0
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.html +10 -0
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.spec.ts +25 -0
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.ts +36 -0
- package/src/components/button-toggle/button-toggle.component.scss +94 -0
- package/src/components/button-toggle/button-toggle.component.ts +139 -0
- package/src/components/button-toggle/button-toggle.mdx +23 -0
- package/src/components/button-toggle/button-toggle.module.ts +23 -0
- package/src/components/button-toggle/button-toggle.stories.ts +204 -0
- package/src/components/card/card-attribute/card-attribute.component.html +3 -0
- package/src/components/card/card-attribute/card-attribute.component.scss +19 -0
- package/src/components/card/card-attribute/card-attribute.component.spec.ts +22 -0
- package/src/components/card/card-attribute/card-attribute.component.ts +13 -0
- package/src/components/card/card-author/card-author.component.html +5 -0
- package/src/components/card/card-author/card-author.component.scss +21 -0
- package/src/components/card/card-author/card-author.component.spec.ts +22 -0
- package/src/components/card/card-author/card-author.component.ts +11 -0
- package/src/components/card/card-author/card-author.stories.ts +55 -0
- package/src/components/card/card-content/card-content.component.scss +26 -0
- package/src/components/card/card-content/card-content.component.spec.ts +22 -0
- package/src/components/card/card-content/card-content.component.ts +11 -0
- package/src/components/card/card-content/card-content.stories.ts +55 -0
- package/src/components/card/card-footer/card-footer.component.spec.ts +22 -0
- package/src/components/card/card-footer/card-footer.component.ts +24 -0
- package/src/components/card/card-footer/card-footer.stories.ts +72 -0
- package/src/components/card/card-header/card-header.component.html +9 -0
- package/src/components/card/card-header/card-header.component.scss +41 -0
- package/src/components/card/card-header/card-header.component.spec.ts +22 -0
- package/src/components/card/card-header/card-header.component.ts +15 -0
- package/src/components/card/card-header/card-header.stories.ts +58 -0
- package/src/components/card/card.component.html +12 -0
- package/src/components/card/card.component.scss +40 -0
- package/src/components/card/card.component.spec.ts +34 -0
- package/src/components/card/card.component.ts +16 -0
- package/src/components/card/card.mdx +128 -0
- package/src/components/card/card.module.ts +37 -0
- package/src/components/card/card.stories.ts +240 -0
- package/src/components/changelog.mdx +375 -0
- package/src/components/checkbox/checkbox.component.html +16 -0
- package/src/components/checkbox/checkbox.component.scss +189 -0
- package/src/components/checkbox/checkbox.component.ts +68 -0
- package/src/components/checkbox/checkbox.module.ts +21 -0
- package/src/components/checkbox/checkbox.stories.ts +224 -0
- package/src/components/chip/chip.component.html +13 -0
- package/src/components/chip/chip.component.scss +352 -0
- package/src/components/chip/chip.component.spec.ts +22 -0
- package/src/components/chip/chip.component.ts +32 -0
- package/src/components/chip/chip.mdx +16 -0
- package/src/components/chip/chip.module.ts +22 -0
- package/src/components/chip/chip.stories.ts +222 -0
- package/src/components/color-palette/color-palette.component.html +10 -0
- package/src/components/color-palette/color-palette.component.scss +15 -0
- package/src/components/color-palette/color-palette.component.ts +73 -0
- package/src/components/color-palette/color-palette.module.ts +22 -0
- package/src/components/color-palette/color-palette.stories.ts +35 -0
- package/src/components/color-palette/colors.mdx +47 -0
- package/src/components/color-palette/swatch/swatch.component.html +3 -0
- package/src/components/color-palette/swatch/swatch.component.scss +21 -0
- package/src/components/color-palette/swatch/swatch.component.ts +28 -0
- package/src/components/contained-input/contained-input.component.html +15 -0
- package/src/components/contained-input/contained-input.component.scss +88 -0
- package/src/components/contained-input/contained-input.component.spec.ts +34 -0
- package/src/components/contained-input/contained-input.component.ts +65 -0
- package/src/components/contained-input/contained-input.mdx +16 -0
- package/src/components/contained-input/contained-input.module.ts +26 -0
- package/src/components/contained-input/contained-input.stories.ts +155 -0
- package/src/components/date-input/date-input.component.html +28 -0
- package/src/components/date-input/date-input.component.scss +192 -0
- package/src/components/date-input/date-input.component.spec.ts +26 -0
- package/src/components/date-input/date-input.component.ts +126 -0
- package/src/components/date-input/date-input.mdx +23 -0
- package/src/components/date-input/date-input.module.ts +23 -0
- package/src/components/date-input/date-input.stories.ts +96 -0
- package/src/components/dialog/dialog-actions.component.ts +22 -0
- package/src/components/dialog/dialog-confirm.component.html +37 -0
- package/src/components/dialog/dialog-confirm.component.scss +49 -0
- package/src/components/dialog/dialog-confirm.component.ts +35 -0
- package/src/components/dialog/dialog-confirm.stories.ts +47 -0
- package/src/components/dialog/dialog-content.component.ts +28 -0
- package/src/components/dialog/dialog-header.component.ts +25 -0
- package/src/components/dialog/dialog-simple.component.html +27 -0
- package/src/components/dialog/dialog-simple.component.scss +13 -0
- package/src/components/dialog/dialog-simple.component.ts +36 -0
- package/src/components/dialog/dialog-simple.stories.ts +78 -0
- package/src/components/dialog/dialog.component.html +20 -0
- package/src/components/dialog/dialog.component.scss +91 -0
- package/src/components/dialog/dialog.component.ts +39 -0
- package/src/components/dialog/dialog.mdx +252 -0
- package/src/components/dialog/dialog.service.ts +34 -0
- package/src/components/dialog/dialog.stories.ts +169 -0
- package/src/components/dialog/dialogs.module.ts +47 -0
- package/src/components/form-heading/form-heading.component.html +15 -0
- package/src/components/form-heading/form-heading.component.scss +55 -0
- package/src/components/form-heading/form-heading.component.spec.ts +28 -0
- package/src/components/form-heading/form-heading.component.ts +17 -0
- package/src/components/form-heading/form-heading.mdx +16 -0
- package/src/components/form-heading/form-heading.module.ts +22 -0
- package/src/components/form-heading/form-heading.stories.ts +168 -0
- package/src/components/forms/validators.ts +97 -0
- package/src/components/getting-started.mdx +92 -0
- package/src/components/ghost/ghost.stories.ts +76 -0
- package/src/components/icon/README.txt +5 -0
- package/src/components/icon/icon.component.ts +52 -0
- package/src/components/icon/icon.mdx +36 -0
- package/src/components/icon/icon.module.ts +17 -0
- package/src/components/icon/icon.stories.ts +51 -0
- package/src/components/icon/icon.types.ts +318 -0
- package/src/components/icon/icons.stories.scss +63 -0
- package/src/components/icon/icons.stories.ts +95 -0
- package/src/components/icon/selection.json +1 -0
- package/src/components/icon-button/icon-button.component.html +6 -0
- package/src/components/icon-button/icon-button.component.scss +231 -0
- package/src/components/icon-button/icon-button.component.spec.ts +28 -0
- package/src/components/icon-button/icon-button.component.ts +32 -0
- package/src/components/icon-button/icon-button.mdx +16 -0
- package/src/components/icon-button/icon-button.module.ts +20 -0
- package/src/components/icon-button/icon-button.stories.ts +257 -0
- package/src/components/json/json.component.ts +15 -0
- package/src/components/layouts/context/context.component.html +6 -0
- package/src/components/layouts/context/context.component.scss +71 -0
- package/src/components/layouts/context/context.component.spec.ts +22 -0
- package/src/components/layouts/context/context.component.stories.ts +63 -0
- package/src/components/layouts/context/context.component.ts +32 -0
- package/src/components/layouts/context/context.mdx +15 -0
- package/src/components/layouts/grid/grid.component.scss +281 -0
- package/src/components/layouts/grid/grid.component.spec.ts +22 -0
- package/src/components/layouts/grid/grid.component.stories.ts +183 -0
- package/src/components/layouts/grid/grid.component.ts +43 -0
- package/src/components/layouts/grid/grid.mdx +27 -0
- package/src/components/layouts/layout-group.component.scss +38 -0
- package/src/components/layouts/layout-group.component.spec.ts +22 -0
- package/src/components/layouts/layout-group.component.stories.ts +105 -0
- package/src/components/layouts/layout-group.component.ts +24 -0
- package/src/components/layouts/layout-group.mdx +22 -0
- package/src/components/layouts/layouts.mdx +63 -0
- package/src/components/layouts/layouts.module.ts +37 -0
- package/src/components/layouts/panel/panel.component.html +9 -0
- package/src/components/layouts/panel/panel.component.scss +110 -0
- package/src/components/layouts/panel/panel.component.spec.ts +22 -0
- package/src/components/layouts/panel/panel.component.stories.ts +249 -0
- package/src/components/layouts/panel/panel.component.ts +16 -0
- package/src/components/layouts/panel/panel.mdx +28 -0
- package/src/components/layouts/sidebar/sidebar.component.html +14 -0
- package/src/components/layouts/sidebar/sidebar.component.scss +87 -0
- package/src/components/layouts/sidebar/sidebar.component.spec.ts +22 -0
- package/src/components/layouts/sidebar/sidebar.component.stories.ts +243 -0
- package/src/components/layouts/sidebar/sidebar.component.ts +14 -0
- package/src/components/layouts/sidebar/sidebar.mdx +18 -0
- package/src/components/layouts/toolbar/toolbar.component.scss +11 -0
- package/src/components/layouts/toolbar/toolbar.component.spec.ts +22 -0
- package/src/components/layouts/toolbar/toolbar.component.stories.ts +59 -0
- package/src/components/layouts/toolbar/toolbar.component.ts +15 -0
- package/src/components/layouts/toolbar/toolbar.mdx +16 -0
- package/src/components/menu/menu-close-triggers.directive.ts +27 -0
- package/src/components/menu/menu-container/menu-container.component.html +9 -0
- package/src/components/menu/menu-container/menu-container.component.scss +41 -0
- package/src/components/menu/menu-container/menu-container.component.spec.ts +22 -0
- package/src/components/menu/menu-container/menu-container.component.ts +76 -0
- package/src/components/menu/menu-container/menu-container.stories.ts +105 -0
- package/src/components/menu/menu-header/menu-header.component.html +5 -0
- package/src/components/menu/menu-header/menu-header.component.scss +20 -0
- package/src/components/menu/menu-header/menu-header.component.spec.ts +22 -0
- package/src/components/menu/menu-header/menu-header.component.ts +10 -0
- package/src/components/menu/menu-item/menu-item.component.html +42 -0
- package/src/components/menu/menu-item/menu-item.component.scss +282 -0
- package/src/components/menu/menu-item/menu-item.component.ts +108 -0
- package/src/components/menu/menu-item/menu-item.stories.ts +106 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.html +9 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.scss +33 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.spec.ts +23 -0
- package/src/components/menu/menu-item-group/menu-item-group.component.ts +16 -0
- package/src/components/menu/menu-item-group/menu-item-group.stories.ts +83 -0
- package/src/components/menu/menu-separator/menu-separator.component.scss +6 -0
- package/src/components/menu/menu-separator/menu-separator.component.spec.ts +22 -0
- package/src/components/menu/menu-separator/menu-separator.component.ts +9 -0
- package/src/components/menu/menu-sub-item/menu-sub-item.component.html +18 -0
- package/src/components/menu/menu-sub-item/menu-sub-item.component.scss +244 -0
- package/src/components/menu/menu-sub-item/menu-sub-item.component.ts +70 -0
- package/src/components/menu/menu.component.html +6 -0
- package/src/components/menu/menu.component.scss +5 -0
- package/src/components/menu/menu.component.ts +196 -0
- package/src/components/menu/menu.mdx +118 -0
- package/src/components/menu/menu.module.ts +57 -0
- package/src/components/menu/menu.stories.ts +230 -0
- package/src/components/navbar/navbar-header/navbar-header.component.html +5 -0
- package/src/components/navbar/navbar-header/navbar-header.component.scss +20 -0
- package/src/components/navbar/navbar-header/navbar-header.component.ts +10 -0
- package/src/components/navbar/navbar-item/navbar-item.component.html +35 -0
- package/src/components/navbar/navbar-item/navbar-item.component.scss +142 -0
- package/src/components/navbar/navbar-item/navbar-item.component.ts +73 -0
- package/src/components/navbar/navbar-item/navbar-item.stories.ts +82 -0
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.html +22 -0
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.scss +152 -0
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.ts +40 -0
- package/src/components/navbar/navbar.component.html +5 -0
- package/src/components/navbar/navbar.component.scss +16 -0
- package/src/components/navbar/navbar.component.ts +63 -0
- package/src/components/navbar/navbar.mdx +20 -0
- package/src/components/navbar/navbar.module.ts +41 -0
- package/src/components/navbar/navbar.stories.ts +201 -0
- package/src/components/number-input/number-input.component.html +39 -0
- package/src/components/number-input/number-input.component.scss +185 -0
- package/src/components/number-input/number-input.component.spec.ts +26 -0
- package/src/components/number-input/number-input.component.ts +96 -0
- package/src/components/number-input/number-input.mdx +25 -0
- package/src/components/number-input/number-input.module.ts +23 -0
- package/src/components/number-input/number-input.stories.ts +87 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.html +45 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.scss +217 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.spec.ts +32 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.ts +107 -0
- package/src/components/paginator/paginator-advanced/paginator-advanced.stories.ts +69 -0
- package/src/components/paginator/paginator.component.html +32 -0
- package/src/components/paginator/paginator.component.scss +212 -0
- package/src/components/paginator/paginator.component.spec.ts +24 -0
- package/src/components/paginator/paginator.component.ts +115 -0
- package/src/components/paginator/paginator.mdx +55 -0
- package/src/components/paginator/paginator.model.ts +8 -0
- package/src/components/paginator/paginator.module.ts +31 -0
- package/src/components/paginator/paginator.stories.ts +142 -0
- package/src/components/phone-input/country-code.data.ts +495 -0
- package/src/components/phone-input/images/arrow_drop_down_grey600_18dp.png +0 -0
- package/src/components/phone-input/images/flags_sprite_2x.png +0 -0
- package/src/components/phone-input/phone-input.component.html +68 -0
- package/src/components/phone-input/phone-input.component.scss +467 -0
- package/src/components/phone-input/phone-input.component.spec.ts +33 -0
- package/src/components/phone-input/phone-input.component.ts +318 -0
- package/src/components/phone-input/phone-input.mdx +49 -0
- package/src/components/phone-input/phone-input.model.ts +11 -0
- package/src/components/phone-input/phone-input.module.ts +29 -0
- package/src/components/phone-input/phone-input.stories.ts +201 -0
- package/src/components/popover/popover-panel/popover-panel.component.html +4 -0
- package/src/components/popover/popover-panel/popover-panel.component.scss +220 -0
- package/src/components/popover/popover-panel/popover-panel.component.spec.ts +22 -0
- package/src/components/popover/popover-panel/popover-panel.component.ts +22 -0
- package/src/components/popover/popover-panel/popover-panel.stories.ts +162 -0
- package/src/components/popover/popover.component.html +13 -0
- package/src/components/popover/popover.component.spec.ts +26 -0
- package/src/components/popover/popover.component.ts +77 -0
- package/src/components/popover/popover.mdx +52 -0
- package/src/components/popover/popover.module.ts +28 -0
- package/src/components/popover/popover.stories.ts +176 -0
- package/src/components/progress/bar/bar.component.html +18 -0
- package/src/components/progress/bar/bar.component.spec.ts +26 -0
- package/src/components/progress/bar/bar.component.ts +98 -0
- package/src/components/progress/bar/bar.mdx +22 -0
- package/src/components/progress/bar/bar.scss +313 -0
- package/src/components/progress/bar/bar.stories.ts +52 -0
- package/src/components/progress/progress.module.ts +21 -0
- package/src/components/progress/spinner/spinner.component.html +53 -0
- package/src/components/progress/spinner/spinner.component.scss +225 -0
- package/src/components/progress/spinner/spinner.component.spec.ts +26 -0
- package/src/components/progress/spinner/spinner.component.ts +107 -0
- package/src/components/progress/spinner/spinner.mdx +21 -0
- package/src/components/progress/spinner/spinner.stories.ts +70 -0
- package/src/components/radio/radio-group.component.ts +124 -0
- package/src/components/radio/radio-group.mdx +45 -0
- package/src/components/radio/radio-group.stories.ts +76 -0
- package/src/components/radio/radio.component.html +19 -0
- package/src/components/radio/radio.component.scss +132 -0
- package/src/components/radio/radio.component.ts +33 -0
- package/src/components/radio/radio.module.ts +24 -0
- package/src/components/radio/radio.stories.ts +168 -0
- package/src/components/section-heading/back-button/back-button.component.html +3 -0
- package/src/components/section-heading/back-button/back-button.component.scss +37 -0
- package/src/components/section-heading/back-button/back-button.component.spec.ts +27 -0
- package/src/components/section-heading/back-button/back-button.component.ts +24 -0
- package/src/components/section-heading/back-button/back-button.stories.ts +39 -0
- package/src/components/section-heading/section-heading.component.html +15 -0
- package/src/components/section-heading/section-heading.component.scss +48 -0
- package/src/components/section-heading/section-heading.component.spec.ts +28 -0
- package/src/components/section-heading/section-heading.component.ts +21 -0
- package/src/components/section-heading/section-heading.mdx +22 -0
- package/src/components/section-heading/section-heading.module.ts +28 -0
- package/src/components/section-heading/section-heading.stories.ts +141 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.html +7 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.scss +31 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.spec.ts +23 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.component.ts +17 -0
- package/src/components/section-heading/subsection-heading/subsection-heading.stories.ts +60 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.html +62 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.scss +76 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.spec.ts +83 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.ts +324 -0
- package/src/components/select-menu/multi-select-menu/multi-select-menu.stories.ts +177 -0
- package/src/components/select-menu/select-menu.component.html +39 -0
- package/src/components/select-menu/select-menu.component.scss +4 -0
- package/src/components/select-menu/select-menu.component.spec.ts +121 -0
- package/src/components/select-menu/select-menu.component.ts +317 -0
- package/src/components/select-menu/select-menu.mdx +210 -0
- package/src/components/select-menu/select-menu.module.ts +33 -0
- package/src/components/select-menu/select-menu.stories.ts +368 -0
- package/src/components/shadows/shadows.stories.ts +76 -0
- package/src/components/shared/pipes/pipes.module.ts +24 -0
- package/src/components/shared/pipes/translate.pipe.ts +40 -0
- package/src/components/shared/pipes/trusthtml.pipe.ts +14 -0
- package/src/components/shared/translation.service.ts +24 -0
- package/src/components/snackbar/snackbar/snackbar.component.html +15 -0
- package/src/components/snackbar/snackbar/snackbar.component.scss +58 -0
- package/src/components/snackbar/snackbar/snackbar.component.spec.ts +56 -0
- package/src/components/snackbar/snackbar/snackbar.component.ts +115 -0
- package/src/components/snackbar/snackbar/snackbar.stories.ts +92 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.html +18 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.scss +11 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.spec.ts +98 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.component.ts +71 -0
- package/src/components/snackbar/snackbar-container/snackbar-container.stories.ts +70 -0
- package/src/components/snackbar/snackbar-message.model.ts +13 -0
- package/src/components/snackbar/snackbar-timer.service.ts +32 -0
- package/src/components/snackbar/snackbar.mdx +90 -0
- package/src/components/snackbar/snackbar.module.ts +31 -0
- package/src/components/snackbar/snackbar.service.spec.ts +16 -0
- package/src/components/snackbar/snackbar.service.ts +36 -0
- package/src/components/stepper/step.component.html +33 -0
- package/src/components/stepper/step.component.scss +421 -0
- package/src/components/stepper/step.component.ts +92 -0
- package/src/components/stepper/step.stories.ts +73 -0
- package/src/components/stepper/stepper.component.ts +100 -0
- package/src/components/stepper/stepper.mdx +83 -0
- package/src/components/stepper/stepper.module.ts +27 -0
- package/src/components/stepper/stepper.stories.ts +233 -0
- package/src/components/switch/switch.component.html +10 -0
- package/src/components/switch/switch.component.scss +179 -0
- package/src/components/switch/switch.component.spec.ts +22 -0
- package/src/components/switch/switch.component.ts +58 -0
- package/src/components/switch/switch.mdx +39 -0
- package/src/components/switch/switch.module.ts +18 -0
- package/src/components/switch/switch.stories.ts +117 -0
- package/src/components/table/cell.ts +111 -0
- package/src/components/table/row.ts +113 -0
- package/src/components/table/table-dense.component.scss +178 -0
- package/src/components/table/table-dense.component.ts +36 -0
- package/src/components/table/table-dense.stories.ts +105 -0
- package/src/components/table/table.component.html +4 -0
- package/src/components/table/table.component.scss +186 -0
- package/src/components/table/table.component.ts +36 -0
- package/src/components/table/table.mdx +83 -0
- package/src/components/table/table.module.ts +53 -0
- package/src/components/table/table.stories.ts +198 -0
- package/src/components/tabs/tab/tab.component.html +3 -0
- package/src/components/tabs/tab/tab.component.scss +79 -0
- package/src/components/tabs/tab/tab.component.spec.ts +22 -0
- package/src/components/tabs/tab/tab.component.ts +47 -0
- package/src/components/tabs/tab/tab.stories.ts +38 -0
- package/src/components/tabs/tab-panel/tab-panel.component.html +1 -0
- package/src/components/tabs/tab-panel/tab-panel.component.scss +7 -0
- package/src/components/tabs/tab-panel/tab-panel.component.spec.ts +22 -0
- package/src/components/tabs/tab-panel/tab-panel.component.ts +11 -0
- package/src/components/tabs/tabs.component.html +2 -0
- package/src/components/tabs/tabs.component.scss +9 -0
- package/src/components/tabs/tabs.component.spec.ts +22 -0
- package/src/components/tabs/tabs.component.ts +69 -0
- package/src/components/tabs/tabs.mdx +74 -0
- package/src/components/tabs/tabs.module.ts +26 -0
- package/src/components/tabs/tabs.stories.ts +87 -0
- package/src/components/text-input/text-input.component.html +36 -0
- package/src/components/text-input/text-input.component.scss +155 -0
- package/src/components/text-input/text-input.component.spec.ts +26 -0
- package/src/components/text-input/text-input.component.ts +90 -0
- package/src/components/text-input/text-input.mdx +24 -0
- package/src/components/text-input/text-input.module.ts +23 -0
- package/src/components/text-input/text-input.stories.ts +125 -0
- package/src/components/textarea-input/textarea-input.component.html +18 -0
- package/src/components/textarea-input/textarea-input.component.scss +97 -0
- package/src/components/textarea-input/textarea-input.component.spec.ts +28 -0
- package/src/components/textarea-input/textarea-input.component.ts +73 -0
- package/src/components/textarea-input/textarea-input.mdx +43 -0
- package/src/components/textarea-input/textarea-input.module.ts +25 -0
- package/src/components/textarea-input/textarea-input.stories.ts +106 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.html +6 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.scss +109 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.ts +22 -0
- package/src/components/tooltip/tooltip-panel/tooltip-panel.stories.ts +74 -0
- package/src/components/tooltip/tooltip.component.html +16 -0
- package/src/components/tooltip/tooltip.component.scss +26 -0
- package/src/components/tooltip/tooltip.component.spec.ts +24 -0
- package/src/components/tooltip/tooltip.component.ts +30 -0
- package/src/components/tooltip/tooltip.mdx +27 -0
- package/src/components/tooltip/tooltip.module.ts +28 -0
- package/src/components/tooltip/tooltip.stories.ts +111 -0
- package/src/components/typography-sample/typography-sample.component.html +25 -0
- package/src/components/typography-sample/typography-sample.component.ts +10 -0
- package/src/components/typography-sample/typography-sample.module.ts +17 -0
- package/src/components/typography-sample/typography-sample.stories.ts +33 -0
- package/src/components/typography-sample/typography.mdx +41 -0
- package/src/components/wrapped-input/wrapped-input.component.html +10 -0
- package/src/components/wrapped-input/wrapped-input.component.scss +32 -0
- package/src/components/wrapped-input/wrapped-input.component.spec.ts +34 -0
- package/src/components/wrapped-input/wrapped-input.component.ts +18 -0
- package/src/components/wrapped-input/wrapped-input.mdx +26 -0
- package/src/components/wrapped-input/wrapped-input.module.ts +20 -0
- package/src/components/wrapped-input/wrapped-input.stories.ts +195 -0
- package/src/favicon.ico +0 -0
- package/src/global.scss +5 -0
- package/src/index.html +16 -0
- package/src/polyfills.ts +64 -0
- package/src/public-api.scss +6 -0
- package/src/public-api.ts +125 -0
- package/src/scss/atoms/scrollbar.scss +10 -0
- package/src/scss/config/colors.scss +143 -0
- package/src/scss/icons/_icon-font-face.scss +13 -0
- package/src/scss/icons/_icon-glyphs.scss +1614 -0
- package/src/scss/icons/_icon-variables.scss +319 -0
- package/src/test.ts +15 -0
- package/tsconfig.app.json +17 -0
- package/tsconfig.json +29 -0
- package/tsconfig.lib.json +21 -0
- package/tsconfig.spec.json +28 -0
- package/update-icons.js +40 -0
- package/components/alert/alert.component.d.ts +0 -14
- package/components/alert/alert.module.d.ts +0 -10
- package/components/app-icon/app-icon.component.d.ts +0 -19
- package/components/app-icon/app-icon.module.d.ts +0 -9
- package/components/avatar/avatar.component.d.ts +0 -18
- package/components/avatar/avatar.module.d.ts +0 -9
- package/components/badge/badge.component.d.ts +0 -12
- package/components/badge/badge.module.d.ts +0 -8
- package/components/breadcrumbs/breadcrumbs.component.d.ts +0 -9
- package/components/breadcrumbs/breadcrumbs.module.d.ts +0 -10
- package/components/breadcrumbs/crumb.component.d.ts +0 -12
- package/components/button/button.component.d.ts +0 -16
- package/components/button/button.directives.d.ts +0 -37
- package/components/button/button.module.d.ts +0 -11
- package/components/button-group/button-group.component.d.ts +0 -33
- package/components/button-group/button-group.module.d.ts +0 -10
- package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +0 -21
- package/components/button-toggle/button-toggle.component.d.ts +0 -33
- package/components/button-toggle/button-toggle.module.d.ts +0 -10
- package/components/card/card-attribute/card-attribute.component.d.ts +0 -8
- package/components/card/card-author/card-author.component.d.ts +0 -7
- package/components/card/card-content/card-content.component.d.ts +0 -5
- package/components/card/card-footer/card-footer.component.d.ts +0 -9
- package/components/card/card-header/card-header.component.d.ts +0 -10
- package/components/card/card.component.d.ts +0 -12
- package/components/card/card.module.d.ts +0 -15
- package/components/checkbox/checkbox.component.d.ts +0 -23
- package/components/checkbox/checkbox.module.d.ts +0 -9
- package/components/chip/chip.component.d.ts +0 -20
- package/components/chip/chip.module.d.ts +0 -10
- package/components/contained-input/contained-input.component.d.ts +0 -23
- package/components/contained-input/contained-input.module.d.ts +0 -12
- package/components/date-input/date-input.component.d.ts +0 -47
- package/components/date-input/date-input.module.d.ts +0 -10
- package/components/dialog/dialog-actions.component.d.ts +0 -9
- package/components/dialog/dialog-confirm.component.d.ts +0 -25
- package/components/dialog/dialog-content.component.d.ts +0 -10
- package/components/dialog/dialog-header.component.d.ts +0 -9
- package/components/dialog/dialog-simple.component.d.ts +0 -25
- package/components/dialog/dialog.component.d.ts +0 -25
- package/components/dialog/dialog.service.d.ts +0 -17
- package/components/dialog/dialogs.module.d.ts +0 -18
- package/components/form-heading/form-heading.component.d.ts +0 -10
- package/components/form-heading/form-heading.module.d.ts +0 -10
- package/components/forms/validators.d.ts +0 -29
- package/components/icon/icon.component.d.ts +0 -13
- package/components/icon/icon.module.d.ts +0 -8
- package/components/icon/icon.types.d.ts +0 -2
- package/components/icon-button/icon-button.component.d.ts +0 -12
- package/components/icon-button/icon-button.module.d.ts +0 -9
- package/components/layouts/context/context.component.d.ts +0 -18
- package/components/layouts/grid/grid.component.d.ts +0 -19
- package/components/layouts/layout-group.component.d.ts +0 -9
- package/components/layouts/layouts.module.d.ts +0 -14
- package/components/layouts/panel/panel.component.d.ts +0 -11
- package/components/layouts/sidebar/sidebar.component.d.ts +0 -9
- package/components/layouts/toolbar/toolbar.component.d.ts +0 -7
- package/components/legacy/dialog/choice-dialog.component.d.ts +0 -35
- package/components/legacy/dialog/confirm-dialog.component.d.ts +0 -20
- package/components/legacy/dialog/dialog.module.d.ts +0 -19
- package/components/legacy/dialog/dialog.service.d.ts +0 -25
- package/components/legacy/dialog/error-dialog.component.d.ts +0 -18
- package/components/legacy/dialog/portal-dialog.component.d.ts +0 -33
- package/components/legacy/notification/notification/notification.component.d.ts +0 -20
- package/components/legacy/notification/notification/notification.model.d.ts +0 -14
- package/components/legacy/notification/notification-container/notification-container.component.d.ts +0 -25
- package/components/legacy/notification/notification-timer.service.d.ts +0 -10
- package/components/legacy/notification/notification.module.d.ts +0 -12
- package/components/legacy/notification/notification.service.d.ts +0 -13
- package/components/menu/menu-close-triggers.directive.d.ts +0 -10
- package/components/menu/menu-container/menu-container.component.d.ts +0 -28
- package/components/menu/menu-header/menu-header.component.d.ts +0 -5
- package/components/menu/menu-item/menu-item.component.d.ts +0 -38
- package/components/menu/menu-item-group/menu-item-group.component.d.ts +0 -11
- package/components/menu/menu-separator/menu-separator.component.d.ts +0 -5
- package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +0 -25
- package/components/menu/menu.component.d.ts +0 -48
- package/components/menu/menu.module.d.ts +0 -24
- package/components/navbar/navbar-header/navbar-header.component.d.ts +0 -5
- package/components/navbar/navbar-item/navbar-item.component.d.ts +0 -28
- package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +0 -18
- package/components/navbar/navbar.component.d.ts +0 -14
- package/components/navbar/navbar.module.d.ts +0 -18
- package/components/number-input/number-input.component.d.ts +0 -42
- package/components/number-input/number-input.module.d.ts +0 -10
- package/components/paginator/paginator-advanced/paginator-advanced.component.d.ts +0 -32
- package/components/paginator/paginator.component.d.ts +0 -40
- package/components/paginator/paginator.model.d.ts +0 -8
- package/components/paginator/paginator.module.d.ts +0 -14
- package/components/phone-input/country-code.data.d.ts +0 -2
- package/components/phone-input/phone-input.component.d.ts +0 -66
- package/components/phone-input/phone-input.model.d.ts +0 -10
- package/components/phone-input/phone-input.module.d.ts +0 -13
- package/components/popover/popover-panel/popover-panel.component.d.ts +0 -10
- package/components/popover/popover.component.d.ts +0 -19
- package/components/popover/popover.module.d.ts +0 -11
- package/components/progress/bar/bar.component.d.ts +0 -32
- package/components/progress/progress.module.d.ts +0 -9
- package/components/progress/spinner/spinner.component.d.ts +0 -37
- package/components/radio/radio-group.component.d.ts +0 -32
- package/components/radio/radio.component.d.ts +0 -17
- package/components/radio/radio.module.d.ts +0 -10
- package/components/section-heading/back-button/back-button.component.d.ts +0 -11
- package/components/section-heading/section-heading.component.d.ts +0 -13
- package/components/section-heading/section-heading.module.d.ts +0 -12
- package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +0 -9
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +0 -65
- package/components/select-menu/select-menu.component.d.ts +0 -68
- package/components/select-menu/select-menu.module.d.ts +0 -15
- package/components/shared/pipes/pipes.module.d.ts +0 -10
- package/components/shared/pipes/translate.pipe.d.ts +0 -17
- package/components/shared/pipes/trusthtml.pipe.d.ts +0 -10
- package/components/shared/translation.service.d.ts +0 -14
- package/components/snackbar/snackbar/snackbar.component.d.ts +0 -24
- package/components/snackbar/snackbar-container/snackbar-container.component.d.ts +0 -20
- package/components/snackbar/snackbar-message.model.d.ts +0 -12
- package/components/snackbar/snackbar-timer.service.d.ts +0 -10
- package/components/snackbar/snackbar.module.d.ts +0 -14
- package/components/snackbar/snackbar.service.d.ts +0 -13
- package/components/stepper/step.component.d.ts +0 -27
- package/components/stepper/stepper.component.d.ts +0 -23
- package/components/stepper/stepper.module.d.ts +0 -11
- package/components/switch/switch.component.d.ts +0 -22
- package/components/switch/switch.module.d.ts +0 -8
- package/components/table/cell.d.ts +0 -63
- package/components/table/row.d.ts +0 -60
- package/components/table/table-dense.component.d.ts +0 -11
- package/components/table/table.component.d.ts +0 -11
- package/components/table/table.module.d.ts +0 -12
- package/components/tabs/tab/tab.component.d.ts +0 -21
- package/components/tabs/tab-panel/tab-panel.component.d.ts +0 -6
- package/components/tabs/tabs.component.d.ts +0 -17
- package/components/tabs/tabs.module.d.ts +0 -11
- package/components/text-input/text-input.component.d.ts +0 -45
- package/components/text-input/text-input.module.d.ts +0 -10
- package/components/textarea-input/textarea-input.component.d.ts +0 -34
- package/components/textarea-input/textarea-input.module.d.ts +0 -11
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +0 -12
- package/components/tooltip/tooltip.component.d.ts +0 -17
- package/components/tooltip/tooltip.module.d.ts +0 -11
- package/components/wrapped-input/wrapped-input.component.d.ts +0 -10
- package/components/wrapped-input/wrapped-input.module.d.ts +0 -9
- package/esm2020/components/alert/alert.component.mjs +0 -34
- package/esm2020/components/alert/alert.module.mjs +0 -32
- package/esm2020/components/app-icon/app-icon.component.mjs +0 -63
- package/esm2020/components/app-icon/app-icon.module.mjs +0 -28
- package/esm2020/components/avatar/avatar.component.mjs +0 -53
- package/esm2020/components/avatar/avatar.module.mjs +0 -28
- package/esm2020/components/badge/badge.component.mjs +0 -45
- package/esm2020/components/badge/badge.module.mjs +0 -24
- package/esm2020/components/breadcrumbs/breadcrumbs.component.mjs +0 -22
- package/esm2020/components/breadcrumbs/breadcrumbs.module.mjs +0 -33
- package/esm2020/components/breadcrumbs/crumb.component.mjs +0 -34
- package/esm2020/components/button/button.component.mjs +0 -59
- package/esm2020/components/button/button.directives.mjs +0 -129
- package/esm2020/components/button/button.module.mjs +0 -53
- package/esm2020/components/button-group/button-group.component.mjs +0 -131
- package/esm2020/components/button-group/button-group.module.mjs +0 -32
- package/esm2020/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +0 -54
- package/esm2020/components/button-toggle/button-toggle.component.mjs +0 -132
- package/esm2020/components/button-toggle/button-toggle.module.mjs +0 -33
- package/esm2020/components/card/card-attribute/card-attribute.component.mjs +0 -17
- package/esm2020/components/card/card-author/card-author.component.mjs +0 -15
- package/esm2020/components/card/card-content/card-content.component.mjs +0 -11
- package/esm2020/components/card/card-footer/card-footer.component.mjs +0 -29
- package/esm2020/components/card/card-header/card-header.component.mjs +0 -24
- package/esm2020/components/card/card.component.mjs +0 -27
- package/esm2020/components/card/card.module.mjs +0 -57
- package/esm2020/components/checkbox/checkbox.component.mjs +0 -79
- package/esm2020/components/checkbox/checkbox.module.mjs +0 -31
- package/esm2020/components/chip/chip.component.mjs +0 -52
- package/esm2020/components/chip/chip.module.mjs +0 -32
- package/esm2020/components/contained-input/contained-input.component.mjs +0 -86
- package/esm2020/components/contained-input/contained-input.module.mjs +0 -40
- package/esm2020/components/date-input/date-input.component.mjs +0 -139
- package/esm2020/components/date-input/date-input.module.mjs +0 -32
- package/esm2020/components/dialog/dialog-actions.component.mjs +0 -32
- package/esm2020/components/dialog/dialog-confirm.component.mjs +0 -63
- package/esm2020/components/dialog/dialog-content.component.mjs +0 -38
- package/esm2020/components/dialog/dialog-header.component.mjs +0 -35
- package/esm2020/components/dialog/dialog-simple.component.mjs +0 -62
- package/esm2020/components/dialog/dialog.component.mjs +0 -55
- package/esm2020/components/dialog/dialog.service.mjs +0 -49
- package/esm2020/components/dialog/dialogs.module.mjs +0 -75
- package/esm2020/components/form-heading/form-heading.component.mjs +0 -24
- package/esm2020/components/form-heading/form-heading.module.mjs +0 -32
- package/esm2020/components/forms/validators.mjs +0 -81
- package/esm2020/components/icon/icon.component.mjs +0 -61
- package/esm2020/components/icon/icon.module.mjs +0 -24
- package/esm2020/components/icon/icon.types.mjs +0 -317
- package/esm2020/components/icon-button/icon-button.component.mjs +0 -39
- package/esm2020/components/icon-button/icon-button.module.mjs +0 -28
- package/esm2020/components/layouts/context/context.component.mjs +0 -46
- package/esm2020/components/layouts/grid/grid.component.mjs +0 -62
- package/esm2020/components/layouts/layout-group.component.mjs +0 -36
- package/esm2020/components/layouts/layouts.module.mjs +0 -57
- package/esm2020/components/layouts/panel/panel.component.mjs +0 -32
- package/esm2020/components/layouts/sidebar/sidebar.component.mjs +0 -26
- package/esm2020/components/layouts/toolbar/toolbar.component.mjs +0 -21
- package/esm2020/components/legacy/dialog/choice-dialog.component.mjs +0 -107
- package/esm2020/components/legacy/dialog/confirm-dialog.component.mjs +0 -61
- package/esm2020/components/legacy/dialog/dialog.module.mjs +0 -82
- package/esm2020/components/legacy/dialog/dialog.service.mjs +0 -75
- package/esm2020/components/legacy/dialog/error-dialog.component.mjs +0 -52
- package/esm2020/components/legacy/dialog/portal-dialog.component.mjs +0 -109
- package/esm2020/components/legacy/notification/notification/notification.component.mjs +0 -74
- package/esm2020/components/legacy/notification/notification/notification.model.mjs +0 -9
- package/esm2020/components/legacy/notification/notification-container/notification-container.component.mjs +0 -98
- package/esm2020/components/legacy/notification/notification-timer.service.mjs +0 -29
- package/esm2020/components/legacy/notification/notification.module.mjs +0 -47
- package/esm2020/components/legacy/notification/notification.service.mjs +0 -36
- package/esm2020/components/menu/menu-close-triggers.directive.mjs +0 -38
- package/esm2020/components/menu/menu-container/menu-container.component.mjs +0 -90
- package/esm2020/components/menu/menu-header/menu-header.component.mjs +0 -11
- package/esm2020/components/menu/menu-item/menu-item.component.mjs +0 -136
- package/esm2020/components/menu/menu-item-group/menu-item-group.component.mjs +0 -31
- package/esm2020/components/menu/menu-separator/menu-separator.component.mjs +0 -11
- package/esm2020/components/menu/menu-sub-item/menu-sub-item.component.mjs +0 -109
- package/esm2020/components/menu/menu.component.mjs +0 -212
- package/esm2020/components/menu/menu.module.mjs +0 -95
- package/esm2020/components/navbar/navbar-header/navbar-header.component.mjs +0 -11
- package/esm2020/components/navbar/navbar-item/navbar-item.component.mjs +0 -95
- package/esm2020/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +0 -76
- package/esm2020/components/navbar/navbar.component.mjs +0 -75
- package/esm2020/components/navbar/navbar.module.mjs +0 -67
- package/esm2020/components/number-input/number-input.component.mjs +0 -122
- package/esm2020/components/number-input/number-input.module.mjs +0 -32
- package/esm2020/components/paginator/paginator-advanced/paginator-advanced.component.mjs +0 -123
- package/esm2020/components/paginator/paginator.component.mjs +0 -133
- package/esm2020/components/paginator/paginator.model.mjs +0 -2
- package/esm2020/components/paginator/paginator.module.mjs +0 -49
- package/esm2020/components/phone-input/country-code.data.mjs +0 -495
- package/esm2020/components/phone-input/phone-input.component.mjs +0 -285
- package/esm2020/components/phone-input/phone-input.model.mjs +0 -2
- package/esm2020/components/phone-input/phone-input.module.mjs +0 -47
- package/esm2020/components/popover/popover-panel/popover-panel.component.mjs +0 -30
- package/esm2020/components/popover/popover.component.mjs +0 -76
- package/esm2020/components/popover/popover.module.mjs +0 -42
- package/esm2020/components/progress/bar/bar.component.mjs +0 -83
- package/esm2020/components/progress/progress.module.mjs +0 -29
- package/esm2020/components/progress/spinner/spinner.component.mjs +0 -101
- package/esm2020/components/radio/radio-group.component.mjs +0 -117
- package/esm2020/components/radio/radio.component.mjs +0 -51
- package/esm2020/components/radio/radio.module.mjs +0 -36
- package/esm2020/components/section-heading/back-button/back-button.component.mjs +0 -30
- package/esm2020/components/section-heading/section-heading.component.mjs +0 -31
- package/esm2020/components/section-heading/section-heading.module.mjs +0 -42
- package/esm2020/components/section-heading/subsection-heading/subsection-heading.component.mjs +0 -19
- package/esm2020/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +0 -356
- package/esm2020/components/select-menu/select-menu.component.mjs +0 -328
- package/esm2020/components/select-menu/select-menu.module.mjs +0 -53
- package/esm2020/components/shared/pipes/pipes.module.mjs +0 -36
- package/esm2020/components/shared/pipes/translate.pipe.mjs +0 -40
- package/esm2020/components/shared/pipes/trusthtml.pipe.mjs +0 -21
- package/esm2020/components/shared/translation.service.mjs +0 -26
- package/esm2020/components/snackbar/snackbar/snackbar.component.mjs +0 -111
- package/esm2020/components/snackbar/snackbar-container/snackbar-container.component.mjs +0 -63
- package/esm2020/components/snackbar/snackbar-message.model.mjs +0 -2
- package/esm2020/components/snackbar/snackbar-timer.service.mjs +0 -29
- package/esm2020/components/snackbar/snackbar.module.mjs +0 -55
- package/esm2020/components/snackbar/snackbar.service.mjs +0 -36
- package/esm2020/components/stepper/step.component.mjs +0 -113
- package/esm2020/components/stepper/stepper.component.mjs +0 -95
- package/esm2020/components/stepper/stepper.module.mjs +0 -41
- package/esm2020/components/switch/switch.component.mjs +0 -73
- package/esm2020/components/switch/switch.module.mjs +0 -24
- package/esm2020/components/table/cell.mjs +0 -151
- package/esm2020/components/table/row.mjs +0 -170
- package/esm2020/components/table/table-dense.component.mjs +0 -38
- package/esm2020/components/table/table.component.mjs +0 -38
- package/esm2020/components/table/table.module.mjs +0 -91
- package/esm2020/components/tabs/tab/tab.component.mjs +0 -79
- package/esm2020/components/tabs/tab-panel/tab-panel.component.mjs +0 -19
- package/esm2020/components/tabs/tabs.component.mjs +0 -68
- package/esm2020/components/tabs/tabs.module.mjs +0 -38
- package/esm2020/components/text-input/text-input.component.mjs +0 -112
- package/esm2020/components/text-input/text-input.module.mjs +0 -32
- package/esm2020/components/textarea-input/textarea-input.component.mjs +0 -86
- package/esm2020/components/textarea-input/textarea-input.module.mjs +0 -36
- package/esm2020/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +0 -37
- package/esm2020/components/tooltip/tooltip.component.mjs +0 -49
- package/esm2020/components/tooltip/tooltip.module.mjs +0 -42
- package/esm2020/components/wrapped-input/wrapped-input.component.mjs +0 -30
- package/esm2020/components/wrapped-input/wrapped-input.module.mjs +0 -28
- package/esm2020/flywheel-io-vision.mjs +0 -5
- package/esm2020/public-api.mjs +0 -137
- package/fesm2015/flywheel-io-vision.mjs +0 -8767
- package/fesm2015/flywheel-io-vision.mjs.map +0 -1
- package/fesm2020/flywheel-io-vision.mjs +0 -8739
- package/fesm2020/flywheel-io-vision.mjs.map +0 -1
- package/global.scss +0 -9
- package/index.d.ts +0 -5
- package/public-api.d.ts +0 -136
- package/public-api.scss +0 -7
- package/scss/atoms/scrollbar.scss +0 -10
- package/scss/config/colors.scss +0 -148
- package/scss/icons/_icon-font-face.scss +0 -13
- package/scss/icons/_icon-glyphs.scss +0 -1612
- package/scss/icons/_icon-variables.scss +0 -317
- package/scss/material/theme.scss +0 -243
- package/styles.css +0 -8770
- /package/{assets → src/assets}/fonts/Flywheel-Vision-Icons.svg +0 -0
- /package/{assets → src/assets}/fonts/Flywheel-Vision-Icons.ttf +0 -0
- /package/{assets → src/assets}/fonts/Flywheel-Vision-Icons.woff +0 -0
- /package/{assets → src/assets}/svg/3d-sphere-rotate-arrows.svg +0 -0
- /package/{assets → src/assets}/svg/add-circle.svg +0 -0
- /package/{assets → src/assets}/svg/add-new-create.svg +0 -0
- /package/{assets → src/assets}/svg/add-row-above.svg +0 -0
- /package/{assets → src/assets}/svg/add-row-below.svg +0 -0
- /package/{assets → src/assets}/svg/add-server-databases-endpoint.svg +0 -0
- /package/{assets → src/assets}/svg/add-server.svg +0 -0
- /package/{assets → src/assets}/svg/add-user.svg +0 -0
- /package/{assets → src/assets}/svg/ai.svg +0 -0
- /package/{assets → src/assets}/svg/apple.svg +0 -0
- /package/{assets → src/assets}/svg/apply-copy-duplicate.svg +0 -0
- /package/{assets → src/assets}/svg/arrange-filter-sort.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-annotate.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-back-collapse.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-back.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-down.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-forward-collapse.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-forward.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-rotate-restore.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-rotate.svg +0 -0
- /package/{assets → src/assets}/svg/arrow-up.svg +0 -0
- /package/{assets → src/assets}/svg/arrow.svg +0 -0
- /package/{assets → src/assets}/svg/barcode-serial.svg +0 -0
- /package/{assets → src/assets}/svg/barcode-stack-scan.svg +0 -0
- /package/{assets → src/assets}/svg/bell-notification.svg +0 -0
- /package/{assets → src/assets}/svg/bezier-curve.svg +0 -0
- /package/{assets → src/assets}/svg/blocks-code-test-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/book-lab-flask.svg +0 -0
- /package/{assets → src/assets}/svg/bookmark-plus-add.svg +0 -0
- /package/{assets → src/assets}/svg/bookmark.svg +0 -0
- /package/{assets → src/assets}/svg/brain.svg +0 -0
- /package/{assets → src/assets}/svg/brightness-photo-edit.svg +0 -0
- /package/{assets → src/assets}/svg/browser-internet-web-windows.svg +0 -0
- /package/{assets → src/assets}/svg/brush-edit-create.svg +0 -0
- /package/{assets → src/assets}/svg/bucket-paint.svg +0 -0
- /package/{assets → src/assets}/svg/button-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/calendar-arrow-left-center.svg +0 -0
- /package/{assets → src/assets}/svg/calendar-schedule.svg +0 -0
- /package/{assets → src/assets}/svg/camera-photo-capture.svg +0 -0
- /package/{assets → src/assets}/svg/cash-banknotes.svg +0 -0
- /package/{assets → src/assets}/svg/chart-square.svg +0 -0
- /package/{assets → src/assets}/svg/chart-trend-square.svg +0 -0
- /package/{assets → src/assets}/svg/chat-messages-bubble.svg +0 -0
- /package/{assets → src/assets}/svg/checklist-tasks-chechmark-square.svg +0 -0
- /package/{assets → src/assets}/svg/checklist.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-back.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-down.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-forward.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-input-number.svg +0 -0
- /package/{assets → src/assets}/svg/chevron-up.svg +0 -0
- /package/{assets → src/assets}/svg/circle-ellipses.svg +0 -0
- /package/{assets → src/assets}/svg/circle.svg +0 -0
- /package/{assets → src/assets}/svg/clap-applause-hands.svg +0 -0
- /package/{assets → src/assets}/svg/clip-attachment.svg +0 -0
- /package/{assets → src/assets}/svg/clock-history.svg +0 -0
- /package/{assets → src/assets}/svg/clock-hour-4.svg +0 -0
- /package/{assets → src/assets}/svg/clock-loading.svg +0 -0
- /package/{assets → src/assets}/svg/close-circled.svg +0 -0
- /package/{assets → src/assets}/svg/close.svg +0 -0
- /package/{assets → src/assets}/svg/closed-freehand-vector-poly.svg +0 -0
- /package/{assets → src/assets}/svg/cloud-network-add.svg +0 -0
- /package/{assets → src/assets}/svg/cloud-storage-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/cloud-upload.svg +0 -0
- /package/{assets → src/assets}/svg/code-block-embed.svg +0 -0
- /package/{assets → src/assets}/svg/code-text.svg +0 -0
- /package/{assets → src/assets}/svg/color-design-profile.svg +0 -0
- /package/{assets → src/assets}/svg/color-ven-design-profile-central.svg +0 -0
- /package/{assets → src/assets}/svg/column-edit.svg +0 -0
- /package/{assets → src/assets}/svg/computer-chip.svg +0 -0
- /package/{assets → src/assets}/svg/contrast-photo-edit.svg +0 -0
- /package/{assets → src/assets}/svg/copy-item.svg +0 -0
- /package/{assets → src/assets}/svg/creative-commons.svg +0 -0
- /package/{assets → src/assets}/svg/crosshair.svg +0 -0
- /package/{assets → src/assets}/svg/crown-style-circle.svg +0 -0
- /package/{assets → src/assets}/svg/cursor-select.svg +0 -0
- /package/{assets → src/assets}/svg/curve-object-secet-cursor.svg +0 -0
- /package/{assets → src/assets}/svg/data-tree.svg +0 -0
- /package/{assets → src/assets}/svg/delivery-shipment-packages.svg +0 -0
- /package/{assets → src/assets}/svg/dna-hospital-medical.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-add-plus-bottom-left.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-blank.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-download.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-list-protocol.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-tar.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-upload-bottom-center.svg +0 -0
- /package/{assets → src/assets}/svg/document-file-zip.svg +0 -0
- /package/{assets → src/assets}/svg/document-status-done-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/document-visible.svg +0 -0
- /package/{assets → src/assets}/svg/documents-file.svg +0 -0
- /package/{assets → src/assets}/svg/documents-files.svg +0 -0
- /package/{assets → src/assets}/svg/done-check-tracked.svg +0 -0
- /package/{assets → src/assets}/svg/done-check.svg +0 -0
- /package/{assets → src/assets}/svg/download-status.svg +0 -0
- /package/{assets → src/assets}/svg/download.svg +0 -0
- /package/{assets → src/assets}/svg/drag-drop-indicator.svg +0 -0
- /package/{assets → src/assets}/svg/draw-rectangle.svg +0 -0
- /package/{assets → src/assets}/svg/earth-globe-fail.svg +0 -0
- /package/{assets → src/assets}/svg/edit-boxed.svg +0 -0
- /package/{assets → src/assets}/svg/edit-erase.svg +0 -0
- /package/{assets → src/assets}/svg/edit.svg +0 -0
- /package/{assets → src/assets}/svg/email-mail-checkmark-group.svg +0 -0
- /package/{assets → src/assets}/svg/email.svg +0 -0
- /package/{assets → src/assets}/svg/embed-circle.svg +0 -0
- /package/{assets → src/assets}/svg/exchange.svg +0 -0
- /package/{assets → src/assets}/svg/expand-pathfinder-dot-square-segmentation.svg +0 -0
- /package/{assets → src/assets}/svg/facebook.svg +0 -0
- /package/{assets → src/assets}/svg/file-blank-image-load-mask.svg +0 -0
- /package/{assets → src/assets}/svg/file-download.svg +0 -0
- /package/{assets → src/assets}/svg/file-text.svg +0 -0
- /package/{assets → src/assets}/svg/files-library-content.svg +0 -0
- /package/{assets → src/assets}/svg/files-library.svg +0 -0
- /package/{assets → src/assets}/svg/files.svg +0 -0
- /package/{assets → src/assets}/svg/filter-sort-add.svg +0 -0
- /package/{assets → src/assets}/svg/filter-sort-check-mark.svg +0 -0
- /package/{assets → src/assets}/svg/filter-sort-delete.svg +0 -0
- /package/{assets → src/assets}/svg/filter.svg +0 -0
- /package/{assets → src/assets}/svg/flag.svg +0 -0
- /package/{assets → src/assets}/svg/flip-horizontal.svg +0 -0
- /package/{assets → src/assets}/svg/flip-vertical.svg +0 -0
- /package/{assets → src/assets}/svg/floppy-save.svg +0 -0
- /package/{assets → src/assets}/svg/flywheel-mark-logo.svg +0 -0
- /package/{assets → src/assets}/svg/flywheel-viewer-mark-logo.svg +0 -0
- /package/{assets → src/assets}/svg/folder-add.svg +0 -0
- /package/{assets → src/assets}/svg/folder-blank.svg +0 -0
- /package/{assets → src/assets}/svg/folder-checked.svg +0 -0
- /package/{assets → src/assets}/svg/folder-group.svg +0 -0
- /package/{assets → src/assets}/svg/folder-open.svg +0 -0
- /package/{assets → src/assets}/svg/folder-share.svg +0 -0
- /package/{assets → src/assets}/svg/form-metadata-element.svg +0 -0
- /package/{assets → src/assets}/svg/free-rights.svg +0 -0
- /package/{assets → src/assets}/svg/freehand-vector-poly.svg +0 -0
- /package/{assets → src/assets}/svg/full-screen-zoom.svg +0 -0
- /package/{assets → src/assets}/svg/github-color-login.svg +0 -0
- /package/{assets → src/assets}/svg/gitlab.svg +0 -0
- /package/{assets → src/assets}/svg/graduate-hat.svg +0 -0
- /package/{assets → src/assets}/svg/grid-dot-square.svg +0 -0
- /package/{assets → src/assets}/svg/grid-layout.svg +0 -0
- /package/{assets → src/assets}/svg/hammer-legal-square.svg +0 -0
- /package/{assets → src/assets}/svg/hammer-screwdriver.svg +0 -0
- /package/{assets → src/assets}/svg/hand-money-currency.svg +0 -0
- /package/{assets → src/assets}/svg/header-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/home-modern-door.svg +0 -0
- /package/{assets → src/assets}/svg/home-modern-option-lines.svg +0 -0
- /package/{assets → src/assets}/svg/human-artificial-intelligence.svg +0 -0
- /package/{assets → src/assets}/svg/icon-placeholder.svg +0 -0
- /package/{assets → src/assets}/svg/image-photo-copy-left-down.svg +0 -0
- /package/{assets → src/assets}/svg/image-picture-square.svg +0 -0
- /package/{assets → src/assets}/svg/information-circle.svg +0 -0
- /package/{assets → src/assets}/svg/invoice-checkmark-paid.svg +0 -0
- /package/{assets → src/assets}/svg/invoice.svg +0 -0
- /package/{assets → src/assets}/svg/italic.svg +0 -0
- /package/{assets → src/assets}/svg/items-group-elements.svg +0 -0
- /package/{assets → src/assets}/svg/key.svg +0 -0
- /package/{assets → src/assets}/svg/keyboard.svg +0 -0
- /package/{assets → src/assets}/svg/keychain.svg +0 -0
- /package/{assets → src/assets}/svg/label-tag.svg +0 -0
- /package/{assets → src/assets}/svg/laptop-health-medical-cross.svg +0 -0
- /package/{assets → src/assets}/svg/layers.svg +0 -0
- /package/{assets → src/assets}/svg/layout-grid.svg +0 -0
- /package/{assets → src/assets}/svg/layout.svg +0 -0
- /package/{assets → src/assets}/svg/line.svg +0 -0
- /package/{assets → src/assets}/svg/link-unlink.svg +0 -0
- /package/{assets → src/assets}/svg/link.svg +0 -0
- /package/{assets → src/assets}/svg/linkedin.svg +0 -0
- /package/{assets → src/assets}/svg/linux.svg +0 -0
- /package/{assets → src/assets}/svg/list-paragraph-number.svg +0 -0
- /package/{assets → src/assets}/svg/list-paragraph.svg +0 -0
- /package/{assets → src/assets}/svg/list-test-lab-flask.svg +0 -0
- /package/{assets → src/assets}/svg/livewire-tool.svg +0 -0
- /package/{assets → src/assets}/svg/loading-status-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/lock-unlock.svg +0 -0
- /package/{assets → src/assets}/svg/lock.svg +0 -0
- /package/{assets → src/assets}/svg/logout.svg +0 -0
- /package/{assets → src/assets}/svg/lung.svg +0 -0
- /package/{assets → src/assets}/svg/lungs.svg +0 -0
- /package/{assets → src/assets}/svg/markdown.svg +0 -0
- /package/{assets → src/assets}/svg/measure-angle.svg +0 -0
- /package/{assets → src/assets}/svg/measure-ruler-calibration.svg +0 -0
- /package/{assets → src/assets}/svg/media-library-imports-dowload.svg +0 -0
- /package/{assets → src/assets}/svg/menu-burger-handle.svg +0 -0
- /package/{assets → src/assets}/svg/menu-horizontal.svg +0 -0
- /package/{assets → src/assets}/svg/menu-list-form-square.svg +0 -0
- /package/{assets → src/assets}/svg/menu-vertical.svg +0 -0
- /package/{assets → src/assets}/svg/message-chat-info.svg +0 -0
- /package/{assets → src/assets}/svg/message-chat-question-support.svg +0 -0
- /package/{assets → src/assets}/svg/message-checkmark-sent.svg +0 -0
- /package/{assets → src/assets}/svg/message-question-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/microphone-mic-rec-circle.svg +0 -0
- /package/{assets → src/assets}/svg/microphone-mic-rec.svg +0 -0
- /package/{assets → src/assets}/svg/microphone-mic-recording-circle.svg +0 -0
- /package/{assets → src/assets}/svg/minus.svg +0 -0
- /package/{assets → src/assets}/svg/modalities.svg +0 -0
- /package/{assets → src/assets}/svg/molecule.svg +0 -0
- /package/{assets → src/assets}/svg/money-coin.svg +0 -0
- /package/{assets → src/assets}/svg/money-dollar.svg +0 -0
- /package/{assets → src/assets}/svg/money.svg +0 -0
- /package/{assets → src/assets}/svg/mouse-big.svg +0 -0
- /package/{assets → src/assets}/svg/move.svg +0 -0
- /package/{assets → src/assets}/svg/music-play-resume.svg +0 -0
- /package/{assets → src/assets}/svg/music-stop.svg +0 -0
- /package/{assets → src/assets}/svg/mute.svg +0 -0
- /package/{assets → src/assets}/svg/network-storage-alert.svg +0 -0
- /package/{assets → src/assets}/svg/notebook-add-plus.svg +0 -0
- /package/{assets → src/assets}/svg/notebook-open.svg +0 -0
- /package/{assets → src/assets}/svg/notebook-pen-edit.svg +0 -0
- /package/{assets → src/assets}/svg/notebook.svg +0 -0
- /package/{assets → src/assets}/svg/notes-pen.svg +0 -0
- /package/{assets → src/assets}/svg/object-search-zoom-plus.svg +0 -0
- /package/{assets → src/assets}/svg/open.svg +0 -0
- /package/{assets → src/assets}/svg/paint-roller.svg +0 -0
- /package/{assets → src/assets}/svg/pause.svg +0 -0
- /package/{assets → src/assets}/svg/pen-edit-circle.svg +0 -0
- /package/{assets → src/assets}/svg/pencil-edit-create.svg +0 -0
- /package/{assets → src/assets}/svg/photo-edit-brightness-invert.svg +0 -0
- /package/{assets → src/assets}/svg/pie-chart.svg +0 -0
- /package/{assets → src/assets}/svg/pie-graph-chart-sample.svg +0 -0
- /package/{assets → src/assets}/svg/plus-add-rectangle.svg +0 -0
- /package/{assets → src/assets}/svg/polygon.svg +0 -0
- /package/{assets → src/assets}/svg/private-mode-protection-circle.svg +0 -0
- /package/{assets → src/assets}/svg/protection-target.svg +0 -0
- /package/{assets → src/assets}/svg/protective-mask.svg +0 -0
- /package/{assets → src/assets}/svg/question-circle.svg +0 -0
- /package/{assets → src/assets}/svg/quote.svg +0 -0
- /package/{assets → src/assets}/svg/radiology-scan-circle.svg +0 -0
- /package/{assets → src/assets}/svg/radiology-scan.svg +0 -0
- /package/{assets → src/assets}/svg/reader-studies.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-arrow-manual.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-item-left.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-item-right.svg +0 -0
- /package/{assets → src/assets}/svg/rotate-refresh.svg +0 -0
- /package/{assets → src/assets}/svg/rotate.svg +0 -0
- /package/{assets → src/assets}/svg/ruler-bidirectional.svg +0 -0
- /package/{assets → src/assets}/svg/ruler.svg +0 -0
- /package/{assets → src/assets}/svg/scanner.svg +0 -0
- /package/{assets → src/assets}/svg/search-loop.svg +0 -0
- /package/{assets → src/assets}/svg/search-user-profile-person.svg +0 -0
- /package/{assets → src/assets}/svg/search-zoom-minus.svg +0 -0
- /package/{assets → src/assets}/svg/search-zoom-plus.svg +0 -0
- /package/{assets → src/assets}/svg/search.svg +0 -0
- /package/{assets → src/assets}/svg/section-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/send-message-share.svg +0 -0
- /package/{assets → src/assets}/svg/server-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/server-database-endpoint.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-connect.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-download.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-key-protection.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-minimal-download.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-sync-import.svg +0 -0
- /package/{assets → src/assets}/svg/server-databases-sync.svg +0 -0
- /package/{assets → src/assets}/svg/server-upload.svg +0 -0
- /package/{assets → src/assets}/svg/server.svg +0 -0
- /package/{assets → src/assets}/svg/servers-database.svg +0 -0
- /package/{assets → src/assets}/svg/setting-gear.svg +0 -0
- /package/{assets → src/assets}/svg/settings-adjust.svg +0 -0
- /package/{assets → src/assets}/svg/settings-gear-square.svg +0 -0
- /package/{assets → src/assets}/svg/settings-gear.svg +0 -0
- /package/{assets → src/assets}/svg/settings-select.svg +0 -0
- /package/{assets → src/assets}/svg/shapes-objects.svg +0 -0
- /package/{assets → src/assets}/svg/share.svg +0 -0
- /package/{assets → src/assets}/svg/shield-protect.svg +0 -0
- /package/{assets → src/assets}/svg/show-visible.svg +0 -0
- /package/{assets → src/assets}/svg/smiley-emoji-face.svg +0 -0
- /package/{assets → src/assets}/svg/speed-dashboard.svg +0 -0
- /package/{assets → src/assets}/svg/square-fill-outline.svg +0 -0
- /package/{assets → src/assets}/svg/square-fill.svg +0 -0
- /package/{assets → src/assets}/svg/square-outline.svg +0 -0
- /package/{assets → src/assets}/svg/star.svg +0 -0
- /package/{assets → src/assets}/svg/stars-light-sparkle.svg +0 -0
- /package/{assets → src/assets}/svg/stomach.svg +0 -0
- /package/{assets → src/assets}/svg/substract-group.svg +0 -0
- /package/{assets → src/assets}/svg/switch.svg +0 -0
- /package/{assets → src/assets}/svg/target-space-object-select.svg +0 -0
- /package/{assets → src/assets}/svg/target.svg +0 -0
- /package/{assets → src/assets}/svg/tasklist-to-do-checkmark.svg +0 -0
- /package/{assets → src/assets}/svg/technology-cube-3d.svg +0 -0
- /package/{assets → src/assets}/svg/test-lab-flask.svg +0 -0
- /package/{assets → src/assets}/svg/text-bold.svg +0 -0
- /package/{assets → src/assets}/svg/text-cross.svg +0 -0
- /package/{assets → src/assets}/svg/text-h1.svg +0 -0
- /package/{assets → src/assets}/svg/text-h2.svg +0 -0
- /package/{assets → src/assets}/svg/text-input-form.svg +0 -0
- /package/{assets → src/assets}/svg/text-long.svg +0 -0
- /package/{assets → src/assets}/svg/text-short-form-element.svg +0 -0
- /package/{assets → src/assets}/svg/text-underline.svg +0 -0
- /package/{assets → src/assets}/svg/thumbs-up-like.svg +0 -0
- /package/{assets → src/assets}/svg/timer-clock-style.svg +0 -0
- /package/{assets → src/assets}/svg/trash-delete.svg +0 -0
- /package/{assets → src/assets}/svg/twitter.svg +0 -0
- /package/{assets → src/assets}/svg/undone-uncheck-untracked.svg +0 -0
- /package/{assets → src/assets}/svg/unlimited-repeat-subscription-circle.svg +0 -0
- /package/{assets → src/assets}/svg/upload.svg +0 -0
- /package/{assets → src/assets}/svg/user-checked.svg +0 -0
- /package/{assets → src/assets}/svg/user-delete-cross.svg +0 -0
- /package/{assets → src/assets}/svg/user-document.svg +0 -0
- /package/{assets → src/assets}/svg/user-group.svg +0 -0
- /package/{assets → src/assets}/svg/user-key.svg +0 -0
- /package/{assets → src/assets}/svg/user-lock.svg +0 -0
- /package/{assets → src/assets}/svg/user-profile-group-discovery.svg +0 -0
- /package/{assets → src/assets}/svg/user-setting-gear.svg +0 -0
- /package/{assets → src/assets}/svg/user.svg +0 -0
- /package/{assets → src/assets}/svg/video-player-controls.svg +0 -0
- /package/{assets → src/assets}/svg/visible-eye-hidden.svg +0 -0
- /package/{assets → src/assets}/svg/volume-full.svg +0 -0
- /package/{assets → src/assets}/svg/warning-circle.svg +0 -0
- /package/{assets → src/assets}/svg/warning.svg +0 -0
- /package/{assets → src/assets}/svg/window-finder-resize-arrow-down.svg +0 -0
- /package/{assets → src/assets}/svg/window-finder-resize-arrow-up.svg +0 -0
- /package/{assets → src/assets}/svg/window-resize-left.svg +0 -0
- /package/{assets → src/assets}/svg/window-resize-right.svg +0 -0
- /package/{assets → src/assets}/svg/window-zoom-plus-loupe.svg +0 -0
- /package/{assets → src/assets}/svg/windows.svg +0 -0
- /package/{assets → src/assets}/svg/workspace-mode.svg +0 -0
- /package/{assets → src/assets}/svg/youtube.svg +0 -0
- /package/{assets → src/assets}/svg/zendesk-logo.svg +0 -0
- /package/{scss → src/scss}/atoms/ghost.scss +0 -0
- /package/{scss → src/scss}/config/overlay.scss +0 -0
- /package/{scss → src/scss}/config/shadows.scss +0 -0
- /package/{scss → src/scss}/config/typography.scss +0 -0
- /package/{scss → src/scss}/icons/icons.scss +0 -0
|
@@ -1,1612 +0,0 @@
|
|
|
1
|
-
@import './_icon-variables';
|
|
2
|
-
|
|
3
|
-
@mixin icon-glyphs {
|
|
4
|
-
.vision-icon {
|
|
5
|
-
white-space: pre;
|
|
6
|
-
|
|
7
|
-
@supports (font: -apple-system-body) {
|
|
8
|
-
// weird hack to get ligatures to position correctly in safari
|
|
9
|
-
&:after {
|
|
10
|
-
content: '';
|
|
11
|
-
padding-left: 100%;
|
|
12
|
-
padding-right: 100%;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
.vision-icon, [class^="icon-"], [class*=" icon-"] {
|
|
17
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
18
|
-
font-family: '#{$icomoon-font-family}' !important;
|
|
19
|
-
speak: never;
|
|
20
|
-
font-style: normal;
|
|
21
|
-
font-weight: normal;
|
|
22
|
-
font-variant: normal;
|
|
23
|
-
text-transform: none;
|
|
24
|
-
line-height: 1;
|
|
25
|
-
|
|
26
|
-
/* Enable Ligatures ================ */
|
|
27
|
-
letter-spacing: 0;
|
|
28
|
-
-webkit-font-feature-settings: "liga";
|
|
29
|
-
-moz-font-feature-settings: "liga=1";
|
|
30
|
-
-moz-font-feature-settings: "liga";
|
|
31
|
-
-ms-font-feature-settings: "liga" 1;
|
|
32
|
-
font-feature-settings: "liga" 1;
|
|
33
|
-
-webkit-font-variant-ligatures: discretionary-ligatures;
|
|
34
|
-
font-variant-ligatures: discretionary-ligatures;
|
|
35
|
-
|
|
36
|
-
/* Better Font Rendering =========== */
|
|
37
|
-
-webkit-font-smoothing: antialiased;
|
|
38
|
-
-moz-osx-font-smoothing: grayscale;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
.icon-clock-hour-4 {
|
|
43
|
-
&:before {
|
|
44
|
-
content: $icon-clock-hour-4;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
.icon-documents-file {
|
|
48
|
-
&:before {
|
|
49
|
-
content: $icon-documents-file;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
.icon-expand-pathfinder-dot-square-segmentation {
|
|
53
|
-
&:before {
|
|
54
|
-
content: $icon-expand-pathfinder-dot-square-segmentation;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
.icon-square-fill-outline {
|
|
58
|
-
&:before {
|
|
59
|
-
content: $icon-square-fill-outline;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
.icon-square-fill {
|
|
63
|
-
&:before {
|
|
64
|
-
content: $icon-square-fill;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
.icon-square-outline {
|
|
68
|
-
&:before {
|
|
69
|
-
content: $icon-square-outline;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
.icon-flywheel-viewer-mark-logo {
|
|
73
|
-
&:before {
|
|
74
|
-
content: $icon-flywheel-viewer-mark-logo;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
.icon-filter-sort-check-mark {
|
|
78
|
-
&:before {
|
|
79
|
-
content: $icon-filter-sort-check-mark;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
.icon-filter-sort-delete {
|
|
83
|
-
&:before {
|
|
84
|
-
content: $icon-filter-sort-delete;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
.icon-filter-sort-add {
|
|
88
|
-
&:before {
|
|
89
|
-
content: $icon-filter-sort-add;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
.icon-chevron-input-number {
|
|
93
|
-
&:before {
|
|
94
|
-
content: $icon-chevron-input-number;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
.icon-shield-protect {
|
|
98
|
-
&:before {
|
|
99
|
-
content: $icon-shield-protect;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
.icon-3d-sphere-rotate-arrows {
|
|
103
|
-
&:before {
|
|
104
|
-
content: $icon-3d-sphere-rotate-arrows;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
.icon-livewire-tool {
|
|
108
|
-
&:before {
|
|
109
|
-
content: $icon-livewire-tool;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
.icon-bezier-curve {
|
|
113
|
-
&:before {
|
|
114
|
-
content: $icon-bezier-curve;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
.icon-technology-cube-3d {
|
|
118
|
-
&:before {
|
|
119
|
-
content: $icon-technology-cube-3d;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
.icon-brightness-photo-edit {
|
|
123
|
-
&:before {
|
|
124
|
-
content: $icon-brightness-photo-edit;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
.icon-target-space-object-select {
|
|
128
|
-
&:before {
|
|
129
|
-
content: $icon-target-space-object-select;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
.icon-crown-style-circle {
|
|
133
|
-
&:before {
|
|
134
|
-
content: $icon-crown-style-circle;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
.icon-hammer-legal-square {
|
|
138
|
-
&:before {
|
|
139
|
-
content: $icon-hammer-legal-square;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
.icon-browser-internet-web-windows {
|
|
143
|
-
&:before {
|
|
144
|
-
content: $icon-browser-internet-web-windows;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
.icon-settings-adjust {
|
|
148
|
-
&:before {
|
|
149
|
-
content: $icon-settings-adjust;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
.icon-lock-unlock {
|
|
153
|
-
&:before {
|
|
154
|
-
content: $icon-lock-unlock;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
.icon-private-mode-protection-circle {
|
|
158
|
-
&:before {
|
|
159
|
-
content: $icon-private-mode-protection-circle;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
.icon-ai {
|
|
163
|
-
&:before {
|
|
164
|
-
content: $icon-ai;
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
.icon-reader-studies {
|
|
168
|
-
&:before {
|
|
169
|
-
content: $icon-reader-studies;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
.icon-shapes-objects {
|
|
173
|
-
&:before {
|
|
174
|
-
content: $icon-shapes-objects;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
.icon-cloud-upload {
|
|
178
|
-
&:before {
|
|
179
|
-
content: $icon-cloud-upload;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
.icon-floppy-save {
|
|
183
|
-
&:before {
|
|
184
|
-
content: $icon-floppy-save;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
.icon-text-input-form {
|
|
188
|
-
&:before {
|
|
189
|
-
content: $icon-text-input-form;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
.icon-document-file-add-plus-bottom-left {
|
|
193
|
-
&:before {
|
|
194
|
-
content: $icon-document-file-add-plus-bottom-left;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
.icon-document-file-upload-bottom-center {
|
|
198
|
-
&:before {
|
|
199
|
-
content: $icon-document-file-upload-bottom-center;
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
.icon-paint-roller {
|
|
203
|
-
&:before {
|
|
204
|
-
content: $icon-paint-roller;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
.icon-brush-edit-create {
|
|
208
|
-
&:before {
|
|
209
|
-
content: $icon-brush-edit-create;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
.icon-bucket-paint {
|
|
213
|
-
&:before {
|
|
214
|
-
content: $icon-bucket-paint;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
.icon-edit-erase {
|
|
218
|
-
&:before {
|
|
219
|
-
content: $icon-edit-erase;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
.icon-grid-dot-square {
|
|
223
|
-
&:before {
|
|
224
|
-
content: $icon-grid-dot-square;
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
.icon-column-edit {
|
|
228
|
-
&:before {
|
|
229
|
-
content: $icon-column-edit;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
.icon-molecule {
|
|
233
|
-
&:before {
|
|
234
|
-
content: $icon-molecule;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
.icon-invoice-checkmark-paid {
|
|
238
|
-
&:before {
|
|
239
|
-
content: $icon-invoice-checkmark-paid;
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
.icon-invoice {
|
|
243
|
-
&:before {
|
|
244
|
-
content: $icon-invoice;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
.icon-pause {
|
|
248
|
-
&:before {
|
|
249
|
-
content: $icon-pause;
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
.icon-calendar-arrow-left-center {
|
|
253
|
-
&:before {
|
|
254
|
-
content: $icon-calendar-arrow-left-center;
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
.icon-file-blank-image-load-mask {
|
|
258
|
-
&:before {
|
|
259
|
-
content: $icon-file-blank-image-load-mask;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
.icon-closed-freehand-vector-poly {
|
|
263
|
-
&:before {
|
|
264
|
-
content: $icon-closed-freehand-vector-poly;
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
.icon-curve-object-secet-cursor {
|
|
268
|
-
&:before {
|
|
269
|
-
content: $icon-curve-object-secet-cursor;
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
.icon-freehand-vector-poly {
|
|
273
|
-
&:before {
|
|
274
|
-
content: $icon-freehand-vector-poly;
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
.icon-pen-edit-circle {
|
|
278
|
-
&:before {
|
|
279
|
-
content: $icon-pen-edit-circle;
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
.icon-code-block-embed {
|
|
283
|
-
&:before {
|
|
284
|
-
content: $icon-code-block-embed;
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
.icon-italic {
|
|
288
|
-
&:before {
|
|
289
|
-
content: $icon-italic;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
.icon-list-paragraph-number {
|
|
293
|
-
&:before {
|
|
294
|
-
content: $icon-list-paragraph-number;
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
.icon-list-paragraph {
|
|
298
|
-
&:before {
|
|
299
|
-
content: $icon-list-paragraph;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
.icon-text-bold {
|
|
303
|
-
&:before {
|
|
304
|
-
content: $icon-text-bold;
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
.icon-text-cross {
|
|
308
|
-
&:before {
|
|
309
|
-
content: $icon-text-cross;
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
.icon-text-h1 {
|
|
313
|
-
&:before {
|
|
314
|
-
content: $icon-text-h1;
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
.icon-text-h2 {
|
|
318
|
-
&:before {
|
|
319
|
-
content: $icon-text-h2;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
.icon-text-underline {
|
|
323
|
-
&:before {
|
|
324
|
-
content: $icon-text-underline;
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
.icon-twitter {
|
|
328
|
-
&:before {
|
|
329
|
-
content: $icon-twitter;
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
.icon-smiley-emoji-face {
|
|
333
|
-
&:before {
|
|
334
|
-
content: $icon-smiley-emoji-face;
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
.icon-exchange {
|
|
338
|
-
&:before {
|
|
339
|
-
content: $icon-exchange;
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
.icon-markdown {
|
|
343
|
-
&:before {
|
|
344
|
-
content: $icon-markdown;
|
|
345
|
-
}
|
|
346
|
-
}
|
|
347
|
-
.icon-quote {
|
|
348
|
-
&:before {
|
|
349
|
-
content: $icon-quote;
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
.icon-measure-ruler-calibration {
|
|
353
|
-
&:before {
|
|
354
|
-
content: $icon-measure-ruler-calibration;
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
.icon-zendesk-logo {
|
|
358
|
-
&:before {
|
|
359
|
-
content: $icon-zendesk-logo;
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
.icon-add-server-databases-endpoint {
|
|
363
|
-
&:before {
|
|
364
|
-
content: $icon-add-server-databases-endpoint;
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
.icon-cloud-network-add {
|
|
368
|
-
&:before {
|
|
369
|
-
content: $icon-cloud-network-add;
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
.icon-server-database-endpoint {
|
|
373
|
-
&:before {
|
|
374
|
-
content: $icon-server-database-endpoint;
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
.icon-book-lab-flask {
|
|
378
|
-
&:before {
|
|
379
|
-
content: $icon-book-lab-flask;
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
.icon-list-test-lab-flask {
|
|
383
|
-
&:before {
|
|
384
|
-
content: $icon-list-test-lab-flask;
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
.icon-test-lab-flask {
|
|
388
|
-
&:before {
|
|
389
|
-
content: $icon-test-lab-flask;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
.icon-message-checkmark-sent {
|
|
393
|
-
&:before {
|
|
394
|
-
content: $icon-message-checkmark-sent;
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
.icon-send-message-share {
|
|
398
|
-
&:before {
|
|
399
|
-
content: $icon-send-message-share;
|
|
400
|
-
}
|
|
401
|
-
}
|
|
402
|
-
.icon-flywheel-mark-logo {
|
|
403
|
-
&:before {
|
|
404
|
-
content: $icon-flywheel-mark-logo;
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
.icon-speed-dashboard {
|
|
408
|
-
&:before {
|
|
409
|
-
content: $icon-speed-dashboard;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
.icon-arrange-filter-sort {
|
|
413
|
-
&:before {
|
|
414
|
-
content: $icon-arrange-filter-sort;
|
|
415
|
-
}
|
|
416
|
-
}
|
|
417
|
-
.icon-delivery-shipment-packages {
|
|
418
|
-
&:before {
|
|
419
|
-
content: $icon-delivery-shipment-packages;
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
.icon-color-ven-design-profile-central {
|
|
423
|
-
&:before {
|
|
424
|
-
content: $icon-color-ven-design-profile-central;
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
.icon-home-modern-door {
|
|
428
|
-
&:before {
|
|
429
|
-
content: $icon-home-modern-door;
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
.icon-tasklist-to-do-checkmark {
|
|
433
|
-
&:before {
|
|
434
|
-
content: $icon-tasklist-to-do-checkmark;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
.icon-user-profile-group-discovery {
|
|
438
|
-
&:before {
|
|
439
|
-
content: $icon-user-profile-group-discovery;
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
.icon-flip-horizontal {
|
|
443
|
-
&:before {
|
|
444
|
-
content: $icon-flip-horizontal;
|
|
445
|
-
}
|
|
446
|
-
}
|
|
447
|
-
.icon-flip-vertical {
|
|
448
|
-
&:before {
|
|
449
|
-
content: $icon-flip-vertical;
|
|
450
|
-
}
|
|
451
|
-
}
|
|
452
|
-
.icon-facebook {
|
|
453
|
-
&:before {
|
|
454
|
-
content: $icon-facebook;
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
.icon-github-color-login {
|
|
458
|
-
&:before {
|
|
459
|
-
content: $icon-github-color-login;
|
|
460
|
-
}
|
|
461
|
-
}
|
|
462
|
-
.icon-linkedin {
|
|
463
|
-
&:before {
|
|
464
|
-
content: $icon-linkedin;
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
.icon-youtube {
|
|
468
|
-
&:before {
|
|
469
|
-
content: $icon-youtube;
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
.icon-server-databases-connect {
|
|
473
|
-
&:before {
|
|
474
|
-
content: $icon-server-databases-connect;
|
|
475
|
-
}
|
|
476
|
-
}
|
|
477
|
-
.icon-server-databases-download {
|
|
478
|
-
&:before {
|
|
479
|
-
content: $icon-server-databases-download;
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
.icon-server-databases-minimal-download {
|
|
483
|
-
&:before {
|
|
484
|
-
content: $icon-server-databases-minimal-download;
|
|
485
|
-
}
|
|
486
|
-
}
|
|
487
|
-
.icon-server-databases-sync {
|
|
488
|
-
&:before {
|
|
489
|
-
content: $icon-server-databases-sync;
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
.icon-graduate-hat {
|
|
493
|
-
&:before {
|
|
494
|
-
content: $icon-graduate-hat;
|
|
495
|
-
}
|
|
496
|
-
}
|
|
497
|
-
.icon-blocks-code-test-checkmark {
|
|
498
|
-
&:before {
|
|
499
|
-
content: $icon-blocks-code-test-checkmark;
|
|
500
|
-
}
|
|
501
|
-
}
|
|
502
|
-
.icon-camera-photo-capture {
|
|
503
|
-
&:before {
|
|
504
|
-
content: $icon-camera-photo-capture;
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
.icon-photo-edit-brightness-invert {
|
|
508
|
-
&:before {
|
|
509
|
-
content: $icon-photo-edit-brightness-invert;
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
.icon-unlimited-repeat-subscription-circle {
|
|
513
|
-
&:before {
|
|
514
|
-
content: $icon-unlimited-repeat-subscription-circle;
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
.icon-mute {
|
|
518
|
-
&:before {
|
|
519
|
-
content: $icon-mute;
|
|
520
|
-
}
|
|
521
|
-
}
|
|
522
|
-
.icon-volume-full {
|
|
523
|
-
&:before {
|
|
524
|
-
content: $icon-volume-full;
|
|
525
|
-
}
|
|
526
|
-
}
|
|
527
|
-
.icon-hand-money-currency {
|
|
528
|
-
&:before {
|
|
529
|
-
content: $icon-hand-money-currency;
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
.icon-bookmark-plus-add {
|
|
533
|
-
&:before {
|
|
534
|
-
content: $icon-bookmark-plus-add;
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
.icon-circle {
|
|
538
|
-
&:before {
|
|
539
|
-
content: $icon-circle;
|
|
540
|
-
}
|
|
541
|
-
}
|
|
542
|
-
.icon-clip-attachment {
|
|
543
|
-
&:before {
|
|
544
|
-
content: $icon-clip-attachment;
|
|
545
|
-
}
|
|
546
|
-
}
|
|
547
|
-
.icon-code-text {
|
|
548
|
-
&:before {
|
|
549
|
-
content: $icon-code-text;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
.icon-document-status-done-checkmark {
|
|
553
|
-
&:before {
|
|
554
|
-
content: $icon-document-status-done-checkmark;
|
|
555
|
-
}
|
|
556
|
-
}
|
|
557
|
-
.icon-done-check-tracked {
|
|
558
|
-
&:before {
|
|
559
|
-
content: $icon-done-check-tracked;
|
|
560
|
-
}
|
|
561
|
-
}
|
|
562
|
-
.icon-home-modern-option-lines {
|
|
563
|
-
&:before {
|
|
564
|
-
content: $icon-home-modern-option-lines;
|
|
565
|
-
}
|
|
566
|
-
}
|
|
567
|
-
.icon-keyboard {
|
|
568
|
-
&:before {
|
|
569
|
-
content: $icon-keyboard;
|
|
570
|
-
}
|
|
571
|
-
}
|
|
572
|
-
.icon-line {
|
|
573
|
-
&:before {
|
|
574
|
-
content: $icon-line;
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
.icon-link-unlink {
|
|
578
|
-
&:before {
|
|
579
|
-
content: $icon-link-unlink;
|
|
580
|
-
}
|
|
581
|
-
}
|
|
582
|
-
.icon-measure-angle {
|
|
583
|
-
&:before {
|
|
584
|
-
content: $icon-measure-angle;
|
|
585
|
-
}
|
|
586
|
-
}
|
|
587
|
-
.icon-media-library-imports-dowload {
|
|
588
|
-
&:before {
|
|
589
|
-
content: $icon-media-library-imports-dowload;
|
|
590
|
-
}
|
|
591
|
-
}
|
|
592
|
-
.icon-message-chat-info {
|
|
593
|
-
&:before {
|
|
594
|
-
content: $icon-message-chat-info;
|
|
595
|
-
}
|
|
596
|
-
}
|
|
597
|
-
.icon-microphone-mic-rec-circle {
|
|
598
|
-
&:before {
|
|
599
|
-
content: $icon-microphone-mic-rec-circle;
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
.icon-microphone-mic-rec {
|
|
603
|
-
&:before {
|
|
604
|
-
content: $icon-microphone-mic-rec;
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
.icon-microphone-mic-recording-circle {
|
|
608
|
-
&:before {
|
|
609
|
-
content: $icon-microphone-mic-recording-circle;
|
|
610
|
-
}
|
|
611
|
-
}
|
|
612
|
-
.icon-pie-graph-chart-sample {
|
|
613
|
-
&:before {
|
|
614
|
-
content: $icon-pie-graph-chart-sample;
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
.icon-plus-add-rectangle {
|
|
618
|
-
&:before {
|
|
619
|
-
content: $icon-plus-add-rectangle;
|
|
620
|
-
}
|
|
621
|
-
}
|
|
622
|
-
.icon-polygon {
|
|
623
|
-
&:before {
|
|
624
|
-
content: $icon-polygon;
|
|
625
|
-
}
|
|
626
|
-
}
|
|
627
|
-
.icon-rotate-arrow-manual {
|
|
628
|
-
&:before {
|
|
629
|
-
content: $icon-rotate-arrow-manual;
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
.icon-rotate-item-left {
|
|
633
|
-
&:before {
|
|
634
|
-
content: $icon-rotate-item-left;
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
.icon-rotate-item-right {
|
|
638
|
-
&:before {
|
|
639
|
-
content: $icon-rotate-item-right;
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
.icon-stars-light-sparkle {
|
|
643
|
-
&:before {
|
|
644
|
-
content: $icon-stars-light-sparkle;
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
.icon-undone-uncheck-untracked {
|
|
648
|
-
&:before {
|
|
649
|
-
content: $icon-undone-uncheck-untracked;
|
|
650
|
-
}
|
|
651
|
-
}
|
|
652
|
-
.icon-clap-applause-hands {
|
|
653
|
-
&:before {
|
|
654
|
-
content: $icon-clap-applause-hands;
|
|
655
|
-
}
|
|
656
|
-
}
|
|
657
|
-
.icon-email-mail-checkmark-group {
|
|
658
|
-
&:before {
|
|
659
|
-
content: $icon-email-mail-checkmark-group;
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
.icon-circle-ellipses {
|
|
663
|
-
&:before {
|
|
664
|
-
content: $icon-circle-ellipses;
|
|
665
|
-
}
|
|
666
|
-
}
|
|
667
|
-
.icon-crosshair {
|
|
668
|
-
&:before {
|
|
669
|
-
content: $icon-crosshair;
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
.icon-cursor-select {
|
|
673
|
-
&:before {
|
|
674
|
-
content: $icon-cursor-select;
|
|
675
|
-
}
|
|
676
|
-
}
|
|
677
|
-
.icon-draw-rectangle {
|
|
678
|
-
&:before {
|
|
679
|
-
content: $icon-draw-rectangle;
|
|
680
|
-
}
|
|
681
|
-
}
|
|
682
|
-
.icon-ruler-bidirectional {
|
|
683
|
-
&:before {
|
|
684
|
-
content: $icon-ruler-bidirectional;
|
|
685
|
-
}
|
|
686
|
-
}
|
|
687
|
-
.icon-ruler {
|
|
688
|
-
&:before {
|
|
689
|
-
content: $icon-ruler;
|
|
690
|
-
}
|
|
691
|
-
}
|
|
692
|
-
.icon-workspace-mode {
|
|
693
|
-
&:before {
|
|
694
|
-
content: $icon-workspace-mode;
|
|
695
|
-
}
|
|
696
|
-
}
|
|
697
|
-
.icon-creative-commons {
|
|
698
|
-
&:before {
|
|
699
|
-
content: $icon-creative-commons;
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
.icon-free-rights {
|
|
703
|
-
&:before {
|
|
704
|
-
content: $icon-free-rights;
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
.icon-hammer-screwdriver {
|
|
708
|
-
&:before {
|
|
709
|
-
content: $icon-hammer-screwdriver;
|
|
710
|
-
}
|
|
711
|
-
}
|
|
712
|
-
.icon-arrow-annotate {
|
|
713
|
-
&:before {
|
|
714
|
-
content: $icon-arrow-annotate;
|
|
715
|
-
}
|
|
716
|
-
}
|
|
717
|
-
.icon-arrow {
|
|
718
|
-
&:before {
|
|
719
|
-
content: $icon-arrow;
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
.icon-notebook-open {
|
|
723
|
-
&:before {
|
|
724
|
-
content: $icon-notebook-open;
|
|
725
|
-
}
|
|
726
|
-
}
|
|
727
|
-
.icon-windows {
|
|
728
|
-
&:before {
|
|
729
|
-
content: $icon-windows;
|
|
730
|
-
}
|
|
731
|
-
}
|
|
732
|
-
.icon-add-new-create {
|
|
733
|
-
&:before {
|
|
734
|
-
content: $icon-add-new-create;
|
|
735
|
-
}
|
|
736
|
-
}
|
|
737
|
-
.icon-add-row-above {
|
|
738
|
-
&:before {
|
|
739
|
-
content: $icon-add-row-above;
|
|
740
|
-
}
|
|
741
|
-
}
|
|
742
|
-
.icon-add-row-below {
|
|
743
|
-
&:before {
|
|
744
|
-
content: $icon-add-row-below;
|
|
745
|
-
}
|
|
746
|
-
}
|
|
747
|
-
.icon-arrow-rotate-restore {
|
|
748
|
-
&:before {
|
|
749
|
-
content: $icon-arrow-rotate-restore;
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
.icon-arrow-rotate {
|
|
753
|
-
&:before {
|
|
754
|
-
content: $icon-arrow-rotate;
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
.icon-arrow-back-collapse {
|
|
758
|
-
&:before {
|
|
759
|
-
content: $icon-arrow-back-collapse;
|
|
760
|
-
}
|
|
761
|
-
}
|
|
762
|
-
.icon-arrow-forward-collapse {
|
|
763
|
-
&:before {
|
|
764
|
-
content: $icon-arrow-forward-collapse;
|
|
765
|
-
}
|
|
766
|
-
}
|
|
767
|
-
.icon-barcode-serial {
|
|
768
|
-
&:before {
|
|
769
|
-
content: $icon-barcode-serial;
|
|
770
|
-
}
|
|
771
|
-
}
|
|
772
|
-
.icon-barcode-stack-scan {
|
|
773
|
-
&:before {
|
|
774
|
-
content: $icon-barcode-stack-scan;
|
|
775
|
-
}
|
|
776
|
-
}
|
|
777
|
-
.icon-button-form-element {
|
|
778
|
-
&:before {
|
|
779
|
-
content: $icon-button-form-element;
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
.icon-calendar-schedule {
|
|
783
|
-
&:before {
|
|
784
|
-
content: $icon-calendar-schedule;
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
.icon-chat-messages-bubble {
|
|
788
|
-
&:before {
|
|
789
|
-
content: $icon-chat-messages-bubble;
|
|
790
|
-
}
|
|
791
|
-
}
|
|
792
|
-
.icon-checklist-tasks-chechmark-square {
|
|
793
|
-
&:before {
|
|
794
|
-
content: $icon-checklist-tasks-chechmark-square;
|
|
795
|
-
}
|
|
796
|
-
}
|
|
797
|
-
.icon-color-design-profile {
|
|
798
|
-
&:before {
|
|
799
|
-
content: $icon-color-design-profile;
|
|
800
|
-
}
|
|
801
|
-
}
|
|
802
|
-
.icon-computer-chip {
|
|
803
|
-
&:before {
|
|
804
|
-
content: $icon-computer-chip;
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
.icon-contrast-photo-edit {
|
|
808
|
-
&:before {
|
|
809
|
-
content: $icon-contrast-photo-edit;
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
.icon-document-file-list-protocol {
|
|
813
|
-
&:before {
|
|
814
|
-
content: $icon-document-file-list-protocol;
|
|
815
|
-
}
|
|
816
|
-
}
|
|
817
|
-
.icon-drag-drop-indicator {
|
|
818
|
-
&:before {
|
|
819
|
-
content: $icon-drag-drop-indicator;
|
|
820
|
-
}
|
|
821
|
-
}
|
|
822
|
-
.icon-form-metadata-element {
|
|
823
|
-
&:before {
|
|
824
|
-
content: $icon-form-metadata-element;
|
|
825
|
-
}
|
|
826
|
-
}
|
|
827
|
-
.icon-full-screen-zoom {
|
|
828
|
-
&:before {
|
|
829
|
-
content: $icon-full-screen-zoom;
|
|
830
|
-
}
|
|
831
|
-
}
|
|
832
|
-
.icon-layout {
|
|
833
|
-
&:before {
|
|
834
|
-
content: $icon-layout;
|
|
835
|
-
}
|
|
836
|
-
}
|
|
837
|
-
.icon-header-form-element {
|
|
838
|
-
&:before {
|
|
839
|
-
content: $icon-header-form-element;
|
|
840
|
-
}
|
|
841
|
-
}
|
|
842
|
-
.icon-human-artificial-intelligence {
|
|
843
|
-
&:before {
|
|
844
|
-
content: $icon-human-artificial-intelligence;
|
|
845
|
-
}
|
|
846
|
-
}
|
|
847
|
-
.icon-image-photo-copy-left-down {
|
|
848
|
-
&:before {
|
|
849
|
-
content: $icon-image-photo-copy-left-down;
|
|
850
|
-
}
|
|
851
|
-
}
|
|
852
|
-
.icon-image-picture-square {
|
|
853
|
-
&:before {
|
|
854
|
-
content: $icon-image-picture-square;
|
|
855
|
-
}
|
|
856
|
-
}
|
|
857
|
-
.icon-items-group-elements {
|
|
858
|
-
&:before {
|
|
859
|
-
content: $icon-items-group-elements;
|
|
860
|
-
}
|
|
861
|
-
}
|
|
862
|
-
.icon-layers {
|
|
863
|
-
&:before {
|
|
864
|
-
content: $icon-layers;
|
|
865
|
-
}
|
|
866
|
-
}
|
|
867
|
-
.icon-menu-burger-handle {
|
|
868
|
-
&:before {
|
|
869
|
-
content: $icon-menu-burger-handle;
|
|
870
|
-
}
|
|
871
|
-
}
|
|
872
|
-
.icon-menu-list-form-square {
|
|
873
|
-
&:before {
|
|
874
|
-
content: $icon-menu-list-form-square;
|
|
875
|
-
}
|
|
876
|
-
}
|
|
877
|
-
.icon-message-chat-question-support {
|
|
878
|
-
&:before {
|
|
879
|
-
content: $icon-message-chat-question-support;
|
|
880
|
-
}
|
|
881
|
-
}
|
|
882
|
-
.icon-message-question-checkmark {
|
|
883
|
-
&:before {
|
|
884
|
-
content: $icon-message-question-checkmark;
|
|
885
|
-
}
|
|
886
|
-
}
|
|
887
|
-
.icon-minus {
|
|
888
|
-
&:before {
|
|
889
|
-
content: $icon-minus;
|
|
890
|
-
}
|
|
891
|
-
}
|
|
892
|
-
.icon-mouse-big {
|
|
893
|
-
&:before {
|
|
894
|
-
content: $icon-mouse-big;
|
|
895
|
-
}
|
|
896
|
-
}
|
|
897
|
-
.icon-move {
|
|
898
|
-
&:before {
|
|
899
|
-
content: $icon-move;
|
|
900
|
-
}
|
|
901
|
-
}
|
|
902
|
-
.icon-music-play-resume {
|
|
903
|
-
&:before {
|
|
904
|
-
content: $icon-music-play-resume;
|
|
905
|
-
}
|
|
906
|
-
}
|
|
907
|
-
.icon-music-stop {
|
|
908
|
-
&:before {
|
|
909
|
-
content: $icon-music-stop;
|
|
910
|
-
}
|
|
911
|
-
}
|
|
912
|
-
.icon-notebook-add-plus {
|
|
913
|
-
&:before {
|
|
914
|
-
content: $icon-notebook-add-plus;
|
|
915
|
-
}
|
|
916
|
-
}
|
|
917
|
-
.icon-notebook-pen-edit {
|
|
918
|
-
&:before {
|
|
919
|
-
content: $icon-notebook-pen-edit;
|
|
920
|
-
}
|
|
921
|
-
}
|
|
922
|
-
.icon-notebook {
|
|
923
|
-
&:before {
|
|
924
|
-
content: $icon-notebook;
|
|
925
|
-
}
|
|
926
|
-
}
|
|
927
|
-
.icon-notes-pen {
|
|
928
|
-
&:before {
|
|
929
|
-
content: $icon-notes-pen;
|
|
930
|
-
}
|
|
931
|
-
}
|
|
932
|
-
.icon-object-search-zoom-plus {
|
|
933
|
-
&:before {
|
|
934
|
-
content: $icon-object-search-zoom-plus;
|
|
935
|
-
}
|
|
936
|
-
}
|
|
937
|
-
.icon-pencil-edit-create {
|
|
938
|
-
&:before {
|
|
939
|
-
content: $icon-pencil-edit-create;
|
|
940
|
-
}
|
|
941
|
-
}
|
|
942
|
-
.icon-protection-target {
|
|
943
|
-
&:before {
|
|
944
|
-
content: $icon-protection-target;
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
.icon-rotate {
|
|
948
|
-
&:before {
|
|
949
|
-
content: $icon-rotate;
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
.icon-scanner {
|
|
953
|
-
&:before {
|
|
954
|
-
content: $icon-scanner;
|
|
955
|
-
}
|
|
956
|
-
}
|
|
957
|
-
.icon-search-user-profile-person {
|
|
958
|
-
&:before {
|
|
959
|
-
content: $icon-search-user-profile-person;
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
.icon-search-zoom-minus {
|
|
963
|
-
&:before {
|
|
964
|
-
content: $icon-search-zoom-minus;
|
|
965
|
-
}
|
|
966
|
-
}
|
|
967
|
-
.icon-search-zoom-plus {
|
|
968
|
-
&:before {
|
|
969
|
-
content: $icon-search-zoom-plus;
|
|
970
|
-
}
|
|
971
|
-
}
|
|
972
|
-
.icon-section-form-element {
|
|
973
|
-
&:before {
|
|
974
|
-
content: $icon-section-form-element;
|
|
975
|
-
}
|
|
976
|
-
}
|
|
977
|
-
.icon-server-databases-key-protection {
|
|
978
|
-
&:before {
|
|
979
|
-
content: $icon-server-databases-key-protection;
|
|
980
|
-
}
|
|
981
|
-
}
|
|
982
|
-
.icon-server-databases-sync-import {
|
|
983
|
-
&:before {
|
|
984
|
-
content: $icon-server-databases-sync-import;
|
|
985
|
-
}
|
|
986
|
-
}
|
|
987
|
-
.icon-servers-database {
|
|
988
|
-
&:before {
|
|
989
|
-
content: $icon-servers-database;
|
|
990
|
-
}
|
|
991
|
-
}
|
|
992
|
-
.icon-target {
|
|
993
|
-
&:before {
|
|
994
|
-
content: $icon-target;
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
.icon-text-long {
|
|
998
|
-
&:before {
|
|
999
|
-
content: $icon-text-long;
|
|
1000
|
-
}
|
|
1001
|
-
}
|
|
1002
|
-
.icon-text-short-form-element {
|
|
1003
|
-
&:before {
|
|
1004
|
-
content: $icon-text-short-form-element;
|
|
1005
|
-
}
|
|
1006
|
-
}
|
|
1007
|
-
.icon-timer-clock-style {
|
|
1008
|
-
&:before {
|
|
1009
|
-
content: $icon-timer-clock-style;
|
|
1010
|
-
}
|
|
1011
|
-
}
|
|
1012
|
-
.icon-user-document {
|
|
1013
|
-
&:before {
|
|
1014
|
-
content: $icon-user-document;
|
|
1015
|
-
}
|
|
1016
|
-
}
|
|
1017
|
-
.icon-video-player-controls {
|
|
1018
|
-
&:before {
|
|
1019
|
-
content: $icon-video-player-controls;
|
|
1020
|
-
}
|
|
1021
|
-
}
|
|
1022
|
-
.icon-visible-eye-hidden {
|
|
1023
|
-
&:before {
|
|
1024
|
-
content: $icon-visible-eye-hidden;
|
|
1025
|
-
}
|
|
1026
|
-
}
|
|
1027
|
-
.icon-window-finder-resize-arrow-down {
|
|
1028
|
-
&:before {
|
|
1029
|
-
content: $icon-window-finder-resize-arrow-down;
|
|
1030
|
-
}
|
|
1031
|
-
}
|
|
1032
|
-
.icon-window-finder-resize-arrow-up {
|
|
1033
|
-
&:before {
|
|
1034
|
-
content: $icon-window-finder-resize-arrow-up;
|
|
1035
|
-
}
|
|
1036
|
-
}
|
|
1037
|
-
.icon-window-resize-left {
|
|
1038
|
-
&:before {
|
|
1039
|
-
content: $icon-window-resize-left;
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
.icon-window-resize-right {
|
|
1043
|
-
&:before {
|
|
1044
|
-
content: $icon-window-resize-right;
|
|
1045
|
-
}
|
|
1046
|
-
}
|
|
1047
|
-
.icon-window-zoom-plus-loupe {
|
|
1048
|
-
&:before {
|
|
1049
|
-
content: $icon-window-zoom-plus-loupe;
|
|
1050
|
-
}
|
|
1051
|
-
}
|
|
1052
|
-
.icon-laptop-health-medical-cross {
|
|
1053
|
-
&:before {
|
|
1054
|
-
content: $icon-laptop-health-medical-cross;
|
|
1055
|
-
}
|
|
1056
|
-
}
|
|
1057
|
-
.icon-radiology-scan-circle {
|
|
1058
|
-
&:before {
|
|
1059
|
-
content: $icon-radiology-scan-circle;
|
|
1060
|
-
}
|
|
1061
|
-
}
|
|
1062
|
-
.icon-money-coin {
|
|
1063
|
-
&:before {
|
|
1064
|
-
content: $icon-money-coin;
|
|
1065
|
-
}
|
|
1066
|
-
}
|
|
1067
|
-
.icon-brain {
|
|
1068
|
-
&:before {
|
|
1069
|
-
content: $icon-brain;
|
|
1070
|
-
}
|
|
1071
|
-
}
|
|
1072
|
-
.icon-dna-hospital-medical {
|
|
1073
|
-
&:before {
|
|
1074
|
-
content: $icon-dna-hospital-medical;
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
.icon-lung {
|
|
1078
|
-
&:before {
|
|
1079
|
-
content: $icon-lung;
|
|
1080
|
-
}
|
|
1081
|
-
}
|
|
1082
|
-
.icon-lungs {
|
|
1083
|
-
&:before {
|
|
1084
|
-
content: $icon-lungs;
|
|
1085
|
-
}
|
|
1086
|
-
}
|
|
1087
|
-
.icon-protective-mask {
|
|
1088
|
-
&:before {
|
|
1089
|
-
content: $icon-protective-mask;
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
.icon-radiology-scan {
|
|
1093
|
-
&:before {
|
|
1094
|
-
content: $icon-radiology-scan;
|
|
1095
|
-
}
|
|
1096
|
-
}
|
|
1097
|
-
.icon-stomach {
|
|
1098
|
-
&:before {
|
|
1099
|
-
content: $icon-stomach;
|
|
1100
|
-
}
|
|
1101
|
-
}
|
|
1102
|
-
.icon-cash-banknotes {
|
|
1103
|
-
&:before {
|
|
1104
|
-
content: $icon-cash-banknotes;
|
|
1105
|
-
}
|
|
1106
|
-
}
|
|
1107
|
-
.icon-money-dollar {
|
|
1108
|
-
&:before {
|
|
1109
|
-
content: $icon-money-dollar;
|
|
1110
|
-
}
|
|
1111
|
-
}
|
|
1112
|
-
.icon-money {
|
|
1113
|
-
&:before {
|
|
1114
|
-
content: $icon-money;
|
|
1115
|
-
}
|
|
1116
|
-
}
|
|
1117
|
-
.icon-cloud-storage-checkmark {
|
|
1118
|
-
&:before {
|
|
1119
|
-
content: $icon-cloud-storage-checkmark;
|
|
1120
|
-
}
|
|
1121
|
-
}
|
|
1122
|
-
.icon-modalities {
|
|
1123
|
-
&:before {
|
|
1124
|
-
content: $icon-modalities;
|
|
1125
|
-
}
|
|
1126
|
-
}
|
|
1127
|
-
.icon-search-loop {
|
|
1128
|
-
&:before {
|
|
1129
|
-
content: $icon-search-loop;
|
|
1130
|
-
}
|
|
1131
|
-
}
|
|
1132
|
-
.icon-question-circle {
|
|
1133
|
-
&:before {
|
|
1134
|
-
content: $icon-question-circle;
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
.icon-earth-globe-fail {
|
|
1138
|
-
&:before {
|
|
1139
|
-
content: $icon-earth-globe-fail;
|
|
1140
|
-
}
|
|
1141
|
-
}
|
|
1142
|
-
.icon-user-setting-gear {
|
|
1143
|
-
&:before {
|
|
1144
|
-
content: $icon-user-setting-gear;
|
|
1145
|
-
}
|
|
1146
|
-
}
|
|
1147
|
-
.icon-user-delete-cross {
|
|
1148
|
-
&:before {
|
|
1149
|
-
content: $icon-user-delete-cross;
|
|
1150
|
-
}
|
|
1151
|
-
}
|
|
1152
|
-
.icon-apply-copy-duplicate {
|
|
1153
|
-
&:before {
|
|
1154
|
-
content: $icon-apply-copy-duplicate;
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
.icon-arrow-down {
|
|
1158
|
-
&:before {
|
|
1159
|
-
content: $icon-arrow-down;
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
|
-
.icon-arrow-up {
|
|
1163
|
-
&:before {
|
|
1164
|
-
content: $icon-arrow-up;
|
|
1165
|
-
}
|
|
1166
|
-
}
|
|
1167
|
-
.icon-grid-layout {
|
|
1168
|
-
&:before {
|
|
1169
|
-
content: $icon-grid-layout;
|
|
1170
|
-
}
|
|
1171
|
-
}
|
|
1172
|
-
.icon-folder-blank {
|
|
1173
|
-
&:before {
|
|
1174
|
-
content: $icon-folder-blank;
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
.icon-folder-group {
|
|
1178
|
-
&:before {
|
|
1179
|
-
content: $icon-folder-group;
|
|
1180
|
-
}
|
|
1181
|
-
}
|
|
1182
|
-
.icon-file-text {
|
|
1183
|
-
&:before {
|
|
1184
|
-
content: $icon-file-text;
|
|
1185
|
-
}
|
|
1186
|
-
}
|
|
1187
|
-
.icon-edit-boxed {
|
|
1188
|
-
&:before {
|
|
1189
|
-
content: $icon-edit-boxed;
|
|
1190
|
-
}
|
|
1191
|
-
}
|
|
1192
|
-
.icon-chart-trend-square {
|
|
1193
|
-
&:before {
|
|
1194
|
-
content: $icon-chart-trend-square;
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
.icon-layout-grid {
|
|
1198
|
-
&:before {
|
|
1199
|
-
content: $icon-layout-grid;
|
|
1200
|
-
}
|
|
1201
|
-
}
|
|
1202
|
-
.icon-files-library-content {
|
|
1203
|
-
&:before {
|
|
1204
|
-
content: $icon-files-library-content;
|
|
1205
|
-
}
|
|
1206
|
-
}
|
|
1207
|
-
.icon-user-lock {
|
|
1208
|
-
&:before {
|
|
1209
|
-
content: $icon-user-lock;
|
|
1210
|
-
}
|
|
1211
|
-
}
|
|
1212
|
-
.icon-lock {
|
|
1213
|
-
&:before {
|
|
1214
|
-
content: $icon-lock;
|
|
1215
|
-
}
|
|
1216
|
-
}
|
|
1217
|
-
.icon-add-user {
|
|
1218
|
-
&:before {
|
|
1219
|
-
content: $icon-add-user;
|
|
1220
|
-
}
|
|
1221
|
-
}
|
|
1222
|
-
.icon-user-checked {
|
|
1223
|
-
&:before {
|
|
1224
|
-
content: $icon-user-checked;
|
|
1225
|
-
}
|
|
1226
|
-
}
|
|
1227
|
-
.icon-user-group {
|
|
1228
|
-
&:before {
|
|
1229
|
-
content: $icon-user-group;
|
|
1230
|
-
}
|
|
1231
|
-
}
|
|
1232
|
-
.icon-user-key {
|
|
1233
|
-
&:before {
|
|
1234
|
-
content: $icon-user-key;
|
|
1235
|
-
}
|
|
1236
|
-
}
|
|
1237
|
-
.icon-thumbs-up-like {
|
|
1238
|
-
&:before {
|
|
1239
|
-
content: $icon-thumbs-up-like;
|
|
1240
|
-
}
|
|
1241
|
-
}
|
|
1242
|
-
.icon-apple {
|
|
1243
|
-
&:before {
|
|
1244
|
-
content: $icon-apple;
|
|
1245
|
-
}
|
|
1246
|
-
}
|
|
1247
|
-
.icon-gitlab {
|
|
1248
|
-
&:before {
|
|
1249
|
-
content: $icon-gitlab;
|
|
1250
|
-
}
|
|
1251
|
-
}
|
|
1252
|
-
.icon-linux {
|
|
1253
|
-
&:before {
|
|
1254
|
-
content: $icon-linux;
|
|
1255
|
-
}
|
|
1256
|
-
}
|
|
1257
|
-
.icon-add-server {
|
|
1258
|
-
&:before {
|
|
1259
|
-
content: $icon-add-server;
|
|
1260
|
-
}
|
|
1261
|
-
}
|
|
1262
|
-
.icon-server-checkmark {
|
|
1263
|
-
&:before {
|
|
1264
|
-
content: $icon-server-checkmark;
|
|
1265
|
-
}
|
|
1266
|
-
}
|
|
1267
|
-
.icon-server-upload {
|
|
1268
|
-
&:before {
|
|
1269
|
-
content: $icon-server-upload;
|
|
1270
|
-
}
|
|
1271
|
-
}
|
|
1272
|
-
.icon-server {
|
|
1273
|
-
&:before {
|
|
1274
|
-
content: $icon-server;
|
|
1275
|
-
}
|
|
1276
|
-
}
|
|
1277
|
-
.icon-data-tree {
|
|
1278
|
-
&:before {
|
|
1279
|
-
content: $icon-data-tree;
|
|
1280
|
-
}
|
|
1281
|
-
}
|
|
1282
|
-
.icon-add-circle {
|
|
1283
|
-
&:before {
|
|
1284
|
-
content: $icon-add-circle;
|
|
1285
|
-
}
|
|
1286
|
-
}
|
|
1287
|
-
.icon-bell-notification {
|
|
1288
|
-
&:before {
|
|
1289
|
-
content: $icon-bell-notification;
|
|
1290
|
-
}
|
|
1291
|
-
}
|
|
1292
|
-
.icon-bookmark {
|
|
1293
|
-
&:before {
|
|
1294
|
-
content: $icon-bookmark;
|
|
1295
|
-
}
|
|
1296
|
-
}
|
|
1297
|
-
.icon-chart-square {
|
|
1298
|
-
&:before {
|
|
1299
|
-
content: $icon-chart-square;
|
|
1300
|
-
}
|
|
1301
|
-
}
|
|
1302
|
-
.icon-checklist {
|
|
1303
|
-
&:before {
|
|
1304
|
-
content: $icon-checklist;
|
|
1305
|
-
}
|
|
1306
|
-
}
|
|
1307
|
-
.icon-clock-history {
|
|
1308
|
-
&:before {
|
|
1309
|
-
content: $icon-clock-history;
|
|
1310
|
-
}
|
|
1311
|
-
}
|
|
1312
|
-
.icon-clock-loading {
|
|
1313
|
-
&:before {
|
|
1314
|
-
content: $icon-clock-loading;
|
|
1315
|
-
}
|
|
1316
|
-
}
|
|
1317
|
-
.icon-close-circled {
|
|
1318
|
-
&:before {
|
|
1319
|
-
content: $icon-close-circled;
|
|
1320
|
-
}
|
|
1321
|
-
}
|
|
1322
|
-
.icon-close {
|
|
1323
|
-
&:before {
|
|
1324
|
-
content: $icon-close;
|
|
1325
|
-
}
|
|
1326
|
-
}
|
|
1327
|
-
.icon-copy-item {
|
|
1328
|
-
&:before {
|
|
1329
|
-
content: $icon-copy-item;
|
|
1330
|
-
}
|
|
1331
|
-
}
|
|
1332
|
-
.icon-done-check {
|
|
1333
|
-
&:before {
|
|
1334
|
-
content: $icon-done-check;
|
|
1335
|
-
}
|
|
1336
|
-
}
|
|
1337
|
-
.icon-download-status {
|
|
1338
|
-
&:before {
|
|
1339
|
-
content: $icon-download-status;
|
|
1340
|
-
}
|
|
1341
|
-
}
|
|
1342
|
-
.icon-download {
|
|
1343
|
-
&:before {
|
|
1344
|
-
content: $icon-download;
|
|
1345
|
-
}
|
|
1346
|
-
}
|
|
1347
|
-
.icon-edit {
|
|
1348
|
-
&:before {
|
|
1349
|
-
content: $icon-edit;
|
|
1350
|
-
}
|
|
1351
|
-
}
|
|
1352
|
-
.icon-email {
|
|
1353
|
-
&:before {
|
|
1354
|
-
content: $icon-email;
|
|
1355
|
-
}
|
|
1356
|
-
}
|
|
1357
|
-
.icon-file-download {
|
|
1358
|
-
&:before {
|
|
1359
|
-
content: $icon-file-download;
|
|
1360
|
-
}
|
|
1361
|
-
}
|
|
1362
|
-
.icon-files-library {
|
|
1363
|
-
&:before {
|
|
1364
|
-
content: $icon-files-library;
|
|
1365
|
-
}
|
|
1366
|
-
}
|
|
1367
|
-
.icon-files {
|
|
1368
|
-
&:before {
|
|
1369
|
-
content: $icon-files;
|
|
1370
|
-
}
|
|
1371
|
-
}
|
|
1372
|
-
.icon-filter {
|
|
1373
|
-
&:before {
|
|
1374
|
-
content: $icon-filter;
|
|
1375
|
-
}
|
|
1376
|
-
}
|
|
1377
|
-
.icon-flag {
|
|
1378
|
-
&:before {
|
|
1379
|
-
content: $icon-flag;
|
|
1380
|
-
}
|
|
1381
|
-
}
|
|
1382
|
-
.icon-information-circle {
|
|
1383
|
-
&:before {
|
|
1384
|
-
content: $icon-information-circle;
|
|
1385
|
-
}
|
|
1386
|
-
}
|
|
1387
|
-
.icon-key {
|
|
1388
|
-
&:before {
|
|
1389
|
-
content: $icon-key;
|
|
1390
|
-
}
|
|
1391
|
-
}
|
|
1392
|
-
.icon-keychain {
|
|
1393
|
-
&:before {
|
|
1394
|
-
content: $icon-keychain;
|
|
1395
|
-
}
|
|
1396
|
-
}
|
|
1397
|
-
.icon-label-tag {
|
|
1398
|
-
&:before {
|
|
1399
|
-
content: $icon-label-tag;
|
|
1400
|
-
}
|
|
1401
|
-
}
|
|
1402
|
-
.icon-link {
|
|
1403
|
-
&:before {
|
|
1404
|
-
content: $icon-link;
|
|
1405
|
-
}
|
|
1406
|
-
}
|
|
1407
|
-
.icon-loading-status-checkmark {
|
|
1408
|
-
&:before {
|
|
1409
|
-
content: $icon-loading-status-checkmark;
|
|
1410
|
-
}
|
|
1411
|
-
}
|
|
1412
|
-
.icon-logout {
|
|
1413
|
-
&:before {
|
|
1414
|
-
content: $icon-logout;
|
|
1415
|
-
}
|
|
1416
|
-
}
|
|
1417
|
-
.icon-menu-horizontal {
|
|
1418
|
-
&:before {
|
|
1419
|
-
content: $icon-menu-horizontal;
|
|
1420
|
-
}
|
|
1421
|
-
}
|
|
1422
|
-
.icon-menu-vertical {
|
|
1423
|
-
&:before {
|
|
1424
|
-
content: $icon-menu-vertical;
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
.icon-open {
|
|
1428
|
-
&:before {
|
|
1429
|
-
content: $icon-open;
|
|
1430
|
-
}
|
|
1431
|
-
}
|
|
1432
|
-
.icon-pie-chart {
|
|
1433
|
-
&:before {
|
|
1434
|
-
content: $icon-pie-chart;
|
|
1435
|
-
}
|
|
1436
|
-
}
|
|
1437
|
-
.icon-search {
|
|
1438
|
-
&:before {
|
|
1439
|
-
content: $icon-search;
|
|
1440
|
-
}
|
|
1441
|
-
}
|
|
1442
|
-
.icon-setting-gear {
|
|
1443
|
-
&:before {
|
|
1444
|
-
content: $icon-setting-gear;
|
|
1445
|
-
}
|
|
1446
|
-
}
|
|
1447
|
-
.icon-settings-gear-square {
|
|
1448
|
-
&:before {
|
|
1449
|
-
content: $icon-settings-gear-square;
|
|
1450
|
-
}
|
|
1451
|
-
}
|
|
1452
|
-
.icon-settings-gear {
|
|
1453
|
-
&:before {
|
|
1454
|
-
content: $icon-settings-gear;
|
|
1455
|
-
}
|
|
1456
|
-
}
|
|
1457
|
-
.icon-settings-select {
|
|
1458
|
-
&:before {
|
|
1459
|
-
content: $icon-settings-select;
|
|
1460
|
-
}
|
|
1461
|
-
}
|
|
1462
|
-
.icon-share {
|
|
1463
|
-
&:before {
|
|
1464
|
-
content: $icon-share;
|
|
1465
|
-
}
|
|
1466
|
-
}
|
|
1467
|
-
.icon-show-visible {
|
|
1468
|
-
&:before {
|
|
1469
|
-
content: $icon-show-visible;
|
|
1470
|
-
}
|
|
1471
|
-
}
|
|
1472
|
-
.icon-star {
|
|
1473
|
-
&:before {
|
|
1474
|
-
content: $icon-star;
|
|
1475
|
-
}
|
|
1476
|
-
}
|
|
1477
|
-
.icon-substract-group {
|
|
1478
|
-
&:before {
|
|
1479
|
-
content: $icon-substract-group;
|
|
1480
|
-
}
|
|
1481
|
-
}
|
|
1482
|
-
.icon-switch {
|
|
1483
|
-
&:before {
|
|
1484
|
-
content: $icon-switch;
|
|
1485
|
-
}
|
|
1486
|
-
}
|
|
1487
|
-
.icon-trash-delete {
|
|
1488
|
-
&:before {
|
|
1489
|
-
content: $icon-trash-delete;
|
|
1490
|
-
}
|
|
1491
|
-
}
|
|
1492
|
-
.icon-upload {
|
|
1493
|
-
&:before {
|
|
1494
|
-
content: $icon-upload;
|
|
1495
|
-
}
|
|
1496
|
-
}
|
|
1497
|
-
.icon-user {
|
|
1498
|
-
&:before {
|
|
1499
|
-
content: $icon-user;
|
|
1500
|
-
}
|
|
1501
|
-
}
|
|
1502
|
-
.icon-warning-circle {
|
|
1503
|
-
&:before {
|
|
1504
|
-
content: $icon-warning-circle;
|
|
1505
|
-
}
|
|
1506
|
-
}
|
|
1507
|
-
.icon-warning {
|
|
1508
|
-
&:before {
|
|
1509
|
-
content: $icon-warning;
|
|
1510
|
-
}
|
|
1511
|
-
}
|
|
1512
|
-
.icon-icon-placeholder {
|
|
1513
|
-
&:before {
|
|
1514
|
-
content: $icon-icon-placeholder;
|
|
1515
|
-
}
|
|
1516
|
-
}
|
|
1517
|
-
.icon-network-storage-alert {
|
|
1518
|
-
&:before {
|
|
1519
|
-
content: $icon-network-storage-alert;
|
|
1520
|
-
}
|
|
1521
|
-
}
|
|
1522
|
-
.icon-folder-add {
|
|
1523
|
-
&:before {
|
|
1524
|
-
content: $icon-folder-add;
|
|
1525
|
-
}
|
|
1526
|
-
}
|
|
1527
|
-
.icon-folder-checked {
|
|
1528
|
-
&:before {
|
|
1529
|
-
content: $icon-folder-checked;
|
|
1530
|
-
}
|
|
1531
|
-
}
|
|
1532
|
-
.icon-folder-open {
|
|
1533
|
-
&:before {
|
|
1534
|
-
content: $icon-folder-open;
|
|
1535
|
-
}
|
|
1536
|
-
}
|
|
1537
|
-
.icon-folder-share {
|
|
1538
|
-
&:before {
|
|
1539
|
-
content: $icon-folder-share;
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
|
-
.icon-document-file-blank {
|
|
1543
|
-
&:before {
|
|
1544
|
-
content: $icon-document-file-blank;
|
|
1545
|
-
}
|
|
1546
|
-
}
|
|
1547
|
-
.icon-document-file-download {
|
|
1548
|
-
&:before {
|
|
1549
|
-
content: $icon-document-file-download;
|
|
1550
|
-
}
|
|
1551
|
-
}
|
|
1552
|
-
.icon-document-file-tar {
|
|
1553
|
-
&:before {
|
|
1554
|
-
content: $icon-document-file-tar;
|
|
1555
|
-
}
|
|
1556
|
-
}
|
|
1557
|
-
.icon-document-file-zip {
|
|
1558
|
-
&:before {
|
|
1559
|
-
content: $icon-document-file-zip;
|
|
1560
|
-
}
|
|
1561
|
-
}
|
|
1562
|
-
.icon-document-visible {
|
|
1563
|
-
&:before {
|
|
1564
|
-
content: $icon-document-visible;
|
|
1565
|
-
}
|
|
1566
|
-
}
|
|
1567
|
-
.icon-documents-files {
|
|
1568
|
-
&:before {
|
|
1569
|
-
content: $icon-documents-files;
|
|
1570
|
-
}
|
|
1571
|
-
}
|
|
1572
|
-
.icon-arrow-back {
|
|
1573
|
-
&:before {
|
|
1574
|
-
content: $icon-arrow-back;
|
|
1575
|
-
}
|
|
1576
|
-
}
|
|
1577
|
-
.icon-arrow-forward {
|
|
1578
|
-
&:before {
|
|
1579
|
-
content: $icon-arrow-forward;
|
|
1580
|
-
}
|
|
1581
|
-
}
|
|
1582
|
-
.icon-chevron-back {
|
|
1583
|
-
&:before {
|
|
1584
|
-
content: $icon-chevron-back;
|
|
1585
|
-
}
|
|
1586
|
-
}
|
|
1587
|
-
.icon-chevron-down {
|
|
1588
|
-
&:before {
|
|
1589
|
-
content: $icon-chevron-down;
|
|
1590
|
-
}
|
|
1591
|
-
}
|
|
1592
|
-
.icon-chevron-forward {
|
|
1593
|
-
&:before {
|
|
1594
|
-
content: $icon-chevron-forward;
|
|
1595
|
-
}
|
|
1596
|
-
}
|
|
1597
|
-
.icon-chevron-up {
|
|
1598
|
-
&:before {
|
|
1599
|
-
content: $icon-chevron-up;
|
|
1600
|
-
}
|
|
1601
|
-
}
|
|
1602
|
-
.icon-embed-circle {
|
|
1603
|
-
&:before {
|
|
1604
|
-
content: $icon-embed-circle;
|
|
1605
|
-
}
|
|
1606
|
-
}
|
|
1607
|
-
.icon-rotate-refresh {
|
|
1608
|
-
&:before {
|
|
1609
|
-
content: $icon-rotate-refresh;
|
|
1610
|
-
}
|
|
1611
|
-
}
|
|
1612
|
-
}
|