@recursyve/nice-ui-kit.v2 13.2.0-beta.99 → 14.0.0-beta.100

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 (264) hide show
  1. package/esm2020/lib/api/interceptors/transform-response.interceptor.mjs +3 -3
  2. package/esm2020/lib/components/alert/alert.component.mjs +6 -6
  3. package/esm2020/lib/components/alert/alert.module.mjs +7 -9
  4. package/esm2020/lib/components/alert/alert.service.mjs +3 -3
  5. package/esm2020/lib/components/assets-carousel/assets-carousel.component.mjs +38 -22
  6. package/esm2020/lib/components/assets-carousel/assets-carousel.module.mjs +11 -13
  7. package/esm2020/lib/components/async-typeahead/async-typeahead.component.mjs +17 -15
  8. package/esm2020/lib/components/async-typeahead/async-typeahead.module.mjs +13 -15
  9. package/esm2020/lib/components/async-typeahead/providers/async-typeahead.service.mjs +3 -3
  10. package/esm2020/lib/components/base-form/base-form.component.mjs +3 -3
  11. package/esm2020/lib/components/base-form/base-form.module.mjs +4 -4
  12. package/esm2020/lib/components/base-form/form-submit.directive.mjs +3 -3
  13. package/esm2020/lib/components/card/card.component.mjs +4 -4
  14. package/esm2020/lib/components/card/card.module.mjs +5 -7
  15. package/esm2020/lib/components/carousel/carousel.component.mjs +3 -3
  16. package/esm2020/lib/components/carousel/carousel.module.mjs +9 -11
  17. package/esm2020/lib/components/carousel/picture-modal/picture-modal.component.mjs +3 -3
  18. package/esm2020/lib/components/carousel/picture-modal/picture-modal.service.mjs +3 -3
  19. package/esm2020/lib/components/carousel/pipe/carousel-layout.pipe.mjs +3 -3
  20. package/esm2020/lib/components/date-range-picker/components/header/header.component.mjs +57 -0
  21. package/esm2020/lib/components/date-range-picker/components/range-preset/range-preset.component.mjs +107 -0
  22. package/esm2020/lib/components/date-range-picker/date-range-picker.component.mjs +74 -0
  23. package/esm2020/lib/components/date-range-picker/date-range-picker.module.mjs +56 -0
  24. package/esm2020/lib/components/date-range-picker/index.mjs +2 -0
  25. package/esm2020/lib/components/date-range-picker/providers/date-range-picker.service.mjs +17 -0
  26. package/esm2020/lib/components/date-range-picker/public-api.mjs +3 -0
  27. package/esm2020/lib/components/drawer/drawer.component.mjs +4 -4
  28. package/esm2020/lib/components/drawer/drawer.module.mjs +6 -8
  29. package/esm2020/lib/components/drawer/drawer.service.mjs +3 -3
  30. package/esm2020/lib/components/export-bottom-sheet/export-bottom-sheet.component.mjs +5 -5
  31. package/esm2020/lib/components/export-bottom-sheet/export-bottom-sheet.module.mjs +6 -6
  32. package/esm2020/lib/components/export-bottom-sheet/providers/export-bottom-sheet.service.mjs +6 -6
  33. package/esm2020/lib/components/form-error/control-status.directive.mjs +4 -4
  34. package/esm2020/lib/components/form-error/form-error.component.mjs +5 -5
  35. package/esm2020/lib/components/form-error/form-error.module.mjs +5 -5
  36. package/esm2020/lib/components/horizontal-stepper/horizontal-stepper.component.mjs +4 -4
  37. package/esm2020/lib/components/horizontal-stepper/horizontal-stepper.module.mjs +7 -9
  38. package/esm2020/lib/components/horizontal-stepper/step.component.mjs +3 -3
  39. package/esm2020/lib/components/image-cropper/image-cropper.component.mjs +11 -11
  40. package/esm2020/lib/components/image-cropper/image-cropper.module.mjs +5 -5
  41. package/esm2020/lib/components/layout/layout.component.mjs +3 -3
  42. package/esm2020/lib/components/layout/layout.module.mjs +5 -5
  43. package/esm2020/lib/components/loading-spinner/loading-spinner.component.mjs +3 -3
  44. package/esm2020/lib/components/loading-spinner/loading-spinner.module.mjs +6 -8
  45. package/esm2020/lib/components/loading-spinner/loading.directive.mjs +3 -3
  46. package/esm2020/lib/components/lottie/lottie.component.mjs +3 -3
  47. package/esm2020/lib/components/lottie/lottie.module.mjs +5 -5
  48. package/esm2020/lib/components/navigation/directives/show-hint.directive.mjs +163 -0
  49. package/esm2020/lib/components/navigation/horizontal/components/basic/basic.component.mjs +9 -9
  50. package/esm2020/lib/components/navigation/horizontal/components/branch/branch.component.mjs +11 -10
  51. package/esm2020/lib/components/navigation/horizontal/components/divider/divider.component.mjs +5 -5
  52. package/esm2020/lib/components/navigation/horizontal/components/spacer/spacer.component.mjs +5 -5
  53. package/esm2020/lib/components/navigation/horizontal/horizontal.component.mjs +10 -9
  54. package/esm2020/lib/components/navigation/navigation.component.mjs +3 -3
  55. package/esm2020/lib/components/navigation/navigation.module.mjs +26 -17
  56. package/esm2020/lib/components/navigation/navigation.service.mjs +3 -3
  57. package/esm2020/lib/components/navigation/navigation.types.mjs +1 -1
  58. package/esm2020/lib/components/navigation/pipes/should-hide.pipe.mjs +31 -0
  59. package/esm2020/lib/components/navigation/pipes/should-show-hint.pipe.mjs +32 -0
  60. package/esm2020/lib/components/navigation/providers/hide-item.resolver.mjs +3 -0
  61. package/esm2020/lib/components/navigation/providers/hint.resolver.mjs +3 -0
  62. package/esm2020/lib/components/navigation/providers/hint.service.mjs +20 -0
  63. package/esm2020/lib/components/navigation/public-api.mjs +3 -1
  64. package/esm2020/lib/components/navigation/vertical/components/aside/aside.component.mjs +12 -12
  65. package/esm2020/lib/components/navigation/vertical/components/basic/basic.component.mjs +10 -8
  66. package/esm2020/lib/components/navigation/vertical/components/collapsable/collapsable.component.mjs +14 -22
  67. package/esm2020/lib/components/navigation/vertical/components/divider/divider.component.mjs +5 -5
  68. package/esm2020/lib/components/navigation/vertical/components/group/group.component.mjs +12 -11
  69. package/esm2020/lib/components/navigation/vertical/components/spacer/spacer.component.mjs +5 -5
  70. package/esm2020/lib/components/navigation/vertical/vertical.component.mjs +33 -16
  71. package/esm2020/lib/components/public-api.mjs +2 -1
  72. package/esm2020/lib/components/search-bar/search-bar.component.mjs +8 -8
  73. package/esm2020/lib/components/search-bar/search-bar.module.mjs +9 -11
  74. package/esm2020/lib/components/sweet-alert/public-api.mjs +2 -1
  75. package/esm2020/lib/components/sweet-alert/sweet-alert.component.mjs +5 -5
  76. package/esm2020/lib/components/sweet-alert/sweet-alert.directive.mjs +37 -0
  77. package/esm2020/lib/components/sweet-alert/sweet-alert.module.mjs +9 -7
  78. package/esm2020/lib/components/sweet-alert/sweet-alert.service.mjs +24 -7
  79. package/esm2020/lib/components/toast/toast.component.mjs +5 -5
  80. package/esm2020/lib/components/toast/toast.module.mjs +5 -5
  81. package/esm2020/lib/components/toast/toast.service.mjs +3 -3
  82. package/esm2020/lib/components/toggle-button-group/toggle-button-group.component.mjs +4 -4
  83. package/esm2020/lib/components/toggle-button-group/toggle-button-group.module.mjs +6 -8
  84. package/esm2020/lib/components/toggle-button-group/toggle-button.component.mjs +3 -3
  85. package/esm2020/lib/components/typeahead/directives/options-scroll.directive.mjs +3 -3
  86. package/esm2020/lib/components/typeahead/directives/options-scroll.module.mjs +4 -4
  87. package/esm2020/lib/components/typeahead/typeahead.component.mjs +12 -12
  88. package/esm2020/lib/components/typeahead/typeahead.module.mjs +15 -17
  89. package/esm2020/lib/directives/autofocus/autofocus.directive.mjs +3 -3
  90. package/esm2020/lib/directives/autofocus/autofocus.module.mjs +4 -4
  91. package/esm2020/lib/directives/autogrow/autogrow.directive.mjs +3 -3
  92. package/esm2020/lib/directives/autogrow/autogrow.module.mjs +4 -4
  93. package/esm2020/lib/directives/chip-async-typeahead/chip-async-typeahead.directive.mjs +3 -3
  94. package/esm2020/lib/directives/chip-list/chip-list-items/chip-list-item-label.directive.mjs +3 -3
  95. package/esm2020/lib/directives/chip-list/chip-list-items/chip-list-items.component.mjs +24 -10
  96. package/esm2020/lib/directives/chip-list/chip-list.constant.mjs +3 -0
  97. package/esm2020/lib/directives/chip-list/chip-list.directive.mjs +37 -10
  98. package/esm2020/lib/directives/chip-list/chip-list.module.mjs +24 -5
  99. package/esm2020/lib/directives/dropzone/dropzone.directive.mjs +3 -3
  100. package/esm2020/lib/directives/dropzone/dropzone.module.mjs +5 -5
  101. package/esm2020/lib/directives/image-error-placeholder/image-error-placeholder.directive.mjs +3 -3
  102. package/esm2020/lib/directives/image-error-placeholder/image-error-placeholder.module.mjs +4 -4
  103. package/esm2020/lib/directives/material/material.module.mjs +4 -4
  104. package/esm2020/lib/directives/material/nice-material-style.directive.mjs +3 -3
  105. package/esm2020/lib/directives/material/nice-rounded-style.directive.mjs +3 -3
  106. package/esm2020/lib/directives/modals/modal-on-click.directive.mjs +3 -3
  107. package/esm2020/lib/directives/modals/modal-opener.directive.mjs +3 -3
  108. package/esm2020/lib/directives/public-api.mjs +2 -1
  109. package/esm2020/lib/directives/scroll-reset/scroll-reset.directive.mjs +3 -3
  110. package/esm2020/lib/directives/scroll-reset/scroll-reset.module.mjs +4 -4
  111. package/esm2020/lib/directives/scrollbar/scrollbar.directive.mjs +3 -3
  112. package/esm2020/lib/directives/scrollbar/scrollbar.module.mjs +4 -4
  113. package/esm2020/lib/directives/stop-propagation/click-stop-propagation.directive.mjs +3 -3
  114. package/esm2020/lib/directives/stop-propagation/stop-propagation.module.mjs +4 -4
  115. package/esm2020/lib/directives/window/prevent-close-window.directive.mjs +3 -3
  116. package/esm2020/lib/directives/window/window-directive.module.mjs +4 -4
  117. package/esm2020/lib/nice.module.mjs +8 -10
  118. package/esm2020/lib/pipes/boolean.pipe.mjs +3 -3
  119. package/esm2020/lib/pipes/capitalize-first-letter.pipe.mjs +3 -3
  120. package/esm2020/lib/pipes/ceil.pipe.mjs +3 -3
  121. package/esm2020/lib/pipes/entries.pipe.mjs +3 -3
  122. package/esm2020/lib/pipes/find-by-key.pipe.mjs +3 -3
  123. package/esm2020/lib/pipes/first-letter.pipe.mjs +3 -3
  124. package/esm2020/lib/pipes/floor.pipe.mjs +3 -3
  125. package/esm2020/lib/pipes/join-if-defined.pipe.mjs +3 -3
  126. package/esm2020/lib/pipes/link.pipe.mjs +3 -3
  127. package/esm2020/lib/pipes/localized-boolean.pipe.mjs +3 -3
  128. package/esm2020/lib/pipes/localized-currency.pipe.mjs +3 -3
  129. package/esm2020/lib/pipes/localized-date-only.pipe.mjs +3 -3
  130. package/esm2020/lib/pipes/localized-date.pipe.mjs +3 -3
  131. package/esm2020/lib/pipes/minutes-to-time.pipe.mjs +3 -3
  132. package/esm2020/lib/pipes/number-to-ordinal-indicator.pipe.mjs +3 -3
  133. package/esm2020/lib/pipes/pad.pipe.mjs +3 -3
  134. package/esm2020/lib/pipes/phone.pipe.mjs +3 -3
  135. package/esm2020/lib/pipes/pipes.module.mjs +4 -4
  136. package/esm2020/lib/pipes/postal-code.pipe.mjs +3 -3
  137. package/esm2020/lib/pipes/range.pipe.mjs +3 -3
  138. package/esm2020/lib/pipes/round.pipe.mjs +3 -3
  139. package/esm2020/lib/pipes/sanitize-bypass.pipe.mjs +3 -3
  140. package/esm2020/lib/pipes/seconds-to-time.pipe.mjs +3 -3
  141. package/esm2020/lib/providers/config/config.module.mjs +4 -4
  142. package/esm2020/lib/providers/config/config.service.mjs +3 -3
  143. package/esm2020/lib/providers/media-watcher/media-watcher.module.mjs +4 -4
  144. package/esm2020/lib/providers/media-watcher/media-watcher.service.mjs +3 -3
  145. package/esm2020/lib/providers/overlay/dynamic-overlay-container.service.mjs +3 -3
  146. package/esm2020/lib/providers/overlay/dynamic-overlay.service.mjs +3 -3
  147. package/esm2020/lib/providers/splash-screen/splash-screen.module.mjs +4 -4
  148. package/esm2020/lib/providers/splash-screen/splash-screen.service.mjs +3 -3
  149. package/esm2020/lib/providers/utils/utils.module.mjs +4 -4
  150. package/esm2020/lib/providers/utils/utils.service.mjs +3 -3
  151. package/fesm2015/recursyve-nice-ui-kit.v2.mjs +6143 -5529
  152. package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
  153. package/fesm2020/recursyve-nice-ui-kit.v2.mjs +3272 -2665
  154. package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
  155. package/{recursyve-nice-ui-kit.v2.d.ts → index.d.ts} +0 -0
  156. package/lib/components/alert/alert.component.d.ts +1 -1
  157. package/lib/components/assets-carousel/assets-carousel.component.d.ts +6 -1
  158. package/lib/components/async-typeahead/async-typeahead.component.d.ts +3 -3
  159. package/lib/components/base-form/base-form.component.d.ts +1 -1
  160. package/lib/components/base-form/form-submit.directive.d.ts +1 -1
  161. package/lib/components/card/card.component.d.ts +1 -1
  162. package/lib/components/carousel/carousel.component.d.ts +1 -1
  163. package/lib/components/carousel/picture-modal/picture-modal.component.d.ts +1 -1
  164. package/lib/components/carousel/pipe/carousel-layout.pipe.d.ts +1 -1
  165. package/lib/components/date-range-picker/components/header/header.component.d.ts +20 -0
  166. package/lib/components/date-range-picker/components/range-preset/range-preset.component.d.ts +23 -0
  167. package/lib/components/date-range-picker/date-range-picker.component.d.ts +29 -0
  168. package/lib/components/date-range-picker/date-range-picker.module.d.ts +18 -0
  169. package/lib/components/date-range-picker/index.d.ts +1 -0
  170. package/lib/components/date-range-picker/providers/date-range-picker.service.d.ts +8 -0
  171. package/lib/components/date-range-picker/public-api.d.ts +2 -0
  172. package/lib/components/drawer/drawer.component.d.ts +1 -1
  173. package/lib/components/export-bottom-sheet/export-bottom-sheet.component.d.ts +1 -1
  174. package/lib/components/form-error/control-status.directive.d.ts +4 -6
  175. package/lib/components/form-error/form-error.component.d.ts +1 -1
  176. package/lib/components/horizontal-stepper/horizontal-stepper.component.d.ts +1 -1
  177. package/lib/components/horizontal-stepper/step.component.d.ts +1 -1
  178. package/lib/components/image-cropper/image-cropper.component.d.ts +2 -2
  179. package/lib/components/layout/layout.component.d.ts +1 -1
  180. package/lib/components/loading-spinner/loading-spinner.component.d.ts +1 -1
  181. package/lib/components/loading-spinner/loading.directive.d.ts +1 -1
  182. package/lib/components/lottie/lottie.component.d.ts +1 -1
  183. package/lib/components/navigation/directives/show-hint.directive.d.ts +36 -0
  184. package/lib/components/navigation/horizontal/components/basic/basic.component.d.ts +1 -1
  185. package/lib/components/navigation/horizontal/components/branch/branch.component.d.ts +1 -1
  186. package/lib/components/navigation/horizontal/components/divider/divider.component.d.ts +1 -1
  187. package/lib/components/navigation/horizontal/components/spacer/spacer.component.d.ts +1 -1
  188. package/lib/components/navigation/horizontal/horizontal.component.d.ts +1 -1
  189. package/lib/components/navigation/navigation.component.d.ts +1 -1
  190. package/lib/components/navigation/navigation.module.d.ts +13 -10
  191. package/lib/components/navigation/navigation.types.d.ts +8 -1
  192. package/lib/components/navigation/pipes/should-hide.pipe.d.ts +11 -0
  193. package/lib/components/navigation/pipes/should-show-hint.pipe.d.ts +12 -0
  194. package/lib/components/navigation/providers/hide-item.resolver.d.ts +5 -0
  195. package/lib/components/navigation/providers/hint.resolver.d.ts +4 -0
  196. package/lib/components/navigation/providers/hint.service.d.ts +9 -0
  197. package/lib/components/navigation/public-api.d.ts +2 -0
  198. package/lib/components/navigation/vertical/components/aside/aside.component.d.ts +1 -1
  199. package/lib/components/navigation/vertical/components/basic/basic.component.d.ts +1 -1
  200. package/lib/components/navigation/vertical/components/collapsable/collapsable.component.d.ts +1 -1
  201. package/lib/components/navigation/vertical/components/divider/divider.component.d.ts +1 -1
  202. package/lib/components/navigation/vertical/components/group/group.component.d.ts +1 -1
  203. package/lib/components/navigation/vertical/components/spacer/spacer.component.d.ts +1 -1
  204. package/lib/components/navigation/vertical/vertical.component.d.ts +6 -2
  205. package/lib/components/public-api.d.ts +1 -0
  206. package/lib/components/search-bar/search-bar.component.d.ts +1 -1
  207. package/lib/components/sweet-alert/public-api.d.ts +1 -0
  208. package/lib/components/sweet-alert/sweet-alert.component.d.ts +1 -1
  209. package/lib/components/sweet-alert/sweet-alert.directive.d.ts +13 -0
  210. package/lib/components/sweet-alert/sweet-alert.module.d.ts +7 -6
  211. package/lib/components/sweet-alert/sweet-alert.service.d.ts +11 -0
  212. package/lib/components/toast/toast.component.d.ts +1 -1
  213. package/lib/components/toggle-button-group/toggle-button-group.component.d.ts +1 -1
  214. package/lib/components/toggle-button-group/toggle-button.component.d.ts +1 -1
  215. package/lib/components/typeahead/directives/options-scroll.directive.d.ts +1 -1
  216. package/lib/components/typeahead/typeahead.component.d.ts +2 -2
  217. package/lib/directives/autofocus/autofocus.directive.d.ts +1 -1
  218. package/lib/directives/autogrow/autogrow.directive.d.ts +1 -1
  219. package/lib/directives/chip-async-typeahead/chip-async-typeahead.directive.d.ts +1 -1
  220. package/lib/directives/chip-list/chip-list-items/chip-list-item-label.directive.d.ts +1 -1
  221. package/lib/directives/chip-list/chip-list-items/chip-list-items.component.d.ts +14 -2
  222. package/lib/directives/chip-list/chip-list.constant.d.ts +2 -0
  223. package/lib/directives/chip-list/chip-list.directive.d.ts +3 -1
  224. package/lib/directives/chip-list/chip-list.module.d.ts +3 -0
  225. package/lib/directives/dropzone/dropzone.directive.d.ts +1 -1
  226. package/lib/directives/image-error-placeholder/image-error-placeholder.directive.d.ts +1 -1
  227. package/lib/directives/material/nice-material-style.directive.d.ts +1 -1
  228. package/lib/directives/material/nice-rounded-style.directive.d.ts +1 -1
  229. package/lib/directives/modals/modal-on-click.directive.d.ts +1 -1
  230. package/lib/directives/modals/modal-opener.directive.d.ts +1 -1
  231. package/lib/directives/public-api.d.ts +1 -0
  232. package/lib/directives/scroll-reset/scroll-reset.directive.d.ts +1 -1
  233. package/lib/directives/scrollbar/scrollbar.directive.d.ts +1 -1
  234. package/lib/directives/stop-propagation/click-stop-propagation.directive.d.ts +1 -1
  235. package/lib/directives/window/prevent-close-window.directive.d.ts +1 -1
  236. package/lib/pipes/boolean.pipe.d.ts +1 -1
  237. package/lib/pipes/capitalize-first-letter.pipe.d.ts +1 -1
  238. package/lib/pipes/ceil.pipe.d.ts +1 -1
  239. package/lib/pipes/entries.pipe.d.ts +1 -1
  240. package/lib/pipes/find-by-key.pipe.d.ts +1 -1
  241. package/lib/pipes/first-letter.pipe.d.ts +1 -1
  242. package/lib/pipes/floor.pipe.d.ts +1 -1
  243. package/lib/pipes/join-if-defined.pipe.d.ts +1 -1
  244. package/lib/pipes/link.pipe.d.ts +1 -1
  245. package/lib/pipes/localized-boolean.pipe.d.ts +1 -1
  246. package/lib/pipes/localized-currency.pipe.d.ts +1 -1
  247. package/lib/pipes/localized-date-only.pipe.d.ts +1 -1
  248. package/lib/pipes/localized-date.pipe.d.ts +1 -1
  249. package/lib/pipes/minutes-to-time.pipe.d.ts +1 -1
  250. package/lib/pipes/number-to-ordinal-indicator.pipe.d.ts +1 -1
  251. package/lib/pipes/pad.pipe.d.ts +1 -1
  252. package/lib/pipes/phone.pipe.d.ts +1 -1
  253. package/lib/pipes/postal-code.pipe.d.ts +1 -1
  254. package/lib/pipes/range.pipe.d.ts +1 -1
  255. package/lib/pipes/round.pipe.d.ts +1 -1
  256. package/lib/pipes/sanitize-bypass.pipe.d.ts +1 -1
  257. package/lib/pipes/seconds-to-time.pipe.d.ts +1 -1
  258. package/lib/utils/array.utils.d.ts +1 -1
  259. package/package.json +11 -11
  260. package/src/lib/components/assets-carousel/assets-carousel.theme.scss +44 -38
  261. package/src/lib/components/date-range-picker/date-range-picker.theme.scss +47 -0
  262. package/src/lib/components/navigation/vertical/styles/appearances/default.theme.scss +38 -0
  263. package/src/lib/components/navigation/vertical/styles/appearances/dense.theme.scss +2 -2
  264. package/src/lib/nice.theme.scss +2 -0
