@sebgroup/green-angular 5.1.1 → 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 (440) hide show
  1. package/esm2022/lib/shared/core-element/core-element.directive.mjs +1 -2
  2. package/esm2022/src/lib/shared/core-element/core-element.directive.mjs +1 -2
  3. package/esm2022/src/v-angular/account-number/account-number.module.mjs +18 -0
  4. package/esm2022/src/v-angular/account-number/account-number.pipe.mjs +54 -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 +387 -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/alert/alert.component.mjs +47 -0
  104. package/esm2022/v-angular/alert/alert.models.mjs +8 -0
  105. package/esm2022/v-angular/alert/alert.module.mjs +18 -0
  106. package/esm2022/v-angular/alert/index.mjs +4 -0
  107. package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +16 -6
  108. package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +9 -9
  109. package/esm2022/v-angular/breadcrumbs/breadcrumbs.component.mjs +5 -5
  110. package/esm2022/v-angular/breadcrumbs/breadcrumbs.module.mjs +11 -11
  111. package/esm2022/v-angular/button/button.component.mjs +9 -9
  112. package/esm2022/v-angular/button/button.module.mjs +11 -11
  113. package/esm2022/v-angular/card/card.component.mjs +6 -6
  114. package/esm2022/v-angular/card/card.module.mjs +9 -9
  115. package/esm2022/v-angular/character-countdown/character-countdown.module.mjs +6 -6
  116. package/esm2022/v-angular/checkbox/checkbox.component.mjs +9 -7
  117. package/esm2022/v-angular/checkbox/checkbox.module.mjs +14 -12
  118. package/esm2022/v-angular/datepicker/components/calendar/calendar.component.mjs +200 -0
  119. package/esm2022/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +115 -0
  120. package/esm2022/v-angular/datepicker/components/date-input/date-input.component.mjs +203 -0
  121. package/esm2022/v-angular/datepicker/components/datepicker/datepicker.component.mjs +135 -0
  122. package/esm2022/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +408 -0
  123. package/esm2022/v-angular/datepicker/datepicker.globals.mjs +20 -0
  124. package/esm2022/v-angular/datepicker/datepicker.models.mjs +56 -0
  125. package/esm2022/v-angular/datepicker/datepicker.module.mjs +63 -0
  126. package/esm2022/v-angular/datepicker/datepicker.utils.mjs +196 -0
  127. package/esm2022/v-angular/datepicker/directives/calendar-date.directive.mjs +47 -0
  128. package/esm2022/v-angular/datepicker/index.mjs +17 -0
  129. package/esm2022/v-angular/datepicker/models/dates.mjs +291 -0
  130. package/esm2022/v-angular/datepicker/pipes/date-thook.pipe.mjs +30 -0
  131. package/esm2022/v-angular/datepicker/pipes/is-disabled.pipe.mjs +37 -0
  132. package/esm2022/v-angular/datepicker/pipes/matches.pipe.mjs +17 -0
  133. package/esm2022/v-angular/drag-drop/drag-drop.component.mjs +497 -0
  134. package/esm2022/v-angular/drag-drop/drag-drop.models.mjs +2 -0
  135. package/esm2022/v-angular/drag-drop/drag-drop.module.mjs +49 -0
  136. package/esm2022/v-angular/drag-drop/drag-drop.pipes.mjs +70 -0
  137. package/esm2022/v-angular/drag-drop/drag-drop.utils.mjs +76 -0
  138. package/esm2022/v-angular/drag-drop/index.mjs +5 -0
  139. package/esm2022/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +24 -9
  140. package/esm2022/v-angular/dropdown/dropdown.component.mjs +16 -9
  141. package/esm2022/v-angular/dropdown/dropdown.module.mjs +31 -15
  142. package/esm2022/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +8 -8
  143. package/esm2022/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +5 -5
  144. package/esm2022/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +17 -10
  145. package/esm2022/v-angular/dropdown/typeahead/typeahead.directive.mjs +27 -20
  146. package/esm2022/v-angular/dropdown/typeahead/typeahead.module.mjs +21 -21
  147. package/esm2022/v-angular/external-link/external-link.directive.mjs +37 -0
  148. package/esm2022/v-angular/external-link/external-link.module.mjs +18 -0
  149. package/esm2022/v-angular/external-link/index.mjs +3 -0
  150. package/esm2022/v-angular/i18n/i18n.module.mjs +12 -12
  151. package/esm2022/v-angular/i18n/i18n.test.module.mjs +6 -6
  152. package/esm2022/v-angular/index.mjs +10 -1
  153. package/esm2022/v-angular/info-circle/info-circle.component.mjs +6 -6
  154. package/esm2022/v-angular/info-circle/info-circle.module.mjs +11 -11
  155. package/esm2022/v-angular/input/input.component.mjs +11 -15
  156. package/esm2022/v-angular/input/input.module.mjs +27 -22
  157. package/esm2022/v-angular/input-mask/input-mask.directive.mjs +6 -6
  158. package/esm2022/v-angular/input-mask/input-mask.module.mjs +10 -10
  159. package/esm2022/v-angular/modal/dialog/dialog.component.mjs +53 -31
  160. package/esm2022/v-angular/modal/fold-out/fold-out.component.mjs +116 -16
  161. package/esm2022/v-angular/modal/fold-out/fold-out.directive.mjs +5 -5
  162. package/esm2022/v-angular/modal/fold-out/keyboard-key.enum.mjs +9 -0
  163. package/esm2022/v-angular/modal/modal.module.mjs +38 -27
  164. package/esm2022/v-angular/modal/slide-out/slide-out.component.mjs +35 -12
  165. package/esm2022/v-angular/pagination/index.mjs +3 -0
  166. package/esm2022/v-angular/pagination/pagination.component.mjs +144 -0
  167. package/esm2022/v-angular/pagination/pagination.module.mjs +37 -0
  168. package/esm2022/v-angular/radio/radio.component.mjs +14 -12
  169. package/esm2022/v-angular/radio/radio.module.mjs +12 -11
  170. package/esm2022/v-angular/slug/index.mjs +3 -0
  171. package/esm2022/v-angular/slug/slug.module.mjs +18 -0
  172. package/esm2022/v-angular/slug/slug.pipe.mjs +27 -0
  173. package/esm2022/v-angular/table/index.mjs +9 -0
  174. package/esm2022/v-angular/table/table.component.mjs +387 -0
  175. package/esm2022/v-angular/table/table.directive.mjs +110 -0
  176. package/esm2022/v-angular/table/table.models.mjs +2 -0
  177. package/esm2022/v-angular/table/table.module.mjs +40 -0
  178. package/esm2022/v-angular/table/table.tools.mjs +29 -0
  179. package/esm2022/v-angular/table/tr-thook.pipe.mjs +22 -0
  180. package/esm2022/v-angular/tabs/index.mjs +8 -0
  181. package/esm2022/v-angular/tabs/tab.directive.mjs +81 -0
  182. package/esm2022/v-angular/tabs/tabs.component.mjs +262 -0
  183. package/esm2022/v-angular/tabs/tabs.models.mjs +2 -0
  184. package/esm2022/v-angular/tabs/tabs.module.mjs +21 -0
  185. package/esm2022/v-angular/textarea/textarea.component.mjs +9 -7
  186. package/esm2022/v-angular/textarea/textarea.module.mjs +27 -13
  187. package/esm2022/v-angular/toast/index.mjs +8 -0
  188. package/esm2022/v-angular/toast/toast-message.service.mjs +63 -0
  189. package/esm2022/v-angular/toast/toast.component.mjs +70 -0
  190. package/esm2022/v-angular/toast/toast.models.mjs +8 -0
  191. package/esm2022/v-angular/toast/toast.module.mjs +21 -0
  192. package/esm2022/v-angular/tooltip/tooltip.directive.mjs +35 -15
  193. package/esm2022/v-angular/tooltip/tooltip.module.mjs +11 -11
  194. package/esm2022/v-angular/tooltip/tooltip.styles.mjs +60 -0
  195. package/esm2022/v-angular/v-angular.module.mjs +104 -68
  196. package/fesm2022/sebgroup-green-angular-src-lib-shared.mjs +0 -1
  197. package/fesm2022/sebgroup-green-angular-src-lib-shared.mjs.map +1 -1
  198. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs +76 -0
  199. package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs.map +1 -0
  200. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs +76 -0
  201. package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs.map +1 -0
  202. package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs +23 -13
  203. package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs.map +1 -1
  204. package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs +14 -14
  205. package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs.map +1 -1
  206. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs +18 -18
  207. package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs.map +1 -1
  208. package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs +13 -13
  209. package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs.map +1 -1
  210. package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs +6 -6
  211. package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs.map +1 -1
  212. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs +21 -17
  213. package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs.map +1 -1
  214. package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs +34 -0
  215. package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs.map +1 -1
  216. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs +1759 -0
  217. package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs.map +1 -0
  218. package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs +687 -0
  219. package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs.map +1 -0
  220. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs +126 -74
  221. package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs.map +1 -1
  222. package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs +12 -12
  223. package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs.map +1 -1
  224. package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs +17 -17
  225. package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs.map +1 -1
  226. package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs +15 -15
  227. package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs.map +1 -1
  228. package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs +14 -14
  229. package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs.map +1 -1
  230. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs +36 -35
  231. package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs.map +1 -1
  232. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +246 -81
  233. package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +1 -1
  234. package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs +185 -0
  235. package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs.map +1 -0
  236. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs +24 -21
  237. package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs.map +1 -1
  238. package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs +6 -6
  239. package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs.map +1 -1
  240. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +585 -0
  241. package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +1 -0
  242. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs +367 -0
  243. package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs.map +1 -0
  244. package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs +33 -18
  245. package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs.map +1 -1
  246. package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs +166 -0
  247. package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs.map +1 -0
  248. package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs +103 -24
  249. package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs.map +1 -1
  250. package/fesm2022/sebgroup-green-angular-v-angular.mjs +6295 -2165
  251. package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +1 -1
  252. package/fesm2022/sebgroup-green-angular.mjs +0 -1
  253. package/fesm2022/sebgroup-green-angular.mjs.map +1 -1
  254. package/package.json +51 -3
  255. package/src/v-angular/account-number/README.md +70 -0
  256. package/src/v-angular/account-number/account-number.module.d.ts +8 -0
  257. package/src/v-angular/account-number/account-number.pipe.d.ts +32 -0
  258. package/src/v-angular/account-number/index.d.ts +2 -0
  259. package/src/v-angular/alert/alert.component.d.ts +19 -0
  260. package/src/v-angular/alert/alert.models.d.ts +13 -0
  261. package/src/v-angular/alert/alert.module.d.ts +8 -0
  262. package/src/v-angular/alert/index.d.ts +3 -0
  263. package/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +10 -4
  264. package/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +4 -4
  265. package/src/v-angular/breadcrumbs/breadcrumbs.component.d.ts +4 -4
  266. package/src/v-angular/breadcrumbs/breadcrumbs.module.d.ts +4 -4
  267. package/src/v-angular/button/button.component.d.ts +5 -5
  268. package/src/v-angular/button/button.module.d.ts +4 -4
  269. package/src/v-angular/card/card.component.d.ts +3 -3
  270. package/src/v-angular/card/card.module.d.ts +4 -4
  271. package/src/v-angular/character-countdown/character-countdown.module.d.ts +4 -4
  272. package/src/v-angular/checkbox/checkbox.component.d.ts +6 -5
  273. package/src/v-angular/checkbox/checkbox.module.d.ts +5 -4
  274. package/src/v-angular/core/core.utils.d.ts +1 -0
  275. package/src/v-angular/datepicker/components/calendar/calendar.component.d.ts +36 -0
  276. package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +30 -0
  277. package/src/v-angular/datepicker/components/date-input/date-input.component.d.ts +102 -0
  278. package/src/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +62 -0
  279. package/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +165 -0
  280. package/src/v-angular/datepicker/datepicker.globals.d.ts +13 -0
  281. package/src/v-angular/datepicker/datepicker.models.d.ts +50 -0
  282. package/src/v-angular/datepicker/datepicker.module.d.ts +19 -0
  283. package/src/v-angular/datepicker/datepicker.utils.d.ts +39 -0
  284. package/src/v-angular/datepicker/directives/calendar-date.directive.d.ts +21 -0
  285. package/src/v-angular/datepicker/index.d.ts +13 -0
  286. package/src/v-angular/datepicker/models/dates.d.ts +15 -0
  287. package/src/v-angular/datepicker/pipes/date-thook.pipe.d.ts +8 -0
  288. package/src/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +8 -0
  289. package/src/v-angular/datepicker/pipes/matches.pipe.d.ts +7 -0
  290. package/src/v-angular/drag-drop/drag-drop.component.d.ts +131 -0
  291. package/src/v-angular/drag-drop/drag-drop.models.d.ts +49 -0
  292. package/src/v-angular/drag-drop/drag-drop.module.d.ts +13 -0
  293. package/src/v-angular/drag-drop/drag-drop.pipes.d.ts +40 -0
  294. package/src/v-angular/drag-drop/drag-drop.utils.d.ts +33 -0
  295. package/src/v-angular/drag-drop/index.d.ts +4 -0
  296. package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +11 -4
  297. package/src/v-angular/dropdown/dropdown.component.d.ts +10 -6
  298. package/src/v-angular/dropdown/dropdown.module.d.ts +8 -7
  299. package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +6 -6
  300. package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +3 -3
  301. package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +8 -6
  302. package/src/v-angular/dropdown/typeahead/typeahead.directive.d.ts +14 -12
  303. package/src/v-angular/dropdown/typeahead/typeahead.module.d.ts +4 -4
  304. package/src/v-angular/external-link/external-link.directive.d.ts +3 -3
  305. package/src/v-angular/external-link/external-link.module.d.ts +4 -4
  306. package/src/v-angular/i18n/i18n.module.d.ts +7 -7
  307. package/src/v-angular/i18n/i18n.test.module.d.ts +4 -4
  308. package/src/v-angular/info-circle/info-circle.component.d.ts +4 -4
  309. package/src/v-angular/info-circle/info-circle.module.d.ts +4 -4
  310. package/src/v-angular/input/input.component.d.ts +5 -10
  311. package/src/v-angular/input/input.module.d.ts +5 -4
  312. package/src/v-angular/input-mask/input-mask.directive.d.ts +3 -3
  313. package/src/v-angular/input-mask/input-mask.module.d.ts +5 -5
  314. package/src/v-angular/modal/dialog/dialog.component.d.ts +16 -7
  315. package/src/v-angular/modal/fold-out/fold-out.component.d.ts +34 -11
  316. package/src/v-angular/modal/fold-out/fold-out.directive.d.ts +3 -3
  317. package/src/v-angular/modal/fold-out/keyboard-key.enum.d.ts +7 -0
  318. package/src/v-angular/modal/modal.module.d.ts +4 -4
  319. package/src/v-angular/modal/slide-out/slide-out.component.d.ts +13 -6
  320. package/src/v-angular/pagination/index.d.ts +2 -0
  321. package/src/v-angular/pagination/pagination.component.d.ts +64 -0
  322. package/src/v-angular/pagination/pagination.module.d.ts +12 -0
  323. package/src/v-angular/radio/radio.component.d.ts +14 -13
  324. package/src/v-angular/radio/radio.module.d.ts +5 -4
  325. package/src/v-angular/slug/slug.module.d.ts +4 -4
  326. package/src/v-angular/table/index.d.ts +5 -0
  327. package/src/v-angular/table/table.component.d.ts +229 -0
  328. package/src/v-angular/table/table.directive.d.ts +36 -0
  329. package/src/v-angular/table/table.models.d.ts +62 -0
  330. package/src/v-angular/table/table.module.d.ts +12 -0
  331. package/src/v-angular/table/table.tools.d.ts +5 -0
  332. package/src/v-angular/table/tr-thook.pipe.d.ts +7 -0
  333. package/src/v-angular/tabs/index.d.ts +4 -0
  334. package/src/v-angular/tabs/tab.directive.d.ts +37 -0
  335. package/src/v-angular/tabs/tabs.component.d.ts +65 -0
  336. package/src/v-angular/tabs/tabs.models.d.ts +25 -0
  337. package/src/v-angular/tabs/tabs.module.d.ts +11 -0
  338. package/src/v-angular/textarea/textarea.component.d.ts +6 -5
  339. package/src/v-angular/textarea/textarea.module.d.ts +6 -4
  340. package/src/v-angular/toast/index.d.ts +4 -0
  341. package/src/v-angular/toast/toast-message.service.d.ts +17 -0
  342. package/src/v-angular/toast/toast.component.d.ts +22 -0
  343. package/src/v-angular/toast/toast.models.d.ts +15 -0
  344. package/src/v-angular/toast/toast.module.d.ts +10 -0
  345. package/src/v-angular/tooltip/tooltip.directive.d.ts +5 -3
  346. package/src/v-angular/tooltip/tooltip.module.d.ts +4 -4
  347. package/src/v-angular/tooltip/tooltip.styles.d.ts +11 -0
  348. package/v-angular/alert/alert.component.d.ts +19 -0
  349. package/v-angular/alert/alert.models.d.ts +13 -0
  350. package/v-angular/alert/alert.module.d.ts +8 -0
  351. package/v-angular/alert/index.d.ts +3 -0
  352. package/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +10 -4
  353. package/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +4 -4
  354. package/v-angular/breadcrumbs/breadcrumbs.component.d.ts +4 -4
  355. package/v-angular/breadcrumbs/breadcrumbs.module.d.ts +4 -4
  356. package/v-angular/button/button.component.d.ts +5 -5
  357. package/v-angular/button/button.module.d.ts +4 -4
  358. package/v-angular/card/card.component.d.ts +3 -3
  359. package/v-angular/card/card.module.d.ts +4 -4
  360. package/v-angular/character-countdown/character-countdown.module.d.ts +4 -4
  361. package/v-angular/checkbox/checkbox.component.d.ts +6 -5
  362. package/v-angular/checkbox/checkbox.module.d.ts +5 -4
  363. package/v-angular/datepicker/components/calendar/calendar.component.d.ts +36 -0
  364. package/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +30 -0
  365. package/v-angular/datepicker/components/date-input/date-input.component.d.ts +102 -0
  366. package/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +62 -0
  367. package/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +165 -0
  368. package/v-angular/datepicker/datepicker.globals.d.ts +13 -0
  369. package/v-angular/datepicker/datepicker.models.d.ts +50 -0
  370. package/v-angular/datepicker/datepicker.module.d.ts +19 -0
  371. package/v-angular/datepicker/datepicker.utils.d.ts +39 -0
  372. package/v-angular/datepicker/directives/calendar-date.directive.d.ts +21 -0
  373. package/v-angular/datepicker/index.d.ts +13 -0
  374. package/v-angular/datepicker/models/dates.d.ts +15 -0
  375. package/v-angular/datepicker/pipes/date-thook.pipe.d.ts +8 -0
  376. package/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +8 -0
  377. package/v-angular/datepicker/pipes/matches.pipe.d.ts +7 -0
  378. package/v-angular/drag-drop/drag-drop.component.d.ts +131 -0
  379. package/v-angular/drag-drop/drag-drop.models.d.ts +49 -0
  380. package/v-angular/drag-drop/drag-drop.module.d.ts +13 -0
  381. package/v-angular/drag-drop/drag-drop.pipes.d.ts +40 -0
  382. package/v-angular/drag-drop/drag-drop.utils.d.ts +33 -0
  383. package/v-angular/drag-drop/index.d.ts +4 -0
  384. package/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +11 -4
  385. package/v-angular/dropdown/dropdown.component.d.ts +10 -6
  386. package/v-angular/dropdown/dropdown.module.d.ts +8 -7
  387. package/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +6 -6
  388. package/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +3 -3
  389. package/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +8 -6
  390. package/v-angular/dropdown/typeahead/typeahead.directive.d.ts +14 -12
  391. package/v-angular/dropdown/typeahead/typeahead.module.d.ts +4 -4
  392. package/v-angular/external-link/external-link.directive.d.ts +17 -0
  393. package/v-angular/external-link/external-link.module.d.ts +8 -0
  394. package/v-angular/external-link/index.d.ts +2 -0
  395. package/v-angular/i18n/i18n.module.d.ts +7 -7
  396. package/v-angular/i18n/i18n.test.module.d.ts +4 -4
  397. package/v-angular/index.d.ts +9 -0
  398. package/v-angular/info-circle/info-circle.component.d.ts +4 -4
  399. package/v-angular/info-circle/info-circle.module.d.ts +4 -4
  400. package/v-angular/input/input.component.d.ts +5 -10
  401. package/v-angular/input/input.module.d.ts +5 -4
  402. package/v-angular/input-mask/input-mask.directive.d.ts +3 -3
  403. package/v-angular/input-mask/input-mask.module.d.ts +5 -5
  404. package/v-angular/modal/dialog/dialog.component.d.ts +16 -7
  405. package/v-angular/modal/fold-out/fold-out.component.d.ts +34 -11
  406. package/v-angular/modal/fold-out/fold-out.directive.d.ts +3 -3
  407. package/v-angular/modal/fold-out/keyboard-key.enum.d.ts +7 -0
  408. package/v-angular/modal/modal.module.d.ts +4 -4
  409. package/v-angular/modal/slide-out/slide-out.component.d.ts +13 -6
  410. package/v-angular/pagination/index.d.ts +2 -0
  411. package/v-angular/pagination/pagination.component.d.ts +64 -0
  412. package/v-angular/pagination/pagination.module.d.ts +12 -0
  413. package/v-angular/radio/radio.component.d.ts +14 -13
  414. package/v-angular/radio/radio.module.d.ts +5 -4
  415. package/v-angular/slug/index.d.ts +2 -0
  416. package/v-angular/slug/slug.module.d.ts +8 -0
  417. package/v-angular/slug/slug.pipe.d.ts +12 -0
  418. package/v-angular/table/index.d.ts +5 -0
  419. package/v-angular/table/table.component.d.ts +229 -0
  420. package/v-angular/table/table.directive.d.ts +36 -0
  421. package/v-angular/table/table.models.d.ts +62 -0
  422. package/v-angular/table/table.module.d.ts +12 -0
  423. package/v-angular/table/table.tools.d.ts +5 -0
  424. package/v-angular/table/tr-thook.pipe.d.ts +7 -0
  425. package/v-angular/tabs/index.d.ts +4 -0
  426. package/v-angular/tabs/tab.directive.d.ts +37 -0
  427. package/v-angular/tabs/tabs.component.d.ts +65 -0
  428. package/v-angular/tabs/tabs.models.d.ts +25 -0
  429. package/v-angular/tabs/tabs.module.d.ts +11 -0
  430. package/v-angular/textarea/textarea.component.d.ts +6 -5
  431. package/v-angular/textarea/textarea.module.d.ts +6 -4
  432. package/v-angular/toast/index.d.ts +4 -0
  433. package/v-angular/toast/toast-message.service.d.ts +17 -0
  434. package/v-angular/toast/toast.component.d.ts +22 -0
  435. package/v-angular/toast/toast.models.d.ts +15 -0
  436. package/v-angular/toast/toast.module.d.ts +10 -0
  437. package/v-angular/tooltip/tooltip.directive.d.ts +5 -3
  438. package/v-angular/tooltip/tooltip.module.d.ts +4 -4
  439. package/v-angular/tooltip/tooltip.styles.d.ts +11 -0
  440. package/v-angular/v-angular.module.d.ts +27 -18
