@energycap/components 0.31.5 → 0.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (292) hide show
  1. package/energycap-components.min.css +2 -2
  2. package/energycap-email.min.css +1 -1
  3. package/esm2020/energycap-components.mjs +5 -0
  4. package/esm2020/lib/components.module.mjs +386 -0
  5. package/esm2020/lib/controls/banner/banner.component.mjs +106 -0
  6. package/esm2020/lib/controls/button/button.component.mjs +106 -0
  7. package/esm2020/lib/controls/button/copy-button.directive.mjs +65 -0
  8. package/esm2020/lib/controls/checkbox/checkbox.component.mjs +139 -0
  9. package/esm2020/lib/controls/collapsible-toggle/collapsible-toggle.component.mjs +38 -0
  10. package/esm2020/lib/controls/combobox/combobox.component.mjs +841 -0
  11. package/esm2020/lib/controls/dropdown/dropdown.component.mjs +237 -0
  12. package/esm2020/lib/controls/file-upload/file-upload.component.mjs +169 -0
  13. package/esm2020/lib/controls/form-control/form-control.component.mjs +86 -0
  14. package/esm2020/lib/controls/form-control-base.mjs +143 -0
  15. package/esm2020/lib/controls/form-control-label/form-control-label.component.mjs +136 -0
  16. package/esm2020/lib/controls/form-group/form-group.component.mjs +252 -0
  17. package/esm2020/lib/controls/help-popover/help-popover.component.mjs +28 -0
  18. package/esm2020/lib/controls/item-picker/item-picker.component.mjs +233 -0
  19. package/esm2020/lib/controls/link-button/link-button.component.mjs +11 -0
  20. package/esm2020/lib/controls/menu/menu.component.mjs +443 -0
  21. package/{esm2015/lib/controls/navigation/link-item.js → esm2020/lib/controls/navigation/link-item.mjs} +0 -0
  22. package/{esm2015/lib/controls/navigation/nav-group.js → esm2020/lib/controls/navigation/nav-group.mjs} +0 -0
  23. package/esm2020/lib/controls/navigation/nav-item-active.directive.mjs +92 -0
  24. package/{esm2015/lib/controls/navigation/nav-item.js → esm2020/lib/controls/navigation/nav-item.mjs} +0 -0
  25. package/esm2020/lib/controls/numericbox/numericbox.component.mjs +371 -0
  26. package/esm2020/lib/controls/popover/popover.component.mjs +84 -0
  27. package/{esm2015/lib/controls/radio-button/radio-button-option.js → esm2020/lib/controls/radio-button/radio-button-option.mjs} +0 -0
  28. package/esm2020/lib/controls/radio-button/radio-button.component.mjs +81 -0
  29. package/esm2020/lib/controls/select/select.component.mjs +87 -0
  30. package/esm2020/lib/controls/tabs/tabs.component.mjs +47 -0
  31. package/esm2020/lib/controls/textbox/textbox.component.mjs +154 -0
  32. package/{esm2015/lib/core/cache.service.js → esm2020/lib/core/cache.service.mjs} +9 -8
  33. package/{esm2015/lib/core/custom-validators.js → esm2020/lib/core/custom-validators.mjs} +0 -0
  34. package/{esm2015/lib/core/date-time-helper.js → esm2020/lib/core/date-time-helper.mjs} +0 -0
  35. package/esm2020/lib/core/error.service.mjs +57 -0
  36. package/esm2020/lib/core/scroll.service.mjs +89 -0
  37. package/esm2020/lib/core/telemetry-tracker.service.mjs +16 -0
  38. package/esm2020/lib/core/telemetry.service.mjs +38 -0
  39. package/esm2020/lib/core/validation-message.service.mjs +181 -0
  40. package/{esm2015/lib/core/validation-patterns.js → esm2020/lib/core/validation-patterns.mjs} +0 -0
  41. package/esm2020/lib/core/window.service.mjs +182 -0
  42. package/esm2020/lib/display/app-bar/app-bar.component.mjs +46 -0
  43. package/esm2020/lib/display/avatar/avatar.component.mjs +67 -0
  44. package/{esm2015/lib/display/avatar/avatar.service.js → esm2020/lib/display/avatar/avatar.service.mjs} +9 -7
  45. package/esm2020/lib/display/confirm/confirm.component.mjs +131 -0
  46. package/{esm2015/lib/display/dialog/dialog-content.js → esm2020/lib/display/dialog/dialog-content.mjs} +0 -0
  47. package/esm2020/lib/display/dialog/dialog-group/dialog-group.component.mjs +63 -0
  48. package/{esm2015/lib/display/dialog/dialog-types.js → esm2020/lib/display/dialog/dialog-types.mjs} +0 -0
  49. package/esm2020/lib/display/dialog/dialog.component.mjs +242 -0
  50. package/esm2020/lib/display/dialog/dialog.service.mjs +71 -0
  51. package/{esm2015/lib/display/help/help-types.js → esm2020/lib/display/help/help-types.mjs} +0 -0
  52. package/esm2020/lib/display/hierarchy/hierarchy-base.mjs +106 -0
  53. package/{esm2015/lib/display/hierarchy/hierarchy-mocks.spec.js → esm2020/lib/display/hierarchy/hierarchy-mocks.spec.mjs} +5 -9
  54. package/esm2020/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.mjs +59 -0
  55. package/esm2020/lib/display/item-display/item-display.component.mjs +67 -0
  56. package/esm2020/lib/display/json-display/json-display.component.mjs +47 -0
  57. package/esm2020/lib/display/resizable/resizable-base.mjs +120 -0
  58. package/esm2020/lib/display/resizable/resizable.component.mjs +57 -0
  59. package/esm2020/lib/display/spinner/spinner.component.mjs +12 -0
  60. package/esm2020/lib/display/splash/splash.component.mjs +42 -0
  61. package/esm2020/lib/display/splash/splash.service.mjs +35 -0
  62. package/esm2020/lib/display/table/resizable-column.component.mjs +20 -0
  63. package/esm2020/lib/display/table/resizable-table.directive.mjs +227 -0
  64. package/esm2020/lib/display/table/searchable-table.component.mjs +338 -0
  65. package/esm2020/lib/display/table/table-detail-row.component.mjs +27 -0
  66. package/esm2020/lib/display/table/table-locked-column.component.mjs +58 -0
  67. package/esm2020/lib/display/table/table-master-header-row.component.mjs +11 -0
  68. package/esm2020/lib/display/table/table-master-row.component.mjs +150 -0
  69. package/esm2020/lib/display/table/table-pagination.component.mjs +150 -0
  70. package/esm2020/lib/display/table/table-selectable-row.component.mjs +235 -0
  71. package/esm2020/lib/display/table/table.component.mjs +244 -0
  72. package/esm2020/lib/display/tags/tag.mjs +15 -0
  73. package/esm2020/lib/display/tags/tags.component.mjs +77 -0
  74. package/esm2020/lib/display/toast/toast/toast.component.mjs +77 -0
  75. package/{esm2015/lib/display/toast/toast-types.js → esm2020/lib/display/toast/toast-types.mjs} +0 -0
  76. package/esm2020/lib/display/toast/toast.service.mjs +35 -0
  77. package/esm2020/lib/display/toast/toaster/toaster.component.mjs +114 -0
  78. package/esm2020/lib/display/tooltip/tooltip.component.mjs +25 -0
  79. package/esm2020/lib/display/tooltip/tooltip.service.mjs +63 -0
  80. package/esm2020/lib/display/tree/tree.component.mjs +125 -0
  81. package/esm2020/lib/display/view-overlay/view-overlay.component.mjs +58 -0
  82. package/esm2020/lib/shared/directives/click-area-for/click-area-for.directive.mjs +32 -0
  83. package/esm2020/lib/shared/directives/if-viewport-width/if-viewport-width.directive.mjs +111 -0
  84. package/esm2020/lib/shared/directives/popup/popup-container.directive.mjs +163 -0
  85. package/esm2020/lib/shared/display/pipes/date-display.pipe.mjs +50 -0
  86. package/esm2020/lib/shared/display/pipes/highlight-text.pipe.mjs +30 -0
  87. package/esm2020/lib/shared/display/pipes/relative-date.pipe.mjs +48 -0
  88. package/esm2020/lib/shared/display/pipes/row-count.pipe.mjs +48 -0
  89. package/esm2020/lib/shared/display/pipes/time-display.pipe.mjs +41 -0
  90. package/{esm2015/lib/shared/display.js → esm2020/lib/shared/display.mjs} +0 -0
  91. package/esm2020/lib/shared/form-group.helper.mjs +67 -0
  92. package/{esm2015/lib/shared/json-helper.js → esm2020/lib/shared/json-helper.mjs} +0 -0
  93. package/{esm2015/lib/shared/lodash-helper.js → esm2020/lib/shared/lodash-helper.mjs} +0 -0
  94. package/esm2020/lib/shared/page/page-base/page-base.component.mjs +339 -0
  95. package/{esm2015/lib/shared/page/page-statuses.js → esm2020/lib/shared/page/page-statuses.mjs} +0 -0
  96. package/esm2020/lib/shared/page/page-title/page-title.component.mjs +23 -0
  97. package/esm2020/lib/shared/page/page-view/page-view.component.mjs +121 -0
  98. package/{esm2015/lib/shared/testing/hierarchy-base-test-injector-factory.spec.js → esm2020/lib/shared/testing/hierarchy-base-test-injector-factory.spec.mjs} +0 -0
  99. package/esm2020/lib/shared/testing/page-base-component-test-helper.spec.mjs +30 -0
  100. package/{esm2015/lib/shared/testing/page-base-component-test-injector-factory.spec.js → esm2020/lib/shared/testing/page-base-component-test-injector-factory.spec.mjs} +0 -0
  101. package/esm2020/lib/shared/testing/public-mocks.spec.mjs +132 -0
  102. package/{esm2015/lib/shared/testing/spy-factory.spec.js → esm2020/lib/shared/testing/spy-factory.spec.mjs} +0 -0
  103. package/{esm2015/lib/shared/testing/translation-mocks.spec.js → esm2020/lib/shared/testing/translation-mocks.spec.mjs} +0 -0
  104. package/esm2020/lib/shared/user-preference.service.mjs +17 -0
  105. package/esm2020/lib/shared/wizard/wizard-base/wizard-base.component.mjs +246 -0
  106. package/esm2020/lib/shared/wizard/wizard-buttons/wizard-buttons.component.mjs +68 -0
  107. package/esm2020/lib/shared/wizard/wizard-progress/wizard-progress.component.mjs +18 -0
  108. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  109. package/fesm2015/energycap-components.mjs +10090 -0
  110. package/fesm2015/energycap-components.mjs.map +1 -0
  111. package/fesm2020/energycap-components.mjs +9999 -0
  112. package/fesm2020/energycap-components.mjs.map +1 -0
  113. package/index.d.ts +5 -0
  114. package/lib/components.module.d.ts +72 -0
  115. package/lib/controls/banner/banner.component.d.ts +3 -0
  116. package/lib/controls/button/button.component.d.ts +3 -0
  117. package/lib/controls/button/copy-button.directive.d.ts +3 -0
  118. package/lib/controls/checkbox/checkbox.component.d.ts +3 -0
  119. package/lib/controls/collapsible-toggle/collapsible-toggle.component.d.ts +3 -0
  120. package/lib/controls/combobox/combobox.component.d.ts +5 -2
  121. package/lib/controls/dropdown/dropdown.component.d.ts +3 -0
  122. package/lib/controls/file-upload/file-upload.component.d.ts +5 -2
  123. package/lib/controls/form-control/form-control.component.d.ts +3 -0
  124. package/lib/controls/form-control-base.d.ts +3 -0
  125. package/lib/controls/form-control-label/form-control-label.component.d.ts +3 -0
  126. package/lib/controls/form-group/form-group.component.d.ts +6 -3
  127. package/lib/controls/help-popover/help-popover.component.d.ts +3 -0
  128. package/lib/controls/item-picker/item-picker.component.d.ts +5 -2
  129. package/lib/controls/link-button/link-button.component.d.ts +3 -0
  130. package/lib/controls/menu/menu.component.d.ts +3 -0
  131. package/lib/controls/navigation/nav-item-active.directive.d.ts +3 -0
  132. package/lib/controls/numericbox/numericbox.component.d.ts +5 -2
  133. package/lib/controls/popover/popover.component.d.ts +3 -0
  134. package/lib/controls/radio-button/radio-button.component.d.ts +3 -0
  135. package/lib/controls/select/select.component.d.ts +3 -0
  136. package/lib/controls/tabs/tabs.component.d.ts +3 -0
  137. package/lib/controls/textbox/textbox.component.d.ts +3 -0
  138. package/lib/core/cache.service.d.ts +3 -0
  139. package/lib/core/error.service.d.ts +3 -0
  140. package/lib/core/scroll.service.d.ts +3 -0
  141. package/lib/core/telemetry-tracker.service.d.ts +3 -0
  142. package/lib/core/telemetry.service.d.ts +3 -0
  143. package/lib/core/validation-message.service.d.ts +3 -0
  144. package/lib/core/window.service.d.ts +3 -0
  145. package/lib/display/app-bar/app-bar.component.d.ts +3 -0
  146. package/lib/display/avatar/avatar.component.d.ts +3 -0
  147. package/lib/display/avatar/avatar.service.d.ts +3 -0
  148. package/lib/display/confirm/confirm.component.d.ts +5 -2
  149. package/lib/display/dialog/dialog-group/dialog-group.component.d.ts +3 -0
  150. package/lib/display/dialog/dialog.component.d.ts +3 -0
  151. package/lib/display/dialog/dialog.service.d.ts +3 -0
  152. package/lib/display/hierarchy/hierarchy-base.d.ts +3 -0
  153. package/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.d.ts +3 -0
  154. package/lib/display/item-display/item-display.component.d.ts +3 -0
  155. package/lib/display/json-display/json-display.component.d.ts +5 -2
  156. package/lib/display/resizable/resizable-base.d.ts +3 -0
  157. package/lib/display/resizable/resizable.component.d.ts +3 -0
  158. package/lib/display/spinner/spinner.component.d.ts +3 -0
  159. package/lib/display/splash/splash.component.d.ts +3 -0
  160. package/lib/display/splash/splash.service.d.ts +3 -0
  161. package/lib/display/table/resizable-column.component.d.ts +3 -0
  162. package/lib/display/table/resizable-table.directive.d.ts +3 -0
  163. package/lib/display/table/searchable-table.component.d.ts +6 -3
  164. package/lib/display/table/table-detail-row.component.d.ts +3 -0
  165. package/lib/display/table/table-locked-column.component.d.ts +3 -0
  166. package/lib/display/table/table-master-header-row.component.d.ts +3 -0
  167. package/lib/display/table/table-master-row.component.d.ts +3 -0
  168. package/lib/display/table/table-pagination.component.d.ts +3 -0
  169. package/lib/display/table/table-selectable-row.component.d.ts +5 -2
  170. package/lib/display/table/table.component.d.ts +3 -0
  171. package/lib/display/tags/tags.component.d.ts +3 -0
  172. package/lib/display/toast/toast/toast.component.d.ts +3 -0
  173. package/lib/display/toast/toast.service.d.ts +3 -0
  174. package/lib/display/toast/toaster/toaster.component.d.ts +3 -0
  175. package/lib/display/tooltip/tooltip.component.d.ts +3 -0
  176. package/lib/display/tooltip/tooltip.service.d.ts +3 -0
  177. package/lib/display/tree/tree.component.d.ts +3 -0
  178. package/lib/display/view-overlay/view-overlay.component.d.ts +3 -0
  179. package/lib/shared/directives/click-area-for/click-area-for.directive.d.ts +3 -0
  180. package/lib/shared/directives/if-viewport-width/if-viewport-width.directive.d.ts +3 -0
  181. package/lib/shared/directives/popup/popup-container.directive.d.ts +3 -0
  182. package/lib/shared/display/pipes/date-display.pipe.d.ts +3 -0
  183. package/lib/shared/display/pipes/highlight-text.pipe.d.ts +3 -0
  184. package/lib/shared/display/pipes/relative-date.pipe.d.ts +3 -0
  185. package/lib/shared/display/pipes/row-count.pipe.d.ts +3 -0
  186. package/lib/shared/display/pipes/time-display.pipe.d.ts +3 -0
  187. package/lib/shared/form-group.helper.d.ts +5 -2
  188. package/lib/shared/page/page-base/page-base.component.d.ts +5 -2
  189. package/lib/shared/page/page-title/page-title.component.d.ts +3 -0
  190. package/lib/shared/page/page-view/page-view.component.d.ts +3 -0
  191. package/lib/shared/testing/public-mocks.spec.d.ts +7 -0
  192. package/lib/shared/user-preference.service.d.ts +3 -0
  193. package/lib/shared/wizard/wizard-base/wizard-base.component.d.ts +3 -0
  194. package/lib/shared/wizard/wizard-buttons/wizard-buttons.component.d.ts +3 -0
  195. package/lib/shared/wizard/wizard-progress/wizard-progress.component.d.ts +3 -0
  196. package/package.json +27 -15
  197. package/src/styles/_functions.scss +6 -4
  198. package/src/styles/_icons.scss +1 -1
  199. package/src/styles/mixins/_control-base.scss +2 -2
  200. package/src/styles/mixins/_form-control-base.scss +3 -1
  201. package/src/styles/mixins/_spinner-base.scss +3 -1
  202. package/bundles/energycap-components.umd.js +0 -10646
  203. package/bundles/energycap-components.umd.js.map +0 -1
  204. package/bundles/energycap-components.umd.min.js +0 -17
  205. package/bundles/energycap-components.umd.min.js.map +0 -1
  206. package/energycap-components.d.ts +0 -7
  207. package/energycap-components.metadata.json +0 -1
  208. package/esm2015/energycap-components.js +0 -8
  209. package/esm2015/lib/components.module.js +0 -238
  210. package/esm2015/lib/controls/banner/banner.component.js +0 -94
  211. package/esm2015/lib/controls/button/button.component.js +0 -89
  212. package/esm2015/lib/controls/button/copy-button.directive.js +0 -63
  213. package/esm2015/lib/controls/checkbox/checkbox.component.js +0 -137
  214. package/esm2015/lib/controls/collapsible-toggle/collapsible-toggle.component.js +0 -35
  215. package/esm2015/lib/controls/combobox/combobox.component.js +0 -819
  216. package/esm2015/lib/controls/dropdown/dropdown.component.js +0 -207
  217. package/esm2015/lib/controls/file-upload/file-upload.component.js +0 -172
  218. package/esm2015/lib/controls/form-control/form-control.component.js +0 -65
  219. package/esm2015/lib/controls/form-control-base.js +0 -140
  220. package/esm2015/lib/controls/form-control-label/form-control-label.component.js +0 -139
  221. package/esm2015/lib/controls/form-group/form-group.component.js +0 -254
  222. package/esm2015/lib/controls/help-popover/help-popover.component.js +0 -22
  223. package/esm2015/lib/controls/item-picker/item-picker.component.js +0 -216
  224. package/esm2015/lib/controls/link-button/link-button.component.js +0 -12
  225. package/esm2015/lib/controls/menu/menu.component.js +0 -424
  226. package/esm2015/lib/controls/navigation/nav-item-active.directive.js +0 -86
  227. package/esm2015/lib/controls/numericbox/numericbox.component.js +0 -362
  228. package/esm2015/lib/controls/popover/popover.component.js +0 -85
  229. package/esm2015/lib/controls/radio-button/radio-button.component.js +0 -78
  230. package/esm2015/lib/controls/select/select.component.js +0 -89
  231. package/esm2015/lib/controls/tabs/tabs.component.js +0 -42
  232. package/esm2015/lib/controls/textbox/textbox.component.js +0 -149
  233. package/esm2015/lib/core/error.service.js +0 -56
  234. package/esm2015/lib/core/scroll.service.js +0 -88
  235. package/esm2015/lib/core/telemetry-tracker.service.js +0 -14
  236. package/esm2015/lib/core/telemetry.service.js +0 -40
  237. package/esm2015/lib/core/validation-message.service.js +0 -185
  238. package/esm2015/lib/core/window.service.js +0 -191
  239. package/esm2015/lib/display/app-bar/app-bar.component.js +0 -42
  240. package/esm2015/lib/display/avatar/avatar.component.js +0 -73
  241. package/esm2015/lib/display/confirm/confirm.component.js +0 -127
  242. package/esm2015/lib/display/dialog/dialog-group/dialog-group.component.js +0 -65
  243. package/esm2015/lib/display/dialog/dialog.component.js +0 -229
  244. package/esm2015/lib/display/dialog/dialog.service.js +0 -69
  245. package/esm2015/lib/display/hierarchy/hierarchy-base.js +0 -106
  246. package/esm2015/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.js +0 -58
  247. package/esm2015/lib/display/item-display/item-display.component.js +0 -57
  248. package/esm2015/lib/display/json-display/json-display.component.js +0 -44
  249. package/esm2015/lib/display/resizable/resizable-base.js +0 -119
  250. package/esm2015/lib/display/resizable/resizable.component.js +0 -57
  251. package/esm2015/lib/display/spinner/spinner.component.js +0 -12
  252. package/esm2015/lib/display/splash/splash.component.js +0 -45
  253. package/esm2015/lib/display/splash/splash.service.js +0 -34
  254. package/esm2015/lib/display/table/resizable-column.component.js +0 -23
  255. package/esm2015/lib/display/table/resizable-table.directive.js +0 -223
  256. package/esm2015/lib/display/table/searchable-table.component.js +0 -303
  257. package/esm2015/lib/display/table/table-detail-row.component.js +0 -21
  258. package/esm2015/lib/display/table/table-locked-column.component.js +0 -53
  259. package/esm2015/lib/display/table/table-master-header-row.component.js +0 -11
  260. package/esm2015/lib/display/table/table-master-row.component.js +0 -141
  261. package/esm2015/lib/display/table/table-pagination.component.js +0 -146
  262. package/esm2015/lib/display/table/table-selectable-row.component.js +0 -216
  263. package/esm2015/lib/display/table/table.component.js +0 -210
  264. package/esm2015/lib/display/tags/tag.js +0 -15
  265. package/esm2015/lib/display/tags/tags.component.js +0 -73
  266. package/esm2015/lib/display/toast/toast/toast.component.js +0 -70
  267. package/esm2015/lib/display/toast/toast.service.js +0 -34
  268. package/esm2015/lib/display/toast/toaster/toaster.component.js +0 -117
  269. package/esm2015/lib/display/tooltip/tooltip.component.js +0 -24
  270. package/esm2015/lib/display/tooltip/tooltip.service.js +0 -64
  271. package/esm2015/lib/display/tree/tree.component.js +0 -100
  272. package/esm2015/lib/display/view-overlay/view-overlay.component.js +0 -50
  273. package/esm2015/lib/shared/directives/click-area-for/click-area-for.directive.js +0 -25
  274. package/esm2015/lib/shared/directives/if-viewport-width/if-viewport-width.directive.js +0 -112
  275. package/esm2015/lib/shared/directives/popup/popup-container.directive.js +0 -160
  276. package/esm2015/lib/shared/display/pipes/date-display.pipe.js +0 -49
  277. package/esm2015/lib/shared/display/pipes/highlight-text.pipe.js +0 -26
  278. package/esm2015/lib/shared/display/pipes/relative-date.pipe.js +0 -49
  279. package/esm2015/lib/shared/display/pipes/row-count.pipe.js +0 -47
  280. package/esm2015/lib/shared/display/pipes/time-display.pipe.js +0 -40
  281. package/esm2015/lib/shared/form-group.helper.js +0 -65
  282. package/esm2015/lib/shared/page/page-base/page-base.component.js +0 -356
  283. package/esm2015/lib/shared/page/page-title/page-title.component.js +0 -19
  284. package/esm2015/lib/shared/page/page-view/page-view.component.js +0 -94
  285. package/esm2015/lib/shared/testing/page-base-component-test-helper.spec.js +0 -35
  286. package/esm2015/lib/shared/testing/public-mocks.spec.js +0 -126
  287. package/esm2015/lib/shared/user-preference.service.js +0 -15
  288. package/esm2015/lib/shared/wizard/wizard-base/wizard-base.component.js +0 -260
  289. package/esm2015/lib/shared/wizard/wizard-buttons/wizard-buttons.component.js +0 -54
  290. package/esm2015/lib/shared/wizard/wizard-progress/wizard-progress.component.js +0 -18
  291. package/fesm2015/energycap-components.js +0 -9638
  292. package/fesm2015/energycap-components.js.map +0 -1
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@energycap/components" />
5
+ export * from './public-api';
@@ -1,4 +1,73 @@
1
1
  import { ModuleWithProviders, Provider } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./controls/button/button.component";