@@ -29,5 +29,5 @@ export declare class NiceVerticalNavigationGroupItemComponent implements OnInit,
29
29
  */
30
30
  trackByFn(index: number, item: any): any;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceVerticalNavigationGroupItemComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceVerticalNavigationGroupItemComponent, "nice-vertical-navigation-group-item", never, { "autoCollapse": "autoCollapse"; "item": "item"; "name": "name"; }, {}, never, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceVerticalNavigationGroupItemComponent, "nice-vertical-navigation-group-item", never, { "autoCollapse": "autoCollapse"; "item": "item"; "name": "name"; }, {}, never, never, false>;
33
33
  }
@@ -22,5 +22,5 @@ export declare class NiceVerticalNavigationSpacerItemComponent implements OnInit
22
22
  */
23
23
  ngOnDestroy(): void;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceVerticalNavigationSpacerItemComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceVerticalNavigationSpacerItemComponent, "nice-vertical-navigation-spacer-item", never, { "item": "item"; "name": "name"; }, {}, never, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceVerticalNavigationSpacerItemComponent, "nice-vertical-navigation-spacer-item", never, { "item": "item"; "name": "name"; }, {}, never, never, false>;
26
26
  }
@@ -9,6 +9,7 @@ import { NiceUtilsService } from "../../../providers/utils";
9
9
  import { NiceNavigationComponent } from "../navigation.component";
