@biit-solutions/wizardry-theme 1.21.34

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 (513) hide show
  1. package/README.md +15 -0
  2. package/assets/i18n/chart/de.json +3 -0
  3. package/assets/i18n/chart/en.json +3 -0
  4. package/assets/i18n/chart/es.json +3 -0
  5. package/assets/i18n/chart/fr.json +3 -0
  6. package/assets/i18n/chart/nl.json +3 -0
  7. package/assets/i18n/info/de.json +4 -0
  8. package/assets/i18n/info/en.json +4 -0
  9. package/assets/i18n/info/es.json +4 -0
  10. package/assets/i18n/info/fr.json +4 -0
  11. package/assets/i18n/info/nl.json +1 -0
  12. package/assets/i18n/inputs/de.json +8 -0
  13. package/assets/i18n/inputs/en.json +8 -0
  14. package/assets/i18n/inputs/es.json +8 -0
  15. package/assets/i18n/inputs/fr.json +8 -0
  16. package/assets/i18n/inputs/nl.json +4 -0
  17. package/assets/i18n/login/de.json +32 -0
  18. package/assets/i18n/login/en.json +32 -0
  19. package/assets/i18n/login/es.json +32 -0
  20. package/assets/i18n/login/fr.json +32 -0
  21. package/assets/i18n/login/nl.json +32 -0
  22. package/assets/i18n/login-welcome/en.json +6 -0
  23. package/assets/i18n/login-welcome/es.json +6 -0
  24. package/assets/i18n/login-welcome/nl.json +6 -0
  25. package/assets/i18n/table/de.json +14 -0
  26. package/assets/i18n/table/en.json +14 -0
  27. package/assets/i18n/table/es.json +14 -0
  28. package/assets/i18n/table/fr.json +14 -0
  29. package/assets/i18n/table/nl.json +11 -0
  30. package/assets/i18n/utils/en.json +69 -0
  31. package/assets/i18n/utils/es.json +69 -0
  32. package/assets/i18n/utils/nl.json +1 -0
  33. package/assets/styles/context-menu/base.scss +131 -0
  34. package/assets/styles/context-menu/button-reset.scss +31 -0
  35. package/assets/styles/context-menu/dark-theme.scss +29 -0
  36. package/button/biit-action-button/biit-action-button.component.d.ts +18 -0
  37. package/button/biit-action-button/biit-action-button.module.d.ts +10 -0
  38. package/button/biit-button/biit-button.component.d.ts +25 -0
  39. package/button/biit-button/biit-button.module.d.ts +9 -0
  40. package/button/biit-icon-button/biit-icon-button.component.d.ts +8 -0
  41. package/button/biit-icon-button/biit-icon-button.module.d.ts +8 -0
  42. package/button/index.d.ts +5 -0
  43. package/button/public-api.d.ts +6 -0
  44. package/calendar/biit-calendar/biit-calendar.component.d.ts +52 -0
  45. package/calendar/biit-calendar/biit-calendar.module.d.ts +12 -0
  46. package/calendar/biit-calendar/calendar-utility.d.ts +3 -0
  47. package/calendar/biit-calendar/models/calendar-configuration.d.ts +5 -0
  48. package/calendar/biit-calendar/models/calendar-event-click-event.d.ts +6 -0
  49. package/calendar/biit-calendar/models/calendar-event.d.ts +22 -0
  50. package/calendar/index.d.ts +5 -0
  51. package/calendar/public-api.d.ts +7 -0
  52. package/calendar/utils/event-color.d.ts +105 -0
  53. package/charts/bar-chart/bar-chart.component.d.ts +46 -0
  54. package/charts/bar-chart/bar-chart.module.d.ts +9 -0
  55. package/charts/bar-chart/models/bar-chart-data.d.ts +33 -0
  56. package/charts/heatmap-chart/heatmap-chart-data.d.ts +22 -0
  57. package/charts/heatmap-chart/heatmap-chart-range.d.ts +6 -0
  58. package/charts/heatmap-chart/heatmap-chart.component.d.ts +42 -0
  59. package/charts/heatmap-chart/heatmap-chart.module.d.ts +10 -0
  60. package/charts/index.d.ts +5 -0
  61. package/charts/line-chart/line-chart.component.d.ts +38 -0
  62. package/charts/line-chart/line-chart.module.d.ts +9 -0
  63. package/charts/line-chart/models/line-chart-data.d.ts +12 -0
  64. package/charts/meta-view-chart/components/bar-range/bar-range.component.d.ts +14 -0
  65. package/charts/meta-view-chart/components/bar-range/bar-range.module.d.ts +12 -0
  66. package/charts/meta-view-chart/components/boolean-filter/boolean-filter.component.d.ts +10 -0
  67. package/charts/meta-view-chart/components/boolean-filter/boolean-filter.module.d.ts +10 -0
  68. package/charts/meta-view-chart/components/date-filter-selector/date-filter-selector.component.d.ts +28 -0
  69. package/charts/meta-view-chart/components/date-filter-selector/date-filter-selector.module.d.ts +12 -0
  70. package/charts/meta-view-chart/components/meta-board/meta-board.component.d.ts +12 -0
  71. package/charts/meta-view-chart/components/meta-board/meta-board.module.d.ts +9 -0
  72. package/charts/meta-view-chart/components/meta-element/meta-element.component.d.ts +8 -0
  73. package/charts/meta-view-chart/components/meta-element/meta-element.module.d.ts +9 -0
  74. package/charts/meta-view-chart/components/meta-sorter/meta-filter.component.d.ts +28 -0
  75. package/charts/meta-view-chart/components/meta-sorter/meta-filter.module.d.ts +17 -0
  76. package/charts/meta-view-chart/components/meta-sorter/model/FieldType.d.ts +8 -0
  77. package/charts/meta-view-chart/components/metadata-viewer/metadata-viewer.component.d.ts +13 -0
  78. package/charts/meta-view-chart/components/metadata-viewer/metadata-viewer.module.d.ts +14 -0
  79. package/charts/meta-view-chart/components/text-filter/text-filter.component.d.ts +11 -0
  80. package/charts/meta-view-chart/components/text-filter/text-filter.module.d.ts +10 -0
  81. package/charts/meta-view-chart/meta-view-chart.component.d.ts +32 -0
  82. package/charts/meta-view-chart/meta-view-chart.module.d.ts +16 -0
  83. package/charts/meta-view-chart/model/meta-view-data.d.ts +10 -0
  84. package/charts/meta-view-chart/model/meta-view-element-data.d.ts +9 -0
  85. package/charts/meta-view-chart/model/meta-view-preselection.d.ts +5 -0
  86. package/charts/meta-view-chart/model/view.d.ts +4 -0
  87. package/charts/meta-view-chart/pipes/auto-format.pipe.d.ts +7 -0
  88. package/charts/meta-view-chart/pipes/extract-data.pipe.d.ts +8 -0
  89. package/charts/meta-view-chart/pipes/field-type.pipe.d.ts +8 -0
  90. package/charts/meta-view-chart/pipes/filter-by.pipe.d.ts +7 -0
  91. package/charts/meta-view-chart/pipes/has.pipe.d.ts +7 -0
  92. package/charts/meta-view-chart/pipes/meta-element-max-value.pipe.d.ts +8 -0
  93. package/charts/meta-view-chart/pipes/meta-element-min-value.pipe.d.ts +8 -0
  94. package/charts/meta-view-chart/pipes/meta-element-to-bar-chart.pipe.d.ts +9 -0
  95. package/charts/meta-view-chart/pipes/month-name.pipe.d.ts +7 -0
  96. package/charts/meta-view-chart/pipes/pipes.module.d.ts +20 -0
  97. package/charts/meta-view-chart/pipes/printf.pipe.d.ts +7 -0
  98. package/charts/meta-view-chart/pipes/remove-from-array.pipe.d.ts +7 -0
  99. package/charts/meta-view-chart/pipes/safe-html.pipe.d.ts +10 -0
  100. package/charts/meta-view-chart/pipes/step-value-extractor.pipe.d.ts +9 -0
  101. package/charts/pie-chart/models/pie-chart-data.d.ts +5 -0
  102. package/charts/pie-chart/pie-chart.component.d.ts +39 -0
  103. package/charts/pie-chart/pie-chart.module.d.ts +9 -0
  104. package/charts/public-api.d.ts +28 -0
  105. package/charts/radar-chart/models/radar-chart-data.d.ts +11 -0
  106. package/charts/radar-chart/radar-chart.component.d.ts +38 -0
  107. package/charts/radar-chart/radar-chart.module.d.ts +9 -0
  108. package/charts/radial-chart/models/radial-chart-data.d.ts +5 -0
  109. package/charts/radial-chart/radial-chart.component.d.ts +40 -0
  110. package/charts/radial-chart/radial-chart.module.d.ts +9 -0
  111. package/charts/timeline-viewer-chart/models/timeline-viewer-chart-data.d.ts +17 -0
  112. package/charts/timeline-viewer-chart/models/timeline-viewer-chart-options.d.ts +9 -0
  113. package/charts/timeline-viewer-chart/timeline-viewer-chart.component.d.ts +40 -0
  114. package/charts/timeline-viewer-chart/timeline-viewer-chart.module.d.ts +9 -0
  115. package/esm2020/biit-solutions-wizardry-theme.mjs +5 -0
  116. package/esm2020/button/biit-action-button/biit-action-button.component.mjs +68 -0
  117. package/esm2020/button/biit-action-button/biit-action-button.module.mjs +32 -0
  118. package/esm2020/button/biit-button/biit-button.component.mjs +57 -0
  119. package/esm2020/button/biit-button/biit-button.module.mjs +40 -0
  120. package/esm2020/button/biit-icon-button/biit-icon-button.component.mjs +19 -0
  121. package/esm2020/button/biit-icon-button/biit-icon-button.module.mjs +24 -0
  122. package/esm2020/button/biit-solutions-wizardry-theme-button.mjs +5 -0
  123. package/esm2020/button/public-api.mjs +10 -0
  124. package/esm2020/calendar/biit-calendar/biit-calendar.component.mjs +166 -0
  125. package/esm2020/calendar/biit-calendar/biit-calendar.module.mjs +44 -0
  126. package/esm2020/calendar/biit-calendar/calendar-utility.mjs +2 -0
  127. package/esm2020/calendar/biit-calendar/models/calendar-configuration.mjs +9 -0
  128. package/esm2020/calendar/biit-calendar/models/calendar-event-click-event.mjs +7 -0
  129. package/esm2020/calendar/biit-calendar/models/calendar-event.mjs +38 -0
  130. package/esm2020/calendar/biit-solutions-wizardry-theme-calendar.mjs +5 -0
  131. package/esm2020/calendar/public-api.mjs +11 -0
  132. package/esm2020/calendar/utils/event-color.mjs +101 -0
  133. package/esm2020/charts/bar-chart/bar-chart.component.mjs +190 -0
  134. package/esm2020/charts/bar-chart/bar-chart.module.mjs +24 -0
  135. package/esm2020/charts/bar-chart/models/bar-chart-data.mjs +39 -0
  136. package/esm2020/charts/biit-solutions-wizardry-theme-charts.mjs +5 -0
  137. package/esm2020/charts/heatmap-chart/heatmap-chart-data.mjs +65 -0
  138. package/esm2020/charts/heatmap-chart/heatmap-chart-range.mjs +8 -0
  139. package/esm2020/charts/heatmap-chart/heatmap-chart.component.mjs +242 -0
  140. package/esm2020/charts/heatmap-chart/heatmap-chart.module.mjs +28 -0
  141. package/esm2020/charts/line-chart/line-chart.component.mjs +191 -0
  142. package/esm2020/charts/line-chart/line-chart.module.mjs +24 -0
  143. package/esm2020/charts/line-chart/models/line-chart-data.mjs +15 -0
  144. package/esm2020/charts/meta-view-chart/components/bar-range/bar-range.component.mjs +46 -0
  145. package/esm2020/charts/meta-view-chart/components/bar-range/bar-range.module.mjs +43 -0
  146. package/esm2020/charts/meta-view-chart/components/boolean-filter/boolean-filter.component.mjs +27 -0
  147. package/esm2020/charts/meta-view-chart/components/boolean-filter/boolean-filter.module.mjs +35 -0
  148. package/esm2020/charts/meta-view-chart/components/date-filter-selector/date-filter-selector.component.mjs +156 -0
  149. package/esm2020/charts/meta-view-chart/components/date-filter-selector/date-filter-selector.module.mjs +40 -0
  150. package/esm2020/charts/meta-view-chart/components/meta-board/meta-board.component.mjs +49 -0
  151. package/esm2020/charts/meta-view-chart/components/meta-board/meta-board.module.mjs +28 -0
  152. package/esm2020/charts/meta-view-chart/components/meta-element/meta-element.component.mjs +19 -0
  153. package/esm2020/charts/meta-view-chart/components/meta-element/meta-element.module.mjs +28 -0
  154. package/esm2020/charts/meta-view-chart/components/meta-sorter/meta-filter.component.mjs +92 -0
  155. package/esm2020/charts/meta-view-chart/components/meta-sorter/meta-filter.module.mjs +60 -0
  156. package/esm2020/charts/meta-view-chart/components/meta-sorter/model/FieldType.mjs +10 -0
  157. package/esm2020/charts/meta-view-chart/components/metadata-viewer/metadata-viewer.component.mjs +37 -0
  158. package/esm2020/charts/meta-view-chart/components/metadata-viewer/metadata-viewer.module.mjs +48 -0
  159. package/esm2020/charts/meta-view-chart/components/text-filter/text-filter.component.mjs +28 -0
  160. package/esm2020/charts/meta-view-chart/components/text-filter/text-filter.module.mjs +32 -0
  161. package/esm2020/charts/meta-view-chart/meta-view-chart.component.mjs +141 -0
  162. package/esm2020/charts/meta-view-chart/meta-view-chart.module.mjs +56 -0
  163. package/esm2020/charts/meta-view-chart/model/meta-view-data.mjs +13 -0
  164. package/esm2020/charts/meta-view-chart/model/meta-view-element-data.mjs +7 -0
  165. package/esm2020/charts/meta-view-chart/model/meta-view-preselection.mjs +7 -0
  166. package/esm2020/charts/meta-view-chart/model/view.mjs +6 -0
  167. package/esm2020/charts/meta-view-chart/pipes/auto-format.pipe.mjs +19 -0
  168. package/esm2020/charts/meta-view-chart/pipes/extract-data.pipe.mjs +16 -0
  169. package/esm2020/charts/meta-view-chart/pipes/field-type.pipe.mjs +34 -0
  170. package/esm2020/charts/meta-view-chart/pipes/filter-by.pipe.mjs +16 -0
  171. package/esm2020/charts/meta-view-chart/pipes/has.pipe.mjs +16 -0
  172. package/esm2020/charts/meta-view-chart/pipes/meta-element-max-value.pipe.mjs +20 -0
  173. package/esm2020/charts/meta-view-chart/pipes/meta-element-min-value.pipe.mjs +20 -0
  174. package/esm2020/charts/meta-view-chart/pipes/meta-element-to-bar-chart.pipe.mjs +29 -0
  175. package/esm2020/charts/meta-view-chart/pipes/month-name.pipe.mjs +18 -0
  176. package/esm2020/charts/meta-view-chart/pipes/pipes.module.mjs +84 -0
  177. package/esm2020/charts/meta-view-chart/pipes/printf.pipe.mjs +19 -0
  178. package/esm2020/charts/meta-view-chart/pipes/remove-from-array.pipe.mjs +16 -0
  179. package/esm2020/charts/meta-view-chart/pipes/safe-html.pipe.mjs +20 -0
  180. package/esm2020/charts/meta-view-chart/pipes/step-value-extractor.pipe.mjs +34 -0
  181. package/esm2020/charts/pie-chart/models/pie-chart-data.mjs +7 -0
  182. package/esm2020/charts/pie-chart/pie-chart.component.mjs +132 -0
  183. package/esm2020/charts/pie-chart/pie-chart.module.mjs +24 -0
  184. package/esm2020/charts/public-api.mjs +32 -0
  185. package/esm2020/charts/radar-chart/models/radar-chart-data.mjs +14 -0
  186. package/esm2020/charts/radar-chart/radar-chart.component.mjs +140 -0
  187. package/esm2020/charts/radar-chart/radar-chart.module.mjs +24 -0
  188. package/esm2020/charts/radial-chart/models/radial-chart-data.mjs +7 -0
  189. package/esm2020/charts/radial-chart/radial-chart.component.mjs +145 -0
  190. package/esm2020/charts/radial-chart/radial-chart.module.mjs +24 -0
  191. package/esm2020/charts/timeline-viewer-chart/models/timeline-viewer-chart-data.mjs +23 -0
  192. package/esm2020/charts/timeline-viewer-chart/models/timeline-viewer-chart-options.mjs +6 -0
  193. package/esm2020/charts/timeline-viewer-chart/timeline-viewer-chart.component.mjs +206 -0
  194. package/esm2020/charts/timeline-viewer-chart/timeline-viewer-chart.module.mjs +25 -0
  195. package/esm2020/i18n/biit-solutions-wizardry-theme-i18n.mjs +5 -0
  196. package/esm2020/i18n/i18n/http-loader.mjs +19 -0
  197. package/esm2020/i18n/i18n/supported-languages.mjs +9 -0
  198. package/esm2020/i18n/i18n/transloco-root.module.mjs +83 -0
  199. package/esm2020/i18n/public-api.mjs +7 -0
  200. package/esm2020/icon/biit-icon/biit-icon.component.mjs +92 -0
  201. package/esm2020/icon/biit-icon/biit-icon.module.mjs +24 -0
  202. package/esm2020/icon/biit-icon/biit-icon.service.mjs +25 -0
  203. package/esm2020/icon/biit-solutions-wizardry-theme-icon.mjs +5 -0
  204. package/esm2020/icon/public-api.mjs +7 -0
  205. package/esm2020/info/biit-cookies-consent/biit-cookies-consent.component.mjs +36 -0
  206. package/esm2020/info/biit-cookies-consent/biit-cookies-consent.module.mjs +36 -0
  207. package/esm2020/info/biit-gallery-card/biit-gallery-card.component.mjs +23 -0
  208. package/esm2020/info/biit-gallery-card/biit-gallery-card.module.mjs +28 -0
  209. package/esm2020/info/biit-progress-bar/biit-progress-bar.component.mjs +31 -0
  210. package/esm2020/info/biit-progress-bar/biit-progress-bar.module.mjs +24 -0
  211. package/esm2020/info/biit-snackbar/biit-notification/biit-notification.component.mjs +38 -0
  212. package/esm2020/info/biit-snackbar/biit-snackbar.component.mjs +50 -0
  213. package/esm2020/info/biit-snackbar/biit-snackbar.module.mjs +41 -0
  214. package/esm2020/info/biit-snackbar/biit-snackbar.service.mjs +64 -0
  215. package/esm2020/info/biit-snackbar/models/biit-snackbar-horizontal-position.mjs +7 -0
  216. package/esm2020/info/biit-snackbar/models/biit-snackbar-vertical-position.mjs +6 -0
  217. package/esm2020/info/biit-snackbar/models/notification-type.mjs +8 -0
  218. package/esm2020/info/biit-snackbar/models/notification.mjs +23 -0
  219. package/esm2020/info/biit-solutions-wizardry-theme-info.mjs +5 -0
  220. package/esm2020/info/biit-tooltip/biit-tooltip.component.mjs +19 -0
  221. package/esm2020/info/biit-tooltip/biit-tooltip.directive.mjs +106 -0
  222. package/esm2020/info/biit-tooltip/biit-tooltip.module.mjs +29 -0
  223. package/esm2020/info/biit-tooltip-icon/biit-tooltip-icon.component.mjs +23 -0
  224. package/esm2020/info/biit-tooltip-icon/biit-tooltip-icon.module.mjs +28 -0
  225. package/esm2020/info/public-api.mjs +23 -0
  226. package/esm2020/inputs/biit-checkbox/biit-checkbox.component.mjs +52 -0
  227. package/esm2020/inputs/biit-checkbox/biit-checkbox.module.mjs +32 -0
  228. package/esm2020/inputs/biit-datepicker/biit-datepicker.component.mjs +251 -0
  229. package/esm2020/inputs/biit-datepicker/biit-datepicker.module.mjs +68 -0
  230. package/esm2020/inputs/biit-datepicker/models/view.mjs +6 -0
  231. package/esm2020/inputs/biit-datepicker/pipes/calendar-date-pipe.mjs +18 -0
  232. package/esm2020/inputs/biit-datepicker/pipes/is-disabled-pipe.mjs +35 -0
  233. package/esm2020/inputs/biit-datepicker/pipes/is-same-day-pipe.mjs +19 -0
  234. package/esm2020/inputs/biit-datepicker/pipes/is-today-pipe.mjs +19 -0
  235. package/esm2020/inputs/biit-datepicker/pipes/month-selector-label-pipe.mjs +22 -0
  236. package/esm2020/inputs/biit-datepicker/pipes/out-of-month-pipe.mjs +19 -0
  237. package/esm2020/inputs/biit-dropdown/biit-dropdown.component.mjs +269 -0
  238. package/esm2020/inputs/biit-dropdown/biit-dropdown.module.mjs +36 -0
  239. package/esm2020/inputs/biit-group/biit-group.component.mjs +38 -0
  240. package/esm2020/inputs/biit-group/biit-group.module.mjs +32 -0
  241. package/esm2020/inputs/biit-input-text/biit-input-text.component.mjs +142 -0
  242. package/esm2020/inputs/biit-input-text/biit-input-text.module.mjs +40 -0
  243. package/esm2020/inputs/biit-multiselect/biit-multiselect.component.mjs +321 -0
  244. package/esm2020/inputs/biit-multiselect/biit-multiselect.module.mjs +40 -0
  245. package/esm2020/inputs/biit-radio-button/biit-radio-button.component.mjs +62 -0
  246. package/esm2020/inputs/biit-radio-button/biit-radio-button.module.mjs +36 -0
  247. package/esm2020/inputs/biit-slider/biit-slider.component.mjs +85 -0
  248. package/esm2020/inputs/biit-slider/biit-slider.module.mjs +32 -0
  249. package/esm2020/inputs/biit-slider-option/biit-slider-option.component.mjs +99 -0
  250. package/esm2020/inputs/biit-slider-option/biit-slider-option.module.mjs +36 -0
  251. package/esm2020/inputs/biit-slider-option-vertical/biit-slider-option-vertical.component.mjs +97 -0
  252. package/esm2020/inputs/biit-slider-option-vertical/biit-slider-option-vertical.module.mjs +36 -0
  253. package/esm2020/inputs/biit-slider-range/biit-slider-range.component.mjs +108 -0
  254. package/esm2020/inputs/biit-slider-range/biit-slider-range.module.mjs +32 -0
  255. package/esm2020/inputs/biit-solutions-wizardry-theme-inputs.mjs +5 -0
  256. package/esm2020/inputs/biit-ternary-togle/biit-ternary-toggle.component.mjs +65 -0
  257. package/esm2020/inputs/biit-ternary-togle/biit-ternary-toggle.module.mjs +31 -0
  258. package/esm2020/inputs/biit-textarea/biit-textarea.component.mjs +99 -0
  259. package/esm2020/inputs/biit-textarea/biit-textarea.module.mjs +36 -0
  260. package/esm2020/inputs/biit-toggle/biit-toggle.component.mjs +45 -0
  261. package/esm2020/inputs/biit-toggle/biit-toggle.module.mjs +28 -0
  262. package/esm2020/inputs/biit-toggle-group/biit-toggle-button.component.mjs +23 -0
  263. package/esm2020/inputs/biit-toggle-group/biit-toggle-group.component.mjs +69 -0
  264. package/esm2020/inputs/biit-toggle-group/biit-toggle-group.module.mjs +37 -0
  265. package/esm2020/inputs/public-api.mjs +36 -0
  266. package/esm2020/login/biit-login/biit-login.component.mjs +238 -0
  267. package/esm2020/login/biit-login/biit-login.module.mjs +53 -0
  268. package/esm2020/login/biit-login/models/LoginErrors.mjs +10 -0
  269. package/esm2020/login/biit-login/models/biit-login-service-support.mjs +2 -0
  270. package/esm2020/login/biit-login/models/sign-up-request.mjs +11 -0
  271. package/esm2020/login/biit-solutions-wizardry-theme-login.mjs +5 -0
  272. package/esm2020/login/public-api.mjs +8 -0
  273. package/esm2020/models/BiitLogin.mjs +14 -0
  274. package/esm2020/models/biit-solutions-wizardry-theme-models.mjs +5 -0
  275. package/esm2020/models/public-api.mjs +5 -0
  276. package/esm2020/navigation/biit-nav-menu/biit-nav-menu.component.mjs +87 -0
  277. package/esm2020/navigation/biit-nav-menu/biit-nav-menu.module.mjs +32 -0
  278. package/esm2020/navigation/biit-nav-user/biit-nav-user.component.mjs +26 -0
  279. package/esm2020/navigation/biit-nav-user/biit-nav-user.module.mjs +24 -0
  280. package/esm2020/navigation/biit-solutions-wizardry-theme-navigation.mjs +5 -0
  281. package/esm2020/navigation/biit-tab-group/biit-tab-group.component.mjs +54 -0
  282. package/esm2020/navigation/biit-tab-group/biit-tab-group.module.mjs +36 -0
  283. package/esm2020/navigation/biit-tab-group/biit-tab.component.mjs +21 -0
  284. package/esm2020/navigation/biit-vertical-menu/biit-vertical-menu.component.mjs +30 -0
  285. package/esm2020/navigation/biit-vertical-menu/biit-vertical-menu.module.mjs +36 -0
  286. package/esm2020/navigation/public-api.mjs +13 -0
  287. package/esm2020/popup/biit-popup/biit-popup.component.mjs +156 -0
  288. package/esm2020/popup/biit-popup/biit-popup.module.mjs +52 -0
  289. package/esm2020/popup/biit-solutions-wizardry-theme-popup.mjs +5 -0
  290. package/esm2020/popup/public-api.mjs +6 -0
  291. package/esm2020/public-api.mjs +6 -0
  292. package/esm2020/table/biit-datatable/biit-datatable.component.mjs +138 -0
  293. package/esm2020/table/biit-datatable/biit-datatable.module.mjs +62 -0
  294. package/esm2020/table/biit-datatable/models/datatable-column.mjs +15 -0
  295. package/esm2020/table/biit-datatable/models/page.mjs +11 -0
  296. package/esm2020/table/biit-datatable-pager/biit-datatable-pager.component.mjs +35 -0
  297. package/esm2020/table/biit-datatable-pager/biit-datatable-pager.module.mjs +40 -0
  298. package/esm2020/table/biit-paginator/biit-paginator.component.mjs +196 -0
  299. package/esm2020/table/biit-paginator/biit-paginator.module.mjs +48 -0
  300. package/esm2020/table/biit-paginator/models/biit-paginator-options.mjs +11 -0
  301. package/esm2020/table/biit-solutions-wizardry-theme-table.mjs +5 -0
  302. package/esm2020/table/biit-table/biit-table.component.mjs +301 -0
  303. package/esm2020/table/biit-table/biit-table.module.mjs +95 -0
  304. package/esm2020/table/biit-table/models/biit-table-action-response.mjs +7 -0
  305. package/esm2020/table/biit-table/models/biit-table-column.mjs +21 -0
  306. package/esm2020/table/biit-table/models/biit-table-data.mjs +7 -0
  307. package/esm2020/table/biit-table/models/biit-table-response.mjs +9 -0
  308. package/esm2020/table/biit-table/models/biit-table-sorting.mjs +12 -0
  309. package/esm2020/table/biit-table/models/column-resize-handler.mjs +3 -0
  310. package/esm2020/table/biit-table/pipes/column-data-pipe.mjs +21 -0
  311. package/esm2020/table/biit-table/pipes/visible-columns-pipe.mjs +16 -0
  312. package/esm2020/table/public-api.mjs +20 -0
  313. package/esm2020/table/utils/generic-filter.mjs +47 -0
  314. package/esm2020/table/utils/generic-sort.mjs +42 -0
  315. package/esm2020/utils/biit-solutions-wizardry-theme-utils.mjs +5 -0
  316. package/esm2020/utils/error-handler.mjs +24 -0
  317. package/esm2020/utils/i-stack.mjs +2 -0
  318. package/esm2020/utils/input-limits.mjs +8 -0
  319. package/esm2020/utils/pipes/localized-date-pipe.mjs +23 -0
  320. package/esm2020/utils/pipes/localized-date-pipe.module.mjs +17 -0
  321. package/esm2020/utils/pipes/map-get-pipe.mjs +21 -0
  322. package/esm2020/utils/pipes/map-get-pipe.module.mjs +17 -0
  323. package/esm2020/utils/public-api.mjs +11 -0
  324. package/esm2020/utils/stack.mjs +22 -0
  325. package/fesm2015/biit-solutions-wizardry-theme-button.mjs +233 -0
  326. package/fesm2015/biit-solutions-wizardry-theme-button.mjs.map +1 -0
  327. package/fesm2015/biit-solutions-wizardry-theme-calendar.mjs +369 -0
  328. package/fesm2015/biit-solutions-wizardry-theme-calendar.mjs.map +1 -0
  329. package/fesm2015/biit-solutions-wizardry-theme-charts.mjs +2780 -0
  330. package/fesm2015/biit-solutions-wizardry-theme-charts.mjs.map +1 -0
  331. package/fesm2015/biit-solutions-wizardry-theme-i18n.mjs +118 -0
  332. package/fesm2015/biit-solutions-wizardry-theme-i18n.mjs.map +1 -0
  333. package/fesm2015/biit-solutions-wizardry-theme-icon.mjs +147 -0
  334. package/fesm2015/biit-solutions-wizardry-theme-icon.mjs.map +1 -0
  335. package/fesm2015/biit-solutions-wizardry-theme-info.mjs +572 -0
  336. package/fesm2015/biit-solutions-wizardry-theme-info.mjs.map +1 -0
  337. package/fesm2015/biit-solutions-wizardry-theme-inputs.mjs +2317 -0
  338. package/fesm2015/biit-solutions-wizardry-theme-inputs.mjs.map +1 -0
  339. package/fesm2015/biit-solutions-wizardry-theme-login.mjs +318 -0
  340. package/fesm2015/biit-solutions-wizardry-theme-login.mjs.map +1 -0
  341. package/fesm2015/biit-solutions-wizardry-theme-models.mjs +24 -0
  342. package/fesm2015/biit-solutions-wizardry-theme-models.mjs.map +1 -0
  343. package/fesm2015/biit-solutions-wizardry-theme-navigation.mjs +330 -0
  344. package/fesm2015/biit-solutions-wizardry-theme-navigation.mjs.map +1 -0
  345. package/fesm2015/biit-solutions-wizardry-theme-popup.mjs +216 -0
  346. package/fesm2015/biit-solutions-wizardry-theme-popup.mjs.map +1 -0
  347. package/fesm2015/biit-solutions-wizardry-theme-table.mjs +1067 -0
  348. package/fesm2015/biit-solutions-wizardry-theme-table.mjs.map +1 -0
  349. package/fesm2015/biit-solutions-wizardry-theme-utils.mjs +136 -0
  350. package/fesm2015/biit-solutions-wizardry-theme-utils.mjs.map +1 -0
  351. package/fesm2015/biit-solutions-wizardry-theme.mjs +12 -0
  352. package/fesm2015/biit-solutions-wizardry-theme.mjs.map +1 -0
  353. package/fesm2020/biit-solutions-wizardry-theme-button.mjs +233 -0
  354. package/fesm2020/biit-solutions-wizardry-theme-button.mjs.map +1 -0
  355. package/fesm2020/biit-solutions-wizardry-theme-calendar.mjs +369 -0
  356. package/fesm2020/biit-solutions-wizardry-theme-calendar.mjs.map +1 -0
  357. package/fesm2020/biit-solutions-wizardry-theme-charts.mjs +2746 -0
  358. package/fesm2020/biit-solutions-wizardry-theme-charts.mjs.map +1 -0
  359. package/fesm2020/biit-solutions-wizardry-theme-i18n.mjs +118 -0
  360. package/fesm2020/biit-solutions-wizardry-theme-i18n.mjs.map +1 -0
  361. package/fesm2020/biit-solutions-wizardry-theme-icon.mjs +145 -0
  362. package/fesm2020/biit-solutions-wizardry-theme-icon.mjs.map +1 -0
  363. package/fesm2020/biit-solutions-wizardry-theme-info.mjs +572 -0
  364. package/fesm2020/biit-solutions-wizardry-theme-info.mjs.map +1 -0
  365. package/fesm2020/biit-solutions-wizardry-theme-inputs.mjs +2313 -0
  366. package/fesm2020/biit-solutions-wizardry-theme-inputs.mjs.map +1 -0
  367. package/fesm2020/biit-solutions-wizardry-theme-login.mjs +317 -0
  368. package/fesm2020/biit-solutions-wizardry-theme-login.mjs.map +1 -0
  369. package/fesm2020/biit-solutions-wizardry-theme-models.mjs +24 -0
  370. package/fesm2020/biit-solutions-wizardry-theme-models.mjs.map +1 -0
  371. package/fesm2020/biit-solutions-wizardry-theme-navigation.mjs +328 -0
  372. package/fesm2020/biit-solutions-wizardry-theme-navigation.mjs.map +1 -0
  373. package/fesm2020/biit-solutions-wizardry-theme-popup.mjs +216 -0
  374. package/fesm2020/biit-solutions-wizardry-theme-popup.mjs.map +1 -0
  375. package/fesm2020/biit-solutions-wizardry-theme-table.mjs +1064 -0
  376. package/fesm2020/biit-solutions-wizardry-theme-table.mjs.map +1 -0
  377. package/fesm2020/biit-solutions-wizardry-theme-utils.mjs +135 -0
  378. package/fesm2020/biit-solutions-wizardry-theme-utils.mjs.map +1 -0
  379. package/fesm2020/biit-solutions-wizardry-theme.mjs +12 -0
  380. package/fesm2020/biit-solutions-wizardry-theme.mjs.map +1 -0
  381. package/i18n/i18n/http-loader.d.ts +11 -0
  382. package/i18n/i18n/supported-languages.d.ts +10 -0
  383. package/i18n/i18n/transloco-root.module.d.ts +8 -0
  384. package/i18n/index.d.ts +5 -0
  385. package/i18n/public-api.d.ts +3 -0
  386. package/icon/biit-icon/biit-icon.component.d.ts +23 -0
  387. package/icon/biit-icon/biit-icon.module.d.ts +8 -0
  388. package/icon/biit-icon/biit-icon.service.d.ts +10 -0
  389. package/icon/index.d.ts +5 -0
  390. package/icon/public-api.d.ts +3 -0
  391. package/index.d.ts +5 -0
  392. package/info/biit-cookies-consent/biit-cookies-consent.component.d.ts +8 -0
  393. package/info/biit-cookies-consent/biit-cookies-consent.module.d.ts +11 -0
  394. package/info/biit-gallery-card/biit-gallery-card.component.d.ts +9 -0
  395. package/info/biit-gallery-card/biit-gallery-card.module.d.ts +9 -0
  396. package/info/biit-progress-bar/biit-progress-bar.component.d.ts +13 -0
  397. package/info/biit-progress-bar/biit-progress-bar.module.d.ts +8 -0
  398. package/info/biit-snackbar/biit-notification/biit-notification.component.d.ts +12 -0
  399. package/info/biit-snackbar/biit-snackbar.component.d.ts +12 -0
  400. package/info/biit-snackbar/biit-snackbar.module.d.ts +12 -0
  401. package/info/biit-snackbar/biit-snackbar.service.d.ts +21 -0
  402. package/info/biit-snackbar/models/biit-snackbar-horizontal-position.d.ts +5 -0
  403. package/info/biit-snackbar/models/biit-snackbar-vertical-position.d.ts +4 -0
  404. package/info/biit-snackbar/models/notification-type.d.ts +6 -0
  405. package/info/biit-snackbar/models/notification.d.ts +12 -0
  406. package/info/biit-tooltip/biit-tooltip.component.d.ts +11 -0
  407. package/info/biit-tooltip/biit-tooltip.directive.d.ts +16 -0
  408. package/info/biit-tooltip/biit-tooltip.module.d.ts +9 -0
  409. package/info/biit-tooltip-icon/biit-tooltip-icon.component.d.ts +8 -0
  410. package/info/biit-tooltip-icon/biit-tooltip-icon.module.d.ts +9 -0
  411. package/info/index.d.ts +5 -0
  412. package/info/public-api.d.ts +19 -0
  413. package/inputs/biit-checkbox/biit-checkbox.component.d.ts +16 -0
  414. package/inputs/biit-checkbox/biit-checkbox.module.d.ts +10 -0
  415. package/inputs/biit-datepicker/biit-datepicker.component.d.ts +59 -0
  416. package/inputs/biit-datepicker/biit-datepicker.module.d.ts +20 -0
  417. package/inputs/biit-datepicker/models/view.d.ts +4 -0
  418. package/inputs/biit-datepicker/pipes/calendar-date-pipe.d.ts +8 -0
  419. package/inputs/biit-datepicker/pipes/is-disabled-pipe.d.ts +8 -0
  420. package/inputs/biit-datepicker/pipes/is-same-day-pipe.d.ts +8 -0
  421. package/inputs/biit-datepicker/pipes/is-today-pipe.d.ts +8 -0
  422. package/inputs/biit-datepicker/pipes/month-selector-label-pipe.d.ts +11 -0
  423. package/inputs/biit-datepicker/pipes/out-of-month-pipe.d.ts +8 -0
  424. package/inputs/biit-dropdown/biit-dropdown.component.d.ts +52 -0
  425. package/inputs/biit-dropdown/biit-dropdown.module.d.ts +11 -0
  426. package/inputs/biit-group/biit-group.component.d.ts +14 -0
  427. package/inputs/biit-group/biit-group.module.d.ts +10 -0
  428. package/inputs/biit-input-text/biit-input-text.component.d.ts +44 -0
  429. package/inputs/biit-input-text/biit-input-text.module.d.ts +12 -0
  430. package/inputs/biit-multiselect/biit-multiselect.component.d.ts +63 -0
  431. package/inputs/biit-multiselect/biit-multiselect.module.d.ts +12 -0
  432. package/inputs/biit-radio-button/biit-radio-button.component.d.ts +22 -0
  433. package/inputs/biit-radio-button/biit-radio-button.module.d.ts +11 -0
  434. package/inputs/biit-slider/biit-slider.component.d.ts +27 -0
  435. package/inputs/biit-slider/biit-slider.module.d.ts +10 -0
  436. package/inputs/biit-slider-option/biit-slider-option.component.d.ts +32 -0
  437. package/inputs/biit-slider-option/biit-slider-option.module.d.ts +11 -0
  438. package/inputs/biit-slider-option-vertical/biit-slider-option-vertical.component.d.ts +32 -0
  439. package/inputs/biit-slider-option-vertical/biit-slider-option-vertical.module.d.ts +11 -0
  440. package/inputs/biit-slider-range/biit-slider-range.component.d.ts +28 -0
  441. package/inputs/biit-slider-range/biit-slider-range.module.d.ts +10 -0
  442. package/inputs/biit-ternary-togle/biit-ternary-toggle.component.d.ts +15 -0
  443. package/inputs/biit-ternary-togle/biit-ternary-toggle.module.d.ts +9 -0
  444. package/inputs/biit-textarea/biit-textarea.component.d.ts +31 -0
  445. package/inputs/biit-textarea/biit-textarea.module.d.ts +11 -0
  446. package/inputs/biit-toggle/biit-toggle.component.d.ts +14 -0
  447. package/inputs/biit-toggle/biit-toggle.module.d.ts +9 -0
  448. package/inputs/biit-toggle-group/biit-toggle-button.component.d.ts +12 -0
  449. package/inputs/biit-toggle-group/biit-toggle-group.component.d.ts +19 -0
  450. package/inputs/biit-toggle-group/biit-toggle-group.module.d.ts +11 -0
  451. package/inputs/index.d.ts +5 -0
  452. package/inputs/public-api.d.ts +32 -0
  453. package/login/biit-login/biit-login.component.d.ts +59 -0
  454. package/login/biit-login/biit-login.module.d.ts +14 -0
  455. package/login/biit-login/models/LoginErrors.d.ts +8 -0
  456. package/login/biit-login/models/biit-login-service-support.d.ts +3 -0
  457. package/login/biit-login/models/sign-up-request.d.ts +10 -0
  458. package/login/index.d.ts +5 -0
  459. package/login/public-api.d.ts +4 -0
  460. package/models/BiitLogin.d.ts +6 -0
  461. package/models/index.d.ts +5 -0
  462. package/models/public-api.d.ts +1 -0
  463. package/navigation/biit-nav-menu/biit-nav-menu.component.d.ts +31 -0
  464. package/navigation/biit-nav-menu/biit-nav-menu.module.d.ts +10 -0
  465. package/navigation/biit-nav-user/biit-nav-user.component.d.ts +10 -0
  466. package/navigation/biit-nav-user/biit-nav-user.module.d.ts +8 -0
  467. package/navigation/biit-tab-group/biit-tab-group.component.d.ts +18 -0
  468. package/navigation/biit-tab-group/biit-tab-group.module.d.ts +10 -0
  469. package/navigation/biit-tab-group/biit-tab.component.d.ts +8 -0
  470. package/navigation/biit-vertical-menu/biit-vertical-menu.component.d.ts +11 -0
  471. package/navigation/biit-vertical-menu/biit-vertical-menu.module.d.ts +12 -0
  472. package/navigation/index.d.ts +5 -0
  473. package/navigation/public-api.d.ts +9 -0
  474. package/package.json +151 -0
  475. package/popup/biit-popup/biit-popup.component.d.ts +66 -0
  476. package/popup/biit-popup/biit-popup.module.d.ts +9 -0
  477. package/popup/index.d.ts +5 -0
  478. package/popup/public-api.d.ts +2 -0
  479. package/public-api.d.ts +1 -0
  480. package/styles.scss +128 -0
  481. package/table/biit-datatable/biit-datatable.component.d.ts +57 -0
  482. package/table/biit-datatable/biit-datatable.module.d.ts +15 -0
  483. package/table/biit-datatable/models/datatable-column.d.ts +192 -0
  484. package/table/biit-datatable/models/page.d.ts +6 -0
  485. package/table/biit-datatable-pager/biit-datatable-pager.component.d.ts +10 -0
  486. package/table/biit-datatable-pager/biit-datatable-pager.module.d.ts +13 -0
  487. package/table/biit-paginator/biit-paginator.component.d.ts +31 -0
  488. package/table/biit-paginator/biit-paginator.module.d.ts +13 -0
  489. package/table/biit-paginator/models/biit-paginator-options.d.ts +9 -0
  490. package/table/biit-table/biit-table.component.d.ts +87 -0
  491. package/table/biit-table/biit-table.module.d.ts +19 -0
  492. package/table/biit-table/models/biit-table-action-response.d.ts +5 -0
  493. package/table/biit-table/models/biit-table-column.d.ts +18 -0
  494. package/table/biit-table/models/biit-table-data.d.ts +5 -0
  495. package/table/biit-table/models/biit-table-response.d.ts +8 -0
  496. package/table/biit-table/models/biit-table-sorting.d.ts +9 -0
  497. package/table/biit-table/models/column-resize-handler.d.ts +7 -0
  498. package/table/biit-table/pipes/column-data-pipe.d.ts +7 -0
  499. package/table/biit-table/pipes/visible-columns-pipe.d.ts +8 -0
  500. package/table/index.d.ts +5 -0
  501. package/table/public-api.d.ts +16 -0
  502. package/table/utils/generic-filter.d.ts +3 -0
  503. package/table/utils/generic-sort.d.ts +5 -0
  504. package/utils/error-handler.d.ts +6 -0
  505. package/utils/i-stack.d.ts +6 -0
  506. package/utils/index.d.ts +5 -0
  507. package/utils/input-limits.d.ts +7 -0
  508. package/utils/pipes/localized-date-pipe.d.ts +10 -0
  509. package/utils/pipes/localized-date-pipe.module.d.ts +7 -0
  510. package/utils/pipes/map-get-pipe.d.ts +7 -0
  511. package/utils/pipes/map-get-pipe.module.d.ts +7 -0
  512. package/utils/public-api.d.ts +7 -0
  513. package/utils/stack.d.ts +10 -0