4
+ import * as i2 from "./controls/tabs/tabs.component";
5
+ import * as i3 from "./controls/textbox/textbox.component";
6
+ import * as i4 from "./controls/navigation/nav-item-active.directive";
7
+ import * as i5 from "./display/spinner/spinner.component";
8
+ import * as i6 from "./display/view-overlay/view-overlay.component";
9
+ import * as i7 from "./controls/banner/banner.component";
10
+ import * as i8 from "./display/table/resizable-table.directive";
11
+ import * as i9 from "./display/table/table.component";
12
+ import * as i10 from "./display/table/searchable-table.component";
13
+ import * as i11 from "./controls/combobox/combobox.component";
14
+ import * as i12 from "./controls/menu/menu.component";
15
+ import * as i13 from "./shared/directives/popup/popup-container.directive";
16
+ import * as i14 from "./controls/dropdown/dropdown.component";
17
+ import * as i15 from "./display/confirm/confirm.component";
18
+ import * as i16 from "./display/dialog/dialog.component";
19
+ import * as i17 from "./shared/display/pipes/date-display.pipe";
20
+ import * as i18 from "./shared/display/pipes/time-display.pipe";
21
+ import * as i19 from "./shared/testing/public-mocks.spec";
22
+ import * as i20 from "./controls/radio-button/radio-button.component";
23
+ import * as i21 from "./controls/checkbox/checkbox.component";
24
+ import * as i22 from "./controls/numericbox/numericbox.component";
25
+ import * as i23 from "./display/avatar/avatar.component";
26
+ import * as i24 from "./display/app-bar/app-bar.component";
27
+ import * as i25 from "./display/splash/splash.component";
28
+ import * as i26 from "./shared/directives/if-viewport-width/if-viewport-width.directive";
29
+ import * as i27 from "./shared/directives/click-area-for/click-area-for.directive";
30
+ import * as i28 from "./controls/collapsible-toggle/collapsible-toggle.component";
31
+ import * as i29 from "./display/table/table-master-row.component";
32
+ import * as i30 from "./display/table/table-master-header-row.component";
33
+ import * as i31 from "./display/table/table-detail-row.component";
34
+ import * as i32 from "./display/table/table-locked-column.component";
35
+ import * as i33 from "./display/table/table-selectable-row.component";
36
+ import * as i34 from "./controls/popover/popover.component";
37
+ import * as i35 from "./display/table/table-pagination.component";
38
+ import * as i36 from "./shared/display/pipes/row-count.pipe";
39
+ import * as i37 from "./controls/button/copy-button.directive";
40
+ import * as i38 from "./display/tags/tags.component";
41
+ import * as i39 from "./controls/form-control/form-control.component";
42
+ import * as i40 from "./controls/select/select.component";
43
+ import * as i41 from "./display/item-display/item-display.component";
44
+ import * as i42 from "./display/table/resizable-column.component";
45
+ import * as i43 from "./display/dialog/dialog-group/dialog-group.component";
46
+ import * as i44 from "./controls/file-upload/file-upload.component";
47
+ import * as i45 from "./controls/form-group/form-group.component";
48
+ import * as i46 from "./display/json-display/json-display.component";
49
+ import * as i47 from "./display/toast/toast/toast.component";
50
+ import * as i48 from "./display/toast/toaster/toaster.component";
51
+ import * as i49 from "./shared/page/page-view/page-view.component";
52
+ import * as i50 from "./shared/page/page-title/page-title.component";
53
+ import * as i51 from "./shared/wizard/wizard-progress/wizard-progress.component";
54
+ import * as i52 from "./shared/wizard/wizard-buttons/wizard-buttons.component";
55
+ import * as i53 from "./display/hierarchy/hierarchy-tree/hierarchy-tree.component";
56
+ import * as i54 from "./display/tree/tree.component";
57
+ import * as i55 from "./shared/display/pipes/relative-date.pipe";
58
+ import * as i56 from "./display/resizable/resizable.component";
59
+ import * as i57 from "./shared/display/pipes/highlight-text.pipe";
60
+ import * as i58 from "./controls/form-control-label/form-control-label.component";
61
+ import * as i59 from "./controls/item-picker/item-picker.component";
62
+ import * as i60 from "./controls/help-popover/help-popover.component";
63
+ import * as i61 from "./controls/link-button/link-button.component";
64
+ import * as i62 from "./display/tooltip/tooltip.component";
65
+ import * as i63 from "@angular/common";
66
+ import * as i64 from "@angular/forms";
67
+ import * as i65 from "@angular/router";
68
+ import * as i66 from "@ngx-translate/core";
69
+ import * as i67 from "@angular/cdk/a11y";
70
+ import * as i68 from "@angular/cdk/overlay";
2
71
  export declare type ComponentsModuleConfig = {
3
72
  tracker: Provider;
4
73
  };