10
10
  import { NiceNavigationService } from "../navigation.service";
11
11
  import { NiceNavigationItem, NiceVerticalNavigationAppearance, NiceVerticalNavigationMode, NiceVerticalNavigationPosition } from "../navigation.types";
12
+ import { NiceNavigationHintService } from "../providers/hint.service";
12
13
  import * as i0 from "@angular/core";
13
14
  export declare class NiceVerticalNavigationComponent extends NiceNavigationComponent implements OnChanges, OnInit, AfterViewInit {
14
15
  private _animationBuilder;
@@ -16,6 +17,7 @@ export declare class NiceVerticalNavigationComponent extends NiceNavigationCompo
16
17
  private _renderer2;
17
18
  private _router;
18
19
  private _scrollStrategyOptions;
20
+ private _hintService;
19
21
  static ngAcceptInputType_inner: BooleanInput;
20
22
  static ngAcceptInputType_opened: BooleanInput;
21
23
  static ngAcceptInputType_transparentOverlay: BooleanInput;
@@ -35,11 +37,13 @@ export declare class NiceVerticalNavigationComponent extends NiceNavigationCompo
35
37
  mode: NiceVerticalNavigationMode;
36
38
  opened: boolean;
37
39
  hovered: boolean;
40
+ hasHint: boolean;
38
41
  position: NiceVerticalNavigationPosition;
39
42
  transparentOverlay: boolean;
40
43
  readonly appearanceChanged: EventEmitter<NiceVerticalNavigationAppearance>;
41
44
  readonly modeChanged: EventEmitter<NiceVerticalNavigationMode>;
42
45
  readonly openedChanged: EventEmitter<boolean>;
46
+ readonly hoveredChanged: EventEmitter<boolean>;
43
47
  readonly positionChanged: EventEmitter<NiceVerticalNavigationPosition>;
44
48
  private _navigationContentEl;
45
49
  set navigation(navigation: NiceNavigationItem[]);
@@ -50,7 +54,7 @@ export declare class NiceVerticalNavigationComponent extends NiceNavigationCompo
50
54
  /**
51
55
  * Constructor
52
56
  */
53
- constructor(_changeDetectorRef: ChangeDetectorRef, _niceNavigationService: NiceNavigationService, _niceUtilsService: NiceUtilsService, _animationBuilder: AnimationBuilder, _elementRef: ElementRef, _renderer2: Renderer2, _router: Router, _scrollStrategyOptions: ScrollStrategyOptions);
57
+ constructor(_changeDetectorRef: ChangeDetectorRef, _niceNavigationService: NiceNavigationService, _niceUtilsService: NiceUtilsService, _animationBuilder: AnimationBuilder, _elementRef: ElementRef, _renderer2: Renderer2, _router: Router, _scrollStrategyOptions: ScrollStrategyOptions, _hintService: NiceNavigationHintService);
54
58
  /**
55
59
  * Host binding for component classes
56
60
  */
@@ -153,5 +157,5 @@ export declare class NiceVerticalNavigationComponent extends NiceNavigationCompo
153
157
  */
154
158
  private _toggleOpened;
155
159
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceVerticalNavigationComponent, never>;
156
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceVerticalNavigationComponent, "nice-vertical-navigation", ["niceVerticalNavigation"], { "name": "name"; "appearance": "appearance"; "autoCollapse": "autoCollapse"; "inner": "inner"; "mode": "mode"; "opened": "opened"; "hovered": "hovered"; "position": "position"; "transparentOverlay": "transparentOverlay"; "navigation": "navigation"; }, { "appearanceChanged": "appearanceChanged"; "modeChanged": "modeChanged"; "openedChanged": "openedChanged"; "positionChanged": "positionChanged"; }, never, ["[niceVerticalNavigationHeader]", "[niceVerticalNavigationContentHeader]", "[niceVerticalNavigationContentFooter]", "[niceVerticalNavigationFooter]"]>;
160
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceVerticalNavigationComponent, "nice-vertical-navigation", ["niceVerticalNavigation"], { "name": "name"; "appearance": "appearance"; "autoCollapse": "autoCollapse"; "inner": "inner"; "mode": "mode"; "opened": "opened"; "hovered": "hovered"; "hasHint": "hasHint"; "position": "position"; "transparentOverlay": "transparentOverlay"; "navigation": "navigation"; }, { "appearanceChanged": "appearanceChanged"; "modeChanged": "modeChanged"; "openedChanged": "openedChanged"; "hoveredChanged": "hoveredChanged"; "positionChanged": "positionChanged"; }, never, ["[niceVerticalNavigationHeader]", "[niceVerticalNavigationContentHeader]", "[niceVerticalNavigationContentFooter]", "[niceVerticalNavigationFooter]"], false>;
157
161
  }
