@datarailsshared/datarailsshared 1.4.204-rocket → 1.4.217

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 (365) hide show
  1. package/_datarailsshared.styles.css +4 -4
  2. package/assets/styles/_styles.scss +2 -2
  3. package/assets/styles/colors.scss +4 -1
  4. package/bundles/datarailsshared-datarailsshared.umd.js +8108 -0
  5. package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -0
  6. package/datarailsshared-datarailsshared-1.4.217.tgz +0 -0
  7. package/datarailsshared-datarailsshared.d.ts +34 -0
  8. package/datarailsshared-datarailsshared.metadata.json +1 -0
  9. package/esm2015/datarailsshared-datarailsshared.js +35 -0
  10. package/esm2015/lib/date-tags/date-tag.component.js +73 -0
  11. package/esm2015/lib/date-tags/date-tag.module.js +36 -0
  12. package/esm2015/lib/date-tags/day-tag/day-tag.component.js +77 -0
  13. package/esm2015/lib/date-tags/forecast-tag/forecast-tag.component.js +153 -0
  14. package/esm2015/lib/date-tags/month-tag/month-tag.component.js +80 -0
  15. package/esm2015/lib/date-tags/quarter-tag/quarter-tag.component.js +105 -0
  16. package/esm2015/lib/date-tags/week-tag/week-tag.component.js +84 -0
  17. package/esm2015/lib/date-tags/year-tag/year-tag.component.js +78 -0
  18. package/esm2015/lib/dr-accordion/accordion-item-body.component.js +55 -0
  19. package/esm2015/lib/dr-accordion/accordion-item-header.component.js +77 -0
  20. package/esm2015/lib/dr-accordion/accordion-item.component.js +123 -0
  21. package/esm2015/lib/dr-accordion/accordion.component.js +43 -0
  22. package/esm2015/lib/dr-accordion/accordion.module.js +23 -0
  23. package/esm2015/lib/dr-alert/dr-alert.component.js +35 -0
  24. package/esm2015/lib/dr-alert/dr-alert.module.js +18 -0
  25. package/esm2015/lib/dr-alert/enums/dr-alert-theme.enum.js +10 -0
  26. package/esm2015/lib/dr-avatar/dr-avatar.component.js +44 -0
  27. package/esm2015/lib/dr-avatar/dr-avatar.module.js +26 -0
  28. package/esm2015/lib/dr-avatar/dr-avatar.pipe.js +16 -0
  29. package/esm2015/lib/dr-badge-status/dr-badge-status.component.js +25 -0
  30. package/esm2015/lib/dr-badge-status/dr-badge-status.module.js +20 -0
  31. package/esm2015/lib/dr-chat/chat.component.js +119 -0
  32. package/esm2015/lib/dr-chat/chat.module.js +41 -0
  33. package/esm2015/lib/dr-chat/dr-chat-form/chat-form.component.js +155 -0
  34. package/esm2015/lib/dr-chat/dr-chat-message/chat-message.component.js +71 -0
  35. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive.js +49 -0
  36. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service.js +23 -0
  37. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component.js +47 -0
  38. package/esm2015/lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component.js +18 -0
  39. package/esm2015/lib/dr-chat/dr-chat-suggestions/chat-suggestions.component.js +87 -0
  40. package/esm2015/lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component.js +15 -0
  41. package/esm2015/lib/dr-details-list/dr-details-list.component.js +65 -0
  42. package/esm2015/lib/dr-details-list/dr-details-list.module.js +16 -0
  43. package/esm2015/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.js +70 -0
  44. package/esm2015/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.js +92 -0
  45. package/esm2015/lib/dr-dialog/dialog.module.js +34 -0
  46. package/esm2015/lib/dr-dialog/interfaces/dialog-data.js +25 -0
  47. package/esm2015/lib/dr-dialog/services/dialog.service.js +78 -0
  48. package/esm2015/lib/dr-dropdown/dr-dropdown-item-show.pipe.js +12 -0
  49. package/esm2015/lib/dr-dropdown/dr-dropdown-position.directive.js +104 -0
  50. package/esm2015/lib/dr-dropdown/dr-dropdown.component.js +114 -0
  51. package/esm2015/lib/dr-dropdown/dr-dropdown.directive.js +104 -0
  52. package/esm2015/lib/dr-dropdown/dr-dropdown.module.js +34 -0
  53. package/esm2015/lib/dr-dropdown/dr-dropdown.service.js +24 -0
  54. package/esm2015/lib/dr-dynamic-tag/dr-dynamic-tag.component.js +103 -0
  55. package/esm2015/lib/dr-dynamic-tag/dr-dynamic-tag.module.js +19 -0
  56. package/esm2015/lib/dr-error/dr-error.component.js +54 -0
  57. package/esm2015/lib/dr-error/dr-error.module.js +22 -0
  58. package/esm2015/lib/dr-inputs/button/button.component.js +39 -0
  59. package/esm2015/lib/dr-inputs/checkbox/checkbox.component.js +65 -0
  60. package/esm2015/lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive.js +47 -0
  61. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.js +216 -0
  62. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.js +181 -0
  63. package/esm2015/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.js +183 -0
  64. package/esm2015/lib/dr-inputs/date-pickers/dr-show-timeframe.pipe.js +12 -0
  65. package/esm2015/lib/dr-inputs/date-pickers/services/dr-date-picker.service.js +194 -0
  66. package/esm2015/lib/dr-inputs/dr-input/dr-input.component.js +194 -0
  67. package/esm2015/lib/dr-inputs/dr-inputs.module.js +66 -0
  68. package/esm2015/lib/dr-inputs/dr-model-debounce-change.directive.js +29 -0
  69. package/esm2015/lib/dr-inputs/dr-select/dr-select.component.js +121 -0
  70. package/esm2015/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.js +74 -0
  71. package/esm2015/lib/dr-inputs/dr-toggle/dr-toggle.component.js +68 -0
  72. package/esm2015/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.js +63 -0
  73. package/esm2015/lib/dr-inputs/radio-button/radio-button.component.js +73 -0
  74. package/esm2015/lib/dr-inputs/radio-button/radio-group.component.js +157 -0
  75. package/esm2015/lib/dr-layout/dr-layout-body.component.js +13 -0
  76. package/esm2015/lib/dr-layout/dr-layout-header.component.js +17 -0
  77. package/esm2015/lib/dr-layout/dr-layout.component.js +14 -0
  78. package/esm2015/lib/dr-layout/dr-layout.module.js +20 -0
  79. package/esm2015/lib/dr-popover/dr-popover.component.js +106 -0
  80. package/esm2015/lib/dr-popover/dr-popover.directive.js +84 -0
  81. package/esm2015/lib/dr-popover/dr-popover.module.js +23 -0
  82. package/esm2015/lib/dr-popover/dr-popover.service.js +106 -0
  83. package/esm2015/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.js +102 -0
  84. package/esm2015/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.js +74 -0
  85. package/esm2015/lib/dr-scenario/consts/scenario-tags-config.js +73 -0
  86. package/esm2015/lib/dr-scenario/dr-scenario.module.js +28 -0
  87. package/esm2015/lib/dr-scenario/services/scenario.service.js +167 -0
  88. package/esm2015/lib/dr-spinner/dr-spinner.component.js +18 -0
  89. package/esm2015/lib/dr-spinner/dr-spinner.directive.js +56 -0
  90. package/esm2015/lib/dr-spinner/dr-spinner.module.js +18 -0
  91. package/esm2015/lib/dr-tabs/dr-tab.component.js +26 -0
  92. package/esm2015/lib/dr-tabs/dr-tabs.component.js +35 -0
  93. package/esm2015/lib/dr-tabs/dr-tabs.module.js +32 -0
  94. package/esm2015/lib/dr-tags/dr-tag.component.js +177 -0
  95. package/esm2015/lib/dr-tags/dr-tag.module.js +24 -0
  96. package/esm2015/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.js +19 -0
  97. package/esm2015/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.js +18 -0
  98. package/esm2015/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.js +20 -0
  99. package/esm2015/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.js +34 -0
  100. package/esm2015/lib/dr-tooltip/dr-tooltip.component.js +40 -0
  101. package/esm2015/lib/dr-tooltip/dr-tooltip.directive.js +147 -0
  102. package/esm2015/lib/dr-tooltip/dr-tooltip.module.js +35 -0
  103. package/esm2015/lib/dr-treeview/components/treeview/treeview.component.js +210 -0
  104. package/esm2015/lib/dr-treeview/components/treeview-item/treeview-item.component.js +58 -0
  105. package/esm2015/lib/dr-treeview/dr-tree-view.module.js +38 -0
  106. package/esm2015/lib/dr-treeview/helpers/treeview-event-parser.js +97 -0
  107. package/esm2015/lib/dr-treeview/models/treeview-config.js +22 -0
  108. package/esm2015/lib/dr-treeview/models/treeview-i18n.js +42 -0
  109. package/esm2015/lib/dr-treeview/pipes/treeview.pipe.js +17 -0
  110. package/esm2015/lib/list-tags/list-tag.component.js +37 -0
  111. package/esm2015/lib/list-tags/list-tag.module.js +23 -0
  112. package/esm2015/lib/models/chat.js +36 -0
  113. package/{esm2022/lib/models/datePicker.mjs → esm2015/lib/models/datePicker.js} +1 -1
  114. package/esm2015/lib/models/popover.js +27 -0
  115. package/esm2015/lib/stepper/stepper.component.js +55 -0
  116. package/esm2015/lib/stepper/stepper.module.js +17 -0
  117. package/esm2015/lib/utils/dr-shared-utils.js +47 -0
  118. package/esm2015/public-api.js +96 -0
  119. package/fesm2015/datarailsshared-datarailsshared.js +6938 -0
  120. package/fesm2015/datarailsshared-datarailsshared.js.map +1 -0
  121. package/lib/date-tags/date-tag.component.d.ts +16 -4
  122. package/lib/date-tags/date-tag.module.d.ts +2 -19
  123. package/lib/date-tags/day-tag/day-tag.component.d.ts +1 -4
  124. package/lib/date-tags/forecast-tag/forecast-tag.component.d.ts +2 -5
  125. package/lib/date-tags/month-tag/month-tag.component.d.ts +1 -4
  126. package/lib/date-tags/quarter-tag/quarter-tag.component.d.ts +1 -4
  127. package/lib/date-tags/week-tag/week-tag.component.d.ts +1 -4
  128. package/lib/date-tags/year-tag/year-tag.component.d.ts +1 -4
  129. package/lib/dr-accordion/accordion-item-body.component.d.ts +0 -3
  130. package/lib/dr-accordion/accordion-item-header.component.d.ts +0 -3
  131. package/lib/dr-accordion/accordion-item.component.d.ts +0 -3
  132. package/lib/dr-accordion/accordion.component.d.ts +0 -3
  133. package/lib/dr-accordion/accordion.module.d.ts +0 -9
  134. package/lib/dr-alert/dr-alert.component.d.ts +8 -0
  135. package/lib/dr-alert/dr-alert.module.d.ts +2 -0
  136. package/lib/dr-alert/enums/dr-alert-theme.enum.d.ts +7 -0
  137. package/lib/dr-avatar/dr-avatar.component.d.ts +0 -3
  138. package/lib/dr-avatar/dr-avatar.module.d.ts +0 -9
  139. package/lib/dr-avatar/dr-avatar.pipe.d.ts +0 -3
  140. package/lib/dr-badge-status/dr-badge-status.component.d.ts +0 -3
  141. package/lib/dr-badge-status/dr-badge-status.module.d.ts +0 -7
  142. package/lib/dr-chat/chat.component.d.ts +0 -3
  143. package/lib/dr-chat/chat.module.d.ts +0 -17
  144. package/lib/dr-chat/dr-chat-form/chat-form.component.d.ts +0 -3
  145. package/lib/dr-chat/dr-chat-message/chat-message.component.d.ts +0 -3
  146. package/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive.d.ts +0 -3
  147. package/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service.d.ts +0 -3
  148. package/lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component.d.ts +0 -3
  149. package/lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component.d.ts +0 -3
  150. package/lib/dr-chat/dr-chat-suggestions/chat-suggestions.component.d.ts +0 -3
  151. package/lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component.d.ts +0 -3
  152. package/lib/dr-details-list/dr-details-list.component.d.ts +0 -3
  153. package/lib/dr-details-list/dr-details-list.module.d.ts +0 -6
  154. package/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.d.ts +1 -4
  155. package/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.d.ts +2 -5
  156. package/lib/dr-dialog/dialog.module.d.ts +0 -12
  157. package/lib/dr-dialog/interfaces/dialog-data.d.ts +7 -7
  158. package/lib/dr-dialog/services/dialog.service.d.ts +1 -4
  159. package/lib/dr-dropdown/dr-dropdown-item-show.pipe.d.ts +0 -3
  160. package/lib/dr-dropdown/dr-dropdown-position.directive.d.ts +0 -3
  161. package/lib/dr-dropdown/dr-dropdown.component.d.ts +0 -3
  162. package/lib/dr-dropdown/dr-dropdown.directive.d.ts +0 -3
  163. package/lib/dr-dropdown/dr-dropdown.module.d.ts +0 -10
  164. package/lib/dr-dropdown/dr-dropdown.service.d.ts +0 -3
  165. package/lib/dr-dynamic-tag/dr-dynamic-tag.component.d.ts +0 -3
  166. package/lib/dr-dynamic-tag/dr-dynamic-tag.module.d.ts +0 -8
  167. package/lib/dr-error/dr-error.component.d.ts +3 -7
  168. package/lib/dr-error/dr-error.module.d.ts +0 -8
  169. package/lib/dr-inputs/button/button.component.d.ts +1 -4
  170. package/lib/dr-inputs/checkbox/checkbox.component.d.ts +0 -3
  171. package/lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive.d.ts +0 -3
  172. package/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.d.ts +0 -3
  173. package/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.d.ts +0 -3
  174. package/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.d.ts +8 -4
  175. package/lib/dr-inputs/date-pickers/dr-show-timeframe.pipe.d.ts +2 -4
  176. package/lib/dr-inputs/date-pickers/services/dr-date-picker.service.d.ts +0 -3
  177. package/lib/dr-inputs/dr-input/dr-input.component.d.ts +0 -3
  178. package/lib/dr-inputs/dr-inputs.module.d.ts +0 -25
  179. package/lib/dr-inputs/dr-model-debounce-change.directive.d.ts +0 -3
  180. package/lib/dr-inputs/dr-select/dr-select.component.d.ts +1 -3
  181. package/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.d.ts +0 -3
  182. package/lib/dr-inputs/dr-toggle/dr-toggle.component.d.ts +0 -3
  183. package/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.d.ts +0 -3
  184. package/lib/dr-inputs/radio-button/radio-button.component.d.ts +0 -3
  185. package/lib/dr-inputs/radio-button/radio-group.component.d.ts +0 -3
  186. package/lib/dr-layout/dr-layout-body.component.d.ts +0 -3
  187. package/lib/dr-layout/dr-layout-header.component.d.ts +0 -3
  188. package/lib/dr-layout/dr-layout.component.d.ts +0 -3
  189. package/lib/dr-layout/dr-layout.module.d.ts +0 -8
  190. package/lib/dr-popover/dr-popover.component.d.ts +4 -8
  191. package/lib/dr-popover/dr-popover.directive.d.ts +0 -3
  192. package/lib/dr-popover/dr-popover.module.d.ts +0 -7
  193. package/lib/dr-popover/dr-popover.service.d.ts +0 -3
  194. package/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.d.ts +0 -3
  195. package/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.d.ts +0 -3
  196. package/lib/dr-scenario/dr-scenario.module.d.ts +0 -10
  197. package/lib/dr-scenario/interfaces/scenario.d.ts +3 -3
  198. package/lib/dr-scenario/services/scenario.service.d.ts +0 -3
  199. package/lib/dr-spinner/dr-spinner.component.d.ts +0 -3
  200. package/lib/dr-spinner/dr-spinner.directive.d.ts +0 -3
  201. package/lib/dr-spinner/dr-spinner.module.d.ts +0 -7
  202. package/lib/dr-tabs/dr-tab.component.d.ts +0 -3
  203. package/lib/dr-tabs/dr-tabs.component.d.ts +3 -11
  204. package/lib/dr-tabs/dr-tabs.module.d.ts +0 -11
  205. package/lib/dr-tags/dr-tag.component.d.ts +0 -3
  206. package/lib/dr-tags/dr-tag.module.d.ts +0 -9
  207. package/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.d.ts +0 -3
  208. package/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.d.ts +0 -3
  209. package/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.d.ts +0 -3
  210. package/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.d.ts +0 -3
  211. package/lib/dr-tooltip/dr-tooltip.component.d.ts +1 -4
  212. package/lib/dr-tooltip/dr-tooltip.directive.d.ts +0 -3
  213. package/lib/dr-tooltip/dr-tooltip.module.d.ts +0 -11
  214. package/lib/dr-tooltip/interfaces/tooltip-component-context.d.ts +1 -1
  215. package/lib/dr-treeview/components/treeview/treeview.component.d.ts +0 -3
  216. package/lib/dr-treeview/components/treeview-item/treeview-item.component.d.ts +0 -3
  217. package/lib/dr-treeview/dr-tree-view.module.d.ts +0 -9
  218. package/lib/dr-treeview/helpers/treeview-event-parser.d.ts +0 -9
  219. package/lib/dr-treeview/models/treeview-config.d.ts +0 -3
  220. package/lib/dr-treeview/models/treeview-i18n.d.ts +0 -5
  221. package/lib/dr-treeview/pipes/treeview.pipe.d.ts +0 -3
  222. package/lib/list-tags/list-tag.component.d.ts +0 -3
  223. package/lib/list-tags/list-tag.module.d.ts +0 -8
  224. package/lib/models/chat.d.ts +2 -2
  225. package/lib/models/datePicker.d.ts +3 -10
  226. package/lib/models/dropdown.d.ts +1 -1
  227. package/lib/models/popover.d.ts +1 -1
  228. package/lib/models/serverTags.d.ts +4 -4
  229. package/lib/stepper/interfaces/stepper.d.ts +1 -1
  230. package/lib/stepper/stepper.component.d.ts +0 -3
  231. package/lib/stepper/stepper.module.d.ts +0 -7
  232. package/package.json +15 -27
  233. package/public-api.d.ts +3 -27
  234. package/datarailsshared-datarailsshared-1.4.204-rocket.tgz +0 -0
  235. package/esm2022/datarailsshared-datarailsshared.mjs +0 -5
  236. package/esm2022/lib/date-tags/any-tag.component.mjs +0 -44
  237. package/esm2022/lib/date-tags/date-tag.component.mjs +0 -47
  238. package/esm2022/lib/date-tags/date-tag.module.mjs +0 -66
  239. package/esm2022/lib/date-tags/day-tag/day-tag.component.mjs +0 -82
  240. package/esm2022/lib/date-tags/forecast-tag/forecast-tag.component.mjs +0 -159
  241. package/esm2022/lib/date-tags/month-tag/month-tag.component.mjs +0 -87
  242. package/esm2022/lib/date-tags/quarter-tag/quarter-tag.component.mjs +0 -106
  243. package/esm2022/lib/date-tags/week-tag/week-tag.component.mjs +0 -89
  244. package/esm2022/lib/date-tags/year-tag/year-tag.component.mjs +0 -83
  245. package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +0 -92
  246. package/esm2022/lib/directives/click-outside/click-outside.module.mjs +0 -18
  247. package/esm2022/lib/dr-accordion/accordion-item-body.component.mjs +0 -58
  248. package/esm2022/lib/dr-accordion/accordion-item-header.component.mjs +0 -108
  249. package/esm2022/lib/dr-accordion/accordion-item.component.mjs +0 -138
  250. package/esm2022/lib/dr-accordion/accordion.component.mjs +0 -42
  251. package/esm2022/lib/dr-accordion/accordion.module.mjs +0 -34
  252. package/esm2022/lib/dr-avatar/dr-avatar.component.mjs +0 -48
  253. package/esm2022/lib/dr-avatar/dr-avatar.module.mjs +0 -37
  254. package/esm2022/lib/dr-avatar/dr-avatar.pipe.mjs +0 -20
  255. package/esm2022/lib/dr-badge-status/dr-badge-status.component.mjs +0 -27
  256. package/esm2022/lib/dr-badge-status/dr-badge-status.module.mjs +0 -27
  257. package/esm2022/lib/dr-chat/chat.component.mjs +0 -138
  258. package/esm2022/lib/dr-chat/chat.module.mjs +0 -68
  259. package/esm2022/lib/dr-chat/dr-chat-form/chat-form.component.mjs +0 -168
  260. package/esm2022/lib/dr-chat/dr-chat-message/chat-message.component.mjs +0 -89
  261. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive.mjs +0 -47
  262. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service.mjs +0 -26
  263. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component.mjs +0 -49
  264. package/esm2022/lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component.mjs +0 -17
  265. package/esm2022/lib/dr-chat/dr-chat-suggestions/chat-suggestions.component.mjs +0 -88
  266. package/esm2022/lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component.mjs +0 -13
  267. package/esm2022/lib/dr-details-list/dr-details-list.component.mjs +0 -79
  268. package/esm2022/lib/dr-details-list/dr-details-list.module.mjs +0 -21
  269. package/esm2022/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.mjs +0 -76
  270. package/esm2022/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.mjs +0 -97
  271. package/esm2022/lib/dr-dialog/dialog.module.mjs +0 -51
  272. package/esm2022/lib/dr-dialog/interfaces/dialog-data.mjs +0 -25
  273. package/esm2022/lib/dr-dialog/services/dialog.service.mjs +0 -77
  274. package/esm2022/lib/dr-dropdown/dr-dropdown-item-show.pipe.mjs +0 -16
  275. package/esm2022/lib/dr-dropdown/dr-dropdown-position.directive.mjs +0 -104
  276. package/esm2022/lib/dr-dropdown/dr-dropdown.component.mjs +0 -116
  277. package/esm2022/lib/dr-dropdown/dr-dropdown.directive.mjs +0 -117
  278. package/esm2022/lib/dr-dropdown/dr-dropdown.module.mjs +0 -49
  279. package/esm2022/lib/dr-dropdown/dr-dropdown.service.mjs +0 -25
  280. package/esm2022/lib/dr-dynamic-tag/dr-dynamic-tag.component.mjs +0 -112
  281. package/esm2022/lib/dr-dynamic-tag/dr-dynamic-tag.module.mjs +0 -28
  282. package/esm2022/lib/dr-error/dr-error.component.mjs +0 -67
  283. package/esm2022/lib/dr-error/dr-error.module.mjs +0 -31
  284. package/esm2022/lib/dr-inputs/button/button.component.mjs +0 -66
  285. package/esm2022/lib/dr-inputs/checkbox/checkbox.component.mjs +0 -65
  286. package/esm2022/lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive.mjs +0 -64
  287. package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component.mjs +0 -226
  288. package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component.mjs +0 -190
  289. package/esm2022/lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component.mjs +0 -186
  290. package/esm2022/lib/dr-inputs/date-pickers/dr-show-timeframe.pipe.mjs +0 -16
  291. package/esm2022/lib/dr-inputs/date-pickers/services/dr-date-picker.service.mjs +0 -195
  292. package/esm2022/lib/dr-inputs/dr-input/dr-input.component.mjs +0 -218
  293. package/esm2022/lib/dr-inputs/dr-inputs.module.mjs +0 -108
  294. package/esm2022/lib/dr-inputs/dr-model-debounce-change.directive.mjs +0 -31
  295. package/esm2022/lib/dr-inputs/dr-select/dr-select.component.mjs +0 -159
  296. package/esm2022/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.mjs +0 -79
  297. package/esm2022/lib/dr-inputs/dr-toggle/dr-toggle.component.mjs +0 -72
  298. package/esm2022/lib/dr-inputs/dr-toggle-button/dr-toggle-button.component.mjs +0 -66
  299. package/esm2022/lib/dr-inputs/radio-button/radio-button.component.mjs +0 -78
  300. package/esm2022/lib/dr-inputs/radio-button/radio-group.component.mjs +0 -173
  301. package/esm2022/lib/dr-layout/dr-layout-body.component.mjs +0 -16
  302. package/esm2022/lib/dr-layout/dr-layout-header.component.mjs +0 -24
  303. package/esm2022/lib/dr-layout/dr-layout.component.mjs +0 -13
  304. package/esm2022/lib/dr-layout/dr-layout.module.mjs +0 -29
  305. package/esm2022/lib/dr-popover/dr-popover.component.mjs +0 -126
  306. package/esm2022/lib/dr-popover/dr-popover.directive.mjs +0 -110
  307. package/esm2022/lib/dr-popover/dr-popover.module.mjs +0 -30
  308. package/esm2022/lib/dr-popover/dr-popover.service.mjs +0 -107
  309. package/esm2022/lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component.mjs +0 -105
  310. package/esm2022/lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component.mjs +0 -83
  311. package/esm2022/lib/dr-scenario/consts/scenario-tags-config.mjs +0 -81
  312. package/esm2022/lib/dr-scenario/dr-scenario.module.mjs +0 -41
  313. package/esm2022/lib/dr-scenario/services/scenario.service.mjs +0 -165
  314. package/esm2022/lib/dr-spinner/dr-spinner.component.mjs +0 -17
  315. package/esm2022/lib/dr-spinner/dr-spinner.directive.mjs +0 -59
  316. package/esm2022/lib/dr-spinner/dr-spinner.module.mjs +0 -23
  317. package/esm2022/lib/dr-tabs/dr-tab.component.mjs +0 -37
  318. package/esm2022/lib/dr-tabs/dr-tabs.component.mjs +0 -70
  319. package/esm2022/lib/dr-tabs/dr-tabs.module.mjs +0 -49
  320. package/esm2022/lib/dr-tags/dr-tag.component.mjs +0 -188
  321. package/esm2022/lib/dr-tags/dr-tag.module.mjs +0 -35
  322. package/esm2022/lib/dr-tooltip/components/tooltip-info/tooltip-info.component.mjs +0 -18
  323. package/esm2022/lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component.mjs +0 -16
  324. package/esm2022/lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component.mjs +0 -18
  325. package/esm2022/lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component.mjs +0 -19
  326. package/esm2022/lib/dr-tooltip/dr-tooltip.component.mjs +0 -48
  327. package/esm2022/lib/dr-tooltip/dr-tooltip.directive.mjs +0 -156
  328. package/esm2022/lib/dr-tooltip/dr-tooltip.module.mjs +0 -48
  329. package/esm2022/lib/dr-treeview/components/treeview/treeview.component.mjs +0 -215
  330. package/esm2022/lib/dr-treeview/components/treeview-item/treeview-item.component.mjs +0 -60
  331. package/esm2022/lib/dr-treeview/dr-tree-view.module.mjs +0 -48
  332. package/esm2022/lib/dr-treeview/helpers/treeview-event-parser.mjs +0 -106
  333. package/esm2022/lib/dr-treeview/models/treeview-config.mjs +0 -25
  334. package/esm2022/lib/dr-treeview/models/treeview-i18n.mjs +0 -47
  335. package/esm2022/lib/dr-treeview/pipes/treeview.pipe.mjs +0 -21
  336. package/esm2022/lib/list-tags/list-tag.component.mjs +0 -42
  337. package/esm2022/lib/list-tags/list-tag.module.mjs +0 -34
  338. package/esm2022/lib/models/chat.mjs +0 -36
  339. package/esm2022/lib/models/popover.mjs +0 -27
  340. package/esm2022/lib/stepper/stepper.component.mjs +0 -63
  341. package/esm2022/lib/stepper/stepper.module.mjs +0 -24
  342. package/esm2022/lib/utils/dr-shared-utils.mjs +0 -47
  343. package/esm2022/public-api.mjs +0 -120
  344. package/fesm2022/datarailsshared-datarailsshared.mjs +0 -7574
  345. package/fesm2022/datarailsshared-datarailsshared.mjs.map +0 -1
  346. package/index.d.ts +0 -5
  347. package/lib/date-tags/any-tag.component.d.ts +0 -20
  348. package/lib/directives/click-outside/click-outside.directive.d.ts +0 -23
  349. package/lib/directives/click-outside/click-outside.module.d.ts +0 -8
  350. /package/{esm2022/lib/dr-inputs/dr-toggle-button/toggle-button-mode.mjs → esm2015/lib/dr-inputs/dr-toggle-button/toggle-button-mode.js} +0 -0
  351. /package/{esm2022/lib/dr-popover/dr-popover-ref.mjs → esm2015/lib/dr-popover/dr-popover-ref.js} +0 -0
  352. /package/{esm2022/lib/dr-scenario/interfaces/scenario.mjs → esm2015/lib/dr-scenario/interfaces/scenario.js} +0 -0
  353. /package/{esm2022/lib/dr-tooltip/enums/tooltip-position.enum.mjs → esm2015/lib/dr-tooltip/enums/tooltip-position.enum.js} +0 -0
  354. /package/{esm2022/lib/dr-tooltip/interfaces/tooltip-component-context.mjs → esm2015/lib/dr-tooltip/interfaces/tooltip-component-context.js} +0 -0
  355. /package/{esm2022/lib/dr-treeview/helpers/treeview-helper.mjs → esm2015/lib/dr-treeview/helpers/treeview-helper.js} +0 -0
  356. /package/{esm2022/lib/dr-treeview/models/treeview-header-template-context.mjs → esm2015/lib/dr-treeview/models/treeview-header-template-context.js} +0 -0
  357. /package/{esm2022/lib/dr-treeview/models/treeview-item-template-context.mjs → esm2015/lib/dr-treeview/models/treeview-item-template-context.js} +0 -0
  358. /package/{esm2022/lib/dr-treeview/models/treeview-item.mjs → esm2015/lib/dr-treeview/models/treeview-item.js} +0 -0
  359. /package/{esm2022/lib/models/badgeStatus.mjs → esm2015/lib/models/badgeStatus.js} +0 -0
  360. /package/{esm2022/lib/models/constants.mjs → esm2015/lib/models/constants.js} +0 -0
  361. /package/{esm2022/lib/models/dropdown.mjs → esm2015/lib/models/dropdown.js} +0 -0
  362. /package/{esm2022/lib/models/serverTags.mjs → esm2015/lib/models/serverTags.js} +0 -0
  363. /package/{esm2022/lib/models/spinnerOptions.mjs → esm2015/lib/models/spinnerOptions.js} +0 -0
  364. /package/{esm2022/lib/models/validationError.mjs → esm2015/lib/models/validationError.js} +0 -0
  365. /package/{esm2022/lib/stepper/interfaces/stepper.mjs → esm2015/lib/stepper/interfaces/stepper.js} +0 -0
