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

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