@@ -4,6 +4,7 @@ export * from "./async-typeahead";
4
4
  export * from "./base-form";
5
5
  export * from "./card";
6
6
  export * from "./carousel";
7
+ export * from "./date-range-picker";
7
8
  export * from "./drawer";
8
9
  export * from "./export-bottom-sheet";
9
10
  export * from "./form-error";
@@ -16,5 +16,5 @@ export declare class NiceSearchBarComponent implements ControlValueAccessor {
16
16
  open(): void;
17
17
  close(): void;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceSearchBarComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceSearchBarComponent, "nice-search-bar", never, { "collapsed": "collapsed"; }, { "collapse": "collapse"; }, never, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceSearchBarComponent, "nice-search-bar", never, { "collapsed": "collapsed"; }, { "collapse": "collapse"; }, never, never, false>;
20
20
  }
@@ -1,3 +1,4 @@
1
1
  export * from "./sweet-alert.component";
2
+ export * from "./sweet-alert.directive";
2
3
  export * from "./sweet-alert.module";
3
4
  export * from "./sweet-alert.service";
@@ -23,5 +23,5 @@ export declare class NiceSweetAlertComponent implements OnInit {
23
23
  getAnimationPath(): string;
24
24
  getConfirmButtonClass(): string;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceSweetAlertComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceSweetAlertComponent, "nice-alert", never, {}, {}, never, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceSweetAlertComponent, "nice-alert", never, {}, {}, never, never, false>;
27
27
  }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { NiceSweetAlertParams, NiceSweetAlertService } from "./sweet-alert.service";
