@valtimo/dashboard 10.5.1 → 10.7.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 (222) hide show
  1. package/esm2020/lib/components/dashboard/dashboard.component.mjs +85 -0
  2. package/esm2020/lib/components/widget-dashboard/widget-dashboard.component.mjs +56 -0
  3. package/esm2020/lib/components/widget-dashboard-content/widget-dashboard-content.component.mjs +122 -0
  4. package/esm2020/lib/constants/data-features.constants.mjs +21 -0
  5. package/esm2020/lib/constants/index.mjs +19 -0
  6. package/esm2020/lib/constants/injection-tokens.mjs +20 -0
  7. package/esm2020/lib/constants/layout.constants.mjs +19 -0
  8. package/esm2020/lib/dashboard-routing.module.mjs +10 -10
  9. package/esm2020/lib/dashboard.module.mjs +37 -13
  10. package/esm2020/lib/data-sources/case-count/case-count.module.mjs +61 -0
  11. package/esm2020/lib/data-sources/case-count/case-count.specification.mjs +74 -0
  12. package/esm2020/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.mjs +149 -0
  13. package/esm2020/lib/data-sources/case-count/components/case-count-configuration/index.mjs +17 -0
  14. package/esm2020/lib/data-sources/case-count/components/index.mjs +17 -0
  15. package/esm2020/lib/data-sources/case-count/index.mjs +20 -0
  16. package/esm2020/lib/data-sources/case-count/models/case-count.model.mjs +26 -0
  17. package/esm2020/lib/data-sources/case-count/models/index.mjs +17 -0
  18. package/esm2020/lib/data-sources/index.mjs +18 -0
  19. package/esm2020/lib/data-sources/test/components/index.mjs +17 -0
  20. package/esm2020/lib/data-sources/test/components/test-configuration/index.mjs +17 -0
  21. package/esm2020/lib/data-sources/test/components/test-configuration/test-configuration.component.mjs +80 -0
  22. package/esm2020/lib/data-sources/test/index.mjs +20 -0
  23. package/esm2020/lib/data-sources/test/models/index.mjs +17 -0
  24. package/esm2020/lib/data-sources/test/models/test.model.mjs +17 -0
  25. package/esm2020/lib/data-sources/test/test.module.mjs +39 -0
  26. package/esm2020/lib/data-sources/test/test.specification.mjs +44 -0
  27. package/esm2020/lib/display-types/bar-chart/bar-chart.module.mjs +36 -0
  28. package/esm2020/lib/display-types/bar-chart/bar-chart.specification.mjs +35 -0
  29. package/esm2020/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.mjs +32 -0
  30. package/esm2020/lib/display-types/bar-chart/components/bar-chart-display/index.mjs +17 -0
  31. package/esm2020/lib/display-types/bar-chart/components/index.mjs +17 -0
  32. package/esm2020/lib/display-types/bar-chart/index.mjs +20 -0
  33. package/esm2020/lib/display-types/bar-chart/models/bar-chart.model.mjs +17 -0
  34. package/esm2020/lib/display-types/bar-chart/models/index.mjs +17 -0
  35. package/esm2020/lib/display-types/big-number/big-number.module.mjs +53 -0
  36. package/esm2020/lib/display-types/big-number/big-number.specification.mjs +67 -0
  37. package/esm2020/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.mjs +124 -0
  38. package/esm2020/lib/display-types/big-number/components/big-number-configuration/index.mjs +17 -0
  39. package/esm2020/lib/display-types/big-number/components/big-number-display/big-number-display.component.mjs +56 -0
  40. package/esm2020/lib/display-types/big-number/components/big-number-display/index.mjs +17 -0
  41. package/esm2020/lib/display-types/big-number/components/index.mjs +18 -0
  42. package/esm2020/lib/display-types/big-number/index.mjs +20 -0
  43. package/esm2020/lib/display-types/big-number/models/big-number.model.mjs +17 -0
  44. package/esm2020/lib/display-types/big-number/models/index.mjs +17 -0
  45. package/esm2020/lib/display-types/index.mjs +19 -0
  46. package/esm2020/lib/display-types/meter/components/index.mjs +17 -0
  47. package/esm2020/lib/display-types/meter/components/meter-display/index.mjs +17 -0
  48. package/esm2020/lib/display-types/meter/components/meter-display/meter-display.component.mjs +32 -0
  49. package/esm2020/lib/display-types/meter/index.mjs +20 -0
  50. package/esm2020/lib/display-types/meter/meter.module.mjs +36 -0
  51. package/esm2020/lib/display-types/meter/meter.specification.mjs +35 -0
  52. package/esm2020/lib/display-types/meter/models/index.mjs +17 -0
  53. package/esm2020/lib/display-types/meter/models/meter.model.mjs +17 -0
  54. package/esm2020/lib/models/configuration.model.mjs +17 -0
  55. package/esm2020/lib/models/dashboard.model.mjs +17 -0
  56. package/esm2020/lib/models/data-source.model.mjs +17 -0
  57. package/esm2020/lib/models/display-type.model.mjs +17 -0
  58. package/esm2020/lib/models/index.mjs +23 -0
  59. package/esm2020/lib/models/layout.model.mjs +17 -0
  60. package/esm2020/lib/models/widget-data.model.mjs +17 -0
  61. package/esm2020/lib/models/widget-display.model.mjs +25 -0
  62. package/esm2020/lib/pipes/index.mjs +17 -0
  63. package/esm2020/lib/pipes/widget-translate/index.mjs +18 -0
  64. package/esm2020/lib/pipes/widget-translate/widget-translate-pipe.module.mjs +33 -0
  65. package/esm2020/lib/pipes/widget-translate/widget-translate.pipe.mjs +35 -0
  66. package/esm2020/lib/services/dashboard.service.mjs +38 -0
  67. package/esm2020/lib/services/index.mjs +19 -0
  68. package/esm2020/lib/services/widget-api.service.mjs +38 -0
  69. package/esm2020/lib/services/widget-layout.service.mjs +121 -0
  70. package/esm2020/lib/services/widget-translation.service.mjs +61 -0
  71. package/esm2020/lib/services/widget.service.mjs +62 -0
  72. package/esm2020/public_api.mjs +10 -2
  73. package/fesm2015/valtimo-dashboard.mjs +2047 -90
  74. package/fesm2015/valtimo-dashboard.mjs.map +1 -1
  75. package/fesm2020/valtimo-dashboard.mjs +2213 -90
  76. package/fesm2020/valtimo-dashboard.mjs.map +1 -1
  77. package/lib/{dashboard.component.d.ts → components/dashboard/dashboard.component.d.ts} +3 -8
  78. package/lib/components/dashboard/dashboard.component.d.ts.map +1 -0
  79. package/lib/components/widget-dashboard/widget-dashboard.component.d.ts +20 -0
  80. package/lib/components/widget-dashboard/widget-dashboard.component.d.ts.map +1 -0
  81. package/lib/components/widget-dashboard-content/widget-dashboard-content.component.d.ts +34 -0
  82. package/lib/components/widget-dashboard-content/widget-dashboard-content.component.d.ts.map +1 -0
  83. package/lib/constants/data-features.constants.d.ts +6 -0
  84. package/lib/constants/data-features.constants.d.ts.map +1 -0
  85. package/lib/constants/index.d.ts +4 -0
  86. package/lib/constants/index.d.ts.map +1 -0
  87. package/lib/constants/injection-tokens.d.ts +6 -0
  88. package/lib/constants/injection-tokens.d.ts.map +1 -0
  89. package/lib/constants/layout.constants.d.ts +4 -0
  90. package/lib/constants/layout.constants.d.ts.map +1 -0
  91. package/lib/dashboard-routing.module.d.ts.map +1 -1
  92. package/lib/dashboard.module.d.ts +12 -8
  93. package/lib/dashboard.module.d.ts.map +1 -1
  94. package/lib/data-sources/case-count/case-count.module.d.ts +13 -0
  95. package/lib/data-sources/case-count/case-count.module.d.ts.map +1 -0
  96. package/lib/data-sources/case-count/case-count.specification.d.ts +3 -0
  97. package/lib/data-sources/case-count/case-count.specification.d.ts.map +1 -0
  98. package/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.d.ts +44 -0
  99. package/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.d.ts.map +1 -0
  100. package/lib/data-sources/case-count/components/case-count-configuration/index.d.ts +2 -0
  101. package/lib/data-sources/case-count/components/case-count-configuration/index.d.ts.map +1 -0
  102. package/lib/data-sources/case-count/components/index.d.ts +2 -0
  103. package/lib/data-sources/case-count/components/index.d.ts.map +1 -0
  104. package/lib/data-sources/case-count/index.d.ts +5 -0
  105. package/lib/data-sources/case-count/index.d.ts.map +1 -0
  106. package/lib/data-sources/case-count/models/case-count.model.d.ts +19 -0
  107. package/lib/data-sources/case-count/models/case-count.model.d.ts.map +1 -0
  108. package/lib/data-sources/case-count/models/index.d.ts +2 -0
  109. package/lib/data-sources/case-count/models/index.d.ts.map +1 -0
  110. package/lib/data-sources/index.d.ts +3 -0
  111. package/lib/data-sources/index.d.ts.map +1 -0
  112. package/lib/data-sources/test/components/index.d.ts +2 -0
  113. package/lib/data-sources/test/components/index.d.ts.map +1 -0
  114. package/lib/data-sources/test/components/test-configuration/index.d.ts +2 -0
  115. package/lib/data-sources/test/components/test-configuration/index.d.ts.map +1 -0
  116. package/lib/data-sources/test/components/test-configuration/test-configuration.component.d.ts +26 -0
  117. package/lib/data-sources/test/components/test-configuration/test-configuration.component.d.ts.map +1 -0
  118. package/lib/data-sources/test/index.d.ts +5 -0
  119. package/lib/data-sources/test/index.d.ts.map +1 -0
  120. package/lib/data-sources/test/models/index.d.ts +2 -0
  121. package/lib/data-sources/test/models/index.d.ts.map +1 -0
  122. package/lib/data-sources/test/models/test.model.d.ts +6 -0
  123. package/lib/data-sources/test/models/test.model.d.ts.map +1 -0
  124. package/lib/data-sources/test/test.module.d.ts +12 -0
  125. package/lib/data-sources/test/test.module.d.ts.map +1 -0
  126. package/lib/data-sources/test/test.specification.d.ts +3 -0
  127. package/lib/data-sources/test/test.specification.d.ts.map +1 -0
  128. package/lib/display-types/bar-chart/bar-chart.module.d.ts +9 -0
  129. package/lib/display-types/bar-chart/bar-chart.module.d.ts.map +1 -0
  130. package/lib/display-types/bar-chart/bar-chart.specification.d.ts +3 -0
  131. package/lib/display-types/bar-chart/bar-chart.specification.d.ts.map +1 -0
  132. package/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.d.ts +11 -0
  133. package/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.d.ts.map +1 -0
  134. package/lib/display-types/bar-chart/components/bar-chart-display/index.d.ts +2 -0
  135. package/lib/display-types/bar-chart/components/bar-chart-display/index.d.ts.map +1 -0
  136. package/lib/display-types/bar-chart/components/index.d.ts +2 -0
  137. package/lib/display-types/bar-chart/components/index.d.ts.map +1 -0
  138. package/lib/display-types/bar-chart/index.d.ts +5 -0
  139. package/lib/display-types/bar-chart/index.d.ts.map +1 -0
  140. package/lib/display-types/bar-chart/models/bar-chart.model.d.ts +8 -0
  141. package/lib/display-types/bar-chart/models/bar-chart.model.d.ts.map +1 -0
  142. package/lib/display-types/bar-chart/models/index.d.ts +2 -0
  143. package/lib/display-types/bar-chart/models/index.d.ts.map +1 -0
  144. package/lib/display-types/big-number/big-number.module.d.ts +13 -0
  145. package/lib/display-types/big-number/big-number.module.d.ts.map +1 -0
  146. package/lib/display-types/big-number/big-number.specification.d.ts +3 -0
  147. package/lib/display-types/big-number/big-number.specification.d.ts.map +1 -0
  148. package/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.d.ts +37 -0
  149. package/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.d.ts.map +1 -0
  150. package/lib/display-types/big-number/components/big-number-configuration/index.d.ts +2 -0
  151. package/lib/display-types/big-number/components/big-number-configuration/index.d.ts.map +1 -0
  152. package/lib/display-types/big-number/components/big-number-display/big-number-display.component.d.ts +13 -0
  153. package/lib/display-types/big-number/components/big-number-display/big-number-display.component.d.ts.map +1 -0
  154. package/lib/display-types/big-number/components/big-number-display/index.d.ts +2 -0
  155. package/lib/display-types/big-number/components/big-number-display/index.d.ts.map +1 -0
  156. package/lib/display-types/big-number/components/index.d.ts +3 -0
  157. package/lib/display-types/big-number/components/index.d.ts.map +1 -0
  158. package/lib/display-types/big-number/index.d.ts +5 -0
  159. package/lib/display-types/big-number/index.d.ts.map +1 -0
  160. package/lib/display-types/big-number/models/big-number.model.d.ts +14 -0
  161. package/lib/display-types/big-number/models/big-number.model.d.ts.map +1 -0
  162. package/lib/display-types/big-number/models/index.d.ts +2 -0
  163. package/lib/display-types/big-number/models/index.d.ts.map +1 -0
  164. package/lib/display-types/index.d.ts +4 -0
  165. package/lib/display-types/index.d.ts.map +1 -0
  166. package/lib/display-types/meter/components/index.d.ts +2 -0
  167. package/lib/display-types/meter/components/index.d.ts.map +1 -0
  168. package/lib/display-types/meter/components/meter-display/index.d.ts +2 -0
  169. package/lib/display-types/meter/components/meter-display/index.d.ts.map +1 -0
  170. package/lib/display-types/meter/components/meter-display/meter-display.component.d.ts +11 -0
  171. package/lib/display-types/meter/components/meter-display/meter-display.component.d.ts.map +1 -0
  172. package/lib/display-types/meter/index.d.ts +5 -0
  173. package/lib/display-types/meter/index.d.ts.map +1 -0
  174. package/lib/display-types/meter/meter.module.d.ts +9 -0
  175. package/lib/display-types/meter/meter.module.d.ts.map +1 -0
  176. package/lib/display-types/meter/meter.specification.d.ts +3 -0
  177. package/lib/display-types/meter/meter.specification.d.ts.map +1 -0
  178. package/lib/display-types/meter/models/index.d.ts +2 -0
  179. package/lib/display-types/meter/models/index.d.ts.map +1 -0
  180. package/lib/display-types/meter/models/meter.model.d.ts +8 -0
  181. package/lib/display-types/meter/models/meter.model.d.ts.map +1 -0
  182. package/lib/models/configuration.model.d.ts +18 -0
  183. package/lib/models/configuration.model.d.ts.map +1 -0
  184. package/lib/models/dashboard.model.d.ts +15 -0
  185. package/lib/models/dashboard.model.d.ts.map +1 -0
  186. package/lib/models/data-source.model.d.ts +14 -0
  187. package/lib/models/data-source.model.d.ts.map +1 -0
  188. package/lib/models/display-type.model.d.ts +23 -0
  189. package/lib/models/display-type.model.d.ts.map +1 -0
  190. package/lib/models/index.d.ts +8 -0
  191. package/lib/models/index.d.ts.map +1 -0
  192. package/lib/models/layout.model.d.ts +18 -0
  193. package/lib/models/layout.model.d.ts.map +1 -0
  194. package/lib/models/widget-data.model.d.ts +6 -0
  195. package/lib/models/widget-data.model.d.ts.map +1 -0
  196. package/lib/models/widget-display.model.d.ts +9 -0
  197. package/lib/models/widget-display.model.d.ts.map +1 -0
  198. package/lib/pipes/index.d.ts +2 -0
  199. package/lib/pipes/index.d.ts.map +1 -0
  200. package/lib/pipes/widget-translate/index.d.ts +3 -0
  201. package/lib/pipes/widget-translate/index.d.ts.map +1 -0
  202. package/lib/pipes/widget-translate/widget-translate-pipe.module.d.ts +9 -0
  203. package/lib/pipes/widget-translate/widget-translate-pipe.module.d.ts.map +1 -0
  204. package/lib/pipes/widget-translate/widget-translate.pipe.d.ts +12 -0
  205. package/lib/pipes/widget-translate/widget-translate.pipe.d.ts.map +1 -0
  206. package/lib/services/dashboard.service.d.ts +15 -0
  207. package/lib/services/dashboard.service.d.ts.map +1 -0
  208. package/lib/services/index.d.ts +4 -0
  209. package/lib/services/index.d.ts.map +1 -0
  210. package/lib/services/widget-api.service.d.ts +15 -0
  211. package/lib/services/widget-api.service.d.ts.map +1 -0
  212. package/lib/services/widget-layout.service.d.ts +29 -0
  213. package/lib/services/widget-layout.service.d.ts.map +1 -0
  214. package/lib/services/widget-translation.service.d.ts +15 -0
  215. package/lib/services/widget-translation.service.d.ts.map +1 -0
  216. package/lib/services/widget.service.d.ts +19 -0
  217. package/lib/services/widget.service.d.ts.map +1 -0
  218. package/package.json +7 -6
  219. package/public_api.d.ts +9 -1
  220. package/public_api.d.ts.map +1 -1
  221. package/esm2020/lib/dashboard.component.mjs +0 -89
  222. package/lib/dashboard.component.d.ts.map +0 -1
