@datarailsshared/datarailsshared 1.4.202 → 1.4.203-rocket

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 (358) hide show
  1. package/_datarailsshared.styles.css +4 -4
  2. package/assets/styles/_styles.scss +2 -2
  3. package/datarailsshared-datarailsshared-1.4.203-rocket.tgz +0 -0
  4. package/esm2022/datarailsshared-datarailsshared.mjs +5 -0
  5. package/esm2022/lib/date-tags/any-tag.component.mjs +44 -0
  6. package/esm2022/lib/date-tags/date-tag.component.mjs +47 -0
  7. package/esm2022/lib/date-tags/date-tag.module.mjs +66 -0
  8. package/esm2022/lib/date-tags/day-tag/day-tag.component.mjs +82 -0
  9. package/esm2022/lib/date-tags/forecast-tag/forecast-tag.component.mjs +159 -0
  10. package/esm2022/lib/date-tags/month-tag/month-tag.component.mjs +87 -0
  11. package/esm2022/lib/date-tags/quarter-tag/quarter-tag.component.mjs +106 -0
  12. package/esm2022/lib/date-tags/week-tag/week-tag.component.mjs +89 -0
  13. package/esm2022/lib/date-tags/year-tag/year-tag.component.mjs +83 -0
  14. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +92 -0
  15. package/esm2022/lib/directives/click-outside/click-outside.module.mjs +18 -0
  16. package/esm2022/lib/dr-accordion/accordion-item-body.component.mjs +58 -0
  17. package/esm2022/lib/dr-accordion/accordion-item-header.component.mjs +108 -0
  18. package/esm2022/lib/dr-accordion/accordion-item.component.mjs +138 -0
  19. package/esm2022/lib/dr-accordion/accordion.component.mjs +42 -0
  20. package/esm2022/lib/dr-accordion/accordion.module.mjs +34 -0
  21. package/esm2022/lib/dr-avatar/dr-avatar.component.mjs +48 -0
  22. package/esm2022/lib/dr-avatar/dr-avatar.module.mjs +37 -0
  23. package/esm2022/lib/dr-avatar/dr-avatar.pipe.mjs +20 -0
  24. package/esm2022/lib/dr-badge-status/dr-badge-status.component.mjs +27 -0
  25. package/esm2022/lib/dr-badge-status/dr-badge-status.module.mjs +27 -0
  26. package/esm2022/lib/dr-chat/chat.component.mjs +138 -0
  27. package/esm2022/lib/dr-chat/chat.module.mjs +68 -0
  28. package/esm2022/lib/dr-chat/dr-chat-form/chat-form.component.mjs +168 -0
  29. package/esm2022/lib/dr-chat/dr-chat-message/chat-message.component.mjs +89 -0
  30. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive.mjs +47 -0
  31. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service.mjs +26 -0
  32. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component.mjs +49 -0
  33. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component.mjs +17 -0
  34. package/esm2022/lib/dr-chat/dr-chat-suggestions/chat-suggestions.component.mjs +88 -0
  35. package/esm2022/lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component.mjs +13 -0
  36. package/esm2022/lib/dr-details-list/dr-details-list.component.mjs +79 -0
  37. package/esm2022/lib/dr-details-list/dr-details-list.module.mjs +21 -0
  38. package/esm2022/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.mjs +76 -0
  39. package/esm2022/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.mjs +97 -0
  40. package/esm2022/lib/dr-dialog/dialog.module.mjs +51 -0
  41. package/esm2022/lib/dr-dialog/interfaces/dialog-data.mjs +25 -0
  42. package/esm2022/lib/dr-dialog/services/dialog.service.mjs +77 -0
  43. package/esm2022/lib/dr-dropdown/dr-dropdown-item-show.pipe.mjs +16 -0
  44. package/esm2022/lib/dr-dropdown/dr-dropdown-position.directive.mjs +104 -0
  45. package/esm2022/lib/dr-dropdown/dr-dropdown.component.mjs +116 -0
  46. package/esm2022/lib/dr-dropdown/dr-dropdown.directive.mjs +117 -0
  47. package/esm2022/lib/dr-dropdown/dr-dropdown.module.mjs +49 -0
  48. package/esm2022/lib/dr-dropdown/dr-dropdown.service.mjs +25 -0
  49. package/esm2022/lib/dr-dynamic-tag/dr-dynamic-tag.component.mjs +112 -0
  50. package/esm2022/lib/dr-dynamic-tag/dr-dynamic-tag.module.mjs +28 -0
  51. package/esm2022/lib/dr-error/dr-error.component.mjs +67 -0
  52. package/esm2022/lib/dr-error/dr-error.module.mjs +31 -0
  53. package/esm2022/lib/dr-inputs/button/button.component.mjs +66 -0
  54. package/esm2022/lib/dr-inputs/checkbox/checkbox.component.mjs +65 -0
  55. package/esm2022/lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive.mjs +64 -0
  56. package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.mjs +226 -0
  57. package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.mjs +190 -0
  58. package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.mjs +186 -0
  59. package/esm2022/lib/dr-inputs/date-pickers/dr-show-timeframe.pipe.mjs +16 -0
  60. package/esm2022/lib/dr-inputs/date-pickers/services/dr-date-picker.service.mjs +195 -0
  61. package/esm2022/lib/dr-inputs/dr-input/dr-input.component.mjs +218 -0
  62. package/esm2022/lib/dr-inputs/dr-inputs.module.mjs +108 -0
  63. package/esm2022/lib/dr-inputs/dr-model-debounce-change.directive.mjs +31 -0
  64. package/esm2022/lib/dr-inputs/dr-select/dr-select.component.mjs +159 -0
  65. package/esm2022/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.mjs +79 -0
  66. package/esm2022/lib/dr-inputs/dr-toggle/dr-toggle.component.mjs +72 -0
  67. package/esm2022/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.mjs +66 -0
  68. package/esm2022/lib/dr-inputs/radio-button/radio-button.component.mjs +78 -0
  69. package/esm2022/lib/dr-inputs/radio-button/radio-group.component.mjs +173 -0
  70. package/esm2022/lib/dr-layout/dr-layout-body.component.mjs +16 -0
  71. package/esm2022/lib/dr-layout/dr-layout-header.component.mjs +24 -0
  72. package/esm2022/lib/dr-layout/dr-layout.component.mjs +13 -0
  73. package/esm2022/lib/dr-layout/dr-layout.module.mjs +29 -0
  74. package/esm2022/lib/dr-popover/dr-popover.component.mjs +126 -0
  75. package/esm2022/lib/dr-popover/dr-popover.directive.mjs +110 -0
  76. package/esm2022/lib/dr-popover/dr-popover.module.mjs +30 -0
  77. package/esm2022/lib/dr-popover/dr-popover.service.mjs +107 -0
  78. package/esm2022/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.mjs +105 -0
  79. package/esm2022/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.mjs +83 -0
  80. package/esm2022/lib/dr-scenario/consts/scenario-tags-config.mjs +81 -0
  81. package/esm2022/lib/dr-scenario/dr-scenario.module.mjs +41 -0
  82. package/esm2022/lib/dr-scenario/services/scenario.service.mjs +165 -0
  83. package/esm2022/lib/dr-spinner/dr-spinner.component.mjs +17 -0
  84. package/esm2022/lib/dr-spinner/dr-spinner.directive.mjs +59 -0
  85. package/esm2022/lib/dr-spinner/dr-spinner.module.mjs +23 -0
  86. package/esm2022/lib/dr-tabs/dr-tab.component.mjs +37 -0
  87. package/esm2022/lib/dr-tabs/dr-tabs.component.mjs +47 -0
  88. package/esm2022/lib/dr-tabs/dr-tabs.module.mjs +49 -0
  89. package/esm2022/lib/dr-tags/dr-tag.component.mjs +188 -0
  90. package/esm2022/lib/dr-tags/dr-tag.module.mjs +35 -0
  91. package/esm2022/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.mjs +18 -0
  92. package/esm2022/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.mjs +16 -0
  93. package/esm2022/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.mjs +18 -0
  94. package/esm2022/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.mjs +19 -0
  95. package/esm2022/lib/dr-tooltip/dr-tooltip.component.mjs +48 -0
  96. package/esm2022/lib/dr-tooltip/dr-tooltip.directive.mjs +156 -0
  97. package/esm2022/lib/dr-tooltip/dr-tooltip.module.mjs +48 -0
  98. package/esm2022/lib/dr-treeview/components/treeview/treeview.component.mjs +215 -0
  99. package/esm2022/lib/dr-treeview/components/treeview-item/treeview-item.component.mjs +60 -0
  100. package/esm2022/lib/dr-treeview/dr-tree-view.module.mjs +48 -0
  101. package/esm2022/lib/dr-treeview/helpers/treeview-event-parser.mjs +106 -0
  102. package/esm2022/lib/dr-treeview/models/treeview-config.mjs +25 -0
  103. package/esm2022/lib/dr-treeview/models/treeview-i18n.mjs +47 -0
  104. package/esm2022/lib/dr-treeview/pipes/treeview.pipe.mjs +21 -0
  105. package/esm2022/lib/list-tags/list-tag.component.mjs +42 -0
  106. package/esm2022/lib/list-tags/list-tag.module.mjs +34 -0
  107. package/esm2022/lib/models/chat.mjs +36 -0
  108. package/{esm2015/lib/models/datePicker.js → esm2022/lib/models/datePicker.mjs} +1 -1
  109. package/esm2022/lib/models/popover.mjs +27 -0
  110. package/esm2022/lib/stepper/stepper.component.mjs +63 -0
  111. package/esm2022/lib/stepper/stepper.module.mjs +24 -0
  112. package/esm2022/lib/utils/dr-shared-utils.mjs +47 -0
  113. package/esm2022/public-api.mjs +120 -0
  114. package/fesm2022/datarailsshared-datarailsshared.mjs +7551 -0
  115. package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -0
  116. package/index.d.ts +5 -0
  117. package/lib/date-tags/any-tag.component.d.ts +20 -0
  118. package/lib/date-tags/date-tag.component.d.ts +4 -16
  119. package/lib/date-tags/date-tag.module.d.ts +19 -2
  120. package/lib/date-tags/day-tag/day-tag.component.d.ts +4 -1
  121. package/lib/date-tags/forecast-tag/forecast-tag.component.d.ts +5 -2
  122. package/lib/date-tags/month-tag/month-tag.component.d.ts +4 -1
  123. package/lib/date-tags/quarter-tag/quarter-tag.component.d.ts +4 -1
  124. package/lib/date-tags/week-tag/week-tag.component.d.ts +4 -1
  125. package/lib/date-tags/year-tag/year-tag.component.d.ts +4 -1
  126. package/lib/directives/click-outside/click-outside.directive.d.ts +23 -0
  127. package/lib/directives/click-outside/click-outside.module.d.ts +8 -0
  128. package/lib/dr-accordion/accordion-item-body.component.d.ts +3 -0
  129. package/lib/dr-accordion/accordion-item-header.component.d.ts +3 -0
  130. package/lib/dr-accordion/accordion-item.component.d.ts +3 -0
  131. package/lib/dr-accordion/accordion.component.d.ts +3 -0
  132. package/lib/dr-accordion/accordion.module.d.ts +9 -0
  133. package/lib/dr-avatar/dr-avatar.component.d.ts +3 -0
  134. package/lib/dr-avatar/dr-avatar.module.d.ts +9 -0
  135. package/lib/dr-avatar/dr-avatar.pipe.d.ts +3 -0
  136. package/lib/dr-badge-status/dr-badge-status.component.d.ts +3 -0
  137. package/lib/dr-badge-status/dr-badge-status.module.d.ts +7 -0
  138. package/lib/dr-chat/chat.component.d.ts +3 -0
  139. package/lib/dr-chat/chat.module.d.ts +17 -0
  140. package/lib/dr-chat/dr-chat-form/chat-form.component.d.ts +3 -0
  141. package/lib/dr-chat/dr-chat-message/chat-message.component.d.ts +3 -0
  142. package/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive.d.ts +3 -0
  143. package/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service.d.ts +3 -0
  144. package/lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component.d.ts +3 -0
  145. package/lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component.d.ts +3 -0
  146. package/lib/dr-chat/dr-chat-suggestions/chat-suggestions.component.d.ts +3 -0
  147. package/lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component.d.ts +3 -0
  148. package/lib/dr-details-list/dr-details-list.component.d.ts +3 -0
  149. package/lib/dr-details-list/dr-details-list.module.d.ts +6 -0
  150. package/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.d.ts +4 -1
  151. package/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.d.ts +5 -2
  152. package/lib/dr-dialog/dialog.module.d.ts +12 -0
  153. package/lib/dr-dialog/interfaces/dialog-data.d.ts +7 -7
  154. package/lib/dr-dialog/services/dialog.service.d.ts +4 -1
  155. package/lib/dr-dropdown/dr-dropdown-item-show.pipe.d.ts +3 -0
  156. package/lib/dr-dropdown/dr-dropdown-position.directive.d.ts +3 -0
  157. package/lib/dr-dropdown/dr-dropdown.component.d.ts +3 -0
  158. package/lib/dr-dropdown/dr-dropdown.directive.d.ts +3 -0
  159. package/lib/dr-dropdown/dr-dropdown.module.d.ts +10 -0
  160. package/lib/dr-dropdown/dr-dropdown.service.d.ts +3 -0
  161. package/lib/dr-dynamic-tag/dr-dynamic-tag.component.d.ts +3 -0
  162. package/lib/dr-dynamic-tag/dr-dynamic-tag.module.d.ts +8 -0
  163. package/lib/dr-error/dr-error.component.d.ts +3 -0
  164. package/lib/dr-error/dr-error.module.d.ts +8 -0
  165. package/lib/dr-inputs/button/button.component.d.ts +4 -1
  166. package/lib/dr-inputs/checkbox/checkbox.component.d.ts +3 -0
  167. package/lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive.d.ts +3 -0
  168. package/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.d.ts +3 -0
  169. package/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.d.ts +3 -0
  170. package/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.d.ts +4 -8
  171. package/lib/dr-inputs/date-pickers/dr-show-timeframe.pipe.d.ts +4 -2
  172. package/lib/dr-inputs/date-pickers/services/dr-date-picker.service.d.ts +3 -0
  173. package/lib/dr-inputs/dr-input/dr-input.component.d.ts +3 -0
  174. package/lib/dr-inputs/dr-inputs.module.d.ts +25 -0
  175. package/lib/dr-inputs/dr-model-debounce-change.directive.d.ts +3 -0
  176. package/lib/dr-inputs/dr-select/dr-select.component.d.ts +3 -0
  177. package/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.d.ts +3 -0
  178. package/lib/dr-inputs/dr-toggle/dr-toggle.component.d.ts +3 -0
  179. package/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.d.ts +3 -0
  180. package/lib/dr-inputs/radio-button/radio-button.component.d.ts +3 -0
  181. package/lib/dr-inputs/radio-button/radio-group.component.d.ts +3 -0
  182. package/lib/dr-layout/dr-layout-body.component.d.ts +3 -0
  183. package/lib/dr-layout/dr-layout-header.component.d.ts +3 -0
  184. package/lib/dr-layout/dr-layout.component.d.ts +3 -0
  185. package/lib/dr-layout/dr-layout.module.d.ts +8 -0
  186. package/lib/dr-popover/dr-popover.component.d.ts +8 -4
  187. package/lib/dr-popover/dr-popover.directive.d.ts +3 -0
  188. package/lib/dr-popover/dr-popover.module.d.ts +7 -0
  189. package/lib/dr-popover/dr-popover.service.d.ts +3 -0
  190. package/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.d.ts +3 -0
  191. package/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.d.ts +3 -0
  192. package/lib/dr-scenario/dr-scenario.module.d.ts +10 -0
  193. package/lib/dr-scenario/interfaces/scenario.d.ts +3 -3
  194. package/lib/dr-scenario/services/scenario.service.d.ts +3 -0
  195. package/lib/dr-spinner/dr-spinner.component.d.ts +3 -0
  196. package/lib/dr-spinner/dr-spinner.directive.d.ts +3 -0
  197. package/lib/dr-spinner/dr-spinner.module.d.ts +7 -0
  198. package/lib/dr-tabs/dr-tab.component.d.ts +3 -0
  199. package/lib/dr-tabs/dr-tabs.component.d.ts +3 -0
  200. package/lib/dr-tabs/dr-tabs.module.d.ts +11 -0
  201. package/lib/dr-tags/dr-tag.component.d.ts +3 -0
  202. package/lib/dr-tags/dr-tag.module.d.ts +9 -0
  203. package/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.d.ts +3 -0
  204. package/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.d.ts +3 -0
  205. package/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.d.ts +3 -0
  206. package/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.d.ts +3 -0
  207. package/lib/dr-tooltip/dr-tooltip.component.d.ts +4 -1
  208. package/lib/dr-tooltip/dr-tooltip.directive.d.ts +3 -0
  209. package/lib/dr-tooltip/dr-tooltip.module.d.ts +11 -0
  210. package/lib/dr-tooltip/interfaces/tooltip-component-context.d.ts +1 -1
  211. package/lib/dr-treeview/components/treeview/treeview.component.d.ts +3 -0
  212. package/lib/dr-treeview/components/treeview-item/treeview-item.component.d.ts +3 -0
  213. package/lib/dr-treeview/dr-tree-view.module.d.ts +9 -0
  214. package/lib/dr-treeview/helpers/treeview-event-parser.d.ts +9 -0
  215. package/lib/dr-treeview/models/treeview-config.d.ts +3 -0
  216. package/lib/dr-treeview/models/treeview-i18n.d.ts +5 -0
  217. package/lib/dr-treeview/pipes/treeview.pipe.d.ts +3 -0
  218. package/lib/list-tags/list-tag.component.d.ts +3 -0
  219. package/lib/list-tags/list-tag.module.d.ts +8 -0
  220. package/lib/models/chat.d.ts +2 -2
  221. package/lib/models/datePicker.d.ts +10 -3
  222. package/lib/models/dropdown.d.ts +1 -1
  223. package/lib/models/popover.d.ts +1 -1
  224. package/lib/models/serverTags.d.ts +4 -4
  225. package/lib/stepper/interfaces/stepper.d.ts +1 -1
  226. package/lib/stepper/stepper.component.d.ts +3 -0
  227. package/lib/stepper/stepper.module.d.ts +7 -0
  228. package/package.json +27 -15
  229. package/public-api.d.ts +27 -0
  230. package/bundles/datarailsshared-datarailsshared.umd.js +0 -8041
  231. package/bundles/datarailsshared-datarailsshared.umd.js.map +0 -1
  232. package/datarailsshared-datarailsshared-1.4.202.tgz +0 -0
  233. package/datarailsshared-datarailsshared.d.ts +0 -34
  234. package/datarailsshared-datarailsshared.metadata.json +0 -1
  235. package/esm2015/datarailsshared-datarailsshared.js +0 -35
  236. package/esm2015/lib/date-tags/date-tag.component.js +0 -73
  237. package/esm2015/lib/date-tags/date-tag.module.js +0 -36
  238. package/esm2015/lib/date-tags/day-tag/day-tag.component.js +0 -77
  239. package/esm2015/lib/date-tags/forecast-tag/forecast-tag.component.js +0 -153
  240. package/esm2015/lib/date-tags/month-tag/month-tag.component.js +0 -80
  241. package/esm2015/lib/date-tags/quarter-tag/quarter-tag.component.js +0 -105
  242. package/esm2015/lib/date-tags/week-tag/week-tag.component.js +0 -84
  243. package/esm2015/lib/date-tags/year-tag/year-tag.component.js +0 -78
  244. package/esm2015/lib/dr-accordion/accordion-item-body.component.js +0 -55
  245. package/esm2015/lib/dr-accordion/accordion-item-header.component.js +0 -77
  246. package/esm2015/lib/dr-accordion/accordion-item.component.js +0 -123
  247. package/esm2015/lib/dr-accordion/accordion.component.js +0 -43
  248. package/esm2015/lib/dr-accordion/accordion.module.js +0 -23
  249. package/esm2015/lib/dr-avatar/dr-avatar.component.js +0 -44
  250. package/esm2015/lib/dr-avatar/dr-avatar.module.js +0 -26
  251. package/esm2015/lib/dr-avatar/dr-avatar.pipe.js +0 -16
  252. package/esm2015/lib/dr-badge-status/dr-badge-status.component.js +0 -25
  253. package/esm2015/lib/dr-badge-status/dr-badge-status.module.js +0 -20
  254. package/esm2015/lib/dr-chat/chat.component.js +0 -119
  255. package/esm2015/lib/dr-chat/chat.module.js +0 -41
  256. package/esm2015/lib/dr-chat/dr-chat-form/chat-form.component.js +0 -155
  257. package/esm2015/lib/dr-chat/dr-chat-message/chat-message.component.js +0 -71
  258. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive.js +0 -49
  259. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service.js +0 -23
  260. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component.js +0 -47
  261. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component.js +0 -18
  262. package/esm2015/lib/dr-chat/dr-chat-suggestions/chat-suggestions.component.js +0 -87
  263. package/esm2015/lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component.js +0 -15
  264. package/esm2015/lib/dr-details-list/dr-details-list.component.js +0 -65
  265. package/esm2015/lib/dr-details-list/dr-details-list.module.js +0 -16
  266. package/esm2015/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.js +0 -70
  267. package/esm2015/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.js +0 -92
  268. package/esm2015/lib/dr-dialog/dialog.module.js +0 -34
  269. package/esm2015/lib/dr-dialog/interfaces/dialog-data.js +0 -25
  270. package/esm2015/lib/dr-dialog/services/dialog.service.js +0 -78
  271. package/esm2015/lib/dr-dropdown/dr-dropdown-item-show.pipe.js +0 -12
  272. package/esm2015/lib/dr-dropdown/dr-dropdown-position.directive.js +0 -104
  273. package/esm2015/lib/dr-dropdown/dr-dropdown.component.js +0 -114
  274. package/esm2015/lib/dr-dropdown/dr-dropdown.directive.js +0 -104
  275. package/esm2015/lib/dr-dropdown/dr-dropdown.module.js +0 -34
  276. package/esm2015/lib/dr-dropdown/dr-dropdown.service.js +0 -24
  277. package/esm2015/lib/dr-dynamic-tag/dr-dynamic-tag.component.js +0 -103
  278. package/esm2015/lib/dr-dynamic-tag/dr-dynamic-tag.module.js +0 -19
  279. package/esm2015/lib/dr-error/dr-error.component.js +0 -64
  280. package/esm2015/lib/dr-error/dr-error.module.js +0 -22
  281. package/esm2015/lib/dr-inputs/button/button.component.js +0 -39
  282. package/esm2015/lib/dr-inputs/checkbox/checkbox.component.js +0 -65
  283. package/esm2015/lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive.js +0 -47
  284. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.js +0 -216
  285. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.js +0 -180
  286. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.js +0 -183
  287. package/esm2015/lib/dr-inputs/date-pickers/dr-show-timeframe.pipe.js +0 -12
  288. package/esm2015/lib/dr-inputs/date-pickers/services/dr-date-picker.service.js +0 -194
  289. package/esm2015/lib/dr-inputs/dr-input/dr-input.component.js +0 -194
  290. package/esm2015/lib/dr-inputs/dr-inputs.module.js +0 -66
  291. package/esm2015/lib/dr-inputs/dr-model-debounce-change.directive.js +0 -29
  292. package/esm2015/lib/dr-inputs/dr-select/dr-select.component.js +0 -119
  293. package/esm2015/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.js +0 -74
  294. package/esm2015/lib/dr-inputs/dr-toggle/dr-toggle.component.js +0 -68
  295. package/esm2015/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.js +0 -63
  296. package/esm2015/lib/dr-inputs/radio-button/radio-button.component.js +0 -73
  297. package/esm2015/lib/dr-inputs/radio-button/radio-group.component.js +0 -157
  298. package/esm2015/lib/dr-layout/dr-layout-body.component.js +0 -13
  299. package/esm2015/lib/dr-layout/dr-layout-header.component.js +0 -17
  300. package/esm2015/lib/dr-layout/dr-layout.component.js +0 -14
  301. package/esm2015/lib/dr-layout/dr-layout.module.js +0 -20
  302. package/esm2015/lib/dr-popover/dr-popover.component.js +0 -106
  303. package/esm2015/lib/dr-popover/dr-popover.directive.js +0 -84
  304. package/esm2015/lib/dr-popover/dr-popover.module.js +0 -23
  305. package/esm2015/lib/dr-popover/dr-popover.service.js +0 -106
  306. package/esm2015/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.js +0 -102
  307. package/esm2015/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.js +0 -74
  308. package/esm2015/lib/dr-scenario/consts/scenario-tags-config.js +0 -73
  309. package/esm2015/lib/dr-scenario/dr-scenario.module.js +0 -28
  310. package/esm2015/lib/dr-scenario/services/scenario.service.js +0 -167
  311. package/esm2015/lib/dr-spinner/dr-spinner.component.js +0 -18
  312. package/esm2015/lib/dr-spinner/dr-spinner.directive.js +0 -56
  313. package/esm2015/lib/dr-spinner/dr-spinner.module.js +0 -18
  314. package/esm2015/lib/dr-tabs/dr-tab.component.js +0 -26
  315. package/esm2015/lib/dr-tabs/dr-tabs.component.js +0 -35
  316. package/esm2015/lib/dr-tabs/dr-tabs.module.js +0 -32
  317. package/esm2015/lib/dr-tags/dr-tag.component.js +0 -177
  318. package/esm2015/lib/dr-tags/dr-tag.module.js +0 -24
  319. package/esm2015/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.js +0 -19
  320. package/esm2015/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.js +0 -18
  321. package/esm2015/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.js +0 -20
  322. package/esm2015/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.js +0 -34
  323. package/esm2015/lib/dr-tooltip/dr-tooltip.component.js +0 -40
  324. package/esm2015/lib/dr-tooltip/dr-tooltip.directive.js +0 -147
  325. package/esm2015/lib/dr-tooltip/dr-tooltip.module.js +0 -35
  326. package/esm2015/lib/dr-treeview/components/treeview/treeview.component.js +0 -210
  327. package/esm2015/lib/dr-treeview/components/treeview-item/treeview-item.component.js +0 -58
  328. package/esm2015/lib/dr-treeview/dr-tree-view.module.js +0 -38
  329. package/esm2015/lib/dr-treeview/helpers/treeview-event-parser.js +0 -97
  330. package/esm2015/lib/dr-treeview/models/treeview-config.js +0 -22
  331. package/esm2015/lib/dr-treeview/models/treeview-i18n.js +0 -42
  332. package/esm2015/lib/dr-treeview/pipes/treeview.pipe.js +0 -17
  333. package/esm2015/lib/list-tags/list-tag.component.js +0 -37
  334. package/esm2015/lib/list-tags/list-tag.module.js +0 -23
  335. package/esm2015/lib/models/chat.js +0 -36
  336. package/esm2015/lib/models/popover.js +0 -27
  337. package/esm2015/lib/stepper/stepper.component.js +0 -55
  338. package/esm2015/lib/stepper/stepper.module.js +0 -17
  339. package/esm2015/lib/utils/dr-shared-utils.js +0 -47
  340. package/esm2015/public-api.js +0 -93
  341. package/fesm2015/datarailsshared-datarailsshared.js +0 -6885
  342. package/fesm2015/datarailsshared-datarailsshared.js.map +0 -1
  343. /package/{esm2015/lib/dr-inputs/dr-toggle-button/toggle-button-mode.js → esm2022/lib/dr-inputs/dr-toggle-button/toggle-button-mode.mjs} +0 -0
  344. /package/{esm2015/lib/dr-popover/dr-popover-ref.js → esm2022/lib/dr-popover/dr-popover-ref.mjs} +0 -0
  345. /package/{esm2015/lib/dr-scenario/interfaces/scenario.js → esm2022/lib/dr-scenario/interfaces/scenario.mjs} +0 -0
  346. /package/{esm2015/lib/dr-tooltip/enums/tooltip-position.enum.js → esm2022/lib/dr-tooltip/enums/tooltip-position.enum.mjs} +0 -0
  347. /package/{esm2015/lib/dr-tooltip/interfaces/tooltip-component-context.js → esm2022/lib/dr-tooltip/interfaces/tooltip-component-context.mjs} +0 -0
  348. /package/{esm2015/lib/dr-treeview/helpers/treeview-helper.js → esm2022/lib/dr-treeview/helpers/treeview-helper.mjs} +0 -0
  349. /package/{esm2015/lib/dr-treeview/models/treeview-header-template-context.js → esm2022/lib/dr-treeview/models/treeview-header-template-context.mjs} +0 -0
  350. /package/{esm2015/lib/dr-treeview/models/treeview-item-template-context.js → esm2022/lib/dr-treeview/models/treeview-item-template-context.mjs} +0 -0
  351. /package/{esm2015/lib/dr-treeview/models/treeview-item.js → esm2022/lib/dr-treeview/models/treeview-item.mjs} +0 -0
  352. /package/{esm2015/lib/models/badgeStatus.js → esm2022/lib/models/badgeStatus.mjs} +0 -0
  353. /package/{esm2015/lib/models/constants.js → esm2022/lib/models/constants.mjs} +0 -0
  354. /package/{esm2015/lib/models/dropdown.js → esm2022/lib/models/dropdown.mjs} +0 -0
  355. /package/{esm2015/lib/models/serverTags.js → esm2022/lib/models/serverTags.mjs} +0 -0
  356. /package/{esm2015/lib/models/spinnerOptions.js → esm2022/lib/models/spinnerOptions.mjs} +0 -0
  357. /package/{esm2015/lib/models/validationError.js → esm2022/lib/models/validationError.mjs} +0 -0
  358. /package/{esm2015/lib/stepper/interfaces/stepper.js → esm2022/lib/stepper/interfaces/stepper.mjs} +0 -0
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@datarailsshared/datarailsshared" />
5
+ export * from './public-api';
@@ -0,0 +1,20 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { IDateTag } from '../models/serverTags';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AnyTagComponent implements OnInit {
5
+ dateChange: EventEmitter<IDateTag>;
6
+ name: string | undefined;
7
+ defaultValue: number | undefined;
8
+ disabled: boolean;
9
+ dateObj: {
10
+ date: any;
11
+ };
12
+ constructor();
13
+ ngOnInit(): void;
14
+ initDate(): void;
15
+ initName(): void;
16
+ changeInputHandler(event: Event): void;
17
+ chosenTagHandler(value: any): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AnyTagComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<AnyTagComponent, "any-tag", never, { "name": { "alias": "name"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, false, never>;
20
+ }
@@ -1,5 +1,6 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
1
+ import { EventEmitter } from '@angular/core';
2
2
  import { IDateTag } from '../models/serverTags';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DateTagComponent {
4
5
  name: string | undefined;
5
6
  lockedDate: any[];
@@ -10,19 +11,6 @@ export declare class DateTagComponent {
10
11
  fiscalYearBack?: boolean;
11
12
  selectedDate: EventEmitter<IDateTag>;
12
13
  changeSelectedDate(date: any): void;
13
- }
14
- export declare class AnyTagComponent implements OnInit {
15
- dateChange: EventEmitter<IDateTag>;
16
- name: string | undefined;
17
- defaultValue: number | undefined;
18
- disabled: boolean;
19
- dateObj: {
20
- date: any;
21
- };
22
- constructor();
23
- ngOnInit(): void;
24
- initDate(): void;
25
- initName(): void;
26
- changeInputHandler(event: Event): void;
27
- chosenTagHandler(value: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateTagComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateTagComponent, "date-tag", never, { "name": { "alias": "name"; "required": false; }; "lockedDate": { "alias": "lockedDate"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "dateTypeChosen": { "alias": "dateTypeChosen"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; }, { "selectedDate": "selectedDate"; }, never, never, false, never>;
28
16
  }
@@ -1,4 +1,21 @@
1
- import { AnyTagComponent, DateTagComponent } from './date-tag.component';
2
- export declare const components: (typeof DateTagComponent | typeof AnyTagComponent)[];
1
+ import { AnyTagComponent } from './any-tag.component';
2
+ import { DateTagComponent } from './date-tag.component';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./date-tag.component";
5
+ import * as i2 from "./day-tag/day-tag.component";
6
+ import * as i3 from "./week-tag/week-tag.component";
7
+ import * as i4 from "./month-tag/month-tag.component";
8
+ import * as i5 from "./quarter-tag/quarter-tag.component";
9
+ import * as i6 from "./any-tag.component";
10
+ import * as i7 from "./year-tag/year-tag.component";
11
+ import * as i8 from "./forecast-tag/forecast-tag.component";
12
+ import * as i9 from "@angular/common";
13
+ import * as i10 from "@angular/forms";
14
+ import * as i11 from "../dr-inputs/dr-inputs.module";
15
+ import * as i12 from "@ng-select/ng-select";
16
+ export declare const components: (typeof AnyTagComponent | typeof DateTagComponent)[];
3
17
  export declare class DateTagModule {
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateTagModule, never>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateTagModule, [typeof i1.DateTagComponent, typeof i2.DayTagComponent, typeof i3.WeekTagComponent, typeof i4.MonthTagComponent, typeof i5.QuarterTagComponent, typeof i6.AnyTagComponent, typeof i7.YearTagComponent, typeof i8.ForecastTagComponent], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.DrInputsModule, typeof i12.NgSelectModule], [typeof i1.DateTagComponent, typeof i2.DayTagComponent, typeof i3.WeekTagComponent, typeof i4.MonthTagComponent, typeof i5.QuarterTagComponent, typeof i6.AnyTagComponent, typeof i7.YearTagComponent, typeof i8.ForecastTagComponent]>;
20
+ static ɵinj: i0.ɵɵInjectorDeclaration<DateTagModule>;
4
21
  }
@@ -1,4 +1,5 @@
1
- import { AnyTagComponent } from '../date-tag.component';
1
+ import { AnyTagComponent } from '../any-tag.component';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DayTagComponent extends AnyTagComponent {
3
4
  get isLocked(): boolean;
4
5
  lockedDate: any[];
@@ -8,4 +9,6 @@ export declare class DayTagComponent extends AnyTagComponent {
8
9
  initName(): void;
9
10
  chosenTagHandler(value: number): void;
10
11
  dateFilter(momentData: any): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DayTagComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<DayTagComponent, "day-tag", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, false, never>;
11
14
  }
@@ -1,6 +1,7 @@
1
- import { AnyTagComponent } from '../date-tag.component';
2
- import { MatSelectChange } from '@angular/material/select';
1
+ import { AnyTagComponent } from '../any-tag.component';
2
+ import { MatLegacySelectChange as MatSelectChange } from '@angular/material/legacy-select';
3
3
  import { MatButtonToggleChange } from '@angular/material/button-toggle';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ForecastTagComponent extends AnyTagComponent {
5
6
  fiscalYearStartsFrom?: number;
6
7
  fiscalYearBack?: boolean;
@@ -19,4 +20,6 @@ export declare class ForecastTagComponent extends AnyTagComponent {
19
20
  changeYearInputHandler(event: Event): void;
20
21
  chosenTagHandler(): void;
21
22
  dateFilter(date: any): boolean;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ForecastTagComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ForecastTagComponent, "forecast-tag", never, { "fiscalYearStartsFrom": { "alias": "fiscalYearStartsFrom"; "required": false; }; "fiscalYearBack": { "alias": "fiscalYearBack"; "required": false; }; "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, false, never>;
22
25
  }
@@ -1,4 +1,5 @@
1
- import { AnyTagComponent } from '../date-tag.component';
1
+ import { AnyTagComponent } from '../any-tag.component';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class MonthTagComponent extends AnyTagComponent {
3
4
  get isLocked(): boolean;
4
5
  lockedDate: any[];
@@ -8,4 +9,6 @@ export declare class MonthTagComponent extends AnyTagComponent {
8
9
  initName(): void;
9
10
  chosenTagHandler(value: number): void;
10
11
  dateFilter(date: any): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonthTagComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<MonthTagComponent, "month-tag", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, false, never>;
11
14
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { AnyTagComponent } from '../date-tag.component';
2
+ import { AnyTagComponent } from '../any-tag.component';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class QuarterTagComponent extends AnyTagComponent implements OnInit {
4
5
  get isLocked(): boolean;
5
6
  lockedDate: any[];
@@ -13,4 +14,6 @@ export declare class QuarterTagComponent extends AnyTagComponent implements OnIn
13
14
  private getQuarterLabel;
14
15
  private getUTCTimestamp;
15
16
  dateFilter(quarter: any): boolean;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<QuarterTagComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<QuarterTagComponent, "quarter-tag", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, false, never>;
16
19
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { AnyTagComponent } from '../date-tag.component';
2
+ import { AnyTagComponent } from '../any-tag.component';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class WeekTagComponent extends AnyTagComponent implements OnInit {
4
5
  get isLocked(): boolean;
5
6
  lockedDate: any[];
@@ -10,4 +11,6 @@ export declare class WeekTagComponent extends AnyTagComponent implements OnInit
10
11
  dateFilter(date: any): boolean;
11
12
  chosenTagHandler(value: number): void;
12
13
  private getWeekLabel;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<WeekTagComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<WeekTagComponent, "week-tag", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, false, never>;
13
16
  }
@@ -1,4 +1,5 @@
1
- import { AnyTagComponent } from '../date-tag.component';
1
+ import { AnyTagComponent } from '../any-tag.component';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class YearTagComponent extends AnyTagComponent {
3
4
  get isLocked(): boolean;
4
5
  lockedDate: any[];
@@ -8,4 +9,6 @@ export declare class YearTagComponent extends AnyTagComponent {
8
9
  initName(): void;
9
10
  chosenTagHandler(value: number): void;
10
11
  dateFilter(date: any): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<YearTagComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<YearTagComponent, "year-tag", never, { "lockedDate": { "alias": "lockedDate"; "required": false; }; }, {}, never, never, false, never>;
11
14
  }
@@ -0,0 +1,23 @@
1
+ import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ClickOutsideDirective implements OnInit, OnDestroy, OnChanges {
4
+ private _document;
5
+ private _el;
6
+ attachOutsideOnClick: boolean;
7
+ exclude: string;
8
+ clickOutside: EventEmitter<Event>;
9
+ private _nodesExcluded;
10
+ constructor(_document: any, _el: ElementRef);
11
+ ngOnInit(): void;
12
+ ngOnDestroy(): void;
13
+ ngOnChanges(changes: SimpleChanges): void;
14
+ private _init;
15
+ /** @internal */
16
+ private _initOnClickBody;
17
+ /** @internal */
18
+ private _onClickBody;
19
+ /** @internal */
20
+ private _shouldExclude;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "attachOutsideOnClick": { "alias": "attachOutsideOnClick"; "required": false; }; "exclude": { "alias": "exclude"; "required": false; }; }, { "clickOutside": "clickOutside"; }, never, never, false, never>;
23
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./click-outside.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class ClickOutsideModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ClickOutsideModule, [typeof i1.ClickOutsideDirective], [typeof i2.CommonModule], [typeof i1.ClickOutsideDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ClickOutsideModule>;
8
+ }
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { DrAccordionItemComponent } from './accordion-item.component';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DrAccordionItemBodyComponent implements OnInit, OnDestroy {
4
5
  private accordionItem;
5
6
  private cd;
@@ -8,4 +9,6 @@ export declare class DrAccordionItemBodyComponent implements OnInit, OnDestroy {
8
9
  get state(): string;
9
10
  ngOnInit(): void;
10
11
  ngOnDestroy(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAccordionItemBodyComponent, [{ host: true; }, null]>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrAccordionItemBodyComponent, "dr-accordion-item-body", never, {}, {}, never, ["*"], false, never>;
11
14
  }
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { DrAccordionItemComponent } from './accordion-item.component';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DrAccordionItemHeaderComponent implements OnInit, OnDestroy {
4
5
  private accordionItem;
5
6
  private cd;
@@ -13,4 +14,6 @@ export declare class DrAccordionItemHeaderComponent implements OnInit, OnDestroy
13
14
  constructor(accordionItem: DrAccordionItemComponent, cd: ChangeDetectorRef);
14
15
  ngOnInit(): void;
15
16
  ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAccordionItemHeaderComponent, [{ host: true; }, null]>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrAccordionItemHeaderComponent, "dr-accordion-item-header", never, {}, {}, never, ["dr-accordion-item-title", "dr-accordion-item-description", "*"], false, never>;
16
19
  }
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import { DrAccordionComponent } from './accordion.component';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class DrAccordionItemComponent implements OnInit, OnChanges, OnDestroy {
5
6
  private accordion;
6
7
  private cd;
@@ -52,4 +53,6 @@ export declare class DrAccordionItemComponent implements OnInit, OnChanges, OnDe
52
53
  ngOnChanges(changes: SimpleChanges): void;
53
54
  ngOnDestroy(): void;
54
55
  private invalidate;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAccordionItemComponent, [{ host: true; }, null]>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrAccordionItemComponent, "dr-accordion-item", never, { "collapsed": { "alias": "collapsed"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "collapsedChange": "collapsedChange"; }, never, ["dr-accordion-item-header", "dr-accordion-item-body"], false, never>;
55
58
  }
@@ -1,4 +1,5 @@
1
1
  import { Subject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DrAccordionComponent {
3
4
  static ngAcceptInputType_multi: any;
4
5
  openCloseItems: Subject<boolean>;
@@ -16,4 +17,6 @@ export declare class DrAccordionComponent {
16
17
  * Closes all enabled accordion items.
17
18
  */
18
19
  closeAll(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAccordionComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrAccordionComponent, "dr-accordion", never, { "multi": { "alias": "multi"; "required": false; }; }, {}, never, ["dr-accordion-item"], false, never>;
19
22
  }
@@ -1,2 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./accordion.component";
3
+ import * as i2 from "./accordion-item.component";
4
+ import * as i3 from "./accordion-item-header.component";
5
+ import * as i4 from "./accordion-item-body.component";
6
+ import * as i5 from "@angular/common";
1
7
  export declare class DrAccordionModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAccordionModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrAccordionModule, [typeof i1.DrAccordionComponent, typeof i2.DrAccordionItemComponent, typeof i3.DrAccordionItemHeaderComponent, typeof i4.DrAccordionItemBodyComponent], [typeof i5.CommonModule], [typeof i1.DrAccordionComponent, typeof i2.DrAccordionItemComponent, typeof i3.DrAccordionItemHeaderComponent, typeof i4.DrAccordionItemBodyComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrAccordionModule>;
2
11
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DrAvatarComponent {
3
4
  set users(users: any[] | any);
4
5
  warning: boolean;
@@ -8,4 +9,6 @@ export declare class DrAvatarComponent {
8
9
  constructor();
9
10
  getFirstUsers(): any[];
10
11
  getLastUsers(): any[];
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAvatarComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrAvatarComponent, "dr-avatar", never, { "users": { "alias": "users"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; "showUnassigned": { "alias": "showUnassigned"; "required": false; }; }, { "userClicked": "userClicked"; }, never, never, false, never>;
11
14
  }
@@ -1,2 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dr-avatar.component";
3
+ import * as i2 from "./dr-avatar.pipe";
4
+ import * as i3 from "@angular/material/legacy-tooltip";
5
+ import * as i4 from "../dr-tooltip/dr-tooltip.module";
6
+ import * as i5 from "@angular/common";
1
7
  export declare class DrAvatarModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAvatarModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrAvatarModule, [typeof i1.DrAvatarComponent, typeof i2.DrAvatarPipe], [typeof i3.MatLegacyTooltipModule, typeof i4.DrTooltipModule, typeof i5.CommonModule], [typeof i1.DrAvatarComponent, typeof i2.DrAvatarPipe]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrAvatarModule>;
2
11
  }
@@ -1,4 +1,7 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DrAvatarPipe implements PipeTransform {
3
4
  transform(item: any, type?: string): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrAvatarPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<DrAvatarPipe, "drAvatar", false>;
4
7
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { BadgeStatus } from '../models/badgeStatus';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DrBadgeStatusComponent implements OnInit {
4
5
  theme: BadgeStatus;
5
6
  icon: string;
@@ -7,4 +8,6 @@ export declare class DrBadgeStatusComponent implements OnInit {
7
8
  tooltip: string;
8
9
  constructor();
9
10
  ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrBadgeStatusComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrBadgeStatusComponent, "dr-badge-status", never, { "theme": { "alias": "theme"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
10
13
  }
@@ -1,2 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dr-badge-status.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../dr-tooltip/dr-tooltip.module";
1
5
  export declare class DrBadgeStatusModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrBadgeStatusModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrBadgeStatusModule, [typeof i1.DrBadgeStatusComponent], [typeof i2.CommonModule, typeof i3.DrTooltipModule], [typeof i1.DrBadgeStatusComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrBadgeStatusModule>;
2
9
  }
@@ -3,6 +3,7 @@ import { DrChatFormComponent } from './dr-chat-form/chat-form.component';
3
3
  import { DrChatMessageComponent } from './dr-chat-message/chat-message.component';
4
4
  import { Subject } from 'rxjs';
5
5
  import { DrChatSuggestionsComponent } from './dr-chat-suggestions/chat-suggestions.component';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class DrChatComponent implements AfterViewInit, OnDestroy {
7
8
  private cdr;
8
9
  private destroy$;
@@ -41,4 +42,6 @@ export declare class DrChatComponent implements AfterViewInit, OnDestroy {
41
42
  ngOnDestroy(): void;
42
43
  onClearClick($event: any): void;
43
44
  hideSuggestions(): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatComponent, never>;
46
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrChatComponent, "dr-chat", never, { "fullScreen": { "alias": "fullScreen"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "noMessagesPlaceholder": { "alias": "noMessagesPlaceholder"; "required": false; }; "contentUpdateSubject": { "alias": "contentUpdateSubject"; "required": false; }; "scrollBottom": { "alias": "scrollBottom"; "required": false; }; "suggestions": { "alias": "suggestions"; "required": false; }; "reopen": { "alias": "reopen"; "required": false; }; "waitForReply": { "alias": "waitForReply"; "required": false; }; }, { "clear": "clear"; "close": "close"; "suggestionSelect": "suggestionSelect"; }, ["chatForm", "messages"], ["dr-chat-message", "dr-chat-form"], false, never>;
44
47
  }
@@ -1,2 +1,19 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chat.component";
3
+ import * as i2 from "./dr-chat-message/chat-message.component";
4
+ import * as i3 from "./dr-chat-form/chat-form.component";
5
+ import * as i4 from "./dr-chat-message/dr-chat-message-text/chat-message-text.component";
6
+ import * as i5 from "./dr-chat-message/dr-chat-message-file/chat-message-file.component";
7
+ import * as i6 from "./dr-chat-suggestions/chat-suggestions.component";
8
+ import * as i7 from "./dr-dot-flashing/dr-dot-flashing.component";
9
+ import * as i8 from "./dr-chat-message/dr-chat-message-custom/chat-custom-message.directive";
10
+ import * as i9 from "@angular/forms";
11
+ import * as i10 from "@angular/common";
12
+ import * as i11 from "../dr-avatar/dr-avatar.module";
13
+ import * as i12 from "../dr-inputs/dr-inputs.module";
14
+ import * as i13 from "../dr-tooltip/dr-tooltip.module";
1
15
  export declare class DrChatModule {
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatModule, never>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrChatModule, [typeof i1.DrChatComponent, typeof i2.DrChatMessageComponent, typeof i3.DrChatFormComponent, typeof i4.DrChatMessageTextComponent, typeof i5.DrChatMessageFileComponent, typeof i6.DrChatSuggestionsComponent, typeof i7.DrDotFlashingComponent, typeof i8.DrChatCustomMessageDirective], [typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i10.CommonModule, typeof i11.DrAvatarModule, typeof i12.DrInputsModule, typeof i13.DrTooltipModule], [typeof i1.DrChatComponent, typeof i2.DrChatMessageComponent, typeof i3.DrChatFormComponent, typeof i4.DrChatMessageTextComponent, typeof i5.DrChatMessageFileComponent, typeof i6.DrChatSuggestionsComponent, typeof i7.DrDotFlashingComponent, typeof i8.DrChatCustomMessageDirective]>;
18
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrChatModule>;
2
19
  }
@@ -1,5 +1,6 @@
1
1
  import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
2
  import { DomSanitizer } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DrChatFormComponent {
4
5
  protected cdr: ChangeDetectorRef;
5
6
  protected domSanitizer: DomSanitizer;
@@ -62,4 +63,6 @@ export declare class DrChatFormComponent {
62
63
  abortMessage(): void;
63
64
  onModelChange(value: string): void;
64
65
  getTextAreaHeight(textAreaElement: HTMLTextAreaElement): string;
66
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatFormComponent, never>;
67
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrChatFormComponent, "dr-chat-form", never, { "message": { "alias": "message"; "required": false; }; "messagePlaceholder": { "alias": "messagePlaceholder"; "required": false; }; "dropFiles": { "alias": "dropFiles"; "required": false; }; "dropFilePlaceholder": { "alias": "dropFilePlaceholder"; "required": false; }; "waitForReply": { "alias": "waitForReply"; "required": false; }; }, { "send": "send"; "abort": "abort"; "inputChange": "inputChange"; }, never, never, false, never>;
65
68
  }
@@ -2,6 +2,7 @@ import { TemplateRef } from '@angular/core';
2
2
  import { CHAT_MESSAGE_TYPE, IChatMessage } from '../../models/chat';
3
3
  import { DrChatCustomMessageDirective } from './dr-chat-message-custom/chat-custom-message.directive';
4
4
  import { DrChatCustomMessageService } from './dr-chat-message-custom/chat-custom-message.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class DrChatMessageComponent {
6
7
  private customMessageService;
7
8
  MESSAGE_TYPE: typeof CHAT_MESSAGE_TYPE;
@@ -39,4 +40,6 @@ export declare class DrChatMessageComponent {
39
40
  isReply: boolean;
40
41
  };
41
42
  protected getCustomMessage(type: string): DrChatCustomMessageDirective;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatMessageComponent, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrChatMessageComponent, "dr-chat-message", never, { "reply": { "alias": "reply"; "required": false; }; "type": { "alias": "type"; "required": false; }; "message": { "alias": "message"; "required": false; }; "customMessageData": { "alias": "customMessageData"; "required": false; }; "user": { "alias": "user"; "required": false; }; }, {}, ["drChatMessageActions"], never, false, never>;
42
45
  }
@@ -1,5 +1,6 @@
1
1
  import { OnDestroy, OnInit, TemplateRef } from '@angular/core';
2
2
  import { DrChatCustomMessageService } from './chat-custom-message.service';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DrChatCustomMessageDirective implements OnInit, OnDestroy {
4
5
  templateRef: TemplateRef<any>;
5
6
  protected customMessageService: DrChatCustomMessageService;
@@ -15,4 +16,6 @@ export declare class DrChatCustomMessageDirective implements OnInit, OnDestroy {
15
16
  constructor(templateRef: TemplateRef<any>, customMessageService: DrChatCustomMessageService);
16
17
  ngOnInit(): void;
17
18
  ngOnDestroy(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatCustomMessageDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DrChatCustomMessageDirective, "[drCustomMessage]", never, { "drCustomMessage": { "alias": "drCustomMessage"; "required": false; }; }, {}, never, never, false, never>;
18
21
  }
@@ -1,4 +1,5 @@
1
1
  import { DrChatCustomMessageDirective } from './chat-custom-message.directive';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * `DrCustomMessageService` is used to store instances of `DrChatCustomMessageDirective`s which
4
5
  * were provided in the chat component.
@@ -8,4 +9,6 @@ export declare class DrChatCustomMessageService {
8
9
  register(type: string, instance: DrChatCustomMessageDirective): void;
9
10
  unregister(type: string): boolean;
10
11
  getInstance(type: string): DrChatCustomMessageDirective | undefined;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatCustomMessageService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<DrChatCustomMessageService>;
11
14
  }
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectorRef } from '@angular/core';
2
2
  import { DomSanitizer } from '@angular/platform-browser';
3
3
  import { IChatDownloadFileMessage, IChatImageMessage, IChatMessageFile } from '../../../models/chat';
4
+ import * as i0 from "@angular/core";
4
5
  /**
5
6
  * Chat message component.
6
7
  */
@@ -22,4 +23,6 @@ export declare class DrChatMessageFileComponent {
22
23
  set files(files: IChatMessageFile[]);
23
24
  constructor(cd: ChangeDetectorRef, domSanitizer: DomSanitizer);
24
25
  isImage(file: IChatMessageFile): boolean;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatMessageFileComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrChatMessageFileComponent, "dr-chat-message-file", never, { "message": { "alias": "message"; "required": false; }; "files": { "alias": "files"; "required": false; }; }, {}, never, never, false, never>;
25
28
  }
@@ -1,4 +1,5 @@
1
1
  import { IChatTextMessage } from '../../../models/chat';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * Chat text message component.
4
5
  */
@@ -9,4 +10,6 @@ export declare class DrChatMessageTextComponent {
9
10
  * @type {IChatTextMessage}
10
11
  */
11
12
  message: IChatTextMessage;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatMessageTextComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrChatMessageTextComponent, "dr-chat-message-text", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, false, never>;
12
15
  }
@@ -1,4 +1,5 @@
1
1
  import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DrChatSuggestionsComponent implements OnInit {
3
4
  private cdr;
4
5
  _nonHiddenValues: string[];
@@ -23,4 +24,6 @@ export declare class DrChatSuggestionsComponent implements OnInit {
23
24
  fillVisibleValues(): void;
24
25
  clearHidden(): void;
25
26
  toggleSuggestedMenu(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrChatSuggestionsComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrChatSuggestionsComponent, "dr-chat-suggestions", never, { "values": { "alias": "values"; "required": false; }; "fullScreen": { "alias": "fullScreen"; "required": false; }; "buttonMode": { "alias": "buttonMode"; "required": false; }; "waitForReply": { "alias": "waitForReply"; "required": false; }; }, { "suggestionSelect": "suggestionSelect"; }, never, never, false, never>;
26
29
  }
@@ -1,3 +1,6 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class DrDotFlashingComponent {
2
3
  constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrDotFlashingComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrDotFlashingComponent, "dr-dot-flashing", never, {}, {}, never, never, false, never>;
3
6
  }
@@ -1,5 +1,6 @@
1
1
  import { OnDestroy } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DrDetailsListComponent implements OnDestroy {
4
5
  private destroy$;
5
6
  list: string[];
@@ -9,4 +10,6 @@ export declare class DrDetailsListComponent implements OnDestroy {
9
10
  get state(): string;
10
11
  constructor();
11
12
  ngOnDestroy(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrDetailsListComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrDetailsListComponent, "dr-details-list", never, { "title": { "alias": "title"; "required": false; }; "items": { "alias": "items"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; }, {}, never, never, false, never>;
12
15
  }
@@ -1,2 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dr-details-list.component";
3
+ import * as i2 from "@angular/common";
1
4
  export declare class DrDetailsListModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrDetailsListModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrDetailsListModule, [typeof i1.DrDetailsListComponent], [typeof i2.CommonModule], [typeof i1.DrDetailsListComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrDetailsListModule>;
2
8
  }
@@ -1,9 +1,10 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
- import { MatDialogRef } from '@angular/material/dialog';
3
+ import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
4
4
  import { DataProp, DIALOG_FIELD_TYPE } from '../../interfaces/dialog-data';
5
5
  import { BehaviorSubject, Subject } from 'rxjs';
6
6
  import { DialogService } from '../../services/dialog.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class DialogModalWrapperComponent implements OnInit, OnDestroy {
8
9
  dialogRef: MatDialogRef<DialogModalWrapperComponent>;
9
10
  private dialogService;
@@ -21,4 +22,6 @@ export declare class DialogModalWrapperComponent implements OnInit, OnDestroy {
21
22
  footerAction(): void;
22
23
  closeDialog(): void;
23
24
  ngOnDestroy(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogModalWrapperComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogModalWrapperComponent, "dr-dialog-modal-wrapper", never, {}, {}, never, never, false, never>;
24
27
  }
@@ -1,8 +1,9 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, OnDestroy, ViewContainerRef } from '@angular/core';
2
- import { MatDialogRef } from '@angular/material/dialog';
2
+ import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
3
3
  import { DataProp, SizeModal } from '../../interfaces/dialog-data';
4
4
  import { BehaviorSubject, Subject } from 'rxjs';
5
5
  import { DialogService } from '../../services/dialog.service';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class DialogWrapperComponent implements AfterViewInit, OnDestroy {
7
8
  dialogRef: MatDialogRef<DialogWrapperComponent>;
8
9
  private dialogService;
@@ -10,7 +11,7 @@ export declare class DialogWrapperComponent implements AfterViewInit, OnDestroy
10
11
  private componentFactoryResolver;
11
12
  dialogData: DataProp;
12
13
  content: ViewContainerRef;
13
- class: SizeModal;
14
+ get elementClass(): SizeModal;
14
15
  childComponent: any;
15
16
  isLoading: boolean;
16
17
  saving$: BehaviorSubject<boolean>;
@@ -22,4 +23,6 @@ export declare class DialogWrapperComponent implements AfterViewInit, OnDestroy
22
23
  onDecline(): void;
23
24
  onAcceptDialog(data?: any): void;
24
25
  ngOnDestroy(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogWrapperComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogWrapperComponent, "dr-dialog-wrapper", never, {}, {}, never, never, false, never>;
25
28
  }
@@ -1,2 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/dialog-wrapper/dialog-wrapper.component";
3
+ import * as i2 from "./components/dialog-modal-wrapper/dialog-modal-wrapper.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/material/legacy-dialog";
6
+ import * as i5 from "../dr-inputs/dr-inputs.module";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "../dr-tooltip/dr-tooltip.module";
9
+ import * as i8 from "../dr-details-list/dr-details-list.module";
1
10
  export declare class DrDialogModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DrDialogModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DrDialogModule, [typeof i1.DialogWrapperComponent, typeof i2.DialogModalWrapperComponent], [typeof i3.CommonModule, typeof i4.MatLegacyDialogModule, typeof i5.DrInputsModule, typeof i6.ReactiveFormsModule, typeof i7.DrTooltipModule, typeof i8.DrDetailsListModule], [typeof i1.DialogWrapperComponent, typeof i2.DialogModalWrapperComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<DrDialogModule>;
2
14
  }
@@ -1,8 +1,8 @@
1
1
  import { ComponentType } from '@angular/cdk/portal';
2
2
  import { Observable } from 'rxjs';
3
3
  import { TimeframeOption } from '../../models/datePicker';
4
- import { MatDialogConfig } from '@angular/material/dialog';
5
- declare type DialogConfig = Omit<MatDialogConfig, 'data'>;
4
+ import { MatLegacyDialogConfig as MatDialogConfig } from '@angular/material/legacy-dialog';
5
+ type DialogConfig = Omit<MatDialogConfig, 'data'>;
6
6
  export interface DialogData<T = any> extends DialogConfig {
7
7
  data: {
8
8
  title?: string;
@@ -91,10 +91,10 @@ export interface ModalFormField {
91
91
  validators?: any[];
92
92
  datePickerFormat?: TimeframeOption;
93
93
  }
94
- export declare type SizeModal = 'small-modal' | 'medium-small-modal' | 'medium-modal' | 'medium-modal-max-height' | 'medium-large-modal' | 'large-modal' | 'xl-modal' | 'xl-custom-modal';
95
- export declare type DataProp<T = any> = DialogData<T>['data'];
96
- export declare type DialogTheme = DataProp['theme'];
97
- export declare type DialogFooterButton = {
94
+ export type SizeModal = 'small-modal' | 'medium-small-modal' | 'medium-modal' | 'medium-modal-max-height' | 'medium-large-modal' | 'large-modal' | 'xl-modal' | 'xl-custom-modal';
95
+ export type DataProp<T = any> = DialogData<T>['data'];
96
+ export type DialogTheme = DataProp['theme'];
97
+ export type DialogFooterButton = {
98
98
  label?: string;
99
99
  loadingLabel?: string;
100
100
  functions?: any;
@@ -123,5 +123,5 @@ export declare enum DIALOG_FIELD_TYPE {
123
123
  DATE_PICKER = "date_picker",
124
124
  CHECKBOX = "checkbox"
125
125
  }
126
- export declare type TDialogFieldType = DIALOG_FIELD_TYPE;
126
+ export type TDialogFieldType = DIALOG_FIELD_TYPE;
127
127
  export {};