3
+ import * as i0 from "@angular/core";
4
+ export declare class NiceSweetAlertDirective {
5
+ private service;
6
+ sweetAlertType: "success" | "warning" | "info";
7
+ sweetAlertOptions: NiceSweetAlertParams;
8
+ sweetAlertAfterClosed: EventEmitter<boolean>;
9
+ constructor(service: NiceSweetAlertService);
10
+ onClick(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<NiceSweetAlertDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceSweetAlertDirective, "[niceSweetAlert]", never, { "sweetAlertType": "sweetAlertType"; "sweetAlertOptions": "sweetAlertOptions"; }, { "sweetAlertAfterClosed": "sweetAlertAfterClosed"; }, never, never, false>;
13
+ }
@@ -2,14 +2,15 @@ import { ModuleWithProviders } from "@angular/core";
2
2
  import { NiceSweetAlertOptions } from "./sweet-alert.service";
3
3
  import * as i0 from "@angular/core";
4
4
  import * as i1 from "./sweet-alert.component";
5
- import * as i2 from "@angular/common";
6
- import * as i3 from "@ngx-translate/core";
7
- import * as i4 from "@angular/material/dialog";
8
- import * as i5 from "@angular/material/button";
9
- import * as i6 from "../lottie/lottie.module";
5
+ import * as i2 from "./sweet-alert.directive";
6
+ import * as i3 from "@angular/common";
7
+ import * as i4 from "@ngx-translate/core";
8
+ import * as i5 from "@angular/material/dialog";
9
+ import * as i6 from "@angular/material/button";
10
+ import * as i7 from "../lottie/lottie.module";
10
11
  export declare class NiceSweetAlertModule {
11
12
  static forRoot(options?: NiceSweetAlertOptions): ModuleWithProviders<NiceSweetAlertModule>;
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceSweetAlertModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<NiceSweetAlertModule, [typeof i1.NiceSweetAlertComponent], [typeof i2.CommonModule, typeof i3.TranslateModule, typeof i4.MatDialogModule, typeof i5.MatButtonModule, typeof i6.NiceLottieModule], never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NiceSweetAlertModule, [typeof i1.NiceSweetAlertComponent, typeof i2.NiceSweetAlertDirective], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.MatDialogModule, typeof i6.MatButtonModule, typeof i7.NiceLottieModule], [typeof i2.NiceSweetAlertDirective]>;
14
15
  static ɵinj: i0.ɵɵInjectorDeclaration<NiceSweetAlertModule>;
15
16
  }
@@ -6,16 +6,27 @@ import * as i0 from "@angular/core";
6
6
  export interface NiceSweetAlertOptions {
7
7
  customModal?: Type<any>;
8
8
  }
9
+ export interface NiceSweetAlertParams {
10
+ translationPath?: string;
11
+ titleKey: string;
12
+ messageKey?: string;
13
+ buttonsKey: string[];
14
+ params?: object;
15
+ }
9
16
  export declare class NiceSweetAlertService {
10
17
  private options;
11
18
  private matDialog;
12
19
  private translateService;
13
20
  private readonly modal;
14
21
  constructor(options: NiceSweetAlertOptions, matDialog: MatDialog, translateService: TranslateService);
22
+ success(params: NiceSweetAlertParams): Observable<boolean>;
15
23
  success(titleKey: string, messageKey: string, buttonsKey: string[], params?: object): Observable<boolean>;
24
+ warning(params: NiceSweetAlertParams): Observable<boolean>;
16
25
  warning(titleKey: string, messageKey: string, buttonsKey: string[], params?: object): Observable<boolean>;
26
+ info(params: NiceSweetAlertParams): Observable<boolean>;
17
27
  info(titleKey: string, messageKey: string, buttonsKey: string[], params?: object): Observable<boolean>;
18
28
  private getTranslations;
29
+ private transformArgs;
19
30
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceSweetAlertService, [{ optional: true; }, null, null]>;
20
31
  static ɵprov: i0.ɵɵInjectableDeclaration<NiceSweetAlertService>;
21
32
  }
@@ -13,5 +13,5 @@ export declare class NiceToastComponent {
13
13
  constructor(data: NiceToastData, snackbarRef: MatSnackBarRef<NiceToastComponent>);
14
14
  dismiss(): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceToastComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceToastComponent, "nice-toast", never, {}, {}, never, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceToastComponent, "nice-toast", never, {}, {}, never, never, false>;
17
17
  }
