@flywheel-io/vision 2.1.0-beta.0 → 2.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/color.utils.d.ts +2 -0
- package/components/alert/alert.component.d.ts +14 -0
- package/components/alert/alert.module.d.ts +10 -0
- package/components/app-icon/app-icon.component.d.ts +19 -0
- package/components/app-icon/app-icon.module.d.ts +9 -0
- package/components/avatar/avatar.component.d.ts +23 -0
- package/components/avatar/avatar.module.d.ts +9 -0
- package/components/badge/badge.component.d.ts +12 -0
- package/components/badge/badge.module.d.ts +8 -0
- package/components/breadcrumbs/breadcrumbs.component.d.ts +9 -0
- package/components/breadcrumbs/breadcrumbs.module.d.ts +10 -0
- package/components/breadcrumbs/crumb.component.d.ts +12 -0
- package/components/button/button.component.d.ts +16 -0
- package/components/button/button.directives.d.ts +37 -0
- package/components/button/button.module.d.ts +11 -0
- package/components/button-group/button-group.component.d.ts +33 -0
- package/components/button-group/button-group.module.d.ts +10 -0
- package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +21 -0
- package/components/button-toggle/button-toggle.component.d.ts +34 -0
- package/components/button-toggle/button-toggle.module.d.ts +10 -0
- package/components/card/card-attribute/card-attribute.component.d.ts +8 -0
- package/components/card/card-author/card-author.component.d.ts +7 -0
- package/components/card/card-content/card-content.component.d.ts +5 -0
- package/components/card/card-footer/card-footer.component.d.ts +9 -0
- package/components/card/card-header/card-header.component.d.ts +10 -0
- package/components/card/card.component.d.ts +12 -0
- package/components/card/card.module.d.ts +15 -0
- package/components/checkbox/checkbox.component.d.ts +23 -0
- package/components/checkbox/checkbox.module.d.ts +9 -0
- package/components/chip/chip.component.d.ts +20 -0
- package/components/chip/chip.module.d.ts +10 -0
- package/components/contained-input/contained-input.component.d.ts +23 -0
- package/components/contained-input/contained-input.module.d.ts +12 -0
- package/components/date-input/date-input.component.d.ts +47 -0
- package/components/date-input/date-input.module.d.ts +10 -0
- package/components/dialog/dialog-actions.component.d.ts +9 -0
- package/components/dialog/dialog-confirm.component.d.ts +25 -0
- package/components/dialog/dialog-content.component.d.ts +10 -0
- package/components/dialog/dialog-header.component.d.ts +9 -0
- package/components/dialog/dialog-simple.component.d.ts +25 -0
- package/components/dialog/dialog.component.d.ts +25 -0
- package/components/dialog/dialog.service.d.ts +17 -0
- package/components/dialog/dialogs.module.d.ts +18 -0
- package/components/form-heading/form-heading.component.d.ts +10 -0
- package/components/form-heading/form-heading.module.d.ts +10 -0
- package/components/forms/validators.d.ts +29 -0
- package/components/icon/icon.component.d.ts +13 -0
- package/components/icon/icon.module.d.ts +8 -0
- package/components/icon/icon.types.d.ts +2 -0
- package/components/icon-button/icon-button.component.d.ts +12 -0
- package/components/icon-button/icon-button.module.d.ts +9 -0
- package/components/layouts/context/context.component.d.ts +18 -0
- package/components/layouts/grid/grid.component.d.ts +19 -0
- package/components/layouts/layout-group.component.d.ts +9 -0
- package/components/layouts/layouts.module.d.ts +14 -0
- package/components/layouts/panel/panel.component.d.ts +11 -0
- package/components/layouts/sidebar/sidebar.component.d.ts +9 -0
- package/components/layouts/toolbar/toolbar.component.d.ts +7 -0
- package/components/menu/menu-close-triggers.directive.d.ts +10 -0
- package/components/menu/menu-container/menu-container.component.d.ts +43 -0
- package/components/menu/menu-header/menu-header.component.d.ts +5 -0
- package/components/menu/menu-item/menu-item.component.d.ts +41 -0
- package/components/menu/menu-item-group/menu-item-group.component.d.ts +11 -0
- package/components/menu/menu-separator/menu-separator.component.d.ts +5 -0
- package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +21 -0
- package/components/menu/menu.component.d.ts +28 -0
- package/components/menu/menu.module.d.ts +24 -0
- package/components/navbar/navbar-header/navbar-header.component.d.ts +5 -0
- package/components/navbar/navbar-item/navbar-item.component.d.ts +28 -0
- package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +18 -0
- package/components/navbar/navbar.component.d.ts +14 -0
- package/components/navbar/navbar.module.d.ts +18 -0
- package/components/number-input/number-input.component.d.ts +42 -0
- package/components/number-input/number-input.module.d.ts +10 -0
- package/components/paginator/paginator-advanced/paginator-advanced.component.d.ts +32 -0
- package/components/paginator/paginator.component.d.ts +43 -0
- package/components/paginator/paginator.model.d.ts +8 -0
- package/components/paginator/paginator.module.d.ts +14 -0
- package/components/phone-input/country-code.data.d.ts +2 -0
- package/components/phone-input/phone-input.component.d.ts +66 -0
- package/components/phone-input/phone-input.model.d.ts +10 -0
- package/components/phone-input/phone-input.module.d.ts +13 -0
- package/components/popover/popover-panel/popover-panel.component.d.ts +10 -0
- package/components/popover/popover.component.d.ts +19 -0
- package/components/popover/popover.module.d.ts +11 -0
- package/components/progress/bar/bar.component.d.ts +32 -0
- package/components/progress/progress.module.d.ts +9 -0
- package/components/progress/spinner/spinner.component.d.ts +37 -0
- package/components/radio/radio-group.component.d.ts +32 -0
- package/components/radio/radio.component.d.ts +17 -0
- package/components/radio/radio.module.d.ts +10 -0
- package/components/section-heading/back-button/back-button.component.d.ts +11 -0
- package/components/section-heading/section-heading.component.d.ts +13 -0
- package/components/section-heading/section-heading.module.d.ts +12 -0
- package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +9 -0
- package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +82 -0
- package/components/select-menu/select-menu.component.d.ts +70 -0
- package/components/select-menu/select-menu.module.d.ts +17 -0
- package/components/shared/pipes/pipes.module.d.ts +10 -0
- package/components/shared/pipes/translate.pipe.d.ts +17 -0
- package/components/shared/pipes/trusthtml.pipe.d.ts +10 -0
- package/components/shared/services/menu-manager.service.d.ts +10 -0
- package/components/shared/translation.service.d.ts +14 -0
- package/components/snackbar/snackbar/snackbar.component.d.ts +24 -0
- package/components/snackbar/snackbar-container/snackbar-container.component.d.ts +20 -0
- package/components/snackbar/snackbar-message.model.d.ts +12 -0
- package/components/snackbar/snackbar-timer.service.d.ts +10 -0
- package/components/snackbar/snackbar.module.d.ts +12 -0
- package/components/snackbar/snackbar.service.d.ts +13 -0
- package/components/stepper/step.component.d.ts +27 -0
- package/components/stepper/stepper.component.d.ts +23 -0
- package/components/stepper/stepper.module.d.ts +11 -0
- package/components/switch/switch.component.d.ts +22 -0
- package/components/switch/switch.module.d.ts +8 -0
- package/components/table/cell.d.ts +63 -0
- package/components/table/row.d.ts +58 -0
- package/components/table/table-dense.component.d.ts +11 -0
- package/components/table/table.component.d.ts +11 -0
- package/components/table/table.module.d.ts +12 -0
- package/components/tabs/tab/tab.component.d.ts +21 -0
- package/components/tabs/tab-panel/tab-panel.component.d.ts +6 -0
- package/components/tabs/tabs.component.d.ts +17 -0
- package/components/tabs/tabs.module.d.ts +11 -0
- package/components/text-input/text-input.component.d.ts +48 -0
- package/components/text-input/text-input.module.d.ts +10 -0
- package/components/textarea-input/textarea-input.component.d.ts +34 -0
- package/components/textarea-input/textarea-input.module.d.ts +11 -0
- package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +12 -0
- package/components/tooltip/tooltip.component.d.ts +17 -0
- package/components/tooltip/tooltip.module.d.ts +11 -0
- package/components/wrapped-input/wrapped-input.component.d.ts +10 -0
- package/components/wrapped-input/wrapped-input.module.d.ts +9 -0
- package/directives/menu-register.directive.d.ts +14 -0
- package/esm2022/color.utils.mjs +45 -0
- package/esm2022/components/alert/alert.component.mjs +34 -0
- package/esm2022/components/alert/alert.module.mjs +32 -0
- package/esm2022/components/app-icon/app-icon.component.mjs +63 -0
- package/esm2022/components/app-icon/app-icon.module.mjs +28 -0
- package/esm2022/components/avatar/avatar.component.mjs +66 -0
- package/esm2022/components/avatar/avatar.module.mjs +28 -0
- package/esm2022/components/badge/badge.component.mjs +45 -0
- package/esm2022/components/badge/badge.module.mjs +24 -0
- package/esm2022/components/breadcrumbs/breadcrumbs.component.mjs +22 -0
- package/esm2022/components/breadcrumbs/breadcrumbs.module.mjs +33 -0
- package/esm2022/components/breadcrumbs/crumb.component.mjs +34 -0
- package/esm2022/components/button/button.component.mjs +59 -0
- package/esm2022/components/button/button.directives.mjs +129 -0
- package/esm2022/components/button/button.module.mjs +53 -0
- package/esm2022/components/button-group/button-group.component.mjs +131 -0
- package/esm2022/components/button-group/button-group.module.mjs +32 -0
- package/esm2022/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +54 -0
- package/esm2022/components/button-toggle/button-toggle.component.mjs +137 -0
- package/esm2022/components/button-toggle/button-toggle.module.mjs +33 -0
- package/esm2022/components/card/card-attribute/card-attribute.component.mjs +17 -0
- package/esm2022/components/card/card-author/card-author.component.mjs +15 -0
- package/esm2022/components/card/card-content/card-content.component.mjs +11 -0
- package/esm2022/components/card/card-footer/card-footer.component.mjs +29 -0
- package/esm2022/components/card/card-header/card-header.component.mjs +24 -0
- package/esm2022/components/card/card.component.mjs +27 -0
- package/esm2022/components/card/card.module.mjs +57 -0
- package/esm2022/components/checkbox/checkbox.component.mjs +79 -0
- package/esm2022/components/checkbox/checkbox.module.mjs +31 -0
- package/esm2022/components/chip/chip.component.mjs +52 -0
- package/esm2022/components/chip/chip.module.mjs +32 -0
- package/esm2022/components/contained-input/contained-input.component.mjs +86 -0
- package/esm2022/components/contained-input/contained-input.module.mjs +40 -0
- package/esm2022/components/date-input/date-input.component.mjs +139 -0
- package/esm2022/components/date-input/date-input.module.mjs +32 -0
- package/esm2022/components/dialog/dialog-actions.component.mjs +32 -0
- package/esm2022/components/dialog/dialog-confirm.component.mjs +63 -0
- package/esm2022/components/dialog/dialog-content.component.mjs +38 -0
- package/esm2022/components/dialog/dialog-header.component.mjs +35 -0
- package/esm2022/components/dialog/dialog-simple.component.mjs +62 -0
- package/esm2022/components/dialog/dialog.component.mjs +55 -0
- package/esm2022/components/dialog/dialog.service.mjs +49 -0
- package/esm2022/components/dialog/dialogs.module.mjs +75 -0
- package/esm2022/components/form-heading/form-heading.component.mjs +24 -0
- package/esm2022/components/form-heading/form-heading.module.mjs +32 -0
- package/esm2022/components/forms/validators.mjs +81 -0
- package/esm2022/components/icon/icon.component.mjs +61 -0
- package/esm2022/components/icon/icon.module.mjs +24 -0
- package/esm2022/components/icon/icon.types.mjs +330 -0
- package/esm2022/components/icon-button/icon-button.component.mjs +39 -0
- package/esm2022/components/icon-button/icon-button.module.mjs +28 -0
- package/esm2022/components/layouts/context/context.component.mjs +46 -0
- package/esm2022/components/layouts/grid/grid.component.mjs +62 -0
- package/esm2022/components/layouts/layout-group.component.mjs +36 -0
- package/esm2022/components/layouts/layouts.module.mjs +57 -0
- package/esm2022/components/layouts/panel/panel.component.mjs +32 -0
- package/esm2022/components/layouts/sidebar/sidebar.component.mjs +26 -0
- package/esm2022/components/layouts/toolbar/toolbar.component.mjs +21 -0
- package/esm2022/components/menu/menu-close-triggers.directive.mjs +38 -0
- package/esm2022/components/menu/menu-container/menu-container.component.mjs +126 -0
- package/esm2022/components/menu/menu-header/menu-header.component.mjs +11 -0
- package/esm2022/components/menu/menu-item/menu-item.component.mjs +141 -0
- package/esm2022/components/menu/menu-item-group/menu-item-group.component.mjs +31 -0
- package/esm2022/components/menu/menu-separator/menu-separator.component.mjs +11 -0
- package/esm2022/components/menu/menu-sub-item/menu-sub-item.component.mjs +103 -0
- package/esm2022/components/menu/menu.component.mjs +129 -0
- package/esm2022/components/menu/menu.module.mjs +95 -0
- package/esm2022/components/navbar/navbar-header/navbar-header.component.mjs +11 -0
- package/esm2022/components/navbar/navbar-item/navbar-item.component.mjs +95 -0
- package/esm2022/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +76 -0
- package/esm2022/components/navbar/navbar.component.mjs +75 -0
- package/esm2022/components/navbar/navbar.module.mjs +67 -0
- package/esm2022/components/number-input/number-input.component.mjs +122 -0
- package/esm2022/components/number-input/number-input.module.mjs +32 -0
- package/esm2022/components/paginator/paginator-advanced/paginator-advanced.component.mjs +123 -0
- package/esm2022/components/paginator/paginator.component.mjs +133 -0
- package/esm2022/components/paginator/paginator.model.mjs +2 -0
- package/esm2022/components/paginator/paginator.module.mjs +49 -0
- package/esm2022/components/phone-input/country-code.data.mjs +495 -0
- package/esm2022/components/phone-input/phone-input.component.mjs +285 -0
- package/esm2022/components/phone-input/phone-input.model.mjs +2 -0
- package/esm2022/components/phone-input/phone-input.module.mjs +47 -0
- package/esm2022/components/popover/popover-panel/popover-panel.component.mjs +30 -0
- package/esm2022/components/popover/popover.component.mjs +76 -0
- package/esm2022/components/popover/popover.module.mjs +42 -0
- package/esm2022/components/progress/bar/bar.component.mjs +83 -0
- package/esm2022/components/progress/progress.module.mjs +29 -0
- package/esm2022/components/progress/spinner/spinner.component.mjs +101 -0
- package/esm2022/components/radio/radio-group.component.mjs +117 -0
- package/esm2022/components/radio/radio.component.mjs +51 -0
- package/esm2022/components/radio/radio.module.mjs +36 -0
- package/esm2022/components/section-heading/back-button/back-button.component.mjs +30 -0
- package/esm2022/components/section-heading/section-heading.component.mjs +31 -0
- package/esm2022/components/section-heading/section-heading.module.mjs +42 -0
- package/esm2022/components/section-heading/subsection-heading/subsection-heading.component.mjs +19 -0
- package/esm2022/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +368 -0
- package/esm2022/components/select-menu/select-menu.component.mjs +332 -0
- package/esm2022/components/select-menu/select-menu.module.mjs +60 -0
- package/esm2022/components/shared/pipes/pipes.module.mjs +36 -0
- package/esm2022/components/shared/pipes/translate.pipe.mjs +40 -0
- package/esm2022/components/shared/pipes/trusthtml.pipe.mjs +21 -0
- package/esm2022/components/shared/services/menu-manager.service.mjs +27 -0
- package/esm2022/components/shared/translation.service.mjs +26 -0
- package/esm2022/components/snackbar/snackbar/snackbar.component.mjs +111 -0
- package/esm2022/components/snackbar/snackbar-container/snackbar-container.component.mjs +63 -0
- package/esm2022/components/snackbar/snackbar-message.model.mjs +2 -0
- package/esm2022/components/snackbar/snackbar-timer.service.mjs +29 -0
- package/esm2022/components/snackbar/snackbar.module.mjs +47 -0
- package/esm2022/components/snackbar/snackbar.service.mjs +36 -0
- package/esm2022/components/stepper/step.component.mjs +113 -0
- package/esm2022/components/stepper/stepper.component.mjs +95 -0
- package/esm2022/components/stepper/stepper.module.mjs +41 -0
- package/esm2022/components/switch/switch.component.mjs +73 -0
- package/esm2022/components/switch/switch.module.mjs +24 -0
- package/esm2022/components/table/cell.mjs +151 -0
- package/esm2022/components/table/row.mjs +164 -0
- package/esm2022/components/table/table-dense.component.mjs +38 -0
- package/esm2022/components/table/table.component.mjs +38 -0
- package/esm2022/components/table/table.module.mjs +91 -0
- package/esm2022/components/tabs/tab/tab.component.mjs +79 -0
- package/esm2022/components/tabs/tab-panel/tab-panel.component.mjs +19 -0
- package/esm2022/components/tabs/tabs.component.mjs +68 -0
- package/esm2022/components/tabs/tabs.module.mjs +38 -0
- package/esm2022/components/text-input/text-input.component.mjs +125 -0
- package/esm2022/components/text-input/text-input.module.mjs +32 -0
- package/esm2022/components/textarea-input/textarea-input.component.mjs +86 -0
- package/esm2022/components/textarea-input/textarea-input.module.mjs +36 -0
- package/esm2022/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +37 -0
- package/esm2022/components/tooltip/tooltip.component.mjs +49 -0
- package/esm2022/components/tooltip/tooltip.module.mjs +42 -0
- package/esm2022/components/wrapped-input/wrapped-input.component.mjs +27 -0
- package/esm2022/components/wrapped-input/wrapped-input.module.mjs +28 -0
- package/esm2022/directives/menu-register.directive.mjs +38 -0
- package/esm2022/flywheel-io-vision.mjs +5 -0
- package/esm2022/public-api.mjs +128 -0
- package/fesm2022/flywheel-io-vision.mjs +8129 -0
- package/fesm2022/flywheel-io-vision.mjs.map +1 -0
- package/flywheel-io-vision-2.1.0-beta.1.tgz +0 -0
- package/index.d.ts +5 -0
- package/package.json +14 -77
- package/styles.css +1776 -0
- package/.editorconfig +0 -56
- package/.eslintrc.json +0 -307
- package/.gitattributes +0 -2
- package/.gitlab-ci.yml +0 -157
- package/.nvmrc +0 -1
- package/.storybook/DocsContainer.tsx +0 -103
- package/.storybook/main.ts +0 -18
- package/.storybook/manager-head.html +0 -29
- package/.storybook/manager.ts +0 -7
- package/.storybook/preview.tsx +0 -45
- package/.storybook/public/images/brand-dark.png +0 -0
- package/.storybook/public/images/brand-light.png +0 -0
- package/.storybook/public/images/core.svg +0 -22
- package/.storybook/public/images/discovery.svg +0 -22
- package/.storybook/public/images/exchange.svg +0 -28
- package/.storybook/public/images/favicon.png +0 -0
- package/.storybook/public/images/grid.png +0 -0
- package/.storybook/sb-theme.ts +0 -80
- package/.storybook/tsconfig.json +0 -19
- package/.stylelintignore +0 -2
- package/.stylelintrc.json +0 -48
- package/.vscode/extensions.json +0 -18
- package/.vscode/settings.json +0 -7
- package/CONTRIBUTING.md +0 -51
- package/angular.json +0 -95
- package/build.js +0 -66
- package/elements/elements.html +0 -0
- package/install-into-frontend.sh +0 -13
- package/karma.conf.js +0 -49
- package/ng-package.json +0 -26
- package/publish-beta.sh +0 -18
- package/src/assets/.gitkeep +0 -0
- package/src/assets/brand/core.svg +0 -22
- package/src/assets/brand/discovery.svg +0 -22
- package/src/assets/brand/exchange.svg +0 -28
- package/src/assets/brand/fw-logo-mark-dark-bg.svg +0 -4
- package/src/assets/img/avatar.png +0 -0
- package/src/assets/updating-icons.md +0 -71
- package/src/color.utils.ts +0 -47
- package/src/components/alert/alert.component.html +0 -19
- package/src/components/alert/alert.component.scss +0 -150
- package/src/components/alert/alert.component.spec.ts +0 -22
- package/src/components/alert/alert.component.ts +0 -19
- package/src/components/alert/alert.mdx +0 -16
- package/src/components/alert/alert.module.ts +0 -22
- package/src/components/alert/alert.stories.ts +0 -144
- package/src/components/app-icon/app-icon.component.html +0 -10
- package/src/components/app-icon/app-icon.component.scss +0 -348
- package/src/components/app-icon/app-icon.component.spec.ts +0 -22
- package/src/components/app-icon/app-icon.component.ts +0 -27
- package/src/components/app-icon/app-icon.mdx +0 -16
- package/src/components/app-icon/app-icon.module.ts +0 -20
- package/src/components/app-icon/app-icon.stories.ts +0 -200
- package/src/components/avatar/avatar.component.html +0 -22
- package/src/components/avatar/avatar.component.scss +0 -97
- package/src/components/avatar/avatar.component.spec.ts +0 -26
- package/src/components/avatar/avatar.component.ts +0 -50
- package/src/components/avatar/avatar.mdx +0 -16
- package/src/components/avatar/avatar.module.ts +0 -20
- package/src/components/avatar/avatar.stories.ts +0 -207
- package/src/components/badge/badge.component.html +0 -4
- package/src/components/badge/badge.component.scss +0 -98
- package/src/components/badge/badge.component.spec.ts +0 -26
- package/src/components/badge/badge.component.ts +0 -30
- package/src/components/badge/badge.mdx +0 -33
- package/src/components/badge/badge.module.ts +0 -18
- package/src/components/badge/badge.stories.ts +0 -131
- package/src/components/breadcrumbs/breadcrumbs.component.scss +0 -5
- package/src/components/breadcrumbs/breadcrumbs.component.spec.ts +0 -22
- package/src/components/breadcrumbs/breadcrumbs.component.stories.ts +0 -81
- package/src/components/breadcrumbs/breadcrumbs.component.ts +0 -20
- package/src/components/breadcrumbs/breadcrumbs.mdx +0 -53
- package/src/components/breadcrumbs/breadcrumbs.module.ts +0 -23
- package/src/components/breadcrumbs/crumb.component.html +0 -5
- package/src/components/breadcrumbs/crumb.component.scss +0 -23
- package/src/components/breadcrumbs/crumb.component.stories.ts +0 -53
- package/src/components/breadcrumbs/crumb.component.ts +0 -23
- package/src/components/button/button.component.html +0 -7
- package/src/components/button/button.component.scss +0 -129
- package/src/components/button/button.component.spec.ts +0 -26
- package/src/components/button/button.component.ts +0 -40
- package/src/components/button/button.directives.ts +0 -93
- package/src/components/button/button.mdx +0 -16
- package/src/components/button/button.module.ts +0 -39
- package/src/components/button/button.stories.ts +0 -165
- package/src/components/button/story.css +0 -0
- package/src/components/button-group/button-group.component.scss +0 -94
- package/src/components/button-group/button-group.component.ts +0 -138
- package/src/components/button-group/button-group.mdx +0 -23
- package/src/components/button-group/button-group.module.ts +0 -22
- package/src/components/button-group/button-group.stories.ts +0 -145
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.html +0 -10
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.spec.ts +0 -25
- package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.ts +0 -36
- package/src/components/button-toggle/button-toggle.component.scss +0 -94
- package/src/components/button-toggle/button-toggle.component.ts +0 -145
- package/src/components/button-toggle/button-toggle.mdx +0 -23
- package/src/components/button-toggle/button-toggle.module.ts +0 -23
- package/src/components/button-toggle/button-toggle.stories.ts +0 -204
- package/src/components/card/card-attribute/card-attribute.component.html +0 -3
- package/src/components/card/card-attribute/card-attribute.component.scss +0 -19
- package/src/components/card/card-attribute/card-attribute.component.spec.ts +0 -22
- package/src/components/card/card-attribute/card-attribute.component.ts +0 -13
- package/src/components/card/card-author/card-author.component.html +0 -5
- package/src/components/card/card-author/card-author.component.scss +0 -21
- package/src/components/card/card-author/card-author.component.spec.ts +0 -22
- package/src/components/card/card-author/card-author.component.ts +0 -11
- package/src/components/card/card-author/card-author.stories.ts +0 -55
- package/src/components/card/card-content/card-content.component.scss +0 -26
- package/src/components/card/card-content/card-content.component.spec.ts +0 -22
- package/src/components/card/card-content/card-content.component.ts +0 -11
- package/src/components/card/card-content/card-content.stories.ts +0 -55
- package/src/components/card/card-footer/card-footer.component.spec.ts +0 -22
- package/src/components/card/card-footer/card-footer.component.ts +0 -24
- package/src/components/card/card-footer/card-footer.stories.ts +0 -72
- package/src/components/card/card-header/card-header.component.html +0 -9
- package/src/components/card/card-header/card-header.component.scss +0 -41
- package/src/components/card/card-header/card-header.component.spec.ts +0 -22
- package/src/components/card/card-header/card-header.component.ts +0 -15
- package/src/components/card/card-header/card-header.stories.ts +0 -58
- package/src/components/card/card.component.html +0 -12
- package/src/components/card/card.component.scss +0 -40
- package/src/components/card/card.component.spec.ts +0 -34
- package/src/components/card/card.component.ts +0 -16
- package/src/components/card/card.mdx +0 -128
- package/src/components/card/card.module.ts +0 -37
- package/src/components/card/card.stories.ts +0 -240
- package/src/components/changelog.mdx +0 -405
- package/src/components/checkbox/checkbox.component.html +0 -16
- package/src/components/checkbox/checkbox.component.scss +0 -189
- package/src/components/checkbox/checkbox.component.ts +0 -68
- package/src/components/checkbox/checkbox.module.ts +0 -21
- package/src/components/checkbox/checkbox.stories.ts +0 -224
- package/src/components/chip/chip.component.html +0 -14
- package/src/components/chip/chip.component.scss +0 -357
- package/src/components/chip/chip.component.spec.ts +0 -22
- package/src/components/chip/chip.component.ts +0 -32
- package/src/components/chip/chip.mdx +0 -16
- package/src/components/chip/chip.module.ts +0 -22
- package/src/components/chip/chip.stories.ts +0 -236
- package/src/components/color-palette/color-palette.component.html +0 -10
- package/src/components/color-palette/color-palette.component.scss +0 -15
- package/src/components/color-palette/color-palette.component.ts +0 -73
- package/src/components/color-palette/color-palette.module.ts +0 -22
- package/src/components/color-palette/color-palette.stories.ts +0 -35
- package/src/components/color-palette/colors.mdx +0 -47
- package/src/components/color-palette/swatch/swatch.component.html +0 -3
- package/src/components/color-palette/swatch/swatch.component.scss +0 -21
- package/src/components/color-palette/swatch/swatch.component.ts +0 -28
- package/src/components/contained-input/contained-input.component.html +0 -15
- package/src/components/contained-input/contained-input.component.scss +0 -88
- package/src/components/contained-input/contained-input.component.spec.ts +0 -34
- package/src/components/contained-input/contained-input.component.ts +0 -65
- package/src/components/contained-input/contained-input.mdx +0 -16
- package/src/components/contained-input/contained-input.module.ts +0 -26
- package/src/components/contained-input/contained-input.stories.ts +0 -155
- package/src/components/date-input/date-input.component.html +0 -28
- package/src/components/date-input/date-input.component.scss +0 -192
- package/src/components/date-input/date-input.component.spec.ts +0 -26
- package/src/components/date-input/date-input.component.ts +0 -126
- package/src/components/date-input/date-input.mdx +0 -23
- package/src/components/date-input/date-input.module.ts +0 -23
- package/src/components/date-input/date-input.stories.ts +0 -96
- package/src/components/dialog/dialog-actions.component.ts +0 -22
- package/src/components/dialog/dialog-confirm.component.html +0 -37
- package/src/components/dialog/dialog-confirm.component.scss +0 -49
- package/src/components/dialog/dialog-confirm.component.ts +0 -35
- package/src/components/dialog/dialog-confirm.stories.ts +0 -47
- package/src/components/dialog/dialog-content.component.ts +0 -28
- package/src/components/dialog/dialog-header.component.ts +0 -25
- package/src/components/dialog/dialog-simple.component.html +0 -27
- package/src/components/dialog/dialog-simple.component.scss +0 -13
- package/src/components/dialog/dialog-simple.component.ts +0 -36
- package/src/components/dialog/dialog-simple.stories.ts +0 -78
- package/src/components/dialog/dialog.component.html +0 -20
- package/src/components/dialog/dialog.component.scss +0 -94
- package/src/components/dialog/dialog.component.ts +0 -39
- package/src/components/dialog/dialog.mdx +0 -252
- package/src/components/dialog/dialog.service.ts +0 -34
- package/src/components/dialog/dialog.stories.ts +0 -169
- package/src/components/dialog/dialogs.module.ts +0 -47
- package/src/components/form-heading/form-heading.component.html +0 -15
- package/src/components/form-heading/form-heading.component.scss +0 -55
- package/src/components/form-heading/form-heading.component.spec.ts +0 -28
- package/src/components/form-heading/form-heading.component.ts +0 -17
- package/src/components/form-heading/form-heading.mdx +0 -16
- package/src/components/form-heading/form-heading.module.ts +0 -22
- package/src/components/form-heading/form-heading.stories.ts +0 -168
- package/src/components/forms/validators.ts +0 -97
- package/src/components/getting-started.mdx +0 -92
- package/src/components/ghost/ghost.stories.ts +0 -79
- package/src/components/icon/README.txt +0 -5
- package/src/components/icon/icon.component.ts +0 -52
- package/src/components/icon/icon.mdx +0 -36
- package/src/components/icon/icon.module.ts +0 -17
- package/src/components/icon/icon.stories.ts +0 -51
- package/src/components/icon/icon.types.ts +0 -331
- package/src/components/icon/icons.stories.scss +0 -63
- package/src/components/icon/icons.stories.ts +0 -95
- package/src/components/icon/selection.json +0 -1
- package/src/components/icon-button/icon-button.component.html +0 -6
- package/src/components/icon-button/icon-button.component.scss +0 -231
- package/src/components/icon-button/icon-button.component.spec.ts +0 -28
- package/src/components/icon-button/icon-button.component.ts +0 -32
- package/src/components/icon-button/icon-button.mdx +0 -16
- package/src/components/icon-button/icon-button.module.ts +0 -20
- package/src/components/icon-button/icon-button.stories.ts +0 -257
- package/src/components/json/json.component.ts +0 -15
- package/src/components/layouts/context/context.component.html +0 -6
- package/src/components/layouts/context/context.component.scss +0 -71
- package/src/components/layouts/context/context.component.spec.ts +0 -22
- package/src/components/layouts/context/context.component.stories.ts +0 -63
- package/src/components/layouts/context/context.component.ts +0 -32
- package/src/components/layouts/context/context.mdx +0 -15
- package/src/components/layouts/grid/grid.component.scss +0 -281
- package/src/components/layouts/grid/grid.component.spec.ts +0 -22
- package/src/components/layouts/grid/grid.component.stories.ts +0 -183
- package/src/components/layouts/grid/grid.component.ts +0 -43
- package/src/components/layouts/grid/grid.mdx +0 -27
- package/src/components/layouts/layout-group.component.scss +0 -38
- package/src/components/layouts/layout-group.component.spec.ts +0 -22
- package/src/components/layouts/layout-group.component.stories.ts +0 -105
- package/src/components/layouts/layout-group.component.ts +0 -24
- package/src/components/layouts/layout-group.mdx +0 -22
- package/src/components/layouts/layouts.mdx +0 -63
- package/src/components/layouts/layouts.module.ts +0 -37
- package/src/components/layouts/panel/panel.component.html +0 -9
- package/src/components/layouts/panel/panel.component.scss +0 -110
- package/src/components/layouts/panel/panel.component.spec.ts +0 -22
- package/src/components/layouts/panel/panel.component.stories.ts +0 -249
- package/src/components/layouts/panel/panel.component.ts +0 -16
- package/src/components/layouts/panel/panel.mdx +0 -28
- package/src/components/layouts/sidebar/sidebar.component.html +0 -14
- package/src/components/layouts/sidebar/sidebar.component.scss +0 -87
- package/src/components/layouts/sidebar/sidebar.component.spec.ts +0 -22
- package/src/components/layouts/sidebar/sidebar.component.stories.ts +0 -243
- package/src/components/layouts/sidebar/sidebar.component.ts +0 -14
- package/src/components/layouts/sidebar/sidebar.mdx +0 -18
- package/src/components/layouts/toolbar/toolbar.component.scss +0 -11
- package/src/components/layouts/toolbar/toolbar.component.spec.ts +0 -22
- package/src/components/layouts/toolbar/toolbar.component.stories.ts +0 -59
- package/src/components/layouts/toolbar/toolbar.component.ts +0 -15
- package/src/components/layouts/toolbar/toolbar.mdx +0 -16
- package/src/components/menu/menu-close-triggers.directive.ts +0 -27
- package/src/components/menu/menu-container/menu-container.component.html +0 -15
- package/src/components/menu/menu-container/menu-container.component.scss +0 -32
- package/src/components/menu/menu-container/menu-container.component.spec.ts +0 -22
- package/src/components/menu/menu-container/menu-container.component.ts +0 -125
- package/src/components/menu/menu-container/menu-container.stories.ts +0 -105
- package/src/components/menu/menu-header/menu-header.component.html +0 -5
- package/src/components/menu/menu-header/menu-header.component.scss +0 -20
- package/src/components/menu/menu-header/menu-header.component.spec.ts +0 -22
- package/src/components/menu/menu-header/menu-header.component.ts +0 -10
- package/src/components/menu/menu-item/menu-item.component.html +0 -42
- package/src/components/menu/menu-item/menu-item.component.scss +0 -163
- package/src/components/menu/menu-item/menu-item.component.ts +0 -120
- package/src/components/menu/menu-item/menu-item.stories.ts +0 -104
- package/src/components/menu/menu-item-group/menu-item-group.component.html +0 -9
- package/src/components/menu/menu-item-group/menu-item-group.component.scss +0 -33
- package/src/components/menu/menu-item-group/menu-item-group.component.spec.ts +0 -23
- package/src/components/menu/menu-item-group/menu-item-group.component.ts +0 -16
- package/src/components/menu/menu-item-group/menu-item-group.stories.ts +0 -83
- package/src/components/menu/menu-separator/menu-separator.component.scss +0 -6
- package/src/components/menu/menu-separator/menu-separator.component.spec.ts +0 -22
- package/src/components/menu/menu-separator/menu-separator.component.ts +0 -9
- package/src/components/menu/menu-sub-item/menu-sub-item.component.html +0 -18
- package/src/components/menu/menu-sub-item/menu-sub-item.component.scss +0 -125
- package/src/components/menu/menu-sub-item/menu-sub-item.component.ts +0 -66
- package/src/components/menu/menu.component.html +0 -3
- package/src/components/menu/menu.component.scss +0 -5
- package/src/components/menu/menu.component.ts +0 -135
- package/src/components/menu/menu.mdx +0 -119
- package/src/components/menu/menu.module.ts +0 -57
- package/src/components/menu/menu.stories.ts +0 -211
- package/src/components/navbar/navbar-header/navbar-header.component.html +0 -5
- package/src/components/navbar/navbar-header/navbar-header.component.scss +0 -20
- package/src/components/navbar/navbar-header/navbar-header.component.ts +0 -10
- package/src/components/navbar/navbar-item/navbar-item.component.html +0 -35
- package/src/components/navbar/navbar-item/navbar-item.component.scss +0 -142
- package/src/components/navbar/navbar-item/navbar-item.component.ts +0 -73
- package/src/components/navbar/navbar-item/navbar-item.stories.ts +0 -82
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.html +0 -22
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.scss +0 -152
- package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.ts +0 -40
- package/src/components/navbar/navbar.component.html +0 -5
- package/src/components/navbar/navbar.component.scss +0 -16
- package/src/components/navbar/navbar.component.ts +0 -63
- package/src/components/navbar/navbar.mdx +0 -20
- package/src/components/navbar/navbar.module.ts +0 -41
- package/src/components/navbar/navbar.stories.ts +0 -201
- package/src/components/number-input/number-input.component.html +0 -39
- package/src/components/number-input/number-input.component.scss +0 -184
- package/src/components/number-input/number-input.component.spec.ts +0 -26
- package/src/components/number-input/number-input.component.ts +0 -96
- package/src/components/number-input/number-input.mdx +0 -25
- package/src/components/number-input/number-input.module.ts +0 -23
- package/src/components/number-input/number-input.stories.ts +0 -87
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.html +0 -45
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.scss +0 -217
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.spec.ts +0 -32
- package/src/components/paginator/paginator-advanced/paginator-advanced.component.ts +0 -107
- package/src/components/paginator/paginator-advanced/paginator-advanced.stories.ts +0 -69
- package/src/components/paginator/paginator.component.html +0 -32
- package/src/components/paginator/paginator.component.scss +0 -212
- package/src/components/paginator/paginator.component.spec.ts +0 -24
- package/src/components/paginator/paginator.component.ts +0 -118
- package/src/components/paginator/paginator.mdx +0 -55
- package/src/components/paginator/paginator.model.ts +0 -8
- package/src/components/paginator/paginator.module.ts +0 -31
- package/src/components/paginator/paginator.stories.ts +0 -142
- package/src/components/phone-input/country-code.data.ts +0 -495
- package/src/components/phone-input/images/arrow_drop_down_grey600_18dp.png +0 -0
- package/src/components/phone-input/images/flags_sprite_2x.png +0 -0
- package/src/components/phone-input/phone-input.component.html +0 -68
- package/src/components/phone-input/phone-input.component.scss +0 -467
- package/src/components/phone-input/phone-input.component.spec.ts +0 -33
- package/src/components/phone-input/phone-input.component.ts +0 -318
- package/src/components/phone-input/phone-input.mdx +0 -49
- package/src/components/phone-input/phone-input.model.ts +0 -11
- package/src/components/phone-input/phone-input.module.ts +0 -29
- package/src/components/phone-input/phone-input.stories.ts +0 -201
- package/src/components/popover/popover-panel/popover-panel.component.html +0 -4
- package/src/components/popover/popover-panel/popover-panel.component.scss +0 -220
- package/src/components/popover/popover-panel/popover-panel.component.spec.ts +0 -22
- package/src/components/popover/popover-panel/popover-panel.component.ts +0 -22
- package/src/components/popover/popover-panel/popover-panel.stories.ts +0 -162
- package/src/components/popover/popover.component.html +0 -13
- package/src/components/popover/popover.component.spec.ts +0 -26
- package/src/components/popover/popover.component.ts +0 -77
- package/src/components/popover/popover.mdx +0 -52
- package/src/components/popover/popover.module.ts +0 -28
- package/src/components/popover/popover.stories.ts +0 -176
- package/src/components/progress/bar/bar.component.html +0 -18
- package/src/components/progress/bar/bar.component.spec.ts +0 -26
- package/src/components/progress/bar/bar.component.ts +0 -98
- package/src/components/progress/bar/bar.mdx +0 -22
- package/src/components/progress/bar/bar.scss +0 -313
- package/src/components/progress/bar/bar.stories.ts +0 -52
- package/src/components/progress/progress.module.ts +0 -21
- package/src/components/progress/spinner/spinner.component.html +0 -53
- package/src/components/progress/spinner/spinner.component.scss +0 -225
- package/src/components/progress/spinner/spinner.component.spec.ts +0 -26
- package/src/components/progress/spinner/spinner.component.ts +0 -107
- package/src/components/progress/spinner/spinner.mdx +0 -21
- package/src/components/progress/spinner/spinner.stories.ts +0 -70
- package/src/components/radio/radio-group.component.ts +0 -124
- package/src/components/radio/radio-group.mdx +0 -45
- package/src/components/radio/radio-group.stories.ts +0 -76
- package/src/components/radio/radio.component.html +0 -19
- package/src/components/radio/radio.component.scss +0 -132
- package/src/components/radio/radio.component.ts +0 -33
- package/src/components/radio/radio.module.ts +0 -24
- package/src/components/radio/radio.stories.ts +0 -168
- package/src/components/section-heading/back-button/back-button.component.html +0 -3
- package/src/components/section-heading/back-button/back-button.component.scss +0 -37
- package/src/components/section-heading/back-button/back-button.component.spec.ts +0 -27
- package/src/components/section-heading/back-button/back-button.component.ts +0 -24
- package/src/components/section-heading/back-button/back-button.stories.ts +0 -39
- package/src/components/section-heading/section-heading.component.html +0 -15
- package/src/components/section-heading/section-heading.component.scss +0 -48
- package/src/components/section-heading/section-heading.component.spec.ts +0 -28
- package/src/components/section-heading/section-heading.component.ts +0 -21
- package/src/components/section-heading/section-heading.mdx +0 -22
- package/src/components/section-heading/section-heading.module.ts +0 -28
- package/src/components/section-heading/section-heading.stories.ts +0 -141
- package/src/components/section-heading/subsection-heading/subsection-heading.component.html +0 -7
- package/src/components/section-heading/subsection-heading/subsection-heading.component.scss +0 -31
- package/src/components/section-heading/subsection-heading/subsection-heading.component.spec.ts +0 -23
- package/src/components/section-heading/subsection-heading/subsection-heading.component.ts +0 -17
- package/src/components/section-heading/subsection-heading/subsection-heading.stories.ts +0 -60
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.html +0 -75
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.scss +0 -91
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.spec.ts +0 -89
- package/src/components/select-menu/multi-select-menu/multi-select-menu.component.ts +0 -388
- package/src/components/select-menu/multi-select-menu/multi-select-menu.mdx +0 -27
- package/src/components/select-menu/multi-select-menu/multi-select-menu.stories.ts +0 -415
- package/src/components/select-menu/select-menu.component.html +0 -40
- package/src/components/select-menu/select-menu.component.scss +0 -4
- package/src/components/select-menu/select-menu.component.spec.ts +0 -242
- package/src/components/select-menu/select-menu.component.ts +0 -331
- package/src/components/select-menu/select-menu.mdx +0 -222
- package/src/components/select-menu/select-menu.module.ts +0 -37
- package/src/components/select-menu/select-menu.stories.ts +0 -409
- package/src/components/shadows/shadows.stories.ts +0 -75
- package/src/components/shared/pipes/pipes.module.ts +0 -24
- package/src/components/shared/pipes/translate.pipe.ts +0 -40
- package/src/components/shared/pipes/trusthtml.pipe.ts +0 -14
- package/src/components/shared/services/menu-manager.service.ts +0 -23
- package/src/components/shared/translation.service.ts +0 -24
- package/src/components/snackbar/snackbar/snackbar.component.html +0 -15
- package/src/components/snackbar/snackbar/snackbar.component.scss +0 -58
- package/src/components/snackbar/snackbar/snackbar.component.spec.ts +0 -56
- package/src/components/snackbar/snackbar/snackbar.component.ts +0 -115
- package/src/components/snackbar/snackbar/snackbar.stories.ts +0 -92
- package/src/components/snackbar/snackbar-container/snackbar-container.component.html +0 -18
- package/src/components/snackbar/snackbar-container/snackbar-container.component.scss +0 -22
- package/src/components/snackbar/snackbar-container/snackbar-container.component.spec.ts +0 -98
- package/src/components/snackbar/snackbar-container/snackbar-container.component.ts +0 -71
- package/src/components/snackbar/snackbar-container/snackbar-container.stories.ts +0 -70
- package/src/components/snackbar/snackbar-message.model.ts +0 -13
- package/src/components/snackbar/snackbar-timer.service.ts +0 -32
- package/src/components/snackbar/snackbar.mdx +0 -90
- package/src/components/snackbar/snackbar.module.ts +0 -31
- package/src/components/snackbar/snackbar.service.spec.ts +0 -16
- package/src/components/snackbar/snackbar.service.ts +0 -36
- package/src/components/stepper/step.component.html +0 -33
- package/src/components/stepper/step.component.scss +0 -421
- package/src/components/stepper/step.component.ts +0 -92
- package/src/components/stepper/step.stories.ts +0 -73
- package/src/components/stepper/stepper.component.ts +0 -100
- package/src/components/stepper/stepper.mdx +0 -83
- package/src/components/stepper/stepper.module.ts +0 -27
- package/src/components/stepper/stepper.stories.ts +0 -233
- package/src/components/switch/switch.component.html +0 -10
- package/src/components/switch/switch.component.scss +0 -179
- package/src/components/switch/switch.component.spec.ts +0 -22
- package/src/components/switch/switch.component.ts +0 -58
- package/src/components/switch/switch.mdx +0 -39
- package/src/components/switch/switch.module.ts +0 -18
- package/src/components/switch/switch.stories.ts +0 -117
- package/src/components/table/cell.ts +0 -111
- package/src/components/table/row.ts +0 -113
- package/src/components/table/table-dense.component.scss +0 -178
- package/src/components/table/table-dense.component.ts +0 -36
- package/src/components/table/table-dense.stories.ts +0 -105
- package/src/components/table/table.component.html +0 -4
- package/src/components/table/table.component.scss +0 -186
- package/src/components/table/table.component.ts +0 -36
- package/src/components/table/table.mdx +0 -83
- package/src/components/table/table.module.ts +0 -53
- package/src/components/table/table.stories.ts +0 -198
- package/src/components/tabs/tab/tab.component.html +0 -3
- package/src/components/tabs/tab/tab.component.scss +0 -79
- package/src/components/tabs/tab/tab.component.spec.ts +0 -22
- package/src/components/tabs/tab/tab.component.ts +0 -47
- package/src/components/tabs/tab/tab.stories.ts +0 -38
- package/src/components/tabs/tab-panel/tab-panel.component.html +0 -1
- package/src/components/tabs/tab-panel/tab-panel.component.scss +0 -7
- package/src/components/tabs/tab-panel/tab-panel.component.spec.ts +0 -22
- package/src/components/tabs/tab-panel/tab-panel.component.ts +0 -11
- package/src/components/tabs/tabs.component.html +0 -2
- package/src/components/tabs/tabs.component.scss +0 -9
- package/src/components/tabs/tabs.component.spec.ts +0 -22
- package/src/components/tabs/tabs.component.ts +0 -69
- package/src/components/tabs/tabs.mdx +0 -74
- package/src/components/tabs/tabs.module.ts +0 -26
- package/src/components/tabs/tabs.stories.ts +0 -87
- package/src/components/text-input/text-input.component.html +0 -37
- package/src/components/text-input/text-input.component.scss +0 -155
- package/src/components/text-input/text-input.component.spec.ts +0 -26
- package/src/components/text-input/text-input.component.ts +0 -100
- package/src/components/text-input/text-input.mdx +0 -24
- package/src/components/text-input/text-input.module.ts +0 -23
- package/src/components/text-input/text-input.stories.ts +0 -125
- package/src/components/textarea-input/textarea-input.component.html +0 -18
- package/src/components/textarea-input/textarea-input.component.scss +0 -97
- package/src/components/textarea-input/textarea-input.component.spec.ts +0 -28
- package/src/components/textarea-input/textarea-input.component.ts +0 -73
- package/src/components/textarea-input/textarea-input.mdx +0 -43
- package/src/components/textarea-input/textarea-input.module.ts +0 -25
- package/src/components/textarea-input/textarea-input.stories.ts +0 -106
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.html +0 -6
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.scss +0 -109
- package/src/components/tooltip/tooltip-panel/tooltip-panel.component.ts +0 -22
- package/src/components/tooltip/tooltip-panel/tooltip-panel.stories.ts +0 -74
- package/src/components/tooltip/tooltip.component.html +0 -16
- package/src/components/tooltip/tooltip.component.scss +0 -26
- package/src/components/tooltip/tooltip.component.spec.ts +0 -24
- package/src/components/tooltip/tooltip.component.ts +0 -30
- package/src/components/tooltip/tooltip.mdx +0 -27
- package/src/components/tooltip/tooltip.module.ts +0 -28
- package/src/components/tooltip/tooltip.stories.ts +0 -111
- package/src/components/typography-sample/typography-sample.component.html +0 -25
- package/src/components/typography-sample/typography-sample.component.ts +0 -10
- package/src/components/typography-sample/typography-sample.module.ts +0 -17
- package/src/components/typography-sample/typography-sample.stories.ts +0 -34
- package/src/components/typography-sample/typography.mdx +0 -41
- package/src/components/wrapped-input/wrapped-input.component.html +0 -10
- package/src/components/wrapped-input/wrapped-input.component.scss +0 -32
- package/src/components/wrapped-input/wrapped-input.component.spec.ts +0 -34
- package/src/components/wrapped-input/wrapped-input.component.ts +0 -18
- package/src/components/wrapped-input/wrapped-input.mdx +0 -26
- package/src/components/wrapped-input/wrapped-input.module.ts +0 -20
- package/src/components/wrapped-input/wrapped-input.stories.ts +0 -195
- package/src/directives/menu-register.directive.ts +0 -25
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -16
- package/src/storybook.helper.ts +0 -35
- package/src/test.ts +0 -15
- package/tsconfig.json +0 -29
- package/tsconfig.lib.json +0 -21
- package/tsconfig.spec.json +0 -28
- package/update-icons.js +0 -40
- /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.svg +0 -0
- /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.ttf +0 -0
- /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.woff +0 -0
- /package/{src/assets → assets}/svg/3d-sphere-rotate-arrows.svg +0 -0
- /package/{src/assets → assets}/svg/add-circle.svg +0 -0
- /package/{src/assets → assets}/svg/add-new-create.svg +0 -0
- /package/{src/assets → assets}/svg/add-row-above.svg +0 -0
- /package/{src/assets → assets}/svg/add-row-below.svg +0 -0
- /package/{src/assets → assets}/svg/add-server-databases-endpoint.svg +0 -0
- /package/{src/assets → assets}/svg/add-server.svg +0 -0
- /package/{src/assets → assets}/svg/add-user.svg +0 -0
- /package/{src/assets → assets}/svg/ai.svg +0 -0
- /package/{src/assets → assets}/svg/apple.svg +0 -0
- /package/{src/assets → assets}/svg/apply-copy-duplicate.svg +0 -0
- /package/{src/assets → assets}/svg/arrange-filter-sort.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-annotate.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-back-collapse.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-back.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-down.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-forward-collapse.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-forward.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-redo.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-rotate-restore.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-rotate.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-undo.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-up-high-priority.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-up-low-priority.svg +0 -0
- /package/{src/assets → assets}/svg/arrow-up.svg +0 -0
- /package/{src/assets → assets}/svg/arrow.svg +0 -0
- /package/{src/assets → assets}/svg/barcode-serial.svg +0 -0
- /package/{src/assets → assets}/svg/barcode-stack-scan.svg +0 -0
- /package/{src/assets → assets}/svg/bell-notification.svg +0 -0
- /package/{src/assets → assets}/svg/bezier-curve.svg +0 -0
- /package/{src/assets → assets}/svg/blocks-code-test-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/book-lab-flask.svg +0 -0
- /package/{src/assets → assets}/svg/bookmark-plus-add.svg +0 -0
- /package/{src/assets → assets}/svg/bookmark.svg +0 -0
- /package/{src/assets → assets}/svg/brain.svg +0 -0
- /package/{src/assets → assets}/svg/brightness-photo-edit.svg +0 -0
- /package/{src/assets → assets}/svg/browser-internet-web-windows.svg +0 -0
- /package/{src/assets → assets}/svg/brush-edit-create.svg +0 -0
- /package/{src/assets → assets}/svg/bucket-paint.svg +0 -0
- /package/{src/assets → assets}/svg/button-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/calendar-arrow-left-center.svg +0 -0
- /package/{src/assets → assets}/svg/calendar-schedule.svg +0 -0
- /package/{src/assets → assets}/svg/camera-photo-capture.svg +0 -0
- /package/{src/assets → assets}/svg/cash-banknotes.svg +0 -0
- /package/{src/assets → assets}/svg/certificate.svg +0 -0
- /package/{src/assets → assets}/svg/chart-square.svg +0 -0
- /package/{src/assets → assets}/svg/chart-trend-square.svg +0 -0
- /package/{src/assets → assets}/svg/chat-messages-bubble.svg +0 -0
- /package/{src/assets → assets}/svg/check-mark-certificate.svg +0 -0
- /package/{src/assets → assets}/svg/checklist-tasks-chechmark-square.svg +0 -0
- /package/{src/assets → assets}/svg/checklist.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-back.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-down.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-forward.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-input-number.svg +0 -0
- /package/{src/assets → assets}/svg/chevron-up.svg +0 -0
- /package/{src/assets → assets}/svg/circle-ellipses.svg +0 -0
- /package/{src/assets → assets}/svg/circle.svg +0 -0
- /package/{src/assets → assets}/svg/clap-applause-hands.svg +0 -0
- /package/{src/assets → assets}/svg/clip-attachment.svg +0 -0
- /package/{src/assets → assets}/svg/clock-history.svg +0 -0
- /package/{src/assets → assets}/svg/clock-hour-4.svg +0 -0
- /package/{src/assets → assets}/svg/clock-loading.svg +0 -0
- /package/{src/assets → assets}/svg/close-circled.svg +0 -0
- /package/{src/assets → assets}/svg/close.svg +0 -0
- /package/{src/assets → assets}/svg/closed-freehand-vector-poly.svg +0 -0
- /package/{src/assets → assets}/svg/cloud-network-add.svg +0 -0
- /package/{src/assets → assets}/svg/cloud-storage-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/cloud-upload.svg +0 -0
- /package/{src/assets → assets}/svg/code-block-embed.svg +0 -0
- /package/{src/assets → assets}/svg/code-text.svg +0 -0
- /package/{src/assets → assets}/svg/color-design-profile.svg +0 -0
- /package/{src/assets → assets}/svg/color-ven-design-profile-central.svg +0 -0
- /package/{src/assets → assets}/svg/column-edit.svg +0 -0
- /package/{src/assets → assets}/svg/computer-chip.svg +0 -0
- /package/{src/assets → assets}/svg/contrast-photo-edit.svg +0 -0
- /package/{src/assets → assets}/svg/copy-item.svg +0 -0
- /package/{src/assets → assets}/svg/creative-commons.svg +0 -0
- /package/{src/assets → assets}/svg/crosshair.svg +0 -0
- /package/{src/assets → assets}/svg/crown-style-circle.svg +0 -0
- /package/{src/assets → assets}/svg/cursor-select.svg +0 -0
- /package/{src/assets → assets}/svg/curve-object-secet-cursor.svg +0 -0
- /package/{src/assets → assets}/svg/data-tree.svg +0 -0
- /package/{src/assets → assets}/svg/delivery-shipment-packages.svg +0 -0
- /package/{src/assets → assets}/svg/dna-hospital-medical.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-add-plus-bottom-left.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-blank.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-checkmark-bottom-left.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-download.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-list-protocol.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-tar.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-upload-bottom-center.svg +0 -0
- /package/{src/assets → assets}/svg/document-file-zip.svg +0 -0
- /package/{src/assets → assets}/svg/document-status-done-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/document-visible.svg +0 -0
- /package/{src/assets → assets}/svg/documents-file.svg +0 -0
- /package/{src/assets → assets}/svg/documents-files.svg +0 -0
- /package/{src/assets → assets}/svg/done-check-tracked.svg +0 -0
- /package/{src/assets → assets}/svg/done-check.svg +0 -0
- /package/{src/assets → assets}/svg/download-status.svg +0 -0
- /package/{src/assets → assets}/svg/download.svg +0 -0
- /package/{src/assets → assets}/svg/drag-drop-indicator.svg +0 -0
- /package/{src/assets → assets}/svg/draw-rectangle.svg +0 -0
- /package/{src/assets → assets}/svg/earth-globe-fail.svg +0 -0
- /package/{src/assets → assets}/svg/edit-boxed.svg +0 -0
- /package/{src/assets → assets}/svg/edit-erase.svg +0 -0
- /package/{src/assets → assets}/svg/edit.svg +0 -0
- /package/{src/assets → assets}/svg/email-mail-checkmark-group.svg +0 -0
- /package/{src/assets → assets}/svg/email.svg +0 -0
- /package/{src/assets → assets}/svg/embed-circle.svg +0 -0
- /package/{src/assets → assets}/svg/exchange.svg +0 -0
- /package/{src/assets → assets}/svg/expand-pathfinder-dot-square-segmentation.svg +0 -0
- /package/{src/assets → assets}/svg/facebook.svg +0 -0
- /package/{src/assets → assets}/svg/file-blank-image-load-mask.svg +0 -0
- /package/{src/assets → assets}/svg/file-download.svg +0 -0
- /package/{src/assets → assets}/svg/file-text.svg +0 -0
- /package/{src/assets → assets}/svg/files-library-content.svg +0 -0
- /package/{src/assets → assets}/svg/files-library.svg +0 -0
- /package/{src/assets → assets}/svg/files.svg +0 -0
- /package/{src/assets → assets}/svg/filter-sort-add.svg +0 -0
- /package/{src/assets → assets}/svg/filter-sort-check-mark.svg +0 -0
- /package/{src/assets → assets}/svg/filter-sort-delete.svg +0 -0
- /package/{src/assets → assets}/svg/filter.svg +0 -0
- /package/{src/assets → assets}/svg/flag.svg +0 -0
- /package/{src/assets → assets}/svg/flip-horizontal.svg +0 -0
- /package/{src/assets → assets}/svg/flip-vertical.svg +0 -0
- /package/{src/assets → assets}/svg/floppy-save.svg +0 -0
- /package/{src/assets → assets}/svg/flywheel-mark-logo.svg +0 -0
- /package/{src/assets → assets}/svg/flywheel-viewer-mark-logo.svg +0 -0
- /package/{src/assets → assets}/svg/folder-add.svg +0 -0
- /package/{src/assets → assets}/svg/folder-blank.svg +0 -0
- /package/{src/assets → assets}/svg/folder-checked.svg +0 -0
- /package/{src/assets → assets}/svg/folder-group.svg +0 -0
- /package/{src/assets → assets}/svg/folder-open.svg +0 -0
- /package/{src/assets → assets}/svg/folder-share.svg +0 -0
- /package/{src/assets → assets}/svg/folders-copy-expand-arrow-down.svg +0 -0
- /package/{src/assets → assets}/svg/folders-copy-expand-arrow-up.svg +0 -0
- /package/{src/assets → assets}/svg/form-metadata-element.svg +0 -0
- /package/{src/assets → assets}/svg/free-rights.svg +0 -0
- /package/{src/assets → assets}/svg/freehand-vector-poly.svg +0 -0
- /package/{src/assets → assets}/svg/full-screen-zoom.svg +0 -0
- /package/{src/assets → assets}/svg/github-color-login.svg +0 -0
- /package/{src/assets → assets}/svg/gitlab.svg +0 -0
- /package/{src/assets → assets}/svg/graduate-hat.svg +0 -0
- /package/{src/assets → assets}/svg/grid-dot-square.svg +0 -0
- /package/{src/assets → assets}/svg/grid-layout.svg +0 -0
- /package/{src/assets → assets}/svg/hammer-legal-square.svg +0 -0
- /package/{src/assets → assets}/svg/hammer-screwdriver.svg +0 -0
- /package/{src/assets → assets}/svg/hand-money-currency.svg +0 -0
- /package/{src/assets → assets}/svg/header-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/home-modern-door.svg +0 -0
- /package/{src/assets → assets}/svg/home-modern-option-lines.svg +0 -0
- /package/{src/assets → assets}/svg/human-artificial-intelligence.svg +0 -0
- /package/{src/assets → assets}/svg/icon-placeholder.svg +0 -0
- /package/{src/assets → assets}/svg/image-photo-copy-left-down.svg +0 -0
- /package/{src/assets → assets}/svg/image-picture-square.svg +0 -0
- /package/{src/assets → assets}/svg/information-circle.svg +0 -0
- /package/{src/assets → assets}/svg/invoice-checkmark-paid.svg +0 -0
- /package/{src/assets → assets}/svg/invoice.svg +0 -0
- /package/{src/assets → assets}/svg/italic.svg +0 -0
- /package/{src/assets → assets}/svg/items-group-elements.svg +0 -0
- /package/{src/assets → assets}/svg/key.svg +0 -0
- /package/{src/assets → assets}/svg/keyboard.svg +0 -0
- /package/{src/assets → assets}/svg/keychain.svg +0 -0
- /package/{src/assets → assets}/svg/label-tag.svg +0 -0
- /package/{src/assets → assets}/svg/laptop-health-medical-cross.svg +0 -0
- /package/{src/assets → assets}/svg/layers.svg +0 -0
- /package/{src/assets → assets}/svg/layout-grid.svg +0 -0
- /package/{src/assets → assets}/svg/layout.svg +0 -0
- /package/{src/assets → assets}/svg/line.svg +0 -0
- /package/{src/assets → assets}/svg/link-unlink.svg +0 -0
- /package/{src/assets → assets}/svg/link.svg +0 -0
- /package/{src/assets → assets}/svg/linkedin.svg +0 -0
- /package/{src/assets → assets}/svg/linux.svg +0 -0
- /package/{src/assets → assets}/svg/list-paragraph-number.svg +0 -0
- /package/{src/assets → assets}/svg/list-paragraph.svg +0 -0
- /package/{src/assets → assets}/svg/list-test-lab-flask.svg +0 -0
- /package/{src/assets → assets}/svg/livewire-tool.svg +0 -0
- /package/{src/assets → assets}/svg/loading-status-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/lock-unlock.svg +0 -0
- /package/{src/assets → assets}/svg/lock.svg +0 -0
- /package/{src/assets → assets}/svg/logout.svg +0 -0
- /package/{src/assets → assets}/svg/lung.svg +0 -0
- /package/{src/assets → assets}/svg/lungs.svg +0 -0
- /package/{src/assets → assets}/svg/markdown.svg +0 -0
- /package/{src/assets → assets}/svg/measure-angle.svg +0 -0
- /package/{src/assets → assets}/svg/measure-ruler-calibration.svg +0 -0
- /package/{src/assets → assets}/svg/media-library-imports-dowload.svg +0 -0
- /package/{src/assets → assets}/svg/menu-burger-handle.svg +0 -0
- /package/{src/assets → assets}/svg/menu-horizontal.svg +0 -0
- /package/{src/assets → assets}/svg/menu-list-form-square.svg +0 -0
- /package/{src/assets → assets}/svg/menu-vertical.svg +0 -0
- /package/{src/assets → assets}/svg/message-chat-info.svg +0 -0
- /package/{src/assets → assets}/svg/message-chat-question-support.svg +0 -0
- /package/{src/assets → assets}/svg/message-checkmark-sent.svg +0 -0
- /package/{src/assets → assets}/svg/message-question-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/microphone-mic-rec-circle.svg +0 -0
- /package/{src/assets → assets}/svg/microphone-mic-rec.svg +0 -0
- /package/{src/assets → assets}/svg/microphone-mic-recording-circle.svg +0 -0
- /package/{src/assets → assets}/svg/minus.svg +0 -0
- /package/{src/assets → assets}/svg/modalities.svg +0 -0
- /package/{src/assets → assets}/svg/molecule.svg +0 -0
- /package/{src/assets → assets}/svg/money-coin.svg +0 -0
- /package/{src/assets → assets}/svg/money-dollar.svg +0 -0
- /package/{src/assets → assets}/svg/money.svg +0 -0
- /package/{src/assets → assets}/svg/monitor-computer.svg +0 -0
- /package/{src/assets → assets}/svg/mouse-big.svg +0 -0
- /package/{src/assets → assets}/svg/move.svg +0 -0
- /package/{src/assets → assets}/svg/music-play-resume.svg +0 -0
- /package/{src/assets → assets}/svg/music-stop.svg +0 -0
- /package/{src/assets → assets}/svg/mute.svg +0 -0
- /package/{src/assets → assets}/svg/network-storage-alert.svg +0 -0
- /package/{src/assets → assets}/svg/notebook-add-plus.svg +0 -0
- /package/{src/assets → assets}/svg/notebook-open.svg +0 -0
- /package/{src/assets → assets}/svg/notebook-pen-edit.svg +0 -0
- /package/{src/assets → assets}/svg/notebook.svg +0 -0
- /package/{src/assets → assets}/svg/notes-pen.svg +0 -0
- /package/{src/assets → assets}/svg/object-search-zoom-plus.svg +0 -0
- /package/{src/assets → assets}/svg/open.svg +0 -0
- /package/{src/assets → assets}/svg/paint-roller.svg +0 -0
- /package/{src/assets → assets}/svg/pause.svg +0 -0
- /package/{src/assets → assets}/svg/pen-edit-circle.svg +0 -0
- /package/{src/assets → assets}/svg/pencil-edit-create.svg +0 -0
- /package/{src/assets → assets}/svg/photo-edit-brightness-invert.svg +0 -0
- /package/{src/assets → assets}/svg/pie-chart.svg +0 -0
- /package/{src/assets → assets}/svg/pie-graph-chart-sample.svg +0 -0
- /package/{src/assets → assets}/svg/plus-add-rectangle.svg +0 -0
- /package/{src/assets → assets}/svg/polygon.svg +0 -0
- /package/{src/assets → assets}/svg/private-mode-protection-circle.svg +0 -0
- /package/{src/assets → assets}/svg/protection-target.svg +0 -0
- /package/{src/assets → assets}/svg/protective-mask.svg +0 -0
- /package/{src/assets → assets}/svg/question-circle.svg +0 -0
- /package/{src/assets → assets}/svg/quote.svg +0 -0
- /package/{src/assets → assets}/svg/radiology-scan-circle.svg +0 -0
- /package/{src/assets → assets}/svg/radiology-scan.svg +0 -0
- /package/{src/assets → assets}/svg/reader-studies.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-arrow-manual.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-item-left.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-item-right.svg +0 -0
- /package/{src/assets → assets}/svg/rotate-refresh.svg +0 -0
- /package/{src/assets → assets}/svg/rotate.svg +0 -0
- /package/{src/assets → assets}/svg/ruler-bidirectional.svg +0 -0
- /package/{src/assets → assets}/svg/ruler.svg +0 -0
- /package/{src/assets → assets}/svg/scanner.svg +0 -0
- /package/{src/assets → assets}/svg/search-loop.svg +0 -0
- /package/{src/assets → assets}/svg/search-user-profile-person.svg +0 -0
- /package/{src/assets → assets}/svg/search-zoom-minus.svg +0 -0
- /package/{src/assets → assets}/svg/search-zoom-plus.svg +0 -0
- /package/{src/assets → assets}/svg/search.svg +0 -0
- /package/{src/assets → assets}/svg/section-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/send-message-share.svg +0 -0
- /package/{src/assets → assets}/svg/server-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/server-database-endpoint.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-checkmark-user.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-connect.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-download.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-key-protection.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-minimal-download.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-sync-import.svg +0 -0
- /package/{src/assets → assets}/svg/server-databases-sync.svg +0 -0
- /package/{src/assets → assets}/svg/server-upload.svg +0 -0
- /package/{src/assets → assets}/svg/server.svg +0 -0
- /package/{src/assets → assets}/svg/servers-database.svg +0 -0
- /package/{src/assets → assets}/svg/setting-gear.svg +0 -0
- /package/{src/assets → assets}/svg/settings-adjust.svg +0 -0
- /package/{src/assets → assets}/svg/settings-gear-square.svg +0 -0
- /package/{src/assets → assets}/svg/settings-gear.svg +0 -0
- /package/{src/assets → assets}/svg/settings-select.svg +0 -0
- /package/{src/assets → assets}/svg/shapes-objects.svg +0 -0
- /package/{src/assets → assets}/svg/share.svg +0 -0
- /package/{src/assets → assets}/svg/shield-protect.svg +0 -0
- /package/{src/assets → assets}/svg/show-visible.svg +0 -0
- /package/{src/assets → assets}/svg/smiley-emoji-face.svg +0 -0
- /package/{src/assets → assets}/svg/speed-dashboard.svg +0 -0
- /package/{src/assets → assets}/svg/square-fill-outline.svg +0 -0
- /package/{src/assets → assets}/svg/square-fill.svg +0 -0
- /package/{src/assets → assets}/svg/square-outline.svg +0 -0
- /package/{src/assets → assets}/svg/star.svg +0 -0
- /package/{src/assets → assets}/svg/stars-light-sparkle.svg +0 -0
- /package/{src/assets → assets}/svg/stomach.svg +0 -0
- /package/{src/assets → assets}/svg/stop-minus.svg +0 -0
- /package/{src/assets → assets}/svg/substract-group.svg +0 -0
- /package/{src/assets → assets}/svg/switch.svg +0 -0
- /package/{src/assets → assets}/svg/target-space-object-select.svg +0 -0
- /package/{src/assets → assets}/svg/target.svg +0 -0
- /package/{src/assets → assets}/svg/tasklist-to-do-checkmark.svg +0 -0
- /package/{src/assets → assets}/svg/technology-cube-3d.svg +0 -0
- /package/{src/assets → assets}/svg/test-lab-flask.svg +0 -0
- /package/{src/assets → assets}/svg/text-bold.svg +0 -0
- /package/{src/assets → assets}/svg/text-cross.svg +0 -0
- /package/{src/assets → assets}/svg/text-h1.svg +0 -0
- /package/{src/assets → assets}/svg/text-h2.svg +0 -0
- /package/{src/assets → assets}/svg/text-input-form.svg +0 -0
- /package/{src/assets → assets}/svg/text-long.svg +0 -0
- /package/{src/assets → assets}/svg/text-short-form-element.svg +0 -0
- /package/{src/assets → assets}/svg/text-underline.svg +0 -0
- /package/{src/assets → assets}/svg/thumbs-up-like.svg +0 -0
- /package/{src/assets → assets}/svg/timer-clock-style.svg +0 -0
- /package/{src/assets → assets}/svg/trash-delete.svg +0 -0
- /package/{src/assets → assets}/svg/twitter.svg +0 -0
- /package/{src/assets → assets}/svg/undone-uncheck-untracked.svg +0 -0
- /package/{src/assets → assets}/svg/unlimited-repeat-subscription-circle.svg +0 -0
- /package/{src/assets → assets}/svg/upload.svg +0 -0
- /package/{src/assets → assets}/svg/user-checked.svg +0 -0
- /package/{src/assets → assets}/svg/user-delete-cross.svg +0 -0
- /package/{src/assets → assets}/svg/user-document.svg +0 -0
- /package/{src/assets → assets}/svg/user-group.svg +0 -0
- /package/{src/assets → assets}/svg/user-key.svg +0 -0
- /package/{src/assets → assets}/svg/user-lock.svg +0 -0
- /package/{src/assets → assets}/svg/user-profile-cards-pool.svg +0 -0
- /package/{src/assets → assets}/svg/user-profile-group-discovery.svg +0 -0
- /package/{src/assets → assets}/svg/user-setting-gear.svg +0 -0
- /package/{src/assets → assets}/svg/user.svg +0 -0
- /package/{src/assets → assets}/svg/video-player-controls.svg +0 -0
- /package/{src/assets → assets}/svg/visible-eye-hidden.svg +0 -0
- /package/{src/assets → assets}/svg/volume-full.svg +0 -0
- /package/{src/assets → assets}/svg/warning-circle.svg +0 -0
- /package/{src/assets → assets}/svg/warning.svg +0 -0
- /package/{src/assets → assets}/svg/window-finder-resize-arrow-down.svg +0 -0
- /package/{src/assets → assets}/svg/window-finder-resize-arrow-up.svg +0 -0
- /package/{src/assets → assets}/svg/window-resize-left.svg +0 -0
- /package/{src/assets → assets}/svg/window-resize-right.svg +0 -0
- /package/{src/assets → assets}/svg/window-zoom-plus-loupe.svg +0 -0
- /package/{src/assets → assets}/svg/windows.svg +0 -0
- /package/{src/assets → assets}/svg/workspace-mode.svg +0 -0
- /package/{src/assets → assets}/svg/youtube.svg +0 -0
- /package/{src/assets → assets}/svg/zendesk-logo.svg +0 -0
- /package/{src/global.scss → global.scss} +0 -0
- /package/{src/public-api.ts → public-api.d.ts} +0 -0
- /package/{src/public-api.scss → public-api.scss} +0 -0
- /package/{src/scss → scss}/atoms/ghost.scss +0 -0
- /package/{src/scss → scss}/atoms/scrollbar.scss +0 -0
- /package/{src/scss → scss}/config/colors.scss +0 -0
- /package/{src/scss → scss}/config/overlay.scss +0 -0
- /package/{src/scss → scss}/config/shadows.scss +0 -0
- /package/{src/scss → scss}/config/typography.scss +0 -0
- /package/{src/scss → scss}/icons/_icon-font-face.scss +0 -0
- /package/{src/scss → scss}/icons/_icon-glyphs.scss +0 -0
- /package/{src/scss → scss}/icons/_icon-variables.scss +0 -0
- /package/{src/scss → scss}/icons/icons.scss +0 -0
package/styles.css
ADDED
|
@@ -0,0 +1,1776 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
@import 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700';
|
|
3
|
+
/******************************************************
|
|
4
|
+
Color Palettes for use with vision's theming system
|
|
5
|
+
*******************************************************/
|
|
6
|
+
.vision-light-theme {
|
|
7
|
+
--card-background: #ffffffff;
|
|
8
|
+
--card-header: #f9f9f9ff;
|
|
9
|
+
--green-base: #14ae5cff;
|
|
10
|
+
--green-border: #14ae5c66;
|
|
11
|
+
--green-dark: #076d37ff;
|
|
12
|
+
--green-focus: #14ae5c1a;
|
|
13
|
+
--green-hover: #14ae5c0d;
|
|
14
|
+
--green-light: #e9f9efff;
|
|
15
|
+
--green-medium: #0c924bff;
|
|
16
|
+
--orange-base: #c47e09ff;
|
|
17
|
+
--orange-border: #f59e0b66;
|
|
18
|
+
--orange-dark: #935f07ff;
|
|
19
|
+
--orange-focus: #f59e0b1a;
|
|
20
|
+
--orange-hover: #f59e0b0d;
|
|
21
|
+
--orange-light: #fef5e7ff;
|
|
22
|
+
--orange-medium: #ac6f08ff;
|
|
23
|
+
--page-light: #ffffffff;
|
|
24
|
+
--page-shaded: #f1f3f4ff;
|
|
25
|
+
--primary-base: #1b68faff;
|
|
26
|
+
--primary-border: #1b69fa66;
|
|
27
|
+
--primary-dark: #103e96ff;
|
|
28
|
+
--primary-focus: #1b69fa1a;
|
|
29
|
+
--primary-hover: #1b69fa0d;
|
|
30
|
+
--primary-light: #e8f0ffff;
|
|
31
|
+
--primary-medium: #1653c8ff;
|
|
32
|
+
--red-base: #d73d3dff;
|
|
33
|
+
--red-border: #f0434366;
|
|
34
|
+
--red-dark: #782222ff;
|
|
35
|
+
--red-focus: #f043431a;
|
|
36
|
+
--red-hover: #f043430d;
|
|
37
|
+
--red-light: #fdececff;
|
|
38
|
+
--red-medium: #a73030ff;
|
|
39
|
+
--secondary-base: #b080fcff;
|
|
40
|
+
--secondary-border: #b081fc66;
|
|
41
|
+
--secondary-dark: #6a4d97ff;
|
|
42
|
+
--secondary-focus: #b081fc1a;
|
|
43
|
+
--secondary-hover: #b081fc0d;
|
|
44
|
+
--secondary-light: #f7f2ffff;
|
|
45
|
+
--secondary-medium: #8d66caff;
|
|
46
|
+
--separations-base: #e3e6eaff;
|
|
47
|
+
--separations-divider: #00000026;
|
|
48
|
+
--separations-input: #00000040;
|
|
49
|
+
--separations-overlay: #00000040;
|
|
50
|
+
--separations-border: #e6e6eaff;
|
|
51
|
+
--sidebar-base: #0a1936ff;
|
|
52
|
+
--slate-base: #748295ff;
|
|
53
|
+
--slate-border: #74829566;
|
|
54
|
+
--slate-dark: #464e59ff;
|
|
55
|
+
--slate-focus: #7482951a;
|
|
56
|
+
--slate-hover: #7482950d;
|
|
57
|
+
--slate-light: #f1f3f4ff;
|
|
58
|
+
--slate-medium: #5d6877ff;
|
|
59
|
+
--typography-base: #000000ff;
|
|
60
|
+
--typography-contrast: #ffffffff;
|
|
61
|
+
--typography-disabled: #c4c4c4ff;
|
|
62
|
+
--typography-light: #8996a9ff;
|
|
63
|
+
--typography-muted: #5d6877ff;
|
|
64
|
+
background-color: var(--page-light);
|
|
65
|
+
color: var(--typography-base);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.vision-dark-theme {
|
|
69
|
+
--card-background: #030e23ff;
|
|
70
|
+
--card-header: #0a1a36ff;
|
|
71
|
+
--green-base: #7adc9eff;
|
|
72
|
+
--green-border: #7adc9e80;
|
|
73
|
+
--green-dark: #22c55eff;
|
|
74
|
+
--green-focus: #7adc9e4d;
|
|
75
|
+
--green-hover: #7adc9e33;
|
|
76
|
+
--green-light: #e9f9efff;
|
|
77
|
+
--green-medium: #4ed17eff;
|
|
78
|
+
--orange-base: #f9c56dff;
|
|
79
|
+
--orange-border: #f9c56d80;
|
|
80
|
+
--orange-dark: #f59e0bff;
|
|
81
|
+
--orange-focus: #f9c56d4d;
|
|
82
|
+
--orange-hover: #f9c56d33;
|
|
83
|
+
--orange-light: #fef5e7ff;
|
|
84
|
+
--orange-medium: #f7b13cff;
|
|
85
|
+
--page-light: #000102ff;
|
|
86
|
+
--page-shaded: #000104ff;
|
|
87
|
+
--primary-base: #76a4fcff;
|
|
88
|
+
--primary-border: #76a4fc80;
|
|
89
|
+
--primary-dark: #4466a4ff;
|
|
90
|
+
--primary-focus: #76a4fc4d;
|
|
91
|
+
--primary-hover: #76a4fc33;
|
|
92
|
+
--primary-light: #e8f0ffff;
|
|
93
|
+
--primary-medium: #5b83ceff;
|
|
94
|
+
--red-base: #f15757ff;
|
|
95
|
+
--red-border: #f58f8f80;
|
|
96
|
+
--red-dark: #bf3636ff;
|
|
97
|
+
--red-focus: #f58f8f4d;
|
|
98
|
+
--red-hover: #f58f8f33;
|
|
99
|
+
--red-light: #fdececff;
|
|
100
|
+
--red-medium: #ef4444ff;
|
|
101
|
+
--secondary-base: #d0b3fdff;
|
|
102
|
+
--secondary-border: #d0b3fd80;
|
|
103
|
+
--secondary-dark: #9e73e3ff;
|
|
104
|
+
--secondary-focus: #d0b3fd4d;
|
|
105
|
+
--secondary-hover: #d0b3fd33;
|
|
106
|
+
--secondary-light: #f7f2ffff;
|
|
107
|
+
--secondary-medium: #b88dfcff;
|
|
108
|
+
--separations-base: #1e3154ff;
|
|
109
|
+
--separations-divider: #ffffff33;
|
|
110
|
+
--separations-input: #ffffff59;
|
|
111
|
+
--separations-overlay: #00000059;
|
|
112
|
+
--separations-border: #405e97ff;
|
|
113
|
+
--sidebar-base: #0a1936ff;
|
|
114
|
+
--slate-base: #c7cdd5ff;
|
|
115
|
+
--slate-border: #c7cdd580;
|
|
116
|
+
--slate-dark: #748295ff;
|
|
117
|
+
--slate-focus: #c7cdd54d;
|
|
118
|
+
--slate-hover: #c7cdd533;
|
|
119
|
+
--slate-light: #f1f3f4ff;
|
|
120
|
+
--slate-medium: #acb4bfff;
|
|
121
|
+
--typography-base: #ffffffff;
|
|
122
|
+
--typography-contrast: #030a19ff;
|
|
123
|
+
--typography-disabled: #4e5665ff;
|
|
124
|
+
--typography-light: #8595abff;
|
|
125
|
+
--typography-muted: #cad7e7ff;
|
|
126
|
+
background-color: var(--page-light);
|
|
127
|
+
color: var(--typography-base);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.vision-h1 {
|
|
131
|
+
font-family: Inter, sans-serif;
|
|
132
|
+
color: var(--typography-base);
|
|
133
|
+
font-weight: 500;
|
|
134
|
+
font-size: 22px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.vision-h2 {
|
|
138
|
+
font-family: Inter, sans-serif;
|
|
139
|
+
color: var(--typography-base);
|
|
140
|
+
font-weight: 500;
|
|
141
|
+
font-size: 18px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.vision-h3 {
|
|
145
|
+
font-family: Inter, sans-serif;
|
|
146
|
+
color: var(--typography-base);
|
|
147
|
+
font-weight: 500;
|
|
148
|
+
font-size: 16px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.vision-h4 {
|
|
152
|
+
font-family: Inter, sans-serif;
|
|
153
|
+
color: var(--typography-base);
|
|
154
|
+
font-weight: 500;
|
|
155
|
+
font-size: 14px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.vision-h5 {
|
|
159
|
+
font-family: Inter, sans-serif;
|
|
160
|
+
color: var(--typography-base);
|
|
161
|
+
font-weight: 500;
|
|
162
|
+
font-size: 12px;
|
|
163
|
+
line-height: 130%;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.vision-p1 {
|
|
167
|
+
font-size: 18px;
|
|
168
|
+
font-family: Inter, sans-serif;
|
|
169
|
+
color: var(--typography-base);
|
|
170
|
+
font-weight: 400;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.vision-p2 {
|
|
174
|
+
font-size: 14px;
|
|
175
|
+
font-family: Inter, sans-serif;
|
|
176
|
+
color: var(--typography-base);
|
|
177
|
+
font-weight: 400;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.vision-p3 {
|
|
181
|
+
font-size: 12px;
|
|
182
|
+
font-family: Inter, sans-serif;
|
|
183
|
+
color: var(--typography-base);
|
|
184
|
+
font-weight: 400;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.vision-p4 {
|
|
188
|
+
font-size: 10px;
|
|
189
|
+
font-family: Inter, sans-serif;
|
|
190
|
+
color: var(--typography-base);
|
|
191
|
+
font-weight: 400;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.vision-link {
|
|
195
|
+
text-decoration: underline;
|
|
196
|
+
color: var(--primary-base);
|
|
197
|
+
cursor: pointer;
|
|
198
|
+
}
|
|
199
|
+
.vision-link:hover {
|
|
200
|
+
text-decoration: none;
|
|
201
|
+
}
|
|
202
|
+
.vision-link:active {
|
|
203
|
+
text-decoration: none;
|
|
204
|
+
outline: 2px solid var(--primary-dark);
|
|
205
|
+
border-radius: 4px;
|
|
206
|
+
}
|
|
207
|
+
.vision-link:visited {
|
|
208
|
+
color: var(--secondary-base);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.vision-link-inherited {
|
|
212
|
+
text-decoration: underline;
|
|
213
|
+
color: var(--primary-base);
|
|
214
|
+
cursor: pointer;
|
|
215
|
+
color: inherit;
|
|
216
|
+
}
|
|
217
|
+
.vision-link-inherited:hover {
|
|
218
|
+
text-decoration: none;
|
|
219
|
+
}
|
|
220
|
+
.vision-link-inherited:active {
|
|
221
|
+
text-decoration: none;
|
|
222
|
+
outline: 2px solid var(--primary-dark);
|
|
223
|
+
border-radius: 4px;
|
|
224
|
+
}
|
|
225
|
+
.vision-link-inherited:visited {
|
|
226
|
+
color: var(--secondary-base);
|
|
227
|
+
}
|
|
228
|
+
.vision-link-inherited:visited {
|
|
229
|
+
color: inherit;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.vision-link-no-visited {
|
|
233
|
+
text-decoration: underline;
|
|
234
|
+
color: var(--primary-base);
|
|
235
|
+
cursor: pointer;
|
|
236
|
+
}
|
|
237
|
+
.vision-link-no-visited:hover {
|
|
238
|
+
text-decoration: none;
|
|
239
|
+
}
|
|
240
|
+
.vision-link-no-visited:active {
|
|
241
|
+
text-decoration: none;
|
|
242
|
+
outline: 2px solid var(--primary-dark);
|
|
243
|
+
border-radius: 4px;
|
|
244
|
+
}
|
|
245
|
+
.vision-link-no-visited:visited {
|
|
246
|
+
color: var(--secondary-base);
|
|
247
|
+
}
|
|
248
|
+
.vision-link-no-visited:visited {
|
|
249
|
+
color: var(--primary-base);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.vision-shadow-extra-large {
|
|
253
|
+
box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.1);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.vision-shadow-large {
|
|
257
|
+
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.vision-shadow-medium {
|
|
261
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.vision-shadow-small {
|
|
265
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.vision-shadow-inner {
|
|
269
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) inset;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/* stylelint-disable */
|
|
273
|
+
/* stylelint-disable */
|
|
274
|
+
/* stylelint-disable */
|
|
275
|
+
h1 {
|
|
276
|
+
font-family: Inter, sans-serif;
|
|
277
|
+
color: var(--typography-base);
|
|
278
|
+
font-weight: 500;
|
|
279
|
+
font-size: 22px;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
h2 {
|
|
283
|
+
font-family: Inter, sans-serif;
|
|
284
|
+
color: var(--typography-base);
|
|
285
|
+
font-weight: 500;
|
|
286
|
+
font-size: 18px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
h3 {
|
|
290
|
+
font-family: Inter, sans-serif;
|
|
291
|
+
color: var(--typography-base);
|
|
292
|
+
font-weight: 500;
|
|
293
|
+
font-size: 16px;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
h4 {
|
|
297
|
+
font-family: Inter, sans-serif;
|
|
298
|
+
color: var(--typography-base);
|
|
299
|
+
font-weight: 500;
|
|
300
|
+
font-size: 14px;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
h5 {
|
|
304
|
+
font-family: Inter, sans-serif;
|
|
305
|
+
color: var(--typography-base);
|
|
306
|
+
font-weight: 500;
|
|
307
|
+
font-size: 12px;
|
|
308
|
+
line-height: 130%;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
p {
|
|
312
|
+
font-size: 14px;
|
|
313
|
+
font-family: Inter, sans-serif;
|
|
314
|
+
color: var(--typography-base);
|
|
315
|
+
font-weight: 400;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
a {
|
|
319
|
+
text-decoration: underline;
|
|
320
|
+
color: var(--primary-base);
|
|
321
|
+
cursor: pointer;
|
|
322
|
+
}
|
|
323
|
+
a:hover {
|
|
324
|
+
text-decoration: none;
|
|
325
|
+
}
|
|
326
|
+
a:active {
|
|
327
|
+
text-decoration: none;
|
|
328
|
+
outline: 2px solid var(--primary-dark);
|
|
329
|
+
border-radius: 4px;
|
|
330
|
+
}
|
|
331
|
+
a:visited {
|
|
332
|
+
color: var(--secondary-base);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.vision-icon {
|
|
336
|
+
white-space: pre;
|
|
337
|
+
}
|
|
338
|
+
@supports (font: -apple-system-body) {
|
|
339
|
+
.vision-icon:after {
|
|
340
|
+
content: "";
|
|
341
|
+
padding-left: 100%;
|
|
342
|
+
padding-right: 100%;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.vision-icon, [class^=icon-], [class*=" icon-"] {
|
|
347
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
348
|
+
font-family: "Flywheel-Vision-Icons" !important;
|
|
349
|
+
speak: never;
|
|
350
|
+
font-style: normal;
|
|
351
|
+
font-weight: normal;
|
|
352
|
+
font-variant: normal;
|
|
353
|
+
text-transform: none;
|
|
354
|
+
line-height: 1;
|
|
355
|
+
/* Enable Ligatures ================ */
|
|
356
|
+
letter-spacing: 0;
|
|
357
|
+
-webkit-font-feature-settings: "liga";
|
|
358
|
+
-moz-font-feature-settings: "liga=1";
|
|
359
|
+
-moz-font-feature-settings: "liga";
|
|
360
|
+
-ms-font-feature-settings: "liga" 1;
|
|
361
|
+
font-feature-settings: "liga" 1;
|
|
362
|
+
-webkit-font-variant-ligatures: discretionary-ligatures;
|
|
363
|
+
font-variant-ligatures: discretionary-ligatures;
|
|
364
|
+
/* Better Font Rendering =========== */
|
|
365
|
+
-webkit-font-smoothing: antialiased;
|
|
366
|
+
-moz-osx-font-smoothing: grayscale;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.icon-user-profile-cards-pool:before {
|
|
370
|
+
content: "\ea3b";
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.icon-certificate:before {
|
|
374
|
+
content: "\ea3c";
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.icon-check-mark-certificate:before {
|
|
378
|
+
content: "\ea3d";
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.icon-server-databases-checkmark-user:before {
|
|
382
|
+
content: "\ea3e";
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.icon-arrow-up-high-priority:before {
|
|
386
|
+
content: "\ea3f";
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.icon-arrow-up-low-priority:before {
|
|
390
|
+
content: "\ea40";
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.icon-stop-minus:before {
|
|
394
|
+
content: "\ea41";
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.icon-document-file-checkmark-bottom-left:before {
|
|
398
|
+
content: "\ea42";
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.icon-monitor-computer:before {
|
|
402
|
+
content: "\ea43";
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.icon-arrow-redo:before {
|
|
406
|
+
content: "\ea44";
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.icon-arrow-undo:before {
|
|
410
|
+
content: "\ea45";
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.icon-folders-copy-expand-arrow-down:before {
|
|
414
|
+
content: "\ea39";
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.icon-folders-copy-expand-arrow-up:before {
|
|
418
|
+
content: "\ea3a";
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.icon-clock-hour-4:before {
|
|
422
|
+
content: "\ea32";
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.icon-documents-file:before {
|
|
426
|
+
content: "\ea33";
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.icon-expand-pathfinder-dot-square-segmentation:before {
|
|
430
|
+
content: "\ea34";
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.icon-square-fill-outline:before {
|
|
434
|
+
content: "\ea35";
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.icon-square-fill:before {
|
|
438
|
+
content: "\ea36";
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.icon-square-outline:before {
|
|
442
|
+
content: "\ea37";
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.icon-flywheel-viewer-mark-logo:before {
|
|
446
|
+
content: "\ea38";
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.icon-filter-sort-check-mark:before {
|
|
450
|
+
content: "\ea2e";
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.icon-filter-sort-delete:before {
|
|
454
|
+
content: "\ea2f";
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.icon-filter-sort-add:before {
|
|
458
|
+
content: "\ea31";
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.icon-chevron-input-number:before {
|
|
462
|
+
content: "\ea30";
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.icon-shield-protect:before {
|
|
466
|
+
content: "\ea29";
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.icon-3d-sphere-rotate-arrows:before {
|
|
470
|
+
content: "\ea2b";
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.icon-livewire-tool:before {
|
|
474
|
+
content: "\ea2c";
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.icon-bezier-curve:before {
|
|
478
|
+
content: "\ea2d";
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.icon-technology-cube-3d:before {
|
|
482
|
+
content: "\ea28";
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.icon-brightness-photo-edit:before {
|
|
486
|
+
content: "";
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.icon-target-space-object-select:before {
|
|
490
|
+
content: "\ea2a";
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.icon-crown-style-circle:before {
|
|
494
|
+
content: "\ea27";
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.icon-hammer-legal-square:before {
|
|
498
|
+
content: "\ea18";
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.icon-browser-internet-web-windows:before {
|
|
502
|
+
content: "\ea26";
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.icon-settings-adjust:before {
|
|
506
|
+
content: "\e912";
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.icon-lock-unlock:before {
|
|
510
|
+
content: "\e939";
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.icon-private-mode-protection-circle:before {
|
|
514
|
+
content: "\ea17";
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.icon-ai:before {
|
|
518
|
+
content: "\ea19";
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.icon-reader-studies:before {
|
|
522
|
+
content: "\ea1a";
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.icon-shapes-objects:before {
|
|
526
|
+
content: "\ea1b";
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.icon-cloud-upload:before {
|
|
530
|
+
content: "\ea1c";
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.icon-floppy-save:before {
|
|
534
|
+
content: "\ea1d";
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.icon-text-input-form:before {
|
|
538
|
+
content: "\ea1e";
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.icon-document-file-add-plus-bottom-left:before {
|
|
542
|
+
content: "\ea1f";
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.icon-document-file-upload-bottom-center:before {
|
|
546
|
+
content: "\ea20";
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.icon-paint-roller:before {
|
|
550
|
+
content: "\ea21";
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.icon-brush-edit-create:before {
|
|
554
|
+
content: "\ea22";
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.icon-bucket-paint:before {
|
|
558
|
+
content: "\ea23";
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.icon-edit-erase:before {
|
|
562
|
+
content: "\ea24";
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.icon-grid-dot-square:before {
|
|
566
|
+
content: "\ea25";
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.icon-column-edit:before {
|
|
570
|
+
content: "\ea0c";
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.icon-molecule:before {
|
|
574
|
+
content: "\ea0d";
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.icon-invoice-checkmark-paid:before {
|
|
578
|
+
content: "\ea0e";
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.icon-invoice:before {
|
|
582
|
+
content: "\ea0f";
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.icon-pause:before {
|
|
586
|
+
content: "\ea10";
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.icon-calendar-arrow-left-center:before {
|
|
590
|
+
content: "\ea11";
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.icon-file-blank-image-load-mask:before {
|
|
594
|
+
content: "\ea12";
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.icon-closed-freehand-vector-poly:before {
|
|
598
|
+
content: "\ea13";
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.icon-curve-object-secet-cursor:before {
|
|
602
|
+
content: "\ea14";
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.icon-freehand-vector-poly:before {
|
|
606
|
+
content: "\ea15";
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.icon-pen-edit-circle:before {
|
|
610
|
+
content: "\ea16";
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.icon-code-block-embed:before {
|
|
614
|
+
content: "\e9fd";
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.icon-italic:before {
|
|
618
|
+
content: "\e9fe";
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.icon-list-paragraph-number:before {
|
|
622
|
+
content: "\e9ff";
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.icon-list-paragraph:before {
|
|
626
|
+
content: "\ea00";
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.icon-text-bold:before {
|
|
630
|
+
content: "\ea01";
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.icon-text-cross:before {
|
|
634
|
+
content: "\ea02";
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.icon-text-h1:before {
|
|
638
|
+
content: "\ea03";
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.icon-text-h2:before {
|
|
642
|
+
content: "\ea04";
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.icon-text-underline:before {
|
|
646
|
+
content: "\ea05";
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.icon-twitter:before {
|
|
650
|
+
content: "\ea06";
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.icon-smiley-emoji-face:before {
|
|
654
|
+
content: "\ea07";
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.icon-exchange:before {
|
|
658
|
+
content: "\ea08";
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.icon-markdown:before {
|
|
662
|
+
content: "\ea09";
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.icon-quote:before {
|
|
666
|
+
content: "\ea0a";
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.icon-measure-ruler-calibration:before {
|
|
670
|
+
content: "\ea0b";
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.icon-zendesk-logo:before {
|
|
674
|
+
content: "\e9f1";
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.icon-add-server-databases-endpoint:before {
|
|
678
|
+
content: "\e9f2";
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.icon-cloud-network-add:before {
|
|
682
|
+
content: "\e9f3";
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.icon-server-database-endpoint:before {
|
|
686
|
+
content: "\e9f4";
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.icon-book-lab-flask:before {
|
|
690
|
+
content: "\e9f5";
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.icon-list-test-lab-flask:before {
|
|
694
|
+
content: "\e9f6";
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.icon-test-lab-flask:before {
|
|
698
|
+
content: "\e9f7";
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.icon-message-checkmark-sent:before {
|
|
702
|
+
content: "\e9f8";
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.icon-send-message-share:before {
|
|
706
|
+
content: "\e9f9";
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.icon-flywheel-mark-logo:before {
|
|
710
|
+
content: "\e9fa";
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.icon-speed-dashboard:before {
|
|
714
|
+
content: "\e9fb";
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.icon-arrange-filter-sort:before {
|
|
718
|
+
content: "\e9fc";
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.icon-delivery-shipment-packages:before {
|
|
722
|
+
content: "\e9bb";
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.icon-color-ven-design-profile-central:before {
|
|
726
|
+
content: "\e9ce";
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.icon-home-modern-door:before {
|
|
730
|
+
content: "\e9e4";
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.icon-tasklist-to-do-checkmark:before {
|
|
734
|
+
content: "\e9eb";
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.icon-user-profile-group-discovery:before {
|
|
738
|
+
content: "\e999";
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.icon-flip-horizontal:before {
|
|
742
|
+
content: "\e9b5";
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.icon-flip-vertical:before {
|
|
746
|
+
content: "\e9b6";
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.icon-facebook:before {
|
|
750
|
+
content: "\e9b7";
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.icon-github-color-login:before {
|
|
754
|
+
content: "\e9b8";
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.icon-linkedin:before {
|
|
758
|
+
content: "\e9b9";
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.icon-youtube:before {
|
|
762
|
+
content: "\e9ba";
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.icon-server-databases-connect:before {
|
|
766
|
+
content: "\e9bc";
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.icon-server-databases-download:before {
|
|
770
|
+
content: "\e9bd";
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.icon-server-databases-minimal-download:before {
|
|
774
|
+
content: "\e9be";
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.icon-server-databases-sync:before {
|
|
778
|
+
content: "\e9bf";
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.icon-graduate-hat:before {
|
|
782
|
+
content: "\e9c0";
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.icon-blocks-code-test-checkmark:before {
|
|
786
|
+
content: "\e9c1";
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.icon-camera-photo-capture:before {
|
|
790
|
+
content: "\e9c2";
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.icon-photo-edit-brightness-invert:before {
|
|
794
|
+
content: "\e9c3";
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.icon-unlimited-repeat-subscription-circle:before {
|
|
798
|
+
content: "\e9c4";
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.icon-mute:before {
|
|
802
|
+
content: "\e9c5";
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.icon-volume-full:before {
|
|
806
|
+
content: "\e9c6";
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.icon-hand-money-currency:before {
|
|
810
|
+
content: "\e9c7";
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.icon-bookmark-plus-add:before {
|
|
814
|
+
content: "\e9c8";
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.icon-circle:before {
|
|
818
|
+
content: "\e9c9";
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.icon-clip-attachment:before {
|
|
822
|
+
content: "\e9ca";
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.icon-code-text:before {
|
|
826
|
+
content: "\e9cb";
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.icon-document-status-done-checkmark:before {
|
|
830
|
+
content: "\e9cc";
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.icon-done-check-tracked:before {
|
|
834
|
+
content: "\e9cd";
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.icon-home-modern-option-lines:before {
|
|
838
|
+
content: "\e9cf";
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.icon-keyboard:before {
|
|
842
|
+
content: "\e9d0";
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.icon-line:before {
|
|
846
|
+
content: "\e9d1";
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.icon-link-unlink:before {
|
|
850
|
+
content: "\e9d2";
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.icon-measure-angle:before {
|
|
854
|
+
content: "\e9d3";
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.icon-media-library-imports-dowload:before {
|
|
858
|
+
content: "\e9d4";
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.icon-message-chat-info:before {
|
|
862
|
+
content: "\e9d5";
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.icon-microphone-mic-rec-circle:before {
|
|
866
|
+
content: "\e9d6";
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.icon-microphone-mic-rec:before {
|
|
870
|
+
content: "\e9d7";
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.icon-microphone-mic-recording-circle:before {
|
|
874
|
+
content: "\e9d8";
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.icon-pie-graph-chart-sample:before {
|
|
878
|
+
content: "\e9d9";
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.icon-plus-add-rectangle:before {
|
|
882
|
+
content: "\e9da";
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.icon-polygon:before {
|
|
886
|
+
content: "\e9db";
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.icon-rotate-arrow-manual:before {
|
|
890
|
+
content: "\e9dc";
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.icon-rotate-item-left:before {
|
|
894
|
+
content: "\e9dd";
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.icon-rotate-item-right:before {
|
|
898
|
+
content: "\e9de";
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.icon-stars-light-sparkle:before {
|
|
902
|
+
content: "\e9df";
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
.icon-undone-uncheck-untracked:before {
|
|
906
|
+
content: "\e9e0";
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
.icon-clap-applause-hands:before {
|
|
910
|
+
content: "\e9e1";
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.icon-email-mail-checkmark-group:before {
|
|
914
|
+
content: "\e9e2";
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.icon-circle-ellipses:before {
|
|
918
|
+
content: "\e9e3";
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.icon-crosshair:before {
|
|
922
|
+
content: "\e9e5";
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.icon-cursor-select:before {
|
|
926
|
+
content: "\e9e6";
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.icon-draw-rectangle:before {
|
|
930
|
+
content: "\e9e7";
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.icon-ruler-bidirectional:before {
|
|
934
|
+
content: "\e9e8";
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.icon-ruler:before {
|
|
938
|
+
content: "\e9e9";
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.icon-workspace-mode:before {
|
|
942
|
+
content: "\e9ea";
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.icon-creative-commons:before {
|
|
946
|
+
content: "\e9ec";
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.icon-free-rights:before {
|
|
950
|
+
content: "\e9ed";
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
.icon-hammer-screwdriver:before {
|
|
954
|
+
content: "\e9ee";
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.icon-arrow-annotate:before {
|
|
958
|
+
content: "\e9ef";
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
.icon-arrow:before {
|
|
962
|
+
content: "\e9f0";
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.icon-notebook-open:before {
|
|
966
|
+
content: "\e998";
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.icon-windows:before {
|
|
970
|
+
content: "\e963";
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
.icon-add-new-create:before {
|
|
974
|
+
content: "\e969";
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.icon-add-row-above:before {
|
|
978
|
+
content: "\e96a";
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.icon-add-row-below:before {
|
|
982
|
+
content: "\e96b";
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.icon-arrow-rotate-restore:before {
|
|
986
|
+
content: "\e96c";
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.icon-arrow-rotate:before {
|
|
990
|
+
content: "\e96d";
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.icon-arrow-back-collapse:before {
|
|
994
|
+
content: "\e96e";
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.icon-arrow-forward-collapse:before {
|
|
998
|
+
content: "\e96f";
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.icon-barcode-serial:before {
|
|
1002
|
+
content: "\e97a";
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.icon-barcode-stack-scan:before {
|
|
1006
|
+
content: "\e97b";
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.icon-button-form-element:before {
|
|
1010
|
+
content: "\e97c";
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
.icon-calendar-schedule:before {
|
|
1014
|
+
content: "\e97d";
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.icon-chat-messages-bubble:before {
|
|
1018
|
+
content: "\e97e";
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.icon-checklist-tasks-chechmark-square:before {
|
|
1022
|
+
content: "\e97f";
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.icon-color-design-profile:before {
|
|
1026
|
+
content: "\e980";
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.icon-computer-chip:before {
|
|
1030
|
+
content: "\e981";
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.icon-contrast-photo-edit:before {
|
|
1034
|
+
content: "\e982";
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.icon-document-file-list-protocol:before {
|
|
1038
|
+
content: "\e983";
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.icon-drag-drop-indicator:before {
|
|
1042
|
+
content: "\e984";
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.icon-form-metadata-element:before {
|
|
1046
|
+
content: "\e985";
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.icon-full-screen-zoom:before {
|
|
1050
|
+
content: "\e986";
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.icon-layout:before {
|
|
1054
|
+
content: "\e987";
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.icon-header-form-element:before {
|
|
1058
|
+
content: "\e988";
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.icon-human-artificial-intelligence:before {
|
|
1062
|
+
content: "\e989";
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.icon-image-photo-copy-left-down:before {
|
|
1066
|
+
content: "\e98a";
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.icon-image-picture-square:before {
|
|
1070
|
+
content: "\e98b";
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.icon-items-group-elements:before {
|
|
1074
|
+
content: "\e98c";
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.icon-layers:before {
|
|
1078
|
+
content: "\e98d";
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
.icon-menu-burger-handle:before {
|
|
1082
|
+
content: "\e98e";
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
.icon-menu-list-form-square:before {
|
|
1086
|
+
content: "\e98f";
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.icon-message-chat-question-support:before {
|
|
1090
|
+
content: "\e990";
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.icon-message-question-checkmark:before {
|
|
1094
|
+
content: "\e991";
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.icon-minus:before {
|
|
1098
|
+
content: "\e992";
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
.icon-mouse-big:before {
|
|
1102
|
+
content: "\e993";
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.icon-move:before {
|
|
1106
|
+
content: "\e994";
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
.icon-music-play-resume:before {
|
|
1110
|
+
content: "\e995";
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.icon-music-stop:before {
|
|
1114
|
+
content: "\e996";
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.icon-notebook-add-plus:before {
|
|
1118
|
+
content: "\e997";
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.icon-notebook-pen-edit:before {
|
|
1122
|
+
content: "\e99a";
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.icon-notebook:before {
|
|
1126
|
+
content: "\e99b";
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.icon-notes-pen:before {
|
|
1130
|
+
content: "\e99c";
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.icon-object-search-zoom-plus:before {
|
|
1134
|
+
content: "\e99d";
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.icon-pencil-edit-create:before {
|
|
1138
|
+
content: "\e99e";
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.icon-protection-target:before {
|
|
1142
|
+
content: "\e99f";
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.icon-rotate:before {
|
|
1146
|
+
content: "\e9a0";
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.icon-scanner:before {
|
|
1150
|
+
content: "\e9a1";
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.icon-search-user-profile-person:before {
|
|
1154
|
+
content: "\e9a2";
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.icon-search-zoom-minus:before {
|
|
1158
|
+
content: "\e9a3";
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.icon-search-zoom-plus:before {
|
|
1162
|
+
content: "\e9a4";
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.icon-section-form-element:before {
|
|
1166
|
+
content: "\e9a5";
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.icon-server-databases-key-protection:before {
|
|
1170
|
+
content: "\e9a6";
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
.icon-server-databases-sync-import:before {
|
|
1174
|
+
content: "\e9a7";
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
.icon-servers-database:before {
|
|
1178
|
+
content: "\e9a8";
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.icon-target:before {
|
|
1182
|
+
content: "\e9a9";
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.icon-text-long:before {
|
|
1186
|
+
content: "\e9aa";
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.icon-text-short-form-element:before {
|
|
1190
|
+
content: "\e9ab";
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.icon-timer-clock-style:before {
|
|
1194
|
+
content: "\e9ac";
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.icon-user-document:before {
|
|
1198
|
+
content: "\e9ad";
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.icon-video-player-controls:before {
|
|
1202
|
+
content: "\e9ae";
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.icon-visible-eye-hidden:before {
|
|
1206
|
+
content: "\e9af";
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
.icon-window-finder-resize-arrow-down:before {
|
|
1210
|
+
content: "\e9b0";
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.icon-window-finder-resize-arrow-up:before {
|
|
1214
|
+
content: "\e9b1";
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
.icon-window-resize-left:before {
|
|
1218
|
+
content: "\e9b2";
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
.icon-window-resize-right:before {
|
|
1222
|
+
content: "\e9b3";
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.icon-window-zoom-plus-loupe:before {
|
|
1226
|
+
content: "\e9b4";
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.icon-laptop-health-medical-cross:before {
|
|
1230
|
+
content: "\e971";
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.icon-radiology-scan-circle:before {
|
|
1234
|
+
content: "\e974";
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
.icon-money-coin:before {
|
|
1238
|
+
content: "\e965";
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
.icon-brain:before {
|
|
1242
|
+
content: "\e972";
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
.icon-dna-hospital-medical:before {
|
|
1246
|
+
content: "\e973";
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.icon-lung:before {
|
|
1250
|
+
content: "\e975";
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
.icon-lungs:before {
|
|
1254
|
+
content: "\e976";
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.icon-protective-mask:before {
|
|
1258
|
+
content: "\e977";
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.icon-radiology-scan:before {
|
|
1262
|
+
content: "\e978";
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
.icon-stomach:before {
|
|
1266
|
+
content: "\e979";
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
.icon-cash-banknotes:before {
|
|
1270
|
+
content: "\e964";
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
.icon-money-dollar:before {
|
|
1274
|
+
content: "\e966";
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
.icon-money:before {
|
|
1278
|
+
content: "\e967";
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
.icon-cloud-storage-checkmark:before {
|
|
1282
|
+
content: "\e968";
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.icon-modalities:before {
|
|
1286
|
+
content: "\e970";
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
.icon-search-loop:before {
|
|
1290
|
+
content: "\e936";
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.icon-question-circle:before {
|
|
1294
|
+
content: "\e921";
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.icon-earth-globe-fail:before {
|
|
1298
|
+
content: "\e935";
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.icon-user-setting-gear:before {
|
|
1302
|
+
content: "\e909";
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.icon-user-delete-cross:before {
|
|
1306
|
+
content: "\e95b";
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.icon-apply-copy-duplicate:before {
|
|
1310
|
+
content: "\e95c";
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.icon-arrow-down:before {
|
|
1314
|
+
content: "\e95d";
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.icon-arrow-up:before {
|
|
1318
|
+
content: "\e95e";
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.icon-grid-layout:before {
|
|
1322
|
+
content: "\e95f";
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.icon-folder-blank:before {
|
|
1326
|
+
content: "\e960";
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.icon-folder-group:before {
|
|
1330
|
+
content: "\e961";
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.icon-file-text:before {
|
|
1334
|
+
content: "\e962";
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.icon-edit-boxed:before {
|
|
1338
|
+
content: "\e922";
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.icon-chart-trend-square:before {
|
|
1342
|
+
content: "\e900";
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.icon-layout-grid:before {
|
|
1346
|
+
content: "\e901";
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.icon-files-library-content:before {
|
|
1350
|
+
content: "\e902";
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.icon-user-lock:before {
|
|
1354
|
+
content: "\e903";
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.icon-lock:before {
|
|
1358
|
+
content: "\e904";
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.icon-add-user:before {
|
|
1362
|
+
content: "\e905";
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.icon-user-checked:before {
|
|
1366
|
+
content: "\e906";
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.icon-user-group:before {
|
|
1370
|
+
content: "\e907";
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.icon-user-key:before {
|
|
1374
|
+
content: "\e908";
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.icon-thumbs-up-like:before {
|
|
1378
|
+
content: "\e90a";
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.icon-apple:before {
|
|
1382
|
+
content: "\e90b";
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.icon-gitlab:before {
|
|
1386
|
+
content: "\e90c";
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.icon-linux:before {
|
|
1390
|
+
content: "\e90d";
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.icon-add-server:before {
|
|
1394
|
+
content: "\e90e";
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.icon-server-checkmark:before {
|
|
1398
|
+
content: "\e90f";
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.icon-server-upload:before {
|
|
1402
|
+
content: "\e910";
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.icon-server:before {
|
|
1406
|
+
content: "\e911";
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.icon-data-tree:before {
|
|
1410
|
+
content: "\e913";
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.icon-add-circle:before {
|
|
1414
|
+
content: "\e914";
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.icon-bell-notification:before {
|
|
1418
|
+
content: "\e915";
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.icon-bookmark:before {
|
|
1422
|
+
content: "\e916";
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.icon-chart-square:before {
|
|
1426
|
+
content: "\e917";
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.icon-checklist:before {
|
|
1430
|
+
content: "\e918";
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.icon-clock-history:before {
|
|
1434
|
+
content: "\e919";
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.icon-clock-loading:before {
|
|
1438
|
+
content: "\e91a";
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.icon-close-circled:before {
|
|
1442
|
+
content: "\e91b";
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.icon-close:before {
|
|
1446
|
+
content: "\e91c";
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.icon-copy-item:before {
|
|
1450
|
+
content: "\e91d";
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.icon-done-check:before {
|
|
1454
|
+
content: "\e91e";
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.icon-download-status:before {
|
|
1458
|
+
content: "\e91f";
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.icon-download:before {
|
|
1462
|
+
content: "\e920";
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.icon-edit:before {
|
|
1466
|
+
content: "\e923";
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.icon-email:before {
|
|
1470
|
+
content: "\e924";
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.icon-file-download:before {
|
|
1474
|
+
content: "\e925";
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.icon-files-library:before {
|
|
1478
|
+
content: "\e926";
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.icon-files:before {
|
|
1482
|
+
content: "\e927";
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.icon-filter:before {
|
|
1486
|
+
content: "\e928";
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.icon-flag:before {
|
|
1490
|
+
content: "\e929";
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.icon-information-circle:before {
|
|
1494
|
+
content: "\e92a";
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.icon-key:before {
|
|
1498
|
+
content: "\e92b";
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.icon-keychain:before {
|
|
1502
|
+
content: "\e92c";
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.icon-label-tag:before {
|
|
1506
|
+
content: "\e92d";
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.icon-link:before {
|
|
1510
|
+
content: "\e92e";
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.icon-loading-status-checkmark:before {
|
|
1514
|
+
content: "\e92f";
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.icon-logout:before {
|
|
1518
|
+
content: "\e930";
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.icon-menu-horizontal:before {
|
|
1522
|
+
content: "\e931";
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.icon-menu-vertical:before {
|
|
1526
|
+
content: "\e932";
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.icon-open:before {
|
|
1530
|
+
content: "\e933";
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.icon-pie-chart:before {
|
|
1534
|
+
content: "\e934";
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.icon-search:before {
|
|
1538
|
+
content: "\e937";
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.icon-setting-gear:before {
|
|
1542
|
+
content: "\e938";
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.icon-settings-gear-square:before {
|
|
1546
|
+
content: "\e93a";
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.icon-settings-gear:before {
|
|
1550
|
+
content: "\e93b";
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.icon-settings-select:before {
|
|
1554
|
+
content: "\e93c";
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.icon-share:before {
|
|
1558
|
+
content: "\e93d";
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.icon-show-visible:before {
|
|
1562
|
+
content: "\e93e";
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.icon-star:before {
|
|
1566
|
+
content: "\e93f";
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.icon-substract-group:before {
|
|
1570
|
+
content: "\e940";
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.icon-switch:before {
|
|
1574
|
+
content: "\e941";
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.icon-trash-delete:before {
|
|
1578
|
+
content: "\e942";
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.icon-upload:before {
|
|
1582
|
+
content: "\e943";
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
.icon-user:before {
|
|
1586
|
+
content: "\e944";
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.icon-warning-circle:before {
|
|
1590
|
+
content: "\e945";
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.icon-warning:before {
|
|
1594
|
+
content: "\e946";
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.icon-icon-placeholder:before {
|
|
1598
|
+
content: "\e947";
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.icon-network-storage-alert:before {
|
|
1602
|
+
content: "\e948";
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.icon-folder-add:before {
|
|
1606
|
+
content: "\e949";
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.icon-folder-checked:before {
|
|
1610
|
+
content: "\e94a";
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.icon-folder-open:before {
|
|
1614
|
+
content: "\e94b";
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.icon-folder-share:before {
|
|
1618
|
+
content: "\e94c";
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.icon-document-file-blank:before {
|
|
1622
|
+
content: "\e94d";
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.icon-document-file-download:before {
|
|
1626
|
+
content: "\e94e";
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.icon-document-file-tar:before {
|
|
1630
|
+
content: "\e94f";
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.icon-document-file-zip:before {
|
|
1634
|
+
content: "\e950";
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.icon-document-visible:before {
|
|
1638
|
+
content: "\e951";
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.icon-documents-files:before {
|
|
1642
|
+
content: "\e952";
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.icon-arrow-back:before {
|
|
1646
|
+
content: "\e953";
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.icon-arrow-forward:before {
|
|
1650
|
+
content: "\e954";
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.icon-chevron-back:before {
|
|
1654
|
+
content: "\e955";
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.icon-chevron-down:before {
|
|
1658
|
+
content: "\e956";
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.icon-chevron-forward:before {
|
|
1662
|
+
content: "\e957";
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.icon-chevron-up:before {
|
|
1666
|
+
content: "\e958";
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.icon-embed-circle:before {
|
|
1670
|
+
content: "\e959";
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.icon-rotate-refresh:before {
|
|
1674
|
+
content: "\e95a";
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
@font-face {
|
|
1678
|
+
font-family: "Flywheel-Vision-Icons";
|
|
1679
|
+
src: url("../../assets/fonts//Flywheel-Vision-Icons.ttf?x8h2gn") format("truetype"), url("../../assets/fonts//Flywheel-Vision-Icons.woff?x8h2gn") format("woff"), url("../../assets/fonts//Flywheel-Vision-Icons.svg?x8h2gn#Flywheel-Vision-Icons") format("svg");
|
|
1680
|
+
font-weight: normal;
|
|
1681
|
+
font-style: normal;
|
|
1682
|
+
font-display: block;
|
|
1683
|
+
}
|
|
1684
|
+
.vision-overlay {
|
|
1685
|
+
background-color: var(--separations-overlay);
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
|
1689
|
+
pointer-events: none;
|
|
1690
|
+
top: 0;
|
|
1691
|
+
left: 0;
|
|
1692
|
+
height: 100%;
|
|
1693
|
+
width: 100%;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.cdk-overlay-container {
|
|
1697
|
+
position: fixed;
|
|
1698
|
+
z-index: 1100;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.cdk-overlay-container:empty {
|
|
1702
|
+
display: none;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.cdk-global-overlay-wrapper {
|
|
1706
|
+
display: flex;
|
|
1707
|
+
position: absolute;
|
|
1708
|
+
z-index: 1100;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.cdk-overlay-pane {
|
|
1712
|
+
position: absolute;
|
|
1713
|
+
pointer-events: auto;
|
|
1714
|
+
box-sizing: border-box;
|
|
1715
|
+
z-index: 1100;
|
|
1716
|
+
display: flex;
|
|
1717
|
+
max-width: 100%;
|
|
1718
|
+
max-height: 100%;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
.cdk-overlay-backdrop {
|
|
1722
|
+
position: absolute;
|
|
1723
|
+
inset: 0;
|
|
1724
|
+
z-index: 1100;
|
|
1725
|
+
pointer-events: auto;
|
|
1726
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1727
|
+
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
1728
|
+
opacity: 0;
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
1732
|
+
opacity: 1;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
1736
|
+
opacity: 0.6;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.cdk-overlay-dark-backdrop {
|
|
1740
|
+
background: rgba(0, 0, 0, 0.32);
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
.cdk-overlay-transparent-backdrop {
|
|
1744
|
+
transition: visibility 1ms linear, opacity 1ms linear;
|
|
1745
|
+
visibility: hidden;
|
|
1746
|
+
opacity: 1;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
1750
|
+
opacity: 0;
|
|
1751
|
+
visibility: visible;
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
.cdk-overlay-backdrop-noop-animation {
|
|
1755
|
+
transition: none;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.cdk-overlay-connected-position-bounding-box {
|
|
1759
|
+
position: absolute;
|
|
1760
|
+
z-index: 1100;
|
|
1761
|
+
display: flex;
|
|
1762
|
+
flex-direction: column;
|
|
1763
|
+
min-width: 1px;
|
|
1764
|
+
min-height: 1px;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.cdk-global-scrollblock {
|
|
1768
|
+
position: fixed;
|
|
1769
|
+
width: 100%;
|
|
1770
|
+
overflow-y: scroll;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
* {
|
|
1774
|
+
scrollbar-width: thin;
|
|
1775
|
+
scrollbar-color: var(--typography-light) var(--slate-hover);
|
|
1776
|
+
}
|