@flywheel-io/vision 2.1.0-beta.0 → 2.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1110) hide show
  1. package/color.utils.d.ts +2 -0
  2. package/components/alert/alert.component.d.ts +14 -0
  3. package/components/alert/alert.module.d.ts +10 -0
  4. package/components/app-icon/app-icon.component.d.ts +19 -0
  5. package/components/app-icon/app-icon.module.d.ts +9 -0
  6. package/components/avatar/avatar.component.d.ts +23 -0
  7. package/components/avatar/avatar.module.d.ts +9 -0
  8. package/components/badge/badge.component.d.ts +12 -0
  9. package/components/badge/badge.module.d.ts +8 -0
  10. package/components/breadcrumbs/breadcrumbs.component.d.ts +9 -0
  11. package/components/breadcrumbs/breadcrumbs.module.d.ts +10 -0
  12. package/components/breadcrumbs/crumb.component.d.ts +12 -0
  13. package/components/button/button.component.d.ts +16 -0
  14. package/components/button/button.directives.d.ts +37 -0
  15. package/components/button/button.module.d.ts +11 -0
  16. package/components/button-group/button-group.component.d.ts +33 -0
  17. package/components/button-group/button-group.module.d.ts +10 -0
  18. package/components/button-toggle/button-toggle-item/button-toggle-item.component.d.ts +21 -0
  19. package/components/button-toggle/button-toggle.component.d.ts +34 -0
  20. package/components/button-toggle/button-toggle.module.d.ts +10 -0
  21. package/components/card/card-attribute/card-attribute.component.d.ts +8 -0
  22. package/components/card/card-author/card-author.component.d.ts +7 -0
  23. package/components/card/card-content/card-content.component.d.ts +5 -0
  24. package/components/card/card-footer/card-footer.component.d.ts +9 -0
  25. package/components/card/card-header/card-header.component.d.ts +10 -0
  26. package/components/card/card.component.d.ts +12 -0
  27. package/components/card/card.module.d.ts +15 -0
  28. package/components/checkbox/checkbox.component.d.ts +23 -0
  29. package/components/checkbox/checkbox.module.d.ts +9 -0
  30. package/components/chip/chip.component.d.ts +20 -0
  31. package/components/chip/chip.module.d.ts +10 -0
  32. package/components/contained-input/contained-input.component.d.ts +23 -0
  33. package/components/contained-input/contained-input.module.d.ts +12 -0
  34. package/components/date-input/date-input.component.d.ts +47 -0
  35. package/components/date-input/date-input.module.d.ts +10 -0
  36. package/components/dialog/dialog-actions.component.d.ts +9 -0
  37. package/components/dialog/dialog-confirm.component.d.ts +25 -0
  38. package/components/dialog/dialog-content.component.d.ts +10 -0
  39. package/components/dialog/dialog-header.component.d.ts +9 -0
  40. package/components/dialog/dialog-simple.component.d.ts +25 -0
  41. package/components/dialog/dialog.component.d.ts +25 -0
  42. package/components/dialog/dialog.service.d.ts +17 -0
  43. package/components/dialog/dialogs.module.d.ts +18 -0
  44. package/components/form-heading/form-heading.component.d.ts +10 -0
  45. package/components/form-heading/form-heading.module.d.ts +10 -0
  46. package/components/forms/validators.d.ts +29 -0
  47. package/components/icon/icon.component.d.ts +13 -0
  48. package/components/icon/icon.module.d.ts +8 -0
  49. package/components/icon/icon.types.d.ts +2 -0
  50. package/components/icon-button/icon-button.component.d.ts +12 -0
  51. package/components/icon-button/icon-button.module.d.ts +9 -0
  52. package/components/layouts/context/context.component.d.ts +18 -0
  53. package/components/layouts/grid/grid.component.d.ts +19 -0
  54. package/components/layouts/layout-group.component.d.ts +9 -0
  55. package/components/layouts/layouts.module.d.ts +14 -0
  56. package/components/layouts/panel/panel.component.d.ts +11 -0
  57. package/components/layouts/sidebar/sidebar.component.d.ts +9 -0
  58. package/components/layouts/toolbar/toolbar.component.d.ts +7 -0
  59. package/components/menu/menu-close-triggers.directive.d.ts +10 -0
  60. package/components/menu/menu-container/menu-container.component.d.ts +43 -0
  61. package/components/menu/menu-header/menu-header.component.d.ts +5 -0
  62. package/components/menu/menu-item/menu-item.component.d.ts +41 -0
  63. package/components/menu/menu-item-group/menu-item-group.component.d.ts +11 -0
  64. package/components/menu/menu-separator/menu-separator.component.d.ts +5 -0
  65. package/components/menu/menu-sub-item/menu-sub-item.component.d.ts +21 -0
  66. package/components/menu/menu.component.d.ts +28 -0
  67. package/components/menu/menu.module.d.ts +24 -0
  68. package/components/navbar/navbar-header/navbar-header.component.d.ts +5 -0
  69. package/components/navbar/navbar-item/navbar-item.component.d.ts +28 -0
  70. package/components/navbar/navbar-sub-item/navbar-sub-item.component.d.ts +18 -0
  71. package/components/navbar/navbar.component.d.ts +14 -0
  72. package/components/navbar/navbar.module.d.ts +18 -0
  73. package/components/number-input/number-input.component.d.ts +42 -0
  74. package/components/number-input/number-input.module.d.ts +10 -0
  75. package/components/paginator/paginator-advanced/paginator-advanced.component.d.ts +32 -0
  76. package/components/paginator/paginator.component.d.ts +43 -0
  77. package/components/paginator/paginator.model.d.ts +8 -0
  78. package/components/paginator/paginator.module.d.ts +14 -0
  79. package/components/phone-input/country-code.data.d.ts +2 -0
  80. package/components/phone-input/phone-input.component.d.ts +66 -0
  81. package/components/phone-input/phone-input.model.d.ts +10 -0
  82. package/components/phone-input/phone-input.module.d.ts +13 -0
  83. package/components/popover/popover-panel/popover-panel.component.d.ts +10 -0
  84. package/components/popover/popover.component.d.ts +19 -0
  85. package/components/popover/popover.module.d.ts +11 -0
  86. package/components/progress/bar/bar.component.d.ts +32 -0
  87. package/components/progress/progress.module.d.ts +9 -0
  88. package/components/progress/spinner/spinner.component.d.ts +37 -0
  89. package/components/radio/radio-group.component.d.ts +32 -0
  90. package/components/radio/radio.component.d.ts +17 -0
  91. package/components/radio/radio.module.d.ts +10 -0
  92. package/components/section-heading/back-button/back-button.component.d.ts +11 -0
  93. package/components/section-heading/section-heading.component.d.ts +13 -0
  94. package/components/section-heading/section-heading.module.d.ts +12 -0
  95. package/components/section-heading/subsection-heading/subsection-heading.component.d.ts +9 -0
  96. package/components/select-menu/multi-select-menu/multi-select-menu.component.d.ts +82 -0
  97. package/components/select-menu/select-menu.component.d.ts +70 -0
  98. package/components/select-menu/select-menu.module.d.ts +17 -0
  99. package/components/shared/pipes/pipes.module.d.ts +10 -0
  100. package/components/shared/pipes/translate.pipe.d.ts +17 -0
  101. package/components/shared/pipes/trusthtml.pipe.d.ts +10 -0
  102. package/components/shared/services/menu-manager.service.d.ts +10 -0
  103. package/components/shared/translation.service.d.ts +14 -0
  104. package/components/snackbar/snackbar/snackbar.component.d.ts +24 -0
  105. package/components/snackbar/snackbar-container/snackbar-container.component.d.ts +20 -0
  106. package/components/snackbar/snackbar-message.model.d.ts +12 -0
  107. package/components/snackbar/snackbar-timer.service.d.ts +10 -0
  108. package/components/snackbar/snackbar.module.d.ts +12 -0
  109. package/components/snackbar/snackbar.service.d.ts +13 -0
  110. package/components/stepper/step.component.d.ts +27 -0
  111. package/components/stepper/stepper.component.d.ts +23 -0
  112. package/components/stepper/stepper.module.d.ts +11 -0
  113. package/components/switch/switch.component.d.ts +22 -0
  114. package/components/switch/switch.module.d.ts +8 -0
  115. package/components/table/cell.d.ts +63 -0
  116. package/components/table/row.d.ts +58 -0
  117. package/components/table/table-dense.component.d.ts +11 -0
  118. package/components/table/table.component.d.ts +11 -0
  119. package/components/table/table.module.d.ts +12 -0
  120. package/components/tabs/tab/tab.component.d.ts +21 -0
  121. package/components/tabs/tab-panel/tab-panel.component.d.ts +6 -0
  122. package/components/tabs/tabs.component.d.ts +17 -0
  123. package/components/tabs/tabs.module.d.ts +11 -0
  124. package/components/text-input/text-input.component.d.ts +48 -0
  125. package/components/text-input/text-input.module.d.ts +10 -0
  126. package/components/textarea-input/textarea-input.component.d.ts +34 -0
  127. package/components/textarea-input/textarea-input.module.d.ts +11 -0
  128. package/components/tooltip/tooltip-panel/tooltip-panel.component.d.ts +12 -0
  129. package/components/tooltip/tooltip.component.d.ts +17 -0
  130. package/components/tooltip/tooltip.module.d.ts +11 -0
  131. package/components/wrapped-input/wrapped-input.component.d.ts +10 -0
  132. package/components/wrapped-input/wrapped-input.module.d.ts +9 -0
  133. package/directives/menu-register.directive.d.ts +14 -0
  134. package/esm2022/color.utils.mjs +45 -0
  135. package/esm2022/components/alert/alert.component.mjs +34 -0
  136. package/esm2022/components/alert/alert.module.mjs +32 -0
  137. package/esm2022/components/app-icon/app-icon.component.mjs +63 -0
  138. package/esm2022/components/app-icon/app-icon.module.mjs +28 -0
  139. package/esm2022/components/avatar/avatar.component.mjs +66 -0
  140. package/esm2022/components/avatar/avatar.module.mjs +28 -0
  141. package/esm2022/components/badge/badge.component.mjs +45 -0
  142. package/esm2022/components/badge/badge.module.mjs +24 -0
  143. package/esm2022/components/breadcrumbs/breadcrumbs.component.mjs +22 -0
  144. package/esm2022/components/breadcrumbs/breadcrumbs.module.mjs +33 -0
  145. package/esm2022/components/breadcrumbs/crumb.component.mjs +34 -0
  146. package/esm2022/components/button/button.component.mjs +59 -0
  147. package/esm2022/components/button/button.directives.mjs +129 -0
  148. package/esm2022/components/button/button.module.mjs +53 -0
  149. package/esm2022/components/button-group/button-group.component.mjs +131 -0
  150. package/esm2022/components/button-group/button-group.module.mjs +32 -0
  151. package/esm2022/components/button-toggle/button-toggle-item/button-toggle-item.component.mjs +54 -0
  152. package/esm2022/components/button-toggle/button-toggle.component.mjs +137 -0
  153. package/esm2022/components/button-toggle/button-toggle.module.mjs +33 -0
  154. package/esm2022/components/card/card-attribute/card-attribute.component.mjs +17 -0
  155. package/esm2022/components/card/card-author/card-author.component.mjs +15 -0
  156. package/esm2022/components/card/card-content/card-content.component.mjs +11 -0
  157. package/esm2022/components/card/card-footer/card-footer.component.mjs +29 -0
  158. package/esm2022/components/card/card-header/card-header.component.mjs +24 -0
  159. package/esm2022/components/card/card.component.mjs +27 -0
  160. package/esm2022/components/card/card.module.mjs +57 -0
  161. package/esm2022/components/checkbox/checkbox.component.mjs +79 -0
  162. package/esm2022/components/checkbox/checkbox.module.mjs +31 -0
  163. package/esm2022/components/chip/chip.component.mjs +52 -0
  164. package/esm2022/components/chip/chip.module.mjs +32 -0
  165. package/esm2022/components/contained-input/contained-input.component.mjs +86 -0
  166. package/esm2022/components/contained-input/contained-input.module.mjs +40 -0
  167. package/esm2022/components/date-input/date-input.component.mjs +139 -0
  168. package/esm2022/components/date-input/date-input.module.mjs +32 -0
  169. package/esm2022/components/dialog/dialog-actions.component.mjs +32 -0
  170. package/esm2022/components/dialog/dialog-confirm.component.mjs +63 -0
  171. package/esm2022/components/dialog/dialog-content.component.mjs +38 -0
  172. package/esm2022/components/dialog/dialog-header.component.mjs +35 -0
  173. package/esm2022/components/dialog/dialog-simple.component.mjs +62 -0
  174. package/esm2022/components/dialog/dialog.component.mjs +55 -0
  175. package/esm2022/components/dialog/dialog.service.mjs +49 -0
  176. package/esm2022/components/dialog/dialogs.module.mjs +75 -0
  177. package/esm2022/components/form-heading/form-heading.component.mjs +24 -0
  178. package/esm2022/components/form-heading/form-heading.module.mjs +32 -0
  179. package/esm2022/components/forms/validators.mjs +81 -0
  180. package/esm2022/components/icon/icon.component.mjs +61 -0
  181. package/esm2022/components/icon/icon.module.mjs +24 -0
  182. package/esm2022/components/icon/icon.types.mjs +330 -0
  183. package/esm2022/components/icon-button/icon-button.component.mjs +39 -0
  184. package/esm2022/components/icon-button/icon-button.module.mjs +28 -0
  185. package/esm2022/components/layouts/context/context.component.mjs +46 -0
  186. package/esm2022/components/layouts/grid/grid.component.mjs +62 -0
  187. package/esm2022/components/layouts/layout-group.component.mjs +36 -0
  188. package/esm2022/components/layouts/layouts.module.mjs +57 -0
  189. package/esm2022/components/layouts/panel/panel.component.mjs +32 -0
  190. package/esm2022/components/layouts/sidebar/sidebar.component.mjs +26 -0
  191. package/esm2022/components/layouts/toolbar/toolbar.component.mjs +21 -0
  192. package/esm2022/components/menu/menu-close-triggers.directive.mjs +38 -0
  193. package/esm2022/components/menu/menu-container/menu-container.component.mjs +126 -0
  194. package/esm2022/components/menu/menu-header/menu-header.component.mjs +11 -0
  195. package/esm2022/components/menu/menu-item/menu-item.component.mjs +141 -0
  196. package/esm2022/components/menu/menu-item-group/menu-item-group.component.mjs +31 -0
  197. package/esm2022/components/menu/menu-separator/menu-separator.component.mjs +11 -0
  198. package/esm2022/components/menu/menu-sub-item/menu-sub-item.component.mjs +103 -0
  199. package/esm2022/components/menu/menu.component.mjs +129 -0
  200. package/esm2022/components/menu/menu.module.mjs +95 -0
  201. package/esm2022/components/navbar/navbar-header/navbar-header.component.mjs +11 -0
  202. package/esm2022/components/navbar/navbar-item/navbar-item.component.mjs +95 -0
  203. package/esm2022/components/navbar/navbar-sub-item/navbar-sub-item.component.mjs +76 -0
  204. package/esm2022/components/navbar/navbar.component.mjs +75 -0
  205. package/esm2022/components/navbar/navbar.module.mjs +67 -0
  206. package/esm2022/components/number-input/number-input.component.mjs +122 -0
  207. package/esm2022/components/number-input/number-input.module.mjs +32 -0
  208. package/esm2022/components/paginator/paginator-advanced/paginator-advanced.component.mjs +123 -0
  209. package/esm2022/components/paginator/paginator.component.mjs +133 -0
  210. package/esm2022/components/paginator/paginator.model.mjs +2 -0
  211. package/esm2022/components/paginator/paginator.module.mjs +49 -0
  212. package/esm2022/components/phone-input/country-code.data.mjs +495 -0
  213. package/esm2022/components/phone-input/phone-input.component.mjs +285 -0
  214. package/esm2022/components/phone-input/phone-input.model.mjs +2 -0
  215. package/esm2022/components/phone-input/phone-input.module.mjs +47 -0
  216. package/esm2022/components/popover/popover-panel/popover-panel.component.mjs +30 -0
  217. package/esm2022/components/popover/popover.component.mjs +76 -0
  218. package/esm2022/components/popover/popover.module.mjs +42 -0
  219. package/esm2022/components/progress/bar/bar.component.mjs +83 -0
  220. package/esm2022/components/progress/progress.module.mjs +29 -0
  221. package/esm2022/components/progress/spinner/spinner.component.mjs +101 -0
  222. package/esm2022/components/radio/radio-group.component.mjs +117 -0
  223. package/esm2022/components/radio/radio.component.mjs +51 -0
  224. package/esm2022/components/radio/radio.module.mjs +36 -0
  225. package/esm2022/components/section-heading/back-button/back-button.component.mjs +30 -0
  226. package/esm2022/components/section-heading/section-heading.component.mjs +31 -0
  227. package/esm2022/components/section-heading/section-heading.module.mjs +42 -0
  228. package/esm2022/components/section-heading/subsection-heading/subsection-heading.component.mjs +19 -0
  229. package/esm2022/components/select-menu/multi-select-menu/multi-select-menu.component.mjs +368 -0
  230. package/esm2022/components/select-menu/select-menu.component.mjs +332 -0
  231. package/esm2022/components/select-menu/select-menu.module.mjs +60 -0
  232. package/esm2022/components/shared/pipes/pipes.module.mjs +36 -0
  233. package/esm2022/components/shared/pipes/translate.pipe.mjs +40 -0
  234. package/esm2022/components/shared/pipes/trusthtml.pipe.mjs +21 -0
  235. package/esm2022/components/shared/services/menu-manager.service.mjs +27 -0
  236. package/esm2022/components/shared/translation.service.mjs +26 -0
  237. package/esm2022/components/snackbar/snackbar/snackbar.component.mjs +111 -0
  238. package/esm2022/components/snackbar/snackbar-container/snackbar-container.component.mjs +63 -0
  239. package/esm2022/components/snackbar/snackbar-message.model.mjs +2 -0
  240. package/esm2022/components/snackbar/snackbar-timer.service.mjs +29 -0
  241. package/esm2022/components/snackbar/snackbar.module.mjs +47 -0
  242. package/esm2022/components/snackbar/snackbar.service.mjs +36 -0
  243. package/esm2022/components/stepper/step.component.mjs +113 -0
  244. package/esm2022/components/stepper/stepper.component.mjs +95 -0
  245. package/esm2022/components/stepper/stepper.module.mjs +41 -0
  246. package/esm2022/components/switch/switch.component.mjs +73 -0
  247. package/esm2022/components/switch/switch.module.mjs +24 -0
  248. package/esm2022/components/table/cell.mjs +151 -0
  249. package/esm2022/components/table/row.mjs +164 -0
  250. package/esm2022/components/table/table-dense.component.mjs +38 -0
  251. package/esm2022/components/table/table.component.mjs +38 -0
  252. package/esm2022/components/table/table.module.mjs +91 -0
  253. package/esm2022/components/tabs/tab/tab.component.mjs +79 -0
  254. package/esm2022/components/tabs/tab-panel/tab-panel.component.mjs +19 -0
  255. package/esm2022/components/tabs/tabs.component.mjs +68 -0
  256. package/esm2022/components/tabs/tabs.module.mjs +38 -0
  257. package/esm2022/components/text-input/text-input.component.mjs +125 -0
  258. package/esm2022/components/text-input/text-input.module.mjs +32 -0
  259. package/esm2022/components/textarea-input/textarea-input.component.mjs +86 -0
  260. package/esm2022/components/textarea-input/textarea-input.module.mjs +36 -0
  261. package/esm2022/components/tooltip/tooltip-panel/tooltip-panel.component.mjs +37 -0
  262. package/esm2022/components/tooltip/tooltip.component.mjs +49 -0
  263. package/esm2022/components/tooltip/tooltip.module.mjs +42 -0
  264. package/esm2022/components/wrapped-input/wrapped-input.component.mjs +27 -0
  265. package/esm2022/components/wrapped-input/wrapped-input.module.mjs +28 -0
  266. package/esm2022/directives/menu-register.directive.mjs +38 -0
  267. package/esm2022/flywheel-io-vision.mjs +5 -0
  268. package/esm2022/public-api.mjs +128 -0
  269. package/fesm2022/flywheel-io-vision.mjs +8129 -0
  270. package/fesm2022/flywheel-io-vision.mjs.map +1 -0
  271. package/flywheel-io-vision-2.1.0-beta.1.tgz +0 -0
  272. package/index.d.ts +5 -0
  273. package/package.json +14 -77
  274. package/styles.css +1776 -0
  275. package/.editorconfig +0 -56
  276. package/.eslintrc.json +0 -307
  277. package/.gitattributes +0 -2
  278. package/.gitlab-ci.yml +0 -157
  279. package/.nvmrc +0 -1
  280. package/.storybook/DocsContainer.tsx +0 -103
  281. package/.storybook/main.ts +0 -18
  282. package/.storybook/manager-head.html +0 -29
  283. package/.storybook/manager.ts +0 -7
  284. package/.storybook/preview.tsx +0 -45
  285. package/.storybook/public/images/brand-dark.png +0 -0
  286. package/.storybook/public/images/brand-light.png +0 -0
  287. package/.storybook/public/images/core.svg +0 -22
  288. package/.storybook/public/images/discovery.svg +0 -22
  289. package/.storybook/public/images/exchange.svg +0 -28
  290. package/.storybook/public/images/favicon.png +0 -0
  291. package/.storybook/public/images/grid.png +0 -0
  292. package/.storybook/sb-theme.ts +0 -80
  293. package/.storybook/tsconfig.json +0 -19
  294. package/.stylelintignore +0 -2
  295. package/.stylelintrc.json +0 -48
  296. package/.vscode/extensions.json +0 -18
  297. package/.vscode/settings.json +0 -7
  298. package/CONTRIBUTING.md +0 -51
  299. package/angular.json +0 -95
  300. package/build.js +0 -66
  301. package/elements/elements.html +0 -0
  302. package/install-into-frontend.sh +0 -13
  303. package/karma.conf.js +0 -49
  304. package/ng-package.json +0 -26
  305. package/publish-beta.sh +0 -18
  306. package/src/assets/.gitkeep +0 -0
  307. package/src/assets/brand/core.svg +0 -22
  308. package/src/assets/brand/discovery.svg +0 -22
  309. package/src/assets/brand/exchange.svg +0 -28
  310. package/src/assets/brand/fw-logo-mark-dark-bg.svg +0 -4
  311. package/src/assets/img/avatar.png +0 -0
  312. package/src/assets/updating-icons.md +0 -71
  313. package/src/color.utils.ts +0 -47
  314. package/src/components/alert/alert.component.html +0 -19
  315. package/src/components/alert/alert.component.scss +0 -150
  316. package/src/components/alert/alert.component.spec.ts +0 -22
  317. package/src/components/alert/alert.component.ts +0 -19
  318. package/src/components/alert/alert.mdx +0 -16
  319. package/src/components/alert/alert.module.ts +0 -22
  320. package/src/components/alert/alert.stories.ts +0 -144
  321. package/src/components/app-icon/app-icon.component.html +0 -10
  322. package/src/components/app-icon/app-icon.component.scss +0 -348
  323. package/src/components/app-icon/app-icon.component.spec.ts +0 -22
  324. package/src/components/app-icon/app-icon.component.ts +0 -27
  325. package/src/components/app-icon/app-icon.mdx +0 -16
  326. package/src/components/app-icon/app-icon.module.ts +0 -20
  327. package/src/components/app-icon/app-icon.stories.ts +0 -200
  328. package/src/components/avatar/avatar.component.html +0 -22
  329. package/src/components/avatar/avatar.component.scss +0 -97
  330. package/src/components/avatar/avatar.component.spec.ts +0 -26
  331. package/src/components/avatar/avatar.component.ts +0 -50
  332. package/src/components/avatar/avatar.mdx +0 -16
  333. package/src/components/avatar/avatar.module.ts +0 -20
  334. package/src/components/avatar/avatar.stories.ts +0 -207
  335. package/src/components/badge/badge.component.html +0 -4
  336. package/src/components/badge/badge.component.scss +0 -98
  337. package/src/components/badge/badge.component.spec.ts +0 -26
  338. package/src/components/badge/badge.component.ts +0 -30
  339. package/src/components/badge/badge.mdx +0 -33
  340. package/src/components/badge/badge.module.ts +0 -18
  341. package/src/components/badge/badge.stories.ts +0 -131
  342. package/src/components/breadcrumbs/breadcrumbs.component.scss +0 -5
  343. package/src/components/breadcrumbs/breadcrumbs.component.spec.ts +0 -22
  344. package/src/components/breadcrumbs/breadcrumbs.component.stories.ts +0 -81
  345. package/src/components/breadcrumbs/breadcrumbs.component.ts +0 -20
  346. package/src/components/breadcrumbs/breadcrumbs.mdx +0 -53
  347. package/src/components/breadcrumbs/breadcrumbs.module.ts +0 -23
  348. package/src/components/breadcrumbs/crumb.component.html +0 -5
  349. package/src/components/breadcrumbs/crumb.component.scss +0 -23
  350. package/src/components/breadcrumbs/crumb.component.stories.ts +0 -53
  351. package/src/components/breadcrumbs/crumb.component.ts +0 -23
  352. package/src/components/button/button.component.html +0 -7
  353. package/src/components/button/button.component.scss +0 -129
  354. package/src/components/button/button.component.spec.ts +0 -26
  355. package/src/components/button/button.component.ts +0 -40
  356. package/src/components/button/button.directives.ts +0 -93
  357. package/src/components/button/button.mdx +0 -16
  358. package/src/components/button/button.module.ts +0 -39
  359. package/src/components/button/button.stories.ts +0 -165
  360. package/src/components/button/story.css +0 -0
  361. package/src/components/button-group/button-group.component.scss +0 -94
  362. package/src/components/button-group/button-group.component.ts +0 -138
  363. package/src/components/button-group/button-group.mdx +0 -23
  364. package/src/components/button-group/button-group.module.ts +0 -22
  365. package/src/components/button-group/button-group.stories.ts +0 -145
  366. package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.html +0 -10
  367. package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.spec.ts +0 -25
  368. package/src/components/button-toggle/button-toggle-item/button-toggle-item.component.ts +0 -36
  369. package/src/components/button-toggle/button-toggle.component.scss +0 -94
  370. package/src/components/button-toggle/button-toggle.component.ts +0 -145
  371. package/src/components/button-toggle/button-toggle.mdx +0 -23
  372. package/src/components/button-toggle/button-toggle.module.ts +0 -23
  373. package/src/components/button-toggle/button-toggle.stories.ts +0 -204
  374. package/src/components/card/card-attribute/card-attribute.component.html +0 -3
  375. package/src/components/card/card-attribute/card-attribute.component.scss +0 -19
  376. package/src/components/card/card-attribute/card-attribute.component.spec.ts +0 -22
  377. package/src/components/card/card-attribute/card-attribute.component.ts +0 -13
  378. package/src/components/card/card-author/card-author.component.html +0 -5
  379. package/src/components/card/card-author/card-author.component.scss +0 -21
  380. package/src/components/card/card-author/card-author.component.spec.ts +0 -22
  381. package/src/components/card/card-author/card-author.component.ts +0 -11
  382. package/src/components/card/card-author/card-author.stories.ts +0 -55
  383. package/src/components/card/card-content/card-content.component.scss +0 -26
  384. package/src/components/card/card-content/card-content.component.spec.ts +0 -22
  385. package/src/components/card/card-content/card-content.component.ts +0 -11
  386. package/src/components/card/card-content/card-content.stories.ts +0 -55
  387. package/src/components/card/card-footer/card-footer.component.spec.ts +0 -22
  388. package/src/components/card/card-footer/card-footer.component.ts +0 -24
  389. package/src/components/card/card-footer/card-footer.stories.ts +0 -72
  390. package/src/components/card/card-header/card-header.component.html +0 -9
  391. package/src/components/card/card-header/card-header.component.scss +0 -41
  392. package/src/components/card/card-header/card-header.component.spec.ts +0 -22
  393. package/src/components/card/card-header/card-header.component.ts +0 -15
  394. package/src/components/card/card-header/card-header.stories.ts +0 -58
  395. package/src/components/card/card.component.html +0 -12
  396. package/src/components/card/card.component.scss +0 -40
  397. package/src/components/card/card.component.spec.ts +0 -34
  398. package/src/components/card/card.component.ts +0 -16
  399. package/src/components/card/card.mdx +0 -128
  400. package/src/components/card/card.module.ts +0 -37
  401. package/src/components/card/card.stories.ts +0 -240
  402. package/src/components/changelog.mdx +0 -405
  403. package/src/components/checkbox/checkbox.component.html +0 -16
  404. package/src/components/checkbox/checkbox.component.scss +0 -189
  405. package/src/components/checkbox/checkbox.component.ts +0 -68
  406. package/src/components/checkbox/checkbox.module.ts +0 -21
  407. package/src/components/checkbox/checkbox.stories.ts +0 -224
  408. package/src/components/chip/chip.component.html +0 -14
  409. package/src/components/chip/chip.component.scss +0 -357
  410. package/src/components/chip/chip.component.spec.ts +0 -22
  411. package/src/components/chip/chip.component.ts +0 -32
  412. package/src/components/chip/chip.mdx +0 -16
  413. package/src/components/chip/chip.module.ts +0 -22
  414. package/src/components/chip/chip.stories.ts +0 -236
  415. package/src/components/color-palette/color-palette.component.html +0 -10
  416. package/src/components/color-palette/color-palette.component.scss +0 -15
  417. package/src/components/color-palette/color-palette.component.ts +0 -73
  418. package/src/components/color-palette/color-palette.module.ts +0 -22
  419. package/src/components/color-palette/color-palette.stories.ts +0 -35
  420. package/src/components/color-palette/colors.mdx +0 -47
  421. package/src/components/color-palette/swatch/swatch.component.html +0 -3
  422. package/src/components/color-palette/swatch/swatch.component.scss +0 -21
  423. package/src/components/color-palette/swatch/swatch.component.ts +0 -28
  424. package/src/components/contained-input/contained-input.component.html +0 -15
  425. package/src/components/contained-input/contained-input.component.scss +0 -88
  426. package/src/components/contained-input/contained-input.component.spec.ts +0 -34
  427. package/src/components/contained-input/contained-input.component.ts +0 -65
  428. package/src/components/contained-input/contained-input.mdx +0 -16
  429. package/src/components/contained-input/contained-input.module.ts +0 -26
  430. package/src/components/contained-input/contained-input.stories.ts +0 -155
  431. package/src/components/date-input/date-input.component.html +0 -28
  432. package/src/components/date-input/date-input.component.scss +0 -192
  433. package/src/components/date-input/date-input.component.spec.ts +0 -26
  434. package/src/components/date-input/date-input.component.ts +0 -126
  435. package/src/components/date-input/date-input.mdx +0 -23
  436. package/src/components/date-input/date-input.module.ts +0 -23
  437. package/src/components/date-input/date-input.stories.ts +0 -96
  438. package/src/components/dialog/dialog-actions.component.ts +0 -22
  439. package/src/components/dialog/dialog-confirm.component.html +0 -37
  440. package/src/components/dialog/dialog-confirm.component.scss +0 -49
  441. package/src/components/dialog/dialog-confirm.component.ts +0 -35
  442. package/src/components/dialog/dialog-confirm.stories.ts +0 -47
  443. package/src/components/dialog/dialog-content.component.ts +0 -28
  444. package/src/components/dialog/dialog-header.component.ts +0 -25
  445. package/src/components/dialog/dialog-simple.component.html +0 -27
  446. package/src/components/dialog/dialog-simple.component.scss +0 -13
  447. package/src/components/dialog/dialog-simple.component.ts +0 -36
  448. package/src/components/dialog/dialog-simple.stories.ts +0 -78
  449. package/src/components/dialog/dialog.component.html +0 -20
  450. package/src/components/dialog/dialog.component.scss +0 -94
  451. package/src/components/dialog/dialog.component.ts +0 -39
  452. package/src/components/dialog/dialog.mdx +0 -252
  453. package/src/components/dialog/dialog.service.ts +0 -34
  454. package/src/components/dialog/dialog.stories.ts +0 -169
  455. package/src/components/dialog/dialogs.module.ts +0 -47
  456. package/src/components/form-heading/form-heading.component.html +0 -15
  457. package/src/components/form-heading/form-heading.component.scss +0 -55
  458. package/src/components/form-heading/form-heading.component.spec.ts +0 -28
  459. package/src/components/form-heading/form-heading.component.ts +0 -17
  460. package/src/components/form-heading/form-heading.mdx +0 -16
  461. package/src/components/form-heading/form-heading.module.ts +0 -22
  462. package/src/components/form-heading/form-heading.stories.ts +0 -168
  463. package/src/components/forms/validators.ts +0 -97
  464. package/src/components/getting-started.mdx +0 -92
  465. package/src/components/ghost/ghost.stories.ts +0 -79
  466. package/src/components/icon/README.txt +0 -5
  467. package/src/components/icon/icon.component.ts +0 -52
  468. package/src/components/icon/icon.mdx +0 -36
  469. package/src/components/icon/icon.module.ts +0 -17
  470. package/src/components/icon/icon.stories.ts +0 -51
  471. package/src/components/icon/icon.types.ts +0 -331
  472. package/src/components/icon/icons.stories.scss +0 -63
  473. package/src/components/icon/icons.stories.ts +0 -95
  474. package/src/components/icon/selection.json +0 -1
  475. package/src/components/icon-button/icon-button.component.html +0 -6
  476. package/src/components/icon-button/icon-button.component.scss +0 -231
  477. package/src/components/icon-button/icon-button.component.spec.ts +0 -28
  478. package/src/components/icon-button/icon-button.component.ts +0 -32
  479. package/src/components/icon-button/icon-button.mdx +0 -16
  480. package/src/components/icon-button/icon-button.module.ts +0 -20
  481. package/src/components/icon-button/icon-button.stories.ts +0 -257
  482. package/src/components/json/json.component.ts +0 -15
  483. package/src/components/layouts/context/context.component.html +0 -6
  484. package/src/components/layouts/context/context.component.scss +0 -71
  485. package/src/components/layouts/context/context.component.spec.ts +0 -22
  486. package/src/components/layouts/context/context.component.stories.ts +0 -63
  487. package/src/components/layouts/context/context.component.ts +0 -32
  488. package/src/components/layouts/context/context.mdx +0 -15
  489. package/src/components/layouts/grid/grid.component.scss +0 -281
  490. package/src/components/layouts/grid/grid.component.spec.ts +0 -22
  491. package/src/components/layouts/grid/grid.component.stories.ts +0 -183
  492. package/src/components/layouts/grid/grid.component.ts +0 -43
  493. package/src/components/layouts/grid/grid.mdx +0 -27
  494. package/src/components/layouts/layout-group.component.scss +0 -38
  495. package/src/components/layouts/layout-group.component.spec.ts +0 -22
  496. package/src/components/layouts/layout-group.component.stories.ts +0 -105
  497. package/src/components/layouts/layout-group.component.ts +0 -24
  498. package/src/components/layouts/layout-group.mdx +0 -22
  499. package/src/components/layouts/layouts.mdx +0 -63
  500. package/src/components/layouts/layouts.module.ts +0 -37
  501. package/src/components/layouts/panel/panel.component.html +0 -9
  502. package/src/components/layouts/panel/panel.component.scss +0 -110
  503. package/src/components/layouts/panel/panel.component.spec.ts +0 -22
  504. package/src/components/layouts/panel/panel.component.stories.ts +0 -249
  505. package/src/components/layouts/panel/panel.component.ts +0 -16
  506. package/src/components/layouts/panel/panel.mdx +0 -28
  507. package/src/components/layouts/sidebar/sidebar.component.html +0 -14
  508. package/src/components/layouts/sidebar/sidebar.component.scss +0 -87
  509. package/src/components/layouts/sidebar/sidebar.component.spec.ts +0 -22
  510. package/src/components/layouts/sidebar/sidebar.component.stories.ts +0 -243
  511. package/src/components/layouts/sidebar/sidebar.component.ts +0 -14
  512. package/src/components/layouts/sidebar/sidebar.mdx +0 -18
  513. package/src/components/layouts/toolbar/toolbar.component.scss +0 -11
  514. package/src/components/layouts/toolbar/toolbar.component.spec.ts +0 -22
  515. package/src/components/layouts/toolbar/toolbar.component.stories.ts +0 -59
  516. package/src/components/layouts/toolbar/toolbar.component.ts +0 -15
  517. package/src/components/layouts/toolbar/toolbar.mdx +0 -16
  518. package/src/components/menu/menu-close-triggers.directive.ts +0 -27
  519. package/src/components/menu/menu-container/menu-container.component.html +0 -15
  520. package/src/components/menu/menu-container/menu-container.component.scss +0 -32
  521. package/src/components/menu/menu-container/menu-container.component.spec.ts +0 -22
  522. package/src/components/menu/menu-container/menu-container.component.ts +0 -125
  523. package/src/components/menu/menu-container/menu-container.stories.ts +0 -105
  524. package/src/components/menu/menu-header/menu-header.component.html +0 -5
  525. package/src/components/menu/menu-header/menu-header.component.scss +0 -20
  526. package/src/components/menu/menu-header/menu-header.component.spec.ts +0 -22
  527. package/src/components/menu/menu-header/menu-header.component.ts +0 -10
  528. package/src/components/menu/menu-item/menu-item.component.html +0 -42
  529. package/src/components/menu/menu-item/menu-item.component.scss +0 -163
  530. package/src/components/menu/menu-item/menu-item.component.ts +0 -120
  531. package/src/components/menu/menu-item/menu-item.stories.ts +0 -104
  532. package/src/components/menu/menu-item-group/menu-item-group.component.html +0 -9
  533. package/src/components/menu/menu-item-group/menu-item-group.component.scss +0 -33
  534. package/src/components/menu/menu-item-group/menu-item-group.component.spec.ts +0 -23
  535. package/src/components/menu/menu-item-group/menu-item-group.component.ts +0 -16
  536. package/src/components/menu/menu-item-group/menu-item-group.stories.ts +0 -83
  537. package/src/components/menu/menu-separator/menu-separator.component.scss +0 -6
  538. package/src/components/menu/menu-separator/menu-separator.component.spec.ts +0 -22
  539. package/src/components/menu/menu-separator/menu-separator.component.ts +0 -9
  540. package/src/components/menu/menu-sub-item/menu-sub-item.component.html +0 -18
  541. package/src/components/menu/menu-sub-item/menu-sub-item.component.scss +0 -125
  542. package/src/components/menu/menu-sub-item/menu-sub-item.component.ts +0 -66
  543. package/src/components/menu/menu.component.html +0 -3
  544. package/src/components/menu/menu.component.scss +0 -5
  545. package/src/components/menu/menu.component.ts +0 -135
  546. package/src/components/menu/menu.mdx +0 -119
  547. package/src/components/menu/menu.module.ts +0 -57
  548. package/src/components/menu/menu.stories.ts +0 -211
  549. package/src/components/navbar/navbar-header/navbar-header.component.html +0 -5
  550. package/src/components/navbar/navbar-header/navbar-header.component.scss +0 -20
  551. package/src/components/navbar/navbar-header/navbar-header.component.ts +0 -10
  552. package/src/components/navbar/navbar-item/navbar-item.component.html +0 -35
  553. package/src/components/navbar/navbar-item/navbar-item.component.scss +0 -142
  554. package/src/components/navbar/navbar-item/navbar-item.component.ts +0 -73
  555. package/src/components/navbar/navbar-item/navbar-item.stories.ts +0 -82
  556. package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.html +0 -22
  557. package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.scss +0 -152
  558. package/src/components/navbar/navbar-sub-item/navbar-sub-item.component.ts +0 -40
  559. package/src/components/navbar/navbar.component.html +0 -5
  560. package/src/components/navbar/navbar.component.scss +0 -16
  561. package/src/components/navbar/navbar.component.ts +0 -63
  562. package/src/components/navbar/navbar.mdx +0 -20
  563. package/src/components/navbar/navbar.module.ts +0 -41
  564. package/src/components/navbar/navbar.stories.ts +0 -201
  565. package/src/components/number-input/number-input.component.html +0 -39
  566. package/src/components/number-input/number-input.component.scss +0 -184
  567. package/src/components/number-input/number-input.component.spec.ts +0 -26
  568. package/src/components/number-input/number-input.component.ts +0 -96
  569. package/src/components/number-input/number-input.mdx +0 -25
  570. package/src/components/number-input/number-input.module.ts +0 -23
  571. package/src/components/number-input/number-input.stories.ts +0 -87
  572. package/src/components/paginator/paginator-advanced/paginator-advanced.component.html +0 -45
  573. package/src/components/paginator/paginator-advanced/paginator-advanced.component.scss +0 -217
  574. package/src/components/paginator/paginator-advanced/paginator-advanced.component.spec.ts +0 -32
  575. package/src/components/paginator/paginator-advanced/paginator-advanced.component.ts +0 -107
  576. package/src/components/paginator/paginator-advanced/paginator-advanced.stories.ts +0 -69
  577. package/src/components/paginator/paginator.component.html +0 -32
  578. package/src/components/paginator/paginator.component.scss +0 -212
  579. package/src/components/paginator/paginator.component.spec.ts +0 -24
  580. package/src/components/paginator/paginator.component.ts +0 -118
  581. package/src/components/paginator/paginator.mdx +0 -55
  582. package/src/components/paginator/paginator.model.ts +0 -8
  583. package/src/components/paginator/paginator.module.ts +0 -31
  584. package/src/components/paginator/paginator.stories.ts +0 -142
  585. package/src/components/phone-input/country-code.data.ts +0 -495
  586. package/src/components/phone-input/images/arrow_drop_down_grey600_18dp.png +0 -0
  587. package/src/components/phone-input/images/flags_sprite_2x.png +0 -0
  588. package/src/components/phone-input/phone-input.component.html +0 -68
  589. package/src/components/phone-input/phone-input.component.scss +0 -467
  590. package/src/components/phone-input/phone-input.component.spec.ts +0 -33
  591. package/src/components/phone-input/phone-input.component.ts +0 -318
  592. package/src/components/phone-input/phone-input.mdx +0 -49
  593. package/src/components/phone-input/phone-input.model.ts +0 -11
  594. package/src/components/phone-input/phone-input.module.ts +0 -29
  595. package/src/components/phone-input/phone-input.stories.ts +0 -201
  596. package/src/components/popover/popover-panel/popover-panel.component.html +0 -4
  597. package/src/components/popover/popover-panel/popover-panel.component.scss +0 -220
  598. package/src/components/popover/popover-panel/popover-panel.component.spec.ts +0 -22
  599. package/src/components/popover/popover-panel/popover-panel.component.ts +0 -22
  600. package/src/components/popover/popover-panel/popover-panel.stories.ts +0 -162
  601. package/src/components/popover/popover.component.html +0 -13
  602. package/src/components/popover/popover.component.spec.ts +0 -26
  603. package/src/components/popover/popover.component.ts +0 -77
  604. package/src/components/popover/popover.mdx +0 -52
  605. package/src/components/popover/popover.module.ts +0 -28
  606. package/src/components/popover/popover.stories.ts +0 -176
  607. package/src/components/progress/bar/bar.component.html +0 -18
  608. package/src/components/progress/bar/bar.component.spec.ts +0 -26
  609. package/src/components/progress/bar/bar.component.ts +0 -98
  610. package/src/components/progress/bar/bar.mdx +0 -22
  611. package/src/components/progress/bar/bar.scss +0 -313
  612. package/src/components/progress/bar/bar.stories.ts +0 -52
  613. package/src/components/progress/progress.module.ts +0 -21
  614. package/src/components/progress/spinner/spinner.component.html +0 -53
  615. package/src/components/progress/spinner/spinner.component.scss +0 -225
  616. package/src/components/progress/spinner/spinner.component.spec.ts +0 -26
  617. package/src/components/progress/spinner/spinner.component.ts +0 -107
  618. package/src/components/progress/spinner/spinner.mdx +0 -21
  619. package/src/components/progress/spinner/spinner.stories.ts +0 -70
  620. package/src/components/radio/radio-group.component.ts +0 -124
  621. package/src/components/radio/radio-group.mdx +0 -45
  622. package/src/components/radio/radio-group.stories.ts +0 -76
  623. package/src/components/radio/radio.component.html +0 -19
  624. package/src/components/radio/radio.component.scss +0 -132
  625. package/src/components/radio/radio.component.ts +0 -33
  626. package/src/components/radio/radio.module.ts +0 -24
  627. package/src/components/radio/radio.stories.ts +0 -168
  628. package/src/components/section-heading/back-button/back-button.component.html +0 -3
  629. package/src/components/section-heading/back-button/back-button.component.scss +0 -37
  630. package/src/components/section-heading/back-button/back-button.component.spec.ts +0 -27
  631. package/src/components/section-heading/back-button/back-button.component.ts +0 -24
  632. package/src/components/section-heading/back-button/back-button.stories.ts +0 -39
  633. package/src/components/section-heading/section-heading.component.html +0 -15
  634. package/src/components/section-heading/section-heading.component.scss +0 -48
  635. package/src/components/section-heading/section-heading.component.spec.ts +0 -28
  636. package/src/components/section-heading/section-heading.component.ts +0 -21
  637. package/src/components/section-heading/section-heading.mdx +0 -22
  638. package/src/components/section-heading/section-heading.module.ts +0 -28
  639. package/src/components/section-heading/section-heading.stories.ts +0 -141
  640. package/src/components/section-heading/subsection-heading/subsection-heading.component.html +0 -7
  641. package/src/components/section-heading/subsection-heading/subsection-heading.component.scss +0 -31
  642. package/src/components/section-heading/subsection-heading/subsection-heading.component.spec.ts +0 -23
  643. package/src/components/section-heading/subsection-heading/subsection-heading.component.ts +0 -17
  644. package/src/components/section-heading/subsection-heading/subsection-heading.stories.ts +0 -60
  645. package/src/components/select-menu/multi-select-menu/multi-select-menu.component.html +0 -75
  646. package/src/components/select-menu/multi-select-menu/multi-select-menu.component.scss +0 -91
  647. package/src/components/select-menu/multi-select-menu/multi-select-menu.component.spec.ts +0 -89
  648. package/src/components/select-menu/multi-select-menu/multi-select-menu.component.ts +0 -388
  649. package/src/components/select-menu/multi-select-menu/multi-select-menu.mdx +0 -27
  650. package/src/components/select-menu/multi-select-menu/multi-select-menu.stories.ts +0 -415
  651. package/src/components/select-menu/select-menu.component.html +0 -40
  652. package/src/components/select-menu/select-menu.component.scss +0 -4
  653. package/src/components/select-menu/select-menu.component.spec.ts +0 -242
  654. package/src/components/select-menu/select-menu.component.ts +0 -331
  655. package/src/components/select-menu/select-menu.mdx +0 -222
  656. package/src/components/select-menu/select-menu.module.ts +0 -37
  657. package/src/components/select-menu/select-menu.stories.ts +0 -409
  658. package/src/components/shadows/shadows.stories.ts +0 -75
  659. package/src/components/shared/pipes/pipes.module.ts +0 -24
  660. package/src/components/shared/pipes/translate.pipe.ts +0 -40
  661. package/src/components/shared/pipes/trusthtml.pipe.ts +0 -14
  662. package/src/components/shared/services/menu-manager.service.ts +0 -23
  663. package/src/components/shared/translation.service.ts +0 -24
  664. package/src/components/snackbar/snackbar/snackbar.component.html +0 -15
  665. package/src/components/snackbar/snackbar/snackbar.component.scss +0 -58
  666. package/src/components/snackbar/snackbar/snackbar.component.spec.ts +0 -56
  667. package/src/components/snackbar/snackbar/snackbar.component.ts +0 -115
  668. package/src/components/snackbar/snackbar/snackbar.stories.ts +0 -92
  669. package/src/components/snackbar/snackbar-container/snackbar-container.component.html +0 -18
  670. package/src/components/snackbar/snackbar-container/snackbar-container.component.scss +0 -22
  671. package/src/components/snackbar/snackbar-container/snackbar-container.component.spec.ts +0 -98
  672. package/src/components/snackbar/snackbar-container/snackbar-container.component.ts +0 -71
  673. package/src/components/snackbar/snackbar-container/snackbar-container.stories.ts +0 -70
  674. package/src/components/snackbar/snackbar-message.model.ts +0 -13
  675. package/src/components/snackbar/snackbar-timer.service.ts +0 -32
  676. package/src/components/snackbar/snackbar.mdx +0 -90
  677. package/src/components/snackbar/snackbar.module.ts +0 -31
  678. package/src/components/snackbar/snackbar.service.spec.ts +0 -16
  679. package/src/components/snackbar/snackbar.service.ts +0 -36
  680. package/src/components/stepper/step.component.html +0 -33
  681. package/src/components/stepper/step.component.scss +0 -421
  682. package/src/components/stepper/step.component.ts +0 -92
  683. package/src/components/stepper/step.stories.ts +0 -73
  684. package/src/components/stepper/stepper.component.ts +0 -100
  685. package/src/components/stepper/stepper.mdx +0 -83
  686. package/src/components/stepper/stepper.module.ts +0 -27
  687. package/src/components/stepper/stepper.stories.ts +0 -233
  688. package/src/components/switch/switch.component.html +0 -10
  689. package/src/components/switch/switch.component.scss +0 -179
  690. package/src/components/switch/switch.component.spec.ts +0 -22
  691. package/src/components/switch/switch.component.ts +0 -58
  692. package/src/components/switch/switch.mdx +0 -39
  693. package/src/components/switch/switch.module.ts +0 -18
  694. package/src/components/switch/switch.stories.ts +0 -117
  695. package/src/components/table/cell.ts +0 -111
  696. package/src/components/table/row.ts +0 -113
  697. package/src/components/table/table-dense.component.scss +0 -178
  698. package/src/components/table/table-dense.component.ts +0 -36
  699. package/src/components/table/table-dense.stories.ts +0 -105
  700. package/src/components/table/table.component.html +0 -4
  701. package/src/components/table/table.component.scss +0 -186
  702. package/src/components/table/table.component.ts +0 -36
  703. package/src/components/table/table.mdx +0 -83
  704. package/src/components/table/table.module.ts +0 -53
  705. package/src/components/table/table.stories.ts +0 -198
  706. package/src/components/tabs/tab/tab.component.html +0 -3
  707. package/src/components/tabs/tab/tab.component.scss +0 -79
  708. package/src/components/tabs/tab/tab.component.spec.ts +0 -22
  709. package/src/components/tabs/tab/tab.component.ts +0 -47
  710. package/src/components/tabs/tab/tab.stories.ts +0 -38
  711. package/src/components/tabs/tab-panel/tab-panel.component.html +0 -1
  712. package/src/components/tabs/tab-panel/tab-panel.component.scss +0 -7
  713. package/src/components/tabs/tab-panel/tab-panel.component.spec.ts +0 -22
  714. package/src/components/tabs/tab-panel/tab-panel.component.ts +0 -11
  715. package/src/components/tabs/tabs.component.html +0 -2
  716. package/src/components/tabs/tabs.component.scss +0 -9
  717. package/src/components/tabs/tabs.component.spec.ts +0 -22
  718. package/src/components/tabs/tabs.component.ts +0 -69
  719. package/src/components/tabs/tabs.mdx +0 -74
  720. package/src/components/tabs/tabs.module.ts +0 -26
  721. package/src/components/tabs/tabs.stories.ts +0 -87
  722. package/src/components/text-input/text-input.component.html +0 -37
  723. package/src/components/text-input/text-input.component.scss +0 -155
  724. package/src/components/text-input/text-input.component.spec.ts +0 -26
  725. package/src/components/text-input/text-input.component.ts +0 -100
  726. package/src/components/text-input/text-input.mdx +0 -24
  727. package/src/components/text-input/text-input.module.ts +0 -23
  728. package/src/components/text-input/text-input.stories.ts +0 -125
  729. package/src/components/textarea-input/textarea-input.component.html +0 -18
  730. package/src/components/textarea-input/textarea-input.component.scss +0 -97
  731. package/src/components/textarea-input/textarea-input.component.spec.ts +0 -28
  732. package/src/components/textarea-input/textarea-input.component.ts +0 -73
  733. package/src/components/textarea-input/textarea-input.mdx +0 -43
  734. package/src/components/textarea-input/textarea-input.module.ts +0 -25
  735. package/src/components/textarea-input/textarea-input.stories.ts +0 -106
  736. package/src/components/tooltip/tooltip-panel/tooltip-panel.component.html +0 -6
  737. package/src/components/tooltip/tooltip-panel/tooltip-panel.component.scss +0 -109
  738. package/src/components/tooltip/tooltip-panel/tooltip-panel.component.ts +0 -22
  739. package/src/components/tooltip/tooltip-panel/tooltip-panel.stories.ts +0 -74
  740. package/src/components/tooltip/tooltip.component.html +0 -16
  741. package/src/components/tooltip/tooltip.component.scss +0 -26
  742. package/src/components/tooltip/tooltip.component.spec.ts +0 -24
  743. package/src/components/tooltip/tooltip.component.ts +0 -30
  744. package/src/components/tooltip/tooltip.mdx +0 -27
  745. package/src/components/tooltip/tooltip.module.ts +0 -28
  746. package/src/components/tooltip/tooltip.stories.ts +0 -111
  747. package/src/components/typography-sample/typography-sample.component.html +0 -25
  748. package/src/components/typography-sample/typography-sample.component.ts +0 -10
  749. package/src/components/typography-sample/typography-sample.module.ts +0 -17
  750. package/src/components/typography-sample/typography-sample.stories.ts +0 -34
  751. package/src/components/typography-sample/typography.mdx +0 -41
  752. package/src/components/wrapped-input/wrapped-input.component.html +0 -10
  753. package/src/components/wrapped-input/wrapped-input.component.scss +0 -32
  754. package/src/components/wrapped-input/wrapped-input.component.spec.ts +0 -34
  755. package/src/components/wrapped-input/wrapped-input.component.ts +0 -18
  756. package/src/components/wrapped-input/wrapped-input.mdx +0 -26
  757. package/src/components/wrapped-input/wrapped-input.module.ts +0 -20
  758. package/src/components/wrapped-input/wrapped-input.stories.ts +0 -195
  759. package/src/directives/menu-register.directive.ts +0 -25
  760. package/src/favicon.ico +0 -0
  761. package/src/index.html +0 -16
  762. package/src/storybook.helper.ts +0 -35
  763. package/src/test.ts +0 -15
  764. package/tsconfig.json +0 -29
  765. package/tsconfig.lib.json +0 -21
  766. package/tsconfig.spec.json +0 -28
  767. package/update-icons.js +0 -40
  768. /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.svg +0 -0
  769. /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.ttf +0 -0
  770. /package/{src/assets → assets}/fonts/Flywheel-Vision-Icons.woff +0 -0
  771. /package/{src/assets → assets}/svg/3d-sphere-rotate-arrows.svg +0 -0
  772. /package/{src/assets → assets}/svg/add-circle.svg +0 -0
  773. /package/{src/assets → assets}/svg/add-new-create.svg +0 -0
  774. /package/{src/assets → assets}/svg/add-row-above.svg +0 -0
  775. /package/{src/assets → assets}/svg/add-row-below.svg +0 -0
  776. /package/{src/assets → assets}/svg/add-server-databases-endpoint.svg +0 -0
  777. /package/{src/assets → assets}/svg/add-server.svg +0 -0
  778. /package/{src/assets → assets}/svg/add-user.svg +0 -0
  779. /package/{src/assets → assets}/svg/ai.svg +0 -0
  780. /package/{src/assets → assets}/svg/apple.svg +0 -0
  781. /package/{src/assets → assets}/svg/apply-copy-duplicate.svg +0 -0
  782. /package/{src/assets → assets}/svg/arrange-filter-sort.svg +0 -0
  783. /package/{src/assets → assets}/svg/arrow-annotate.svg +0 -0
  784. /package/{src/assets → assets}/svg/arrow-back-collapse.svg +0 -0
  785. /package/{src/assets → assets}/svg/arrow-back.svg +0 -0
  786. /package/{src/assets → assets}/svg/arrow-down.svg +0 -0
  787. /package/{src/assets → assets}/svg/arrow-forward-collapse.svg +0 -0
  788. /package/{src/assets → assets}/svg/arrow-forward.svg +0 -0
  789. /package/{src/assets → assets}/svg/arrow-redo.svg +0 -0
  790. /package/{src/assets → assets}/svg/arrow-rotate-restore.svg +0 -0
  791. /package/{src/assets → assets}/svg/arrow-rotate.svg +0 -0
  792. /package/{src/assets → assets}/svg/arrow-undo.svg +0 -0
  793. /package/{src/assets → assets}/svg/arrow-up-high-priority.svg +0 -0
  794. /package/{src/assets → assets}/svg/arrow-up-low-priority.svg +0 -0
  795. /package/{src/assets → assets}/svg/arrow-up.svg +0 -0
  796. /package/{src/assets → assets}/svg/arrow.svg +0 -0
  797. /package/{src/assets → assets}/svg/barcode-serial.svg +0 -0
  798. /package/{src/assets → assets}/svg/barcode-stack-scan.svg +0 -0
  799. /package/{src/assets → assets}/svg/bell-notification.svg +0 -0
  800. /package/{src/assets → assets}/svg/bezier-curve.svg +0 -0
  801. /package/{src/assets → assets}/svg/blocks-code-test-checkmark.svg +0 -0
  802. /package/{src/assets → assets}/svg/book-lab-flask.svg +0 -0
  803. /package/{src/assets → assets}/svg/bookmark-plus-add.svg +0 -0
  804. /package/{src/assets → assets}/svg/bookmark.svg +0 -0
  805. /package/{src/assets → assets}/svg/brain.svg +0 -0
  806. /package/{src/assets → assets}/svg/brightness-photo-edit.svg +0 -0
  807. /package/{src/assets → assets}/svg/browser-internet-web-windows.svg +0 -0
  808. /package/{src/assets → assets}/svg/brush-edit-create.svg +0 -0
  809. /package/{src/assets → assets}/svg/bucket-paint.svg +0 -0
  810. /package/{src/assets → assets}/svg/button-form-element.svg +0 -0
  811. /package/{src/assets → assets}/svg/calendar-arrow-left-center.svg +0 -0
  812. /package/{src/assets → assets}/svg/calendar-schedule.svg +0 -0
  813. /package/{src/assets → assets}/svg/camera-photo-capture.svg +0 -0
  814. /package/{src/assets → assets}/svg/cash-banknotes.svg +0 -0
  815. /package/{src/assets → assets}/svg/certificate.svg +0 -0
  816. /package/{src/assets → assets}/svg/chart-square.svg +0 -0
  817. /package/{src/assets → assets}/svg/chart-trend-square.svg +0 -0
  818. /package/{src/assets → assets}/svg/chat-messages-bubble.svg +0 -0
  819. /package/{src/assets → assets}/svg/check-mark-certificate.svg +0 -0
  820. /package/{src/assets → assets}/svg/checklist-tasks-chechmark-square.svg +0 -0
  821. /package/{src/assets → assets}/svg/checklist.svg +0 -0
  822. /package/{src/assets → assets}/svg/chevron-back.svg +0 -0
  823. /package/{src/assets → assets}/svg/chevron-down.svg +0 -0
  824. /package/{src/assets → assets}/svg/chevron-forward.svg +0 -0
  825. /package/{src/assets → assets}/svg/chevron-input-number.svg +0 -0
  826. /package/{src/assets → assets}/svg/chevron-up.svg +0 -0
  827. /package/{src/assets → assets}/svg/circle-ellipses.svg +0 -0
  828. /package/{src/assets → assets}/svg/circle.svg +0 -0
  829. /package/{src/assets → assets}/svg/clap-applause-hands.svg +0 -0
  830. /package/{src/assets → assets}/svg/clip-attachment.svg +0 -0
  831. /package/{src/assets → assets}/svg/clock-history.svg +0 -0
  832. /package/{src/assets → assets}/svg/clock-hour-4.svg +0 -0
  833. /package/{src/assets → assets}/svg/clock-loading.svg +0 -0
  834. /package/{src/assets → assets}/svg/close-circled.svg +0 -0
  835. /package/{src/assets → assets}/svg/close.svg +0 -0
  836. /package/{src/assets → assets}/svg/closed-freehand-vector-poly.svg +0 -0
  837. /package/{src/assets → assets}/svg/cloud-network-add.svg +0 -0
  838. /package/{src/assets → assets}/svg/cloud-storage-checkmark.svg +0 -0
  839. /package/{src/assets → assets}/svg/cloud-upload.svg +0 -0
  840. /package/{src/assets → assets}/svg/code-block-embed.svg +0 -0
  841. /package/{src/assets → assets}/svg/code-text.svg +0 -0
  842. /package/{src/assets → assets}/svg/color-design-profile.svg +0 -0
  843. /package/{src/assets → assets}/svg/color-ven-design-profile-central.svg +0 -0
  844. /package/{src/assets → assets}/svg/column-edit.svg +0 -0
  845. /package/{src/assets → assets}/svg/computer-chip.svg +0 -0
  846. /package/{src/assets → assets}/svg/contrast-photo-edit.svg +0 -0
  847. /package/{src/assets → assets}/svg/copy-item.svg +0 -0
  848. /package/{src/assets → assets}/svg/creative-commons.svg +0 -0
  849. /package/{src/assets → assets}/svg/crosshair.svg +0 -0
  850. /package/{src/assets → assets}/svg/crown-style-circle.svg +0 -0
  851. /package/{src/assets → assets}/svg/cursor-select.svg +0 -0
  852. /package/{src/assets → assets}/svg/curve-object-secet-cursor.svg +0 -0
  853. /package/{src/assets → assets}/svg/data-tree.svg +0 -0
  854. /package/{src/assets → assets}/svg/delivery-shipment-packages.svg +0 -0
  855. /package/{src/assets → assets}/svg/dna-hospital-medical.svg +0 -0
  856. /package/{src/assets → assets}/svg/document-file-add-plus-bottom-left.svg +0 -0
  857. /package/{src/assets → assets}/svg/document-file-blank.svg +0 -0
  858. /package/{src/assets → assets}/svg/document-file-checkmark-bottom-left.svg +0 -0
  859. /package/{src/assets → assets}/svg/document-file-download.svg +0 -0
  860. /package/{src/assets → assets}/svg/document-file-list-protocol.svg +0 -0
  861. /package/{src/assets → assets}/svg/document-file-tar.svg +0 -0
  862. /package/{src/assets → assets}/svg/document-file-upload-bottom-center.svg +0 -0
  863. /package/{src/assets → assets}/svg/document-file-zip.svg +0 -0
  864. /package/{src/assets → assets}/svg/document-status-done-checkmark.svg +0 -0
  865. /package/{src/assets → assets}/svg/document-visible.svg +0 -0
  866. /package/{src/assets → assets}/svg/documents-file.svg +0 -0
  867. /package/{src/assets → assets}/svg/documents-files.svg +0 -0
  868. /package/{src/assets → assets}/svg/done-check-tracked.svg +0 -0
  869. /package/{src/assets → assets}/svg/done-check.svg +0 -0
  870. /package/{src/assets → assets}/svg/download-status.svg +0 -0
  871. /package/{src/assets → assets}/svg/download.svg +0 -0
  872. /package/{src/assets → assets}/svg/drag-drop-indicator.svg +0 -0
  873. /package/{src/assets → assets}/svg/draw-rectangle.svg +0 -0
  874. /package/{src/assets → assets}/svg/earth-globe-fail.svg +0 -0
  875. /package/{src/assets → assets}/svg/edit-boxed.svg +0 -0
  876. /package/{src/assets → assets}/svg/edit-erase.svg +0 -0
  877. /package/{src/assets → assets}/svg/edit.svg +0 -0
  878. /package/{src/assets → assets}/svg/email-mail-checkmark-group.svg +0 -0
  879. /package/{src/assets → assets}/svg/email.svg +0 -0
  880. /package/{src/assets → assets}/svg/embed-circle.svg +0 -0
  881. /package/{src/assets → assets}/svg/exchange.svg +0 -0
  882. /package/{src/assets → assets}/svg/expand-pathfinder-dot-square-segmentation.svg +0 -0
  883. /package/{src/assets → assets}/svg/facebook.svg +0 -0
  884. /package/{src/assets → assets}/svg/file-blank-image-load-mask.svg +0 -0
  885. /package/{src/assets → assets}/svg/file-download.svg +0 -0
  886. /package/{src/assets → assets}/svg/file-text.svg +0 -0
  887. /package/{src/assets → assets}/svg/files-library-content.svg +0 -0
  888. /package/{src/assets → assets}/svg/files-library.svg +0 -0
  889. /package/{src/assets → assets}/svg/files.svg +0 -0
  890. /package/{src/assets → assets}/svg/filter-sort-add.svg +0 -0
  891. /package/{src/assets → assets}/svg/filter-sort-check-mark.svg +0 -0
  892. /package/{src/assets → assets}/svg/filter-sort-delete.svg +0 -0
  893. /package/{src/assets → assets}/svg/filter.svg +0 -0
  894. /package/{src/assets → assets}/svg/flag.svg +0 -0
  895. /package/{src/assets → assets}/svg/flip-horizontal.svg +0 -0
  896. /package/{src/assets → assets}/svg/flip-vertical.svg +0 -0
  897. /package/{src/assets → assets}/svg/floppy-save.svg +0 -0
  898. /package/{src/assets → assets}/svg/flywheel-mark-logo.svg +0 -0
  899. /package/{src/assets → assets}/svg/flywheel-viewer-mark-logo.svg +0 -0
  900. /package/{src/assets → assets}/svg/folder-add.svg +0 -0
  901. /package/{src/assets → assets}/svg/folder-blank.svg +0 -0
  902. /package/{src/assets → assets}/svg/folder-checked.svg +0 -0
  903. /package/{src/assets → assets}/svg/folder-group.svg +0 -0
  904. /package/{src/assets → assets}/svg/folder-open.svg +0 -0
  905. /package/{src/assets → assets}/svg/folder-share.svg +0 -0
  906. /package/{src/assets → assets}/svg/folders-copy-expand-arrow-down.svg +0 -0
  907. /package/{src/assets → assets}/svg/folders-copy-expand-arrow-up.svg +0 -0
  908. /package/{src/assets → assets}/svg/form-metadata-element.svg +0 -0
  909. /package/{src/assets → assets}/svg/free-rights.svg +0 -0
  910. /package/{src/assets → assets}/svg/freehand-vector-poly.svg +0 -0
  911. /package/{src/assets → assets}/svg/full-screen-zoom.svg +0 -0
  912. /package/{src/assets → assets}/svg/github-color-login.svg +0 -0
  913. /package/{src/assets → assets}/svg/gitlab.svg +0 -0
  914. /package/{src/assets → assets}/svg/graduate-hat.svg +0 -0
  915. /package/{src/assets → assets}/svg/grid-dot-square.svg +0 -0
  916. /package/{src/assets → assets}/svg/grid-layout.svg +0 -0
  917. /package/{src/assets → assets}/svg/hammer-legal-square.svg +0 -0
  918. /package/{src/assets → assets}/svg/hammer-screwdriver.svg +0 -0
  919. /package/{src/assets → assets}/svg/hand-money-currency.svg +0 -0
  920. /package/{src/assets → assets}/svg/header-form-element.svg +0 -0
  921. /package/{src/assets → assets}/svg/home-modern-door.svg +0 -0
  922. /package/{src/assets → assets}/svg/home-modern-option-lines.svg +0 -0
  923. /package/{src/assets → assets}/svg/human-artificial-intelligence.svg +0 -0
  924. /package/{src/assets → assets}/svg/icon-placeholder.svg +0 -0
  925. /package/{src/assets → assets}/svg/image-photo-copy-left-down.svg +0 -0
  926. /package/{src/assets → assets}/svg/image-picture-square.svg +0 -0
  927. /package/{src/assets → assets}/svg/information-circle.svg +0 -0
  928. /package/{src/assets → assets}/svg/invoice-checkmark-paid.svg +0 -0
  929. /package/{src/assets → assets}/svg/invoice.svg +0 -0
  930. /package/{src/assets → assets}/svg/italic.svg +0 -0
  931. /package/{src/assets → assets}/svg/items-group-elements.svg +0 -0
  932. /package/{src/assets → assets}/svg/key.svg +0 -0
  933. /package/{src/assets → assets}/svg/keyboard.svg +0 -0
  934. /package/{src/assets → assets}/svg/keychain.svg +0 -0
  935. /package/{src/assets → assets}/svg/label-tag.svg +0 -0
  936. /package/{src/assets → assets}/svg/laptop-health-medical-cross.svg +0 -0
  937. /package/{src/assets → assets}/svg/layers.svg +0 -0
  938. /package/{src/assets → assets}/svg/layout-grid.svg +0 -0
  939. /package/{src/assets → assets}/svg/layout.svg +0 -0
  940. /package/{src/assets → assets}/svg/line.svg +0 -0
  941. /package/{src/assets → assets}/svg/link-unlink.svg +0 -0
  942. /package/{src/assets → assets}/svg/link.svg +0 -0
  943. /package/{src/assets → assets}/svg/linkedin.svg +0 -0
  944. /package/{src/assets → assets}/svg/linux.svg +0 -0
  945. /package/{src/assets → assets}/svg/list-paragraph-number.svg +0 -0
  946. /package/{src/assets → assets}/svg/list-paragraph.svg +0 -0
  947. /package/{src/assets → assets}/svg/list-test-lab-flask.svg +0 -0
  948. /package/{src/assets → assets}/svg/livewire-tool.svg +0 -0
  949. /package/{src/assets → assets}/svg/loading-status-checkmark.svg +0 -0
  950. /package/{src/assets → assets}/svg/lock-unlock.svg +0 -0
  951. /package/{src/assets → assets}/svg/lock.svg +0 -0
  952. /package/{src/assets → assets}/svg/logout.svg +0 -0
  953. /package/{src/assets → assets}/svg/lung.svg +0 -0
  954. /package/{src/assets → assets}/svg/lungs.svg +0 -0
  955. /package/{src/assets → assets}/svg/markdown.svg +0 -0
  956. /package/{src/assets → assets}/svg/measure-angle.svg +0 -0
  957. /package/{src/assets → assets}/svg/measure-ruler-calibration.svg +0 -0
  958. /package/{src/assets → assets}/svg/media-library-imports-dowload.svg +0 -0
  959. /package/{src/assets → assets}/svg/menu-burger-handle.svg +0 -0
  960. /package/{src/assets → assets}/svg/menu-horizontal.svg +0 -0
  961. /package/{src/assets → assets}/svg/menu-list-form-square.svg +0 -0
  962. /package/{src/assets → assets}/svg/menu-vertical.svg +0 -0
  963. /package/{src/assets → assets}/svg/message-chat-info.svg +0 -0
  964. /package/{src/assets → assets}/svg/message-chat-question-support.svg +0 -0
  965. /package/{src/assets → assets}/svg/message-checkmark-sent.svg +0 -0
  966. /package/{src/assets → assets}/svg/message-question-checkmark.svg +0 -0
  967. /package/{src/assets → assets}/svg/microphone-mic-rec-circle.svg +0 -0
  968. /package/{src/assets → assets}/svg/microphone-mic-rec.svg +0 -0
  969. /package/{src/assets → assets}/svg/microphone-mic-recording-circle.svg +0 -0
  970. /package/{src/assets → assets}/svg/minus.svg +0 -0
  971. /package/{src/assets → assets}/svg/modalities.svg +0 -0
  972. /package/{src/assets → assets}/svg/molecule.svg +0 -0
  973. /package/{src/assets → assets}/svg/money-coin.svg +0 -0
  974. /package/{src/assets → assets}/svg/money-dollar.svg +0 -0
  975. /package/{src/assets → assets}/svg/money.svg +0 -0
  976. /package/{src/assets → assets}/svg/monitor-computer.svg +0 -0
  977. /package/{src/assets → assets}/svg/mouse-big.svg +0 -0
  978. /package/{src/assets → assets}/svg/move.svg +0 -0
  979. /package/{src/assets → assets}/svg/music-play-resume.svg +0 -0
  980. /package/{src/assets → assets}/svg/music-stop.svg +0 -0
  981. /package/{src/assets → assets}/svg/mute.svg +0 -0
  982. /package/{src/assets → assets}/svg/network-storage-alert.svg +0 -0
  983. /package/{src/assets → assets}/svg/notebook-add-plus.svg +0 -0
  984. /package/{src/assets → assets}/svg/notebook-open.svg +0 -0
  985. /package/{src/assets → assets}/svg/notebook-pen-edit.svg +0 -0
  986. /package/{src/assets → assets}/svg/notebook.svg +0 -0
  987. /package/{src/assets → assets}/svg/notes-pen.svg +0 -0
  988. /package/{src/assets → assets}/svg/object-search-zoom-plus.svg +0 -0
  989. /package/{src/assets → assets}/svg/open.svg +0 -0
  990. /package/{src/assets → assets}/svg/paint-roller.svg +0 -0
  991. /package/{src/assets → assets}/svg/pause.svg +0 -0
  992. /package/{src/assets → assets}/svg/pen-edit-circle.svg +0 -0
  993. /package/{src/assets → assets}/svg/pencil-edit-create.svg +0 -0
  994. /package/{src/assets → assets}/svg/photo-edit-brightness-invert.svg +0 -0
  995. /package/{src/assets → assets}/svg/pie-chart.svg +0 -0
  996. /package/{src/assets → assets}/svg/pie-graph-chart-sample.svg +0 -0
  997. /package/{src/assets → assets}/svg/plus-add-rectangle.svg +0 -0
  998. /package/{src/assets → assets}/svg/polygon.svg +0 -0
  999. /package/{src/assets → assets}/svg/private-mode-protection-circle.svg +0 -0
  1000. /package/{src/assets → assets}/svg/protection-target.svg +0 -0
  1001. /package/{src/assets → assets}/svg/protective-mask.svg +0 -0
  1002. /package/{src/assets → assets}/svg/question-circle.svg +0 -0
  1003. /package/{src/assets → assets}/svg/quote.svg +0 -0
  1004. /package/{src/assets → assets}/svg/radiology-scan-circle.svg +0 -0
  1005. /package/{src/assets → assets}/svg/radiology-scan.svg +0 -0
  1006. /package/{src/assets → assets}/svg/reader-studies.svg +0 -0
  1007. /package/{src/assets → assets}/svg/rotate-arrow-manual.svg +0 -0
  1008. /package/{src/assets → assets}/svg/rotate-item-left.svg +0 -0
  1009. /package/{src/assets → assets}/svg/rotate-item-right.svg +0 -0
  1010. /package/{src/assets → assets}/svg/rotate-refresh.svg +0 -0
  1011. /package/{src/assets → assets}/svg/rotate.svg +0 -0
  1012. /package/{src/assets → assets}/svg/ruler-bidirectional.svg +0 -0
  1013. /package/{src/assets → assets}/svg/ruler.svg +0 -0
  1014. /package/{src/assets → assets}/svg/scanner.svg +0 -0
  1015. /package/{src/assets → assets}/svg/search-loop.svg +0 -0
  1016. /package/{src/assets → assets}/svg/search-user-profile-person.svg +0 -0
  1017. /package/{src/assets → assets}/svg/search-zoom-minus.svg +0 -0
  1018. /package/{src/assets → assets}/svg/search-zoom-plus.svg +0 -0
  1019. /package/{src/assets → assets}/svg/search.svg +0 -0
  1020. /package/{src/assets → assets}/svg/section-form-element.svg +0 -0
  1021. /package/{src/assets → assets}/svg/send-message-share.svg +0 -0
  1022. /package/{src/assets → assets}/svg/server-checkmark.svg +0 -0
  1023. /package/{src/assets → assets}/svg/server-database-endpoint.svg +0 -0
  1024. /package/{src/assets → assets}/svg/server-databases-checkmark-user.svg +0 -0
  1025. /package/{src/assets → assets}/svg/server-databases-connect.svg +0 -0
  1026. /package/{src/assets → assets}/svg/server-databases-download.svg +0 -0
  1027. /package/{src/assets → assets}/svg/server-databases-key-protection.svg +0 -0
  1028. /package/{src/assets → assets}/svg/server-databases-minimal-download.svg +0 -0
  1029. /package/{src/assets → assets}/svg/server-databases-sync-import.svg +0 -0
  1030. /package/{src/assets → assets}/svg/server-databases-sync.svg +0 -0
  1031. /package/{src/assets → assets}/svg/server-upload.svg +0 -0
  1032. /package/{src/assets → assets}/svg/server.svg +0 -0
  1033. /package/{src/assets → assets}/svg/servers-database.svg +0 -0
  1034. /package/{src/assets → assets}/svg/setting-gear.svg +0 -0
  1035. /package/{src/assets → assets}/svg/settings-adjust.svg +0 -0
  1036. /package/{src/assets → assets}/svg/settings-gear-square.svg +0 -0
  1037. /package/{src/assets → assets}/svg/settings-gear.svg +0 -0
  1038. /package/{src/assets → assets}/svg/settings-select.svg +0 -0
  1039. /package/{src/assets → assets}/svg/shapes-objects.svg +0 -0
  1040. /package/{src/assets → assets}/svg/share.svg +0 -0
  1041. /package/{src/assets → assets}/svg/shield-protect.svg +0 -0
  1042. /package/{src/assets → assets}/svg/show-visible.svg +0 -0
  1043. /package/{src/assets → assets}/svg/smiley-emoji-face.svg +0 -0
  1044. /package/{src/assets → assets}/svg/speed-dashboard.svg +0 -0
  1045. /package/{src/assets → assets}/svg/square-fill-outline.svg +0 -0
  1046. /package/{src/assets → assets}/svg/square-fill.svg +0 -0
  1047. /package/{src/assets → assets}/svg/square-outline.svg +0 -0
  1048. /package/{src/assets → assets}/svg/star.svg +0 -0
  1049. /package/{src/assets → assets}/svg/stars-light-sparkle.svg +0 -0
  1050. /package/{src/assets → assets}/svg/stomach.svg +0 -0
  1051. /package/{src/assets → assets}/svg/stop-minus.svg +0 -0
  1052. /package/{src/assets → assets}/svg/substract-group.svg +0 -0
  1053. /package/{src/assets → assets}/svg/switch.svg +0 -0
  1054. /package/{src/assets → assets}/svg/target-space-object-select.svg +0 -0
  1055. /package/{src/assets → assets}/svg/target.svg +0 -0
  1056. /package/{src/assets → assets}/svg/tasklist-to-do-checkmark.svg +0 -0
  1057. /package/{src/assets → assets}/svg/technology-cube-3d.svg +0 -0
  1058. /package/{src/assets → assets}/svg/test-lab-flask.svg +0 -0
  1059. /package/{src/assets → assets}/svg/text-bold.svg +0 -0
  1060. /package/{src/assets → assets}/svg/text-cross.svg +0 -0
  1061. /package/{src/assets → assets}/svg/text-h1.svg +0 -0
  1062. /package/{src/assets → assets}/svg/text-h2.svg +0 -0
  1063. /package/{src/assets → assets}/svg/text-input-form.svg +0 -0
  1064. /package/{src/assets → assets}/svg/text-long.svg +0 -0
  1065. /package/{src/assets → assets}/svg/text-short-form-element.svg +0 -0
  1066. /package/{src/assets → assets}/svg/text-underline.svg +0 -0
  1067. /package/{src/assets → assets}/svg/thumbs-up-like.svg +0 -0
  1068. /package/{src/assets → assets}/svg/timer-clock-style.svg +0 -0
  1069. /package/{src/assets → assets}/svg/trash-delete.svg +0 -0
  1070. /package/{src/assets → assets}/svg/twitter.svg +0 -0
  1071. /package/{src/assets → assets}/svg/undone-uncheck-untracked.svg +0 -0
  1072. /package/{src/assets → assets}/svg/unlimited-repeat-subscription-circle.svg +0 -0
  1073. /package/{src/assets → assets}/svg/upload.svg +0 -0
  1074. /package/{src/assets → assets}/svg/user-checked.svg +0 -0
  1075. /package/{src/assets → assets}/svg/user-delete-cross.svg +0 -0
  1076. /package/{src/assets → assets}/svg/user-document.svg +0 -0
  1077. /package/{src/assets → assets}/svg/user-group.svg +0 -0
  1078. /package/{src/assets → assets}/svg/user-key.svg +0 -0
  1079. /package/{src/assets → assets}/svg/user-lock.svg +0 -0
  1080. /package/{src/assets → assets}/svg/user-profile-cards-pool.svg +0 -0
  1081. /package/{src/assets → assets}/svg/user-profile-group-discovery.svg +0 -0
  1082. /package/{src/assets → assets}/svg/user-setting-gear.svg +0 -0
  1083. /package/{src/assets → assets}/svg/user.svg +0 -0
  1084. /package/{src/assets → assets}/svg/video-player-controls.svg +0 -0
  1085. /package/{src/assets → assets}/svg/visible-eye-hidden.svg +0 -0
  1086. /package/{src/assets → assets}/svg/volume-full.svg +0 -0
  1087. /package/{src/assets → assets}/svg/warning-circle.svg +0 -0
  1088. /package/{src/assets → assets}/svg/warning.svg +0 -0
  1089. /package/{src/assets → assets}/svg/window-finder-resize-arrow-down.svg +0 -0
  1090. /package/{src/assets → assets}/svg/window-finder-resize-arrow-up.svg +0 -0
  1091. /package/{src/assets → assets}/svg/window-resize-left.svg +0 -0
  1092. /package/{src/assets → assets}/svg/window-resize-right.svg +0 -0
  1093. /package/{src/assets → assets}/svg/window-zoom-plus-loupe.svg +0 -0
  1094. /package/{src/assets → assets}/svg/windows.svg +0 -0
  1095. /package/{src/assets → assets}/svg/workspace-mode.svg +0 -0
  1096. /package/{src/assets → assets}/svg/youtube.svg +0 -0
  1097. /package/{src/assets → assets}/svg/zendesk-logo.svg +0 -0
  1098. /package/{src/global.scss → global.scss} +0 -0
  1099. /package/{src/public-api.ts → public-api.d.ts} +0 -0
  1100. /package/{src/public-api.scss → public-api.scss} +0 -0
  1101. /package/{src/scss → scss}/atoms/ghost.scss +0 -0
  1102. /package/{src/scss → scss}/atoms/scrollbar.scss +0 -0
  1103. /package/{src/scss → scss}/config/colors.scss +0 -0
  1104. /package/{src/scss → scss}/config/overlay.scss +0 -0
  1105. /package/{src/scss → scss}/config/shadows.scss +0 -0
  1106. /package/{src/scss → scss}/config/typography.scss +0 -0
  1107. /package/{src/scss → scss}/icons/_icon-font-face.scss +0 -0
  1108. /package/{src/scss → scss}/icons/_icon-glyphs.scss +0 -0
  1109. /package/{src/scss → scss}/icons/_icon-variables.scss +0 -0
  1110. /package/{src/scss → scss}/icons/icons.scss +0 -0
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwTabPanelComponent {
3
+ active: boolean;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTabPanelComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTabPanelComponent, "fw-tab-panel", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,17 @@
1
+ import { AfterContentInit, EventEmitter, OnDestroy, QueryList } from '@angular/core';
2
+ import { FwTabComponent } from './tab/tab.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FwTabsComponent implements AfterContentInit, OnDestroy {
5
+ activeTabIndex: number;
6
+ activeTab?: FwTabComponent;
7
+ bordered?: boolean;
8
+ select: EventEmitter<FwTabComponent>;
9
+ tabs: QueryList<FwTabComponent>;
10
+ get cssClass(): string;
11
+ private subscriptions;
12
+ ngOnDestroy(): void;
13
+ ngAfterContentInit(): void;
14
+ handleTabChange(tab: FwTabComponent): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTabsComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTabsComponent, "fw-tabs", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "activeTab": { "alias": "activeTab"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; }, { "select": "select"; }, ["tabs"], ["fw-tab", "*"], false, never>;
17
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tab/tab.component";
3
+ import * as i2 from "./tab-panel/tab-panel.component";
4
+ import * as i3 from "./tabs.component";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "../icon/icon.module";
7
+ export declare class FwTabsModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTabsModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwTabsModule, [typeof i1.FwTabComponent, typeof i2.FwTabPanelComponent, typeof i3.FwTabsComponent], [typeof i4.CommonModule, typeof i5.FwIconModule], [typeof i1.FwTabComponent, typeof i2.FwTabPanelComponent, typeof i3.FwTabsComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwTabsModule>;
11
+ }
@@ -0,0 +1,48 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import { ControlValueAccessor, FormControl } from '@angular/forms';
3
+ import { IconType } from '../icon/icon.types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FwTextInputComponent implements ControlValueAccessor {
6
+ disabled?: boolean;
7
+ useActionableIcons?: boolean;
8
+ leftIcon?: IconType;
9
+ rightIcon?: string;
10
+ prefix?: string;
11
+ context?: string;
12
+ /**
13
+ * @deprecated please use fw-wrapped-input instead
14
+ */
15
+ helperText?: string;
16
+ /**
17
+ * @deprecated please use fw-wrapped-input instead
18
+ */
19
+ errorText?: string;
20
+ placeholder?: string;
21
+ readOnly?: boolean;
22
+ size?: 'small' | 'medium' | 'large';
23
+ type?: string;
24
+ maxLength?: number;
25
+ autofocus?: boolean;
26
+ autocomplete?: string;
27
+ value: string;
28
+ inputRef: ElementRef<HTMLInputElement>;
29
+ error?: boolean;
30
+ leftIconAction: EventEmitter<void>;
31
+ rightIconAction: EventEmitter<void>;
32
+ textInput: any;
33
+ width: string;
34
+ externalControl: FormControl;
35
+ onTouch: () => void;
36
+ onChange: (value: string) => void;
37
+ writeValue(obj: string): void;
38
+ registerOnChange(fn: any): void;
39
+ registerOnTouched(fn: any): void;
40
+ setDisabledState(isDisabled: boolean): void;
41
+ changeHandler(event: KeyboardEvent): void;
42
+ blurHandler(): void;
43
+ onLeftIconClick(): void;
44
+ onRightIconClick(): void;
45
+ focus(): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTextInputComponent, "fw-text-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "useActionableIcons": { "alias": "useActionableIcons"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "prefix": { "alias": "prefix"; "required": false; }; "context": { "alias": "context"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "leftIconAction": "leftIconAction"; "rightIconAction": "rightIconAction"; }, ["textInput"], ["input", "*"], false, never>;
48
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./text-input.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../icon/icon.module";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class FwTextInputModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTextInputModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwTextInputModule, [typeof i1.FwTextInputComponent], [typeof i2.CommonModule, typeof i3.FwIconModule, typeof i4.ReactiveFormsModule], [typeof i1.FwTextInputComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwTextInputModule>;
10
+ }
@@ -0,0 +1,34 @@
1
+ import { ControlValueAccessor, FormControl } from '@angular/forms';
2
+ import { min } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FwTextAreaInputComponent implements ControlValueAccessor {
5
+ minRows: number;
6
+ maxRows: number;
7
+ disabled?: boolean;
8
+ /**
9
+ * @deprecated please use fw-wrapped-input instead
10
+ */
11
+ helperText?: string;
12
+ /**
13
+ * @deprecated please use fw-wrapped-input instead
14
+ */
15
+ errorText?: string;
16
+ placeholder?: string;
17
+ readOnly?: boolean;
18
+ autofocus?: string;
19
+ width?: string;
20
+ error?: boolean;
21
+ value: string;
22
+ externalControl: FormControl;
23
+ onTouch: () => void;
24
+ onChange: (value: string) => void;
25
+ writeValue(obj: string): void;
26
+ registerOnChange(fn: any): void;
27
+ registerOnTouched(fn: any): void;
28
+ setDisabledState(isDisabled: boolean): void;
29
+ changeHandler(event: KeyboardEvent): void;
30
+ blurHandler(): void;
31
+ protected readonly min: typeof min;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTextAreaInputComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTextAreaInputComponent, "fw-textarea-input", never, { "minRows": { "alias": "minRows"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "width": { "alias": "width"; "required": false; }; "error": { "alias": "error"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
34
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./textarea-input.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@angular/cdk/text-field";
6
+ import * as i5 from "../icon/icon.module";
7
+ export declare class FwTextAreaInputModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTextAreaInputModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwTextAreaInputModule, [typeof i1.FwTextAreaInputComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.TextFieldModule, typeof i5.FwIconModule], [typeof i1.FwTextAreaInputComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwTextAreaInputModule>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FwTooltipPanelComponent {
4
+ position: 'above' | 'below' | 'left' | 'right' | 'none';
5
+ color?: 'light' | 'dark';
6
+ maxWidth?: number;
7
+ mouseLeave: EventEmitter<MouseEvent>;
8
+ get classes(): string;
9
+ hidePopover(e: MouseEvent): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipPanelComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipPanelComponent, "fw-tooltip-panel", never, { "position": { "alias": "position"; "required": false; }; "color": { "alias": "color"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, { "mouseLeave": "mouseLeave"; }, never, ["*"], false, never>;
12
+ }
@@ -0,0 +1,17 @@
1
+ import { CdkOverlayOrigin, ConnectedPosition, FlexibleConnectedPositionStrategyOrigin } from '@angular/cdk/overlay';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FwTooltipComponent {
4
+ title: string;
5
+ color: 'light' | 'dark';
6
+ position: 'above' | 'below' | 'left' | 'right' | 'none';
7
+ maxWidth?: number;
8
+ fullWidth?: boolean;
9
+ isOpen: boolean;
10
+ trigger: CdkOverlayOrigin | FlexibleConnectedPositionStrategyOrigin;
11
+ get classes(): string;
12
+ positionMap: {
13
+ [key: string]: ConnectedPosition;
14
+ };
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwTooltipComponent, "fw-tooltip", never, { "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; "position": { "alias": "position"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
17
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tooltip.component";
3
+ import * as i2 from "./tooltip-panel/tooltip-panel.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../popover/popover.module";
6
+ import * as i5 from "@angular/cdk/overlay";
7
+ export declare class FwTooltipModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwTooltipModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwTooltipModule, [typeof i1.FwTooltipComponent, typeof i2.FwTooltipPanelComponent], [typeof i3.CommonModule, typeof i4.FwPopoverModule, typeof i5.OverlayModule], [typeof i1.FwTooltipComponent, typeof i2.FwTooltipPanelComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwTooltipModule>;
11
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FwWrappedInputComponent {
3
+ title: string;
4
+ description?: string;
5
+ helperText?: string;
6
+ errorText?: string;
7
+ class: boolean;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwWrappedInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<FwWrappedInputComponent, "fw-wrapped-input", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; }, {}, never, ["fw-form-heading", "fw-button-toggle, fw-date-input, fw-text-input, fw-number-input, fw-phone-input, fw-textarea-input, fw-select, fw-multi-select, fw-checkbox"], false, never>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./wrapped-input.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../form-heading/form-heading.module";
5
+ export declare class FwWrappedInputModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FwWrappedInputModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FwWrappedInputModule, [typeof i1.FwWrappedInputComponent], [typeof i2.CommonModule, typeof i3.FwFormHeadingModule], [typeof i1.FwWrappedInputComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<FwWrappedInputModule>;
9
+ }
@@ -0,0 +1,14 @@
1
+ import { CdkMenuTrigger } from '@angular/cdk/menu';
2
+ import { OnDestroy, OnInit } from '@angular/core';
3
+ import { MenuManagerService } from '../components/shared/services/menu-manager.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MenuRegisterDirective implements OnInit, OnDestroy {
6
+ private trigger;
7
+ private menuManager;
8
+ constructor(trigger: CdkMenuTrigger, menuManager: MenuManagerService);
9
+ private onClick;
10
+ ngOnInit(): void;
11
+ ngOnDestroy(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuRegisterDirective, [{ optional: true; host: true; }, { optional: true; }]>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MenuRegisterDirective, "[fwMenuRegister]", never, {}, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1,45 @@
1
+ const accesibilityPallete = [
2
+ '#00c0cb',
3
+ '#ffff00',
4
+ '#00ff00',
5
+ '#80d8c7',
6
+ '#ffff80',
7
+ '#80ff80',
8
+ '#00ff00',
9
+ '#ffe0b0',
10
+ '#c0ffc0',
11
+ '#80c0ff',
12
+ '#ff8000',
13
+ '#80d8c7',
14
+ '#b080ff',
15
+ '#ffc080',
16
+ '#c0ffc0',
17
+ '#ff69b4',
18
+ '#fff0d0',
19
+ '#ff8080',
20
+ '#ff6040',
21
+ '#40e0e0',
22
+ '#ff6930',
23
+ '#ffc0c0',
24
+ '#80e0e0',
25
+ '#ff8000',
26
+ '#c0f0f0',
27
+ '#ffc000',
28
+ '#ffb0c0',
29
+ '#b0d0ff',
30
+ '#f0f0c0',
31
+ '#ffc0e0',
32
+ '#d0e0ff',
33
+ ];
34
+ export const hashCode = (str) => {
35
+ let hash = 0;
36
+ for (let i = 0; i < str.length; i++) {
37
+ hash = str.charCodeAt(i) + ((hash << 5) - hash);
38
+ }
39
+ return Math.abs(hash);
40
+ };
41
+ export const pickColorViaHash = (seed = '') => {
42
+ const hash = hashCode(seed);
43
+ return accesibilityPallete[hash % (accesibilityPallete.length - 1)];
44
+ };
45
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3IudXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29sb3IudXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsTUFBTSxtQkFBbUIsR0FBRztJQUMxQixTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0lBQ1QsU0FBUztJQUNULFNBQVM7SUFDVCxTQUFTO0NBQ1YsQ0FBQTtBQUVELE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRyxDQUFDLEdBQVcsRUFBVSxFQUFFO0lBQzlDLElBQUksSUFBSSxHQUFHLENBQUMsQ0FBQztJQUNiLEtBQUssSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxHQUFHLENBQUMsTUFBTSxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUM7UUFDcEMsSUFBSSxHQUFHLEdBQUcsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQztJQUNsRCxDQUFDO0lBQ0QsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO0FBQ3hCLENBQUMsQ0FBQTtBQUVELE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLENBQUMsSUFBSSxHQUFHLEVBQUUsRUFBVSxFQUFFO0lBQ3BELE1BQU0sSUFBSSxHQUFHLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM1QixPQUFPLG1CQUFtQixDQUFDLElBQUksR0FBRyxDQUFDLG1CQUFtQixDQUFDLE1BQU0sR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFBO0FBQ3JFLENBQUMsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbIlxuY29uc3QgYWNjZXNpYmlsaXR5UGFsbGV0ZSA9IFtcbiAgJyMwMGMwY2InLFxuICAnI2ZmZmYwMCcsXG4gICcjMDBmZjAwJyxcbiAgJyM4MGQ4YzcnLFxuICAnI2ZmZmY4MCcsXG4gICcjODBmZjgwJyxcbiAgJyMwMGZmMDAnLFxuICAnI2ZmZTBiMCcsXG4gICcjYzBmZmMwJyxcbiAgJyM4MGMwZmYnLFxuICAnI2ZmODAwMCcsXG4gICcjODBkOGM3JyxcbiAgJyNiMDgwZmYnLFxuICAnI2ZmYzA4MCcsXG4gICcjYzBmZmMwJyxcbiAgJyNmZjY5YjQnLFxuICAnI2ZmZjBkMCcsXG4gICcjZmY4MDgwJyxcbiAgJyNmZjYwNDAnLFxuICAnIzQwZTBlMCcsXG4gICcjZmY2OTMwJyxcbiAgJyNmZmMwYzAnLFxuICAnIzgwZTBlMCcsXG4gICcjZmY4MDAwJyxcbiAgJyNjMGYwZjAnLFxuICAnI2ZmYzAwMCcsXG4gICcjZmZiMGMwJyxcbiAgJyNiMGQwZmYnLFxuICAnI2YwZjBjMCcsXG4gICcjZmZjMGUwJyxcbiAgJyNkMGUwZmYnLFxuXVxuXG5leHBvcnQgY29uc3QgaGFzaENvZGUgPSAoc3RyOiBzdHJpbmcpOiBudW1iZXIgPT4ge1xuICBsZXQgaGFzaCA9IDA7XG4gIGZvciAobGV0IGkgPSAwOyBpIDwgc3RyLmxlbmd0aDsgaSsrKSB7XG4gICAgaGFzaCA9IHN0ci5jaGFyQ29kZUF0KGkpICsgKChoYXNoIDw8IDUpIC0gaGFzaCk7XG4gIH1cbiAgcmV0dXJuIE1hdGguYWJzKGhhc2gpO1xufVxuXG5leHBvcnQgY29uc3QgcGlja0NvbG9yVmlhSGFzaCA9IChzZWVkID0gJycpOiBzdHJpbmcgPT4ge1xuICBjb25zdCBoYXNoID0gaGFzaENvZGUoc2VlZCk7XG4gIHJldHVybiBhY2Nlc2liaWxpdHlQYWxsZXRlW2hhc2ggJSAoYWNjZXNpYmlsaXR5UGFsbGV0ZS5sZW5ndGggLSAxKV1cbn1cbiJdfQ==
@@ -0,0 +1,34 @@
1
+ import { Component, EventEmitter, Input, Output } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "../icon/icon.component";
5
+ import * as i3 from "../icon-button/icon-button.component";
6
+ export class FwAlertComponent {
7
+ constructor() {
8
+ this.severity = 'info';
9
+ this.variant = 'standard';
10
+ // eslint-disable-next-line @angular-eslint/no-output-native
11
+ this.close = new EventEmitter();
12
+ }
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
14
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwAlertComponent, selector: "fw-alert", inputs: { description: "description", icon: "icon", severity: "severity", title: "title", variant: "variant", showClose: "showClose" }, outputs: { close: "close" }, ngImport: i0, template: "<div [ngClass]=\"['fw-alert', variant, severity]\">\n <fw-icon *ngIf=\"icon\" class=\"fw-alert-icon\">{{ icon }}</fw-icon>\n <div class=\"fw-alert-text\">\n <h4 *ngIf=\"title\" class=\"vision-h4\">{{ title }}</h4>\n <p *ngIf=\"description\" class=\"vision-p2\">{{ description }}</p>\n <p class=\"vision-p2\">\n <ng-content></ng-content>\n </p>\n </div>\n <div class=\"close-icon\">\n <ng-content select=\"fw-button\"></ng-content>\n <fw-icon-button\n *ngIf=\"showClose\"\n icon=\"close\" size=\"small\"\n [color]=\"variant==='filled'?'overlay':severity\"\n (click)=\"close?close.emit():undefined\">\n </fw-icon-button>\n </div>\n</div>\n", styles: [".fw-alert{border-radius:8px;padding:6px 16px;display:flex;box-sizing:border-box;min-height:48px}.fw-alert .fw-alert-icon{padding:7px 12px 7px 0;align-items:flex-start;font-size:22px}.fw-alert .fw-alert-text{padding:6px 0;flex:1;display:flex;flex-direction:column;justify-items:center}.fw-alert h4{margin:3px 0;color:var(--typography-contrast)}.fw-alert p{margin:3px 0 0;color:inherit;font-size:12px;font-weight:400;line-height:16.8px}.fw-alert .close-icon{display:flex;align-items:flex-start;margin-left:16px;gap:16px;margin-top:4px;height:30px}.fw-alert .close-icon:empty{display:none}.fw-alert.standard.info{color:var(--primary-base);background-color:var(--primary-hover);border:1px solid var(--primary-border)}.fw-alert.standard.info h4{color:var(--primary-base)}.fw-alert.standard.warning{color:var(--orange-base);background-color:var(--orange-hover);border:1px solid var(--orange-border)}.fw-alert.standard.warning h4{color:var(--orange-base)}.fw-alert.standard.success{color:var(--green-base);background-color:var(--green-hover);border:1px solid var(--green-border)}.fw-alert.standard.success h4{color:var(--green-base)}.fw-alert.standard.error{color:var(--red-base);background-color:var(--red-hover);border:1px solid var(--red-border)}.fw-alert.standard.error h4{color:var(--red-base)}.fw-alert.outlined.info{color:var(--primary-base);border:1px solid var(--primary-base)}.fw-alert.outlined.info h4{color:var(--primary-base)}.fw-alert.outlined.warning{color:var(--orange-base);border:1px solid var(--orange-base)}.fw-alert.outlined.warning h4{color:var(--orange-base)}.fw-alert.outlined.success{color:var(--green-base);border:1px solid var(--green-base)}.fw-alert.outlined.success h4{color:var(--green-base)}.fw-alert.outlined.error{color:var(--red-base);border:1px solid var(--red-base)}.fw-alert.outlined.error h4{color:var(--red-base)}.fw-alert.filled.info{color:var(--typography-contrast);background-color:var(--primary-base)}.fw-alert.filled.warning{color:var(--typography-contrast);background-color:var(--orange-base)}.fw-alert.filled.success{color:var(--typography-contrast);background-color:var(--green-base)}.fw-alert.filled.error{color:var(--typography-contrast);background-color:var(--red-base)}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }, { kind: "component", type: i3.FwIconButtonComponent, selector: "fw-icon-button", inputs: ["color", "icon", "size", "disabled", "selected"] }] }); }
15
+ }
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertComponent, decorators: [{
17
+ type: Component,
18
+ args: [{ selector: 'fw-alert', template: "<div [ngClass]=\"['fw-alert', variant, severity]\">\n <fw-icon *ngIf=\"icon\" class=\"fw-alert-icon\">{{ icon }}</fw-icon>\n <div class=\"fw-alert-text\">\n <h4 *ngIf=\"title\" class=\"vision-h4\">{{ title }}</h4>\n <p *ngIf=\"description\" class=\"vision-p2\">{{ description }}</p>\n <p class=\"vision-p2\">\n <ng-content></ng-content>\n </p>\n </div>\n <div class=\"close-icon\">\n <ng-content select=\"fw-button\"></ng-content>\n <fw-icon-button\n *ngIf=\"showClose\"\n icon=\"close\" size=\"small\"\n [color]=\"variant==='filled'?'overlay':severity\"\n (click)=\"close?close.emit():undefined\">\n </fw-icon-button>\n </div>\n</div>\n", styles: [".fw-alert{border-radius:8px;padding:6px 16px;display:flex;box-sizing:border-box;min-height:48px}.fw-alert .fw-alert-icon{padding:7px 12px 7px 0;align-items:flex-start;font-size:22px}.fw-alert .fw-alert-text{padding:6px 0;flex:1;display:flex;flex-direction:column;justify-items:center}.fw-alert h4{margin:3px 0;color:var(--typography-contrast)}.fw-alert p{margin:3px 0 0;color:inherit;font-size:12px;font-weight:400;line-height:16.8px}.fw-alert .close-icon{display:flex;align-items:flex-start;margin-left:16px;gap:16px;margin-top:4px;height:30px}.fw-alert .close-icon:empty{display:none}.fw-alert.standard.info{color:var(--primary-base);background-color:var(--primary-hover);border:1px solid var(--primary-border)}.fw-alert.standard.info h4{color:var(--primary-base)}.fw-alert.standard.warning{color:var(--orange-base);background-color:var(--orange-hover);border:1px solid var(--orange-border)}.fw-alert.standard.warning h4{color:var(--orange-base)}.fw-alert.standard.success{color:var(--green-base);background-color:var(--green-hover);border:1px solid var(--green-border)}.fw-alert.standard.success h4{color:var(--green-base)}.fw-alert.standard.error{color:var(--red-base);background-color:var(--red-hover);border:1px solid var(--red-border)}.fw-alert.standard.error h4{color:var(--red-base)}.fw-alert.outlined.info{color:var(--primary-base);border:1px solid var(--primary-base)}.fw-alert.outlined.info h4{color:var(--primary-base)}.fw-alert.outlined.warning{color:var(--orange-base);border:1px solid var(--orange-base)}.fw-alert.outlined.warning h4{color:var(--orange-base)}.fw-alert.outlined.success{color:var(--green-base);border:1px solid var(--green-base)}.fw-alert.outlined.success h4{color:var(--green-base)}.fw-alert.outlined.error{color:var(--red-base);border:1px solid var(--red-base)}.fw-alert.outlined.error h4{color:var(--red-base)}.fw-alert.filled.info{color:var(--typography-contrast);background-color:var(--primary-base)}.fw-alert.filled.warning{color:var(--typography-contrast);background-color:var(--orange-base)}.fw-alert.filled.success{color:var(--typography-contrast);background-color:var(--green-base)}.fw-alert.filled.error{color:var(--typography-contrast);background-color:var(--red-base)}\n"] }]
19
+ }], propDecorators: { description: [{
20
+ type: Input
21
+ }], icon: [{
22
+ type: Input
23
+ }], severity: [{
24
+ type: Input
25
+ }], title: [{
26
+ type: Input
27
+ }], variant: [{
28
+ type: Input
29
+ }], showClose: [{
30
+ type: Input
31
+ }], close: [{
32
+ type: Output
33
+ }] } });
34
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQvYWxlcnQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQvYWxlcnQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFTdkUsTUFBTSxPQUFPLGdCQUFnQjtJQUw3QjtRQVFXLGFBQVEsR0FBOEMsTUFBTSxDQUFDO1FBRTdELFlBQU8sR0FBd0MsVUFBVSxDQUFDO1FBRW5FLDREQUE0RDtRQUNsRCxVQUFLLEdBQXVCLElBQUksWUFBWSxFQUFRLENBQUM7S0FDaEU7K0dBVFksZ0JBQWdCO21HQUFoQixnQkFBZ0IscU5DVDdCLGtyQkFtQkE7OzRGRFZhLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDRSxVQUFVOzhCQUtYLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUVJLEtBQUs7c0JBQWQsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEljb25UeXBlIH0gZnJvbSAnLi4vaWNvbi9pY29uLnR5cGVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZnctYWxlcnQnLFxuICB0ZW1wbGF0ZVVybDogJy4vYWxlcnQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hbGVydC5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBGd0FsZXJ0Q29tcG9uZW50IHtcbiAgQElucHV0KCkgZGVzY3JpcHRpb24/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGljb24/OiBJY29uVHlwZTtcbiAgQElucHV0KCkgc2V2ZXJpdHk/OiAnaW5mbycgfCAnc3VjY2VzcycgfCAnd2FybmluZycgfCAnZXJyb3InID0gJ2luZm8nO1xuICBASW5wdXQoKSB0aXRsZT86IHN0cmluZztcbiAgQElucHV0KCkgdmFyaWFudD86ICdzdGFuZGFyZCcgfCAnb3V0bGluZWQnIHwgJ2ZpbGxlZCcgPSAnc3RhbmRhcmQnO1xuICBASW5wdXQoKSBzaG93Q2xvc2U/OiBib29sZWFuO1xuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLW91dHB1dC1uYXRpdmVcbiAgQE91dHB1dCgpIGNsb3NlOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XG59XG4iLCI8ZGl2IFtuZ0NsYXNzXT1cIlsnZnctYWxlcnQnLCB2YXJpYW50LCBzZXZlcml0eV1cIj5cbiAgPGZ3LWljb24gKm5nSWY9XCJpY29uXCIgY2xhc3M9XCJmdy1hbGVydC1pY29uXCI+e3sgaWNvbiB9fTwvZnctaWNvbj5cbiAgPGRpdiBjbGFzcz1cImZ3LWFsZXJ0LXRleHRcIj5cbiAgICA8aDQgKm5nSWY9XCJ0aXRsZVwiIGNsYXNzPVwidmlzaW9uLWg0XCI+e3sgdGl0bGUgfX08L2g0PlxuICAgIDxwICpuZ0lmPVwiZGVzY3JpcHRpb25cIiBjbGFzcz1cInZpc2lvbi1wMlwiPnt7IGRlc2NyaXB0aW9uIH19PC9wPlxuICAgIDxwIGNsYXNzPVwidmlzaW9uLXAyXCI+XG4gICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG4gICAgPC9wPlxuICA8L2Rpdj5cbiAgPGRpdiBjbGFzcz1cImNsb3NlLWljb25cIj5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJmdy1idXR0b25cIj48L25nLWNvbnRlbnQ+XG4gICAgPGZ3LWljb24tYnV0dG9uXG4gICAgICAqbmdJZj1cInNob3dDbG9zZVwiXG4gICAgICBpY29uPVwiY2xvc2VcIiBzaXplPVwic21hbGxcIlxuICAgICAgW2NvbG9yXT1cInZhcmlhbnQ9PT0nZmlsbGVkJz8nb3ZlcmxheSc6c2V2ZXJpdHlcIlxuICAgICAgKGNsaWNrKT1cImNsb3NlP2Nsb3NlLmVtaXQoKTp1bmRlZmluZWRcIj5cbiAgICA8L2Z3LWljb24tYnV0dG9uPlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
@@ -0,0 +1,32 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { FwIconModule } from '../icon/icon.module';
4
+ import { FwIconButtonModule } from '../icon-button/icon-button.module';
5
+ import { FwAlertComponent } from './alert.component';
6
+ import * as i0 from "@angular/core";
7
+ export class FwAlertModule {
8
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
9
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, declarations: [FwAlertComponent], imports: [CommonModule,
10
+ FwIconModule,
11
+ FwIconButtonModule], exports: [FwAlertComponent] }); }
12
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, imports: [CommonModule,
13
+ FwIconModule,
14
+ FwIconButtonModule] }); }
15
+ }
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAlertModule, decorators: [{
17
+ type: NgModule,
18
+ args: [{
19
+ imports: [
20
+ CommonModule,
21
+ FwIconModule,
22
+ FwIconButtonModule,
23
+ ],
24
+ exports: [
25
+ FwAlertComponent,
26
+ ],
27
+ declarations: [
28
+ FwAlertComponent,
29
+ ],
30
+ }]
31
+ }] });
32
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYWxlcnQvYWxlcnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7QUFlckQsTUFBTSxPQUFPLGFBQWE7K0dBQWIsYUFBYTtnSEFBYixhQUFhLGlCQUhsQixnQkFBZ0IsYUFSaEIsWUFBWTtZQUNaLFlBQVk7WUFDWixrQkFBa0IsYUFHbEIsZ0JBQWdCO2dIQU1YLGFBQWEsWUFYbEIsWUFBWTtZQUNaLFlBQVk7WUFDWixrQkFBa0I7OzRGQVNiLGFBQWE7a0JBYnpCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFO3dCQUNMLFlBQVk7d0JBQ1osWUFBWTt3QkFDWixrQkFBa0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRTt3QkFDTCxnQkFBZ0I7cUJBQ25CO29CQUNELFlBQVksRUFBRTt3QkFDVixnQkFBZ0I7cUJBQ25CO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZ3SWNvbk1vZHVsZSB9IGZyb20gJy4uL2ljb24vaWNvbi5tb2R1bGUnO1xuaW1wb3J0IHsgRndJY29uQnV0dG9uTW9kdWxlIH0gZnJvbSAnLi4vaWNvbi1idXR0b24vaWNvbi1idXR0b24ubW9kdWxlJztcbmltcG9ydCB7IEZ3QWxlcnRDb21wb25lbnQgfSBmcm9tICcuL2FsZXJ0LmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIEZ3SWNvbk1vZHVsZSxcbiAgICAgICAgRndJY29uQnV0dG9uTW9kdWxlLFxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBGd0FsZXJ0Q29tcG9uZW50LFxuICAgIF0sXG4gICAgZGVjbGFyYXRpb25zOiBbXG4gICAgICAgIEZ3QWxlcnRDb21wb25lbnQsXG4gICAgXSxcbn0pXG5leHBvcnQgY2xhc3MgRndBbGVydE1vZHVsZSB7XG59XG4iXX0=
@@ -0,0 +1,63 @@
1
+ import { Component, HostBinding, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "../icon/icon.component";
5
+ export class FwAppIconComponent {
6
+ constructor() {
7
+ this.color = 'primary';
8
+ this.fontColor = 'contrast';
9
+ this.size = 'medium';
10
+ this.variant = 'interactive';
11
+ this.tabindex = '';
12
+ this.locked = false;
13
+ this.animated = false;
14
+ this.role = 'button';
15
+ }
16
+ get cssClass() {
17
+ return ['fw-app-icon', this.size, this.color, this.variant].join(' ');
18
+ }
19
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
20
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: FwAppIconComponent, selector: "fw-app-icon", inputs: { title: "title", icon: "icon", imageUrl: "imageUrl", color: "color", fontColor: "fontColor", size: "size", variant: "variant", badge: "badge", tabindex: "tabindex", locked: "locked", animated: "animated" }, host: { properties: { "tabindex": "this.tabindex", "class.locked": "this.locked", "class.animated": "this.animated", "role": "this.role", "class": "this.cssClass" } }, ngImport: i0, template: "<div class=\"icon-highlight\"></div>\n<div class=\"icon-wrapper\">\n <div class=\"app-badge\" *ngIf=\"badge\"><span>{{ badge }}</span></div>\n <div class=\"app-locked\" *ngIf=\"locked\">\n <fw-icon>lock</fw-icon>\n </div>\n <img *ngIf=\"imageUrl\" [src]=\"imageUrl\" alt=\"App Icon\">\n <fw-icon *ngIf=\"icon\" [ngClass]=\"fontColor\">{{ icon }}</fw-icon>\n</div>\n<p class=\"vision-p3\" *ngIf=\"title\">{{ title }}</p>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large{box-shadow:0 5px 15px #0000001a}.vision-shadow-medium,:host .app-locked{box-shadow:0 2px 5px #0000001a}.vision-shadow-small,:host .app-badge{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}:host{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;position:relative;outline:none}:host .icon-highlight{box-sizing:content-box;display:inline-flex;border:4px solid transparent;padding:2px;position:absolute;top:0}:host .icon-wrapper{display:inline-flex;align-items:center;justify-content:center;-webkit-user-select:none;user-select:none;position:relative;box-sizing:border-box;margin:6px}:host p{margin:0;line-height:16.8px;-webkit-user-select:none;user-select:none;display:inline-block;color:var(--typography-muted);text-align:center}:host .app-badge{min-width:18px;height:18px;border-radius:64px;background:var(--red-base);font-family:Inter,sans-serif;font-size:10px;font-weight:500;line-height:180%;letter-spacing:0;text-align:center;color:var(--typography-contrast);display:inline-flex;align-items:flex-start;justify-content:center;position:absolute;top:-8px;right:-8px;padding:0 6px;box-sizing:border-box;overflow:hidden;white-space:nowrap}:host .app-locked{width:21px;height:21px;border-radius:64px;background:var(--slate-base);font-size:15px;color:var(--typography-contrast);display:inline-flex;align-items:center;justify-content:center;position:absolute;top:-6px;right:-6px;overflow:hidden;white-space:nowrap}:host.primary .icon-wrapper{background-color:var(--primary-base)}:host.primary .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.primary .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.primary .icon-wrapper>fw-icon.transparent{color:transparent}:host.dark .icon-wrapper{background-color:var(--primary-dark)}:host.dark .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.dark .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.gradient .icon-wrapper{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%)}:host.gradient .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.gradient .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.light .icon-wrapper{background-color:var(--page-light);outline:1px solid var(--separations-base)}:host.light .icon-wrapper>fw-icon{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}:host.transparent .icon-wrapper{background-color:transparent;outline:1px solid transparent}:host.small .icon-highlight{border-radius:12px;width:24px;height:24px}:host.small .icon-wrapper{display:inline-flex;width:24px;height:24px;border-radius:6px;align-items:center;justify-content:center}:host.small .icon-wrapper>fw-icon{font-size:16px;width:16px;min-width:16px}:host.small .icon-wrapper img{height:24px;width:24px}:host.small .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.medium .icon-highlight{border-radius:14px;width:32px;height:32px}:host.medium .icon-wrapper{display:inline-flex;width:32px;height:32px;border-radius:8px;align-items:center;justify-content:center}:host.medium .icon-wrapper>fw-icon{font-size:20px;width:20px;min-width:20px}:host.medium .icon-wrapper img{height:32px;width:32px}:host.medium .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.large .icon-highlight{border-radius:18px;width:48px;height:48px}:host.large .icon-wrapper{display:inline-flex;width:48px;height:48px;border-radius:12px;align-items:center;justify-content:center}:host.large .icon-wrapper>fw-icon{font-size:32px;width:32px;min-width:32px}:host.large .icon-wrapper img{height:48px;width:48px}:host.extra-large .icon-highlight{border-radius:22px;width:64px;height:64px}:host.extra-large .icon-wrapper{display:inline-flex;width:64px;height:64px;border-radius:16px;align-items:center;justify-content:center}:host.extra-large .icon-wrapper>fw-icon{font-size:48px;width:48px;min-width:48px}:host.extra-large .icon-wrapper img{height:64px;width:64px}:host.extra-large p{max-width:64px}:host.interactive .icon-highlight{border:4px solid transparent}:host.hover .icon-highlight,:host:hover .icon-highlight{border:4px solid var(--primary-border)}@keyframes rubber-band{0%{transform:scale(.95)}20%{transform:scale(1.05)}32%{transform:scale(.95)}48%{transform:scale(1)}}:host.animated.hover .icon-highlight,:host.animated:hover .icon-highlight{animation:rubber-band .5s linear forwards;border:4px solid var(--primary-border)}:host.focused .icon-highlight,:host:focus .icon-highlight,:host.animated:focus .icon-highlight{border:4px solid var(--primary-base)}:host.focused p,:host:focus p,:host.animated:focus p{color:var(--typography-base)}:host.static .icon-highlight,:host.static:hover .icon-highlight,:host.static.animated:hover .icon-highlight{border:4px solid transparent}:host.locked{pointer-events:none}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }] }); }
21
+ }
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconComponent, decorators: [{
23
+ type: Component,
24
+ args: [{ selector: 'fw-app-icon', template: "<div class=\"icon-highlight\"></div>\n<div class=\"icon-wrapper\">\n <div class=\"app-badge\" *ngIf=\"badge\"><span>{{ badge }}</span></div>\n <div class=\"app-locked\" *ngIf=\"locked\">\n <fw-icon>lock</fw-icon>\n </div>\n <img *ngIf=\"imageUrl\" [src]=\"imageUrl\" alt=\"App Icon\">\n <fw-icon *ngIf=\"icon\" [ngClass]=\"fontColor\">{{ icon }}</fw-icon>\n</div>\n<p class=\"vision-p3\" *ngIf=\"title\">{{ title }}</p>\n", styles: [".vision-shadow-extra-large{box-shadow:0 8px 25px #0000001a}.vision-shadow-large{box-shadow:0 5px 15px #0000001a}.vision-shadow-medium,:host .app-locked{box-shadow:0 2px 5px #0000001a}.vision-shadow-small,:host .app-badge{box-shadow:0 1px 2px #0000000d}.vision-shadow-inner{box-shadow:0 2px 4px #00000014 inset}:host{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;position:relative;outline:none}:host .icon-highlight{box-sizing:content-box;display:inline-flex;border:4px solid transparent;padding:2px;position:absolute;top:0}:host .icon-wrapper{display:inline-flex;align-items:center;justify-content:center;-webkit-user-select:none;user-select:none;position:relative;box-sizing:border-box;margin:6px}:host p{margin:0;line-height:16.8px;-webkit-user-select:none;user-select:none;display:inline-block;color:var(--typography-muted);text-align:center}:host .app-badge{min-width:18px;height:18px;border-radius:64px;background:var(--red-base);font-family:Inter,sans-serif;font-size:10px;font-weight:500;line-height:180%;letter-spacing:0;text-align:center;color:var(--typography-contrast);display:inline-flex;align-items:flex-start;justify-content:center;position:absolute;top:-8px;right:-8px;padding:0 6px;box-sizing:border-box;overflow:hidden;white-space:nowrap}:host .app-locked{width:21px;height:21px;border-radius:64px;background:var(--slate-base);font-size:15px;color:var(--typography-contrast);display:inline-flex;align-items:center;justify-content:center;position:absolute;top:-6px;right:-6px;overflow:hidden;white-space:nowrap}:host.primary .icon-wrapper{background-color:var(--primary-base)}:host.primary .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.primary .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.primary .icon-wrapper>fw-icon.transparent{color:transparent}:host.dark .icon-wrapper{background-color:var(--primary-dark)}:host.dark .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.dark .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.gradient .icon-wrapper{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%)}:host.gradient .icon-wrapper>fw-icon{color:var(--typography-contrast)}:host.gradient .icon-wrapper>fw-icon.base{color:var(--typography-base)}:host.light .icon-wrapper{background-color:var(--page-light);outline:1px solid var(--separations-base)}:host.light .icon-wrapper>fw-icon{background:linear-gradient(23.3deg,#093af6 -22.41%,#1b68fa 41.03%,#b080fc 94.31%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent}:host.transparent .icon-wrapper{background-color:transparent;outline:1px solid transparent}:host.small .icon-highlight{border-radius:12px;width:24px;height:24px}:host.small .icon-wrapper{display:inline-flex;width:24px;height:24px;border-radius:6px;align-items:center;justify-content:center}:host.small .icon-wrapper>fw-icon{font-size:16px;width:16px;min-width:16px}:host.small .icon-wrapper img{height:24px;width:24px}:host.small .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.medium .icon-highlight{border-radius:14px;width:32px;height:32px}:host.medium .icon-wrapper{display:inline-flex;width:32px;height:32px;border-radius:8px;align-items:center;justify-content:center}:host.medium .icon-wrapper>fw-icon{font-size:20px;width:20px;min-width:20px}:host.medium .icon-wrapper img{height:32px;width:32px}:host.medium .app-badge{min-width:8px;padding:0;width:8px;height:8px;border-radius:8px;text-indent:-9999px;top:-3px;right:-3px}:host.large .icon-highlight{border-radius:18px;width:48px;height:48px}:host.large .icon-wrapper{display:inline-flex;width:48px;height:48px;border-radius:12px;align-items:center;justify-content:center}:host.large .icon-wrapper>fw-icon{font-size:32px;width:32px;min-width:32px}:host.large .icon-wrapper img{height:48px;width:48px}:host.extra-large .icon-highlight{border-radius:22px;width:64px;height:64px}:host.extra-large .icon-wrapper{display:inline-flex;width:64px;height:64px;border-radius:16px;align-items:center;justify-content:center}:host.extra-large .icon-wrapper>fw-icon{font-size:48px;width:48px;min-width:48px}:host.extra-large .icon-wrapper img{height:64px;width:64px}:host.extra-large p{max-width:64px}:host.interactive .icon-highlight{border:4px solid transparent}:host.hover .icon-highlight,:host:hover .icon-highlight{border:4px solid var(--primary-border)}@keyframes rubber-band{0%{transform:scale(.95)}20%{transform:scale(1.05)}32%{transform:scale(.95)}48%{transform:scale(1)}}:host.animated.hover .icon-highlight,:host.animated:hover .icon-highlight{animation:rubber-band .5s linear forwards;border:4px solid var(--primary-border)}:host.focused .icon-highlight,:host:focus .icon-highlight,:host.animated:focus .icon-highlight{border:4px solid var(--primary-base)}:host.focused p,:host:focus p,:host.animated:focus p{color:var(--typography-base)}:host.static .icon-highlight,:host.static:hover .icon-highlight,:host.static.animated:hover .icon-highlight{border:4px solid transparent}:host.locked{pointer-events:none}\n"] }]
25
+ }], propDecorators: { title: [{
26
+ type: Input
27
+ }], icon: [{
28
+ type: Input
29
+ }], imageUrl: [{
30
+ type: Input
31
+ }], color: [{
32
+ type: Input
33
+ }], fontColor: [{
34
+ type: Input
35
+ }], size: [{
36
+ type: Input
37
+ }], variant: [{
38
+ type: Input
39
+ }], badge: [{
40
+ type: Input
41
+ }], tabindex: [{
42
+ type: HostBinding,
43
+ args: ['tabindex']
44
+ }, {
45
+ type: Input
46
+ }], locked: [{
47
+ type: HostBinding,
48
+ args: ['class.locked']
49
+ }, {
50
+ type: Input
51
+ }], animated: [{
52
+ type: HostBinding,
53
+ args: ['class.animated']
54
+ }, {
55
+ type: Input
56
+ }], role: [{
57
+ type: HostBinding,
58
+ args: ['role']
59
+ }], cssClass: [{
60
+ type: HostBinding,
61
+ args: ['class']
62
+ }] } });
63
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWljb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXBwLWljb24vYXBwLWljb24uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXBwLWljb24vYXBwLWljb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBUzlELE1BQU0sT0FBTyxrQkFBa0I7SUFML0I7UUFTVyxVQUFLLEdBQStELFNBQVMsQ0FBQztRQUM5RSxjQUFTLEdBQXlCLFVBQVUsQ0FBQztRQUM3QyxTQUFJLEdBQWtELFFBQVEsQ0FBQztRQUMvRCxZQUFPLEdBQW9ELGFBQWEsQ0FBQztRQUVoRCxhQUFRLEdBQUcsRUFBRSxDQUFDO1FBQ1YsV0FBTSxHQUFhLEtBQUssQ0FBQztRQUN2QixhQUFRLEdBQWEsS0FBSyxDQUFDO1FBQzlDLFNBQUksR0FBRyxRQUFRLENBQUM7S0FLdEM7SUFIQyxJQUEwQixRQUFRO1FBQ2hDLE9BQU8sQ0FBQyxhQUFhLEVBQUUsSUFBSSxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDeEUsQ0FBQzsrR0FoQlUsa0JBQWtCO21HQUFsQixrQkFBa0IsbWJDVC9CLCthQVVBOzs0RkREYSxrQkFBa0I7a0JBTDlCLFNBQVM7K0JBQ0UsYUFBYTs4QkFLZCxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csSUFBSTtzQkFBWixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQzRCLFFBQVE7c0JBQXpDLFdBQVc7dUJBQUMsVUFBVTs7c0JBQUcsS0FBSztnQkFDTyxNQUFNO3NCQUEzQyxXQUFXO3VCQUFDLGNBQWM7O3NCQUFHLEtBQUs7Z0JBQ0ssUUFBUTtzQkFBL0MsV0FBVzt1QkFBQyxnQkFBZ0I7O3NCQUFHLEtBQUs7Z0JBQ2hCLElBQUk7c0JBQXhCLFdBQVc7dUJBQUMsTUFBTTtnQkFFTyxRQUFRO3NCQUFqQyxXQUFXO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEhvc3RCaW5kaW5nLCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBJY29uVHlwZSB9IGZyb20gJy4uL2ljb24vaWNvbi50eXBlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Z3LWFwcC1pY29uJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FwcC1pY29uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYXBwLWljb24uY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgRndBcHBJY29uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgdGl0bGU/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGljb24/OiBJY29uVHlwZTtcbiAgQElucHV0KCkgaW1hZ2VVcmw/OiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvbG9yPzogJ3ByaW1hcnknIHwgJ2RhcmsnIHwgJ2xpZ2h0JyB8ICdncmFkaWVudCcgfCAndHJhbnNwYXJlbnQnID0gJ3ByaW1hcnknO1xuICBASW5wdXQoKSBmb250Q29sb3I/OiAnY29udHJhc3QnIHwgJ2Jhc2UnID0gJ2NvbnRyYXN0JztcbiAgQElucHV0KCkgc2l6ZT86ICdzbWFsbCcgfCAnbWVkaXVtJyB8ICdsYXJnZScgfCAnZXh0cmEtbGFyZ2UnID0gJ21lZGl1bSc7XG4gIEBJbnB1dCgpIHZhcmlhbnQ/OiAnaW50ZXJhY3RpdmUnIHwgJ2hvdmVyJyB8ICdmb2N1c2VkJyB8ICdzdGF0aWMnID0gJ2ludGVyYWN0aXZlJztcbiAgQElucHV0KCkgYmFkZ2U/OiBzdHJpbmc7XG4gIEBIb3N0QmluZGluZygndGFiaW5kZXgnKSBASW5wdXQoKSB0YWJpbmRleCA9ICcnO1xuICBASG9zdEJpbmRpbmcoJ2NsYXNzLmxvY2tlZCcpIEBJbnB1dCgpIGxvY2tlZD86IGJvb2xlYW4gPSBmYWxzZTtcbiAgQEhvc3RCaW5kaW5nKCdjbGFzcy5hbmltYXRlZCcpIEBJbnB1dCgpIGFuaW1hdGVkPzogYm9vbGVhbiA9IGZhbHNlO1xuICBASG9zdEJpbmRpbmcoJ3JvbGUnKSByb2xlID0gJ2J1dHRvbic7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpIGdldCBjc3NDbGFzcygpOiBzdHJpbmcge1xuICAgIHJldHVybiBbJ2Z3LWFwcC1pY29uJywgdGhpcy5zaXplLCB0aGlzLmNvbG9yLCB0aGlzLnZhcmlhbnRdLmpvaW4oJyAnKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImljb24taGlnaGxpZ2h0XCI+PC9kaXY+XG48ZGl2IGNsYXNzPVwiaWNvbi13cmFwcGVyXCI+XG4gIDxkaXYgY2xhc3M9XCJhcHAtYmFkZ2VcIiAqbmdJZj1cImJhZGdlXCI+PHNwYW4+e3sgYmFkZ2UgfX08L3NwYW4+PC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJhcHAtbG9ja2VkXCIgKm5nSWY9XCJsb2NrZWRcIj5cbiAgICA8ZnctaWNvbj5sb2NrPC9mdy1pY29uPlxuICA8L2Rpdj5cbiAgPGltZyAqbmdJZj1cImltYWdlVXJsXCIgW3NyY109XCJpbWFnZVVybFwiIGFsdD1cIkFwcCBJY29uXCI+XG4gIDxmdy1pY29uICpuZ0lmPVwiaWNvblwiIFtuZ0NsYXNzXT1cImZvbnRDb2xvclwiPnt7IGljb24gfX08L2Z3LWljb24+XG48L2Rpdj5cbjxwIGNsYXNzPVwidmlzaW9uLXAzXCIgKm5nSWY9XCJ0aXRsZVwiPnt7IHRpdGxlIH19PC9wPlxuIl19
@@ -0,0 +1,28 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { FwIconModule } from '../icon/icon.module';
4
+ import { FwAppIconComponent } from './app-icon.component';
5
+ import * as i0 from "@angular/core";
6
+ export class FwAppIconModule {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, declarations: [FwAppIconComponent], imports: [CommonModule,
9
+ FwIconModule], exports: [FwAppIconComponent] }); }
10
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, imports: [CommonModule,
11
+ FwIconModule] }); }
12
+ }
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAppIconModule, decorators: [{
14
+ type: NgModule,
15
+ args: [{
16
+ imports: [
17
+ CommonModule,
18
+ FwIconModule,
19
+ ],
20
+ exports: [
21
+ FwAppIconComponent,
22
+ ],
23
+ declarations: [
24
+ FwAppIconComponent,
25
+ ],
26
+ }]
27
+ }] });
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLWljb24ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXBwLWljb24vYXBwLWljb24ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFjMUQsTUFBTSxPQUFPLGVBQWU7K0dBQWYsZUFBZTtnSEFBZixlQUFlLGlCQUh4QixrQkFBa0IsYUFQbEIsWUFBWTtZQUNaLFlBQVksYUFHWixrQkFBa0I7Z0hBTVQsZUFBZSxZQVZ4QixZQUFZO1lBQ1osWUFBWTs7NEZBU0gsZUFBZTtrQkFaM0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixZQUFZO3FCQUNiO29CQUNELE9BQU8sRUFBRTt3QkFDUCxrQkFBa0I7cUJBQ25CO29CQUNELFlBQVksRUFBRTt3QkFDWixrQkFBa0I7cUJBQ25CO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEZ3SWNvbk1vZHVsZSB9IGZyb20gJy4uL2ljb24vaWNvbi5tb2R1bGUnO1xuaW1wb3J0IHsgRndBcHBJY29uQ29tcG9uZW50IH0gZnJvbSAnLi9hcHAtaWNvbi5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEZ3SWNvbk1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEZ3QXBwSWNvbkNvbXBvbmVudCxcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRndBcHBJY29uQ29tcG9uZW50LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBGd0FwcEljb25Nb2R1bGUge1xufVxuIl19
@@ -0,0 +1,66 @@
1
+ import { Component, computed, HostBinding, Input, input } from '@angular/core';
2
+ import { pickColorViaHash } from '../../color.utils';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "../icon/icon.component";
6
+ const namedColorMap = {
7
+ primary: 'var(--primary-base)',
8
+ secondary: 'var(--secondary-base)',
9
+ red: 'var(--red-base)',
10
+ 'light-slate': 'var(--slate-light)',
11
+ slate: 'var(--slate-base)',
12
+ warning: 'var(--orange-base)',
13
+ success: 'var(--green-base)',
14
+ };
15
+ export class FwAvatarComponent {
16
+ constructor() {
17
+ this.color = 'primary';
18
+ this.variant = 'circular';
19
+ this.content = 'icon';
20
+ this.size = 'small';
21
+ this.initial = '';
22
+ this.imageUrl = '';
23
+ this.imageAltText = '';
24
+ this.icon = 'user';
25
+ this.colorSeed = input();
26
+ this.hasedColor = computed(() => pickColorViaHash(this.colorSeed()));
27
+ this.colorToDisplay = computed(() => this.colorSeed() ? this.hasedColor() : namedColorMap[this.color]);
28
+ this.isImageBroken = false;
29
+ }
30
+ get classes() {
31
+ return [this.size, this.variant, this.content].filter(Boolean).join(' ');
32
+ }
33
+ ;
34
+ loadImage() {
35
+ this.isImageBroken = false;
36
+ }
37
+ errorImage() {
38
+ this.isImageBroken = true;
39
+ }
40
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
41
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.3.12", type: FwAvatarComponent, selector: "fw-avatar", inputs: { color: { classPropertyName: "color", publicName: "color", isSignal: false, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: false, isRequired: false, transformFunction: null }, content: { classPropertyName: "content", publicName: "content", isSignal: false, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: false, isRequired: false, transformFunction: null }, initial: { classPropertyName: "initial", publicName: "initial", isSignal: false, isRequired: false, transformFunction: null }, imageUrl: { classPropertyName: "imageUrl", publicName: "imageUrl", isSignal: false, isRequired: false, transformFunction: null }, imageAltText: { classPropertyName: "imageAltText", publicName: "imageAltText", isSignal: false, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: false, isRequired: false, transformFunction: null }, colorSeed: { classPropertyName: "colorSeed", publicName: "colorSeed", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "attr.class": "this.classes" } }, ngImport: i0, template: "<ng-container [ngSwitch]=\"content\">\n <div [style.backgroundColor]=\"colorToDisplay()\" *ngSwitchCase=\"'image'\" class=\"avatar\">\n <img\n *ngIf=\"!isImageBroken else displayInitial\"\n [src]=\"imageUrl\"\n [alt]=\"imageAltText\"\n (load)=\"loadImage()\"\n (error)=\"errorImage()\">\n </div>\n <div *ngSwitchCase=\"'icon'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayIcon\"></ng-container>\n </div>\n <div *ngSwitchCase=\"'initial'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayInitial\"></ng-container>\n </div>\n</ng-container>\n<ng-template #displayInitial>\n <span class=\"initial\" *ngIf=\"initial else displayIcon\">{{ initial }}</span>\n</ng-template>\n<ng-template #displayIcon>\n <fw-icon>{{ icon }}</fw-icon>\n</ng-template>\n", styles: [":host{display:block}:host .avatar{display:flex;flex-direction:row;justify-content:center;align-items:center;width:inherit;height:inherit;border-radius:inherit;font-size:inherit}:host .avatar fw-icon{color:var(--typography-contrast);font-size:inherit}:host .avatar img{width:100%;height:100%;object-fit:cover;border-radius:inherit}:host .avatar .initial{font-family:Inter,sans-serif;font-style:normal;font-weight:500;color:var(--typography-contrast);font-size:inherit}:host.small{width:16px;height:16px;font-size:8px}:host.small .avatar fw-icon{font-size:12px}:host.medium{width:32px;height:32px;font-size:14px}:host.medium .avatar fw-icon{font-size:24px}:host.large{width:48px;height:48px;font-size:22px}:host.large .avatar fw-icon{font-size:32px}:host.x-large{width:96px;height:96px;font-size:36px}:host.x-large .avatar fw-icon{font-size:64px}:host.rounded.small{border-radius:4px}:host.rounded.medium{border-radius:8px}:host.rounded.large{border-radius:12px}:host.rounded.x-large{border-radius:16px}:host.circular{border-radius:64px}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: i2.FwIconComponent, selector: "fw-icon", inputs: ["size", "color"] }] }); }
42
+ }
43
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: FwAvatarComponent, decorators: [{
44
+ type: Component,
45
+ args: [{ selector: 'fw-avatar', template: "<ng-container [ngSwitch]=\"content\">\n <div [style.backgroundColor]=\"colorToDisplay()\" *ngSwitchCase=\"'image'\" class=\"avatar\">\n <img\n *ngIf=\"!isImageBroken else displayInitial\"\n [src]=\"imageUrl\"\n [alt]=\"imageAltText\"\n (load)=\"loadImage()\"\n (error)=\"errorImage()\">\n </div>\n <div *ngSwitchCase=\"'icon'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayIcon\"></ng-container>\n </div>\n <div *ngSwitchCase=\"'initial'\" [style.backgroundColor]=\"colorToDisplay()\" class=\"avatar\">\n <ng-container *ngTemplateOutlet=\"displayInitial\"></ng-container>\n </div>\n</ng-container>\n<ng-template #displayInitial>\n <span class=\"initial\" *ngIf=\"initial else displayIcon\">{{ initial }}</span>\n</ng-template>\n<ng-template #displayIcon>\n <fw-icon>{{ icon }}</fw-icon>\n</ng-template>\n", styles: [":host{display:block}:host .avatar{display:flex;flex-direction:row;justify-content:center;align-items:center;width:inherit;height:inherit;border-radius:inherit;font-size:inherit}:host .avatar fw-icon{color:var(--typography-contrast);font-size:inherit}:host .avatar img{width:100%;height:100%;object-fit:cover;border-radius:inherit}:host .avatar .initial{font-family:Inter,sans-serif;font-style:normal;font-weight:500;color:var(--typography-contrast);font-size:inherit}:host.small{width:16px;height:16px;font-size:8px}:host.small .avatar fw-icon{font-size:12px}:host.medium{width:32px;height:32px;font-size:14px}:host.medium .avatar fw-icon{font-size:24px}:host.large{width:48px;height:48px;font-size:22px}:host.large .avatar fw-icon{font-size:32px}:host.x-large{width:96px;height:96px;font-size:36px}:host.x-large .avatar fw-icon{font-size:64px}:host.rounded.small{border-radius:4px}:host.rounded.medium{border-radius:8px}:host.rounded.large{border-radius:12px}:host.rounded.x-large{border-radius:16px}:host.circular{border-radius:64px}\n"] }]
46
+ }], propDecorators: { classes: [{
47
+ type: HostBinding,
48
+ args: ['attr.class']
49
+ }], color: [{
50
+ type: Input
51
+ }], variant: [{
52
+ type: Input
53
+ }], content: [{
54
+ type: Input
55
+ }], size: [{
56
+ type: Input
57
+ }], initial: [{
58
+ type: Input
59
+ }], imageUrl: [{
60
+ type: Input
61
+ }], imageAltText: [{
62
+ type: Input
63
+ }], icon: [{
64
+ type: Input
65
+ }] } });
66
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL2F2YXRhci9hdmF0YXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvYXZhdGFyL2F2YXRhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBQyxXQUFXLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUU5RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7OztBQUtyRCxNQUFNLGFBQWEsR0FBeUM7SUFDMUQsT0FBTyxFQUFFLHFCQUFxQjtJQUM5QixTQUFTLEVBQUUsdUJBQXVCO0lBQ2xDLEdBQUcsRUFBRSxpQkFBaUI7SUFDdEIsYUFBYSxFQUFFLG9CQUFvQjtJQUNuQyxLQUFLLEVBQUUsbUJBQW1CO0lBQzFCLE9BQU8sRUFBRSxvQkFBb0I7SUFDN0IsT0FBTyxFQUFFLG1CQUFtQjtDQUM3QixDQUFBO0FBTUQsTUFBTSxPQUFPLGlCQUFpQjtJQUw5QjtRQVVXLFVBQUssR0FBdUIsU0FBUyxDQUFDO1FBQ3RDLFlBQU8sR0FBdUMsVUFBVSxDQUFDO1FBQ3pELFlBQU8sR0FBa0MsTUFBTSxDQUFDO1FBQ2hELFNBQUksR0FBOEMsT0FBTyxDQUFDO1FBQzFELFlBQU8sR0FBWSxFQUFFLENBQUM7UUFDdEIsYUFBUSxHQUFZLEVBQUUsQ0FBQztRQUN2QixpQkFBWSxHQUFZLEVBQUUsQ0FBQztRQUMzQixTQUFJLEdBQWMsTUFBTSxDQUFDO1FBQ2xDLGNBQVMsR0FBRyxLQUFLLEVBQVUsQ0FBQztRQUU1QixlQUFVLEdBQUcsUUFBUSxDQUFDLEdBQUcsRUFBRSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFFaEUsbUJBQWMsR0FBRyxRQUFRLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztRQUVsRyxrQkFBYSxHQUFZLEtBQUssQ0FBQztLQVNoQztJQTNCQyxJQUErQixPQUFPO1FBQ3BDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDM0UsQ0FBQztJQUFBLENBQUM7SUFrQkYsU0FBUztRQUNQLElBQUksQ0FBQyxhQUFhLEdBQUcsS0FBSyxDQUFDO0lBQzdCLENBQUM7SUFFRCxVQUFVO1FBQ1IsSUFBSSxDQUFDLGFBQWEsR0FBRyxJQUFJLENBQUM7SUFDNUIsQ0FBQzsrR0EzQlUsaUJBQWlCO21HQUFqQixpQkFBaUIsMnVDQ3JCOUIsNjRCQXNCQTs7NEZERGEsaUJBQWlCO2tCQUw3QixTQUFTOytCQUNFLFdBQVc7OEJBS1UsT0FBTztzQkFBckMsV0FBVzt1QkFBQyxZQUFZO2dCQUloQixLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csWUFBWTtzQkFBcEIsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGNvbXB1dGVkLEhvc3RCaW5kaW5nLCBJbnB1dCwgaW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgcGlja0NvbG9yVmlhSGFzaCB9IGZyb20gJy4uLy4uL2NvbG9yLnV0aWxzJztcbmltcG9ydCB7IEljb25UeXBlIH0gZnJvbSAnLi4vaWNvbi9pY29uLnR5cGVzJztcblxudHlwZSBBdmF0YXJDb2xvck9wdGlvbiA9ICdwcmltYXJ5JyB8ICdzZWNvbmRhcnknIHwgJ3JlZCcgfCAnbGlnaHQtc2xhdGUnIHwgJ3NsYXRlJyB8ICd3YXJuaW5nJyB8ICdzdWNjZXNzJztcblxuY29uc3QgbmFtZWRDb2xvck1hcDogeyBbSyBpbiBBdmF0YXJDb2xvck9wdGlvbl06IHN0cmluZyB9ID0ge1xuICBwcmltYXJ5OiAndmFyKC0tcHJpbWFyeS1iYXNlKScsXG4gIHNlY29uZGFyeTogJ3ZhcigtLXNlY29uZGFyeS1iYXNlKScsXG4gIHJlZDogJ3ZhcigtLXJlZC1iYXNlKScsXG4gICdsaWdodC1zbGF0ZSc6ICd2YXIoLS1zbGF0ZS1saWdodCknLFxuICBzbGF0ZTogJ3ZhcigtLXNsYXRlLWJhc2UpJyxcbiAgd2FybmluZzogJ3ZhcigtLW9yYW5nZS1iYXNlKScsXG4gIHN1Y2Nlc3M6ICd2YXIoLS1ncmVlbi1iYXNlKScsXG59XG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmdy1hdmF0YXInLFxuICBzdHlsZVVybHM6IFsnLi9hdmF0YXIuY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2F2YXRhci5jb21wb25lbnQuaHRtbCcsXG59KVxuZXhwb3J0IGNsYXNzIEZ3QXZhdGFyQ29tcG9uZW50IHtcbiAgQEhvc3RCaW5kaW5nKCdhdHRyLmNsYXNzJykgZ2V0IGNsYXNzZXMoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gW3RoaXMuc2l6ZSwgdGhpcy52YXJpYW50LCB0aGlzLmNvbnRlbnRdLmZpbHRlcihCb29sZWFuKS5qb2luKCcgJyk7XG4gIH07XG5cbiAgQElucHV0KCkgY29sb3I/OiBBdmF0YXJDb2xvck9wdGlvbiA9ICdwcmltYXJ5JztcbiAgQElucHV0KCkgdmFyaWFudD86ICdjaXJjdWxhcicgfCAncm91bmRlZCcgfCAnc3F1YXJlJyA9ICdjaXJjdWxhcic7XG4gIEBJbnB1dCgpIGNvbnRlbnQ/OiAnaW1hZ2UnIHwgJ2ljb24nIHwgJ2luaXRpYWwnID0gJ2ljb24nO1xuICBASW5wdXQoKSBzaXplPzogJ3NtYWxsJyB8ICdtZWRpdW0nIHwgJ2xhcmdlJyB8ICd4LWxhcmdlJyA9ICdzbWFsbCc7XG4gIEBJbnB1dCgpIGluaXRpYWw/OiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgaW1hZ2VVcmw/OiBzdHJpbmcgPSAnJztcbiAgQElucHV0KCkgaW1hZ2VBbHRUZXh0Pzogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIGljb24/OiBJY29uVHlwZSA9ICd1c2VyJztcbiAgY29sb3JTZWVkID0gaW5wdXQ8c3RyaW5nPigpO1xuXG4gIGhhc2VkQ29sb3IgPSBjb21wdXRlZCgoKSA9PiBwaWNrQ29sb3JWaWFIYXNoKHRoaXMuY29sb3JTZWVkKCkpKTtcblxuICBjb2xvclRvRGlzcGxheSA9IGNvbXB1dGVkKCgpID0+IHRoaXMuY29sb3JTZWVkKCkgPyB0aGlzLmhhc2VkQ29sb3IoKSA6IG5hbWVkQ29sb3JNYXBbdGhpcy5jb2xvcl0pO1xuXG4gIGlzSW1hZ2VCcm9rZW46IGJvb2xlYW4gPSBmYWxzZTtcblxuICBsb2FkSW1hZ2UoKTogdm9pZCB7XG4gICAgdGhpcy5pc0ltYWdlQnJva2VuID0gZmFsc2U7XG4gIH1cblxuICBlcnJvckltYWdlKCk6IHZvaWQge1xuICAgIHRoaXMuaXNJbWFnZUJyb2tlbiA9IHRydWU7XG4gIH1cbn1cbiIsIjxuZy1jb250YWluZXIgW25nU3dpdGNoXT1cImNvbnRlbnRcIj5cbiAgPGRpdiBbc3R5bGUuYmFja2dyb3VuZENvbG9yXT1cImNvbG9yVG9EaXNwbGF5KClcIiAqbmdTd2l0Y2hDYXNlPVwiJ2ltYWdlJ1wiIGNsYXNzPVwiYXZhdGFyXCI+XG4gICAgPGltZ1xuICAgICAgKm5nSWY9XCIhaXNJbWFnZUJyb2tlbiBlbHNlIGRpc3BsYXlJbml0aWFsXCJcbiAgICAgIFtzcmNdPVwiaW1hZ2VVcmxcIlxuICAgICAgW2FsdF09XCJpbWFnZUFsdFRleHRcIlxuICAgICAgKGxvYWQpPVwibG9hZEltYWdlKClcIlxuICAgICAgKGVycm9yKT1cImVycm9ySW1hZ2UoKVwiPlxuICA8L2Rpdj5cbiAgPGRpdiAqbmdTd2l0Y2hDYXNlPVwiJ2ljb24nXCIgW3N0eWxlLmJhY2tncm91bmRDb2xvcl09XCJjb2xvclRvRGlzcGxheSgpXCIgY2xhc3M9XCJhdmF0YXJcIj5cbiAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiZGlzcGxheUljb25cIj48L25nLWNvbnRhaW5lcj5cbiAgPC9kaXY+XG4gIDxkaXYgKm5nU3dpdGNoQ2FzZT1cIidpbml0aWFsJ1wiIFtzdHlsZS5iYWNrZ3JvdW5kQ29sb3JdPVwiY29sb3JUb0Rpc3BsYXkoKVwiIGNsYXNzPVwiYXZhdGFyXCI+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImRpc3BsYXlJbml0aWFsXCI+PC9uZy1jb250YWluZXI+XG4gIDwvZGl2PlxuPC9uZy1jb250YWluZXI+XG48bmctdGVtcGxhdGUgI2Rpc3BsYXlJbml0aWFsPlxuICA8c3BhbiBjbGFzcz1cImluaXRpYWxcIiAqbmdJZj1cImluaXRpYWwgZWxzZSBkaXNwbGF5SWNvblwiPnt7IGluaXRpYWwgfX08L3NwYW4+XG48L25nLXRlbXBsYXRlPlxuPG5nLXRlbXBsYXRlICNkaXNwbGF5SWNvbj5cbiAgPGZ3LWljb24+e3sgaWNvbiB9fTwvZnctaWNvbj5cbjwvbmctdGVtcGxhdGU+XG4iXX0=