@@ -22,5 +22,5 @@ export declare class ToggleButtonGroupComponent implements CanColor {
22
22
  private isLeftValueSelected;
23
23
  private isRightValueSelected;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonGroupComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonGroupComponent, "nice-toggle-button-group", never, { "selected": "selected"; "color": "color"; "multiple": "multiple"; }, { "selectedChange": "selectedChange"; }, ["toggleButtons"], never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonGroupComponent, "nice-toggle-button-group", never, { "selected": "selected"; "color": "color"; "multiple": "multiple"; }, { "selectedChange": "selectedChange"; }, ["toggleButtons"], never, false>;
26
26
  }
@@ -4,5 +4,5 @@ export declare class ToggleButtonComponent {
4
4
  content: TemplateRef<any>;
5
5
  value: string;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "nice-toggle-button", never, { "value": "value"; }, {}, never, ["*"]>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "nice-toggle-button", never, { "value": "value"; }, {}, never, ["*"], false>;
8
8
  }
@@ -15,5 +15,5 @@ export declare class OptionsScrollDirective implements OnDestroy {
15
15
  onScroll(event: Event): void;
16
16
  private removeScrollEventListener;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<OptionsScrollDirective, never>;
18
- static ɵdir: i0.ɵɵDirectiveDeclaration<OptionsScrollDirective, "mat-autocomplete[optionsScroll]", never, { "thresholdPercent": "thresholdPercent"; }, { "optionsScroll": "optionsScroll"; }, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OptionsScrollDirective, "mat-autocomplete[optionsScroll]", never, { "thresholdPercent": "thresholdPercent"; }, { "optionsScroll": "optionsScroll"; }, never, never, false>;
19
19
  }
@@ -49,7 +49,7 @@ export declare class NiceTypeaheadComponent implements OnInit, OnDestroy, Contro
49
49
  input: ElementRef<HTMLInputElement>;
50
50
  options: MatOption[];
51
51
  search$: Subject<string>;
52
- searchControl: FormControl;
52
+ searchControl: FormControl<any>;
53
53
  values: unknown[];
54
54
  valueChangesSub$: Subscription;
55
55
  searchSub$: Subscription;
@@ -97,5 +97,5 @@ export declare class NiceTypeaheadComponent implements OnInit, OnDestroy, Contro
97
97
  private setLoadingPage;
98
98
  private checkIfValueStillExist;
99
99
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceTypeaheadComponent, [{ optional: true; self: true; }, null, null, null]>;
100
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceTypeaheadComponent, "nice-typeahead", never, { "items": "items"; "labelFormatFn": "labelFormatFn"; "required": "required"; "disabled": "disabled"; "placeholder": "placeholder"; "emptyPlaceholder": "emptyPlaceholder"; "allowNotFoundItems": "allowNotFoundItems"; "panelClass": "panelClass"; "bindValue": "bindValue"; "bindLabel": "bindLabel"; "typeahead": "typeahead"; "page$": "page$"; "loading": "loading"; "loadingPage": "loadingPage"; "searchFn": "searchFn"; "optionTemplate": "optionTemplate"; }, { "change": "change"; }, never, never>;
100
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceTypeaheadComponent, "nice-typeahead", never, { "items": "items"; "labelFormatFn": "labelFormatFn"; "required": "required"; "disabled": "disabled"; "placeholder": "placeholder"; "emptyPlaceholder": "emptyPlaceholder"; "allowNotFoundItems": "allowNotFoundItems"; "panelClass": "panelClass"; "bindValue": "bindValue"; "bindLabel": "bindLabel"; "typeahead": "typeahead"; "page$": "page$"; "loading": "loading"; "loadingPage": "loadingPage"; "searchFn": "searchFn"; "optionTemplate": "optionTemplate"; }, { "change": "change"; }, never, never, false>;
101
101
  }
@@ -5,5 +5,5 @@ export declare class NiceAutofocusDirective implements OnInit {
5
5
  constructor(elem: ElementRef);
6
6
  ngOnInit(): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceAutofocusDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceAutofocusDirective, "[niceAutofocus]", never, {}, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceAutofocusDirective, "[niceAutofocus]", never, {}, {}, never, never, false>;
9
9
  }
@@ -33,5 +33,5 @@ export declare class NiceAutogrowDirective implements OnChanges, OnInit, OnDestr
33
33
  */
34
34
  private _resize;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceAutogrowDirective, never>;
36
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceAutogrowDirective, "textarea[niceAutogrow]", ["niceAutogrow"], { "padding": "niceAutogrowVerticalPadding"; }, {}, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceAutogrowDirective, "textarea[niceAutogrow]", ["niceAutogrow"], { "padding": "niceAutogrowVerticalPadding"; }, {}, never, never, false>;
37
37
  }
@@ -10,5 +10,5 @@ export declare class NiceChipAsyncTypeaheadDirective implements OnInit, OnDestro
10
10
  ngOnInit(): void;
11
11
  ngOnDestroy(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipAsyncTypeaheadDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipAsyncTypeaheadDirective, "[niceChipAsyncTypeahead]", ["niceChipAsyncTypeahead"], {}, { "niceChipAsyncTypeaheadTokenEnd": "niceChipAsyncTypeaheadTokenEnd"; }, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipAsyncTypeaheadDirective, "[niceChipAsyncTypeahead]", ["niceChipAsyncTypeahead"], {}, { "niceChipAsyncTypeaheadTokenEnd": "niceChipAsyncTypeaheadTokenEnd"; }, never, never, false>;
14
14
  }
@@ -4,5 +4,5 @@ export declare class ChipListItemLabelDirective {
4
4
  template: TemplateRef<any>;
5
5
  constructor(template: TemplateRef<any>);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ChipListItemLabelDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<ChipListItemLabelDirective, "[niceChipListItemLabel]", never, {}, {}, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ChipListItemLabelDirective, "[niceChipListItemLabel]", never, {}, {}, never, never, false>;
8
8
  }
@@ -2,13 +2,25 @@ import { EventEmitter, TemplateRef } from "@angular/core";
2
2
  import { CanColor, ThemePalette } from "@angular/material/core";
3
3
  import { Observable } from "rxjs";
4
4
  import * as i0 from "@angular/core";
5
+ export declare type NiceChipListActionIcon = {
6
+ matIcon: string;
7
+ svgIcon?: string;
8
+ } | {
9
+ matIcon?: string;
10
+ svgIcon: string;
11
+ };
12
+ export interface NiceChipListOptions {
13
+ closeButtonIcon: NiceChipListActionIcon;
14
+ }
5
15
  export declare class NiceChipListItemsComponent implements CanColor {
16
+ readonly options: NiceChipListOptions;
6
17
  itemLabel: TemplateRef<any>;
7
18
  color: ThemePalette;
8
19
  removeChip: EventEmitter<number>;
9
20
  items$: Observable<any[]>;
10
21
  defaultColor: ThemePalette;
22
+ constructor(options: NiceChipListOptions);
11
23
  remove(index: number): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipListItemsComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<NiceChipListItemsComponent, "nice-chip-list-items", never, { "color": "color"; "items$": "items$"; }, { "removeChip": "removeChip"; }, ["itemLabel"], never>;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipListItemsComponent, [{ optional: true; }]>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<NiceChipListItemsComponent, "nice-chip-list-items", never, { "color": "color"; "items$": "items$"; }, { "removeChip": "removeChip"; }, ["itemLabel"], never, false>;
14
26
  }
