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

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