@sebgroup/green-angular 5.1.2 → 5.2.0

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 (434) hide show
  1. package/esm2022/src/v-angular/account-number/account-number.module.mjs +18 -0
  2. package/esm2022/src/v-angular/account-number/account-number.pipe.mjs +54 -0
  3. package/esm2022/src/v-angular/account-number/index.mjs +3 -0
  4. package/esm2022/src/v-angular/account-number/sebgroup-green-angular-src-v-angular-account-number.mjs +5 -0
  5. package/esm2022/src/v-angular/alert/alert.component.mjs +47 -0
  6. package/esm2022/src/v-angular/alert/alert.models.mjs +8 -0
  7. package/esm2022/src/v-angular/alert/alert.module.mjs +18 -0
  8. package/esm2022/src/v-angular/alert/index.mjs +4 -0
  9. package/esm2022/src/v-angular/alert/sebgroup-green-angular-src-v-angular-alert.mjs +5 -0
  10. package/esm2022/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +16 -6
  11. package/esm2022/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +9 -9
  12. package/esm2022/src/v-angular/breadcrumbs/breadcrumbs.component.mjs +5 -5
  13. package/esm2022/src/v-angular/breadcrumbs/breadcrumbs.module.mjs +11 -11
  14. package/esm2022/src/v-angular/button/button.component.mjs +9 -9
  15. package/esm2022/src/v-angular/button/button.module.mjs +11 -11
  16. package/esm2022/src/v-angular/card/card.component.mjs +6 -6
  17. package/esm2022/src/v-angular/card/card.module.mjs +9 -9
  18. package/esm2022/src/v-angular/character-countdown/character-countdown.module.mjs +6 -6
  19. package/esm2022/src/v-angular/checkbox/checkbox.component.mjs +9 -7
  20. package/esm2022/src/v-angular/checkbox/checkbox.module.mjs +14 -12
  21. package/esm2022/src/v-angular/core/core.utils.mjs +35 -1
  22. package/esm2022/src/v-angular/datepicker/components/calendar/calendar.component.mjs +200 -0
  23. package/esm2022/src/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +115 -0
  24. package/esm2022/src/v-angular/datepicker/components/date-input/date-input.component.mjs +203 -0
  25. package/esm2022/src/v-angular/datepicker/components/datepicker/datepicker.component.mjs +135 -0
  26. package/esm2022/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +408 -0
  27. package/esm2022/src/v-angular/datepicker/datepicker.globals.mjs +20 -0
  28. package/esm2022/src/v-angular/datepicker/datepicker.models.mjs +56 -0
  29. package/esm2022/src/v-angular/datepicker/datepicker.module.mjs +63 -0
  30. package/esm2022/src/v-angular/datepicker/datepicker.utils.mjs +196 -0
  31. package/esm2022/src/v-angular/datepicker/directives/calendar-date.directive.mjs +47 -0
  32. package/esm2022/src/v-angular/datepicker/index.mjs +17 -0
  33. package/esm2022/src/v-angular/datepicker/models/dates.mjs +291 -0
  34. package/esm2022/src/v-angular/datepicker/pipes/date-thook.pipe.mjs +30 -0
  35. package/esm2022/src/v-angular/datepicker/pipes/is-disabled.pipe.mjs +37 -0
  36. package/esm2022/src/v-angular/datepicker/pipes/matches.pipe.mjs +17 -0
  37. package/esm2022/src/v-angular/datepicker/sebgroup-green-angular-src-v-angular-datepicker.mjs +5 -0
  38. package/esm2022/src/v-angular/drag-drop/drag-drop.component.mjs +497 -0
  39. package/esm2022/src/v-angular/drag-drop/drag-drop.models.mjs +2 -0
  40. package/esm2022/src/v-angular/drag-drop/drag-drop.module.mjs +49 -0
  41. package/esm2022/src/v-angular/drag-drop/drag-drop.pipes.mjs +70 -0
  42. package/esm2022/src/v-angular/drag-drop/drag-drop.utils.mjs +76 -0
  43. package/esm2022/src/v-angular/drag-drop/index.mjs +5 -0
  44. package/esm2022/src/v-angular/drag-drop/sebgroup-green-angular-src-v-angular-drag-drop.mjs +5 -0
  45. package/esm2022/src/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +24 -9
  46. package/esm2022/src/v-angular/dropdown/dropdown.component.mjs +16 -9
  47. package/esm2022/src/v-angular/dropdown/dropdown.module.mjs +31 -15
  48. package/esm2022/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +8 -8
  49. package/esm2022/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +5 -5
  50. package/esm2022/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +17 -10
  51. package/esm2022/src/v-angular/dropdown/typeahead/typeahead.directive.mjs +27 -20
  52. package/esm2022/src/v-angular/dropdown/typeahead/typeahead.module.mjs +21 -21
  53. package/esm2022/src/v-angular/external-link/external-link.directive.mjs +5 -5
  54. package/esm2022/src/v-angular/external-link/external-link.module.mjs +9 -9
  55. package/esm2022/src/v-angular/i18n/i18n.module.mjs +12 -12
  56. package/esm2022/src/v-angular/i18n/i18n.test.module.mjs +6 -6
  57. package/esm2022/src/v-angular/info-circle/info-circle.component.mjs +6 -6
  58. package/esm2022/src/v-angular/info-circle/info-circle.module.mjs +11 -11
  59. package/esm2022/src/v-angular/input/input.component.mjs +11 -15
  60. package/esm2022/src/v-angular/input/input.module.mjs +27 -22
  61. package/esm2022/src/v-angular/input-mask/input-mask.directive.mjs +6 -6
  62. package/esm2022/src/v-angular/input-mask/input-mask.module.mjs +10 -10
  63. package/esm2022/src/v-angular/modal/dialog/dialog.component.mjs +53 -31
  64. package/esm2022/src/v-angular/modal/fold-out/fold-out.component.mjs +116 -16
  65. package/esm2022/src/v-angular/modal/fold-out/fold-out.directive.mjs +5 -5
  66. package/esm2022/src/v-angular/modal/fold-out/keyboard-key.enum.mjs +9 -0
  67. package/esm2022/src/v-angular/modal/modal.module.mjs +38 -27
  68. package/esm2022/src/v-angular/modal/slide-out/slide-out.component.mjs +35 -12
  69. package/esm2022/src/v-angular/pagination/index.mjs +3 -0
  70. package/esm2022/src/v-angular/pagination/pagination.component.mjs +144 -0
  71. package/esm2022/src/v-angular/pagination/pagination.module.mjs +37 -0
  72. package/esm2022/src/v-angular/pagination/sebgroup-green-angular-src-v-angular-pagination.mjs +5 -0
  73. package/esm2022/src/v-angular/radio/radio.component.mjs +14 -12
  74. package/esm2022/src/v-angular/radio/radio.module.mjs +12 -11
  75. package/esm2022/src/v-angular/slug/slug.module.mjs +6 -6
  76. package/esm2022/src/v-angular/table/index.mjs +9 -0
  77. package/esm2022/src/v-angular/table/sebgroup-green-angular-src-v-angular-table.mjs +5 -0
  78. package/esm2022/src/v-angular/table/table.component.mjs +387 -0
  79. package/esm2022/src/v-angular/table/table.directive.mjs +110 -0
  80. package/esm2022/src/v-angular/table/table.models.mjs +2 -0
  81. package/esm2022/src/v-angular/table/table.module.mjs +40 -0
  82. package/esm2022/src/v-angular/table/table.tools.mjs +29 -0
  83. package/esm2022/src/v-angular/table/tr-thook.pipe.mjs +22 -0
  84. package/esm2022/src/v-angular/tabs/index.mjs +8 -0
  85. package/esm2022/src/v-angular/tabs/sebgroup-green-angular-src-v-angular-tabs.mjs +5 -0
  86. package/esm2022/src/v-angular/tabs/tab.directive.mjs +81 -0
  87. package/esm2022/src/v-angular/tabs/tabs.component.mjs +262 -0
  88. package/esm2022/src/v-angular/tabs/tabs.models.mjs +2 -0
  89. package/esm2022/src/v-angular/tabs/tabs.module.mjs +21 -0
  90. package/esm2022/src/v-angular/textarea/textarea.component.mjs +9 -7
  91. package/esm2022/src/v-angular/textarea/textarea.module.mjs +27 -13
  92. package/esm2022/src/v-angular/toast/index.mjs +8 -0
  93. package/esm2022/src/v-angular/toast/sebgroup-green-angular-src-v-angular-toast.mjs +5 -0
  94. package/esm2022/src/v-angular/toast/toast-message.service.mjs +63 -0
  95. package/esm2022/src/v-angular/toast/toast.component.mjs +70 -0
  96. package/esm2022/src/v-angular/toast/toast.models.mjs +8 -0
  97. package/esm2022/src/v-angular/toast/toast.module.mjs +21 -0
  98. package/esm2022/src/v-angular/tooltip/tooltip.directive.mjs +35 -15
  99. package/esm2022/src/v-angular/tooltip/tooltip.module.mjs +11 -11
  100. package/esm2022/src/v-angular/tooltip/tooltip.styles.mjs +60 -0
  101. package/esm2022/v-angular/alert/alert.component.mjs +47 -0
  102. package/esm2022/v-angular/alert/alert.models.mjs +8 -0
  103. package/esm2022/v-angular/alert/alert.module.mjs +18 -0
  104. package/esm2022/v-angular/alert/index.mjs +4 -0
  105. package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +16 -6
  106. package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +9 -9
  107. package/esm2022/v-angular/breadcrumbs/breadcrumbs.component.mjs +5 -5
  108. package/esm2022/v-angular/breadcrumbs/breadcrumbs.module.mjs +11 -11
  109. package/esm2022/v-angular/button/button.component.mjs +9 -9
  110. package/esm2022/v-angular/button/button.module.mjs +11 -11
  111. package/esm2022/v-angular/card/card.component.mjs +6 -6
  112. package/esm2022/v-angular/card/card.module.mjs +9 -9
  113. package/esm2022/v-angular/character-countdown/character-countdown.module.mjs +6 -6
  114. package/esm2022/v-angular/checkbox/checkbox.component.mjs +9 -7
  115. package/esm2022/v-angular/checkbox/checkbox.module.mjs +14 -12
  116. package/esm2022/v-angular/datepicker/components/calendar/calendar.component.mjs +200 -0
  117. package/esm2022/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +115 -0
  118. package/esm2022/v-angular/datepicker/components/date-input/date-input.component.mjs +203 -0
  119. package/esm2022/v-angular/datepicker/components/datepicker/datepicker.component.mjs +135 -0
  120. package/esm2022/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +408 -0
  121. package/esm2022/v-angular/datepicker/datepicker.globals.mjs +20 -0
  122. package/esm2022/v-angular/datepicker/datepicker.models.mjs +56 -0
  123. package/esm2022/v-angular/datepicker/datepicker.module.mjs +63 -0
  124. package/esm2022/v-angular/datepicker/datepicker.utils.mjs +196 -0
  125. package/esm2022/v-angular/datepicker/directives/calendar-date.directive.mjs +47 -0
  126. package/esm2022/v-angular/datepicker/index.mjs +17 -0
  127. package/esm2022/v-angular/datepicker/models/dates.mjs +291 -0
  128. package/esm2022/v-angular/datepicker/pipes/date-thook.pipe.mjs +30 -0
  129. package/esm2022/v-angular/datepicker/pipes/is-disabled.pipe.mjs +37 -0
  130. package/esm2022/v-angular/datepicker/pipes/matches.pipe.mjs +17 -0
  131. package/esm2022/v-angular/drag-drop/drag-drop.component.mjs +497 -0
  132. package/esm2022/v-angular/drag-drop/drag-drop.models.mjs +2 -0
  133. package/esm2022/v-angular/drag-drop/drag-drop.module.mjs +49 -0
  134. package/esm2022/v-angular/drag-drop/drag-drop.pipes.mjs +70 -0
  135. package/esm2022/v-angular/drag-drop/drag-drop.utils.mjs +76 -0
  136. package/esm2022/v-angular/drag-drop/index.mjs +5 -0
  137. package/esm2022/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +24 -9
  138. package/esm2022/v-angular/dropdown/dropdown.component.mjs +16 -9
  139. package/esm2022/v-angular/dropdown/dropdown.module.mjs +31 -15
  140. package/esm2022/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +8 -8
  141. package/esm2022/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +5 -5
  142. package/esm2022/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +17 -10
  143. package/esm2022/v-angular/dropdown/typeahead/typeahead.directive.mjs +27 -20
  144. package/esm2022/v-angular/dropdown/typeahead/typeahead.module.mjs +21 -21
  145. package/esm2022/v-angular/external-link/external-link.directive.mjs +37 -0
  146. package/esm2022/v-angular/external-link/external-link.module.mjs +18 -0
  147. package/esm2022/v-angular/external-link/index.mjs +3 -0
  148. package/esm2022/v-angular/i18n/i18n.module.mjs +12 -12
  149. package/esm2022/v-angular/i18n/i18n.test.module.mjs +6 -6
  150. package/esm2022/v-angular/index.mjs +10 -1
  151. package/esm2022/v-angular/info-circle/info-circle.component.mjs +6 -6
  152. package/esm2022/v-angular/info-circle/info-circle.module.mjs +11 -11
  153. package/esm2022/v-angular/input/input.component.mjs +11 -15
  154. package/esm2022/v-angular/input/input.module.mjs +27 -22
  155. package/esm2022/v-angular/input-mask/input-mask.directive.mjs +6 -6
  156. package/esm2022/v-angular/input-mask/input-mask.module.mjs +10 -10
  157. package/esm2022/v-angular/modal/dialog/dialog.component.mjs +53 -31
  158. package/esm2022/v-angular/modal/fold-out/fold-out.component.mjs +116 -16
  159. package/esm2022/v-angular/modal/fold-out/fold-out.directive.mjs +5 -5
  160. package/esm2022/v-angular/modal/fold-out/keyboard-key.enum.mjs +9 -0
  161. package/esm2022/v-angular/modal/modal.module.mjs +38 -27
  162. package/esm2022/v-angular/modal/slide-out/slide-out.component.mjs +35 -12
  163. package/esm2022/v-angular/pagination/index.mjs +3 -0
  164. package/esm2022/v-angular/pagination/pagination.component.mjs +144 -0
  165. package/esm2022/v-angular/pagination/pagination.module.mjs +37 -0
  166. package/esm2022/v-angular/radio/radio.component.mjs +14 -12
  167. package/esm2022/v-angular/radio/radio.module.mjs +12 -11
  168. package/esm2022/v-angular/slug/index.mjs +3 -0
  169. package/esm2022/v-angular/slug/slug.module.mjs +18 -0
  170. package/esm2022/v-angular/slug/slug.pipe.mjs +27 -0
  171. package/esm2022/v-angular/table/index.mjs +9 -0
  172. package/esm2022/v-angular/table/table.component.mjs +387 -0
  173. package/esm2022/v-angular/table/table.directive.mjs +110 -0
  174. package/esm2022/v-angular/table/table.models.mjs +2 -0
  175. package/esm2022/v-angular/table/table.module.mjs +40 -0
  176. package/esm2022/v-angular/table/table.tools.mjs +29 -0
  177. package/esm2022/v-angular/table/tr-thook.pipe.mjs +22 -0
  178. package/esm2022/v-angular/tabs/index.mjs +8 -0
  179. package/esm2022/v-angular/tabs/tab.directive.mjs +81 -0
  180. package/esm2022/v-angular/tabs/tabs.component.mjs +262 -0
  181. package/esm2022/v-angular/tabs/tabs.models.mjs +2 -0
  182. package/esm2022/v-angular/tabs/tabs.module.mjs +21 -0
  183. package/esm2022/v-angular/textarea/textarea.component.mjs +9 -7
  184. package/esm2022/v-angular/textarea/textarea.module.mjs +27 -13
  185. package/esm2022/v-angular/toast/index.mjs +8 -0
  186. package/esm2022/v-angular/toast/toast-message.service.mjs +63 -0
  187. package/esm2022/v-angular/toast/toast.component.mjs +70 -0
  188. package/esm2022/v-angular/toast/toast.models.mjs +8 -0
  189. package/esm2022/v-angular/toast/toast.module.mjs +21 -0
  190. package/esm2022/v-angular/tooltip/tooltip.directive.mjs +35 -15
  191. package/esm2022/v-angular/tooltip/tooltip.module.mjs +11 -11
  192. package/esm2022/v-angular/tooltip/tooltip.styles.mjs +60 -0
  193. package/esm2022/v-angular/v-angular.module.mjs +104 -68
  194. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs +76 -0
  195. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs.map +1 -0
  196. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs +76 -0
  197. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs.map +1 -0
  198. package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs +23 -13
  199. package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs.map +1 -1
  200. package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs +14 -14
  201. package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs.map +1 -1
  202. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs +18 -18
  203. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs.map +1 -1
  204. package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs +13 -13
  205. package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs.map +1 -1
  206. package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs +6 -6
  207. package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs.map +1 -1
  208. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs +21 -17
  209. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs.map +1 -1
  210. package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs +34 -0
  211. package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs.map +1 -1
  212. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs +1759 -0
  213. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs.map +1 -0
  214. package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs +687 -0
  215. package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs.map +1 -0
  216. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs +126 -74
  217. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs.map +1 -1
  218. package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs +12 -12
  219. package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs.map +1 -1
  220. package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs +17 -17
  221. package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs.map +1 -1
  222. package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs +15 -15
  223. package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs.map +1 -1
  224. package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs +14 -14
  225. package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs.map +1 -1
  226. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs +36 -35
  227. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs.map +1 -1
  228. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +246 -81
  229. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +1 -1
  230. package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs +185 -0
  231. package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs.map +1 -0
  232. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs +24 -21
  233. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs.map +1 -1
  234. package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs +6 -6
  235. package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs.map +1 -1
  236. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +585 -0
  237. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +1 -0
  238. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs +367 -0
  239. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs.map +1 -0
  240. package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs +33 -18
  241. package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs.map +1 -1
  242. package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs +166 -0
  243. package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs.map +1 -0
  244. package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs +103 -24
  245. package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs.map +1 -1
  246. package/fesm2022/sebgroup-green-angular-v-angular.mjs +6295 -2165
  247. package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
  248. package/package.json +51 -3
  249. package/src/v-angular/account-number/README.md +70 -0
  250. package/src/v-angular/account-number/account-number.module.d.ts +8 -0
  251. package/src/v-angular/account-number/account-number.pipe.d.ts +32 -0
  252. package/src/v-angular/account-number/index.d.ts +2 -0
  253. package/src/v-angular/alert/alert.component.d.ts +19 -0
  254. package/src/v-angular/alert/alert.models.d.ts +13 -0
  255. package/src/v-angular/alert/alert.module.d.ts +8 -0
  256. package/src/v-angular/alert/index.d.ts +3 -0
  257. package/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +10 -4
  258. package/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +4 -4
  259. package/src/v-angular/breadcrumbs/breadcrumbs.component.d.ts +4 -4
  260. package/src/v-angular/breadcrumbs/breadcrumbs.module.d.ts +4 -4
  261. package/src/v-angular/button/button.component.d.ts +5 -5
  262. package/src/v-angular/button/button.module.d.ts +4 -4
  263. package/src/v-angular/card/card.component.d.ts +3 -3
  264. package/src/v-angular/card/card.module.d.ts +4 -4
  265. package/src/v-angular/character-countdown/character-countdown.module.d.ts +4 -4
  266. package/src/v-angular/checkbox/checkbox.component.d.ts +6 -5
  267. package/src/v-angular/checkbox/checkbox.module.d.ts +5 -4
  268. package/src/v-angular/core/core.utils.d.ts +1 -0
  269. package/src/v-angular/datepicker/components/calendar/calendar.component.d.ts +36 -0
  270. package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +30 -0
  271. package/src/v-angular/datepicker/components/date-input/date-input.component.d.ts +102 -0
  272. package/src/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +62 -0
  273. package/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +165 -0
  274. package/src/v-angular/datepicker/datepicker.globals.d.ts +13 -0
  275. package/src/v-angular/datepicker/datepicker.models.d.ts +50 -0
  276. package/src/v-angular/datepicker/datepicker.module.d.ts +19 -0
  277. package/src/v-angular/datepicker/datepicker.utils.d.ts +39 -0
  278. package/src/v-angular/datepicker/directives/calendar-date.directive.d.ts +21 -0
  279. package/src/v-angular/datepicker/index.d.ts +13 -0
  280. package/src/v-angular/datepicker/models/dates.d.ts +15 -0
  281. package/src/v-angular/datepicker/pipes/date-thook.pipe.d.ts +8 -0
  282. package/src/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +8 -0
  283. package/src/v-angular/datepicker/pipes/matches.pipe.d.ts +7 -0
  284. package/src/v-angular/drag-drop/drag-drop.component.d.ts +131 -0
  285. package/src/v-angular/drag-drop/drag-drop.models.d.ts +49 -0
  286. package/src/v-angular/drag-drop/drag-drop.module.d.ts +13 -0
  287. package/src/v-angular/drag-drop/drag-drop.pipes.d.ts +40 -0
  288. package/src/v-angular/drag-drop/drag-drop.utils.d.ts +33 -0
  289. package/src/v-angular/drag-drop/index.d.ts +4 -0
  290. package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +11 -4
  291. package/src/v-angular/dropdown/dropdown.component.d.ts +10 -6
  292. package/src/v-angular/dropdown/dropdown.module.d.ts +8 -7
  293. package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +6 -6
  294. package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +3 -3
  295. package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +8 -6
  296. package/src/v-angular/dropdown/typeahead/typeahead.directive.d.ts +14 -12
  297. package/src/v-angular/dropdown/typeahead/typeahead.module.d.ts +4 -4
  298. package/src/v-angular/external-link/external-link.directive.d.ts +3 -3
  299. package/src/v-angular/external-link/external-link.module.d.ts +4 -4
  300. package/src/v-angular/i18n/i18n.module.d.ts +7 -7
  301. package/src/v-angular/i18n/i18n.test.module.d.ts +4 -4
  302. package/src/v-angular/info-circle/info-circle.component.d.ts +4 -4
  303. package/src/v-angular/info-circle/info-circle.module.d.ts +4 -4
  304. package/src/v-angular/input/input.component.d.ts +5 -10
  305. package/src/v-angular/input/input.module.d.ts +5 -4
  306. package/src/v-angular/input-mask/input-mask.directive.d.ts +3 -3
  307. package/src/v-angular/input-mask/input-mask.module.d.ts +5 -5
  308. package/src/v-angular/modal/dialog/dialog.component.d.ts +16 -7
  309. package/src/v-angular/modal/fold-out/fold-out.component.d.ts +34 -11
  310. package/src/v-angular/modal/fold-out/fold-out.directive.d.ts +3 -3
  311. package/src/v-angular/modal/fold-out/keyboard-key.enum.d.ts +7 -0
  312. package/src/v-angular/modal/modal.module.d.ts +4 -4
  313. package/src/v-angular/modal/slide-out/slide-out.component.d.ts +13 -6
  314. package/src/v-angular/pagination/index.d.ts +2 -0
  315. package/src/v-angular/pagination/pagination.component.d.ts +64 -0
  316. package/src/v-angular/pagination/pagination.module.d.ts +12 -0
  317. package/src/v-angular/radio/radio.component.d.ts +14 -13
  318. package/src/v-angular/radio/radio.module.d.ts +5 -4
  319. package/src/v-angular/slug/slug.module.d.ts +4 -4
  320. package/src/v-angular/table/index.d.ts +5 -0
  321. package/src/v-angular/table/table.component.d.ts +229 -0
  322. package/src/v-angular/table/table.directive.d.ts +36 -0
  323. package/src/v-angular/table/table.models.d.ts +62 -0
  324. package/src/v-angular/table/table.module.d.ts +12 -0
  325. package/src/v-angular/table/table.tools.d.ts +5 -0
  326. package/src/v-angular/table/tr-thook.pipe.d.ts +7 -0
  327. package/src/v-angular/tabs/index.d.ts +4 -0
  328. package/src/v-angular/tabs/tab.directive.d.ts +37 -0
  329. package/src/v-angular/tabs/tabs.component.d.ts +65 -0
  330. package/src/v-angular/tabs/tabs.models.d.ts +25 -0
  331. package/src/v-angular/tabs/tabs.module.d.ts +11 -0
  332. package/src/v-angular/textarea/textarea.component.d.ts +6 -5
  333. package/src/v-angular/textarea/textarea.module.d.ts +6 -4
  334. package/src/v-angular/toast/index.d.ts +4 -0
  335. package/src/v-angular/toast/toast-message.service.d.ts +17 -0
  336. package/src/v-angular/toast/toast.component.d.ts +22 -0
  337. package/src/v-angular/toast/toast.models.d.ts +15 -0
  338. package/src/v-angular/toast/toast.module.d.ts +10 -0
  339. package/src/v-angular/tooltip/tooltip.directive.d.ts +5 -3
  340. package/src/v-angular/tooltip/tooltip.module.d.ts +4 -4
  341. package/src/v-angular/tooltip/tooltip.styles.d.ts +11 -0
  342. package/v-angular/alert/alert.component.d.ts +19 -0
  343. package/v-angular/alert/alert.models.d.ts +13 -0
  344. package/v-angular/alert/alert.module.d.ts +8 -0
  345. package/v-angular/alert/index.d.ts +3 -0
  346. package/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +10 -4
  347. package/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +4 -4
  348. package/v-angular/breadcrumbs/breadcrumbs.component.d.ts +4 -4
  349. package/v-angular/breadcrumbs/breadcrumbs.module.d.ts +4 -4
  350. package/v-angular/button/button.component.d.ts +5 -5
  351. package/v-angular/button/button.module.d.ts +4 -4
  352. package/v-angular/card/card.component.d.ts +3 -3
  353. package/v-angular/card/card.module.d.ts +4 -4
  354. package/v-angular/character-countdown/character-countdown.module.d.ts +4 -4
  355. package/v-angular/checkbox/checkbox.component.d.ts +6 -5
  356. package/v-angular/checkbox/checkbox.module.d.ts +5 -4
  357. package/v-angular/datepicker/components/calendar/calendar.component.d.ts +36 -0
  358. package/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +30 -0
  359. package/v-angular/datepicker/components/date-input/date-input.component.d.ts +102 -0
  360. package/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +62 -0
  361. package/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +165 -0
  362. package/v-angular/datepicker/datepicker.globals.d.ts +13 -0
  363. package/v-angular/datepicker/datepicker.models.d.ts +50 -0
  364. package/v-angular/datepicker/datepicker.module.d.ts +19 -0
  365. package/v-angular/datepicker/datepicker.utils.d.ts +39 -0
  366. package/v-angular/datepicker/directives/calendar-date.directive.d.ts +21 -0
  367. package/v-angular/datepicker/index.d.ts +13 -0
  368. package/v-angular/datepicker/models/dates.d.ts +15 -0
  369. package/v-angular/datepicker/pipes/date-thook.pipe.d.ts +8 -0
  370. package/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +8 -0
  371. package/v-angular/datepicker/pipes/matches.pipe.d.ts +7 -0
  372. package/v-angular/drag-drop/drag-drop.component.d.ts +131 -0
  373. package/v-angular/drag-drop/drag-drop.models.d.ts +49 -0
  374. package/v-angular/drag-drop/drag-drop.module.d.ts +13 -0
  375. package/v-angular/drag-drop/drag-drop.pipes.d.ts +40 -0
  376. package/v-angular/drag-drop/drag-drop.utils.d.ts +33 -0
  377. package/v-angular/drag-drop/index.d.ts +4 -0
  378. package/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +11 -4
  379. package/v-angular/dropdown/dropdown.component.d.ts +10 -6
  380. package/v-angular/dropdown/dropdown.module.d.ts +8 -7
  381. package/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +6 -6
  382. package/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +3 -3
  383. package/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +8 -6
  384. package/v-angular/dropdown/typeahead/typeahead.directive.d.ts +14 -12
  385. package/v-angular/dropdown/typeahead/typeahead.module.d.ts +4 -4
  386. package/v-angular/external-link/external-link.directive.d.ts +17 -0
  387. package/v-angular/external-link/external-link.module.d.ts +8 -0
  388. package/v-angular/external-link/index.d.ts +2 -0
  389. package/v-angular/i18n/i18n.module.d.ts +7 -7
  390. package/v-angular/i18n/i18n.test.module.d.ts +4 -4
  391. package/v-angular/index.d.ts +9 -0
  392. package/v-angular/info-circle/info-circle.component.d.ts +4 -4
  393. package/v-angular/info-circle/info-circle.module.d.ts +4 -4
  394. package/v-angular/input/input.component.d.ts +5 -10
  395. package/v-angular/input/input.module.d.ts +5 -4
  396. package/v-angular/input-mask/input-mask.directive.d.ts +3 -3
  397. package/v-angular/input-mask/input-mask.module.d.ts +5 -5
  398. package/v-angular/modal/dialog/dialog.component.d.ts +16 -7
  399. package/v-angular/modal/fold-out/fold-out.component.d.ts +34 -11
  400. package/v-angular/modal/fold-out/fold-out.directive.d.ts +3 -3
  401. package/v-angular/modal/fold-out/keyboard-key.enum.d.ts +7 -0
  402. package/v-angular/modal/modal.module.d.ts +4 -4
  403. package/v-angular/modal/slide-out/slide-out.component.d.ts +13 -6
  404. package/v-angular/pagination/index.d.ts +2 -0
  405. package/v-angular/pagination/pagination.component.d.ts +64 -0
  406. package/v-angular/pagination/pagination.module.d.ts +12 -0
  407. package/v-angular/radio/radio.component.d.ts +14 -13
  408. package/v-angular/radio/radio.module.d.ts +5 -4
  409. package/v-angular/slug/index.d.ts +2 -0
  410. package/v-angular/slug/slug.module.d.ts +8 -0
  411. package/v-angular/slug/slug.pipe.d.ts +12 -0
  412. package/v-angular/table/index.d.ts +5 -0
  413. package/v-angular/table/table.component.d.ts +229 -0
  414. package/v-angular/table/table.directive.d.ts +36 -0
  415. package/v-angular/table/table.models.d.ts +62 -0
  416. package/v-angular/table/table.module.d.ts +12 -0
  417. package/v-angular/table/table.tools.d.ts +5 -0
  418. package/v-angular/table/tr-thook.pipe.d.ts +7 -0
  419. package/v-angular/tabs/index.d.ts +4 -0
  420. package/v-angular/tabs/tab.directive.d.ts +37 -0
  421. package/v-angular/tabs/tabs.component.d.ts +65 -0
  422. package/v-angular/tabs/tabs.models.d.ts +25 -0
  423. package/v-angular/tabs/tabs.module.d.ts +11 -0
  424. package/v-angular/textarea/textarea.component.d.ts +6 -5
  425. package/v-angular/textarea/textarea.module.d.ts +6 -4
  426. package/v-angular/toast/index.d.ts +4 -0
  427. package/v-angular/toast/toast-message.service.d.ts +17 -0
  428. package/v-angular/toast/toast.component.d.ts +22 -0
  429. package/v-angular/toast/toast.models.d.ts +15 -0
  430. package/v-angular/toast/toast.module.d.ts +10 -0
  431. package/v-angular/tooltip/tooltip.directive.d.ts +5 -3
  432. package/v-angular/tooltip/tooltip.module.d.ts +4 -4
  433. package/v-angular/tooltip/tooltip.styles.d.ts +11 -0
  434. package/v-angular/v-angular.module.d.ts +27 -18