@@ -9,4 +78,7 @@ export declare class ComponentsModule {
9
78
  * For more info: https://angular.io/guide/singleton-services#the-forroot-pattern
10
79
  */
11
80
  static forRoot(config: ComponentsModuleConfig): ModuleWithProviders<ComponentsModule>;
81
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComponentsModule, never>;
82
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ComponentsModule, [typeof i1.ButtonComponent, typeof i2.TabsComponent, typeof i3.TextboxComponent, typeof i4.NavItemActiveDirective, typeof i5.SpinnerComponent, typeof i6.ViewOverlayComponent, typeof i7.BannerComponent, typeof i8.ResizableTableDirective, typeof i2.TabsComponent, typeof i9.TableComponent, typeof i10.SearchableTableComponent, typeof i11.ComboboxComponent, typeof i12.MenuComponent, typeof i13.PopupContainerDirective, typeof i14.DropdownComponent, typeof i15.ConfirmComponent, typeof i16.DialogComponent, typeof i17.DateDisplayPipe, typeof i18.TimeDisplayPipe, typeof i19.MockDateDisplayPipe, typeof i20.RadioButtonComponent, typeof i21.CheckboxComponent, typeof i22.NumericboxComponent, typeof i23.AvatarComponent, typeof i24.AppBarComponent, typeof i25.SplashComponent, typeof i26.IfViewportWidthDirective, typeof i27.ClickAreaForDirective, typeof i28.CollapsibleToggleComponent, typeof i29.TableMasterRowComponent, typeof i30.TableMasterHeaderRowComponent, typeof i31.TableDetailRowComponent, typeof i32.TableLockedColumnComponent, typeof i33.TableSelectableRowComponent, typeof i34.PopoverComponent, typeof i35.TablePaginationComponent, typeof i36.RowCountPipe, typeof i37.CopyButtonDirective, typeof i35.TablePaginationComponent, typeof i38.TagsComponent, typeof i39.FormControlComponent, typeof i40.SelectComponent, typeof i41.ItemDisplayComponent, typeof i33.TableSelectableRowComponent, typeof i42.ResizableColumnComponent, typeof i43.DialogGroupComponent, typeof i44.FileUploadComponent, typeof i45.FormGroupComponent, typeof i46.JsonDisplayComponent, typeof i47.ToastComponent, typeof i48.ToasterComponent, typeof i49.PageViewComponent, typeof i50.PageTitleComponent, typeof i51.WizardProgressComponent, typeof i52.WizardButtonsComponent, typeof i53.HierarchyTreeComponent, typeof i54.TreeComponent, typeof i55.RelativeDatePipe, typeof i56.ResizableComponent, typeof i57.HighlightTextPipe, typeof i58.FormControlLabelComponent, typeof i59.ItemPickerComponent, typeof i60.HelpPopoverComponent, typeof i61.LinkButtonComponent, typeof i62.TooltipComponent], [typeof i63.CommonModule, typeof i64.FormsModule, typeof i64.ReactiveFormsModule, typeof i65.RouterModule, typeof i66.TranslateModule, typeof i67.A11yModule, typeof i68.OverlayModule], [typeof i1.ButtonComponent, typeof i2.TabsComponent, typeof i3.TextboxComponent, typeof i4.NavItemActiveDirective, typeof i5.SpinnerComponent, typeof i6.ViewOverlayComponent, typeof i7.BannerComponent, typeof i2.TabsComponent, typeof i9.TableComponent, typeof i10.SearchableTableComponent, typeof i11.ComboboxComponent, typeof i12.MenuComponent, typeof i13.PopupContainerDirective, typeof i14.DropdownComponent, typeof i15.ConfirmComponent, typeof i16.DialogComponent, typeof i17.DateDisplayPipe, typeof i18.TimeDisplayPipe, typeof i20.RadioButtonComponent, typeof i21.CheckboxComponent, typeof i22.NumericboxComponent, typeof i23.AvatarComponent, typeof i24.AppBarComponent, typeof i25.SplashComponent, typeof i26.IfViewportWidthDirective, typeof i27.ClickAreaForDirective, typeof i28.CollapsibleToggleComponent, typeof i29.TableMasterRowComponent, typeof i30.TableMasterHeaderRowComponent, typeof i32.TableLockedColumnComponent, typeof i33.TableSelectableRowComponent, typeof i34.PopoverComponent, typeof i37.CopyButtonDirective, typeof i35.TablePaginationComponent, typeof i38.TagsComponent, typeof i39.FormControlComponent, typeof i40.SelectComponent, typeof i41.ItemDisplayComponent, typeof i42.ResizableColumnComponent, typeof i43.DialogGroupComponent, typeof i44.FileUploadComponent, typeof i45.FormGroupComponent, typeof i46.JsonDisplayComponent, typeof i47.ToastComponent, typeof i48.ToasterComponent, typeof i49.PageViewComponent, typeof i50.PageTitleComponent, typeof i51.WizardProgressComponent, typeof i52.WizardButtonsComponent, typeof i53.HierarchyTreeComponent, typeof i54.TreeComponent, typeof i55.RelativeDatePipe, typeof i56.ResizableComponent, typeof i57.HighlightTextPipe, typeof i58.FormControlLabelComponent, typeof i59.ItemPickerComponent, typeof i60.HelpPopoverComponent, typeof i61.LinkButtonComponent, typeof i62.TooltipComponent]>;
83
+ static ɵinj: i0.ɵɵInjectorDeclaration<ComponentsModule>;
12
84
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnChanges } from '@angular/core';
2
2
  import { CacheService } from '../../core/cache.service';