@@ -1,6 +1,5 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { IDateTag } from '../models/serverTags';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DateTagComponent {
5
4
  name: string | undefined;
6
5
  lockedDate: any[];
@@ -11,6 +10,19 @@ export declare class DateTagComponent {
11
10
  fiscalYearBack?: boolean;
12
11
  selectedDate: EventEmitter<IDateTag>;
13
12
  changeSelectedDate(date: 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>;
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;
16
28
  }
@@ -1,21 +1,4 @@
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)[];
1
+ import { AnyTagComponent, DateTagComponent } from './date-tag.component';
2
+ export declare const components: (typeof DateTagComponent | typeof AnyTagComponent)[];
17
3
  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>;
21
4
  }
@@ -1,5 +1,4 @@
1
- import { AnyTagComponent } from '../any-tag.component';
2
- import * as i0 from "@angular/core";
1
+ import { AnyTagComponent } from '../date-tag.component';
3
2
  export declare class DayTagComponent extends AnyTagComponent {
4
3
  get isLocked(): boolean;
5
4
  lockedDate: any[];
@@ -9,6 +8,4 @@ export declare class DayTagComponent extends AnyTagComponent {
9
8
  initName(): void;
10
9
  chosenTagHandler(value: number): void;
11
10
  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>;
14
11
  }
@@ -1,7 +1,6 @@
1
- import { AnyTagComponent } from '../any-tag.component';
2
- import { MatLegacySelectChange as MatSelectChange } from '@angular/material/legacy-select';
1
+ import { AnyTagComponent } from '../date-tag.component';
2
+ import { MatSelectChange } from '@angular/material/select';
3
3
  import { MatButtonToggleChange } from '@angular/material/button-toggle';
4
- import * as i0 from "@angular/core";
5
4
  export declare class ForecastTagComponent extends AnyTagComponent {
6
5
  fiscalYearStartsFrom?: number;
7
6
  fiscalYearBack?: boolean;
@@ -20,6 +19,4 @@ export declare class ForecastTagComponent extends AnyTagComponent {
20
19
  changeYearInputHandler(event: Event): void;
21
20
  chosenTagHandler(): void;
22
21
  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>;
25
22
  }
@@ -1,5 +1,4 @@
1
- import { AnyTagComponent } from '../any-tag.component';
2
- import * as i0 from "@angular/core";
1
+ import { AnyTagComponent } from '../date-tag.component';
3
2
  export declare class MonthTagComponent extends AnyTagComponent {
4
3
  get isLocked(): boolean;
5
4
  lockedDate: any[];
@@ -9,6 +8,4 @@ export declare class MonthTagComponent extends AnyTagComponent {
9
8
  initName(): void;
10
9
  chosenTagHandler(value: number): void;
11
10
  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>;
14
11
  }
@@ -1,6 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { AnyTagComponent } from '../any-tag.component';
3
- import * as i0 from "@angular/core";
2
+ import { AnyTagComponent } from '../date-tag.component';
4
3
  export declare class QuarterTagComponent extends AnyTagComponent implements OnInit {
5
4
  get isLocked(): boolean;
6
5
  lockedDate: any[];
@@ -14,6 +13,4 @@ export declare class QuarterTagComponent extends AnyTagComponent implements OnIn
14
13
  private getQuarterLabel;
15
14
  private getUTCTimestamp;
16
15
  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>;
19
16
  }
@@ -1,6 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { AnyTagComponent } from '../any-tag.component';
3
- import * as i0 from "@angular/core";
2
+ import { AnyTagComponent } from '../date-tag.component';
4
3
  export declare class WeekTagComponent extends AnyTagComponent implements OnInit {
5
4
  get isLocked(): boolean;
6
5
  lockedDate: any[];
@@ -11,6 +10,4 @@ export declare class WeekTagComponent extends AnyTagComponent implements OnInit
11
10
  dateFilter(date: any): boolean;
12
11
  chosenTagHandler(value: number): void;
13
12
  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>;
16
13
  }
@@ -1,5 +1,4 @@
1
- import { AnyTagComponent } from '../any-tag.component';
2
- import * as i0 from "@angular/core";
1
+ import { AnyTagComponent } from '../date-tag.component';
3
2
  export declare class YearTagComponent extends AnyTagComponent {
4
3
  get isLocked(): boolean;
5
4
  lockedDate: any[];
@@ -9,6 +8,4 @@ export declare class YearTagComponent extends AnyTagComponent {
9
8
  initName(): void;
10
9
  chosenTagHandler(value: number): void;
11
10
  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>;
14
11
  }
@@ -1,6 +1,5 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { DrAccordionItemComponent } from './accordion-item.component';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DrAccordionItemBodyComponent implements OnInit, OnDestroy {
5
4
  private accordionItem;
6
5
  private cd;
@@ -9,6 +8,4 @@ export declare class DrAccordionItemBodyComponent implements OnInit, OnDestroy {
9
8
  get state(): string;
10
9
  ngOnInit(): void;
11
10
  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>;
14
11
  }
@@ -1,6 +1,5 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { DrAccordionItemComponent } from './accordion-item.component';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DrAccordionItemHeaderComponent implements OnInit, OnDestroy {
5
4
  private accordionItem;
6
5
  private cd;
@@ -14,6 +13,4 @@ export declare class DrAccordionItemHeaderComponent implements OnInit, OnDestroy
14
13
  constructor(accordionItem: DrAccordionItemComponent, cd: ChangeDetectorRef);
15
14
  ngOnInit(): void;
16
15
  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>;
19
16
  }
@@ -1,7 +1,6 @@
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";
5
4
  export declare class DrAccordionItemComponent implements OnInit, OnChanges, OnDestroy {
6
5
  private accordion;
7
6
  private cd;
@@ -53,6 +52,4 @@ export declare class DrAccordionItemComponent implements OnInit, OnChanges, OnDe
53
52
  ngOnChanges(changes: SimpleChanges): void;
54
53
  ngOnDestroy(): void;
55
54
  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>;
58
55
  }
@@ -1,5 +1,4 @@
1
1
  import { Subject } from 'rxjs';
2
- import * as i0 from "@angular/core";
3
2
  export declare class DrAccordionComponent {
4
3
  static ngAcceptInputType_multi: any;
5
4
  openCloseItems: Subject<boolean>;
@@ -17,6 +16,4 @@ export declare class DrAccordionComponent {
17
16
  * Closes all enabled accordion items.
18
17
  */
19
18
  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>;
22
19
  }
@@ -1,11 +1,2 @@
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";
7
1
  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>;
11
2
  }
@@ -0,0 +1,8 @@
1
+ import { DrAlertTheme } from './enums/dr-alert-theme.enum';
2
+ export declare class DrAlertComponent {
3
+ theme: DrAlertTheme;
4
+ customIconClass: string;
5
+ text: string;
6
+ get elementClass(): string;
7
+ get themeIconClass(): string;
8
+ }
@@ -0,0 +1,2 @@
1
+ export declare class DrAlertModule {
2
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum DrAlertTheme {
2
+ SUCCESS = "success",
3
+ ERROR = "error",
4
+ BOLD_ERROR = "bold-error",
5
+ WARNING = "warning",
6
+ INFO = "info"
7
+ }
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
2
  export declare class DrAvatarComponent {
4
3
  set users(users: any[] | any);
5
4
  warning: boolean;
@@ -9,6 +8,4 @@ export declare class DrAvatarComponent {
9
8
  constructor();
10
9
  getFirstUsers(): any[];
11
10
  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>;
14
11
  }
@@ -1,11 +1,2 @@
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";
7
1
  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>;
11
2
  }
@@ -1,7 +1,4 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
2
  export declare class DrAvatarPipe implements PipeTransform {
4
3
  transform(item: any, type?: string): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<DrAvatarPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<DrAvatarPipe, "drAvatar", false>;
7
4
  }
@@ -1,6 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { BadgeStatus } from '../models/badgeStatus';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DrBadgeStatusComponent implements OnInit {
5
4
  theme: BadgeStatus;
6
5
  icon: string;
@@ -8,6 +7,4 @@ export declare class DrBadgeStatusComponent implements OnInit {
8
7
  tooltip: string;
9
8
  constructor();
10
9
  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>;
13
10
  }
@@ -1,9 +1,2 @@
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";
5
1
  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>;
9
2
  }
@@ -3,7 +3,6 @@ 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";
7
6
  export declare class DrChatComponent implements AfterViewInit, OnDestroy {
8
7
  private cdr;
9
8
  private destroy$;
@@ -42,6 +41,4 @@ export declare class DrChatComponent implements AfterViewInit, OnDestroy {
42
41
  ngOnDestroy(): void;
43
42
  onClearClick($event: any): void;
44
43
  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>;
47
44
  }
@@ -1,19 +1,2 @@
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";
15
1
  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>;
19
2
  }
@@ -1,6 +1,5 @@
1
1
  import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
2
  import { DomSanitizer } from '@angular/platform-browser';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DrChatFormComponent {
5
4
  protected cdr: ChangeDetectorRef;
6
5
  protected domSanitizer: DomSanitizer;
@@ -63,6 +62,4 @@ export declare class DrChatFormComponent {
63
62
  abortMessage(): void;
64
63
  onModelChange(value: string): void;
65
64
  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>;
68
65
  }
@@ -2,7 +2,6 @@ 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";
6
5
  export declare class DrChatMessageComponent {
7
6
  private customMessageService;
8
7
  MESSAGE_TYPE: typeof CHAT_MESSAGE_TYPE;
@@ -40,6 +39,4 @@ export declare class DrChatMessageComponent {
40
39
  isReply: boolean;
41
40
  };
42
41
  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>;
45
42
  }
@@ -1,6 +1,5 @@
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";
4
3
  export declare class DrChatCustomMessageDirective implements OnInit, OnDestroy {
5
4
  templateRef: TemplateRef<any>;
6
5
  protected customMessageService: DrChatCustomMessageService;
@@ -16,6 +15,4 @@ export declare class DrChatCustomMessageDirective implements OnInit, OnDestroy {
16
15
  constructor(templateRef: TemplateRef<any>, customMessageService: DrChatCustomMessageService);
17
16
  ngOnInit(): void;
18
17
  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>;
21
18
  }
@@ -1,5 +1,4 @@
1
1
  import { DrChatCustomMessageDirective } from './chat-custom-message.directive';
2
- import * as i0 from "@angular/core";
3
2
  /**
4
3
  * `DrCustomMessageService` is used to store instances of `DrChatCustomMessageDirective`s which
5
4
  * were provided in the chat component.
@@ -9,6 +8,4 @@ export declare class DrChatCustomMessageService {
9
8
  register(type: string, instance: DrChatCustomMessageDirective): void;
10
9
  unregister(type: string): boolean;
11
10
  getInstance(type: string): DrChatCustomMessageDirective | undefined;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<DrChatCustomMessageService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<DrChatCustomMessageService>;
14
11
  }
@@ -1,7 +1,6 @@
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";
5
4
  /**
6
5
  * Chat message component.
7
6
  */
@@ -23,6 +22,4 @@ export declare class DrChatMessageFileComponent {
23
22
  set files(files: IChatMessageFile[]);
24
23
  constructor(cd: ChangeDetectorRef, domSanitizer: DomSanitizer);
25
24
  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>;
28
25
  }
@@ -1,5 +1,4 @@
1
1
  import { IChatTextMessage } from '../../../models/chat';
2
- import * as i0 from "@angular/core";
3
2
  /**
4
3
  * Chat text message component.
5
4
  */
@@ -10,6 +9,4 @@ export declare class DrChatMessageTextComponent {
10
9
  * @type {IChatTextMessage}
11
10
  */
12
11
  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>;
15
12
  }
@@ -1,5 +1,4 @@
1
1
  import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
2
  export declare class DrChatSuggestionsComponent implements OnInit {
4
3
  private cdr;
5
4
  _nonHiddenValues: string[];
@@ -24,6 +23,4 @@ export declare class DrChatSuggestionsComponent implements OnInit {
24
23
  fillVisibleValues(): void;
25
24
  clearHidden(): void;
26
25
  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>;
29
26
  }
@@ -1,6 +1,3 @@
1
- import * as i0 from "@angular/core";
2
1
  export declare class DrDotFlashingComponent {
3
2
  constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<DrDotFlashingComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<DrDotFlashingComponent, "dr-dot-flashing", never, {}, {}, never, never, false, never>;
6
3
  }
@@ -1,6 +1,5 @@
1
1
  import { OnDestroy } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DrDetailsListComponent implements OnDestroy {
5
4
  private destroy$;
6
5
  list: string[];
@@ -10,6 +9,4 @@ export declare class DrDetailsListComponent implements OnDestroy {
10
9
  get state(): string;
11
10
  constructor();
12
11
  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>;
15
12
  }
@@ -1,8 +1,2 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./dr-details-list.component";
3
- import * as i2 from "@angular/common";
4
1
  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>;
8
2
  }
@@ -1,10 +1,9 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
- import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
3
+ import { MatDialogRef } from '@angular/material/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";
8
7
  export declare class DialogModalWrapperComponent implements OnInit, OnDestroy {
9
8
  dialogRef: MatDialogRef<DialogModalWrapperComponent>;
10
9
  private dialogService;
@@ -22,6 +21,4 @@ export declare class DialogModalWrapperComponent implements OnInit, OnDestroy {
22
21
  footerAction(): void;
23
22
  closeDialog(): void;
24
23
  ngOnDestroy(): void;
25
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogModalWrapperComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogModalWrapperComponent, "dr-dialog-modal-wrapper", never, {}, {}, never, never, false, never>;
27
24
  }
@@ -1,9 +1,8 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, OnDestroy, ViewContainerRef } from '@angular/core';
2
- import { MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
2
+ import { MatDialogRef } from '@angular/material/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";
7
6
  export declare class DialogWrapperComponent implements AfterViewInit, OnDestroy {
8
7
  dialogRef: MatDialogRef<DialogWrapperComponent>;
9
8
  private dialogService;
@@ -11,7 +10,7 @@ export declare class DialogWrapperComponent implements AfterViewInit, OnDestroy
11
10
  private componentFactoryResolver;
12
11
  dialogData: DataProp;
13
12
  content: ViewContainerRef;
14
- get elementClass(): SizeModal;
13
+ class: SizeModal;
15
14
  childComponent: any;
16
15
  isLoading: boolean;
17
16
  saving$: BehaviorSubject<boolean>;
@@ -23,6 +22,4 @@ export declare class DialogWrapperComponent implements AfterViewInit, OnDestroy
23
22
  onDecline(): void;
24
23
  onAcceptDialog(data?: any): void;
25
24
  ngOnDestroy(): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogWrapperComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<DialogWrapperComponent, "dr-dialog-wrapper", never, {}, {}, never, never, false, never>;
28
25
  }
@@ -1,14 +1,2 @@
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";
10
1
  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>;
14
2
  }
@@ -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 { MatLegacyDialogConfig as MatDialogConfig } from '@angular/material/legacy-dialog';
5
- type DialogConfig = Omit<MatDialogConfig, 'data'>;
4
+ import { MatDialogConfig } from '@angular/material/dialog';
5
+ declare 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 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 = {
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 = {
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 type TDialogFieldType = DIALOG_FIELD_TYPE;
126
+ export declare type TDialogFieldType = DIALOG_FIELD_TYPE;
127
127
  export {};
@@ -1,10 +1,9 @@
1
1
  import { ComponentType } from '@angular/cdk/portal';
2
- import { MatLegacyDialog as MatDialog, MatLegacyDialogRef as MatDialogRef } from '@angular/material/legacy-dialog';
2
+ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
3
3
  import { ConfirmDialogData, DialogData } from '../interfaces/dialog-data';
4
4
  import { DialogWrapperComponent } from '../components/dialog-wrapper/dialog-wrapper.component';
5
5
  import { DialogModalWrapperComponent } from '../components/dialog-modal-wrapper/dialog-modal-wrapper.component';
6
6
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
7
- import * as i0 from "@angular/core";
8
7
  export declare class DialogService {
9
8
  private dialog;
10
9
  private wrapperComponent;
@@ -26,6 +25,4 @@ export declare class DialogService {
26
25
  changeDialogThemeSize(theme: string): void;
27
26
  private openDialog;
28
27
  throwErr(err: Error, load?: Subject<any> | BehaviorSubject<any>): Observable<any>;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
30
- static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
31
28
  }
@@ -1,8 +1,5 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { IDropdownItem } from '../models/dropdown';
3
- import * as i0 from "@angular/core";
4
3
  export declare class DrDropdownItemShowPipe<T> implements PipeTransform {
5
4
  transform(arr: IDropdownItem<T>[]): IDropdownItem<T>[];
6
- static ɵfac: i0.ɵɵFactoryDeclaration<DrDropdownItemShowPipe<any>, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<DrDropdownItemShowPipe<any>, "drDropdownItemShowPipe", false>;
8
5
  }