@sebgroup/green-angular 5.1.2 → 5.3.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 (448) hide show
  1. package/esm2022/lib/shared/core-control/core-control.directive.mjs +3 -3
  2. package/esm2022/src/lib/shared/core-control/core-control.directive.mjs +3 -3
  3. package/esm2022/src/v-angular/account-number/account-number.module.mjs +15 -0
  4. package/esm2022/src/v-angular/account-number/account-number.pipe.mjs +55 -0
  5. package/esm2022/src/v-angular/account-number/index.mjs +3 -0
  6. package/esm2022/src/v-angular/account-number/sebgroup-green-angular-src-v-angular-account-number.mjs +5 -0
  7. package/esm2022/src/v-angular/alert/alert.component.mjs +47 -0
  8. package/esm2022/src/v-angular/alert/alert.models.mjs +8 -0
  9. package/esm2022/src/v-angular/alert/alert.module.mjs +18 -0
  10. package/esm2022/src/v-angular/alert/index.mjs +4 -0
  11. package/esm2022/src/v-angular/alert/sebgroup-green-angular-src-v-angular-alert.mjs +5 -0
  12. package/esm2022/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +16 -6
  13. package/esm2022/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +9 -9
  14. package/esm2022/src/v-angular/breadcrumbs/breadcrumbs.component.mjs +5 -5
  15. package/esm2022/src/v-angular/breadcrumbs/breadcrumbs.module.mjs +11 -11
  16. package/esm2022/src/v-angular/button/button.component.mjs +9 -9
  17. package/esm2022/src/v-angular/button/button.module.mjs +11 -11
  18. package/esm2022/src/v-angular/card/card.component.mjs +6 -6
  19. package/esm2022/src/v-angular/card/card.module.mjs +9 -9
  20. package/esm2022/src/v-angular/character-countdown/character-countdown.module.mjs +6 -6
  21. package/esm2022/src/v-angular/checkbox/checkbox.component.mjs +9 -7
  22. package/esm2022/src/v-angular/checkbox/checkbox.module.mjs +14 -12
  23. package/esm2022/src/v-angular/core/core.utils.mjs +35 -1
  24. package/esm2022/src/v-angular/datepicker/components/calendar/calendar.component.mjs +200 -0
  25. package/esm2022/src/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +115 -0
  26. package/esm2022/src/v-angular/datepicker/components/date-input/date-input.component.mjs +203 -0
  27. package/esm2022/src/v-angular/datepicker/components/datepicker/datepicker.component.mjs +135 -0
  28. package/esm2022/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +408 -0
  29. package/esm2022/src/v-angular/datepicker/datepicker.globals.mjs +20 -0
  30. package/esm2022/src/v-angular/datepicker/datepicker.models.mjs +56 -0
  31. package/esm2022/src/v-angular/datepicker/datepicker.module.mjs +63 -0
  32. package/esm2022/src/v-angular/datepicker/datepicker.utils.mjs +196 -0
  33. package/esm2022/src/v-angular/datepicker/directives/calendar-date.directive.mjs +47 -0
  34. package/esm2022/src/v-angular/datepicker/index.mjs +17 -0
  35. package/esm2022/src/v-angular/datepicker/models/dates.mjs +291 -0
  36. package/esm2022/src/v-angular/datepicker/pipes/date-thook.pipe.mjs +30 -0
  37. package/esm2022/src/v-angular/datepicker/pipes/is-disabled.pipe.mjs +37 -0
  38. package/esm2022/src/v-angular/datepicker/pipes/matches.pipe.mjs +17 -0
  39. package/esm2022/src/v-angular/datepicker/sebgroup-green-angular-src-v-angular-datepicker.mjs +5 -0
  40. package/esm2022/src/v-angular/drag-drop/drag-drop.component.mjs +497 -0
  41. package/esm2022/src/v-angular/drag-drop/drag-drop.models.mjs +2 -0
  42. package/esm2022/src/v-angular/drag-drop/drag-drop.module.mjs +49 -0
  43. package/esm2022/src/v-angular/drag-drop/drag-drop.pipes.mjs +70 -0
  44. package/esm2022/src/v-angular/drag-drop/drag-drop.utils.mjs +76 -0
  45. package/esm2022/src/v-angular/drag-drop/index.mjs +5 -0
  46. package/esm2022/src/v-angular/drag-drop/sebgroup-green-angular-src-v-angular-drag-drop.mjs +5 -0
  47. package/esm2022/src/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +24 -9
  48. package/esm2022/src/v-angular/dropdown/dropdown.component.mjs +16 -9
  49. package/esm2022/src/v-angular/dropdown/dropdown.module.mjs +31 -15
  50. package/esm2022/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +8 -8
  51. package/esm2022/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +5 -5
  52. package/esm2022/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +17 -10
  53. package/esm2022/src/v-angular/dropdown/typeahead/typeahead.directive.mjs +27 -20
  54. package/esm2022/src/v-angular/dropdown/typeahead/typeahead.module.mjs +21 -21
  55. package/esm2022/src/v-angular/external-link/external-link.directive.mjs +5 -5
  56. package/esm2022/src/v-angular/external-link/external-link.module.mjs +9 -9
  57. package/esm2022/src/v-angular/i18n/i18n.module.mjs +12 -12
  58. package/esm2022/src/v-angular/i18n/i18n.test.module.mjs +6 -6
  59. package/esm2022/src/v-angular/info-circle/info-circle.component.mjs +6 -6
  60. package/esm2022/src/v-angular/info-circle/info-circle.module.mjs +11 -11
  61. package/esm2022/src/v-angular/input/input.component.mjs +11 -15
  62. package/esm2022/src/v-angular/input/input.module.mjs +27 -22
  63. package/esm2022/src/v-angular/input-mask/input-mask.directive.mjs +6 -6
  64. package/esm2022/src/v-angular/input-mask/input-mask.module.mjs +10 -10
  65. package/esm2022/src/v-angular/modal/dialog/dialog.component.mjs +53 -31
  66. package/esm2022/src/v-angular/modal/fold-out/fold-out.component.mjs +116 -16
  67. package/esm2022/src/v-angular/modal/fold-out/fold-out.directive.mjs +5 -5
  68. package/esm2022/src/v-angular/modal/fold-out/keyboard-key.enum.mjs +9 -0
  69. package/esm2022/src/v-angular/modal/modal.module.mjs +38 -27
  70. package/esm2022/src/v-angular/modal/slide-out/slide-out.component.mjs +35 -12
  71. package/esm2022/src/v-angular/pagination/index.mjs +3 -0
  72. package/esm2022/src/v-angular/pagination/pagination.component.mjs +144 -0
  73. package/esm2022/src/v-angular/pagination/pagination.module.mjs +37 -0
  74. package/esm2022/src/v-angular/pagination/sebgroup-green-angular-src-v-angular-pagination.mjs +5 -0
  75. package/esm2022/src/v-angular/radio/radio.component.mjs +14 -12
  76. package/esm2022/src/v-angular/radio/radio.module.mjs +12 -11
  77. package/esm2022/src/v-angular/slug/slug.module.mjs +6 -6
  78. package/esm2022/src/v-angular/table/index.mjs +9 -0
  79. package/esm2022/src/v-angular/table/sebgroup-green-angular-src-v-angular-table.mjs +5 -0
  80. package/esm2022/src/v-angular/table/table.component.mjs +406 -0
  81. package/esm2022/src/v-angular/table/table.directive.mjs +110 -0
  82. package/esm2022/src/v-angular/table/table.models.mjs +2 -0
  83. package/esm2022/src/v-angular/table/table.module.mjs +40 -0
  84. package/esm2022/src/v-angular/table/table.tools.mjs +29 -0
  85. package/esm2022/src/v-angular/table/tr-thook.pipe.mjs +22 -0
  86. package/esm2022/src/v-angular/tabs/index.mjs +8 -0
  87. package/esm2022/src/v-angular/tabs/sebgroup-green-angular-src-v-angular-tabs.mjs +5 -0
  88. package/esm2022/src/v-angular/tabs/tab.directive.mjs +81 -0
  89. package/esm2022/src/v-angular/tabs/tabs.component.mjs +262 -0
  90. package/esm2022/src/v-angular/tabs/tabs.models.mjs +2 -0
  91. package/esm2022/src/v-angular/tabs/tabs.module.mjs +21 -0
  92. package/esm2022/src/v-angular/textarea/textarea.component.mjs +9 -7
  93. package/esm2022/src/v-angular/textarea/textarea.module.mjs +27 -13
  94. package/esm2022/src/v-angular/toast/index.mjs +8 -0
  95. package/esm2022/src/v-angular/toast/sebgroup-green-angular-src-v-angular-toast.mjs +5 -0
  96. package/esm2022/src/v-angular/toast/toast-message.service.mjs +63 -0
  97. package/esm2022/src/v-angular/toast/toast.component.mjs +70 -0
  98. package/esm2022/src/v-angular/toast/toast.models.mjs +8 -0
  99. package/esm2022/src/v-angular/toast/toast.module.mjs +21 -0
  100. package/esm2022/src/v-angular/tooltip/tooltip.directive.mjs +35 -15
  101. package/esm2022/src/v-angular/tooltip/tooltip.module.mjs +11 -11
  102. package/esm2022/src/v-angular/tooltip/tooltip.styles.mjs +60 -0
  103. package/esm2022/v-angular/account-number/account-number.module.mjs +15 -0
  104. package/esm2022/v-angular/account-number/account-number.pipe.mjs +55 -0
  105. package/esm2022/v-angular/account-number/index.mjs +3 -0
  106. package/esm2022/v-angular/alert/alert.component.mjs +47 -0
  107. package/esm2022/v-angular/alert/alert.models.mjs +8 -0
  108. package/esm2022/v-angular/alert/alert.module.mjs +18 -0
  109. package/esm2022/v-angular/alert/index.mjs +4 -0
  110. package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +16 -6
  111. package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +9 -9
  112. package/esm2022/v-angular/breadcrumbs/breadcrumbs.component.mjs +5 -5
  113. package/esm2022/v-angular/breadcrumbs/breadcrumbs.module.mjs +11 -11
  114. package/esm2022/v-angular/button/button.component.mjs +9 -9
  115. package/esm2022/v-angular/button/button.module.mjs +11 -11
  116. package/esm2022/v-angular/card/card.component.mjs +6 -6
  117. package/esm2022/v-angular/card/card.module.mjs +9 -9
  118. package/esm2022/v-angular/character-countdown/character-countdown.module.mjs +6 -6
  119. package/esm2022/v-angular/checkbox/checkbox.component.mjs +9 -7
  120. package/esm2022/v-angular/checkbox/checkbox.module.mjs +14 -12
  121. package/esm2022/v-angular/datepicker/components/calendar/calendar.component.mjs +200 -0
  122. package/esm2022/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +115 -0
  123. package/esm2022/v-angular/datepicker/components/date-input/date-input.component.mjs +203 -0
  124. package/esm2022/v-angular/datepicker/components/datepicker/datepicker.component.mjs +135 -0
  125. package/esm2022/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +408 -0
  126. package/esm2022/v-angular/datepicker/datepicker.globals.mjs +20 -0
  127. package/esm2022/v-angular/datepicker/datepicker.models.mjs +56 -0
  128. package/esm2022/v-angular/datepicker/datepicker.module.mjs +63 -0
  129. package/esm2022/v-angular/datepicker/datepicker.utils.mjs +196 -0
  130. package/esm2022/v-angular/datepicker/directives/calendar-date.directive.mjs +47 -0
  131. package/esm2022/v-angular/datepicker/index.mjs +17 -0
  132. package/esm2022/v-angular/datepicker/models/dates.mjs +291 -0
  133. package/esm2022/v-angular/datepicker/pipes/date-thook.pipe.mjs +30 -0
  134. package/esm2022/v-angular/datepicker/pipes/is-disabled.pipe.mjs +37 -0
  135. package/esm2022/v-angular/datepicker/pipes/matches.pipe.mjs +17 -0
  136. package/esm2022/v-angular/drag-drop/drag-drop.component.mjs +497 -0
  137. package/esm2022/v-angular/drag-drop/drag-drop.models.mjs +2 -0
  138. package/esm2022/v-angular/drag-drop/drag-drop.module.mjs +49 -0
  139. package/esm2022/v-angular/drag-drop/drag-drop.pipes.mjs +70 -0
  140. package/esm2022/v-angular/drag-drop/drag-drop.utils.mjs +76 -0
  141. package/esm2022/v-angular/drag-drop/index.mjs +5 -0
  142. package/esm2022/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +24 -9
  143. package/esm2022/v-angular/dropdown/dropdown.component.mjs +16 -9
  144. package/esm2022/v-angular/dropdown/dropdown.module.mjs +31 -15
  145. package/esm2022/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +8 -8
  146. package/esm2022/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +5 -5
  147. package/esm2022/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +17 -10
  148. package/esm2022/v-angular/dropdown/typeahead/typeahead.directive.mjs +27 -20
  149. package/esm2022/v-angular/dropdown/typeahead/typeahead.module.mjs +21 -21
  150. package/esm2022/v-angular/external-link/external-link.directive.mjs +37 -0
  151. package/esm2022/v-angular/external-link/external-link.module.mjs +18 -0
  152. package/esm2022/v-angular/external-link/index.mjs +3 -0
  153. package/esm2022/v-angular/i18n/i18n.module.mjs +12 -12
  154. package/esm2022/v-angular/i18n/i18n.test.module.mjs +6 -6
  155. package/esm2022/v-angular/index.mjs +11 -1
  156. package/esm2022/v-angular/info-circle/info-circle.component.mjs +6 -6
  157. package/esm2022/v-angular/info-circle/info-circle.module.mjs +11 -11
  158. package/esm2022/v-angular/input/input.component.mjs +11 -15
  159. package/esm2022/v-angular/input/input.module.mjs +27 -22
  160. package/esm2022/v-angular/input-mask/input-mask.directive.mjs +6 -6
  161. package/esm2022/v-angular/input-mask/input-mask.module.mjs +10 -10
  162. package/esm2022/v-angular/modal/dialog/dialog.component.mjs +53 -31
  163. package/esm2022/v-angular/modal/fold-out/fold-out.component.mjs +116 -16
  164. package/esm2022/v-angular/modal/fold-out/fold-out.directive.mjs +5 -5
  165. package/esm2022/v-angular/modal/fold-out/keyboard-key.enum.mjs +9 -0
  166. package/esm2022/v-angular/modal/modal.module.mjs +38 -27
  167. package/esm2022/v-angular/modal/slide-out/slide-out.component.mjs +35 -12
  168. package/esm2022/v-angular/pagination/index.mjs +3 -0
  169. package/esm2022/v-angular/pagination/pagination.component.mjs +144 -0
  170. package/esm2022/v-angular/pagination/pagination.module.mjs +37 -0
  171. package/esm2022/v-angular/radio/radio.component.mjs +14 -12
  172. package/esm2022/v-angular/radio/radio.module.mjs +12 -11
  173. package/esm2022/v-angular/slug/index.mjs +3 -0
  174. package/esm2022/v-angular/slug/slug.module.mjs +18 -0
  175. package/esm2022/v-angular/slug/slug.pipe.mjs +27 -0
  176. package/esm2022/v-angular/table/index.mjs +9 -0
  177. package/esm2022/v-angular/table/table.component.mjs +406 -0
  178. package/esm2022/v-angular/table/table.directive.mjs +110 -0
  179. package/esm2022/v-angular/table/table.models.mjs +2 -0
  180. package/esm2022/v-angular/table/table.module.mjs +40 -0
  181. package/esm2022/v-angular/table/table.tools.mjs +29 -0
  182. package/esm2022/v-angular/table/tr-thook.pipe.mjs +22 -0
  183. package/esm2022/v-angular/tabs/index.mjs +8 -0
  184. package/esm2022/v-angular/tabs/tab.directive.mjs +81 -0
  185. package/esm2022/v-angular/tabs/tabs.component.mjs +262 -0
  186. package/esm2022/v-angular/tabs/tabs.models.mjs +2 -0
  187. package/esm2022/v-angular/tabs/tabs.module.mjs +21 -0
  188. package/esm2022/v-angular/textarea/textarea.component.mjs +9 -7
  189. package/esm2022/v-angular/textarea/textarea.module.mjs +27 -13
  190. package/esm2022/v-angular/toast/index.mjs +8 -0
  191. package/esm2022/v-angular/toast/toast-message.service.mjs +63 -0
  192. package/esm2022/v-angular/toast/toast.component.mjs +70 -0
  193. package/esm2022/v-angular/toast/toast.models.mjs +8 -0
  194. package/esm2022/v-angular/toast/toast.module.mjs +21 -0
  195. package/esm2022/v-angular/tooltip/tooltip.directive.mjs +35 -15
  196. package/esm2022/v-angular/tooltip/tooltip.module.mjs +11 -11
  197. package/esm2022/v-angular/tooltip/tooltip.styles.mjs +60 -0
  198. package/esm2022/v-angular/v-angular.module.mjs +104 -68
  199. package/fesm2022/sebgroup-green-angular-src-lib-shared.mjs +2 -2
  200. package/fesm2022/sebgroup-green-angular-src-lib-shared.mjs.map +1 -1
  201. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs +74 -0
  202. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs.map +1 -0
  203. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs +76 -0
  204. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs.map +1 -0
  205. package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs +23 -13
  206. package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs.map +1 -1
  207. package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs +14 -14
  208. package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs.map +1 -1
  209. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs +18 -18
  210. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs.map +1 -1
  211. package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs +13 -13
  212. package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs.map +1 -1
  213. package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs +6 -6
  214. package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs.map +1 -1
  215. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs +21 -17
  216. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs.map +1 -1
  217. package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs +34 -0
  218. package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs.map +1 -1
  219. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs +1759 -0
  220. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs.map +1 -0
  221. package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs +687 -0
  222. package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs.map +1 -0
  223. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs +126 -74
  224. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs.map +1 -1
  225. package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs +12 -12
  226. package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs.map +1 -1
  227. package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs +17 -17
  228. package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs.map +1 -1
  229. package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs +15 -15
  230. package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs.map +1 -1
  231. package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs +14 -14
  232. package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs.map +1 -1
  233. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs +36 -35
  234. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs.map +1 -1
  235. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +246 -81
  236. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +1 -1
  237. package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs +185 -0
  238. package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs.map +1 -0
  239. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs +24 -21
  240. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs.map +1 -1
  241. package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs +6 -6
  242. package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs.map +1 -1
  243. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +604 -0
  244. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +1 -0
  245. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs +367 -0
  246. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs.map +1 -0
  247. package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs +33 -18
  248. package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs.map +1 -1
  249. package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs +166 -0
  250. package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs.map +1 -0
  251. package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs +103 -24
  252. package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs.map +1 -1
  253. package/fesm2022/sebgroup-green-angular-v-angular.mjs +6369 -2156
  254. package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
  255. package/fesm2022/sebgroup-green-angular.mjs +2 -2
  256. package/fesm2022/sebgroup-green-angular.mjs.map +1 -1
  257. package/lib/shared/core-control/core-control.directive.d.ts +1 -1
  258. package/package.json +51 -3
  259. package/src/lib/shared/core-control/core-control.directive.d.ts +1 -1
  260. package/src/v-angular/account-number/README.md +63 -0
  261. package/src/v-angular/account-number/account-number.module.d.ts +2 -0
  262. package/src/v-angular/account-number/account-number.pipe.d.ts +32 -0
  263. package/src/v-angular/account-number/index.d.ts +2 -0
  264. package/src/v-angular/alert/alert.component.d.ts +19 -0
  265. package/src/v-angular/alert/alert.models.d.ts +13 -0
  266. package/src/v-angular/alert/alert.module.d.ts +8 -0
  267. package/src/v-angular/alert/index.d.ts +3 -0
  268. package/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +10 -4
  269. package/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +4 -4
  270. package/src/v-angular/breadcrumbs/breadcrumbs.component.d.ts +4 -4
  271. package/src/v-angular/breadcrumbs/breadcrumbs.module.d.ts +4 -4
  272. package/src/v-angular/button/button.component.d.ts +5 -5
  273. package/src/v-angular/button/button.module.d.ts +4 -4
  274. package/src/v-angular/card/card.component.d.ts +3 -3
  275. package/src/v-angular/card/card.module.d.ts +4 -4
  276. package/src/v-angular/character-countdown/character-countdown.module.d.ts +4 -4
  277. package/src/v-angular/checkbox/checkbox.component.d.ts +6 -5
  278. package/src/v-angular/checkbox/checkbox.module.d.ts +5 -4
  279. package/src/v-angular/core/core.utils.d.ts +1 -0
  280. package/src/v-angular/datepicker/components/calendar/calendar.component.d.ts +36 -0
  281. package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +30 -0
  282. package/src/v-angular/datepicker/components/date-input/date-input.component.d.ts +102 -0
  283. package/src/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +62 -0
  284. package/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +165 -0
  285. package/src/v-angular/datepicker/datepicker.globals.d.ts +13 -0
  286. package/src/v-angular/datepicker/datepicker.models.d.ts +50 -0
  287. package/src/v-angular/datepicker/datepicker.module.d.ts +19 -0
  288. package/src/v-angular/datepicker/datepicker.utils.d.ts +39 -0
  289. package/src/v-angular/datepicker/directives/calendar-date.directive.d.ts +21 -0
  290. package/src/v-angular/datepicker/index.d.ts +13 -0
  291. package/src/v-angular/datepicker/models/dates.d.ts +15 -0
  292. package/src/v-angular/datepicker/pipes/date-thook.pipe.d.ts +8 -0
  293. package/src/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +8 -0
  294. package/src/v-angular/datepicker/pipes/matches.pipe.d.ts +7 -0
  295. package/src/v-angular/drag-drop/drag-drop.component.d.ts +131 -0
  296. package/src/v-angular/drag-drop/drag-drop.models.d.ts +49 -0
  297. package/src/v-angular/drag-drop/drag-drop.module.d.ts +13 -0
  298. package/src/v-angular/drag-drop/drag-drop.pipes.d.ts +40 -0
  299. package/src/v-angular/drag-drop/drag-drop.utils.d.ts +33 -0
  300. package/src/v-angular/drag-drop/index.d.ts +4 -0
  301. package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +11 -4
  302. package/src/v-angular/dropdown/dropdown.component.d.ts +10 -6
  303. package/src/v-angular/dropdown/dropdown.module.d.ts +8 -7
  304. package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +6 -6
  305. package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +3 -3
  306. package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +8 -6
  307. package/src/v-angular/dropdown/typeahead/typeahead.directive.d.ts +14 -12
  308. package/src/v-angular/dropdown/typeahead/typeahead.module.d.ts +4 -4
  309. package/src/v-angular/external-link/external-link.directive.d.ts +3 -3
  310. package/src/v-angular/external-link/external-link.module.d.ts +4 -4
  311. package/src/v-angular/i18n/i18n.module.d.ts +7 -7
  312. package/src/v-angular/i18n/i18n.test.module.d.ts +4 -4
  313. package/src/v-angular/info-circle/info-circle.component.d.ts +4 -4
  314. package/src/v-angular/info-circle/info-circle.module.d.ts +4 -4
  315. package/src/v-angular/input/input.component.d.ts +5 -10
  316. package/src/v-angular/input/input.module.d.ts +5 -4
  317. package/src/v-angular/input-mask/input-mask.directive.d.ts +3 -3
  318. package/src/v-angular/input-mask/input-mask.module.d.ts +5 -5
  319. package/src/v-angular/modal/dialog/dialog.component.d.ts +16 -7
  320. package/src/v-angular/modal/fold-out/fold-out.component.d.ts +34 -11
  321. package/src/v-angular/modal/fold-out/fold-out.directive.d.ts +3 -3
  322. package/src/v-angular/modal/fold-out/keyboard-key.enum.d.ts +7 -0
  323. package/src/v-angular/modal/modal.module.d.ts +4 -4
  324. package/src/v-angular/modal/slide-out/slide-out.component.d.ts +13 -6
  325. package/src/v-angular/pagination/index.d.ts +2 -0
  326. package/src/v-angular/pagination/pagination.component.d.ts +64 -0
  327. package/src/v-angular/pagination/pagination.module.d.ts +12 -0
  328. package/src/v-angular/radio/radio.component.d.ts +14 -13
  329. package/src/v-angular/radio/radio.module.d.ts +5 -4
  330. package/src/v-angular/slug/slug.module.d.ts +4 -4
  331. package/src/v-angular/table/index.d.ts +5 -0
  332. package/src/v-angular/table/table.component.d.ts +239 -0
  333. package/src/v-angular/table/table.directive.d.ts +36 -0
  334. package/src/v-angular/table/table.models.d.ts +62 -0
  335. package/src/v-angular/table/table.module.d.ts +12 -0
  336. package/src/v-angular/table/table.tools.d.ts +5 -0
  337. package/src/v-angular/table/tr-thook.pipe.d.ts +7 -0
  338. package/src/v-angular/tabs/index.d.ts +4 -0
  339. package/src/v-angular/tabs/tab.directive.d.ts +37 -0
  340. package/src/v-angular/tabs/tabs.component.d.ts +65 -0
  341. package/src/v-angular/tabs/tabs.models.d.ts +25 -0
  342. package/src/v-angular/tabs/tabs.module.d.ts +11 -0
  343. package/src/v-angular/textarea/textarea.component.d.ts +6 -5
  344. package/src/v-angular/textarea/textarea.module.d.ts +6 -4
  345. package/src/v-angular/toast/index.d.ts +4 -0
  346. package/src/v-angular/toast/toast-message.service.d.ts +17 -0
  347. package/src/v-angular/toast/toast.component.d.ts +22 -0
  348. package/src/v-angular/toast/toast.models.d.ts +15 -0
  349. package/src/v-angular/toast/toast.module.d.ts +10 -0
  350. package/src/v-angular/tooltip/tooltip.directive.d.ts +5 -3
  351. package/src/v-angular/tooltip/tooltip.module.d.ts +4 -4
  352. package/src/v-angular/tooltip/tooltip.styles.d.ts +11 -0
  353. package/v-angular/account-number/account-number.module.d.ts +2 -0
  354. package/v-angular/account-number/account-number.pipe.d.ts +32 -0
  355. package/v-angular/account-number/index.d.ts +2 -0
  356. package/v-angular/alert/alert.component.d.ts +19 -0
  357. package/v-angular/alert/alert.models.d.ts +13 -0
  358. package/v-angular/alert/alert.module.d.ts +8 -0
  359. package/v-angular/alert/index.d.ts +3 -0
  360. package/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +10 -4
  361. package/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +4 -4
  362. package/v-angular/breadcrumbs/breadcrumbs.component.d.ts +4 -4
  363. package/v-angular/breadcrumbs/breadcrumbs.module.d.ts +4 -4
  364. package/v-angular/button/button.component.d.ts +5 -5
  365. package/v-angular/button/button.module.d.ts +4 -4
  366. package/v-angular/card/card.component.d.ts +3 -3
  367. package/v-angular/card/card.module.d.ts +4 -4
  368. package/v-angular/character-countdown/character-countdown.module.d.ts +4 -4
  369. package/v-angular/checkbox/checkbox.component.d.ts +6 -5
  370. package/v-angular/checkbox/checkbox.module.d.ts +5 -4
  371. package/v-angular/datepicker/components/calendar/calendar.component.d.ts +36 -0
  372. package/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +30 -0
  373. package/v-angular/datepicker/components/date-input/date-input.component.d.ts +102 -0
  374. package/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +62 -0
  375. package/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +165 -0
  376. package/v-angular/datepicker/datepicker.globals.d.ts +13 -0
  377. package/v-angular/datepicker/datepicker.models.d.ts +50 -0
  378. package/v-angular/datepicker/datepicker.module.d.ts +19 -0
  379. package/v-angular/datepicker/datepicker.utils.d.ts +39 -0
  380. package/v-angular/datepicker/directives/calendar-date.directive.d.ts +21 -0
  381. package/v-angular/datepicker/index.d.ts +13 -0
  382. package/v-angular/datepicker/models/dates.d.ts +15 -0
  383. package/v-angular/datepicker/pipes/date-thook.pipe.d.ts +8 -0
  384. package/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +8 -0
  385. package/v-angular/datepicker/pipes/matches.pipe.d.ts +7 -0
  386. package/v-angular/drag-drop/drag-drop.component.d.ts +131 -0
  387. package/v-angular/drag-drop/drag-drop.models.d.ts +49 -0
  388. package/v-angular/drag-drop/drag-drop.module.d.ts +13 -0
  389. package/v-angular/drag-drop/drag-drop.pipes.d.ts +40 -0
  390. package/v-angular/drag-drop/drag-drop.utils.d.ts +33 -0
  391. package/v-angular/drag-drop/index.d.ts +4 -0
  392. package/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +11 -4
  393. package/v-angular/dropdown/dropdown.component.d.ts +10 -6
  394. package/v-angular/dropdown/dropdown.module.d.ts +8 -7
  395. package/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +6 -6
  396. package/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +3 -3
  397. package/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +8 -6
  398. package/v-angular/dropdown/typeahead/typeahead.directive.d.ts +14 -12
  399. package/v-angular/dropdown/typeahead/typeahead.module.d.ts +4 -4
  400. package/v-angular/external-link/external-link.directive.d.ts +17 -0
  401. package/v-angular/external-link/external-link.module.d.ts +8 -0
  402. package/v-angular/external-link/index.d.ts +2 -0
  403. package/v-angular/i18n/i18n.module.d.ts +7 -7
  404. package/v-angular/i18n/i18n.test.module.d.ts +4 -4
  405. package/v-angular/index.d.ts +10 -0
  406. package/v-angular/info-circle/info-circle.component.d.ts +4 -4
  407. package/v-angular/info-circle/info-circle.module.d.ts +4 -4
  408. package/v-angular/input/input.component.d.ts +5 -10
  409. package/v-angular/input/input.module.d.ts +5 -4
  410. package/v-angular/input-mask/input-mask.directive.d.ts +3 -3
  411. package/v-angular/input-mask/input-mask.module.d.ts +5 -5
  412. package/v-angular/modal/dialog/dialog.component.d.ts +16 -7
  413. package/v-angular/modal/fold-out/fold-out.component.d.ts +34 -11
  414. package/v-angular/modal/fold-out/fold-out.directive.d.ts +3 -3
  415. package/v-angular/modal/fold-out/keyboard-key.enum.d.ts +7 -0
  416. package/v-angular/modal/modal.module.d.ts +4 -4
  417. package/v-angular/modal/slide-out/slide-out.component.d.ts +13 -6
  418. package/v-angular/pagination/index.d.ts +2 -0
  419. package/v-angular/pagination/pagination.component.d.ts +64 -0
  420. package/v-angular/pagination/pagination.module.d.ts +12 -0
  421. package/v-angular/radio/radio.component.d.ts +14 -13
  422. package/v-angular/radio/radio.module.d.ts +5 -4
  423. package/v-angular/slug/index.d.ts +2 -0
  424. package/v-angular/slug/slug.module.d.ts +8 -0
  425. package/v-angular/slug/slug.pipe.d.ts +12 -0
  426. package/v-angular/table/index.d.ts +5 -0
  427. package/v-angular/table/table.component.d.ts +239 -0
  428. package/v-angular/table/table.directive.d.ts +36 -0
  429. package/v-angular/table/table.models.d.ts +62 -0
  430. package/v-angular/table/table.module.d.ts +12 -0
  431. package/v-angular/table/table.tools.d.ts +5 -0
  432. package/v-angular/table/tr-thook.pipe.d.ts +7 -0
  433. package/v-angular/tabs/index.d.ts +4 -0
  434. package/v-angular/tabs/tab.directive.d.ts +37 -0
  435. package/v-angular/tabs/tabs.component.d.ts +65 -0
  436. package/v-angular/tabs/tabs.models.d.ts +25 -0
  437. package/v-angular/tabs/tabs.module.d.ts +11 -0
  438. package/v-angular/textarea/textarea.component.d.ts +6 -5
  439. package/v-angular/textarea/textarea.module.d.ts +6 -4
  440. package/v-angular/toast/index.d.ts +4 -0
  441. package/v-angular/toast/toast-message.service.d.ts +17 -0
  442. package/v-angular/toast/toast.component.d.ts +22 -0
  443. package/v-angular/toast/toast.models.d.ts +15 -0
  444. package/v-angular/toast/toast.module.d.ts +10 -0
  445. package/v-angular/tooltip/tooltip.directive.d.ts +5 -3
  446. package/v-angular/tooltip/tooltip.module.d.ts +4 -4
  447. package/v-angular/tooltip/tooltip.styles.d.ts +11 -0
  448. package/v-angular/v-angular.module.d.ts +27 -18