@@ -0,0 +1,6 @@
1
+ declare const DATA_FEATURES: {
2
+ NUMBER: string;
3
+ TOTAL: string;
4
+ };
5
+ export { DATA_FEATURES };
6
+ //# sourceMappingURL=data-features.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-features.constants.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/constants/data-features.constants.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,aAAa;;;CAGlB,CAAC;AAEF,OAAO,EAAC,aAAa,EAAC,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './data-features.constants';
2
+ export * from './injection-tokens';
3
+ export * from './layout.constants';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/constants/index.ts"],"names":[],"mappings":"AAgBA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { DataSourceSpecification, DisplayTypeSpecification } from '../models';
3
+ declare const DISPLAY_TYPE_TOKEN: InjectionToken<DisplayTypeSpecification>;
4
+ declare const DATA_SOURCE_TOKEN: InjectionToken<DataSourceSpecification>;
5
+ export { DISPLAY_TYPE_TOKEN, DATA_SOURCE_TOKEN };
6
+ //# sourceMappingURL=injection-tokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"injection-tokens.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/constants/injection-tokens.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,uBAAuB,EAAE,wBAAwB,EAAC,MAAM,WAAW,CAAC;AAE5E,QAAA,MAAM,kBAAkB,0CAEvB,CAAC;AAEF,QAAA,MAAM,iBAAiB,yCAEtB,CAAC;AAEF,OAAO,EAAC,kBAAkB,EAAE,iBAAiB,EAAC,CAAC"}
@@ -0,0 +1,4 @@
1
+ declare const WIDGET_1X_HEIGHT = 220;
2
+ declare const WIDGET_1X_MIN_WIDTH = 275;
3
+ export { WIDGET_1X_HEIGHT, WIDGET_1X_MIN_WIDTH };
4
+ //# sourceMappingURL=layout.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"layout.constants.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/constants/layout.constants.ts"],"names":[],"mappings":"AAgBA,QAAA,MAAM,gBAAgB,MAAM,CAAC;AAC7B,QAAA,MAAM,mBAAmB,MAAM,CAAC;AAEhC,OAAO,EAAC,gBAAgB,EAAE,mBAAmB,EAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"dashboard-routing.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dashboard/src/lib/dashboard-routing.module.ts"],"names":[],"mappings":";;;AAgCA,qBAKa,sBAAsB;yCAAtB,sBAAsB;0CAAtB,sBAAsB;0CAAtB,sBAAsB;CAAG"}
1
+ {"version":3,"file":"dashboard-routing.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dashboard/src/lib/dashboard-routing.module.ts"],"names":[],"mappings":";;;AA+BA,qBAKa,sBAAsB;yCAAtB,sBAAsB;0CAAtB,sBAAsB;0CAAtB,sBAAsB;CAAG"}
@@ -1,16 +1,20 @@
1
- import { TranslateHttpLoader } from '@ngx-translate/http-loader';
2
1
  import { HttpClient } from '@angular/common/http';
