@flywheel-io/vision 2.0.0-beta-0 → 2.0.0-beta-1

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