@@ -1,24 +1,47 @@
1
- import { ElementRef, OnDestroy } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
2
2
  import '@sebgroup/green-core/components/icon/icons/dot-grid-one-horizontal.js';
3
- import { Subscription } from 'rxjs';
4
3
  import * as i0 from "@angular/core";
5
- export declare class NgvFoldOutComponent implements OnDestroy {
4
+ export declare class NggvFoldOutComponent implements OnDestroy, AfterViewInit {
6
5
  /** Special property used for selecting DOM elements during automated UI testing. */
7
- thook: string;
6
+ thook: string | null | undefined;
8
7
  inputRef?: ElementRef;
8
+ container?: ElementRef;
9
9
  /** Aligns the dropdown list with the buttons right or left side */
10
10
  alignOptions: 'left' | 'right';
11
- onClickSubscription: Subscription | undefined;
11
+ /** Option to show text with action button */
12
+ text?: string;
13
+ /** Aria label for the fold-out button */
14
+ ariaLabel?: string;
12
15
  /** @internal */
13
- shown: boolean;
14
- constructor();
16
+ protected shown: boolean;
17
+ private activeIndex;
18
+ private firstArrowClick;
19
+ private ariaFocusAttributeName;
20
+ private blurAllElements;
21
+ private blurElement;
22
+ private focusElement;
23
+ private getChildIndex;
24
+ private onClickSubscription;
25
+ private onKeyUpSubscription;
26
+ private get children();
27
+ private get lastChild();
28
+ private get focusedElement();
29
+ ngAfterViewInit(): void;
15
30
  ngOnDestroy(): void;
16
31
  /** Toggle display of the option list */
17
- toggleVisibility(event?: Event, setVisibility?: boolean): void;
32
+ toggleVisibility(): void;
33
+ setVisibility(setVisibility?: boolean): void;
18
34
  /**
19
35
  * Closes the fold-out on click outside.
20
36
  */
21
- subscribeToOutsideClickEvent(): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvFoldOutComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<NgvFoldOutComponent, "nggv-fold-out", never, { "thook": { "alias": "thook"; "required": false; }; "alignOptions": { "alias": "alignOptions"; "required": false; }; }, {}, never, ["*"], false, never>;
37
+ private subscribeToOutsideClickEvent;
38
+ private subscribeToKeyDownEvent;
39
+ private onKeyDown;
40
+ private handleArrowUpClick;
41
+ private handleArrowDownClick;
42
+ private handleFocus;
43
+ private takeAction;
44
+ private resetChildren;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvFoldOutComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvFoldOutComponent, "nggv-fold-out", never, { "thook": { "alias": "thook"; "required": false; }; "alignOptions": { "alias": "alignOptions"; "required": false; }; "text": { "alias": "text"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
24
47
  }
@@ -1,6 +1,6 @@
1
1
  import * as i0 from "@angular/core";
2
- export declare class NgvFoldOutOptionDirective {
2
+ export declare class NggvFoldOutOptionDirective {
3
3
  baseClass: boolean;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvFoldOutOptionDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgvFoldOutOptionDirective, "[nggvOption]", never, {}, {}, never, never, false, never>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvFoldOutOptionDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NggvFoldOutOptionDirective, "[nggvOption]", never, {}, {}, never, never, false, never>;
6
6
  }
@@ -0,0 +1,7 @@
1
+ export declare enum KeyboardKey {
2
+ Escape = "Escape",
3
+ Space = "Space",
4
+ Enter = "Enter",
5
+ ArrowUp = "ArrowUp",
6
+ ArrowDown = "ArrowDown"
7
+ }
@@ -8,8 +8,8 @@ import * as i5 from "@angular/common";
8
8
  import * as i6 from "@sebgroup/green-angular/src/v-angular/button";
9
9
  import * as i7 from "@sebgroup/green-angular/src/v-angular/i18n";
10
10
  import * as i8 from "@sebgroup/green-angular/src/lib/shared";
11
- export declare class NgvModalModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvModalModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgvModalModule, [typeof i1.NgvDialogComponent, typeof i2.NgvSlideOutComponent, typeof i3.NgvFoldOutComponent, typeof i4.NgvFoldOutOptionDirective], [typeof i5.CommonModule, typeof i6.NgvButtonModule, typeof i7.NgvI18nModule, typeof i8.NggCoreWrapperModule], [typeof i1.NgvDialogComponent, typeof i2.NgvSlideOutComponent, typeof i3.NgvFoldOutComponent, typeof i4.NgvFoldOutOptionDirective]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<NgvModalModule>;
11
+ export declare class NggvModalModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvModalModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvModalModule, [typeof i1.NggvDialogComponent, typeof i2.NggvSlideOutComponent, typeof i3.NggvFoldOutComponent, typeof i4.NggvFoldOutOptionDirective], [typeof i5.CommonModule, typeof i6.NggvButtonModule, typeof i7.NggvI18nModule, typeof i8.NggCoreWrapperModule], [typeof i1.NggvDialogComponent, typeof i2.NggvSlideOutComponent, typeof i3.NggvFoldOutComponent, typeof i4.NggvFoldOutOptionDirective]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvModalModule>;
15
15
  }
@@ -1,4 +1,4 @@
1
- import { ElementRef, EventEmitter, OnInit } from '@angular/core';
1
+ import { ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
2
2
  import { DialogButtons } from '../modal.types';
3
3
  import * as i0 from "@angular/core";
4
4
  /** Modal slide-out component based on vanilla pattern library design.
@@ -13,14 +13,17 @@ import * as i0 from "@angular/core";
13
13
  * The closing button can be selected using 'slideout-close'.
14
14
  * The backdrop is selectable using 'slideout-backdrop'.
15
15
  */
16
- export declare class NgvSlideOutComponent implements OnInit {
16
+ export declare class NggvSlideOutComponent implements OnInit {
17
17
  private host;
18
+ private renderer;
18
19
  /** @internal */
19
20
  slideOutRef: ElementRef | undefined;
20
21
  /** Sets from which side the modal should open. */
21
22
  side: 'left' | 'right';
22
23
  /** Defines the default visibility state of the slide-out. */
23
- shown: boolean;
24
+ private _shown;
25
+ set shown(value: boolean);
26
+ get shown(): boolean;
24
27
  /** Defines the default visibility state of the modal. */
25
28
  initiallyShown: boolean;
26
29
  /** Sets modal heading. Will be translated (using transloco) if the string matches a cms key. */
@@ -38,6 +41,8 @@ export declare class NgvSlideOutComponent implements OnInit {
38
41
  autoWidth: boolean;
39
42
  /** Special property used for selecting DOM elements during automated UI testing. */
40
43
  thook: string;
44
+ /** Aria label for the Close button with "X" icon, in the header */
45
+ closeButtonAriaLabel?: string;
41
46
  /** @internal */
42
47
  get fromLeft(): boolean;
43
48
  _buttons: DialogButtons | undefined;
@@ -51,7 +56,7 @@ export declare class NgvSlideOutComponent implements OnInit {
51
56
  private previous;
52
57
  private firstFocusable;
53
58
  private lastFocusable;
54
- constructor(host: ElementRef);
59
+ constructor(host: ElementRef, renderer: Renderer2);
55
60
  ngOnInit(): void;
56
61
  onAction(event: Event, action: string): void;
57
62
  /**
@@ -71,6 +76,8 @@ export declare class NgvSlideOutComponent implements OnInit {
71
76
  /** @internal */
72
77
  focusTrap(event: KeyboardEvent): void;
73
78
  private limitFocusable;
74
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvSlideOutComponent, never>;
75
- static ɵcmp: i0.ɵɵComponentDeclaration<NgvSlideOutComponent, "nggv-slideout-modal", never, { "side": { "alias": "side"; "required": false; }; "shown": { "alias": "shown"; "required": false; }; "initiallyShown": { "alias": "initiallyShown"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "title": { "alias": "title"; "required": false; }; "content": { "alias": "content"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "autoWidth": { "alias": "autoWidth"; "required": false; }; "thook": { "alias": "thook"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, { "nggvCloseEvent": "nggvCloseEvent"; "nggvPositiveEvent": "nggvPositiveEvent"; "nggvNeutralEvent": "nggvNeutralEvent"; "nggvNegativeEvent": "nggvNegativeEvent"; }, never, ["*", "[slot='outside-content']"], false, never>;
79
+ private hideOverflow;
80
+ private resetOverflow;
81
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvSlideOutComponent, never>;
82
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvSlideOutComponent, "nggv-slideout-modal", never, { "side": { "alias": "side"; "required": false; }; "shown": { "alias": "shown"; "required": false; }; "initiallyShown": { "alias": "initiallyShown"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "title": { "alias": "title"; "required": false; }; "content": { "alias": "content"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "autoWidth": { "alias": "autoWidth"; "required": false; }; "thook": { "alias": "thook"; "required": false; }; "closeButtonAriaLabel": { "alias": "closeButtonAriaLabel"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, { "nggvCloseEvent": "nggvCloseEvent"; "nggvPositiveEvent": "nggvPositiveEvent"; "nggvNeutralEvent": "nggvNeutralEvent"; "nggvNegativeEvent": "nggvNegativeEvent"; }, never, ["*", "[slot='outside-content']"], false, never>;
76
83
  }
@@ -0,0 +1,2 @@
1
+ export * from './pagination.component';
2
+ export * from './pagination.module';
@@ -0,0 +1,64 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import '@sebgroup/green-core/components/icon/icons/chevron-left.js';
3
+ import '@sebgroup/green-core/components/icon/icons/chevron-right.js';
4
+ import '@sebgroup/green-core/components/icon/icons/arrow-left.js';
5
+ import * as i0 from "@angular/core";
6
+ /** The Pagination component is used to separate long sets of data so that it is easier for a user to consume information. To change the current page simply click on the page number. */
7
+ export declare class PaginationComponent implements OnChanges {
8
+ /** Total size of pagination */
9
+ size: number;
10
+ /** Selected page */
11
+ value: number;
12
+ /** First page text */
13
+ firstText?: string;
14
+ /** Last page text */
15
+ lastText?: string;
16
+ /** Next page text */
17
+ nextText?: string;
18
+ /** Offset per page */
19
+ offset?: number;
20
+ /** Number of pages to display*/
21
+ pagingLength?: number;
22
+ /** Previous page text */
23
+ previousText?: string;
24
+ /** Use first and last navigation buttons*/
25
+ useFirstAndLast?: boolean;
26
+ /** Use text-based navigation buttons*/
27
+ useTextNav?: boolean;
28
+ /** Use dot-navigation */
29
+ useDotNav?: boolean;
30
+ /** Use 'Go to page' input field */
31
+ showGoToPage: boolean;
32
+ /** Element class name */
33
+ className: string;
34
+ /** Element ID */
35
+ id?: string;
36
+ /** Callback on page change */
37
+ pageNumberChange: EventEmitter<number>;
38
+ /** @internal */
39
+ pageNumber: number;
40
+ /** @internal */
41
+ list: Array<number>;
42
+ /** @internal */
43
+ dotnavList: Array<number>;
44
+ /** @internal */
45
+ pagingSize: number;
46
+ /** @internal */
47
+ showEllipsisStart: boolean;
48
+ /** @internal */
49
+ showEllipsisEnd: boolean;
50
+ ngOnChanges(changes: SimpleChanges): void;
51
+ /** @internal */
52
+ setPagingSize(): void;
53
+ /** @internal */
54
+ handleOnChange(value: number): void;
55
+ /** @internal */
56
+ handlePageInput(pageInput: string): void;
57
+ /**
58
+ * Generates an array of the pages that needs to be displayed
59
+ * It depends on the size, offset, and the current value
60
+ */
61
+ private generateList;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "nggv-pagination", never, { "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "firstText": { "alias": "firstText"; "required": false; }; "lastText": { "alias": "lastText"; "required": false; }; "nextText": { "alias": "nextText"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "pagingLength": { "alias": "pagingLength"; "required": false; }; "previousText": { "alias": "previousText"; "required": false; }; "useFirstAndLast": { "alias": "useFirstAndLast"; "required": false; }; "useTextNav": { "alias": "useTextNav"; "required": false; }; "useDotNav": { "alias": "useDotNav"; "required": false; }; "showGoToPage": { "alias": "showGoToPage"; "required": false; }; "className": { "alias": "className"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "pageNumberChange": "pageNumberChange"; }, never, never, false, never>;
64
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./pagination.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@sebgroup/green-angular/src/v-angular/i18n";
6
+ import * as i5 from "@jsverse/transloco";
7
+ import * as i6 from "@sebgroup/green-angular/src/lib/shared";
8
+ export declare class NggvPaginationModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvPaginationModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvPaginationModule, [typeof i1.PaginationComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.NggvI18nModule, typeof i5.TranslocoModule, typeof i6.NggCoreWrapperModule], [typeof i1.PaginationComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvPaginationModule>;
12
+ }
@@ -1,29 +1,30 @@
1
+ import '@sebgroup/green-core/components/icon/icons/triangle-exclamation.js';
1
2
  import { ChangeDetectorRef, OnDestroy, OnInit } 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
  /** @internal Internal class used to uncheck radio buttons with the matching name. */
7
- export declare class NgvRadioControlRegistry {
8
+ export declare class NggvRadioControlRegistry {
8
9
  private _radios;
9
- add(control: NgControl, radio: NgvRadioComponent): void;
10
- remove(radio: NgvRadioComponent): void;
11
- select(radio: NgvRadioComponent): void;
10
+ add(control: NgControl, radio: NggvRadioComponent): void;
11
+ remove(radio: NggvRadioComponent): void;
12
+ select(radio: NggvRadioComponent): void;
12
13
  private _isSameGroup;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvRadioControlRegistry, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<NgvRadioControlRegistry>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvRadioControlRegistry, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<NggvRadioControlRegistry>;
15
16
  }
16
17
  /**
17
18
  * Use radio buttons when users must select one option in a list with exclusive options out of a set of two or more options.
18
19
  * https://designlibrary.sebgroup.com/components/component-radiobutton
19
20
  */
20
- export declare class NgvRadioComponent extends NgvBaseControlValueAccessorComponent implements OnInit, OnDestroy {
21
+ export declare class NggvRadioComponent extends NggvBaseControlValueAccessorComponent implements OnInit, OnDestroy {
21
22
  ngControl: NgControl;
22
23
  protected translocoScope: TranslocoScope;
23
- protected registry: NgvRadioControlRegistry;
24
+ protected registry: NggvRadioControlRegistry;
24
25
  protected cdr: ChangeDetectorRef;
25
26
  /** Special property used for selecting DOM elements during automated UI testing. */
26
- thook: string;
27
+ thook: string | null | undefined;
27
28
  /** Syncs a FormControl in an existing FormGroup to a form control element by name. */
28
29
  formControlName?: string;
29
30
  /**
@@ -32,7 +33,7 @@ export declare class NgvRadioComponent extends NgvBaseControlValueAccessorCompon
32
33
  * @param registry internal registry used to uncheck radio buttons with the matching name, through dependency injection.
33
34
  * @param cdr change detection reference for rendering purposes.
34
35
  */
35
- constructor(ngControl: NgControl, translocoScope: TranslocoScope, registry: NgvRadioControlRegistry, cdr: ChangeDetectorRef);
36
+ constructor(ngControl: NgControl, translocoScope: TranslocoScope, registry: NggvRadioControlRegistry, cdr: ChangeDetectorRef);
36
37
  ngOnInit(): void;
37
38
  ngOnDestroy(): void;
38
39
  /** @internal */
@@ -43,6 +44,6 @@ export declare class NgvRadioComponent extends NgvBaseControlValueAccessorCompon
43
44
  registerOnChange(fn: (value: any) => any): void;
44
45
  /** Checks that the name properties match and updates name property if only formControlName is given. */
45
46
  private _checkName;
46
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvRadioComponent, [{ optional: true; self: true; }, { optional: true; }, null, null]>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<NgvRadioComponent, "nggv-radio", never, { "thook": { "alias": "thook"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; }, {}, never, ["*"], false, never>;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvRadioComponent, [{ optional: true; self: true; }, { optional: true; }, null, null]>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvRadioComponent, "nggv-radio", never, { "thook": { "alias": "thook"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; }, {}, never, ["*"], false, never>;
48
49
  }
@@ -2,8 +2,9 @@ import * as i0 from "@angular/core";
2
2
  import * as i1 from "./radio.component";
3
3
  import * as i2 from "@angular/common";
4
4
  import * as i3 from "@sebgroup/green-angular/src/v-angular/i18n";
5
- export declare class NgvRadioModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<NgvRadioModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgvRadioModule, [typeof i1.NgvRadioComponent], [typeof i2.CommonModule, typeof i3.NgvI18nModule], [typeof i1.NgvRadioComponent]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<NgvRadioModule>;
5
+ import * as i4 from "@sebgroup/green-angular/src/lib/shared";
6
+ export declare class NggvRadioModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvRadioModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvRadioModule, [typeof i1.NggvRadioComponent], [typeof i2.CommonModule, typeof i3.NggvI18nModule, typeof i4.NggCoreWrapperModule], [typeof i1.NggvRadioComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvRadioModule>;
9
10
  }
@@ -0,0 +1,2 @@
1
+ export * from './slug.pipe';
2
+ export * from './slug.module';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./slug.pipe";
3
+ import * as i2 from "@angular/common";
4
+ export declare class NggvSlugPipeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvSlugPipeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvSlugPipeModule, [typeof i1.SlugPipe], [typeof i2.CommonModule], [typeof i1.SlugPipe]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvSlugPipeModule>;
8
+ }
@@ -0,0 +1,12 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /** Pipe used to transform text with special characters into a simple kebab-case id. */
4
+ export declare class SlugPipe implements PipeTransform {
5
+ /**
6
+ * Function for executing the transformation to kebab-case id.
7
+ * @param value the text with special characters which to transform.
8
+ */
9
+ transform(value?: string): unknown;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SlugPipe, never>;
11
+ static ɵpipe: i0.ɵɵPipeDeclaration<SlugPipe, "slug", false>;
12
+ }
@@ -0,0 +1,5 @@
1
+ export * from './table.component';
2
+ export * from './table.directive';
3
+ export * from './tr-thook.pipe';
4
+ export * from './table.models';
5
+ export * from './table.module';
@@ -0,0 +1,239 @@
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
+ * Used to enable/disable expandable rows.
138
+ * Defaults to false.
139
+ */
140
+ expandable: boolean;
141
+ /**
142
+ * Property name used to describe the subItems in the data table.
143
+ */
144
+ subItemsProp: string;
145
+ /**
146
+ * 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.
147
+ * Disabled by default.
148
+ */
149
+ allowLocalSort: boolean;
150
+ /** Special property used for selecting DOM elements during automated UI testing. */
151
+ thook: string;
152
+ /** Function to overwrite generated thook for each row. */
153
+ trThookFn?: (item: T) => string;
154
+ /** Aria label for the checkbox in the table header */
155
+ ariaLabelCheckboxTh?: string;
156
+ /** Aria label for the checkbox in the table header */
157
+ ariaLabelCheckboxTr?: string;
158
+ /** Aria labels for sorting in the table header */
159
+ ariaLabelsOrderBy?: ariaLabelsOrderBy;
160
+ /**
161
+ * @internal
162
+ * Internal data structure used to keep track of added content templates used in td elements.
163
+ */
164
+ customRowTemplates: Map<keyof T, TemplateRef<any>>;
165
+ /**
166
+ * @internal
167
+ * Internal data structure used to keep track of added content templates used in th elements.
168
+ */
169
+ customHeaderTemplates: Map<keyof T, TemplateRef<any>>;
170
+ /**
171
+ * @internal
172
+ * Internal data structure used to hold custom appended rows i.e. tr elements (rows).
173
+ */
174
+ appendedRowsTemplateRef: TemplateRef<any>;
175
+ /**
176
+ * @internal
177
+ * Internal data structure used to hold tfoot element children i.e. tr elements (rows).
178
+ */
179
+ customFooterTemplateRef: TemplateRef<any>;
180
+ /**
181
+ * @internal
182
+ * Incremental id.
183
+ */
184
+ initId: number;
185
+ /**
186
+ * @internal
187
+ * FormGroup containing all row id\'s as controls, and whether these are selected or not as values.
188
+ */
189
+ rowSelectors: UntypedFormGroup;
190
+ /**
191
+ * @internal
192
+ * Master selector for selecting or deselecting all row selectors.
193
+ */
194
+ groupSelector: UntypedFormControl;
195
+ private selected;
196
+ private subs;
197
+ ngOnChanges(changes: SimpleChanges): void;
198
+ ngOnInit(): void;
199
+ ngAfterContentInit(): void;
200
+ ngOnDestroy(): void;
201
+ /**
202
+ * @internal
203
+ * Returns a subscription to the master selector control that either selects or deselects all row controls.
204
+ */
205
+ get groupValueSubscription(): Subscription;
206
+ /**
207
+ * @internal
208
+ * Returns a subscription to all individual row selectors and update the master selector if all are selected.
209
+ */
210
+ get rowValueSubscription(): Subscription;
211
+ /**
212
+ * @internal
213
+ * Registers or disables row controls for new or removed rows.
214
+ */
215
+ registerSelectableRows(tableData: any[]): boolean;
216
+ /**
217
+ * @internal
218
+ * Returns all enabled values unless all rows are disabled.
219
+ */
220
+ get rowSelectorsValue(): any;
221
+ toggleSortOrderWithSpace(event: any, column: TableColumn<T>): void;
222
+ /**
223
+ * @internal
224
+ * Switches sorting order between ascending and descending order for a column.
225
+ * @param column the column to sort rows after.
226
+ */
227
+ toggleSortOrder(column: TableColumn<T>): void;
228
+ /** If sortable, reorders the table data using the specified column as ordering attribute. */
229
+ sortItemsBy(column: TableColumn<T>): TableRow[] | undefined;
230
+ /**
231
+ * @internal
232
+ * Emits row data for what row was clicked if defaultEmit is allowed.
233
+ */
234
+ propagateItemClick(item: any, preventDefaultEmit?: boolean): void;
235
+ getAriaLabel(column: TableColumn<T>): string | undefined;
236
+ private toggleRowToExpand;
237
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any>, never>;
238
+ 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; }; "expandable": { "alias": "expandable"; "required": false; }; "subItemsProp": { "alias": "subItemsProp"; "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>;
239
+ }
@@ -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
+ }