2
+ import { TranslateHttpLoader } from '@ngx-translate/http-loader';
3
3
  import * as i0 from "@angular/core";
4
- import * as i1 from "./dashboard.component";
5
- import * as i2 from "@angular/common";
6
- import * as i3 from "./dashboard-routing.module";
7
- import * as i4 from "@valtimo/components";
8
- import * as i5 from "@ngx-translate/core";
9
- import * as i6 from "@valtimo/task";
4
+ import * as i1 from "./components/dashboard/dashboard.component";
5
+ import * as i2 from "./components/widget-dashboard/widget-dashboard.component";
6
+ import * as i3 from "./components/widget-dashboard-content/widget-dashboard-content.component";
7
+ import * as i4 from "@angular/common";
8
+ import * as i5 from "./dashboard-routing.module";
9
+ import * as i6 from "@valtimo/components";
10
+ import * as i7 from "@ngx-translate/core";
11
+ import * as i8 from "@valtimo/task";
12
+ import * as i9 from "carbon-components-angular";
13
+ import * as i10 from "./pipes/widget-translate/widget-translate-pipe.module";
10
14
  export declare function HttpLoaderFactory(httpClient: HttpClient): TranslateHttpLoader;
11
15
  export declare class DashboardModule {
12
16
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardModule, [typeof i1.DashboardComponent], [typeof i2.CommonModule, typeof i3.DashboardRoutingModule, typeof i4.WidgetModule, typeof i4.ListModule, typeof i4.BpmnJsDiagramModule, typeof i5.TranslateModule, typeof i4.AlertModule, typeof i6.TaskModule, typeof i4.SpinnerModule], [typeof i1.DashboardComponent]>;
17
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardModule, [typeof i1.DashboardComponent, typeof i2.WidgetDashboardComponent, typeof i3.WidgetDashboardContentComponent], [typeof i4.CommonModule, typeof i5.DashboardRoutingModule, typeof i6.WidgetModule, typeof i6.ListModule, typeof i6.BpmnJsDiagramModule, typeof i7.TranslateModule, typeof i6.AlertModule, typeof i8.TaskModule, typeof i6.SpinnerModule, typeof i9.TabsModule, typeof i9.ThemeModule, typeof i10.WidgetTranslatePipeModule, typeof i9.LoadingModule], [typeof i1.DashboardComponent, typeof i2.WidgetDashboardComponent]>;
14
18
  static ɵinj: i0.ɵɵInjectorDeclaration<DashboardModule>;
15
19
  }