@@ -0,0 +1,165 @@
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
2
+ import { AbstractControl, ControlValueAccessor, NgControl, Validator } from '@angular/forms';
3
+ import { TranslocoScope, TranslocoService } from '@jsverse/transloco';
4
+ import { Observable, Subject } from 'rxjs';
5
+ import type { InputmaskOptions } from '@sebgroup/green-angular/src/v-angular/input-mask';
6
+ import { DateCharacters } from '../models/dates';
7
+ import * as i0 from "@angular/core";
8
+ export declare abstract class DateControlValueAccessorComponent implements AfterViewInit, OnInit, OnChanges, OnDestroy, ControlValueAccessor, Validator {
9
+ ngControl: NgControl;
10
+ protected translocoScope: TranslocoScope;
11
+ protected elementRef: ElementRef;
12
+ protected cdr: ChangeDetectorRef;
13
+ private _transloco;
14
+ /** Custom template for displaying the content of the label.
15
+ * Specified by nesting an `<ng-template #labelTpl>Custom Label</ng-template>`.
16
+ */
17
+ labelContentTpl?: TemplateRef<undefined>;
18
+ /** Reference to the native child input element. */
19
+ inputRef?: ElementRef;
20
+ /** Id of the host element and is accessible by the children, automatically generated if not provided. */
21
+ id: any;
22
+ /** Name of the child input element. */
23
+ name?: string;
24
+ /** Label of the child input element using the default template.
25
+ * Can be overwritten by specifying an `<ng-template #labelTpl>Custom Label</ng-template>`.
26
+ */
27
+ label?: string;
28
+ /** Text shown before input has a written value. Default current date format by locale of transloco */
29
+ set placeholder(value: string | undefined);
30
+ get placeholder(): string | undefined;
31
+ private _placeholder;
32
+ defaultPlaceholder?: string;
33
+ /** What characters to use in date placeholder, e.g. {year: 'Y', month: 'M', day: 'D'} */
34
+ dateCharacters?: DateCharacters;
35
+ /** Role of the child input element. https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles */
36
+ role?: string;
37
+ /** Value of the child input element. Mostly used in conjunction with radio and checkboxes. */
38
+ value: any;
39
+ /** An error string to be shown under invalid inputs. Overwrites any form errors. */
40
+ error?: string;
41
+ /** A list of errors string to be shown under invalid inputs. Overwrites any form errors. */
42
+ errorList?: string[];
43
+ /** Adds an icon before each error message. */
44
+ withErrorIcon?: boolean;
45
+ /** Description of the child input element. Both visibly and as `aria-label`. */
46
+ description?: string;
47
+ /** If set to true, the browser will try to automatically set focus to the child input element. */
48
+ autofocus: boolean;
49
+ /** Default value of the child input element. */
50
+ defaultValue?: any;
51
+ /** If passed, the component will listen for updates and will reset its value. */
52
+ reset?: Observable<any>;
53
+ /** Adds (Optional) to input label. */
54
+ optional?: boolean | null | undefined;
55
+ /**
56
+ * Settings for input mask for dates based on locale
57
+ * @see {@link getLocaleDateMask} use this tool to generate settings for `dateInputMask`
58
+ */
59
+ set dateInputMask(dateMask: InputmaskOptions<Date>);
60
+ get dateInputMask(): InputmaskOptions<Date>;
61
+ private _dateInputMask;
62
+ private _locked;
63
+ /** Hides the input borders and displays current value as a text. */
64
+ set locked(value: boolean | null | undefined);
65
+ get locked(): boolean | null | undefined;
66
+ /** If set to true, using a controls disabled state will display input as locked. */
67
+ displayDisabledAsLocked?: boolean | null | undefined;
68
+ private _required;
69
+ /** Override the required flag of the component. */
70
+ set required(value: boolean | null | undefined);
71
+ /** Child input element is considered required and changes default label template accordingly. */
72
+ get required(): boolean | null | undefined;
73
+ private _invalid;
74
+ /** Override the invalid state of the component. */
75
+ set invalid(value: boolean);
76
+ /** The component has the invalid state, usually decorating the elements red and shows the first error. */
77
+ get invalid(): boolean;
78
+ private _valid;
79
+ /** Override the valid state of the component. */
80
+ set valid(value: boolean);
81
+ /** The component has the valid state, usually decorating the elements green. */
82
+ get valid(): boolean;
83
+ /** The component has the focused state, updated by the child input element's focus state. */
84
+ focused: boolean;
85
+ /** The component has the disabled state, usually muting the colors and removes interaction. */
86
+ disabled: boolean;
87
+ /** Locale for using correct language in the datepicker. */
88
+ locale: string | undefined;
89
+ /** Date format used for placeholder and input mask. Should be in lower case {year: 'y', month: 'm', day: 'd'} */
90
+ dateFormat: string | undefined;
91
+ /** Date locale used for placeholder and input mask. */
92
+ dateLocale: string | undefined;
93
+ /** Toggler for showing or hiding the input field */
94
+ protected showInputDateSrc: Subject<boolean>;
95
+ /** Emits focus events triggered by the child elements. */
96
+ readonly ngvFocus: EventEmitter<any>;
97
+ /** Emits focus events triggered by the child elements. */
98
+ readonly ngvBlur: EventEmitter<any>;
99
+ /** @internal */
100
+ protected onChange: (_: any) => void;
101
+ /** @internal */
102
+ protected onTouched: () => void;
103
+ /** @internal */
104
+ protected onValidatorChange: () => void;
105
+ private _state;
106
+ scope: string | undefined;
107
+ /** @internal */
108
+ private _onDestroy$;
109
+ /**
110
+ * Creates a new BaseControlValueAccessorComponent.
111
+ * @param ngControl optional FormControl provided when component is used in a form, through dependency injection.
112
+ */
113
+ constructor(ngControl: NgControl, translocoScope: TranslocoScope, elementRef: ElementRef, cdr: ChangeDetectorRef, _transloco: TranslocoService);
114
+ static parseDateLike(value: any): null | undefined | string;
115
+ ngOnInit(): void;
116
+ ngAfterViewInit(): void;
117
+ ngOnChanges(changes: SimpleChanges): void;
118
+ ngOnDestroy(): void;
119
+ /** @internal */
120
+ onFocus(event: Event): void;
121
+ /** @internal */
122
+ onBlur(event: Event): void;
123
+ detectChanges(): void;
124
+ /** Sets the focus on the actual input element. */
125
+ setFocus(): void;
126
+ /**
127
+ * @internal
128
+ * Update placeholder and input mask to match locale.
129
+ * Order if choice for locale:
130
+ * 1. dateLocale - Used for specifying which locale to be used for formatting date
131
+ * 2. locale - Unless dateLocale is not provided, use locale form current translation
132
+ * 3. transloco.getActiveLang - as last resort, get active language form trnasloco
133
+ * If locale is undefined, transloco.activeLang will be used instead.
134
+ */
135
+ updatePlaceholderAndMask(): void;
136
+ updateFormat(): void;
137
+ /** Internal state/value that the native input element has. */
138
+ get state(): any;
139
+ /**
140
+ * Internal state/value that the native input element has.
141
+ */
142
+ set state(value: any);
143
+ /** Writes a new value to the child input element. */
144
+ writeValue(value: any): void;
145
+ /** Registers a callback function that is called when the child input element's value changes. */
146
+ registerOnChange(fn: (value: any) => void): void;
147
+ /** Registers a callback function that is called when the child input element triggers on blur. */
148
+ registerOnTouched(fn: () => void): void;
149
+ /** Function that is called by the forms API when the control status changes to or from 'DISABLED'. */
150
+ setDisabledState(isDisabled: boolean): void;
151
+ /** Method that performs synchronous validation against the provided control. Used for internal validation. */
152
+ validate(_control: AbstractControl): {
153
+ [name: string]: any;
154
+ } | null;
155
+ /** Registers a callback function to call when the validator inputs change. */
156
+ registerOnValidatorChange(fn: () => void): void;
157
+ /** Returns the first entry in an error object. */
158
+ get firstError(): {
159
+ code: string;
160
+ params: Record<string, any>;
161
+ } | null;
162
+ private updateValue;
163
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateControlValueAccessorComponent, [{ optional: true; self: true; }, { optional: true; }, null, null, null]>;
164
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DateControlValueAccessorComponent, never, never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "dateCharacters": { "alias": "dateCharacters"; "required": false; }; "role": { "alias": "role"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorList": { "alias": "errorList"; "required": false; }; "withErrorIcon": { "alias": "withErrorIcon"; "required": false; }; "description": { "alias": "description"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "reset": { "alias": "reset"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "dateInputMask": { "alias": "dateInputMask"; "required": false; }; "locked": { "alias": "locked"; "required": false; }; "displayDisabledAsLocked": { "alias": "displayDisabledAsLocked"; "required": false; }; "required": { "alias": "required"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "valid": { "alias": "valid"; "required": false; }; "focused": { "alias": "focused"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "dateLocale": { "alias": "dateLocale"; "required": false; }; }, { "ngvFocus": "ngvFocus"; "ngvBlur": "ngvBlur"; }, ["labelContentTpl"], never, false, never>;
165
+ }
@@ -0,0 +1,13 @@
1
+ export {};
2
+ declare global {
3
+ interface Window {
4
+ /** Counter for unique identifiers */
5
+ ngv: {
6
+ ids: {
7
+ [namespace: string]: number;
8
+ default: number;
9
+ };
10
+ nextId: (namespace?: string) => string;
11
+ };
12
+ }
13
+ }
@@ -0,0 +1,50 @@
1
+ import { WeekDay } from '@angular/common';
2
+ import * as i0 from "@angular/core";
3
+ export type CalendarType = 'normal' | 'extended';
4
+ export declare const enum Month {
5
+ January = 0,
6
+ February = 1,
7
+ March = 2,
8
+ April = 3,
9
+ May = 4,
10
+ June = 5,
11
+ July = 6,
12
+ August = 7,
13
+ September = 8,
14
+ October = 9,
15
+ November = 10,
16
+ December = 11
17
+ }
18
+ export interface DisableDateConfig {
19
+ fromDate?: Date | undefined;
20
+ toDate?: Date | undefined;
21
+ excludeDates?: Date[] | undefined;
22
+ excludeDays?: WeekDay[] | undefined;
23
+ closingTime?: Date | undefined;
24
+ }
25
+ export declare class CalendarMonth {
26
+ year: number;
27
+ month: number;
28
+ id: string;
29
+ _date: Date;
30
+ constructor(date?: Date);
31
+ /** Creates an instance based of input year and month. */
32
+ static fromObject(obj: {
33
+ year: number;
34
+ month: number;
35
+ }): CalendarMonth;
36
+ /** Returns a Date representation for the instance. */
37
+ get date(): Date;
38
+ /** Returns the string id representing the instance in form of 'yyyyMM'. */
39
+ valueOf(): string;
40
+ /** Returns a new instance for next month. */
41
+ nextMonth(): CalendarMonth;
42
+ /** Returns a new instance for previous month. */
43
+ previousMonth(): CalendarMonth;
44
+ /** Returns a new instance for next year. */
45
+ nextYear(): CalendarMonth;
46
+ /** Returns a new instance for previous year. */
47
+ previousYear(): CalendarMonth;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarMonth, never>;
49
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarMonth>;
50
+ }
@@ -0,0 +1,19 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/calendar/calendar.component";
3
+ import * as i2 from "./directives/calendar-date.directive";
4
+ import * as i3 from "./pipes/is-disabled.pipe";
5
+ import * as i4 from "./pipes/date-thook.pipe";
6
+ import * as i5 from "./components/calendar-control/calendar-control.component";
7
+ import * as i6 from "./components/datepicker/datepicker.component";
8
+ import * as i7 from "./components/date-input/date-input.component";
9
+ import * as i8 from "./pipes/matches.pipe";
10
+ import * as i9 from "@angular/common";
11
+ import * as i10 from "@angular/forms";
12
+ import * as i11 from "@jsverse/transloco";
13
+ import * as i12 from "@sebgroup/green-angular/src/v-angular/input-mask";
14
+ import * as i13 from "@sebgroup/green-angular/src/lib/shared";
15
+ export declare class NggvDatepickerModule {
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvDatepickerModule, never>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvDatepickerModule, [typeof i1.CalendarComponent, typeof i2.CalendarDateDirective, typeof i3.IsDisabledPipe, typeof i4.DateThookPipe, typeof i5.CalendarControlComponent, typeof i6.DatepickerComponent, typeof i7.DateInputComponent, typeof i8.MatchesPipe], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.TranslocoModule, typeof i12.NggvInputMaskModule, typeof i13.NggCoreWrapperModule], [typeof i7.DateInputComponent, typeof i6.DatepickerComponent]>;
18
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvDatepickerModule>;
19
+ }
@@ -0,0 +1,39 @@
1
+ import { WeekDay } from '@angular/common';
2
+ export declare const sortWeekDays: (firstDayOfWeek: WeekDay) => WeekDay[];
3
+ /** Sets labels and sort weekday arrays based off of first day of week. */
4
+ export declare const getSortedWeekDays: (firstDayOfWeek: WeekDay, startDate?: Date) => Date[];
5
+ /** Generate a matrix of dates used to visualize a calendar month. */
6
+ export declare const generateDateMatrix: (month: number, year: number, minWeeks: number | undefined, firstDayOfWeek: WeekDay) => Date[][];
7
+ /** Returns the first date used in the calendars first button. */
8
+ export declare const firstCalendarDate: (date: Date, firstDayOfWeek: WeekDay) => Date;
9
+ export declare const getDayOffset: (from: WeekDay, to: WeekDay, firstDayOfWeek: WeekDay, direction?: 'forward' | 'back') => number;
10
+ /** Returns an array of Dates for each of month. */
11
+ export declare const getMonthArray: () => Date[];
12
+ /** Returns an array of Dates for the current year and the next. */
13
+ export declare const getYearArray: () => Date[];
14
+ /** Returns true if the two dates have the same year, month and date values. */
15
+ export declare const match: (a: Date | undefined, b: Date | undefined) => boolean;
16
+ export declare const afterClosingHours: (closingHours: Date | undefined) => boolean;
17
+ /**
18
+ * Checks if a date is before control date, regardless of time.
19
+ *
20
+ * @param date - comparison date
21
+ * @param controlDate - date to compare against
22
+ * @returns - true if the comparison date is before the control date
23
+ */
24
+ export declare const isBefore: (date: Date, controlDate: Date) => boolean;
25
+ /**
26
+ * Checks if a date is after control date, regardless of time.
27
+ *
28
+ * @param date - comparison date
29
+ * @param controlDate - date to compare against
30
+ * @returns - true if the comparison date is before the control date
31
+ */
32
+ export declare const isAfter: (date: Date, controlDate: Date) => boolean;
33
+ /**
34
+ * Checks if a value can be used to initiate a new Date object.
35
+ *
36
+ * @param value any value
37
+ * @returns - true if value can be coersed to a Date.
38
+ */
39
+ export declare const isValid: (value: any) => boolean;
@@ -0,0 +1,21 @@
1
+ import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const enum DateCss {
4
+ notWithinMonth = "not-within-month",
5
+ selected = "selected",
6
+ today = "today"
7
+ }
8
+ export declare class CalendarDateDirective implements OnInit, OnChanges {
9
+ private elementRef;
10
+ calendarDate: Date;
11
+ selected: boolean;
12
+ notWithinMonth: boolean;
13
+ isToday: boolean;
14
+ disabled: boolean;
15
+ get nativeElement(): HTMLElement;
16
+ constructor(elementRef: ElementRef);
17
+ ngOnInit(): void;
18
+ ngOnChanges(changes: SimpleChanges): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarDateDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CalendarDateDirective, "[calendarDate]", never, { "calendarDate": { "alias": "calendarDate"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "notWithinMonth": { "alias": "notWithinMonth"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -0,0 +1,13 @@
1
+ export * from './date-control-value-accessor/date-control-value-accessor.component';
2
+ export * from './components/calendar/calendar.component';
3
+ export * from './components/calendar-control/calendar-control.component';
4
+ export * from './components/date-input/date-input.component';
5
+ export * from './components/datepicker/datepicker.component';
6
+ export * from './directives/calendar-date.directive';
7
+ export * from './pipes/is-disabled.pipe';
8
+ export * from './pipes/matches.pipe';
9
+ export * from './models/dates';
10
+ export * from './datepicker.models';
11
+ export * from './datepicker.globals';
12
+ export * from './datepicker.module';
13
+ export * from './datepicker.utils';
@@ -0,0 +1,15 @@
1
+ import { InputmaskOptions } from '@sebgroup/green-angular/src/v-angular/input-mask';
2
+ /**
3
+ * Helper function to generate InputmaskOptions by requested locale.
4
+ * @param locale - requested locale. If not given, it'll use the browsers locale
5
+ * @returns InputmaskOptions with date settings
6
+ */
7
+ export declare const getLocaleDateMask: (dateCharacters?: DateCharacters, locale?: string) => InputmaskOptions<Date>;
8
+ export declare const getLocaleDateString: (locale?: string) => string;
9
+ export declare const getFormatDateMask: (format: string, dateCharacters?: DateCharacters) => InputmaskOptions<Date>;
10
+ export interface DateCharacters {
11
+ year: string;
12
+ month: string;
13
+ day: string;
14
+ }
15
+ export declare const setDateFormatCharacters: (format: string, dateCharacters?: DateCharacters) => string;
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DateThookPipe implements PipeTransform {
4
+ get today(): Date;
5
+ transform(date: Date, isDisabled: boolean): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateThookPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<DateThookPipe, "dateThook", false>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DisableDateConfig } from '../datepicker.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class IsDisabledPipe implements PipeTransform {
5
+ transform(value: Date, config?: DisableDateConfig): boolean;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IsDisabledPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<IsDisabledPipe, "isDisabled", false>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MatchesPipe implements PipeTransform {
4
+ transform(value: Date, selected: Date | undefined): boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MatchesPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<MatchesPipe, "matches", false>;
7
+ }
@@ -0,0 +1,131 @@
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { DialogEvent, NggvDialogComponent } from '@sebgroup/green-angular/src/v-angular/modal';
3
+ import type { APIFile, EventStateChange, FileService, LocalFile, StateMap, UploadState } from './drag-drop.models';
4
+ import '@sebgroup/green-core/components/icon/icons/cloud-upload.js';
5
+ import '@sebgroup/green-core/components/icon/icons/cross-small.js';
6
+ import '@sebgroup/green-core/components/icon/icons/checkmark.js';
7
+ import * as i0 from "@angular/core";
8
+ export type DragDropState = 'normal' | 'over' | 'uploading' | 'done';
9
+ export declare class NggvDragDropComponent implements OnInit, OnDestroy {
10
+ /** @internal */
11
+ deleteModalRef: NggvDialogComponent;
12
+ /** Special property used for selecting DOM elements during automated UI testing. */
13
+ thook: string | null | undefined;
14
+ /** Allowing selecting or dropping multiple files. */
15
+ service: FileService | undefined;
16
+ /** Mime types allowed. */
17
+ accept?: string;
18
+ /** Disables deletion or cancellation during defined states [local | uploading | aborted | uploaded | validating | error | deleted | done]. */
19
+ disableRemove: UploadState[];
20
+ /** File size limit in mega bytes. */
21
+ fileLimit: number;
22
+ /** Allowing selecting or dropping multiple files. */
23
+ multiple: boolean;
24
+ /** Determines if list should be shown under upload, disabling list disables multiple upload. */
25
+ list: boolean;
26
+ /** Frequency of requests which to send to the API requesting status updates. */
27
+ throttle: number;
28
+ /** Maximum number of attempts to request a status update from the API if service is unreachable. */
29
+ retryAttempts: number;
30
+ /** If selection of multiple file should be possible with a checkbox.
31
+ * @experimental work in progress and should not yet be used.
32
+ * @internal
33
+ */
34
+ selectable: boolean;
35
+ /** Allows multiple values from `apiFile.status` to be mapped to a single file upload state. */
36
+ stateMap: StateMap;
37
+ /** Statuses allowed to be fetch during the initial load. Used to hide "done" states from list. */
38
+ fetchStatuses: string[];
39
+ /** Statuses allowed be shown when status is "rejected". Will fallback to generic message. `null` allows all. */
40
+ errorCodes: string[] | null;
41
+ /** Event triggered on initialization and every time the "uploadState" for a file changes. */
42
+ stateChange: EventEmitter<EventStateChange>;
43
+ /** Event triggered when view details is clicked. */
44
+ detailsClick: EventEmitter<LocalFile & import("./drag-drop.models").APIStatusBaseProperties & {
45
+ id: string;
46
+ status: string;
47
+ } & import("./drag-drop.models").APIFileBaseProperties & {
48
+ id: string;
49
+ fileName: string;
50
+ }>;
51
+ /** @internal */
52
+ isDragDropAvailable: boolean;
53
+ /** @internal */
54
+ componentState: DragDropState;
55
+ /** @internal */
56
+ files: Map<string, LocalFile & APIFile>;
57
+ /** @internal */
58
+ lastFile: (LocalFile & APIFile) | undefined;
59
+ /** @internal */
60
+ selected: string[];
61
+ /** @internal */
62
+ loading: boolean;
63
+ /** @internal */
64
+ markedForDeletion: APIFile | undefined;
65
+ /**
66
+ * Initialize the component and warn if service is not defined. Will also fetch files for the list if enabled.
67
+ */
68
+ ngOnInit(): void;
69
+ /** Destroy all event listeners and polling running */
70
+ ngOnDestroy(): void;
71
+ /** @internal Warn user trying to leave page before all uploads are done. Custom message only works in older browsers. */
72
+ onBeforeUnload(event: Event): "You still have files uploading, are you sure you want to leave this page?" | undefined;
73
+ /** @internal Event handler for when a file is held over the drop area */
74
+ onDragEnter(event: DragEvent): void;
75
+ /** @internal Event handler for when a file leaves the drop area */
76
+ onDragLeave(event: DragEvent): void;
77
+ /** @internal Event handler for when a file is dropped on the drop area or when `input` files are selected */
78
+ onDrop(event: DragEvent | Event): void;
79
+ /** @internal Event trigger for when delete button is pressed */
80
+ onRemove(id: string, state: UploadState): void;
81
+ /** @internal */
82
+ onConfirmRemove(event: DialogEvent<LocalFile & APIFile>): void;
83
+ /** @internal Event handler for when the files should be uploaded */
84
+ onSubmit(): void;
85
+ /**
86
+ * @internal
87
+ * Using the state map convert `apiFile.state` to one of {@link UploadState}
88
+ * @param apiState the state given by the file to be used for mapping
89
+ */
90
+ determineUploadState(apiState: string): UploadState;
91
+ /** @internal */
92
+ uploadStateIsArray(state: string | string[]): state is string[];
93
+ /** @internal used for translation templating parameters */
94
+ translateParams(file: LocalFile & APIFile): {
95
+ fileLimit: string;
96
+ raw: File | undefined;
97
+ progress: number;
98
+ uploadState: UploadState;
99
+ uploadRequests: import("rxjs").Subscription | undefined;
100
+ internalStatusReasonCode: string | null;
101
+ statusReasonInformation: import("./drag-drop.models").APIStatusReason[] | null;
102
+ id: string;
103
+ status: string;
104
+ principal: string;
105
+ uploadDate: string;
106
+ registrarId: string;
107
+ registrarName: string;
108
+ fileName: string;
109
+ };
110
+ /**
111
+ * Poll the status endpoint to determine when file is valid
112
+ * @param file file used to check state and update
113
+ * @param delay how long each interval should wait before sending a request
114
+ */
115
+ private checkValidity;
116
+ private fallbackError;
117
+ /**
118
+ * Check so that no files are still validating
119
+ */
120
+ private allValidationDone;
121
+ /**
122
+ * Check so that no files are still uploading
123
+ */
124
+ private allUploadingDone;
125
+ /**
126
+ * Helper to update the component state to done and then back to normal
127
+ */
128
+ private setComponentStateDone;
129
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvDragDropComponent, never>;
130
+ static ɵcmp: i0.ɵɵComponentDeclaration<NggvDragDropComponent, "nggv-drag-drop", never, { "thook": { "alias": "thook"; "required": false; }; "service": { "alias": "service"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "disableRemove": { "alias": "disableRemove"; "required": false; }; "fileLimit": { "alias": "fileLimit"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "list": { "alias": "list"; "required": false; }; "throttle": { "alias": "throttle"; "required": false; }; "retryAttempts": { "alias": "retryAttempts"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "stateMap": { "alias": "stateMap"; "required": false; }; "fetchStatuses": { "alias": "fetchStatuses"; "required": false; }; "errorCodes": { "alias": "errorCodes"; "required": false; }; }, { "stateChange": "stateChange"; "detailsClick": "detailsClick"; }, never, never, false, never>;
131
+ }
@@ -0,0 +1,49 @@
1
+ import { HttpEvent } from '@angular/common/http';
2
+ import { Observable, Subscription } from 'rxjs';
3
+ export type UploadState = 'local' | 'uploading' | 'aborted' | 'uploaded' | 'validating' | 'error' | 'deleted' | 'done';
4
+ export type StateMap = {
5
+ [key in UploadState]: string | string[];
6
+ };
7
+ export interface LocalFile {
8
+ raw: File | undefined;
9
+ progress: number;
10
+ uploadState: UploadState;
11
+ uploadRequests: Subscription | undefined;
12
+ }
13
+ export interface APIStatusReason {
14
+ originatorId: string;
15
+ reason: string;
16
+ additionalInformation?: string;
17
+ }
18
+ export interface APIStatusBaseProperties {
19
+ internalStatusReasonCode: string | null;
20
+ statusReasonInformation: APIStatusReason[] | null;
21
+ }
22
+ export type APIStatus<T = APIStatusBaseProperties> = T & {
23
+ id: string;
24
+ status: string;
25
+ };
26
+ export interface APIFileBaseProperties {
27
+ principal: string;
28
+ uploadDate: string;
29
+ registrarId: string;
30
+ registrarName: string;
31
+ }
32
+ export type APIFile<T = APIFileBaseProperties, U = APIStatusBaseProperties> = APIStatus<U> & T & {
33
+ id: string;
34
+ fileName: string;
35
+ };
36
+ export interface EventStateChange extends Partial<APIStatus> {
37
+ uploadState: UploadState;
38
+ fileName: string;
39
+ }
40
+ export interface FileService<T = APIFileBaseProperties, U = APIStatusBaseProperties> {
41
+ uploadFile(file: File): Observable<HttpEvent<APIFile<T, U>>>;
42
+ fetchFiles(statuses?: string[]): Observable<Array<APIFile<T, U>>>;
43
+ fetchStatus(id: string): Observable<APIStatus<U> | undefined>;
44
+ /** Uses file as param to fetch file status. */
45
+ fetchStatusFor?(file: APIFile<T, U>): Observable<APIStatus<U> | undefined>;
46
+ removeFile(id: string): Observable<void>;
47
+ /** Uses file as param to remove file. */
48
+ removeFileFor?(file: APIFile<T, U>): Observable<void>;
49
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./drag-drop.pipes";
3
+ import * as i2 from "./drag-drop.component";
4
+ import * as i3 from "@angular/common/http";
5
+ import * as i4 from "@jsverse/transloco";
6
+ import * as i5 from "@sebgroup/green-angular/src/v-angular/modal";
7
+ import * as i6 from "@sebgroup/green-angular/src/lib/shared";
8
+ import * as i7 from "@angular/common";
9
+ export declare class NggvDragDropModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NggvDragDropModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NggvDragDropModule, [typeof i1.ValuePipe, typeof i2.NggvDragDropComponent], [typeof i3.HttpClientModule, typeof i4.TranslocoModule, typeof i5.NggvModalModule, typeof i6.NggCoreWrapperModule, typeof i7.CommonModule], [typeof i2.NggvDragDropComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<NggvDragDropModule>;
13
+ }
@@ -0,0 +1,40 @@
1
+ import { KeyValueDiffers, PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ValuePipe implements PipeTransform {
4
+ private readonly differs;
5
+ constructor(differs: KeyValueDiffers);
6
+ private differ;
7
+ private values;
8
+ transform<K, V>(input: null): null;
9
+ transform<V>(input: {
10
+ [key: string]: V;
11
+ } | Map<string, V>): Array<V>;
12
+ transform<V>(input: {
13
+ [key: string]: V;
14
+ } | Map<string, V> | null): Array<V> | null;
15
+ transform<K, V>(input: Map<K, V>): Array<V>;
16
+ transform<K, V>(input: Map<K, V> | null): Array<V> | null;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValuePipe, never>;
18
+ static ɵpipe: i0.ɵɵPipeDeclaration<ValuePipe, "value", false>;
19
+ }
20
+ /**
21
+ * Stand-alone version of existing value pipe.
22
+ *
23
+ * Impure flag needed due to keep track of changes in complex values (such as objects or arrays).
24
+ */
25
+ export declare class ValueImpurePipe implements PipeTransform {
26
+ private readonly differs;
27
+ private differ;
28
+ private values;
29
+ transform<K, V>(input: null): null;
30
+ transform<V>(input: {
31
+ [key: string]: V;
32
+ } | Map<string, V>): Array<V>;
33
+ transform<V>(input: {
34
+ [key: string]: V;
35
+ } | Map<string, V> | null): Array<V> | null;
36
+ transform<K, V>(input: Map<K, V>): Array<V>;
37
+ transform<K, V>(input: Map<K, V> | null): Array<V> | null;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValueImpurePipe, never>;
39
+ static ɵpipe: i0.ɵɵPipeDeclaration<ValueImpurePipe, "valueImpure", true>;
40
+ }
@@ -0,0 +1,33 @@
1
+ import { Observable } from 'rxjs';
2
+ import { APIFile, LocalFile } from './drag-drop.models';
3
+ /**
4
+ * Helper to extend the base file with {@link APIFile} defaults
5
+ * @param file file base that will be extended with {@link APIFile} defaults
6
+ * @param data extra data to override defaults
7
+ */
8
+ export declare const extendFile: (file: File | undefined, ...data: Array<Partial<Omit<LocalFile, 'raw'> & APIFile>>) => LocalFile & APIFile;
9
+ /**
10
+ * Checks if file matches allowed mime types
11
+ * @param type file mime type
12
+ * @param accept allowed mime types
13
+ */
14
+ export declare const verifyAccept: (type: string, accept?: string) => boolean;
15
+ /**
16
+ * Determines if browser supports drag and drop
17
+ */
18
+ export declare const isDragDropAvailable: () => boolean;
19
+ /**
20
+ * Pick only specified keys from a given object
21
+ * @param keys keys to pick from a given object
22
+ * @param object to extract keys from
23
+ */
24
+ export declare const pick: <T, K extends keyof T>(object: T, ...keys: K[]) => Pick<T, K>;
25
+ /**
26
+ * Will retry running the observable when an error occurs to a maximum limit, increasing delay between executions.
27
+ * @param options specifies number of retries, scaling duration and statuses to exclude
28
+ */
29
+ export declare const retryStrategy: ({ maxRetryAttempts, scalingDuration, excludedStatusCodes, }?: {
30
+ maxRetryAttempts?: number;
31
+ scalingDuration?: number;
32
+ excludedStatusCodes?: number[];
33
+ }) => (attempts: Observable<any>) => Observable<0>;
@@ -0,0 +1,4 @@
1
+ export * from './drag-drop.component';
2
+ export * from './drag-drop.models';
3
+ export * from './drag-drop.module';
4
+ export * from './drag-drop.pipes';