@@ -0,0 +1,229 @@
1
+ import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
2
+ import { UntypedFormControl, UntypedFormGroup } from '@angular/forms';
3
+ import { Subscription } from 'rxjs';
4
+ import { TableAppendableRowsTemplateDirective, TableFooterTemplateDirective, TableTemplateDirective } from './table.directive';
5
+ import { ariaLabelsOrderBy, OrderBy, TableColumn, TableRow } from './table.models';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * A table component with built-in sorting and selecting functionality.
9
+ * By default, table cells (i.e. `<td>` elements) and table headers (i.e. `<th>` elements) are populated with text only values.
10
+ *
11
+ * To customize the contents of either the `<td>` or `<th>` elements (like adding color, icons, form fields, extra padding etc.), provide
12
+ * the customized content within a `<ng-template>`-tag, and place the ng-template in the html between the start and ending tag of
13
+ * the `<nggv-table>`. Add a `tableColumn`-attribute to the `<ng-template>`-element, and set the value to the specific column property.
14
+ * Set `tableColumnTarget` to either `th`, `td` or `both` (default) depending on target element type.
15
+ * The entire row from the `@Input() tableData` is available from the context `$implicit` variable.
16
+ *
17
+ * @example
18
+ * <!-- for table cells i.e. td-elements -->
19
+ * <ng-template tableColumn="status" tableColumnTarget="td" let-myDataVar="$implicit" let-status="$implicit.status">
20
+ * <!-- my custom status element -->
21
+ * </ng-template>
22
+ *
23
+ * @example
24
+ * <!-- for table headers i.e. th-elements -->
25
+ * <ng-template tableColumn="status" tableColumnTarget="th" let-myDataVar="$implicit" let-status="$implicit.status">
26
+ * <!-- my custom status element -->
27
+ * </ng-template>
28
+ *
29
+ * It is possible to add custom rows that are appended below data row. Use `<ng-template>`-tag and place the ng-template in the html between the start and ending tag of
30
+ * the `<nggv-table>`. Add a `tableAppendableRows`-attribute to the `<ng-template>`-element. Any `tr` elements that exist within `<ng-template tableAppendableRows>` and `</ng-template>` tags will be put below data row's `tr` element in the table.
31
+ *
32
+ * @example
33
+ * <!-- custom appended rows -->
34
+ * <ng-template tableAppendableRows let-myDataVar="$implicit" let-status="$implicit.status">
35
+ * <tr>
36
+ * <!-- first row's columns -->
37
+ * </tr>
38
+ * <!-- more rows if needed -->
39
+ * </ng-template>
40
+ *
41
+ * If custom styling is needed for data row that has appended rows, you can use data attribute `data-hasrowspan` to distinguish it from data row without appended rows.
42
+ * You can pass your own custom method with conditional logic to define what value will be passed to data-hasrowspan.
43
+ * In addition, hasRowSpan function accepts item from `@Input() tableData` as argument which is of the same type as value passed to context `$implicit` variable.
44
+ * IMPORTANT: use arrow function style for defining function inside component, i.e. `hasRowSpan = (value) => output;`. If regular function will be defined, i.e. `hasRowSpan(value) { return output; }`, binding will not work.
45
+ *
46
+ * @example
47
+ * <!-- inside component
48
+ * class CustomComponent {
49
+ * customHasRowSpanFunction = (item: CustomDataType) => item.appendedRowsData.length > 0 ? true : false;
50
+ * }
51
+ * -->
52
+ * <!-- inside stylesheets
53
+ * [data-hasrowspan="true"] {
54
+ * color: blue;
55
+ * }
56
+ * .appended-row {
57
+ * color: blue;
58
+ * }
59
+ * -->
60
+ * <nggv-table [hasRowSpan]="customHasRowSpanFunction">
61
+ * <!-- custom appended rows -->
62
+ * <ng-template tableAppendableRows let-appendedRowsData="$implicit.appendedRowsData">
63
+ * <tr *ngFor="let appendedRowItem of appendedRowsData" class="appended-row">
64
+ * <td>{{ appendedRowItem }}</td>
65
+ * <!-- other row's columns -->
66
+ * </tr>
67
+ * </ng-template>
68
+ * </nggv-table>
69
+ *
70
+ * In addition, it is possible to add footer for the table. Similarly to adding custom columns, use `<ng-template>`-tag and place the ng-template in the html between the start and ending tag of
71
+ * the `<nggv-table>`. Add a `tableFooter`-attribute to the `<ng-template>`-element. Any elements that exist within `<ng-template tableFooter>` and `</ng-template>` tags will be put to tfoot element inside the table.
72
+ *
73
+ * @example
74
+ * <!-- for table footer i.e. tfoot-element -->
75
+ * <ng-template tableFooter>
76
+ * <tr>
77
+ * <!-- first row's columns -->
78
+ * </tr>
79
+ * <!-- more rows if needed -->
80
+ * </ng-template>
81
+ *
82
+ */
83
+ export declare class TableComponent<T extends TableRow> implements OnInit, OnChanges, AfterContentInit, OnDestroy {
84
+ /**
85
+ * @internal
86
+ * Custom templates defined in the html.
87
+ */
88
+ customTemplates: QueryList<TableTemplateDirective<keyof T>>;
89
+ /**
90
+ * @internal
91
+ * Custom appended rows template defined in the html.
92
+ */
93
+ appendedRowsTemplate: TableAppendableRowsTemplateDirective;
94
+ /**
95
+ * @internal
96
+ * Custom footer template defined in the html.
97
+ */
98
+ customFooterTemplate: TableFooterTemplateDirective;
99
+ /** Emits the table row that was clicked. Works on all columns if not preventDefaultEmit is set for that column. */
100
+ ngvRowClick: EventEmitter<any>;
101
+ /**
102
+ * Emits currently selected and deselected items in the table as key-value pairs.
103
+ * Uses each item`s itemId as key, and a boolean value to describe selected status.
104
+ */
105
+ ngvRowSelect: EventEmitter<string[]>;
106
+ /**
107
+ * Emits event to signal that the table should be reordered.
108
+ */
109
+ ngvOrderBy: EventEmitter<OrderBy<T>>;
110
+ /**
111
+ * An array of items describing how the table header should be rendered,
112
+ * together with instructions for how each row should be displayed in that column.
113
+ */
114
+ tableColumns: TableColumn<T>[];
115
+ /** Data array to display data in the table. Each item <T> in the array represents a row in the table. */
116
+ tableData: T[];
117
+ /**
118
+ * Property name used to uniquely describe each item (i.e. row) in the data table.
119
+ * Defaults to \'id\'.
120
+ * Is required if selectable is true.
121
+ */
122
+ rowId: string;
123
+ /**
124
+ * Function's return value is used for data attribute \'data-hasrowspan\'.
125
+ * If custom hasRowSpan function is not passed to the table,
126
+ * then this function returns undefined value by default which results in \'data-hasrowspan\' attribute being omitted in html
127
+ * (angular omits attributes that contain null or undefined value).
128
+ * IMPORTANT: use arrow function style for defining function inside component, i.e. `hasRowSpan = (value) => output;`. If regular function will be defined, i.e. `hasRowSpan(value) { return output; }`, binding will not work.
129
+ */
130
+ hasRowSpan: (item: T) => any;
131
+ /**
132
+ * Used to enable/disable the left-side checkbox column.
133
+ * Defaults to true.
134
+ */
135
+ selectable: boolean;
136
+ /**
137
+ * Allow nggv-table to attempt sorting the data in the table. Not recommended if only a subset is loaded or if the dataset is very large.
138
+ * Disabled by default.
139
+ */
140
+ allowLocalSort: boolean;
141
+ /** Special property used for selecting DOM elements during automated UI testing. */
142
+ thook: string;
143
+ /** Function to overwrite generated thook for each row. */
144
+ trThookFn?: (item: T) => string;
145
+ /** Aria label for the checkbox in the table header */
146
+ ariaLabelCheckboxTh?: string;
147
+ /** Aria label for the checkbox in the table header */
148
+ ariaLabelCheckboxTr?: string;
149
+ /** Aria labels for sorting in the table header */
150
+ ariaLabelsOrderBy?: ariaLabelsOrderBy;
151
+ /**
152
+ * @internal
153
+ * Internal data structure used to keep track of added content templates used in td elements.
154
+ */
155
+ customRowTemplates: Map<keyof T, TemplateRef<any>>;
156
+ /**
157
+ * @internal
158
+ * Internal data structure used to keep track of added content templates used in th elements.
159
+ */
160
+ customHeaderTemplates: Map<keyof T, TemplateRef<any>>;
161
+ /**
162
+ * @internal
163
+ * Internal data structure used to hold custom appended rows i.e. tr elements (rows).
164
+ */
165
+ appendedRowsTemplateRef: TemplateRef<any>;
166
+ /**
167
+ * @internal
168
+ * Internal data structure used to hold tfoot element children i.e. tr elements (rows).
169
+ */
170
+ customFooterTemplateRef: TemplateRef<any>;
171
+ /**
172
+ * @internal
173
+ * Incremental id.
174
+ */
175
+ initId: number;
176
+ /**
177
+ * @internal
178
+ * FormGroup containing all row id\'s as controls, and whether these are selected or not as values.
179
+ */
180
+ rowSelectors: UntypedFormGroup;
181
+ /**
182
+ * @internal
183
+ * Master selector for selecting or deselecting all row selectors.
184
+ */
185
+ groupSelector: UntypedFormControl;
186
+ private selected;
187
+ private subs;
188
+ ngOnChanges(changes: SimpleChanges): void;
189
+ ngOnInit(): void;
190
+ ngAfterContentInit(): void;
191
+ ngOnDestroy(): void;
192
+ /**
193
+ * @internal
194
+ * Returns a subscription to the master selector control that either selects or deselects all row controls.
195
+ */
196
+ get groupValueSubscription(): Subscription;
197
+ /**
198
+ * @internal
199
+ * Returns a subscription to all individual row selectors and update the master selector if all are selected.
200
+ */
201
+ get rowValueSubscription(): Subscription;
202
+ /**
203
+ * @internal
204
+ * Registers or disables row controls for new or removed rows.
205
+ */
206
+ registerSelectableRows(tableData: any[]): boolean;
207
+ /**
208
+ * @internal
209
+ * Returns all enabled values unless all rows are disabled.
210
+ */
211
+ get rowSelectorsValue(): any;
212
+ toggleSortOrderWithSpace(event: any, column: TableColumn<T>): void;
213
+ /**
214
+ * @internal
215
+ * Switches sorting order between ascending and descending order for a column.
216
+ * @param column the column to sort rows after.
217
+ */
218
+ toggleSortOrder(column: TableColumn<T>): void;
219
+ /** If sortable, reorders the table data using the specified column as ordering attribute. */
220
+ sortItemsBy(column: TableColumn<T>): TableRow[] | undefined;
221
+ /**
222
+ * @internal
223
+ * Emits row data for what row was clicked if defaultEmit is allowed.
224
+ */
225
+ propagateItemClick(item: any, preventDefaultEmit?: boolean): void;
226
+ getAriaLabel(column: TableColumn<T>): string | undefined;
227
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any>, never>;
228
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any>, "nggv-table", never, { "tableColumns": { "alias": "tableColumns"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "rowId": { "alias": "rowId"; "required": false; }; "hasRowSpan": { "alias": "hasRowSpan"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "allowLocalSort": { "alias": "allowLocalSort"; "required": false; }; "thook": { "alias": "thook"; "required": false; }; "trThookFn": { "alias": "trThookFn"; "required": false; }; "ariaLabelCheckboxTh": { "alias": "ariaLabelCheckboxTh"; "required": false; }; "ariaLabelCheckboxTr": { "alias": "ariaLabelCheckboxTr"; "required": false; }; "ariaLabelsOrderBy": { "alias": "ariaLabelsOrderBy"; "required": false; }; }, { "ngvRowClick": "ngvRowClick"; "ngvRowSelect": "ngvRowSelect"; "ngvOrderBy": "ngvOrderBy"; }, ["appendedRowsTemplate", "customFooterTemplate", "customTemplates"], never, false, never>;
229
+ }
@@ -0,0 +1,36 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TableDirective {
4
+ columnType: 'numeric' | 'text' | undefined;
5
+ sortable?: boolean;
6
+ sortOrder?: 'desc' | 'asc';
7
+ value: any;
8
+ thook: string | null | undefined;
9
+ get numericColumn(): boolean;
10
+ get isSortable(): boolean;
11
+ get orderAscending(): boolean;
12
+ get orderDescending(): boolean;
13
+ get negativeValue(): boolean;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableDirective, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableDirective, "[columnType]", never, { "columnType": { "alias": "columnType"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "thook": { "alias": "thook"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
17
+ export declare class TableTemplateDirective<K = string> {
18
+ templateRef: TemplateRef<any>;
19
+ tableColumn: K;
20
+ tableColumnTarget?: 'th' | 'td' | 'both';
21
+ constructor(templateRef: TemplateRef<any>);
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableTemplateDirective<any>, never>;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableTemplateDirective<any>, "[tableColumn]", never, { "tableColumn": { "alias": "tableColumn"; "required": false; }; "tableColumnTarget": { "alias": "tableColumnTarget"; "required": false; }; }, {}, never, never, false, never>;
24
+ }
25
+ export declare class TableFooterTemplateDirective {
26
+ templateRef: TemplateRef<any>;
27
+ constructor(templateRef: TemplateRef<any>);
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableFooterTemplateDirective, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableFooterTemplateDirective, "[tableFooter]", never, {}, {}, never, never, false, never>;
30
+ }
31
+ export declare class TableAppendableRowsTemplateDirective {
32
+ templateRef: TemplateRef<any>;
33
+ constructor(templateRef: TemplateRef<any>);
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableAppendableRowsTemplateDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TableAppendableRowsTemplateDirective, "[tableAppendableRows]", never, {}, {}, never, never, false, never>;
36
+ }
@@ -0,0 +1,62 @@
1
+ export type SortingOrder = 'asc' | 'desc';
2
+ export type ColumnType = 'numeric' | 'text';
3
+ /** Generic type for TableRow data */
4
+ export type TableRow = Record<string, any>;
5
+ /** Options applying to the table header */
6
+ export interface TableHeaderOptions {
7
+ /**
8
+ * Defined the text displayed in the table header.
9
+ * @example <th> {{TableColumn.label}} </th>
10
+ */
11
+ label?: string;
12
+ /** Adjusts text-alignment. */
13
+ valueType?: ColumnType;
14
+ /**
15
+ * Defines whether the table data can be ordered using this column.
16
+ * Setting this to false (or omitting it) will also remove the caret sorting symbol in specified column.
17
+ */
18
+ sortable?: boolean;
19
+ /**
20
+ * Defined aria label for a sortable column for the screen reader users.
21
+ */
22
+ ariaLabelSortable?: string;
23
+ /**
24
+ * Describes the sorting order of the column.
25
+ * As the table can only be sorted based on one column property, if the property is not undefined,
26
+ * it will instruct the table to sort the data based on this specific column.
27
+ */
28
+ order?: SortingOrder;
29
+ }
30
+ /** Options applying to table rows */
31
+ export interface TableRowOptions {
32
+ /** Adjusts text-alignment. */
33
+ valueType?: ColumnType;
34
+ /** Used to prevent the default click event to be emitted when clicking in cells for specified column */
35
+ preventDefaultClickEvent?: boolean;
36
+ }
37
+ /**
38
+ * Interface used to describe how a table column should be displayed. This includes the text and class used for the table header,
39
+ * and the data for each table row.
40
+ */
41
+ export interface TableColumn<T extends TableRow> extends TableHeaderOptions, TableRowOptions {
42
+ /**
43
+ * The property name used to identify what value to display in a cell for that column.
44
+ * @example <tr *ngFor="let data in dataList"> <td>{{ data[TableColumn.property] }}</td> </tr>
45
+ */
46
+ property: keyof T;
47
+ }
48
+ /**
49
+ * Interface describing event emitted on reordering the table.
50
+ */
51
+ export interface OrderBy<T extends TableRow> {
52
+ property: keyof T;
53
+ order: SortingOrder | undefined;
54
+ }
55
+ /**
56
+ * Interface describing the aria labels for sorting in the table.
57
+ * Aria label attributes are used for a screen reader to describe the sorting state of the table.
58
+ */
59
+ export interface ariaLabelsOrderBy {
60
+ asc: string;
61
+ desc: string;
62
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./table.component";
3
+ import * as i2 from "./table.directive";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@jsverse/transloco";
7
+ import * as i6 from "./tr-thook.pipe";
8
+ export declare class NggvTableModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvTableModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvTableModule, [typeof i1.TableComponent, typeof i2.TableDirective, typeof i2.TableTemplateDirective, typeof i2.TableFooterTemplateDirective, typeof i2.TableAppendableRowsTemplateDirective], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule, typeof i5.TranslocoModule, typeof i6.TrThookPipe], [typeof i1.TableComponent, typeof i2.TableTemplateDirective, typeof i2.TableFooterTemplateDirective, typeof i2.TableAppendableRowsTemplateDirective]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvTableModule>;
12
+ }
@@ -0,0 +1,5 @@
1
+ export declare const pick: (propertyArray: Array<string>, object: {
2
+ [key: string]: unknown;
3
+ }) => object;
4
+ export declare const orderByDescending: <T>(property: keyof T | string) => ((a: any, b: any) => number);
5
+ export declare const orderByAscending: <T>(property: keyof T | string) => ((a: any, b: any) => number);
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TrThookPipe implements PipeTransform {
4
+ transform<V>(value: V, index: number, thookFn?: (rowData: V) => string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrThookPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TrThookPipe, "trThook", true>;
7
+ }
@@ -0,0 +1,4 @@
1
+ export * from './tab.directive';
2
+ export * from './tabs.component';
3
+ export * from './tabs.models';
4
+ export * from './tabs.module';
@@ -0,0 +1,37 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive that provides the tab container with data about its child tabs.
4
+ * The directive sets its own active state and adds aria attributes.
5
+ *
6
+ * @example
7
+ * <nggv-tabs>
8
+ * <article tab="Tab title 1"> <!-- Content --> </article>
9
+ * <article tab="Tab title 2" [active]="true"> <!-- Content --> </article>
10
+ * <article tab="Tab title 3" disabled> <!-- Content --> </article>
11
+ * <article tab="<strong>Tab title 4</strong>"> <!-- Content --> </article>
12
+ * </nggv-tabs>
13
+ */
14
+ export declare class TabDirective {
15
+ /** @internal */
16
+ baseClass: boolean;
17
+ /** @internal */
18
+ role: string;
19
+ /** Special property used for selecting DOM elements during automated UI testing. */
20
+ thook: string | null | undefined;
21
+ /** Sets whether this tab should be the active tab on load. */
22
+ active: boolean;
23
+ /** @internal */
24
+ get hidden(): boolean;
25
+ /** Sets the title displayed in the tab list for this child. */
26
+ tab: string;
27
+ /** Sets whether this tab should be able to be selected. */
28
+ disabled: boolean;
29
+ /** Identifier used for aria attributes and selection. */
30
+ id: string | number | undefined;
31
+ /** @internal */
32
+ get attrId(): string;
33
+ /** @internal */
34
+ get ariaLabelledby(): string;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabDirective, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "[tab]", never, { "thook": { "alias": "thook"; "required": false; }; "active": { "alias": "active"; "required": false; }; "tab": { "alias": "tab"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>;
37
+ }
@@ -0,0 +1,65 @@
1
+ import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { Subscription } from 'rxjs';
4
+ import { TabDirective } from './tab.directive';
5
+ import { EventTabChange, Tab } from './tabs.models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class TabsComponent implements OnChanges, OnInit, AfterContentInit, OnDestroy {
8
+ protected router: Router;
9
+ /** @internal */
10
+ baseClass: boolean;
11
+ /** Special property used for selecting DOM elements during automated UI testing. */
12
+ thook: string | null | undefined;
13
+ /** @internal List of children with a {@link TabDirective}. */
14
+ tabRefs: QueryList<TabDirective>;
15
+ /**
16
+ * List of tabs to generate, this should not be used in conjunction with children that have a {@link TabDirective}.
17
+ * It is useful for generating a list of tabs with links for navigation.
18
+ * If any tab has the link property, a `<router-outlet>` is added below the tabs list.
19
+ */
20
+ tabs: Tab[];
21
+ /**
22
+ * Event triggered on initialization and every time the active tab changes.
23
+ * The tab change can be cancelled if event type is set to `'before'` and `cancel()` is called.
24
+ */
25
+ ngvTabSwitch: EventEmitter<EventTabChange>;
26
+ /** @internal Adds a `<router-outlet>` below the tabs list. */
27
+ useRouting: boolean;
28
+ /** @internal The currently active tab. */
29
+ selectedTab: Tab | undefined;
30
+ /** @internal If tab switching has started. */
31
+ isSwitching: boolean;
32
+ /** @internal */
33
+ protected subs: Subscription[];
34
+ constructor(router: Router);
35
+ /** @internal */
36
+ static uniqueIds(tabs: Tab[]): {
37
+ tab: string;
38
+ id?: string | number | undefined;
39
+ thook?: string | undefined;
40
+ active?: boolean | undefined;
41
+ disabled?: boolean | undefined;
42
+ link?: string | undefined;
43
+ directive?: TabDirective | undefined;
44
+ }[];
45
+ ngOnChanges(changes: SimpleChanges): void;
46
+ ngOnInit(): void;
47
+ ngAfterContentInit(): void;
48
+ /** @internal */
49
+ protected updateFromInput: () => void;
50
+ /** @internal */
51
+ protected updateFromReferences: () => void;
52
+ /** @internal */
53
+ protected updateTabs(): void;
54
+ ngOnDestroy(): void;
55
+ /** @internal */
56
+ protected activateTab(tab: Tab): void;
57
+ /** @internal */
58
+ onSelect(id: string | number | undefined): void;
59
+ /** @internal */
60
+ onKeyDown(event: KeyboardEvent): boolean;
61
+ /** @internal */
62
+ protected tabFocusHelper(event: KeyboardEvent, tabElement: HTMLElement): void;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "nggv-tabs", never, { "thook": { "alias": "thook"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; }, { "ngvTabSwitch": "ngvTabSwitch"; }, ["tabRefs"], ["*"], false, never>;
65
+ }
@@ -0,0 +1,25 @@
1
+ import { TabDirective } from './tab.directive';
2
+ export interface Tab {
3
+ /** Sets the title displayed in the tab list for this child. */
4
+ tab: string;
5
+ id?: string | number;
6
+ thook?: string;
7
+ active?: boolean;
8
+ disabled?: boolean;
9
+ link?: string;
10
+ directive?: TabDirective;
11
+ }
12
+ export type EventTabChange = {
13
+ type: 'start';
14
+ prev: Tab | undefined;
15
+ next: Tab;
16
+ cancel: () => void;
17
+ } | {
18
+ type: 'cancel';
19
+ prev: Tab | undefined;
20
+ next: Tab;
21
+ } | {
22
+ type: 'end';
23
+ prev: Tab | undefined;
24
+ next: Tab;
25
+ };
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tab.directive";
3
+ import * as i2 from "./tabs.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@jsverse/transloco";
6
+ import * as i5 from "@angular/router";
7
+ export declare class NggvTabsModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvTabsModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvTabsModule, [typeof i1.TabDirective, typeof i2.TabsComponent], [typeof i3.CommonModule, typeof i4.TranslocoModule, typeof i5.RouterModule], [typeof i1.TabDirective, typeof i2.TabsComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvTabsModule>;
11
+ }
@@ -1,15 +1,16 @@
1
+ import '@sebgroup/green-core/components/icon/icons/triangle-exclamation.js';
1
2
  import { ChangeDetectorRef } from '@angular/core';
2
3
  import { NgControl } from '@angular/forms';
3
4
  import { TranslocoScope } from '@jsverse/transloco';
4
- import { NgvBaseControlValueAccessorComponent } from '@sebgroup/green-angular/src/v-angular/base-control-value-accessor';
5
+ import { NggvBaseControlValueAccessorComponent } from '@sebgroup/green-angular/src/v-angular/base-control-value-accessor';
5
6
  import * as i0 from "@angular/core";
6
7
  /** Textarea fields allow users to add and edit longer or multiple line text. */
7
- export declare class NgvTextareaComponent extends NgvBaseControlValueAccessorComponent {
8
+ export declare class NggvTextareaComponent extends NggvBaseControlValueAccessorComponent {
8
9
  ngControl: NgControl;
9
10
  protected translocoScope: TranslocoScope;
10
11
  protected cdr: ChangeDetectorRef;
11
12
  /** Special property used for selecting DOM elements during automated UI testing. */
12
- thook: string;
13
+ thook: string | null | undefined;
13
14
  /** Text shown before input has a written value. */
14
15
  placeholder?: string;
15
16
  /** If set to true, the value will not be editable. */
@@ -39,6 +40,6 @@ export declare class NgvTextareaComponent extends NgvBaseControlValueAccessorCom
39
40
  constructor(ngControl: NgControl, translocoScope: TranslocoScope, cdr: ChangeDetectorRef);
40
41
  /** @internal */
41
42
  onInput(event: Event): void;
42
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvTextareaComponent, [{ optional: true; self: true; }, { optional: true; }, null]>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<NgvTextareaComponent, "nggv-textarea", never, { "thook": { "alias": "thook"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, ["*"], false, never>;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvTextareaComponent, [{ optional: true; self: true; }, { optional: true; }, null]>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvTextareaComponent, "nggv-textarea", never, { "thook": { "alias": "thook"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, ["*"], false, never>;
44
45
  }
@@ -1,10 +1,12 @@
1
+ import '@sebgroup/green-core/components/icon/icons/triangle-exclamation.js';
1
2
  import * as i0 from "@angular/core";
2
3
  import * as i1 from "./textarea.component";
3
4
  import * as i2 from "@angular/common";
4
5
  import * as i3 from "@sebgroup/green-angular/src/v-angular/i18n";
5
6
  import * as i4 from "@sebgroup/green-angular/src/v-angular/character-countdown";
6
- export declare class NgvTextareaModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvTextareaModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgvTextareaModule, [typeof i1.NgvTextareaComponent], [typeof i2.CommonModule, typeof i3.NgvI18nModule, typeof i4.NggCharacterCountdownDirectiveModule], [typeof i1.NgvTextareaComponent]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<NgvTextareaModule>;
7
+ import * as i5 from "@sebgroup/green-angular/src/lib/shared";
8
+ export declare class NggvTextareaModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvTextareaModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvTextareaModule, [typeof i1.NggvTextareaComponent], [typeof i2.CommonModule, typeof i3.NggvI18nModule, typeof i4.NggvCharacterCountdownDirectiveModule, typeof i5.NggCoreWrapperModule], [typeof i1.NggvTextareaComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvTextareaModule>;
10
12
  }
@@ -0,0 +1,4 @@
1
+ export * from './toast-message.service';
2
+ export * from './toast.component';
3
+ export * from './toast.models';
4
+ export * from './toast.module';
@@ -0,0 +1,17 @@
1
+ import { Observable } from 'rxjs';
2
+ import { ToastMessage } from './toast.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ToastMessageService {
5
+ private messages;
6
+ private messageSubject;
7
+ addMessage(type: 'success' | 'information' | 'error' | 'warning', translocoScope: string, titleText: string, bodyText?: string, timeout?: number): void;
8
+ removeMessage(message: ToastMessage): void;
9
+ pauseMessageTimeout(message: ToastMessage): void;
10
+ resumeMessageTimeout(message: ToastMessage): void;
11
+ getMessages(): Observable<ToastMessage[]>;
12
+ private getDuplicateMessageIndex;
13
+ private removeMessageByIndex;
14
+ private setMessageRemoveTimeout;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastMessageService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<ToastMessageService>;
17
+ }
@@ -0,0 +1,22 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { ToastMessageService } from './toast-message.service';
3
+ import { ToastMessage } from './toast.models';
4
+ import '@sebgroup/green-core/components/icon/icons/cross-small.js';
5
+ import '@sebgroup/green-core/components/icon/icons/checkmark.js';
6
+ import '@sebgroup/green-core/components/icon/icons/triangle-exclamation.js';
7
+ import '@sebgroup/green-core/components/icon/icons/circle-info.js';
8
+ import * as i0 from "@angular/core";
9
+ export declare class ToastComponent implements OnInit, OnDestroy {
10
+ private toastMessageService;
11
+ closeButtonAriaLabel?: string;
12
+ private toastMessagesSubscription;
13
+ messages: ToastMessage[];
14
+ constructor(toastMessageService: ToastMessageService);
15
+ ngOnInit(): void;
16
+ onMouseEnter(message: ToastMessage): void;
17
+ onMouseLeave(message: ToastMessage): void;
18
+ removeMessage(message: ToastMessage): void;
19
+ ngOnDestroy(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "nggv-toast", never, { "closeButtonAriaLabel": { "alias": "closeButtonAriaLabel"; "required": false; }; }, {}, never, never, false, never>;
22
+ }
@@ -0,0 +1,15 @@
1
+ export interface ToastMessage {
2
+ type: MessageType;
3
+ translocoScope: string;
4
+ titleText: string;
5
+ bodyText?: string;
6
+ timeout?: number;
7
+ timeoutId?: number;
8
+ timeoutStartTime?: number;
9
+ }
10
+ export declare enum MessageType {
11
+ Success = "success",
12
+ Information = "information",
13
+ Error = "error",
14
+ Warning = "warning"
15
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./toast.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@jsverse/transloco";
5
+ import * as i4 from "@sebgroup/green-angular/src/lib/shared";
6
+ export declare class NggvToastModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvToastModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvToastModule, [typeof i1.ToastComponent], [typeof i2.CommonModule, typeof i3.TranslocoModule, typeof i4.NggCoreWrapperModule], [typeof i1.ToastComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvToastModule>;
10
+ }