16
20
  //# sourceMappingURL=dashboard.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dashboard.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dashboard/src/lib/dashboard.module.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,4BAA4B,CAAC;AAU/D,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;;;;;;;;AAIhD,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,uBAEvD;AAED,qBAqBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
1
+ {"version":3,"file":"dashboard.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dashboard/src/lib/dashboard.module.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAGhD,OAAO,EAAC,mBAAmB,EAAC,MAAM,4BAA4B,CAAC;;;;;;;;;;;;AAkB/D,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,uBAEvD;AAED,qBA6Ba,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/case-count-configuration/case-count-configuration.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "../../pipes/widget-translate/widget-translate-pipe.module";
6
+ import * as i5 from "carbon-components-angular";
7
+ import * as i6 from "@valtimo/components";
8
+ export declare class CaseCountDataSourceModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseCountDataSourceModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CaseCountDataSourceModule, [typeof i1.CaseCountConfigurationComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.WidgetTranslatePipeModule, typeof i5.InputModule, typeof i5.DropdownModule, typeof i6.CarbonMultiInputModule], [typeof i1.CaseCountConfigurationComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<CaseCountDataSourceModule>;
12
+ }
13
+ //# sourceMappingURL=case-count.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-count.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/case-count.module.ts"],"names":[],"mappings":";;;;;;;AA0BA,qBAea,yBAAyB;yCAAzB,yBAAyB;0CAAzB,yBAAyB;0CAAzB,yBAAyB;CAAG"}
@@ -0,0 +1,3 @@
1
+ import { DataSourceSpecification } from '../../models';
2
+ export declare const caseCountDataSourceSpecification: DataSourceSpecification;
3
+ //# sourceMappingURL=case-count.specification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-count.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/case-count.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAGrD,eAAO,MAAM,gCAAgC,EAAE,uBA2D9C,CAAC"}
@@ -0,0 +1,44 @@
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { ConfigurationOutput, DataSourceConfigurationComponent } from '../../../../models';
3
+ import { BehaviorSubject, Observable } from 'rxjs';
4
+ import { FormBuilder } from '@angular/forms';
5
+ import { CaseCountConfiguration } from '../../models';
6
+ import { DocumentService } from '@valtimo/document';
7
+ import { ListItem } from 'carbon-components-angular';
8
+ import { ListItemWithId, MultiInputKeyValue, MultiInputValues } from '@valtimo/components';
9
+ import { TranslateService } from '@ngx-translate/core';
10
+ import { WidgetTranslationService } from '../../../../services';
11
+ import * as i0 from "@angular/core";
12
+ export declare class CaseCountConfigurationComponent implements OnInit, OnDestroy, DataSourceConfigurationComponent {
13
+ private readonly fb;
14
+ private readonly documentService;
15
+ private readonly translateService;
16
+ private readonly widgetTranslationService;
17
+ dataSourceKey: string;
18
+ readonly form: import("@angular/forms").FormGroup<{
19
+ documentDefinition: import("@angular/forms").FormControl<any>;
20
+ queryConditions: import("@angular/forms").FormControl<any>;
21
+ }>;
22
+ set disabled(disabledValue: boolean);
23
+ private readonly _selectedDocumentDefinition$;
24
+ readonly documentItems$: Observable<Array<ListItem>>;
25
+ private readonly _OPERATORS;
26
+ readonly operatorItems$: Observable<Array<ListItemWithId>>;
27
+ readonly defaultConditionValues$: BehaviorSubject<MultiInputValues>;
28
+ readonly allConditionsValid$: BehaviorSubject<boolean>;
29
+ get documentDefinition(): import("@angular/forms").AbstractControl<any, any>;
30
+ get queryConditions(): import("@angular/forms").AbstractControl<any, any>;
31
+ set prefillConfiguration(configurationValue: CaseCountConfiguration);
32
+ configurationEvent: EventEmitter<ConfigurationOutput>;
33
+ private _subscriptions;
34
+ constructor(fb: FormBuilder, documentService: DocumentService, translateService: TranslateService, widgetTranslationService: WidgetTranslationService);
35
+ ngOnInit(): void;
36
+ ngOnDestroy(): void;
37
+ documentDefinitionSelected(documentDefinitionItem: ListItem): void;
38
+ conditionsValueChange(values: Array<MultiInputKeyValue>): void;
39
+ onAllConditionsValid(allConditionsValid: boolean): void;
40
+ private openFormSubscription;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseCountConfigurationComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseCountConfigurationComponent, "ng-component", never, { "dataSourceKey": "dataSourceKey"; "disabled": "disabled"; "prefillConfiguration": "prefillConfiguration"; }, { "configurationEvent": "configurationEvent"; }, never, never, false>;
43
+ }
44
+ //# sourceMappingURL=case-count-configuration.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-count-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/components/case-count-configuration/case-count-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,gCAAgC,EAAC,MAAM,oBAAoB,CAAC;AACzF,OAAO,EAAC,eAAe,EAAsB,UAAU,EAA0B,MAAM,MAAM,CAAC;AAC9F,OAAO,EAAC,WAAW,EAAa,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,sBAAsB,EAAW,MAAM,cAAc,CAAC;AAC9D,OAAO,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAC,cAAc,EAAE,kBAAkB,EAAE,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACzF,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,wBAAwB,EAAC,MAAM,sBAAsB,CAAC;;AAE9D,qBAMa,+BACX,YAAW,MAAM,EAAE,SAAS,EAAE,gCAAgC;IAqF5D,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IAtF3B,aAAa,EAAE,MAAM,CAAC;IAEtC,SAAgB,IAAI;;;OAGjB;IAEH,IAAoB,QAAQ,CAAC,aAAa,EAAE,OAAO,EAMlD;IAED,OAAO,CAAC,QAAQ,CAAC,4BAA4B,CAAmC;IAEhF,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAUzD;IAEF,OAAO,CAAC,QAAQ,CAAC,UAAU,CAOzB;IAEF,SAAgB,cAAc,EAAE,UAAU,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAU7D;IAEJ,SAAgB,uBAAuB,oCAAsD;IAC7F,SAAgB,mBAAmB,2BAAsC;IAEzE,IAAW,kBAAkB,uDAE5B;IAED,IAAW,eAAe,uDAEzB;IAED,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,sBAAsB,EAe3E;IAEgB,kBAAkB,oCAA2C;IAE9E,OAAO,CAAC,cAAc,CAAsB;gBAGzB,EAAE,EAAE,WAAW,EACf,eAAe,EAAE,eAAe,EAChC,gBAAgB,EAAE,gBAAgB,EAClC,wBAAwB,EAAE,wBAAwB;IAG9D,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,0BAA0B,CAAC,sBAAsB,EAAE,QAAQ,GAAG,IAAI;IASlE,qBAAqB,CAAC,MAAM,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI;IAcrE,oBAAoB,CAAC,kBAAkB,EAAE,OAAO,GAAG,IAAI;IAIvD,OAAO,CAAC,oBAAoB;yCA/HjB,+BAA+B;2CAA/B,+BAA+B;CA4I3C"}
@@ -0,0 +1,2 @@
1
+ export * from './case-count-configuration.component';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/components/case-count-configuration/index.ts"],"names":[],"mappings":"AAgBA,cAAc,sCAAsC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './case-count-configuration';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/components/index.ts"],"names":[],"mappings":"AAgBA,cAAc,4BAA4B,CAAC"}
@@ -0,0 +1,5 @@
1
+ export * from './components';
2
+ export * from './models';
3
+ export * from './case-count.module';
4
+ export * from './case-count.specification';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/index.ts"],"names":[],"mappings":"AAgBA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC"}
@@ -0,0 +1,19 @@
1
+ interface QueryCondition {
2
+ queryPath: string;
3
+ queryOperator: string;
4
+ queryValue: string;
5
+ }
6
+ interface CaseCountConfiguration {
7
+ documentDefinition: string;
8
+ queryConditions: Array<QueryCondition>;
9
+ }
10
+ declare enum Operator {
11
+ NOT_EQUAL_TO = "!=",
12
+ EQUAL_TO = "==",
13
+ GREATER_THAN = ">",
14
+ GREATER_THAN_OR_EQUAL_TO = ">=",
15
+ LESS_THAN = "<",
16
+ LESS_THAN_OR_EQUAL_TO = "<="
17
+ }
18
+ export { CaseCountConfiguration, QueryCondition, Operator };
19
+ //# sourceMappingURL=case-count.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"case-count.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/models/case-count.model.ts"],"names":[],"mappings":"AAgBA,UAAU,cAAc;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,UAAU,sBAAsB;IAC9B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;CACxC;AAED,aAAK,QAAQ;IACX,YAAY,OAAO;IACnB,QAAQ,OAAO;IACf,YAAY,MAAM;IAClB,wBAAwB,OAAO;IAC/B,SAAS,MAAM;IACf,qBAAqB,OAAO;CAC7B;AAED,OAAO,EAAC,sBAAsB,EAAE,cAAc,EAAE,QAAQ,EAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './case-count.model';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/case-count/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './test';
2
+ export * from './case-count';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dashboard/src/lib/data-sources/index.ts"],"names":[],"mappings":"AAgBA,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './test-configuration';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/components/index.ts"],"names":[],"mappings":"AAgBA,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './test-configuration.component';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/components/test-configuration/index.ts"],"names":[],"mappings":"AAgBA,cAAc,gCAAgC,CAAC"}
@@ -0,0 +1,26 @@
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { ConfigurationOutput, DataSourceConfigurationComponent } from '../../../../models';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import { TestConfiguration } from '../../models';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TestConfigurationComponent implements OnInit, OnDestroy, DataSourceConfigurationComponent {
7
+ private readonly fb;
8
+ readonly form: import("@angular/forms").FormGroup<{
9
+ value: import("@angular/forms").FormControl<any>;
10
+ total: import("@angular/forms").FormControl<any>;
11
+ }>;
12
+ dataSourceKey: string;
13
+ set disabled(disabledValue: boolean);
14
+ get value(): import("@angular/forms").AbstractControl<any, any>;
15
+ get total(): import("@angular/forms").AbstractControl<any, any>;
16
+ set prefillConfiguration(configurationValue: TestConfiguration);
17
+ configurationEvent: EventEmitter<ConfigurationOutput>;
18
+ private _subscriptions;
19
+ constructor(fb: FormBuilder);
20
+ ngOnInit(): void;
21
+ ngOnDestroy(): void;
22
+ private openFormSubscription;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestConfigurationComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestConfigurationComponent, "ng-component", never, { "dataSourceKey": "dataSourceKey"; "disabled": "disabled"; "prefillConfiguration": "prefillConfiguration"; }, { "configurationEvent": "configurationEvent"; }, never, never, false>;
25
+ }
26
+ //# sourceMappingURL=test-configuration.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/components/test-configuration/test-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,gCAAgC,EAAC,MAAM,oBAAoB,CAAC;AAEzF,OAAO,EAAC,WAAW,EAAa,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,iBAAiB,EAAC,MAAM,cAAc,CAAC;;AAE/C,qBAKa,0BACX,YAAW,MAAM,EAAE,SAAS,EAAE,gCAAgC;IAmClD,OAAO,CAAC,QAAQ,CAAC,EAAE;IAjC/B,SAAgB,IAAI;;;OAGjB;IAEM,aAAa,EAAE,MAAM,CAAC;IAC/B,IAAa,QAAQ,CAAC,aAAa,EAAE,OAAO,EAM3C;IAED,IAAW,KAAK,uDAEf;IAED,IAAW,KAAK,uDAEf;IAED,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,iBAAiB,EAKtE;IAEgB,kBAAkB,oCAA2C;IAE9E,OAAO,CAAC,cAAc,CAAsB;gBAEf,EAAE,EAAE,WAAW;IAErC,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,oBAAoB;yCA9CjB,0BAA0B;2CAA1B,0BAA0B;CAqDtC"}
@@ -0,0 +1,5 @@
1
+ export * from './components';
2
+ export * from './models';
3
+ export * from './test.module';
4
+ export * from './test.specification';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/index.ts"],"names":[],"mappings":"AAgBA,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './test.model';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,cAAc,CAAC"}
@@ -0,0 +1,6 @@
1
+ interface TestConfiguration {
2
+ value: number;
3
+ total: number;
4
+ }
5
+ export { TestConfiguration };
6
+ //# sourceMappingURL=test.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/models/test.model.ts"],"names":[],"mappings":"AAgBA,UAAU,iBAAiB;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,OAAO,EAAC,iBAAiB,EAAC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/test-configuration/test-configuration.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "../../pipes/widget-translate/widget-translate-pipe.module";
6
+ import * as i5 from "carbon-components-angular";
7
+ export declare class TestDataSourceModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestDataSourceModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TestDataSourceModule, [typeof i1.TestConfigurationComponent], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.WidgetTranslatePipeModule, typeof i5.InputModule], [typeof i1.TestConfigurationComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<TestDataSourceModule>;
11
+ }
12
+ //# sourceMappingURL=test.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/test.module.ts"],"names":[],"mappings":";;;;;;AAyBA,qBAMa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAG"}
@@ -0,0 +1,3 @@
1
+ import { DataSourceSpecification } from '../../models';
2
+ export declare const testDataSourceSpecification: DataSourceSpecification;
3
+ //# sourceMappingURL=test.specification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/data-sources/test/test.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAGrD,eAAO,MAAM,2BAA2B,EAAE,uBA0BzC,CAAC"}
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/bar-chart-display/bar-chart-display.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BarChartModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BarChartModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BarChartModule, [typeof i1.BarChartDisplayComponent], [typeof i2.CommonModule], [typeof i1.BarChartDisplayComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BarChartModule>;
8
+ }
9
+ //# sourceMappingURL=bar-chart.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bar-chart.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/bar-chart.module.ts"],"names":[],"mappings":";;;AAsBA,qBAMa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -0,0 +1,3 @@
1
+ import { DisplayTypeSpecification } from '../../models';
2
+ export declare const barChartSpecification: DisplayTypeSpecification;
3
+ //# sourceMappingURL=bar-chart.specification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bar-chart.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/bar-chart.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,wBAAwB,EAAC,MAAM,cAAc,CAAC;AAGtD,eAAO,MAAM,qBAAqB,EAAE,wBAiBnC,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { DisplayComponent } from '../../../../models';
2
+ import { BarChartData, BarChartDisplayTypeProperties } from '../../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BarChartDisplayComponent implements DisplayComponent {
5
+ displayTypeKey: string;
6
+ data: BarChartData;
7
+ displayTypeProperties: BarChartDisplayTypeProperties;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BarChartDisplayComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<BarChartDisplayComponent, "valtimo-bar-chart-display", never, { "displayTypeKey": "displayTypeKey"; "data": "data"; "displayTypeProperties": "displayTypeProperties"; }, {}, never, never, false>;
10
+ }
11
+ //# sourceMappingURL=bar-chart-display.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bar-chart-display.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/components/bar-chart-display/bar-chart-display.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,gBAAgB,EAAC,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAC,YAAY,EAAE,6BAA6B,EAAC,MAAM,cAAc,CAAC;;AAEzE,qBAMa,wBAAyB,YAAW,gBAAgB;IACtD,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,YAAY,CAAC;IACnB,qBAAqB,EAAE,6BAA6B,CAAC;yCAHnD,wBAAwB;2CAAxB,wBAAwB;CAIpC"}
@@ -0,0 +1,2 @@
1
+ export * from './bar-chart-display.component';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/components/bar-chart-display/index.ts"],"names":[],"mappings":"AAgBA,cAAc,+BAA+B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './bar-chart-display';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/components/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,5 @@
1
+ export * from './models';
2
+ export * from './components';
3
+ export * from './bar-chart.specification';
4
+ export * from './bar-chart.module';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/index.ts"],"names":[],"mappings":"AAgBA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC"}
@@ -0,0 +1,8 @@
1
+ interface BarChartData {
2
+ value: number;
3
+ }
4
+ interface BarChartDisplayTypeProperties {
5
+ title: string;
6
+ }
7
+ export { BarChartData, BarChartDisplayTypeProperties };
8
+ //# sourceMappingURL=bar-chart.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bar-chart.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/models/bar-chart.model.ts"],"names":[],"mappings":"AAgBA,UAAU,YAAY;IACpB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,6BAA6B;IACrC,KAAK,EAAE,MAAM,CAAC;CACf;AAED,OAAO,EAAC,YAAY,EAAE,6BAA6B,EAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export * from './bar-chart.model';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/display-types/bar-chart/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/big-number-display/big-number-display.component";
3
+ import * as i2 from "./components/big-number-configuration/big-number-configuration.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../../pipes/widget-translate/widget-translate-pipe.module";
7
+ import * as i6 from "carbon-components-angular";
8
+ export declare class BigNumberModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<BigNumberModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BigNumberModule, [typeof i1.BigNumberDisplayComponent, typeof i2.BigNumberConfigurationComponent], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule, typeof i5.WidgetTranslatePipeModule, typeof i6.InputModule, typeof i6.CheckboxModule], [typeof i1.BigNumberDisplayComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<BigNumberModule>;
12
+ }
13
+ //# sourceMappingURL=big-number.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-number.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/big-number.module.ts"],"names":[],"mappings":";;;;;;;AAyBA,qBAYa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
@@ -0,0 +1,3 @@
1
+ import { DisplayTypeSpecification } from '../../models';
2
+ export declare const bigNumberSpecification: DisplayTypeSpecification;
3
+ //# sourceMappingURL=big-number.specification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-number.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/big-number.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,wBAAwB,EAAC,MAAM,cAAc,CAAC;AAItD,eAAO,MAAM,sBAAsB,EAAE,wBAgDpC,CAAC"}
@@ -0,0 +1,37 @@
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { ConfigurationOutput, DisplayTypeConfigurationComponent } from '../../../../models';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import { BigNumberDisplayTypeProperties } from '../../models';
5
+ import * as i0 from "@angular/core";
6
+ export declare class BigNumberConfigurationComponent implements OnInit, OnDestroy, DisplayTypeConfigurationComponent {
7
+ private readonly fb;
8
+ readonly form: import("@angular/forms").FormGroup<{
9
+ title: import("@angular/forms").FormControl<string>;
10
+ subtitle: import("@angular/forms").FormControl<string>;
11
+ label: import("@angular/forms").FormControl<string>;
12
+ useKPI: import("@angular/forms").FormControl<boolean>;
13
+ lowSeverityThreshold: import("@angular/forms").FormControl<any>;
14
+ mediumSeverityThreshold: import("@angular/forms").FormControl<any>;
15
+ highSeverityThreshold: import("@angular/forms").FormControl<any>;
16
+ }>;
17
+ displayTypeKey: string;
18
+ set disabled(disabledValue: boolean);
19
+ get title(): import("@angular/forms").AbstractControl<string, string>;
20
+ get subtitle(): import("@angular/forms").AbstractControl<string, string>;
21
+ get label(): import("@angular/forms").AbstractControl<string, string>;
22
+ get useKPI(): import("@angular/forms").AbstractControl<boolean, boolean>;
23
+ get lowSeverityThreshold(): import("@angular/forms").AbstractControl<any, any>;
24
+ get mediumSeverityThreshold(): import("@angular/forms").AbstractControl<any, any>;
25
+ get highSeverityThreshold(): import("@angular/forms").AbstractControl<any, any>;
26
+ set prefillConfiguration(configurationValue: BigNumberDisplayTypeProperties);
27
+ configurationEvent: EventEmitter<ConfigurationOutput>;
28
+ private _subscriptions;
29
+ constructor(fb: FormBuilder);
30
+ ngOnInit(): void;
31
+ ngOnDestroy(): void;
32
+ private openFormSubscription;
33
+ private openKPISubscription;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<BigNumberConfigurationComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<BigNumberConfigurationComponent, "ng-component", never, { "displayTypeKey": "displayTypeKey"; "disabled": "disabled"; "prefillConfiguration": "prefillConfiguration"; }, { "configurationEvent": "configurationEvent"; }, never, never, false>;
36
+ }
37
+ //# sourceMappingURL=big-number-configuration.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-number-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/components/big-number-configuration/big-number-configuration.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAE,iCAAiC,EAAC,MAAM,oBAAoB,CAAC;AAE1F,OAAO,EAAC,WAAW,EAAa,MAAM,gBAAgB,CAAC;AACvD,OAAO,EAAC,8BAA8B,EAAC,MAAM,cAAc,CAAC;;AAE5D,qBAIa,+BACX,YAAW,MAAM,EAAE,SAAS,EAAE,iCAAiC;IAiEnD,OAAO,CAAC,QAAQ,CAAC,EAAE;IA/D/B,SAAgB,IAAI;;;;;;;;OAQjB;IAEM,cAAc,EAAE,MAAM,CAAC;IAChC,IAAa,QAAQ,CAAC,aAAa,EAAE,OAAO,EAM3C;IAED,IAAW,KAAK,6DAEf;IAED,IAAW,QAAQ,6DAElB;IAED,IAAW,KAAK,6DAEf;IAED,IAAW,MAAM,+DAEhB;IAED,IAAW,oBAAoB,uDAE9B;IAED,IAAW,uBAAuB,uDAEjC;IAED,IAAW,qBAAqB,uDAE/B;IAED,IAAa,oBAAoB,CAAC,kBAAkB,EAAE,8BAA8B,EAUnF;IAEgB,kBAAkB,oCAA2C;IAE9E,OAAO,CAAC,cAAc,CAAsB;gBAEf,EAAE,EAAE,WAAW;IAErC,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,mBAAmB;yCArFhB,+BAA+B;2CAA/B,+BAA+B;CA0G3C"}
@@ -0,0 +1,2 @@
1
+ export * from './big-number-configuration.component';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/components/big-number-configuration/index.ts"],"names":[],"mappings":"AAgBA,cAAc,sCAAsC,CAAC"}
@@ -0,0 +1,13 @@
1
+ import { DisplayComponent } from '../../../../models';
2
+ import { BigNumberData, BigNumberDisplayTypeProperties } from '../../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BigNumberDisplayComponent implements DisplayComponent {
5
+ displayTypeKey: string;
6
+ data: BigNumberData;
7
+ displayTypeProperties: BigNumberDisplayTypeProperties;
8
+ get severityClass(): string;
9
+ get numberFontSize(): number;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<BigNumberDisplayComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<BigNumberDisplayComponent, "valtimo-big-number-display", never, { "displayTypeKey": "displayTypeKey"; "data": "data"; "displayTypeProperties": "displayTypeProperties"; }, {}, never, never, false>;
12
+ }
13
+ //# sourceMappingURL=big-number-display.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-number-display.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/components/big-number-display/big-number-display.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,gBAAgB,EAAiB,MAAM,oBAAoB,CAAC;AACpE,OAAO,EAAC,aAAa,EAAE,8BAA8B,EAAC,MAAM,cAAc,CAAC;;AAE3E,qBAMa,yBAA0B,YAAW,gBAAgB;IACvD,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,aAAa,CAAC;IACpB,qBAAqB,EAAE,8BAA8B,CAAC;IAE/D,IAAW,aAAa,IAAI,MAAM,CAgBjC;IAED,IAAW,cAAc,IAAI,MAAM,CAMlC;yCA7BU,yBAAyB;2CAAzB,yBAAyB;CA8BrC"}
@@ -0,0 +1,2 @@
1
+ export * from './big-number-display.component';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/components/big-number-display/index.ts"],"names":[],"mappings":"AAgBA,cAAc,gCAAgC,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from './big-number-configuration';
2
+ export * from './big-number-display';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/components/index.ts"],"names":[],"mappings":"AAgBA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,5 @@
1
+ export * from './big-number.module';
2
+ export * from './big-number.specification';
3
+ export * from './components';
4
+ export * from './models';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC"}
@@ -0,0 +1,14 @@
1
+ interface BigNumberData {
2
+ value: number;
3
+ }
4
+ interface BigNumberDisplayTypeProperties {
5
+ title: string;
6
+ subtitle: string;
7
+ useKPI: boolean;
8
+ lowSeverityThreshold: number;
9
+ mediumSeverityThreshold: number;
10
+ highSeverityThreshold: number;
11
+ label?: string;
12
+ }
13
+ export { BigNumberData, BigNumberDisplayTypeProperties };
14
+ //# sourceMappingURL=big-number.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"big-number.model.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dashboard/src/lib/display-types/big-number/models/big-number.model.ts"],"names":[],"mappings":"AAgBA,UAAU,aAAa;IACrB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,8BAA8B;IACtC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,uBAAuB,EAAE,MAAM,CAAC;IAChC,qBAAqB,EAAE,MAAM,CAAC;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,OAAO,EAAC,aAAa,EAAE,8BAA8B,EAAC,CAAC"}