3
+ import * as i0 from "@angular/core";
3
4
  export declare type BannerType = 'info' | 'warning' | 'error' | 'success';
4
5
  export declare type BannerStyle = 'normal' | 'pinned' | 'toast';
5
6
  export declare type BannerCacheEntry = {
@@ -44,4 +45,6 @@ export declare class BannerComponent implements OnChanges {
44
45
  /** On close, explicitly hide the banner one time. If the input changes afterward then it can reappear*/
45
46
  close(): void;
46
47
  private getIconByBannerType;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<BannerComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<BannerComponent, "ec-banner", never, { "hidden": "hidden"; "id": "id"; "type": "type"; "bannerStyle": "bannerStyle"; "title": "title"; "text": "text"; "list": "list"; "showCloseBtn": "showCloseBtn"; "autoHideOnClose": "autoHideOnClose"; "customIcon": "customIcon"; "rememberClosed": "rememberClosed"; }, { "closed": "closed"; }, never, ["*"], false>;
47
50
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter, OnInit, ElementRef, TemplateRef, AfterViewInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * "Submit" button type is deprecated. Use the isSubmit input instead.
4
5
  * This allows you to make any button type a submit button.
@@ -72,4 +73,6 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
72
73
  */
73
74
  onClick(event: any): void;
74
75
  focus(): void;
76
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ec-button", never, { "id": "id"; "disabled": "disabled"; "icon": "icon"; "label": "label"; "badge": "badge"; "tabindex": "tabindex"; "type": "type"; "pending": "pending"; "pendingIcon": "pendingIcon"; "customTemplate": "customTemplate"; "isSubmit": "isSubmit"; "autofocus": "autofocus"; }, { "clicked": "clicked"; }, never, never, false>;
75
78
  }
@@ -2,6 +2,7 @@ import { OnInit, OnDestroy } from '@angular/core';
2
2
  import { AbstractControl } from '@angular/forms';
3
3
  import { ClipboardService } from 'ngx-clipboard';
4
4
  import { ButtonComponent } from './button.component';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class CopyButtonDirective implements OnInit, OnDestroy {
6
7
  control: ButtonComponent;
7
8
  private clipboardService;
@@ -16,4 +17,6 @@ export declare class CopyButtonDirective implements OnInit, OnDestroy {
16
17
  ngOnInit(): void;
17
18
  ngOnDestroy(): void;
18
19
  private onClick;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<CopyButtonDirective, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CopyButtonDirective, "[ecCopyButton]", never, { "copyFormModel": "ecCopyButton"; }, {}, never, never, false>;
19
22
  }
@@ -4,6 +4,7 @@ import { FormGroupHelper } from '../../shared/form-group.helper';
4
4
  import { FormControlBase } from "../form-control-base";
5
5
  import { AbstractControl } from '@angular/forms';
6
6
  import { ClickableElement } from '../../shared/directives/click-area-for/click-area-for.directive';
7
+ import * as i0 from "@angular/core";
7
8
  export declare type CheckboxState = 'unchecked' | 'indeterminate' | 'checked';
8
9
  export declare class CheckboxComponent extends FormControlBase implements AfterViewInit, ClickableElement, OnChanges {
9
10
  protected validationMessageService: ValidationMessageService;
@@ -59,4 +60,6 @@ export declare class CheckboxComponent extends FormControlBase implements AfterV
59
60
  * If ignoreDisabledDependents is true, does not include the disabled dependents when checking values
60
61
  */
61
62
  private updateMasterState;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
64
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ec-checkbox", never, { "name": "name"; "dependentCheckboxesGroup": "dependentCheckboxesGroup"; "ignoreDisabledDependents": "ignoreDisabledDependents"; }, {}, never, never, false>;
62
65
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class CollapsibleToggleComponent {
3
4
  /**
4
5
  * Identifier to pass to the button
@@ -19,4 +20,6 @@ export declare class CollapsibleToggleComponent {
19
20
  * On click, toggle the value of exanded and emit the current value
20
21
  */
21
22
  onToggle(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<CollapsibleToggleComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<CollapsibleToggleComponent, "ec-collapsible-toggle", never, { "id": "id"; "expanded": "expanded"; "tabindex": "tabindex"; }, { "expandedChange": "expandedChange"; }, never, never, false>;
22
25
  }
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter, OnInit, OnChanges, SimpleChanges, AfterViewInit, TemplateRef } from '@angular/core';
2
- import { FormControl } from "@angular/forms";
2
+ import { UntypedFormControl } from "@angular/forms";
3
3
  import { TranslateService } from "@ngx-translate/core";
4
4
  import { FormControlBase } from '../form-control-base';
5
5
  import { Observable } from 'rxjs';
@@ -9,6 +9,7 @@ import { FormGroupHelper } from '../../shared/form-group.helper';
9
9
  import { MenuItem, MenuTemplateType, MenuHostElementClasses } from '../menu/menu.component';
10
10
  import { PopupStatus } from '../../shared/directives/popup/popup-container.directive';
11
11
  import { ScrollService } from '../../core/scroll.service';
12
+ import * as i0 from "@angular/core";
12
13
  /**
13
14
  * Position of the menu relative to the input
14
15
  */
@@ -169,7 +170,7 @@ export declare class ComboboxComponent extends FormControlBase implements OnInit
169
170
  /**
170
171
  * FormControl for the textbox
171
172
  */
172
- textboxFormModel: FormControl;
173
+ textboxFormModel: UntypedFormControl;
173
174
  /**
174
175
  * Tracks whether the add new button is selected
175
176
  */
@@ -373,5 +374,7 @@ export declare class ComboboxComponent extends FormControlBase implements OnInit
373
374
  * to indicate no selection
374
375
  */
375
376
  private findDefaultSelectionIndex;
377
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxComponent, never>;
378
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "ec-combobox", never, { "addNew": "addNew"; "maxlength": "maxlength"; "menuPosition": "menuPosition"; "minlength": "minlength"; "options": "options"; "templateType": "templateType"; "customMenuTemplate": "customMenuTemplate"; "popupFixed": "popupFixed"; "totalRecords": "totalRecords"; "upperCase": "upperCase"; "placeholder": "placeholder"; "loadOnOpenObservable": "loadOnOpenObservable"; "hideToggleButton": "hideToggleButton"; "alwaysOpen": "alwaysOpen"; "menuElementClasses": "menuElementClasses"; "textboxElementClasses": "textboxElementClasses"; "hideNoMatches": "hideNoMatches"; "noMatchesText": "noMatchesText"; }, { "addNewClick": "addNewClick"; "search": "search"; }, never, never, false>;
376
379
  }
377
380
  export {};
@@ -3,6 +3,7 @@ import { MenuTemplateType, MenuItem } from '../menu/menu.component';
3
3
  import { ButtonType } from '../button/button.component';
4
4
  import { DisplayStatus } from '../../shared/display';
5
5
  import { PopupStatus } from '../../shared/directives/popup/popup-container.directive';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class DropdownComponent implements OnInit, AfterViewInit, OnDestroy {
7
8
  /**
8
9
  * Base id for the component's sub-elements
@@ -151,4 +152,6 @@ export declare class DropdownComponent implements OnInit, AfterViewInit, OnDestr
151
152
  * Closes the menu if the tab key is pressed
152
153
  */
153
154
  keyNavigate(event: KeyboardEvent): void;
155
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
156
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ec-dropdown", never, { "id": "id"; "autofocus": "autofocus"; "status": "status"; "disabled": "disabled"; "label": "label"; "icon": "icon"; "buttonType": "buttonType"; "buttonAlignment": "buttonAlignment"; "buttonTitle": "buttonTitle"; "tabindex": "tabindex"; "showArrow": "showArrow"; "items": "items"; "menuTemplateType": "menuTemplateType"; "menuTitle": "menuTitle"; "menuHeight": "menuHeight"; "menuWidth": "menuWidth"; "menuMinWidth": "menuMinWidth"; "menuPosition": "menuPosition"; "menuFooter": "menuFooter"; "popupFixed": "popupFixed"; "buttonCustomTemplate": "buttonCustomTemplate"; "pending": "pending"; }, { "itemSelected": "itemSelected"; "popupOpened": "popupOpened"; }, never, never, false>;
154
157
  }
@@ -1,8 +1,9 @@
1
1
  import { ElementRef, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
- import { FormGroup, ValidatorFn } from '@angular/forms';
2
+ import { UntypedFormGroup, ValidatorFn } from '@angular/forms';
3
3
  import { ValidationMessageService } from '../../core/validation-message.service';
4
4
  import { FormGroupHelper } from '../../shared/form-group.helper';
5
5
  import { FormControlBase } from '../form-control-base';
6
+ import * as i0 from "@angular/core";
6
7
  export declare type FileType = 'zip' | 'excel' | 'custom';
7
8
  export declare type FileOutput = 'raw' | 'base64';
8
9
  export declare const FileTypeExtensions: {
@@ -12,7 +13,7 @@ export declare const FileTypeExtensions: {
12
13
  export declare class FileUploadComponent extends FormControlBase implements OnInit, OnChanges {
13
14
  protected validationMessageService: ValidationMessageService;
14
15
  protected formGroupHelper: FormGroupHelper;
15
- static getFormModel(validators: ValidatorFn[], disabled?: boolean): FormGroup;
16
+ static getFormModel(validators: ValidatorFn[], disabled?: boolean): UntypedFormGroup;
16
17
  /**
17
18
  * The value of the textbox input's placeholder
18
19
  */
@@ -67,4 +68,6 @@ export declare class FileUploadComponent extends FormControlBase implements OnIn
67
68
  * @param onFileSelectedResult
68
69
  */
69
70
  private patchFileResult;
71
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ec-file-upload", never, { "placeholder": "placeholder"; "fileType": "fileType"; "fileOutput": "fileOutput"; "customExtensions": "customExtensions"; "onFileSelected": "onFileSelected"; }, {}, never, never, false>;
70
73
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef, EventEmitter, AfterViewInit } from '@angular/core';
2
2
  import { AbstractControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FormControlComponent implements AfterViewInit {
4
5
  private el;
5
6
  formModel?: AbstractControl;
@@ -19,4 +20,6 @@ export declare class FormControlComponent implements AfterViewInit {
19
20
  onClick(): void;
20
21
  focus(): void;
21
22
  clear(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormControlComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormControlComponent, "ec-form-control", never, { "id": "id"; "icon": "icon"; "actionIcon": "actionIcon"; "showClear": "showClear"; "pending": "pending"; "required": "required"; "readonly": "readonly"; }, { "actionClicked": "actionClicked"; }, ["formModel"], ["*"], false>;
22
25
  }
@@ -3,6 +3,7 @@ import { AbstractControl } from "@angular/forms";
3
3
  import { Subject } from "rxjs";
4
4
  import { ValidationMessageService } from "../core/validation-message.service";
5
5
  import { FormGroupHelper } from '../shared/form-group.helper';
6
+ import * as i0 from "@angular/core";
6
7
  export declare type ControlLabelPosition = "top" | "bottom" | "left";
7
8
  /**
8
9
  * Base class for Reactive Form Controls, containing ECI-specific shared properties
@@ -95,4 +96,6 @@ export declare abstract class FormControlBase implements OnInit, OnDestroy, OnCh
95
96
  * to take any erros and translate them
96
97
  */
97
98
  protected translateValidationMessages(data?: any): Promise<void>;
99
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormControlBase, never>;
100
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlBase, never, never, { "autofocus": "autofocus"; "formModel": "formModel"; "label": "label"; "labelPosition": "labelPosition"; "id": "id"; "pending": "pending"; "required": "required"; "tabindex": "tabindex"; "readonly": "readonly"; "tooltip": "tooltip"; }, {}, never, never, false>;
98
101
  }
@@ -3,6 +3,7 @@ import { AbstractControl } from '@angular/forms';
3
3
  import { TranslateService } from '@ngx-translate/core';
4
4
  import { ValidationMessageService } from '../../core/validation-message.service';
5
5
  import { ControlLabelPosition } from '../form-control-base';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class FormControlLabelComponent implements OnInit {
7
8
  protected validationMessageService: ValidationMessageService;
8
9
  private translateService;
@@ -67,4 +68,6 @@ export declare class FormControlLabelComponent implements OnInit {
67
68
  * @memberof FormControlBase
68
69
  */
69
70
  private translateValidationMessages;
71
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormControlLabelComponent, never>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormControlLabelComponent, "ec-form-control-label", never, { "id": "id"; "label": "label"; "control": "control"; "labelPosition": "labelPosition"; "overrideValidationError": "overrideValidationError"; "hideValidationMessage": "hideValidationMessage"; }, {}, never, never, false>;
70
73
  }
@@ -1,8 +1,9 @@
1
1
  import { OnInit } from "@angular/core";
2
- import { FormGroup, FormArray, AbstractControl } from "@angular/forms";
2
+ import { UntypedFormGroup, UntypedFormArray, AbstractControl } from "@angular/forms";
3
3
  import { TranslateService } from "@ngx-translate/core";
4
4
  import { ValidationMessageService } from "../../core/validation-message.service";
5
5
  import { ControlLabelPosition } from "../form-control-base";
6
+ import * as i0 from "@angular/core";
6
7
  /** Function to iterate over form controls and
7
8
  * ensure they contain unique values. If any are duplicated all offending
8
9
  * form controls will be marked as invalid
@@ -13,7 +14,7 @@ import { ControlLabelPosition } from "../form-control-base";
13
14
  * if explicitly null, this function assumes value is not a complex object and just extracts
14
15
  * formGroup.control.value
15
16
  */
16
- export declare const validateFormGroupValuesAreUnique: (fg: FormGroup | FormArray, valueProperty?: string | null, subProperty?: string | undefined) => void;
17
+ export declare const validateFormGroupValuesAreUnique: (fg: UntypedFormGroup | UntypedFormArray, valueProperty?: string | null, subProperty?: string | undefined) => void;
17
18
  /**
18
19
  * Function to iterate over for controls and invoke the callback function when they are found.
19
20
  * Recursively calls itself when it encounters sub form groups and iterates over form arrays.
@@ -48,7 +49,7 @@ export declare class FormGroupComponent implements OnInit {
48
49
  * @type {FormGroup}
49
50
  * @memberof FormControlBase
50
51
  */
51
- formGroup?: FormGroup;
52
+ formGroup?: UntypedFormGroup;
52
53
  /**
53
54
  * The position of the form control label (top|bottom|left)
54
55
  */
@@ -90,4 +91,6 @@ export declare class FormGroupComponent implements OnInit {
90
91
  * @memberof FormControlBase
91
92
  */
92
93
  private translateValidationMessages;
94
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupComponent, never>;
95
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormGroupComponent, "ec-form-group", never, { "id": "id"; "label": "label"; "formGroup": "formGroup"; "labelPosition": "labelPosition"; "overrideValidationError": "overrideValidationError"; "hideValidationMessage": "hideValidationMessage"; }, {}, never, ["*"], false>;
93
96
  }
@@ -1,7 +1,10 @@
1
1
  import { PopoverContentPosition } from '../popover/popover.component';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class HelpPopoverComponent {
3
4
  id: string;
4
5
  text: string;
5
6
  contentPosition: PopoverContentPosition;
6
7
  constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<HelpPopoverComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<HelpPopoverComponent, "ec-help-popover", never, { "id": "id"; "text": "text"; "contentPosition": "contentPosition"; }, {}, never, ["*"], false>;
7
10
  }
@@ -1,11 +1,12 @@
1
1
  import { OnChanges, OnDestroy, OnInit, TemplateRef } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
2
+ import { UntypedFormGroup } from '@angular/forms';
3
3
  import { Observable, Subject } from 'rxjs';
4
4
  import { TableSearchResults } from '../../display/table/searchable-table.component';
5
5
  import { PagingInfo } from '../../display/table/table-pagination.component';
6
6
  import { TableSelectableRowContext } from '../../display/table/table-selectable-row.component';
7
7
  import { Overlay } from '../../display/view-overlay/view-overlay.component';
8
8
  import { MenuItem } from '../menu/menu.component';
9
+ import * as i0 from "@angular/core";
9
10
  export interface PickerItem<TValue = any, SItems = any> extends MenuItem {
10
11
  id: string;
11
12
  /** When set to true the available item will be automatically added to the selected list */
@@ -38,7 +39,7 @@ export declare class ItemPickerComponent<T> implements OnInit, OnChanges, OnDest
38
39
  /** The type of item being selected. Ex. Meters, Addresses */
39
40
  itemName: string;
40
41
  /** Form group that is given to the internal Searchable Table */
41
- formModel?: FormGroup;
42
+ formModel?: UntypedFormGroup;
42
43
  /** Template for when a custom header is needed for the available items table */
43
44
  customAvailableHeaderTemplate?: TemplateRef<any>;
44
45
  /** Template for when a custom available item is needed. Default template is a label only */
@@ -118,4 +119,6 @@ export declare class ItemPickerComponent<T> implements OnInit, OnChanges, OnDest
118
119
  */
119
120
  private setupSelectedItemsChangedWatcher;
120
121
  private setInternalizedTemplates;
122
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItemPickerComponent<any>, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItemPickerComponent<any>, "ec-item-picker", never, { "id": "id"; "availableTitle": "availableTitle"; "selectedTitle": "selectedTitle"; "itemName": "itemName"; "formModel": "formModel"; "customAvailableHeaderTemplate": "customAvailableHeaderTemplate"; "customAvailableItemTemplate": "customAvailableItemTemplate"; "customSelectedItemTemplate": "customSelectedItemTemplate"; "ready": "ready"; "getItems": "getItems"; "selectionContext": "selectionContext"; "noDataMessage": "noDataMessage"; "noSelectedItemsMessage": "noSelectedItemsMessage"; }, {}, never, never, false>;
121
124
  }
@@ -1,2 +1,5 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class LinkButtonComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<LinkButtonComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "button[ecLinkButton]", never, {}, {}, never, ["*"], false>;
2
5
  }
@@ -2,6 +2,7 @@ import { TemplateRef, EventEmitter, AfterContentInit, Renderer2, ElementRef, OnD
2
2
  import { NavItem } from '../navigation/nav-item';
3
3
  import { WindowService } from '../../core/window.service';
4
4
  import { ScrollService } from '../../core/scroll.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare type MenuTemplateType = "label" | "iconAndLabel" | "checkAndLabel";
6
7
  export declare type MenuHostElementClasses = 'bg-transparent';
7
8
  export interface MenuItem<TValue = any, SItems = any> extends NavItem {
@@ -215,4 +216,6 @@ export declare class MenuComponent implements AfterContentInit, OnDestroy {
215
216
  * Sets the menu item ids using its index if item doesn't already have one
216
217
  */
217
218
  private setItemIds;
219
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
220
+ static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "ec-menu", never, { "id": "id"; "items": "items"; "selected": "selected"; "parent": "parent"; "templateType": "templateType"; "customMenuTemplate": "customMenuTemplate"; "title": "title"; "showNoItems": "showNoItems"; "noDataText": "noDataText"; "enableKeyNav": "enableKeyNav"; "highlightedItem": "highlightedItem"; "maintainSelectedItem": "maintainSelectedItem"; "truncateItems": "truncateItems"; "preserveIconSpace": "preserveIconSpace"; }, { "selectedChanged": "selectedChanged"; "menuClosed": "menuClosed"; }, never, never, false>;
218
221
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef, Renderer2, OnInit, OnDestroy, EventEmitter } from '@angular/core';
2
2
  import { Router, ActivatedRoute, Params } from '@angular/router';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class NavItemActiveDirective implements OnInit, OnDestroy {
4
5
  private router;
5
6
  private el;
@@ -36,4 +37,6 @@ export declare class NavItemActiveDirective implements OnInit, OnDestroy {
36
37
  ngOnDestroy(): void;
37
38
  /** If url is active apply the defined class to the element, otherwise remove it */
38
39
  private update;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavItemActiveDirective, never>;
41
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NavItemActiveDirective, "[ecNavItemActive]", never, { "classValue": "ecNavItemActive"; "exact": "ecNavItemActiveExactMatch"; "queryParams": "ecNavItemActiveQueryParams"; "url": "ecNavItemActiveUrl"; }, { "routerLinkActivated": "routerLinkActivated"; }, never, never, false>;
39
42
  }
@@ -1,8 +1,9 @@
1
1
  import { AfterViewChecked, AfterViewInit, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core';
2
- import { FormControl, ValidatorFn } from "@angular/forms";
2
+ import { UntypedFormControl, ValidatorFn } from "@angular/forms";
3
3
  import { ValidationMessageService } from '../../core/validation-message.service';
4
4
  import { FormGroupHelper } from '../../shared/form-group.helper';
5
5
  import { FormControlBase } from "../form-control-base";
6
+ import * as i0 from "@angular/core";
6
7
  /**
7
8
  * Custom validator to check that min/max and pattern validation is met on the numericbox
8
9
  * component
@@ -69,7 +70,7 @@ export declare class NumericboxComponent extends FormControlBase implements OnIn
69
70
  /**
70
71
  * The internal form model we use to display the value with formatting
71
72
  */
72
- textboxFormModel: FormControl;
73
+ textboxFormModel: UntypedFormControl;
73
74
  /** Flag to tell the page we finally computed a greater than zero
74
75
  * width for units (if applicable)
75
76
  */
@@ -142,4 +143,6 @@ export declare class NumericboxComponent extends FormControlBase implements OnIn
142
143
  */
143
144
  private showUnits;
144
145
  private makeUnitElement;
146
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericboxComponent, never>;
147
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumericboxComponent, "ec-numericbox", never, { "placeholder": "placeholder"; "decimals": "decimals"; "showPrecision": "showPrecision"; "maxPrecisionDigits": "maxPrecisionDigits"; "max": "max"; "min": "min"; "leftUnits": "leftUnits"; "rightUnits": "rightUnits"; "autoUpdateFormModel": "autoUpdateFormModel"; }, {}, never, never, false>;
145
148
  }
@@ -1,5 +1,6 @@
1
1
  import { Overlay } from '@angular/cdk/overlay';
2
2
  import { ElementRef, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare type PopoverContentPosition = 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left';
4
5
  export declare class PopoverComponent implements OnDestroy {
5
6
  private overlay;
@@ -23,4 +24,6 @@ export declare class PopoverComponent implements OnDestroy {
23
24
  private hide;
24
25
  private getOverlayConfig;
25
26
  private getPosition;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ec-popover", never, { "icon": "icon"; "contentPosition": "contentPosition"; "iconHoverClass": "iconHoverClass"; }, {}, never, ["*"], false>;
26
29
  }
@@ -3,6 +3,7 @@ import { ValidationMessageService } from '../../core/validation-message.service'
3
3
  import { FormGroupHelper } from '../../shared/form-group.helper';
4
4
  import { FormControlBase } from '../form-control-base';
5
5
  import { RadioButtonOption } from './radio-button-option';
6
+ import * as i0 from "@angular/core";
6
7
  /**
7
8
  * Row displays options horizontally, column displays options vertically
8
9
  */
@@ -47,4 +48,6 @@ export declare class RadioButtonComponent extends FormControlBase implements Aft
47
48
  constructor(validationMessageService: ValidationMessageService, formGroupHelper: FormGroupHelper);
48
49
  ngOnInit(): void;
49
50
  ngAfterViewInit(): void;
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ec-radiobutton", never, { "type": "type"; "options": "options"; "direction": "direction"; "name": "name"; }, {}, never, never, false>;
50
53
  }
@@ -3,6 +3,7 @@ import { ValidationMessageService } from '../../core/validation-message.service'
3
3
  import { FormGroupHelper } from '../../shared/form-group.helper';
4
4
  import { FormControlBase } from '../form-control-base';
5
5
  import { MenuItem } from '../menu/menu.component';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class SelectComponent extends FormControlBase implements AfterViewInit {
7
8
  protected validationMessageService: ValidationMessageService;
8
9
  protected formGroupHelper: FormGroupHelper;
@@ -38,4 +39,6 @@ export declare class SelectComponent extends FormControlBase implements AfterVie
38
39
  * * Set value to first option if control is required and emit event
39
40
  */
40
41
  private onOptionsChange;
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
43
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "ec-select", never, { "placeholder": "placeholder"; "options": "options"; "autoDefault": "autoDefault"; }, {}, never, never, false>;
41
44
  }
@@ -1,5 +1,6 @@
1
1
  import { NavItem } from '../navigation/nav-item';
2
2
  import { NavGroup } from '../navigation/nav-group';
3
+ import * as i0 from "@angular/core";
3
4
  export interface Tab extends NavItem {
4
5
  url: string;
5
6
  tabs?: Tab[];
@@ -24,4 +25,6 @@ export declare class TabsComponent {
24
25
  * has a link, navigate to that link.
25
26
  */
26
27
  selectTab(event: Event, tab: NavItem): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "ec-tabs", never, { "id": "id"; "tabindex": "tabindex"; "tabStyle": "tabStyle"; "tabs": "tabGroup"; }, {}, never, never, false>;
27
30
  }
@@ -4,6 +4,7 @@ import { TranslateService } from "@ngx-translate/core";
4
4
  import { FormControlBase } from "../form-control-base";
5
5
  import { ValidationMessageService } from "../../core/validation-message.service";
6
6
  import { ValidatorFn } from '@angular/forms';
7
+ import * as i0 from "@angular/core";
7
8
  /**
8
9
  * The type of textbox where text is input[type="text"], multi_line is a
9
10
  * textarea, email is input[type="email"], url is input[type="url"], and password
@@ -101,4 +102,6 @@ export declare class TextboxComponent extends FormControlBase implements OnInit,
101
102
  * will upper case and trim value if upperCase is true (this is what we do on the apis)
102
103
  */
103
104
  focusOutEvent(): void;
105
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, never>;
106
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "ec-textbox", never, { "autocomplete": "autocomplete"; "type": "type"; "placeholder": "placeholder"; "maxlength": "maxlength"; "minlength": "minlength"; "rows": "rows"; "selectOnAutofocus": "selectOnAutofocus"; "upperCase": "upperCase"; }, {}, never, never, false>;
104
107
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class CacheService {
2
3
  private localStorageAvailable;
3
4
  private sessionStorageAvailable;
@@ -27,4 +28,6 @@ export declare class CacheService {
27
28
  * This can happen if the user is in Firefox for example with the setting dom.storage.enabled = false
28
29
  */
29
30
  private getStorage;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<CacheService, never>;
32
+ static ɵprov: i0.ɵɵInjectableDeclaration<CacheService>;
30
33
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare function isApiError(errorResponse: any): boolean;
2
3
  export declare class ErrorService {
3
4
  constructor();
@@ -14,4 +15,6 @@ export declare class ErrorService {
14
15
  * Just a safe wrapper around console.error in case the browser doesn't have one exposed
15
16
  */
16
17
  logConsoleError(error: any): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorService, never>;
19
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorService>;
17
20
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class ScrollService {
2
3
  constructor();
3
4
  /**
@@ -30,4 +31,6 @@ export declare class ScrollService {
30
31
  * @param targetElementSelector A valid CSS selector string for the target element.
31
32
  */
32
33
  scrollItemCentered(scrollContainerSelector: string, targetElementSelector: string): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScrollService, never>;
35
+ static ɵprov: i0.ɵɵInjectableDeclaration<ScrollService>;
33
36
  }
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class TelemetryTrackerService {
2
3
  trackPageView(pageName: string, url: string, properties?: {
3
4
  [key: string]: string | number;
@@ -7,4 +8,6 @@ export declare class TelemetryTrackerService {
7
8
  }, measurements?: {
8
9
  [val: string]: number;
9
10
  }): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<TelemetryTrackerService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryTrackerService>;
10
13
  }
@@ -1,4 +1,5 @@
1
1
  import { TelemetryTrackerService } from './telemetry-tracker.service';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class TelemetryService {
3
4
  private telemetryTrackerService;
4
5
  constructor(telemetryTrackerService: TelemetryTrackerService);
@@ -25,4 +26,6 @@ export declare class TelemetryService {
25
26
  }, measurements?: {
26
27
  [val: string]: number;
27
28
  }): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<TelemetryService, never>;
30
+ static ɵprov: i0.ɵɵInjectableDeclaration<TelemetryService>;
28
31
  }
@@ -1,6 +1,7 @@
1
1
  import { ValidationErrors } from '@angular/forms';
2
2
  import { TranslateService } from '@ngx-translate/core';
3
3
  import { DateDisplayPipe } from '../shared/display/pipes/date-display.pipe';
4
+ import * as i0 from "@angular/core";
4
5
  /**
5
6
  * Service to take {@link ValidationErrors} and return meaningful error messages
6
7
  */
@@ -20,4 +21,6 @@ export declare class ValidationMessageService {
20
21
  * Given the advanced textbox validation params construct the error message
21
22
  */
22
23
  private getTextBoxValidationMessages;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidationMessageService, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<ValidationMessageService>;
23
26
  }
@@ -1,5 +1,6 @@
1
1
  import { Router, ActivatedRoute, Params } from '@angular/router';
2
2
  import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * Service to help with interfacing with the window object
5
6
  * and navigating around the application (going outside of the Angular 2+ router)
@@ -108,4 +109,6 @@ export declare class WindowService {
108
109
  * @see https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event
109
110
  */
110
111
  private beforeUnloadFunction;
112
+ static ɵfac: i0.ɵɵFactoryDeclaration<WindowService, never>;
113
+ static ɵprov: i0.ɵɵInjectableDeclaration<WindowService>;
111
114
  }