@@ -0,0 +1,2 @@
1
+ import { InjectionToken } from "@angular/core";
2
+ export declare const NICE_CHIP_LIST_OPTIONS: InjectionToken<unknown>;
@@ -8,6 +8,7 @@ export declare class NiceChipListDirective implements ControlValueAccessor, OnIn
8
8
  private ngControl;
9
9
  private elementRef;
10
10
  withItemList: NiceChipListItemsComponent;
11
+ reloadOnSelected: boolean;
11
12
  private unsubscribeAll$;
12
13
  private values$;
13
14
  private _values;
@@ -22,6 +23,7 @@ export declare class NiceChipListDirective implements ControlValueAccessor, OnIn
22
23
  registerOnTouched(fn: any): void;
23
24
  private setupAsyncTypeahead;
24
25
  private addValue;
26
+ private updateTypeaheadSearchOptions;
25
27
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipListDirective, [{ optional: true; }, { optional: true; }, null]>;
26
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipListDirective, "input[niceChipList], nice-async-typeahead[niceChipList]", never, { "withItemList": "withItemList"; }, {}, never>;
28
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipListDirective, "input[niceChipList], nice-async-typeahead[niceChipList]", never, { "withItemList": "withItemList"; "reloadOnSelected": "reloadOnSelected"; }, {}, never, never, false>;
27
29
  }
@@ -1,3 +1,5 @@
1
+ import { ModuleWithProviders } from "@angular/core";
2
+ import { NiceChipListOptions } from "./chip-list-items/chip-list-items.component";
1
3
  import * as i0 from "@angular/core";
2
4
  import * as i1 from "./chip-list.directive";
3
5
  import * as i2 from "./chip-list-items/chip-list-items.component";
@@ -5,6 +7,7 @@ import * as i3 from "./chip-list-items/chip-list-item-label.directive";
5
7
  import * as i4 from "@angular/common";
6
8
  import * as i5 from "@angular/material/icon";