@@ -0,0 +1,330 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, EventEmitter, ContentChildren, ViewChild, Output, NgModule, ElementRef, ViewEncapsulation } from '@angular/core';
3
+ import * as i2 from '@biit-solutions/wizardry-theme/info';
4
+ import { BiitProgressBarType, BiitTooltipModule, BiitProgressBarModule } from '@biit-solutions/wizardry-theme/info';
5
+ import * as i1 from '@angular/common';
6
+ import { CommonModule } from '@angular/common';
7
+ import { fromEvent } from 'rxjs';
8
+ import { auditTime } from 'rxjs/operators';
9
+ import * as i1$1 from '@angular/router';
10
+ import { RouterModule } from '@angular/router';
11
+ import * as i2$1 from '@perfectmemory/ngx-contextmenu';
12
+ import { ContextMenuModule } from '@perfectmemory/ngx-contextmenu';
13
+ import * as i1$2 from '@angular/cdk/overlay';
14
+ import { OverlayModule } from '@angular/cdk/overlay';
15
+ import * as i2$2 from '@biit-solutions/wizardry-theme/button';
16
+ import { BiitIconButtonModule } from '@biit-solutions/wizardry-theme/button';
17
+ import { BiitIconModule } from '@biit-solutions/wizardry-theme/icon';
18
+
19
+ class BiitTabComponent {
20
+ constructor() {
21
+ this.active = false;
22
+ this.error = false;
23
+ }
24
+ }
25
+ BiitTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
26
+ BiitTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BiitTabComponent, selector: "biit-tab", inputs: { name: "name", active: "active", error: "error" }, ngImport: i0, template: '<div [hidden]="!active" [class.inner-content]="active"><ng-content></ng-content></div>', isInline: true, styles: [".inner-content{display:contents;min-height:100%}\n"] });
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabComponent, decorators: [{
28
+ type: Component,
29
+ args: [{ selector: 'biit-tab', template: '<div [hidden]="!active" [class.inner-content]="active"><ng-content></ng-content></div>', styles: [".inner-content{display:contents;min-height:100%}\n"] }]
30
+ }], propDecorators: { name: [{
31
+ type: Input
32
+ }], active: [{
33
+ type: Input
34
+ }], error: [{
35
+ type: Input
36
+ }] } });
37
+
38
+ class BiitTabGroupComponent {
39
+ constructor() {
40
+ this.loading = false;
41
+ this.onTabClick = new EventEmitter();
42
+ this.compactMode = false;
43
+ this.BiitProgressBarType = BiitProgressBarType;
44
+ }
45
+ ngAfterViewInit() {
46
+ let activeTabs = this.tabs.filter(tab => tab.active);
47
+ if (!activeTabs.length) {
48
+ this.activateTab(this.tabs.first);
49
+ }
50
+ this.checkHeaders();
51
+ }
52
+ activateTab(tab) {
53
+ this.tabs.toArray().forEach(item => item.active = false);
54
+ tab.active = true;
55
+ this.onTabClick.emit(tab);
56
+ }
57
+ getActiveTab() {
58
+ return this.tabs.find(item => item.active);
59
+ }
60
+ checkHeaders() {
61
+ this.header.nativeElement.querySelectorAll('.tab-selector').forEach(i => {
62
+ if (i.firstChild.offsetHeight > parseFloat(getComputedStyle(document.documentElement).fontSize) * 1.2) {
63
+ this.compactMode = true;
64
+ return;
65
+ }
66
+ });
67
+ }
68
+ }
69
+ BiitTabGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70
+ BiitTabGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BiitTabGroupComponent, selector: "biit-tab-group", inputs: { loading: "loading" }, outputs: { onTabClick: "onTabClick" }, queries: [{ propertyName: "tabs", predicate: BiitTabComponent }], viewQueries: [{ propertyName: "header", first: true, predicate: ["tabHeader"], descendants: true }], ngImport: i0, template: "<div class=\"tab-group\" id=\"tabs\">\n <div class=\"tab-header\" #tabHeader>\n <div *ngFor=\"let tab of tabs\"\n [attr.id]=\"'tab-' + tab.name\"\n (click)=\"activateTab(tab)\"\n [class.active]=\"tab.active\"\n [class.error]=\"tab.error\"\n [class.compact-mode]=\"compactMode\"\n class=\"tab-selector\"\n [tooltip]=\"compactMode && !tab.active ? tab.name : null\"\n >\n <a>{{ tab.name }}</a>\n </div>\n </div>\n <biit-progress-bar *ngIf=\"loading\"\n [type]=\"BiitProgressBarType.INDETERMINATE\"\n ></biit-progress-bar>\n <div class=\"content\">\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [".tab-group{width:inherit;height:inherit;max-height:100%;line-height:100%;display:flex;flex-direction:column;background:transparent}.tab-group>.tab-header{width:100%;height:calc(2rem + 3px);min-height:calc(2rem + 3px);font-weight:400;font-size:1rem;display:flex}.tab-group>.tab-header>.tab-selector{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;cursor:pointer;-webkit-user-select:none;user-select:none;padding:0 1rem;border-bottom:3px solid transparent}.tab-group>.tab-header>.tab-selector.compact-mode.active{min-width:20%}.tab-group>.tab-header>.tab-selector.compact-mode:not(.active) a{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.tab-group>.tab-header>.tab-selector.error{color:#a1093f}.tab-group>.tab-header>.tab-selector.active{flex-shrink:0}.tab-group>.tab-header>.tab-selector.active.error{color:#a1093f;border-bottom:3px solid #A1093F}.tab-group>.tab-header>.tab-selector.active:not(.error){color:#262626;border-bottom:3px solid #262626}.tab-group>.tab-header>.tab-selector:not(.active){color:gray;flex-basis:50%;flex-wrap:wrap;min-width:0}.tab-group>.tab-header>.tab-selector:not(.active).error{color:#a1093f}.tab-group>.tab-header>.tab-selector:not(.active):hover:not(.error){border-bottom:3px solid #808080;color:gray}.tab-group>.tab-header>.tab-selector:not(.active):hover.error{border-bottom:3px solid #A1093F;color:#a1093f}.tab-group>.content{padding:1.5rem;overflow-y:scroll;flex-grow:1}\n"], dependencies: [{ 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.BiitTooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "ignorePadding"] }, { kind: "component", type: i2.BiitProgressBarComponent, selector: "biit-progress-bar", inputs: ["type", "_value", "value"] }] });
71
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabGroupComponent, decorators: [{
72
+ type: Component,
73
+ args: [{ selector: 'biit-tab-group', template: "<div class=\"tab-group\" id=\"tabs\">\n <div class=\"tab-header\" #tabHeader>\n <div *ngFor=\"let tab of tabs\"\n [attr.id]=\"'tab-' + tab.name\"\n (click)=\"activateTab(tab)\"\n [class.active]=\"tab.active\"\n [class.error]=\"tab.error\"\n [class.compact-mode]=\"compactMode\"\n class=\"tab-selector\"\n [tooltip]=\"compactMode && !tab.active ? tab.name : null\"\n >\n <a>{{ tab.name }}</a>\n </div>\n </div>\n <biit-progress-bar *ngIf=\"loading\"\n [type]=\"BiitProgressBarType.INDETERMINATE\"\n ></biit-progress-bar>\n <div class=\"content\">\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [".tab-group{width:inherit;height:inherit;max-height:100%;line-height:100%;display:flex;flex-direction:column;background:transparent}.tab-group>.tab-header{width:100%;height:calc(2rem + 3px);min-height:calc(2rem + 3px);font-weight:400;font-size:1rem;display:flex}.tab-group>.tab-header>.tab-selector{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;cursor:pointer;-webkit-user-select:none;user-select:none;padding:0 1rem;border-bottom:3px solid transparent}.tab-group>.tab-header>.tab-selector.compact-mode.active{min-width:20%}.tab-group>.tab-header>.tab-selector.compact-mode:not(.active) a{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.tab-group>.tab-header>.tab-selector.error{color:#a1093f}.tab-group>.tab-header>.tab-selector.active{flex-shrink:0}.tab-group>.tab-header>.tab-selector.active.error{color:#a1093f;border-bottom:3px solid #A1093F}.tab-group>.tab-header>.tab-selector.active:not(.error){color:#262626;border-bottom:3px solid #262626}.tab-group>.tab-header>.tab-selector:not(.active){color:gray;flex-basis:50%;flex-wrap:wrap;min-width:0}.tab-group>.tab-header>.tab-selector:not(.active).error{color:#a1093f}.tab-group>.tab-header>.tab-selector:not(.active):hover:not(.error){border-bottom:3px solid #808080;color:gray}.tab-group>.tab-header>.tab-selector:not(.active):hover.error{border-bottom:3px solid #A1093F;color:#a1093f}.tab-group>.content{padding:1.5rem;overflow-y:scroll;flex-grow:1}\n"] }]
74
+ }], propDecorators: { tabs: [{
75
+ type: ContentChildren,
76
+ args: [BiitTabComponent]
77
+ }], header: [{
78
+ type: ViewChild,
79
+ args: ['tabHeader']
80
+ }], loading: [{
81
+ type: Input
82
+ }], onTabClick: [{
83
+ type: Output
84
+ }] } });
85
+
86
+ class BiitTabGroupModule {
87
+ }
88
+ BiitTabGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
89
+ BiitTabGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BiitTabGroupModule, declarations: [BiitTabGroupComponent,
90
+ BiitTabComponent], imports: [CommonModule,
91
+ BiitTooltipModule,
92
+ BiitProgressBarModule], exports: [BiitTabGroupComponent,
93
+ BiitTabComponent] });
94
+ BiitTabGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabGroupModule, imports: [CommonModule,
95
+ BiitTooltipModule,
96
+ BiitProgressBarModule] });
97
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitTabGroupModule, decorators: [{
98
+ type: NgModule,
99
+ args: [{
100
+ declarations: [
101
+ BiitTabGroupComponent,
102
+ BiitTabComponent
103
+ ],
104
+ imports: [
105
+ CommonModule,
106
+ BiitTooltipModule,
107
+ BiitProgressBarModule
108
+ ],
109
+ exports: [
110
+ BiitTabGroupComponent,
111
+ BiitTabComponent
112
+ ]
113
+ }]
114
+ }] });
115
+
116
+ class BiitNavUserComponent {
117
+ constructor() {
118
+ this.title = '';
119
+ this.subtitle = '';
120
+ }
121
+ ngOnInit() {
122
+ this.leftAlign = this.leftAlign !== undefined;
123
+ }
124
+ }
125
+ BiitNavUserComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavUserComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
126
+ BiitNavUserComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BiitNavUserComponent, selector: "biit-nav-user", inputs: { title: "title", subtitle: "subtitle", leftAlign: ["left-align", "leftAlign"] }, ngImport: i0, template: "<div class=\"navbar-user-canvas\" [class.left-align]=\"leftAlign\" id=\"user-area\">\n <div class=\"content\">\n <div class=\"titles\" id=\"user-name\">\n <a *ngIf=\"subtitle?.length\" class=\"subtitle\">{{subtitle}}</a>\n <a>{{title?.length ? (title.length > 16 && title.split(\" \").length > 1 ? title.split(\" \")[0].substring(0, 1) + '. ' + title.split(\" \")[1] : title) : ''}}</a>\n </div>\n <div class=\"avatar\" id=\"user-avatar\">\n <a>{{title?.length ? title.substring(0,1) + title.split(\" \")[1]?.substring(0,1) : ''}}</a>\n </div>\n </div>\n</div>\n", styles: [".navbar-user-canvas{height:2.5rem;width:15rem;display:flex;flex-direction:row;justify-content:flex-end;box-sizing:border-box}.navbar-user-canvas .content{height:inherit;display:flex;flex-direction:row;align-items:center;column-gap:1rem;box-sizing:border-box;padding:.4rem .4rem .4rem .6rem;-webkit-user-select:none;user-select:none;cursor:pointer}.navbar-user-canvas .content:hover{background:#D9D9D9}.navbar-user-canvas .content:active{background:#EDEDED}.navbar-user-canvas .content .titles{display:flex;flex-direction:column;text-align:right;line-height:1rem;width:11.5rem}.navbar-user-canvas .content .titles *{width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.navbar-user-canvas .content .titles .subtitle{font-size:.7rem;text-transform:uppercase}.navbar-user-canvas .content .avatar{height:1.7rem;width:1.7rem;background:#F20D5E;display:flex;align-items:center;justify-content:center;flex-shrink:0}.navbar-user-canvas .content .avatar a{text-transform:uppercase;font-size:.7rem;color:#fff}.navbar-user-canvas.left-align{justify-content:flex-start}.navbar-user-canvas.left-align .content{flex-direction:row-reverse;padding:.4rem .6rem .4rem .4rem}.navbar-user-canvas.left-align .content .titles{text-align:left}@media screen and (max-width: 600px){.navbar-user-canvas{width:unset!important}.titles{display:none!important}}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
127
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavUserComponent, decorators: [{
128
+ type: Component,
129
+ args: [{ selector: 'biit-nav-user', template: "<div class=\"navbar-user-canvas\" [class.left-align]=\"leftAlign\" id=\"user-area\">\n <div class=\"content\">\n <div class=\"titles\" id=\"user-name\">\n <a *ngIf=\"subtitle?.length\" class=\"subtitle\">{{subtitle}}</a>\n <a>{{title?.length ? (title.length > 16 && title.split(\" \").length > 1 ? title.split(\" \")[0].substring(0, 1) + '. ' + title.split(\" \")[1] : title) : ''}}</a>\n </div>\n <div class=\"avatar\" id=\"user-avatar\">\n <a>{{title?.length ? title.substring(0,1) + title.split(\" \")[1]?.substring(0,1) : ''}}</a>\n </div>\n </div>\n</div>\n", styles: [".navbar-user-canvas{height:2.5rem;width:15rem;display:flex;flex-direction:row;justify-content:flex-end;box-sizing:border-box}.navbar-user-canvas .content{height:inherit;display:flex;flex-direction:row;align-items:center;column-gap:1rem;box-sizing:border-box;padding:.4rem .4rem .4rem .6rem;-webkit-user-select:none;user-select:none;cursor:pointer}.navbar-user-canvas .content:hover{background:#D9D9D9}.navbar-user-canvas .content:active{background:#EDEDED}.navbar-user-canvas .content .titles{display:flex;flex-direction:column;text-align:right;line-height:1rem;width:11.5rem}.navbar-user-canvas .content .titles *{width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.navbar-user-canvas .content .titles .subtitle{font-size:.7rem;text-transform:uppercase}.navbar-user-canvas .content .avatar{height:1.7rem;width:1.7rem;background:#F20D5E;display:flex;align-items:center;justify-content:center;flex-shrink:0}.navbar-user-canvas .content .avatar a{text-transform:uppercase;font-size:.7rem;color:#fff}.navbar-user-canvas.left-align{justify-content:flex-start}.navbar-user-canvas.left-align .content{flex-direction:row-reverse;padding:.4rem .6rem .4rem .4rem}.navbar-user-canvas.left-align .content .titles{text-align:left}@media screen and (max-width: 600px){.navbar-user-canvas{width:unset!important}.titles{display:none!important}}\n"] }]
130
+ }], propDecorators: { title: [{
131
+ type: Input
132
+ }], subtitle: [{
133
+ type: Input
134
+ }], leftAlign: [{
135
+ type: Input,
136
+ args: ['left-align']
137
+ }] } });
138
+
139
+ class BiitNavUserModule {
140
+ }
141
+ BiitNavUserModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavUserModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
142
+ BiitNavUserModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BiitNavUserModule, declarations: [BiitNavUserComponent], imports: [CommonModule], exports: [BiitNavUserComponent] });
143
+ BiitNavUserModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavUserModule, imports: [CommonModule] });
144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavUserModule, decorators: [{
145
+ type: NgModule,
146
+ args: [{
147
+ declarations: [
148
+ BiitNavUserComponent
149
+ ],
150
+ imports: [
151
+ CommonModule
152
+ ],
153
+ exports: [
154
+ BiitNavUserComponent
155
+ ]
156
+ }]
157
+ }] });
158
+
159
+ class BiitNavMenuComponent {
160
+ constructor(router, contextMenuService) {
161
+ this.router = router;
162
+ this.contextMenuService = contextMenuService;
163
+ this.routes = [];
164
+ this.submenuHover = false;
165
+ this.clearTimeout = clearTimeout;
166
+ this.contextMenuItems = [];
167
+ this.hasOverflow = false;
168
+ this.showLeft = false;
169
+ this.showRight = false;
170
+ }
171
+ ngAfterViewInit() {
172
+ this.updateArrows();
173
+ fromEvent(this.menuCanvas.nativeElement, 'scroll')
174
+ .pipe(auditTime(50))
175
+ .subscribe(() => this.updateArrows());
176
+ const ro = new ResizeObserver(() => this.updateArrows());
177
+ ro.observe(this.menuCanvas.nativeElement);
178
+ }
179
+ updateArrows() {
180
+ const el = this.menuCanvas.nativeElement;
181
+ this.hasOverflow = el.scrollWidth > el.clientWidth;
182
+ this.showLeft = this.hasOverflow && el.scrollLeft > 0;
183
+ this.showRight = this.hasOverflow && (el.scrollLeft + el.clientWidth < el.scrollWidth);
184
+ }
185
+ scrollLeft() {
186
+ this.menuCanvas.nativeElement.scrollBy({ left: -200, behavior: 'smooth' });
187
+ }
188
+ scrollRight() {
189
+ this.menuCanvas.nativeElement.scrollBy({ left: 200, behavior: 'smooth' });
190
+ }
191
+ onContextMenu(route, navItem) {
192
+ var _a;
193
+ this.hovered = route;
194
+ this.contextMenuItems = (_a = route.children) === null || _a === void 0 ? void 0 : _a.map(item => {
195
+ var _a, _b;
196
+ return {
197
+ title: item.title,
198
+ disabled: (_a = item.data) === null || _a === void 0 ? void 0 : _a['disabled'],
199
+ visible: !((_b = item.data) === null || _b === void 0 ? void 0 : _b['hidden']),
200
+ path: item.path,
201
+ parent: route.path
202
+ };
203
+ });
204
+ this.timeout = setTimeout(() => {
205
+ this.openMenu(navItem);
206
+ }, 50);
207
+ }
208
+ openMenu(navItem) {
209
+ const rect = navItem.getBoundingClientRect();
210
+ let x = rect.left + window.scrollX;
211
+ let y = rect.bottom + window.scrollY;
212
+ // Optional: avoid clipping on the right edge
213
+ const maxX = window.scrollX + window.innerWidth - 10;
214
+ if (x > maxX) {
215
+ x = maxX;
216
+ }
217
+ this.contextMenuService.show(this.contextMenu, { x, y });
218
+ }
219
+ log(event) {
220
+ console.debug("DEVELOPMENT LOG: ", event);
221
+ }
222
+ }
223
+ BiitNavMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavMenuComponent, deps: [{ token: i1$1.Router }, { token: i2$1.ContextMenuService }], target: i0.ɵɵFactoryTarget.Component });
224
+ BiitNavMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BiitNavMenuComponent, selector: "biit-nav-menu", inputs: { routes: "routes" }, viewQueries: [{ propertyName: "contextMenu", first: true, predicate: ["navbarMenu"], descendants: true }, { propertyName: "navbarRef", first: true, predicate: ["navbarMenu"], descendants: true, read: ElementRef }, { propertyName: "menuCanvas", first: true, predicate: ["menuCanvas"], descendants: true, static: true }], ngImport: i0, template: "<div class=\"nav-wrapper\">\n <button class=\"nav-arrow left\"\n *ngIf=\"showLeft\"\n (click)=\"scrollLeft()\"\n aria-label=\"Scroll left\">\n \u2039\n </button>\n\n <div #menuCanvas class=\"navbar-menu-canvas scroll-x\">\n <div class=\"item\" #navItem\n *ngFor=\"let route of routes\"\n [attr.id]=\"'nav-item-' + route.path\"\n [routerLink]=\"route.children ? null : [route.path]\"\n [routerLinkActive]=\"['active']\"\n [class.active]=\"router.url.includes('/'+route.path)\"\n [class.hover]=\"route == hovered && contextMenuService.hasOpenMenu()\"\n [class.disabled]=\"route.data?.['disabled']\"\n [style.display]=\"route.data?.['hidden'] ? 'none' : 'inline-flex'\"\n (click)=\"route.children ? onContextMenu(route, navItem) : null\">\n {{ route.title }}\n <context-menu #navbarMenu menuClass=\"custom-style\">\n <ng-template contextMenuItem\n *ngFor=\"let item of contextMenuItems\"\n [disabled]=\"item.disabled\"\n [visible]=\"item.visible\"\n (execute)=\"router.navigate([item.parent, item.path])\">\n <div [attr.id]=\"'nav-subitem-' + item.path\"\n [class.active]=\"router.url.includes('/' + item.parent + '/' + item.path)\">\n {{ item.title }}\n </div>\n </ng-template>\n </context-menu>\n </div>\n </div>\n\n <button class=\"nav-arrow right\"\n *ngIf=\"showRight\"\n (click)=\"scrollRight()\n\"\n aria-label=\"Scroll right\">\n \u203A\n </button>\n</div>\n", styles: ["@charset \"UTF-8\";.navbar-menu-canvas{height:2.5rem;display:flex;background:white;overflow-x:auto}.navbar-menu-canvas .item{display:inline-flex;align-items:center;justify-content:center;padding:0 1rem;-webkit-user-select:none;user-select:none;cursor:pointer}.navbar-menu-canvas .item:active,.navbar-menu-canvas .item.active,.navbar-menu-canvas .item.open{background:#EDEDED}.navbar-menu-canvas .item:hover,.navbar-menu-canvas .item.hover{background:#D9D9D9}.disabled{color:#ededed;pointer-events:none}.nav-wrapper{position:relative;display:flex;align-items:stretch}.navbar-menu-canvas.scroll-x{overflow-x:auto;overflow-y:hidden;display:flex;gap:.5rem;scrollbar-width:none}.navbar-menu-canvas.scroll-x::-webkit-scrollbar{display:none}.item{flex:0 0 auto}.nav-arrow{position:absolute;top:0;bottom:0;width:32px;padding:0;border:none;background:linear-gradient(to right,rgba(255,255,255,.9),rgba(255,255,255,0)) center/100% 100%;cursor:pointer;font-size:20px;display:flex;align-items:center;justify-content:center;z-index:5;color:#333;backdrop-filter:blur(2px)}.nav-arrow.left{left:0;background:linear-gradient(to right,rgba(255,255,255,.9),transparent)}.nav-arrow.right{right:0;background:linear-gradient(to left,rgba(255,255,255,.9),transparent)}.nav-arrow:hover{color:#000}.custom-style{--ngx-contextmenu-focusable-border-bottom: 1px dotted #70757e;--ngx-contextmenu-border-radius: 4px;--ngx-contextmenu-border: 1px solid rgba(0, 0, 0, .18);--ngx-contextmenu-margin: 2px 0 0;--ngx-contextmenu-min-width: 160px;--ngx-contextmenu-padding: 5px 0;--ngx-contextmenu-max-height: 100vh;--ngx-contextmenu-item-arrow-left: \"\\25c0\";--ngx-contextmenu-item-arrow-right: \"\\25b6\";--ngx-contextmenu-item-separator-color: #8a909a;--ngx-contextmenu-item-separator-padding: 10px;--ngx-contextmenu-item-separator-width: 96%;--ngx-contextmenu-item-padding: 6px 20px;--ngx-contextmenu-item-text-hover-color: #5a6473}\n"], dependencies: [{ 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: i1$1.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i1$1.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "component", type: i2$1.ContextMenuComponent, selector: "context-menu", inputs: ["menuClass", "disabled", "dir"], outputs: ["open", "close"] }, { kind: "directive", type: i2$1.ContextMenuItemDirective, selector: "[contextMenuItem]", inputs: ["subMenu", "divider", "disabled", "passive", "visible"], outputs: ["execute"] }], encapsulation: i0.ViewEncapsulation.None });
225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavMenuComponent, decorators: [{
226
+ type: Component,
227
+ args: [{ selector: 'biit-nav-menu', encapsulation: ViewEncapsulation.None, template: "<div class=\"nav-wrapper\">\n <button class=\"nav-arrow left\"\n *ngIf=\"showLeft\"\n (click)=\"scrollLeft()\"\n aria-label=\"Scroll left\">\n \u2039\n </button>\n\n <div #menuCanvas class=\"navbar-menu-canvas scroll-x\">\n <div class=\"item\" #navItem\n *ngFor=\"let route of routes\"\n [attr.id]=\"'nav-item-' + route.path\"\n [routerLink]=\"route.children ? null : [route.path]\"\n [routerLinkActive]=\"['active']\"\n [class.active]=\"router.url.includes('/'+route.path)\"\n [class.hover]=\"route == hovered && contextMenuService.hasOpenMenu()\"\n [class.disabled]=\"route.data?.['disabled']\"\n [style.display]=\"route.data?.['hidden'] ? 'none' : 'inline-flex'\"\n (click)=\"route.children ? onContextMenu(route, navItem) : null\">\n {{ route.title }}\n <context-menu #navbarMenu menuClass=\"custom-style\">\n <ng-template contextMenuItem\n *ngFor=\"let item of contextMenuItems\"\n [disabled]=\"item.disabled\"\n [visible]=\"item.visible\"\n (execute)=\"router.navigate([item.parent, item.path])\">\n <div [attr.id]=\"'nav-subitem-' + item.path\"\n [class.active]=\"router.url.includes('/' + item.parent + '/' + item.path)\">\n {{ item.title }}\n </div>\n </ng-template>\n </context-menu>\n </div>\n </div>\n\n <button class=\"nav-arrow right\"\n *ngIf=\"showRight\"\n (click)=\"scrollRight()\n\"\n aria-label=\"Scroll right\">\n \u203A\n </button>\n</div>\n", styles: ["@charset \"UTF-8\";.navbar-menu-canvas{height:2.5rem;display:flex;background:white;overflow-x:auto}.navbar-menu-canvas .item{display:inline-flex;align-items:center;justify-content:center;padding:0 1rem;-webkit-user-select:none;user-select:none;cursor:pointer}.navbar-menu-canvas .item:active,.navbar-menu-canvas .item.active,.navbar-menu-canvas .item.open{background:#EDEDED}.navbar-menu-canvas .item:hover,.navbar-menu-canvas .item.hover{background:#D9D9D9}.disabled{color:#ededed;pointer-events:none}.nav-wrapper{position:relative;display:flex;align-items:stretch}.navbar-menu-canvas.scroll-x{overflow-x:auto;overflow-y:hidden;display:flex;gap:.5rem;scrollbar-width:none}.navbar-menu-canvas.scroll-x::-webkit-scrollbar{display:none}.item{flex:0 0 auto}.nav-arrow{position:absolute;top:0;bottom:0;width:32px;padding:0;border:none;background:linear-gradient(to right,rgba(255,255,255,.9),rgba(255,255,255,0)) center/100% 100%;cursor:pointer;font-size:20px;display:flex;align-items:center;justify-content:center;z-index:5;color:#333;backdrop-filter:blur(2px)}.nav-arrow.left{left:0;background:linear-gradient(to right,rgba(255,255,255,.9),transparent)}.nav-arrow.right{right:0;background:linear-gradient(to left,rgba(255,255,255,.9),transparent)}.nav-arrow:hover{color:#000}.custom-style{--ngx-contextmenu-focusable-border-bottom: 1px dotted #70757e;--ngx-contextmenu-border-radius: 4px;--ngx-contextmenu-border: 1px solid rgba(0, 0, 0, .18);--ngx-contextmenu-margin: 2px 0 0;--ngx-contextmenu-min-width: 160px;--ngx-contextmenu-padding: 5px 0;--ngx-contextmenu-max-height: 100vh;--ngx-contextmenu-item-arrow-left: \"\\25c0\";--ngx-contextmenu-item-arrow-right: \"\\25b6\";--ngx-contextmenu-item-separator-color: #8a909a;--ngx-contextmenu-item-separator-padding: 10px;--ngx-contextmenu-item-separator-width: 96%;--ngx-contextmenu-item-padding: 6px 20px;--ngx-contextmenu-item-text-hover-color: #5a6473}\n"] }]
228
+ }], ctorParameters: function () { return [{ type: i1$1.Router }, { type: i2$1.ContextMenuService }]; }, propDecorators: { routes: [{
229
+ type: Input
230
+ }], contextMenu: [{
231
+ type: ViewChild,
232
+ args: ['navbarMenu']
233
+ }], navbarRef: [{
234
+ type: ViewChild,
235
+ args: ['navbarMenu', { read: ElementRef }]
236
+ }], menuCanvas: [{
237
+ type: ViewChild,
238
+ args: ['menuCanvas', { static: true }]
239
+ }] } });
240
+
241
+ class BiitNavMenuModule {
242
+ }
243
+ BiitNavMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
244
+ BiitNavMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BiitNavMenuModule, declarations: [BiitNavMenuComponent], imports: [CommonModule,
245
+ RouterModule,
246
+ ContextMenuModule], exports: [BiitNavMenuComponent] });
247
+ BiitNavMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavMenuModule, imports: [CommonModule,
248
+ RouterModule,
249
+ ContextMenuModule] });
250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitNavMenuModule, decorators: [{
251
+ type: NgModule,
252
+ args: [{
253
+ declarations: [
254
+ BiitNavMenuComponent
255
+ ],
256
+ imports: [
257
+ CommonModule,
258
+ RouterModule,
259
+ ContextMenuModule
260
+ ],
261
+ exports: [
262
+ BiitNavMenuComponent
263
+ ]
264
+ }]
265
+ }] });
266
+
267
+ class BiitVerticalMenuComponent {
268
+ constructor() {
269
+ this.open = false;
270
+ this.positions = [
271
+ { originX: 'start', originY: 'bottom', overlayX: 'start', overlayY: 'top', offsetY: 4 },
272
+ { originX: 'end', originY: 'bottom', overlayX: 'end', overlayY: 'top', offsetY: 4 }
273
+ ];
274
+ }
275
+ toggleMenu() {
276
+ this.open = !this.open;
277
+ }
278
+ close() {
279
+ this.open = false;
280
+ }
281
+ onSelect(key) {
282
+ // emitir evento o lógica
283
+ this.close();
284
+ }
285
+ }
286
+ BiitVerticalMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitVerticalMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
287
+ BiitVerticalMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BiitVerticalMenuComponent, selector: "biit-vertical-menu", ngImport: i0, template: "<div class=\"vertical-container\">\n <button\n biit-icon\n icon=\"project_add\"\n cdkOverlayOrigin\n #trigger=\"cdkOverlayOrigin\"\n class=\"icon-btn\"\n type=\"button\"\n (click)=\"toggleMenu()\">\n </button>\n\n <ng-template\n cdkConnectedOverlay\n [cdkConnectedOverlayOrigin]=\"trigger\"\n [cdkConnectedOverlayOpen]=\"open\"\n [cdkConnectedOverlayPositions]=\"positions\"\n (overlayOutsideClick)=\"close()\"\n (detach)=\"close()\">\n <div class=\"floating-menu\" role=\"menu\">\n <ng-content></ng-content>\n </div>\n </ng-template>\n\n\n</div>\n", styles: [".vertical-container{position:relative;display:flex;flex-direction:column;gap:4px}.icon-btn{padding:4px;cursor:pointer;display:inline-flex;align-items:center}.icon-btn:focus-visible{outline:2px solid #1976d2;border-radius:4px}.floating-menu{background:#fff;border:3px solid #262626;padding:4px;box-shadow:0 4px 12px #00000026;display:flex;flex-direction:column;z-index:1000}.floating-menu button{background:none;border:none;text-align:left;padding:6px 10px;cursor:pointer;border-radius:4px}.floating-menu button:hover{background:#f3f3f3}\n"], dependencies: [{ kind: "directive", type: i1$2.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "directive", type: i1$2.CdkOverlayOrigin, selector: "[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]", exportAs: ["cdkOverlayOrigin"] }, { kind: "component", type: i2$2.BiitIconButtonComponent, selector: "button[biit-icon]", inputs: ["icon", "checked"] }] });
288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitVerticalMenuComponent, decorators: [{
289
+ type: Component,
290
+ args: [{ selector: 'biit-vertical-menu', template: "<div class=\"vertical-container\">\n <button\n biit-icon\n icon=\"project_add\"\n cdkOverlayOrigin\n #trigger=\"cdkOverlayOrigin\"\n class=\"icon-btn\"\n type=\"button\"\n (click)=\"toggleMenu()\">\n </button>\n\n <ng-template\n cdkConnectedOverlay\n [cdkConnectedOverlayOrigin]=\"trigger\"\n [cdkConnectedOverlayOpen]=\"open\"\n [cdkConnectedOverlayPositions]=\"positions\"\n (overlayOutsideClick)=\"close()\"\n (detach)=\"close()\">\n <div class=\"floating-menu\" role=\"menu\">\n <ng-content></ng-content>\n </div>\n </ng-template>\n\n\n</div>\n", styles: [".vertical-container{position:relative;display:flex;flex-direction:column;gap:4px}.icon-btn{padding:4px;cursor:pointer;display:inline-flex;align-items:center}.icon-btn:focus-visible{outline:2px solid #1976d2;border-radius:4px}.floating-menu{background:#fff;border:3px solid #262626;padding:4px;box-shadow:0 4px 12px #00000026;display:flex;flex-direction:column;z-index:1000}.floating-menu button{background:none;border:none;text-align:left;padding:6px 10px;cursor:pointer;border-radius:4px}.floating-menu button:hover{background:#f3f3f3}\n"] }]
291
+ }] });
292
+
293
+ class BiitVerticalMenuModule {
294
+ }
295
+ BiitVerticalMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitVerticalMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
296
+ BiitVerticalMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BiitVerticalMenuModule, declarations: [BiitVerticalMenuComponent], imports: [CommonModule,
297
+ ContextMenuModule,
298
+ BiitIconModule,
299
+ OverlayModule,
300
+ BiitIconButtonModule], exports: [BiitVerticalMenuComponent] });
301
+ BiitVerticalMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitVerticalMenuModule, imports: [CommonModule,
302
+ ContextMenuModule,
303
+ BiitIconModule,
304
+ OverlayModule,
305
+ BiitIconButtonModule] });
306
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BiitVerticalMenuModule, decorators: [{
307
+ type: NgModule,
308
+ args: [{
309
+ declarations: [BiitVerticalMenuComponent],
310
+ imports: [
311
+ CommonModule,
312
+ ContextMenuModule,
313
+ BiitIconModule,
314
+ OverlayModule,
315
+ BiitIconButtonModule
316
+ ],
317
+ exports: [BiitVerticalMenuComponent]
318
+ }]
319
+ }] });
320
+
321
+ /*
322
+ * Public API Surface of wizardry-theme/login
323
+ */
324
+
325
+ /**
326
+ * Generated bundle index. Do not edit.
327
+ */
328
+
329
+ export { BiitNavMenuComponent, BiitNavMenuModule, BiitNavUserComponent, BiitNavUserModule, BiitTabComponent, BiitTabGroupComponent, BiitTabGroupModule, BiitVerticalMenuComponent, BiitVerticalMenuModule };
330
+ //# sourceMappingURL=biit-solutions-wizardry-theme-navigation.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"biit-solutions-wizardry-theme-navigation.mjs","sources":["../../../projects/wizardry-theme/navigation/src/biit-tab-group/biit-tab.component.ts","../../../projects/wizardry-theme/navigation/src/biit-tab-group/biit-tab-group.component.ts","../../../projects/wizardry-theme/navigation/src/biit-tab-group/biit-tab-group.component.html","../../../projects/wizardry-theme/navigation/src/biit-tab-group/biit-tab-group.module.ts","../../../projects/wizardry-theme/navigation/src/biit-nav-user/biit-nav-user.component.ts","../../../projects/wizardry-theme/navigation/src/biit-nav-user/biit-nav-user.component.html","../../../projects/wizardry-theme/navigation/src/biit-nav-user/biit-nav-user.module.ts","../../../projects/wizardry-theme/navigation/src/biit-nav-menu/biit-nav-menu.component.ts","../../../projects/wizardry-theme/navigation/src/biit-nav-menu/biit-nav-menu.component.html","../../../projects/wizardry-theme/navigation/src/biit-nav-menu/biit-nav-menu.module.ts","../../../projects/wizardry-theme/navigation/src/biit-vertical-menu/biit-vertical-menu.component.ts","../../../projects/wizardry-theme/navigation/src/biit-vertical-menu/biit-vertical-menu.component.html","../../../projects/wizardry-theme/navigation/src/biit-vertical-menu/biit-vertical-menu.module.ts","../../../projects/wizardry-theme/navigation/src/public-api.ts","../../../projects/wizardry-theme/navigation/src/biit-solutions-wizardry-theme-navigation.ts"],"sourcesContent":["import {Component, Input} from '@angular/core';\n\n@Component({\n selector: 'biit-tab',\n template: '<div [hidden]=\"!active\" [class.inner-content]=\"active\"><ng-content></ng-content></div>',\n styleUrls: ['biit-tab.component.scss']\n})\n\nexport class BiitTabComponent {\n @Input() name: string;\n @Input() active = false;\n @Input() error = false;\n}\n","import {\n AfterViewInit,\n Component,\n ContentChildren,\n ElementRef,\n EventEmitter, Input,\n Output,\n QueryList,\n ViewChild\n} from '@angular/core';\nimport {BiitTabComponent} from './biit-tab.component';\nimport {BiitProgressBarType} from \"@biit-solutions/wizardry-theme/info\";\n\n@Component({\n selector: 'biit-tab-group',\n templateUrl: 'biit-tab-group.component.html',\n styleUrls: ['biit-tab-group.component.scss']\n})\n\nexport class BiitTabGroupComponent implements AfterViewInit {\n @ContentChildren(BiitTabComponent) tabs: QueryList<BiitTabComponent>\n @ViewChild('tabHeader') header: ElementRef;\n @Input() loading: boolean = false;\n @Output() onTabClick: EventEmitter<BiitTabComponent> = new EventEmitter<BiitTabComponent>();\n protected compactMode = false;\n\n ngAfterViewInit() {\n let activeTabs = this.tabs.filter(tab => tab.active);\n if(!activeTabs.length) {\n this.activateTab(this.tabs.first);\n }\n this.checkHeaders();\n }\n\n activateTab(tab: BiitTabComponent){\n this.tabs.toArray().forEach(item => item.active = false);\n tab.active = true;\n this.onTabClick.emit(tab);\n }\n\n getActiveTab(): BiitTabComponent {\n return this.tabs.find(item => item.active);\n }\n\n checkHeaders(): void {\n this.header.nativeElement.querySelectorAll('.tab-selector').forEach(i => {\n if (i.firstChild.offsetHeight > parseFloat(getComputedStyle(document.documentElement).fontSize) * 1.2) {\n this.compactMode = true;\n return;\n }\n });\n }\n\n protected readonly BiitProgressBarType = BiitProgressBarType;\n}\n","<div class=\"tab-group\" id=\"tabs\">\n <div class=\"tab-header\" #tabHeader>\n <div *ngFor=\"let tab of tabs\"\n [attr.id]=\"'tab-' + tab.name\"\n (click)=\"activateTab(tab)\"\n [class.active]=\"tab.active\"\n [class.error]=\"tab.error\"\n [class.compact-mode]=\"compactMode\"\n class=\"tab-selector\"\n [tooltip]=\"compactMode && !tab.active ? tab.name : null\"\n >\n <a>{{ tab.name }}</a>\n </div>\n </div>\n <biit-progress-bar *ngIf=\"loading\"\n [type]=\"BiitProgressBarType.INDETERMINATE\"\n ></biit-progress-bar>\n <div class=\"content\">\n <ng-content></ng-content>\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport {BiitTabGroupComponent} from './biit-tab-group.component';\nimport {BiitTabComponent} from './biit-tab.component';\nimport {BiitProgressBarModule, BiitTooltipModule} from \"@biit-solutions/wizardry-theme/info\";\n\n\n\n@NgModule({\n declarations: [\n BiitTabGroupComponent,\n BiitTabComponent\n ],\n imports: [\n CommonModule,\n BiitTooltipModule,\n BiitProgressBarModule\n ],\n exports: [\n BiitTabGroupComponent,\n BiitTabComponent\n ]\n})\nexport class BiitTabGroupModule { }\n","import {Component, Input, OnInit} from '@angular/core';\n\n@Component({\n selector: 'biit-nav-user',\n templateUrl: 'biit-nav-user.component.html',\n styleUrls: ['biit-nav-user.component.scss']\n})\n\nexport class BiitNavUserComponent implements OnInit {\n @Input() title: string = '';\n @Input() subtitle: string = '';\n @Input('left-align') leftAlign: boolean;\n\n ngOnInit() {\n this.leftAlign = this.leftAlign !== undefined;\n }\n}\n","<div class=\"navbar-user-canvas\" [class.left-align]=\"leftAlign\" id=\"user-area\">\n <div class=\"content\">\n <div class=\"titles\" id=\"user-name\">\n <a *ngIf=\"subtitle?.length\" class=\"subtitle\">{{subtitle}}</a>\n <a>{{title?.length ? (title.length > 16 && title.split(\" \").length > 1 ? title.split(\" \")[0].substring(0, 1) + '. ' + title.split(\" \")[1] : title) : ''}}</a>\n </div>\n <div class=\"avatar\" id=\"user-avatar\">\n <a>{{title?.length ? title.substring(0,1) + title.split(\" \")[1]?.substring(0,1) : ''}}</a>\n </div>\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport {BiitNavUserComponent} from './biit-nav-user.component';\n\n@NgModule({\n declarations: [\n BiitNavUserComponent\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BiitNavUserComponent\n ]\n})\nexport class BiitNavUserModule { }\n","import {AfterViewInit, Component, ViewEncapsulation, ElementRef, Input, ViewChild} from '@angular/core';\nimport {Route, Router} from '@angular/router';\nimport {ContextMenuComponent, ContextMenuService} from \"@perfectmemory/ngx-contextmenu\";\nimport { fromEvent } from 'rxjs';\nimport { auditTime } from 'rxjs/operators';\n\n@Component({\n selector: 'biit-nav-menu',\n templateUrl: 'biit-nav-menu.component.html',\n styleUrls: ['biit-nav-menu.component.scss'],\n encapsulation: ViewEncapsulation.None\n})\n\nexport class BiitNavMenuComponent {\n @Input() routes: Route[] = [];\n protected hovered: Route;\n protected submenuHover = false;\n protected submenuItemHover;\n protected timeout;\n\n protected readonly clearTimeout = clearTimeout;\n\n @ViewChild('navbarMenu') contextMenu: ContextMenuComponent<Route>;\n @ViewChild('navbarMenu', {read: ElementRef}) navbarRef: ElementRef;\n @ViewChild('menuCanvas', { static: true }) menuCanvas!: ElementRef<HTMLDivElement>;\n\n contextMenuItems = [];\n hasOverflow = false;\n showLeft = false;\n showRight = false;\n\n constructor(protected router: Router,\n protected contextMenuService: ContextMenuService<Route>) {\n }\n\n ngAfterViewInit(): void {\n this.updateArrows();\n fromEvent(this.menuCanvas.nativeElement, 'scroll')\n .pipe(auditTime(50))\n .subscribe(() => this.updateArrows());\n\n const ro = new ResizeObserver(() => this.updateArrows());\n ro.observe(this.menuCanvas.nativeElement);\n }\n\n private updateArrows(): void {\n const el = this.menuCanvas.nativeElement;\n this.hasOverflow = el.scrollWidth > el.clientWidth;\n this.showLeft = this.hasOverflow && el.scrollLeft > 0;\n this.showRight = this.hasOverflow && (el.scrollLeft + el.clientWidth < el.scrollWidth);\n }\n\n scrollLeft(): void {\n this.menuCanvas.nativeElement.scrollBy({ left: -200, behavior: 'smooth' });\n }\n\n scrollRight(): void {\n this.menuCanvas.nativeElement.scrollBy({ left: 200, behavior: 'smooth' });\n }\n\n onContextMenu(route: Route, navItem: HTMLDivElement) {\n this.hovered = route;\n this.contextMenuItems = route.children?.map(item => {\n return {\n title: item.title,\n disabled: item.data?.['disabled'],\n visible: !item.data?.['hidden'],\n path: item.path,\n parent: route.path\n }\n })\n this.timeout = setTimeout(() => {\n this.openMenu(navItem);\n }, 50);\n }\n\n protected openMenu(navItem: HTMLDivElement): void {\n const rect: DOMRect = navItem.getBoundingClientRect();\n let x: number = rect.left + window.scrollX;\n let y: number = rect.bottom + window.scrollY;\n\n // Optional: avoid clipping on the right edge\n const maxX: number = window.scrollX + window.innerWidth - 10;\n if (x > maxX) {\n x = maxX;\n }\n\n this.contextMenuService.show(this.contextMenu, { x, y });\n }\n\n log(event) {\n console.debug(\"DEVELOPMENT LOG: \", event)\n }\n}\n","<div class=\"nav-wrapper\">\n <button class=\"nav-arrow left\"\n *ngIf=\"showLeft\"\n (click)=\"scrollLeft()\"\n aria-label=\"Scroll left\">\n ‹\n </button>\n\n <div #menuCanvas class=\"navbar-menu-canvas scroll-x\">\n <div class=\"item\" #navItem\n *ngFor=\"let route of routes\"\n [attr.id]=\"'nav-item-' + route.path\"\n [routerLink]=\"route.children ? null : [route.path]\"\n [routerLinkActive]=\"['active']\"\n [class.active]=\"router.url.includes('/'+route.path)\"\n [class.hover]=\"route == hovered && contextMenuService.hasOpenMenu()\"\n [class.disabled]=\"route.data?.['disabled']\"\n [style.display]=\"route.data?.['hidden'] ? 'none' : 'inline-flex'\"\n (click)=\"route.children ? onContextMenu(route, navItem) : null\">\n {{ route.title }}\n <context-menu #navbarMenu menuClass=\"custom-style\">\n <ng-template contextMenuItem\n *ngFor=\"let item of contextMenuItems\"\n [disabled]=\"item.disabled\"\n [visible]=\"item.visible\"\n (execute)=\"router.navigate([item.parent, item.path])\">\n <div [attr.id]=\"'nav-subitem-' + item.path\"\n [class.active]=\"router.url.includes('/' + item.parent + '/' + item.path)\">\n {{ item.title }}\n </div>\n </ng-template>\n </context-menu>\n </div>\n </div>\n\n <button class=\"nav-arrow right\"\n *ngIf=\"showRight\"\n (click)=\"scrollRight()\n\"\n aria-label=\"Scroll right\">\n ›\n </button>\n</div>\n","import { NgModule } from '@angular/core';\nimport {CommonModule} from '@angular/common';\nimport {BiitNavMenuComponent} from './biit-nav-menu.component';\nimport {RouterModule} from '@angular/router';\nimport {ContextMenuModule} from \"@perfectmemory/ngx-contextmenu\";\n\n@NgModule({\n declarations: [\n BiitNavMenuComponent\n ],\n imports: [\n CommonModule,\n RouterModule,\n ContextMenuModule\n ],\n exports: [\n BiitNavMenuComponent\n ]\n})\nexport class BiitNavMenuModule { }\n","import { Component } from '@angular/core';\nimport {ConnectedPosition} from \"@angular/cdk/overlay\";\n\n@Component({\n selector: 'biit-vertical-menu',\n templateUrl: './biit-vertical-menu.component.html',\n styleUrls: ['./biit-vertical-menu.component.scss']\n})\nexport class BiitVerticalMenuComponent {\n open = false;\n\n positions: ConnectedPosition[] = [\n { originX: 'start', originY: 'bottom', overlayX: 'start', overlayY: 'top', offsetY: 4 },\n { originX: 'end', originY: 'bottom', overlayX: 'end', overlayY: 'top', offsetY: 4 }\n ];\n\n toggleMenu(): void {\n this.open = !this.open;\n }\n\n close(): void {\n this.open = false;\n }\n\n onSelect(key: string): void {\n // emitir evento o lógica\n this.close();\n }\n}\n","<div class=\"vertical-container\">\n <button\n biit-icon\n icon=\"project_add\"\n cdkOverlayOrigin\n #trigger=\"cdkOverlayOrigin\"\n class=\"icon-btn\"\n type=\"button\"\n (click)=\"toggleMenu()\">\n </button>\n\n <ng-template\n cdkConnectedOverlay\n [cdkConnectedOverlayOrigin]=\"trigger\"\n [cdkConnectedOverlayOpen]=\"open\"\n [cdkConnectedOverlayPositions]=\"positions\"\n (overlayOutsideClick)=\"close()\"\n (detach)=\"close()\">\n <div class=\"floating-menu\" role=\"menu\">\n <ng-content></ng-content>\n </div>\n </ng-template>\n\n\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport {BiitVerticalMenuComponent} from \"./biit-vertical-menu.component\";\nimport {ContextMenuModule} from \"@perfectmemory/ngx-contextmenu\";\nimport {BiitIconModule} from \"@biit-solutions/wizardry-theme/icon\";\nimport {OverlayModule} from \"@angular/cdk/overlay\";\nimport {BiitIconButtonModule} from \"@biit-solutions/wizardry-theme/button\";\n\n\n\n@NgModule({\n declarations: [BiitVerticalMenuComponent],\n imports: [\n CommonModule,\n ContextMenuModule,\n BiitIconModule,\n OverlayModule,\n BiitIconButtonModule\n ],\n exports: [BiitVerticalMenuComponent]\n})\nexport class BiitVerticalMenuModule { }\n","/*\n * Public API Surface of wizardry-theme/login\n */\n\nexport * from './biit-tab-group/biit-tab-group.component';\nexport * from './biit-tab-group/biit-tab-group.module';\nexport * from './biit-tab-group/biit-tab.component';\nexport * from './biit-nav-user/biit-nav-user.component';\nexport * from './biit-nav-user/biit-nav-user.module';\nexport * from './biit-nav-menu/biit-nav-menu.component';\nexport * from './biit-nav-menu/biit-nav-menu.module';\nexport * from './biit-vertical-menu/biit-vertical-menu.component';\nexport * from './biit-vertical-menu/biit-vertical-menu.module';\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i2","i3"],"mappings":"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"}