7
9
  export declare class NiceChipListDirectiveModule {
10
+ static forRoot(options?: NiceChipListOptions): ModuleWithProviders<NiceChipListDirectiveModule>;
8
11
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipListDirectiveModule, never>;
9
12
  static ɵmod: i0.ɵɵNgModuleDeclaration<NiceChipListDirectiveModule, [typeof i1.NiceChipListDirective, typeof i2.NiceChipListItemsComponent, typeof i3.ChipListItemLabelDirective], [typeof i4.CommonModule, typeof i5.MatIconModule], [typeof i1.NiceChipListDirective, typeof i2.NiceChipListItemsComponent, typeof i3.ChipListItemLabelDirective]>;
10
13
  static ɵinj: i0.ɵɵInjectorDeclaration<NiceChipListDirectiveModule>;
@@ -7,5 +7,5 @@ export declare class NiceDropzoneDirective {
7
7
  onDragLeave(event: DragEvent): void;
8
8
  ondrop(event: DragEvent): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceDropzoneDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceDropzoneDirective, "[niceDropzone]", never, {}, { "filesDropped": "filesDropped"; }, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceDropzoneDirective, "[niceDropzone]", never, {}, { "filesDropped": "filesDropped"; }, never, never, false>;
11
11
  }
@@ -7,5 +7,5 @@ export declare class NiceImageErrorPlaceholderDirective {
7
7
  constructor(elementRef: ElementRef, viewContainerRef: ViewContainerRef);
8
8
  onError(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceImageErrorPlaceholderDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceImageErrorPlaceholderDirective, "img[niceImageErrorPlaceholder]", never, { "fallback": "fallback"; }, {}, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceImageErrorPlaceholderDirective, "img[niceImageErrorPlaceholder]", never, { "fallback": "fallback"; }, {}, never, never, false>;
11
11
  }
@@ -5,5 +5,5 @@ export declare class NiceMaterialStyleDirective implements OnInit {
5
5
  constructor(element: ElementRef);
6
6
  ngOnInit(): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceMaterialStyleDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceMaterialStyleDirective, "[keep-material-style]", never, {}, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceMaterialStyleDirective, "[keep-material-style]", never, {}, {}, never, never, false>;
9
9
  }
@@ -5,5 +5,5 @@ export declare class NiceRoundedStyleDirective implements OnInit {
5
5
  constructor(element: ElementRef);
6
6
  ngOnInit(): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceRoundedStyleDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceRoundedStyleDirective, "[nice-rounded-style]", never, {}, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceRoundedStyleDirective, "[nice-rounded-style]", never, {}, {}, never, never, false>;
9
9
  }
@@ -6,5 +6,5 @@ export declare class NiceModalOnClickDirective<T, Return, Data = any> extends Ni
6
6
  constructor(dialog: MatDialog, modal: Type<T>, options: MatDialogConfig<Data>);
7
7
  onClick(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceModalOnClickDirective<any, any, any>, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceModalOnClickDirective<any, any, any>, never, never, {}, {}, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceModalOnClickDirective<any, any, any>, never, never, {}, {}, never, never, false>;
10
10
  }
@@ -10,5 +10,5 @@ export declare class NiceModalOpenerDirective<T, Return, Data> {
10
10
  constructor(dialog: MatDialog, modal: Type<T>, options: MatDialogConfig<Data>);
11
11
  open(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceModalOpenerDirective<any, any, any>, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceModalOpenerDirective<any, any, any>, never, never, { "modalData": "modalData"; }, { "modalAfterClosed": "modalAfterClosed"; }, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceModalOpenerDirective<any, any, any>, never, never, { "modalData": "modalData"; }, { "modalAfterClosed": "modalAfterClosed"; }, never, never, false>;
14
14
  }
@@ -2,6 +2,7 @@ export * from "./autofocus";
2
2
  export * from "./autogrow";
3
3
  export * from "./chip-async-typeahead";
4
4
  export * from "./chip-list";
5
+ export * from "./dropzone";
5
6
  export * from "./image-error-placeholder";
6
7
  export * from "./material";
7
8
  export * from "./modals";
@@ -18,5 +18,5 @@ export declare class NiceScrollResetDirective implements OnInit, OnDestroy {
18
18
  */
19
19
  ngOnDestroy(): void;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceScrollResetDirective, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceScrollResetDirective, "[niceScrollReset]", ["niceScrollReset"], {}, {}, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceScrollResetDirective, "[niceScrollReset]", ["niceScrollReset"], {}, {}, never, never, false>;
22
22
  }
@@ -108,5 +108,5 @@ export declare class NiceScrollbarDirective implements OnChanges, OnInit, OnDest
108
108
  */
109
109
  private _destroy;
110
110
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceScrollbarDirective, never>;
111
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceScrollbarDirective, "[niceScrollbar]", ["niceScrollbar"], { "niceScrollbar": "niceScrollbar"; "niceScrollbarOptions": "niceScrollbarOptions"; }, {}, never>;
111
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceScrollbarDirective, "[niceScrollbar]", ["niceScrollbar"], { "niceScrollbar": "niceScrollbar"; "niceScrollbarOptions": "niceScrollbarOptions"; }, {}, never, never, false>;
112
112
  }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class NiceClickStopPropagationDirective {
3
3
  stopClick(event: Event): void;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<NiceClickStopPropagationDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<NiceClickStopPropagationDirective, "[niceClickStopPropagation]", never, {}, {}, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NiceClickStopPropagationDirective, "[niceClickStopPropagation]", never, {}, {}, never, never, false>;
6
6
  }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class NicePreventCloseWindowDirective {
3
3
  handleClose($event: any): void;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<NicePreventCloseWindowDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<NicePreventCloseWindowDirective, "[nicePreventCloseWindow]", never, {}, {}, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NicePreventCloseWindowDirective, "[nicePreventCloseWindow]", never, {}, {}, never, never, false>;
6
6
  }
@@ -6,5 +6,5 @@ export declare class BooleanPipe implements PipeTransform {
6
6
  constructor(translateService: TranslateService);
7
7
  transform(value: any): string;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<BooleanPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<BooleanPipe, "boolean">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<BooleanPipe, "boolean", false>;
10
10
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class CapitalizeFirstLetterPipe implements PipeTransform {
4
4
  transform(value: string): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizeFirstLetterPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizeFirstLetterPipe, "capitalizeFirstLetter">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizeFirstLetterPipe, "capitalizeFirstLetter", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class CeilPipe implements PipeTransform {
4
4
  transform(input: number): number;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<CeilPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<CeilPipe, "ceil">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CeilPipe, "ceil", false>;
7
7
  }
@@ -6,5 +6,5 @@ export declare class EntriesPipe implements PipeTransform {
6
6
  value: any;
7
7
  }[];
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<EntriesPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<EntriesPipe, "entries">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<EntriesPipe, "entries", false>;
10
10
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class FindByKeyPipe implements PipeTransform {
4
4
  transform<ArrayType, ValueType>(array: ArrayType[], value: ValueType, key?: string): ArrayType;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<FindByKeyPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<FindByKeyPipe, "findByKey">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FindByKeyPipe, "findByKey", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class FirstLetterPipe implements PipeTransform {
4
4
  transform(value: string): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<FirstLetterPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<FirstLetterPipe, "firstLetter">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FirstLetterPipe, "firstLetter", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class FloorPipe implements PipeTransform {
4
4
  transform(input: number): number;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<FloorPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<FloorPipe, "floor">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<FloorPipe, "floor", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class JoinPipe implements PipeTransform {
4
4
  transform(array: any[], separator?: string, prop?: string): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<JoinPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<JoinPipe, "join">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<JoinPipe, "join", false>;
7
7
  }
@@ -11,5 +11,5 @@ export declare class LinkPipe implements PipeTransform {
11
11
  postalCode: string;
12
12
  }, type: "direction"): string;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkPipe, never>;
14
- static ɵpipe: i0.ɵɵPipeDeclaration<LinkPipe, "link">;
14
+ static ɵpipe: i0.ɵɵPipeDeclaration<LinkPipe, "link", false>;
15
15
  }
@@ -6,5 +6,5 @@ export declare class LocalizedBooleanPipe implements PipeTransform {
6
6
  constructor(translateService: TranslateService);
7
7
  transform(value: boolean): any;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedBooleanPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedBooleanPipe, "localizedBoolean">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedBooleanPipe, "localizedBoolean", false>;
10
10
  }
@@ -6,5 +6,5 @@ export declare class LocalizedCurrencyPipe extends CurrencyPipe implements PipeT
6
6
  private readonly translateService;
7
7
  constructor(translateService: TranslateService);
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedCurrencyPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedCurrencyPipe, "localizedCurrency">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedCurrencyPipe, "localizedCurrency", false>;
10
10
  }
@@ -6,5 +6,5 @@ export declare class LocalizedDateOnlyPipe implements PipeTransform {
6
6
  constructor(translateService: TranslateService);
7
7
  transform(value: any, pattern?: string, fallbackWithNull?: boolean): string;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedDateOnlyPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedDateOnlyPipe, "localizedDateOnly">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedDateOnlyPipe, "localizedDateOnly", false>;
10
10
  }
@@ -7,5 +7,5 @@ export declare class LocalizedDatePipe implements PipeTransform {
7
7
  transform(value: any, pattern?: string, fallbackWithNull?: boolean, timeZone?: string): string;
8
8
  private getMediumDateWithoutYearPattern;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedDatePipe, never>;
10
- static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedDatePipe, "localizedDate">;
10
+ static ɵpipe: i0.ɵɵPipeDeclaration<LocalizedDatePipe, "localizedDate", false>;
11
11
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class MinutesToTimePipe implements PipeTransform {
4
4
  transform(totalMinutes: number, separator?: string): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<MinutesToTimePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<MinutesToTimePipe, "minutesToTime">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<MinutesToTimePipe, "minutesToTime", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class NumberToOrdinalIndicatorPipe implements PipeTransform {
4
4
  transform(value: number): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<NumberToOrdinalIndicatorPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<NumberToOrdinalIndicatorPipe, "numberToOrdinalIndicator">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<NumberToOrdinalIndicatorPipe, "numberToOrdinalIndicator", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class PadPipe implements PipeTransform {
4
4
  transform(value: number | string, length: number, direction?: "start" | "end", maxLength?: number, fillString?: string): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<PadPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<PadPipe, "pad">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<PadPipe, "pad", false>;
7
7
  }
@@ -6,5 +6,5 @@ export declare class PhonePipe implements PipeTransform {
6
6
  constructor(maskApplierService: MaskApplierService);
7
7
  transform(rawPhoneNumber: string, extension?: string): string;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<PhonePipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<PhonePipe, "phone">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<PhonePipe, "phone", false>;
10
10
  }
@@ -6,5 +6,5 @@ export declare class PostalCodePipe implements PipeTransform {
6
6
  constructor(maskApplierService: MaskApplierService);
7
7
  transform(postalCode: string): string;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<PostalCodePipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<PostalCodePipe, "postalCode">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<PostalCodePipe, "postalCode", false>;
10
10
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class RangePipe implements PipeTransform {
4
4
  transform(value: number): number[];
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<RangePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<RangePipe, "range">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<RangePipe, "range", false>;
7
7
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class RoundPipe implements PipeTransform {
4
4
  transform(input: number): number;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
7
7
  }
@@ -6,5 +6,5 @@ export declare class SanitizeBypassPipe implements PipeTransform {
6
6
  constructor(sanitizer: DomSanitizer);
7
7
  transform(value: any, bypass: "html" | "style"): any;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeBypassPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeBypassPipe, "sanitizeBypass">;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeBypassPipe, "sanitizeBypass", false>;
10
10
  }
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
3
3
  export declare class SecondsToTimePipe implements PipeTransform {
4
4
  transform(value: number, separator?: string): string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<SecondsToTimePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<SecondsToTimePipe, "secondsToTime">;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SecondsToTimePipe, "secondsToTime", false>;
7
7
  }