ax-common-ui-lib 1.0.0-qa.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 (1016) hide show
  1. package/README.md +24 -0
  2. package/ax-common-ui-lib.d.ts +5 -0
  3. package/esm2020/ax-common-ui-lib.mjs +5 -0
  4. package/esm2020/lib/app-list/app-list-dto.mjs +29 -0
  5. package/esm2020/lib/app-list/app-list.component.mjs +421 -0
  6. package/esm2020/lib/app-list/my-app-list.service.mjs +142 -0
  7. package/esm2020/lib/app-list/organization-list-dto.mjs +29 -0
  8. package/esm2020/lib/ax-app-common-lib.component.mjs +26 -0
  9. package/esm2020/lib/ax-app-common-lib.module.mjs +147 -0
  10. package/esm2020/lib/ax-app-common-lib.service.mjs +14 -0
  11. package/esm2020/lib/axo-filters/axo-filters.component.mjs +422 -0
  12. package/esm2020/lib/axo-filters/axo-filters.module.mjs +59 -0
  13. package/esm2020/lib/axo-filters/axo-filters.service.mjs +85 -0
  14. package/esm2020/lib/axo-map/axo-map.component.mjs +40 -0
  15. package/esm2020/lib/axo-map/axo-map.mjs +37 -0
  16. package/esm2020/lib/axo-map/axo-map.module.mjs +41 -0
  17. package/esm2020/lib/axo-map/public-api.mjs +7 -0
  18. package/esm2020/lib/axo-search-bar/axo-search-bar.component.mjs +84 -0
  19. package/esm2020/lib/axo-search-bar/axo-search-bar.module.mjs +38 -0
  20. package/esm2020/lib/axo-search-bar/public.api.mjs +3 -0
  21. package/esm2020/lib/axo-snack-bar/axo-snack-bar.component.mjs +155 -0
  22. package/esm2020/lib/axo-snack-bar/axo-snack-bar.module.mjs +34 -0
  23. package/esm2020/lib/axo-snack-bar/axo-snack-bar.service.mjs +29 -0
  24. package/esm2020/lib/axo-snack-bar/public-api.mjs +3 -0
  25. package/esm2020/lib/axo-state-manager/axo-state-manager.module.mjs +27 -0
  26. package/esm2020/lib/axo-state-manager/axo-state-manager.service.mjs +37 -0
  27. package/esm2020/lib/axo-state-manager/public-api.mjs +3 -0
  28. package/esm2020/lib/axo-utils/axo-utils.mjs +149 -0
  29. package/esm2020/lib/axo-utils/axo-utils.module.mjs +25 -0
  30. package/esm2020/lib/axo-utils/constants.mjs +3 -0
  31. package/esm2020/lib/axo-utils/data-source-types.mjs +12 -0
  32. package/esm2020/lib/axo-utils/field-list-search-pipe.mjs +32 -0
  33. package/esm2020/lib/axo-utils/filter-search-pipe.mjs +16 -0
  34. package/esm2020/lib/axo-utils/public-api.mjs +2 -0
  35. package/esm2020/lib/axo-utils/search-pipe/choice-search.pipe.mjs +33 -0
  36. package/esm2020/lib/axo-utils/search-pipe.mjs +36 -0
  37. package/esm2020/lib/bread-crumbs/bread-crumbs.component.mjs +196 -0
  38. package/esm2020/lib/bread-crumbs/bread-crumbs.module.mjs +29 -0
  39. package/esm2020/lib/bread-crumbs/bread-crumbs.service.mjs +122 -0
  40. package/esm2020/lib/code-editor/code-editor-modes.mjs +11 -0
  41. package/esm2020/lib/code-editor/code-editor-themes.mjs +8 -0
  42. package/esm2020/lib/code-editor/code-editor.component.mjs +60 -0
  43. package/esm2020/lib/code-editor/code-editor.module.mjs +36 -0
  44. package/esm2020/lib/code-editor/icode-editor-options.mjs +2 -0
  45. package/esm2020/lib/code-editor/public-api.mjs +3 -0
  46. package/esm2020/lib/common-dto/attributes-dto.mjs +39 -0
  47. package/esm2020/lib/common-dto/dashboard-dto.mjs +12 -0
  48. package/esm2020/lib/common-dto/dataListFilter-dto.mjs +13 -0
  49. package/esm2020/lib/common-dto/elements-dto.mjs +61 -0
  50. package/esm2020/lib/common-dto/form-dto.mjs +48 -0
  51. package/esm2020/lib/common-lib-configuration.service.mjs +21 -0
  52. package/esm2020/lib/common-property-panel/properties/properties.service.mjs +30 -0
  53. package/esm2020/lib/common-utils/entity-base.mjs +12 -0
  54. package/esm2020/lib/common-utils/iFlatten.mjs +2 -0
  55. package/esm2020/lib/common-utils/report.mjs +45 -0
  56. package/esm2020/lib/common.service.mjs +78 -0
  57. package/esm2020/lib/converters/convert-to-new-service.mjs +11 -0
  58. package/esm2020/lib/converters/convert-to-old-service.mjs +168 -0
  59. package/esm2020/lib/core/auth/auth.service.mjs +146 -0
  60. package/esm2020/lib/core/core.module.mjs +37 -0
  61. package/esm2020/lib/core/icons/icons.module.mjs +255 -0
  62. package/esm2020/lib/core/transloco/transloco.http-loader.mjs +32 -0
  63. package/esm2020/lib/core/transloco/transloco.module.mjs +94 -0
  64. package/esm2020/lib/core/user/axo-user.mjs +46 -0
  65. package/esm2020/lib/core/user/user-data.service.mjs +46 -0
  66. package/esm2020/lib/core/user/user.service.mjs +87 -0
  67. package/esm2020/lib/core/user/user.types.mjs +2 -0
  68. package/esm2020/lib/dashboard-lib/dashboard-builder.service.mjs +56 -0
  69. package/esm2020/lib/dashboard-lib/dashboard-control.service.mjs +92 -0
  70. package/esm2020/lib/dashboard-lib/dashboard-element/dashboard-element.mjs +11 -0
  71. package/esm2020/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.mjs +9 -0
  72. package/esm2020/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.mjs +107 -0
  73. package/esm2020/lib/dashboard-lib/dashboard-lib.module.mjs +111 -0
  74. package/esm2020/lib/dashboard-lib/dashboard-list.service.mjs +73 -0
  75. package/esm2020/lib/dashboard-lib/dashboard.mjs +15 -0
  76. package/esm2020/lib/dashboard-lib/send-to-dashboard.service.mjs +96 -0
  77. package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.component.mjs +241 -0
  78. package/esm2020/lib/dashboard-lib/show-dashboards/show-dashboards.service.mjs +32 -0
  79. package/esm2020/lib/data-view-lib/data-view/axo-card.mjs +26 -0
  80. package/esm2020/lib/data-view-lib/data-view/axo-tag.mjs +48 -0
  81. package/esm2020/lib/data-view-lib/data-view/board-column.mjs +24 -0
  82. package/esm2020/lib/data-view-lib/data-view/board-view.mjs +45 -0
  83. package/esm2020/lib/data-view-lib/data-view/cardConfig.mjs +26 -0
  84. package/esm2020/lib/data-view-lib/data-view/conditional-formatting.mjs +25 -0
  85. package/esm2020/lib/data-view-lib/data-view/coordinate.mjs +21 -0
  86. package/esm2020/lib/data-view-lib/data-view/data-view-enums.mjs +68 -0
  87. package/esm2020/lib/data-view-lib/data-view/data-view-filter.mjs +47 -0
  88. package/esm2020/lib/data-view-lib/data-view/data-view.mjs +66 -0
  89. package/esm2020/lib/data-view-lib/data-view/idata-view.mjs +2 -0
  90. package/esm2020/lib/data-view-lib/data-view/image-style.mjs +21 -0
  91. package/esm2020/lib/data-view-lib/data-view/info-window.mjs +23 -0
  92. package/esm2020/lib/data-view-lib/data-view/location.mjs +21 -0
  93. package/esm2020/lib/data-view-lib/data-view/map-view.mjs +41 -0
  94. package/esm2020/lib/data-view-lib/data-view/prefix-style.mjs +28 -0
  95. package/esm2020/lib/data-view-lib/data-view/tag-style.mjs +28 -0
  96. package/esm2020/lib/data-view-lib/data-view/tagConfig.mjs +63 -0
  97. package/esm2020/lib/data-view-lib/data-view/task-asset-form-object-dto.mjs +72 -0
  98. package/esm2020/lib/data-view-lib/data-view/task-column-value.mjs +43 -0
  99. package/esm2020/lib/data-view-lib/data-view/task-view.mjs +31 -0
  100. package/esm2020/lib/data-view-lib/data-view/task.mjs +199 -0
  101. package/esm2020/lib/data-view-lib/data-view/value-style.mjs +25 -0
  102. package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.component.mjs +661 -0
  103. package/esm2020/lib/data-view-lib/data-view-filters/data-view-filters.service.mjs +102 -0
  104. package/esm2020/lib/data-view-lib/data-view-header/data-view-header.component.mjs +536 -0
  105. package/esm2020/lib/data-view-lib/data-view-lib.module.mjs +88 -0
  106. package/esm2020/lib/data-view-lib/data-view.service.mjs +211 -0
  107. package/esm2020/lib/data-view-lib/public-api.mjs +28 -0
  108. package/esm2020/lib/directive/adjust-font-size.mjs +49 -0
  109. package/esm2020/lib/drill-through/drill-through.component.mjs +153 -0
  110. package/esm2020/lib/drill-through/drill-through.module.mjs +33 -0
  111. package/esm2020/lib/drill-through/drill-through.resolver.mjs +80 -0
  112. package/esm2020/lib/drill-through/drill-through.service.mjs +218 -0
  113. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-column.mjs +37 -0
  114. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-list.mjs +37 -0
  115. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.mjs +37 -0
  116. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-range.mjs +34 -0
  117. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.mjs +36 -0
  118. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.mjs +37 -0
  119. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.mjs +34 -0
  120. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-time.mjs +36 -0
  121. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-date-value.mjs +36 -0
  122. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-list.mjs +36 -0
  123. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.mjs +37 -0
  124. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-number-value.mjs +36 -0
  125. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text-list.mjs +36 -0
  126. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-text.mjs +36 -0
  127. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-list.mjs +36 -0
  128. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.mjs +37 -0
  129. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time-range.mjs +38 -0
  130. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-time.mjs +36 -0
  131. package/esm2020/lib/enlighten-lib/ax-expression/ax-exp-toggle.mjs +36 -0
  132. package/esm2020/lib/enlighten-lib/ax-expression/ax-expression-value.mjs +32 -0
  133. package/esm2020/lib/enlighten-lib/ax-expression/ax-expression.mjs +415 -0
  134. package/esm2020/lib/enlighten-lib/ax-expression/ax-number-range.mjs +34 -0
  135. package/esm2020/lib/enlighten-lib/ax-expression/exp-sub-type.mjs +29 -0
  136. package/esm2020/lib/enlighten-lib/ax-expression/public-api.mjs +24 -0
  137. package/esm2020/lib/enlighten-lib/data-model/attribute.mjs +247 -0
  138. package/esm2020/lib/enlighten-lib/data-model/data-model.mjs +52 -0
  139. package/esm2020/lib/enlighten-lib/data-model/dependee.mjs +24 -0
  140. package/esm2020/lib/enlighten-lib/data-model/dependent.mjs +24 -0
  141. package/esm2020/lib/enlighten-lib/data-model/entity.mjs +71 -0
  142. package/esm2020/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.mjs +100 -0
  143. package/esm2020/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.mjs +100 -0
  144. package/esm2020/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.mjs +113 -0
  145. package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree-enums.mjs +6 -0
  146. package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.component.mjs +301 -0
  147. package/esm2020/lib/enlighten-lib/data-model-tree/data-model-tree.module.mjs +67 -0
  148. package/esm2020/lib/enlighten-lib/elements/Property.mjs +3 -0
  149. package/esm2020/lib/enlighten-lib/elements/ax-element.mjs +55 -0
  150. package/esm2020/lib/enlighten-lib/elements/element-factory.mjs +38 -0
  151. package/esm2020/lib/enlighten-lib/enlighten-lib.module.mjs +308 -0
  152. package/esm2020/lib/enlighten-lib/enums/bread-crumbs-style.mjs +6 -0
  153. package/esm2020/lib/enlighten-lib/enums/operator-text-enum.mjs +11 -0
  154. package/esm2020/lib/enlighten-lib/fields/attribute-data.mjs +167 -0
  155. package/esm2020/lib/enlighten-lib/fields/entity.mjs +16 -0
  156. package/esm2020/lib/enlighten-lib/fields/types/ax-audio.mjs +6 -0
  157. package/esm2020/lib/enlighten-lib/fields/types/ax-barcode.mjs +6 -0
  158. package/esm2020/lib/enlighten-lib/fields/types/ax-childrecord.mjs +6 -0
  159. package/esm2020/lib/enlighten-lib/fields/types/ax-counter.mjs +6 -0
  160. package/esm2020/lib/enlighten-lib/fields/types/ax-date.mjs +6 -0
  161. package/esm2020/lib/enlighten-lib/fields/types/ax-decimal.mjs +6 -0
  162. package/esm2020/lib/enlighten-lib/fields/types/ax-document.mjs +6 -0
  163. package/esm2020/lib/enlighten-lib/fields/types/ax-file.mjs +6 -0
  164. package/esm2020/lib/enlighten-lib/fields/types/ax-image.mjs +6 -0
  165. package/esm2020/lib/enlighten-lib/fields/types/ax-location.mjs +6 -0
  166. package/esm2020/lib/enlighten-lib/fields/types/ax-number.mjs +6 -0
  167. package/esm2020/lib/enlighten-lib/fields/types/ax-qrcode.mjs +6 -0
  168. package/esm2020/lib/enlighten-lib/fields/types/ax-signature.mjs +6 -0
  169. package/esm2020/lib/enlighten-lib/fields/types/ax-staticmedia.mjs +6 -0
  170. package/esm2020/lib/enlighten-lib/fields/types/ax-text.mjs +6 -0
  171. package/esm2020/lib/enlighten-lib/fields/types/ax-time.mjs +6 -0
  172. package/esm2020/lib/enlighten-lib/fields/types/ax-uniqueid.mjs +6 -0
  173. package/esm2020/lib/enlighten-lib/fields/types/axo-timestamp.mjs +6 -0
  174. package/esm2020/lib/enlighten-lib/fields/types/choicelist.mjs +6 -0
  175. package/esm2020/lib/enlighten-lib/fields/types/datetime.mjs +6 -0
  176. package/esm2020/lib/enlighten-lib/fields/types/hyperlink.mjs +6 -0
  177. package/esm2020/lib/enlighten-lib/fields/types/ienlighten-type.mjs +2 -0
  178. package/esm2020/lib/enlighten-lib/fields/types/toggle.mjs +6 -0
  179. package/esm2020/lib/enlighten-lib/fields/types/video.mjs +6 -0
  180. package/esm2020/lib/enlighten-lib/filters/ax-filter.mjs +74 -0
  181. package/esm2020/lib/enlighten-lib/filters/ax-operator.mjs +88 -0
  182. package/esm2020/lib/enlighten-lib/filters/chart-filter-type.mjs +7 -0
  183. package/esm2020/lib/enlighten-lib/filters/condition-type.mjs +49 -0
  184. package/esm2020/lib/enlighten-lib/filters/dataList-searchNode.mjs +48 -0
  185. package/esm2020/lib/enlighten-lib/filters/dataListFilterExpression.mjs +32 -0
  186. package/esm2020/lib/enlighten-lib/filters/dataListFilterOperator.mjs +43 -0
  187. package/esm2020/lib/enlighten-lib/filters/dataListSeachQueryTree.mjs +25 -0
  188. package/esm2020/lib/enlighten-lib/filters/filter-category.mjs +78 -0
  189. package/esm2020/lib/enlighten-lib/filters/general-filter-type.mjs +13 -0
  190. package/esm2020/lib/enlighten-lib/filters/gridster-properties.mjs +31 -0
  191. package/esm2020/lib/enlighten-lib/filters/iax-filter.mjs +2 -0
  192. package/esm2020/lib/enlighten-lib/filters/search-node.mjs +50 -0
  193. package/esm2020/lib/enlighten-lib/filters/static-widget.mjs +24 -0
  194. package/esm2020/lib/enlighten-lib/property/element-property.mjs +11 -0
  195. package/esm2020/lib/enlighten-lib/property/filter-category-property.mjs +9 -0
  196. package/esm2020/lib/enlighten-lib/property/filter-property.mjs +9 -0
  197. package/esm2020/lib/enlighten-lib/report/chart-filter/chart-filter.component.mjs +393 -0
  198. package/esm2020/lib/enlighten-lib/report/element.service.mjs +115 -0
  199. package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.mjs +1002 -0
  200. package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.mjs +144 -0
  201. package/esm2020/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.mjs +15 -0
  202. package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.mjs +576 -0
  203. package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.mjs +66 -0
  204. package/esm2020/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.mjs +15 -0
  205. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/border.mjs +18 -0
  206. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-factory.mjs +80 -0
  207. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-property.mjs +4 -0
  208. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart-type.mjs +15 -0
  209. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/chart.mjs +123 -0
  210. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.mjs +32 -0
  211. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.mjs +8 -0
  212. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/dimension.mjs +8 -0
  213. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/font.mjs +32 -0
  214. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/fontStyle.mjs +28 -0
  215. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/label.mjs +6 -0
  216. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/legend.mjs +28 -0
  217. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/matrix.mjs +26 -0
  218. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/shadow.mjs +7 -0
  219. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/style.mjs +14 -0
  220. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/text-style.mjs +34 -0
  221. package/esm2020/lib/enlighten-lib/report/graphical-report/chart/title.mjs +12 -0
  222. package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.component.mjs +357 -0
  223. package/esm2020/lib/enlighten-lib/report/graphical-report/graphical-report.directive.mjs +16 -0
  224. package/esm2020/lib/enlighten-lib/report/graphical-report/ichart-component.mjs +2 -0
  225. package/esm2020/lib/enlighten-lib/report/graphical-report/igraphical-report.component.mjs +2 -0
  226. package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.mjs +856 -0
  227. package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.mjs +97 -0
  228. package/esm2020/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.mjs +15 -0
  229. package/esm2020/lib/enlighten-lib/report/graphical-report/page/page.mjs +48 -0
  230. package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.mjs +934 -0
  231. package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.mjs +103 -0
  232. package/esm2020/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.mjs +15 -0
  233. package/esm2020/lib/enlighten-lib/report/graphical-report/text/text-chart.mjs +56 -0
  234. package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.component.mjs +302 -0
  235. package/esm2020/lib/enlighten-lib/report/graphical-report/text/text.service.mjs +15 -0
  236. package/esm2020/lib/enlighten-lib/report/iproperty.component.mjs +8 -0
  237. package/esm2020/lib/enlighten-lib/report/ireport.mjs +14 -0
  238. package/esm2020/lib/enlighten-lib/report/report-builder-master.service.mjs +83 -0
  239. package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.component.mjs +313 -0
  240. package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.module.mjs +71 -0
  241. package/esm2020/lib/enlighten-lib/report/report-filter/report-filter.service.mjs +246 -0
  242. package/esm2020/lib/enlighten-lib/report/tabular-report/aggregate.mjs +10 -0
  243. package/esm2020/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.mjs +26 -0
  244. package/esm2020/lib/enlighten-lib/report/tabular-report/column-style.mjs +7 -0
  245. package/esm2020/lib/enlighten-lib/report/tabular-report/itabular-report.component.mjs +2 -0
  246. package/esm2020/lib/enlighten-lib/report/tabular-report/orderby-type.mjs +7 -0
  247. package/esm2020/lib/enlighten-lib/report/tabular-report/row-style.mjs +7 -0
  248. package/esm2020/lib/enlighten-lib/report/tabular-report/table-style.mjs +47 -0
  249. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.mjs +4464 -0
  250. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.mjs +1583 -0
  251. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.mjs +70 -0
  252. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.mjs +1837 -0
  253. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.mjs +756 -0
  254. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.component.mjs +156 -0
  255. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.mjs +245 -0
  256. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular-report.service.mjs +960 -0
  257. package/esm2020/lib/enlighten-lib/report/tabular-report/tabular.mjs +196 -0
  258. package/esm2020/lib/enlighten-lib/report/tabular-report/value-formatting.mjs +9 -0
  259. package/esm2020/lib/enlighten-lib/report-control.service.mjs +41 -0
  260. package/esm2020/lib/enlighten-lib/utils/utils.mjs +26 -0
  261. package/esm2020/lib/field-list-lib/fields-list.service.mjs +299 -0
  262. package/esm2020/lib/filters/calender-filter/calender-filter.component.mjs +351 -0
  263. package/esm2020/lib/filters/category-filter/category-filter.component.mjs +207 -0
  264. package/esm2020/lib/filters/category-filter/category-filter.service.mjs +31 -0
  265. package/esm2020/lib/filters/category-filter/category.service.mjs +45 -0
  266. package/esm2020/lib/filters/choice-list-filter/choice-list-filter.component.mjs +178 -0
  267. package/esm2020/lib/filters/choice-list-filter/choice-list-filter.service.mjs +53 -0
  268. package/esm2020/lib/filters/common-filter/common-filter.component.mjs +310 -0
  269. package/esm2020/lib/filters/common-filter/common-filter.service.mjs +106 -0
  270. package/esm2020/lib/filters/custom-scroll-directives.mjs +45 -0
  271. package/esm2020/lib/filters/date-time-filter/date-time-filter.component.mjs +345 -0
  272. package/esm2020/lib/filters/filter-footer/filter-footer.component.mjs +62 -0
  273. package/esm2020/lib/filters/filters.component.mjs +688 -0
  274. package/esm2020/lib/filters/filters.module.mjs +196 -0
  275. package/esm2020/lib/filters/filters.service.mjs +147 -0
  276. package/esm2020/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.mjs +202 -0
  277. package/esm2020/lib/filters/metaColumnTypes.mjs +36 -0
  278. package/esm2020/lib/filters/multi-select-filter/multi-select-filter.component.mjs +211 -0
  279. package/esm2020/lib/filters/multi-select-filter/multi-select-filter.service.mjs +214 -0
  280. package/esm2020/lib/filters/number-filter/number-filter.component.mjs +321 -0
  281. package/esm2020/lib/filters/public-api.mjs +15 -0
  282. package/esm2020/lib/filters/reference-list-filter/reference-list-filter.component.mjs +180 -0
  283. package/esm2020/lib/filters/reference-list-filter/reference-list-filter.service.mjs +151 -0
  284. package/esm2020/lib/filters/single-select-filter/single-select-filter.component.mjs +177 -0
  285. package/esm2020/lib/filters/time-filter/time-filter.component.mjs +301 -0
  286. package/esm2020/lib/filters/user-filter/user-filter.component.mjs +178 -0
  287. package/esm2020/lib/filters/user-filter/user-filter.service.mjs +62 -0
  288. package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.mjs +346 -0
  289. package/esm2020/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.mjs +105 -0
  290. package/esm2020/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.mjs +41 -0
  291. package/esm2020/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.mjs +10 -0
  292. package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.mjs +21 -0
  293. package/esm2020/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.mjs +16 -0
  294. package/esm2020/lib/form-object/form-object-list/form-object-list.component.mjs +823 -0
  295. package/esm2020/lib/form-object/form-object-list/form-object-list.mjs +211 -0
  296. package/esm2020/lib/form-object/form-object-list/form-object-list.module.mjs +224 -0
  297. package/esm2020/lib/form-object/form-object-list/form-object-list.service.mjs +171 -0
  298. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.mjs +94 -0
  299. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.mjs +16 -0
  300. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.mjs +60 -0
  301. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.mjs +33 -0
  302. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.mjs +40 -0
  303. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.mjs +31 -0
  304. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.mjs +98 -0
  305. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.mjs +86 -0
  306. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.mjs +180 -0
  307. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.mjs +45 -0
  308. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.mjs +54 -0
  309. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.mjs +163 -0
  310. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.mjs +45 -0
  311. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.mjs +61 -0
  312. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.mjs +64 -0
  313. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.mjs +21 -0
  314. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.mjs +119 -0
  315. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.mjs +37 -0
  316. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.mjs +21 -0
  317. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.mjs +98 -0
  318. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.mjs +60 -0
  319. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.mjs +62 -0
  320. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.mjs +24 -0
  321. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.mjs +19 -0
  322. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.mjs +49 -0
  323. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.mjs +50 -0
  324. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.mjs +25 -0
  325. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.mjs +33 -0
  326. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.mjs +60 -0
  327. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.mjs +65 -0
  328. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.mjs +28 -0
  329. package/esm2020/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.mjs +89 -0
  330. package/esm2020/lib/form-object/form-object-view/data-detail-view-dto.mjs +55 -0
  331. package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.mjs +85 -0
  332. package/esm2020/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.mjs +16 -0
  333. package/esm2020/lib/form-object/form-object-view/form-object-view.component.mjs +209 -0
  334. package/esm2020/lib/form-object/form-object-view/form-object-view.module.mjs +273 -0
  335. package/esm2020/lib/form-object/form-object-view/form-object-view.service.mjs +268 -0
  336. package/esm2020/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.mjs +83 -0
  337. package/esm2020/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.mjs +92 -0
  338. package/esm2020/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.mjs +68 -0
  339. package/esm2020/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.mjs +155 -0
  340. package/esm2020/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.mjs +158 -0
  341. package/esm2020/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.mjs +248 -0
  342. package/esm2020/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.mjs +93 -0
  343. package/esm2020/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.mjs +179 -0
  344. package/esm2020/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.mjs +210 -0
  345. package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.mjs +93 -0
  346. package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.mjs +58 -0
  347. package/esm2020/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.mjs +16 -0
  348. package/esm2020/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.mjs +76 -0
  349. package/esm2020/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.mjs +89 -0
  350. package/esm2020/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.mjs +263 -0
  351. package/esm2020/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.mjs +17 -0
  352. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.mjs +335 -0
  353. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.mjs +270 -0
  354. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.mjs +498 -0
  355. package/esm2020/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.mjs +203 -0
  356. package/esm2020/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.mjs +70 -0
  357. package/esm2020/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.mjs +21 -0
  358. package/esm2020/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.mjs +146 -0
  359. package/esm2020/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.mjs +92 -0
  360. package/esm2020/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.mjs +84 -0
  361. package/esm2020/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.mjs +82 -0
  362. package/esm2020/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.mjs +93 -0
  363. package/esm2020/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.mjs +144 -0
  364. package/esm2020/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.mjs +95 -0
  365. package/esm2020/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.mjs +83 -0
  366. package/esm2020/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.mjs +82 -0
  367. package/esm2020/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.mjs +79 -0
  368. package/esm2020/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.mjs +113 -0
  369. package/esm2020/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.mjs +89 -0
  370. package/esm2020/lib/form-object/form-object-view/meta-section/meta-section.component.mjs +157 -0
  371. package/esm2020/lib/form-object/form-object-view/section/section.component.mjs +75 -0
  372. package/esm2020/lib/form-object/form-object-view/section-field/section-field.component.mjs +30 -0
  373. package/esm2020/lib/form-object/form-object-view/section-view/section-view.component.mjs +110 -0
  374. package/esm2020/lib/form-object/public-api.mjs +3 -0
  375. package/esm2020/lib/form-permission.service.mjs +106 -0
  376. package/esm2020/lib/forms/ax-form.mjs +212 -0
  377. package/esm2020/lib/forms/iform.mjs +2 -0
  378. package/esm2020/lib/forms/page/common/axo-response-status.mjs +6 -0
  379. package/esm2020/lib/forms/page/common/constants.mjs +399 -0
  380. package/esm2020/lib/forms/page/common/detail-view-enums.mjs +8 -0
  381. package/esm2020/lib/forms/page/common/flatten-status-enum.mjs +10 -0
  382. package/esm2020/lib/forms/page/common/form.constant.mjs +87 -0
  383. package/esm2020/lib/forms/page/common/property-panel-field.mjs +5 -0
  384. package/esm2020/lib/forms/page/common/widget-enums.mjs +269 -0
  385. package/esm2020/lib/forms/page/common/widget-value-handler.mjs +321 -0
  386. package/esm2020/lib/forms/page/data-detail-view/ax-section.mjs +51 -0
  387. package/esm2020/lib/forms/page/data-detail-view/collection-view.mjs +30 -0
  388. package/esm2020/lib/forms/page/data-detail-view/data-details.mjs +60 -0
  389. package/esm2020/lib/forms/page/data-detail-view/section-field.mjs +32 -0
  390. package/esm2020/lib/forms/page/data-detail-view/section.mjs +33 -0
  391. package/esm2020/lib/forms/page/data-list/data-list-column.mjs +45 -0
  392. package/esm2020/lib/forms/page/data-list/data-list.mjs +64 -0
  393. package/esm2020/lib/forms/page/form-object.mjs +17 -0
  394. package/esm2020/lib/forms/page/form-page.mjs +28 -0
  395. package/esm2020/lib/forms/page/value-converters/displayMode-to-bool.mjs +16 -0
  396. package/esm2020/lib/forms/page/value-converters/form-type-converter.mjs +23 -0
  397. package/esm2020/lib/forms/page/value-converters/geo-fence-value-converter.mjs +24 -0
  398. package/esm2020/lib/forms/page/value-converters/image-annotation-value-converter.mjs +20 -0
  399. package/esm2020/lib/forms/page/value-converters/language-source-value-converter.mjs +24 -0
  400. package/esm2020/lib/forms/page/value-converters/list-view-title-converter.mjs +20 -0
  401. package/esm2020/lib/forms/page/value-converters/parse-float-converter.mjs +15 -0
  402. package/esm2020/lib/forms/page/value-converters/parse-int-converter.mjs +20 -0
  403. package/esm2020/lib/forms/page/value-converters/parse-string-converter.mjs +20 -0
  404. package/esm2020/lib/forms/page/value-converters/publicUrls-string-to-array.mjs +20 -0
  405. package/esm2020/lib/forms/page/value-converters/record-limit-type-converter.mjs +23 -0
  406. package/esm2020/lib/forms/page/value-converters/restriction-mode-converter.mjs +23 -0
  407. package/esm2020/lib/forms/page/value-converters/string-to-bool-converter.mjs +16 -0
  408. package/esm2020/lib/forms/page/value-converters/string-to-bool-value-converter.mjs +16 -0
  409. package/esm2020/lib/forms/page/value-converters/string-to-date-time-converter.mjs +19 -0
  410. package/esm2020/lib/forms/page/value-converters/string-to-number -converter.mjs +20 -0
  411. package/esm2020/lib/forms/page/value-converters/textBox-mask-converter.mjs +16 -0
  412. package/esm2020/lib/forms/page/value-converters/validate-converter.mjs +20 -0
  413. package/esm2020/lib/forms/page/value-converters/value-without-mask-converter.mjs +20 -0
  414. package/esm2020/lib/forms/page/value-converters/widget-concrete-class-converter.mjs +22 -0
  415. package/esm2020/lib/forms/page/value-converters/widget-deserializer.mjs +149 -0
  416. package/esm2020/lib/forms/page/widgets/apply-geofences.mjs +65 -0
  417. package/esm2020/lib/forms/page/widgets/auto-number.mjs +87 -0
  418. package/esm2020/lib/forms/page/widgets/ax-audio.mjs +154 -0
  419. package/esm2020/lib/forms/page/widgets/ax-document.mjs +149 -0
  420. package/esm2020/lib/forms/page/widgets/ax-image.mjs +183 -0
  421. package/esm2020/lib/forms/page/widgets/bar-code.mjs +212 -0
  422. package/esm2020/lib/forms/page/widgets/child-record.mjs +193 -0
  423. package/esm2020/lib/forms/page/widgets/choicelist.mjs +375 -0
  424. package/esm2020/lib/forms/page/widgets/counter.mjs +69 -0
  425. package/esm2020/lib/forms/page/widgets/datetime.mjs +247 -0
  426. package/esm2020/lib/forms/page/widgets/formula.mjs +106 -0
  427. package/esm2020/lib/forms/page/widgets/geofence.mjs +127 -0
  428. package/esm2020/lib/forms/page/widgets/gps.mjs +192 -0
  429. package/esm2020/lib/forms/page/widgets/group-header.mjs +200 -0
  430. package/esm2020/lib/forms/page/widgets/languages.mjs +129 -0
  431. package/esm2020/lib/forms/page/widgets/link.mjs +107 -0
  432. package/esm2020/lib/forms/page/widgets/payment.mjs +104 -0
  433. package/esm2020/lib/forms/page/widgets/qr-code.mjs +129 -0
  434. package/esm2020/lib/forms/page/widgets/script-condition.mjs +115 -0
  435. package/esm2020/lib/forms/page/widgets/signature.mjs +81 -0
  436. package/esm2020/lib/forms/page/widgets/static-media.mjs +130 -0
  437. package/esm2020/lib/forms/page/widgets/stopwatch.mjs +117 -0
  438. package/esm2020/lib/forms/page/widgets/sub-form.mjs +114 -0
  439. package/esm2020/lib/forms/page/widgets/textbox.mjs +338 -0
  440. package/esm2020/lib/forms/page/widgets/timestamp.mjs +155 -0
  441. package/esm2020/lib/forms/page/widgets/toggle.mjs +115 -0
  442. package/esm2020/lib/forms/page/widgets/unique-id.mjs +75 -0
  443. package/esm2020/lib/forms/page/widgets/verification.mjs +207 -0
  444. package/esm2020/lib/forms/page/widgets/video.mjs +151 -0
  445. package/esm2020/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.mjs +74 -0
  446. package/esm2020/lib/forms/page/widgets/widget-value/audio-video-widget-value.mjs +36 -0
  447. package/esm2020/lib/forms/page/widgets/widget-value/child-record-value.mjs +114 -0
  448. package/esm2020/lib/forms/page/widgets/widget-value/choice-list-options.mjs +84 -0
  449. package/esm2020/lib/forms/page/widgets/widget-value/choices-ml.mjs +107 -0
  450. package/esm2020/lib/forms/page/widgets/widget-value/dateRangeValue.mjs +38 -0
  451. package/esm2020/lib/forms/page/widgets/widget-value/deviceProfileParams.mjs +9 -0
  452. package/esm2020/lib/forms/page/widgets/widget-value/deviceProfilesTemp.mjs +72 -0
  453. package/esm2020/lib/forms/page/widgets/widget-value/document-widget-value.mjs +56 -0
  454. package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-location-value.mjs +54 -0
  455. package/esm2020/lib/forms/page/widgets/widget-value/geo-fence-widget-value.mjs +50 -0
  456. package/esm2020/lib/forms/page/widgets/widget-value/gps-widget-value.mjs +58 -0
  457. package/esm2020/lib/forms/page/widgets/widget-value/image-widget-value.mjs +99 -0
  458. package/esm2020/lib/forms/page/widgets/widget-value/language-widget-value.mjs +43 -0
  459. package/esm2020/lib/forms/page/widgets/widget-value/location-object-value.mjs +44 -0
  460. package/esm2020/lib/forms/page/widgets/widget-value/multiple-languages.mjs +106 -0
  461. package/esm2020/lib/forms/page/widgets/widget-value/reference-list-object-value.mjs +72 -0
  462. package/esm2020/lib/forms/page/widgets/widget-value/verification-widget-value.mjs +126 -0
  463. package/esm2020/lib/forms/page/widgets/widget.mjs +429 -0
  464. package/esm2020/lib/ghost-loader/ghost-loader.component.mjs +708 -0
  465. package/esm2020/lib/ghost-loader/ghost-loader.module.mjs +27 -0
  466. package/esm2020/lib/ghost-loader/public-api.mjs +3 -0
  467. package/esm2020/lib/map-dialog/map-dialog.component.mjs +46 -0
  468. package/esm2020/lib/map-dialog/map-dialog.module.mjs +39 -0
  469. package/esm2020/lib/map-dialog/public-api.mjs +6 -0
  470. package/esm2020/lib/reports-container/public-api.mjs +8 -0
  471. package/esm2020/lib/reports-container/report-group/report-group.component.mjs +77 -0
  472. package/esm2020/lib/reports-container/reports-container-models/report-group.mjs +42 -0
  473. package/esm2020/lib/reports-container/reports-container-models/report-property.mjs +30 -0
  474. package/esm2020/lib/reports-container/reports-container-models/reports-container-enums.mjs +16 -0
  475. package/esm2020/lib/reports-container/reports-container-models/reports-container.mjs +29 -0
  476. package/esm2020/lib/reports-container/reports-container.component.mjs +60 -0
  477. package/esm2020/lib/reports-container/reports-container.module.mjs +52 -0
  478. package/esm2020/lib/reports-container/reports-container.service.mjs +29 -0
  479. package/esm2020/lib/scrollbar/index.mjs +3 -0
  480. package/esm2020/lib/scrollbar/public-api.mjs +3 -0
  481. package/esm2020/lib/scrollbar/scrollbar.directive.mjs +351 -0
  482. package/esm2020/lib/scrollbar/scrollbar.module.mjs +21 -0
  483. package/esm2020/lib/scrollbar/scrollbar.types.mjs +15 -0
  484. package/esm2020/lib/sculptor-lib/widgets/audio/audio.component.mjs +115 -0
  485. package/esm2020/lib/sculptor-lib/widgets/barcode/barcode.component.mjs +118 -0
  486. package/esm2020/lib/sculptor-lib/widgets/child-record/child-record.component.mjs +115 -0
  487. package/esm2020/lib/sculptor-lib/widgets/choice-list/choice-list.component.mjs +105 -0
  488. package/esm2020/lib/sculptor-lib/widgets/date-time/date-time.component.mjs +136 -0
  489. package/esm2020/lib/sculptor-lib/widgets/document/document.component.mjs +118 -0
  490. package/esm2020/lib/sculptor-lib/widgets/geofence/geofence.component.mjs +115 -0
  491. package/esm2020/lib/sculptor-lib/widgets/gps/gps.component.mjs +115 -0
  492. package/esm2020/lib/sculptor-lib/widgets/group-header/group-header.component.mjs +109 -0
  493. package/esm2020/lib/sculptor-lib/widgets/image/image.component.mjs +131 -0
  494. package/esm2020/lib/sculptor-lib/widgets/language/language.component.mjs +105 -0
  495. package/esm2020/lib/sculptor-lib/widgets/link/link.component.mjs +115 -0
  496. package/esm2020/lib/sculptor-lib/widgets/qr-code/qr-code.component.mjs +118 -0
  497. package/esm2020/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.mjs +105 -0
  498. package/esm2020/lib/sculptor-lib/widgets/subform/subform.component.mjs +109 -0
  499. package/esm2020/lib/sculptor-lib/widgets/textbox/textbox.component.mjs +177 -0
  500. package/esm2020/lib/sculptor-lib/widgets/timestamp/timestamp.component.mjs +115 -0
  501. package/esm2020/lib/sculptor-lib/widgets/toggle/toggle.component.mjs +112 -0
  502. package/esm2020/lib/sculptor-lib/widgets/video/video.component.mjs +118 -0
  503. package/esm2020/lib/sculptor-lib/widgets/widgets.service.mjs +58 -0
  504. package/esm2020/lib/shared/comfirmation-modal/confirmation-modal.component.mjs +63 -0
  505. package/esm2020/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.mjs +83 -0
  506. package/esm2020/lib/shared/shared.module.mjs +51 -0
  507. package/esm2020/public-api.mjs +138 -0
  508. package/fesm2015/ax-common-ui-lib.mjs +56598 -0
  509. package/fesm2015/ax-common-ui-lib.mjs.map +1 -0
  510. package/fesm2020/ax-common-ui-lib.mjs +52373 -0
  511. package/fesm2020/ax-common-ui-lib.mjs.map +1 -0
  512. package/lib/app-list/app-list-dto.d.ts +15 -0
  513. package/lib/app-list/app-list.component.d.ts +62 -0
  514. package/lib/app-list/my-app-list.service.d.ts +69 -0
  515. package/lib/app-list/organization-list-dto.d.ts +15 -0
  516. package/lib/ax-app-common-lib.component.d.ts +8 -0
  517. package/lib/ax-app-common-lib.module.d.ts +24 -0
  518. package/lib/ax-app-common-lib.service.d.ts +6 -0
  519. package/lib/axo-filters/axo-filters.component.d.ts +86 -0
  520. package/lib/axo-filters/axo-filters.module.d.ts +16 -0
  521. package/lib/axo-filters/axo-filters.service.d.ts +36 -0
  522. package/lib/axo-map/axo-map.component.d.ts +9 -0
  523. package/lib/axo-map/axo-map.d.ts +14 -0
  524. package/lib/axo-map/axo-map.module.d.ts +10 -0
  525. package/lib/axo-map/public-api.d.ts +6 -0
  526. package/lib/axo-search-bar/axo-search-bar.component.d.ts +21 -0
  527. package/lib/axo-search-bar/axo-search-bar.module.d.ts +10 -0
  528. package/lib/axo-search-bar/public.api.d.ts +2 -0
  529. package/lib/axo-snack-bar/axo-snack-bar.component.d.ts +20 -0
  530. package/lib/axo-snack-bar/axo-snack-bar.module.d.ts +9 -0
  531. package/lib/axo-snack-bar/axo-snack-bar.service.d.ts +16 -0
  532. package/lib/axo-snack-bar/public-api.d.ts +2 -0
  533. package/lib/axo-state-manager/axo-state-manager.module.d.ts +7 -0
  534. package/lib/axo-state-manager/axo-state-manager.service.d.ts +15 -0
  535. package/lib/axo-state-manager/public-api.d.ts +2 -0
  536. package/lib/axo-utils/axo-utils.d.ts +72 -0
  537. package/lib/axo-utils/axo-utils.module.d.ts +10 -0
  538. package/lib/axo-utils/constants.d.ts +2 -0
  539. package/lib/axo-utils/data-source-types.d.ts +10 -0
  540. package/lib/axo-utils/field-list-search-pipe.d.ts +7 -0
  541. package/lib/axo-utils/filter-search-pipe.d.ts +7 -0
  542. package/lib/axo-utils/public-api.d.ts +1 -0
  543. package/lib/axo-utils/search-pipe/choice-search.pipe.d.ts +7 -0
  544. package/lib/axo-utils/search-pipe.d.ts +7 -0
  545. package/lib/bread-crumbs/bread-crumbs.component.d.ts +48 -0
  546. package/lib/bread-crumbs/bread-crumbs.module.d.ts +9 -0
  547. package/lib/bread-crumbs/bread-crumbs.service.d.ts +76 -0
  548. package/lib/code-editor/code-editor-modes.d.ts +9 -0
  549. package/lib/code-editor/code-editor-themes.d.ts +6 -0
  550. package/lib/code-editor/code-editor.component.d.ts +20 -0
  551. package/lib/code-editor/code-editor.module.d.ts +10 -0
  552. package/lib/code-editor/icode-editor-options.d.ts +51 -0
  553. package/lib/code-editor/public-api.d.ts +2 -0
  554. package/lib/common-dto/attributes-dto.d.ts +24 -0
  555. package/lib/common-dto/dashboard-dto.d.ts +10 -0
  556. package/lib/common-dto/dataListFilter-dto.d.ts +10 -0
  557. package/lib/common-dto/elements-dto.d.ts +51 -0
  558. package/lib/common-dto/form-dto.d.ts +17 -0
  559. package/lib/common-lib-configuration.service.d.ts +13 -0
  560. package/lib/common-property-panel/properties/properties.service.d.ts +18 -0
  561. package/lib/common-utils/entity-base.d.ts +10 -0
  562. package/lib/common-utils/iFlatten.d.ts +13 -0
  563. package/lib/common-utils/report.d.ts +26 -0
  564. package/lib/common.service.d.ts +50 -0
  565. package/lib/converters/convert-to-new-service.d.ts +6 -0
  566. package/lib/converters/convert-to-old-service.d.ts +26 -0
  567. package/lib/core/auth/auth.service.d.ts +75 -0
  568. package/lib/core/core.module.d.ts +12 -0
  569. package/lib/core/icons/icons.module.d.ts +14 -0
  570. package/lib/core/transloco/transloco.http-loader.d.ts +19 -0
  571. package/lib/core/transloco/transloco.module.d.ts +7 -0
  572. package/lib/core/user/axo-user.d.ts +9 -0
  573. package/lib/core/user/user-data.service.d.ts +25 -0
  574. package/lib/core/user/user.service.d.ts +45 -0
  575. package/lib/core/user/user.types.d.ts +9 -0
  576. package/lib/dashboard-lib/dashboard-builder.service.d.ts +27 -0
  577. package/lib/dashboard-lib/dashboard-control.service.d.ts +31 -0
  578. package/lib/dashboard-lib/dashboard-element/dashboard-element.d.ts +9 -0
  579. package/lib/dashboard-lib/dashboard-element-property/dashboard-property/dashboard-element-property.d.ts +7 -0
  580. package/lib/dashboard-lib/dashboard-filter/dashboard-filter.component.d.ts +37 -0
  581. package/lib/dashboard-lib/dashboard-lib.module.d.ts +26 -0
  582. package/lib/dashboard-lib/dashboard-list.service.d.ts +24 -0
  583. package/lib/dashboard-lib/dashboard.d.ts +14 -0
  584. package/lib/dashboard-lib/send-to-dashboard.service.d.ts +39 -0
  585. package/lib/dashboard-lib/show-dashboards/show-dashboards.component.d.ts +53 -0
  586. package/lib/dashboard-lib/show-dashboards/show-dashboards.service.d.ts +11 -0
  587. package/lib/data-view-lib/data-view/axo-card.d.ts +11 -0
  588. package/lib/data-view-lib/data-view/axo-tag.d.ts +26 -0
  589. package/lib/data-view-lib/data-view/board-column.d.ts +12 -0
  590. package/lib/data-view-lib/data-view/board-view.d.ts +23 -0
  591. package/lib/data-view-lib/data-view/cardConfig.d.ts +11 -0
  592. package/lib/data-view-lib/data-view/conditional-formatting.d.ts +11 -0
  593. package/lib/data-view-lib/data-view/coordinate.d.ts +8 -0
  594. package/lib/data-view-lib/data-view/data-view-enums.d.ts +58 -0
  595. package/lib/data-view-lib/data-view/data-view-filter.d.ts +25 -0
  596. package/lib/data-view-lib/data-view/data-view.d.ts +33 -0
  597. package/lib/data-view-lib/data-view/idata-view.d.ts +7 -0
  598. package/lib/data-view-lib/data-view/image-style.d.ts +8 -0
  599. package/lib/data-view-lib/data-view/info-window.d.ts +10 -0
  600. package/lib/data-view-lib/data-view/location.d.ts +8 -0
  601. package/lib/data-view-lib/data-view/map-view.d.ts +21 -0
  602. package/lib/data-view-lib/data-view/prefix-style.d.ts +12 -0
  603. package/lib/data-view-lib/data-view/tag-style.d.ts +12 -0
  604. package/lib/data-view-lib/data-view/tagConfig.d.ts +34 -0
  605. package/lib/data-view-lib/data-view/task-asset-form-object-dto.d.ts +19 -0
  606. package/lib/data-view-lib/data-view/task-column-value.d.ts +48 -0
  607. package/lib/data-view-lib/data-view/task-view.d.ts +15 -0
  608. package/lib/data-view-lib/data-view/task.d.ts +57 -0
  609. package/lib/data-view-lib/data-view/value-style.d.ts +10 -0
  610. package/lib/data-view-lib/data-view-filters/data-view-filters.component.d.ts +142 -0
  611. package/lib/data-view-lib/data-view-filters/data-view-filters.service.d.ts +28 -0
  612. package/lib/data-view-lib/data-view-header/data-view-header.component.d.ts +85 -0
  613. package/lib/data-view-lib/data-view-lib.module.d.ts +19 -0
  614. package/lib/data-view-lib/data-view.service.d.ts +94 -0
  615. package/lib/data-view-lib/public-api.d.ts +27 -0
  616. package/lib/directive/adjust-font-size.d.ts +13 -0
  617. package/lib/drill-through/drill-through.component.d.ts +53 -0
  618. package/lib/drill-through/drill-through.module.d.ts +10 -0
  619. package/lib/drill-through/drill-through.resolver.d.ts +30 -0
  620. package/lib/drill-through/drill-through.service.d.ts +100 -0
  621. package/lib/enlighten-lib/ax-expression/ax-exp-column.d.ts +17 -0
  622. package/lib/enlighten-lib/ax-expression/ax-exp-date-list.d.ts +16 -0
  623. package/lib/enlighten-lib/ax-expression/ax-exp-date-range-value.d.ts +17 -0
  624. package/lib/enlighten-lib/ax-expression/ax-exp-date-range.d.ts +16 -0
  625. package/lib/enlighten-lib/ax-expression/ax-exp-date-time-list.d.ts +16 -0
  626. package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range-value.d.ts +17 -0
  627. package/lib/enlighten-lib/ax-expression/ax-exp-date-time-range.d.ts +16 -0
  628. package/lib/enlighten-lib/ax-expression/ax-exp-date-time.d.ts +16 -0
  629. package/lib/enlighten-lib/ax-expression/ax-exp-date-value.d.ts +16 -0
  630. package/lib/enlighten-lib/ax-expression/ax-exp-number-list.d.ts +16 -0
  631. package/lib/enlighten-lib/ax-expression/ax-exp-number-range-value.d.ts +17 -0
  632. package/lib/enlighten-lib/ax-expression/ax-exp-number-value.d.ts +16 -0
  633. package/lib/enlighten-lib/ax-expression/ax-exp-text-list.d.ts +16 -0
  634. package/lib/enlighten-lib/ax-expression/ax-exp-text.d.ts +16 -0
  635. package/lib/enlighten-lib/ax-expression/ax-exp-time-list.d.ts +16 -0
  636. package/lib/enlighten-lib/ax-expression/ax-exp-time-range-value.d.ts +17 -0
  637. package/lib/enlighten-lib/ax-expression/ax-exp-time-range.d.ts +17 -0
  638. package/lib/enlighten-lib/ax-expression/ax-exp-time.d.ts +16 -0
  639. package/lib/enlighten-lib/ax-expression/ax-exp-toggle.d.ts +16 -0
  640. package/lib/enlighten-lib/ax-expression/ax-expression-value.d.ts +19 -0
  641. package/lib/enlighten-lib/ax-expression/ax-expression.d.ts +66 -0
  642. package/lib/enlighten-lib/ax-expression/ax-number-range.d.ts +16 -0
  643. package/lib/enlighten-lib/ax-expression/exp-sub-type.d.ts +26 -0
  644. package/lib/enlighten-lib/ax-expression/public-api.d.ts +23 -0
  645. package/lib/enlighten-lib/data-model/attribute.d.ts +60 -0
  646. package/lib/enlighten-lib/data-model/data-model.d.ts +32 -0
  647. package/lib/enlighten-lib/data-model/dependee.d.ts +11 -0
  648. package/lib/enlighten-lib/data-model/dependent.d.ts +11 -0
  649. package/lib/enlighten-lib/data-model/entity.d.ts +31 -0
  650. package/lib/enlighten-lib/data-model-tree/attributes-dragdrop-layout/attributes-dragdrop-layout.component.d.ts +23 -0
  651. package/lib/enlighten-lib/data-model-tree/attributes-selection-layout/attributes-selection-layout.component.d.ts +24 -0
  652. package/lib/enlighten-lib/data-model-tree/categories-tree/categories-tree.component.d.ts +25 -0
  653. package/lib/enlighten-lib/data-model-tree/data-model-tree-enums.d.ts +4 -0
  654. package/lib/enlighten-lib/data-model-tree/data-model-tree.component.d.ts +67 -0
  655. package/lib/enlighten-lib/data-model-tree/data-model-tree.module.d.ts +18 -0
  656. package/lib/enlighten-lib/elements/Property.d.ts +3 -0
  657. package/lib/enlighten-lib/elements/ax-element.d.ts +31 -0
  658. package/lib/enlighten-lib/elements/element-factory.d.ts +13 -0
  659. package/lib/enlighten-lib/enlighten-lib.module.d.ts +53 -0
  660. package/lib/enlighten-lib/enums/bread-crumbs-style.d.ts +4 -0
  661. package/lib/enlighten-lib/enums/operator-text-enum.d.ts +9 -0
  662. package/lib/enlighten-lib/fields/attribute-data.d.ts +55 -0
  663. package/lib/enlighten-lib/fields/entity.d.ts +15 -0
  664. package/lib/enlighten-lib/fields/types/ax-audio.d.ts +4 -0
  665. package/lib/enlighten-lib/fields/types/ax-barcode.d.ts +4 -0
  666. package/lib/enlighten-lib/fields/types/ax-childrecord.d.ts +4 -0
  667. package/lib/enlighten-lib/fields/types/ax-counter.d.ts +4 -0
  668. package/lib/enlighten-lib/fields/types/ax-date.d.ts +4 -0
  669. package/lib/enlighten-lib/fields/types/ax-decimal.d.ts +4 -0
  670. package/lib/enlighten-lib/fields/types/ax-document.d.ts +4 -0
  671. package/lib/enlighten-lib/fields/types/ax-file.d.ts +4 -0
  672. package/lib/enlighten-lib/fields/types/ax-image.d.ts +4 -0
  673. package/lib/enlighten-lib/fields/types/ax-location.d.ts +4 -0
  674. package/lib/enlighten-lib/fields/types/ax-number.d.ts +4 -0
  675. package/lib/enlighten-lib/fields/types/ax-qrcode.d.ts +4 -0
  676. package/lib/enlighten-lib/fields/types/ax-signature.d.ts +4 -0
  677. package/lib/enlighten-lib/fields/types/ax-staticmedia.d.ts +4 -0
  678. package/lib/enlighten-lib/fields/types/ax-text.d.ts +4 -0
  679. package/lib/enlighten-lib/fields/types/ax-time.d.ts +4 -0
  680. package/lib/enlighten-lib/fields/types/ax-uniqueid.d.ts +4 -0
  681. package/lib/enlighten-lib/fields/types/axo-timestamp.d.ts +4 -0
  682. package/lib/enlighten-lib/fields/types/choicelist.d.ts +4 -0
  683. package/lib/enlighten-lib/fields/types/datetime.d.ts +4 -0
  684. package/lib/enlighten-lib/fields/types/hyperlink.d.ts +4 -0
  685. package/lib/enlighten-lib/fields/types/ienlighten-type.d.ts +3 -0
  686. package/lib/enlighten-lib/fields/types/toggle.d.ts +4 -0
  687. package/lib/enlighten-lib/fields/types/video.d.ts +4 -0
  688. package/lib/enlighten-lib/filters/ax-filter.d.ts +38 -0
  689. package/lib/enlighten-lib/filters/ax-operator.d.ts +40 -0
  690. package/lib/enlighten-lib/filters/chart-filter-type.d.ts +5 -0
  691. package/lib/enlighten-lib/filters/condition-type.d.ts +43 -0
  692. package/lib/enlighten-lib/filters/dataList-searchNode.d.ts +27 -0
  693. package/lib/enlighten-lib/filters/dataListFilterExpression.d.ts +20 -0
  694. package/lib/enlighten-lib/filters/dataListFilterOperator.d.ts +29 -0
  695. package/lib/enlighten-lib/filters/dataListSeachQueryTree.d.ts +15 -0
  696. package/lib/enlighten-lib/filters/filter-category.d.ts +43 -0
  697. package/lib/enlighten-lib/filters/general-filter-type.d.ts +10 -0
  698. package/lib/enlighten-lib/filters/gridster-properties.d.ts +17 -0
  699. package/lib/enlighten-lib/filters/iax-filter.d.ts +7 -0
  700. package/lib/enlighten-lib/filters/search-node.d.ts +27 -0
  701. package/lib/enlighten-lib/filters/static-widget.d.ts +2 -0
  702. package/lib/enlighten-lib/property/element-property.d.ts +8 -0
  703. package/lib/enlighten-lib/property/filter-category-property.d.ts +6 -0
  704. package/lib/enlighten-lib/property/filter-property.d.ts +6 -0
  705. package/lib/enlighten-lib/report/chart-filter/chart-filter.component.d.ts +78 -0
  706. package/lib/enlighten-lib/report/element.service.d.ts +61 -0
  707. package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.component.d.ts +259 -0
  708. package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.d.ts +52 -0
  709. package/lib/enlighten-lib/report/graphical-report/bar-chart/bar-chart.service.d.ts +9 -0
  710. package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.component.d.ts +177 -0
  711. package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.d.ts +29 -0
  712. package/lib/enlighten-lib/report/graphical-report/card-chart/card-chart.service.d.ts +9 -0
  713. package/lib/enlighten-lib/report/graphical-report/chart/border.d.ts +13 -0
  714. package/lib/enlighten-lib/report/graphical-report/chart/chart-factory.d.ts +7 -0
  715. package/lib/enlighten-lib/report/graphical-report/chart/chart-property.d.ts +5 -0
  716. package/lib/enlighten-lib/report/graphical-report/chart/chart-type.d.ts +16 -0
  717. package/lib/enlighten-lib/report/graphical-report/chart/chart.d.ts +41 -0
  718. package/lib/enlighten-lib/report/graphical-report/chart/common-chart.service.d.ts +13 -0
  719. package/lib/enlighten-lib/report/graphical-report/chart/conditional-formatting.d.ts +6 -0
  720. package/lib/enlighten-lib/report/graphical-report/chart/dimension.d.ts +6 -0
  721. package/lib/enlighten-lib/report/graphical-report/chart/font.d.ts +13 -0
  722. package/lib/enlighten-lib/report/graphical-report/chart/fontStyle.d.ts +13 -0
  723. package/lib/enlighten-lib/report/graphical-report/chart/label.d.ts +6 -0
  724. package/lib/enlighten-lib/report/graphical-report/chart/legend.d.ts +13 -0
  725. package/lib/enlighten-lib/report/graphical-report/chart/matrix.d.ts +11 -0
  726. package/lib/enlighten-lib/report/graphical-report/chart/shadow.d.ts +5 -0
  727. package/lib/enlighten-lib/report/graphical-report/chart/style.d.ts +12 -0
  728. package/lib/enlighten-lib/report/graphical-report/chart/text-style.d.ts +17 -0
  729. package/lib/enlighten-lib/report/graphical-report/chart/title.d.ts +11 -0
  730. package/lib/enlighten-lib/report/graphical-report/graphical-report.component.d.ts +130 -0
  731. package/lib/enlighten-lib/report/graphical-report/graphical-report.directive.d.ts +8 -0
  732. package/lib/enlighten-lib/report/graphical-report/ichart-component.d.ts +6 -0
  733. package/lib/enlighten-lib/report/graphical-report/igraphical-report.component.d.ts +21 -0
  734. package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.component.d.ts +215 -0
  735. package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.d.ts +34 -0
  736. package/lib/enlighten-lib/report/graphical-report/line-chart/line-chart.service.d.ts +9 -0
  737. package/lib/enlighten-lib/report/graphical-report/page/page.d.ts +25 -0
  738. package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.component.d.ts +220 -0
  739. package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.d.ts +38 -0
  740. package/lib/enlighten-lib/report/graphical-report/pie-chart/pie-chart.service.d.ts +9 -0
  741. package/lib/enlighten-lib/report/graphical-report/text/text-chart.d.ts +19 -0
  742. package/lib/enlighten-lib/report/graphical-report/text/text.component.d.ts +72 -0
  743. package/lib/enlighten-lib/report/graphical-report/text/text.service.d.ts +9 -0
  744. package/lib/enlighten-lib/report/iproperty.component.d.ts +14 -0
  745. package/lib/enlighten-lib/report/ireport.d.ts +14 -0
  746. package/lib/enlighten-lib/report/report-builder-master.service.d.ts +42 -0
  747. package/lib/enlighten-lib/report/report-filter/report-filter.component.d.ts +117 -0
  748. package/lib/enlighten-lib/report/report-filter/report-filter.module.d.ts +19 -0
  749. package/lib/enlighten-lib/report/report-filter/report-filter.service.d.ts +102 -0
  750. package/lib/enlighten-lib/report/tabular-report/aggregate.d.ts +8 -0
  751. package/lib/enlighten-lib/report/tabular-report/axo-percentage.pipe.d.ts +7 -0
  752. package/lib/enlighten-lib/report/tabular-report/column-style.d.ts +5 -0
  753. package/lib/enlighten-lib/report/tabular-report/itabular-report.component.d.ts +16 -0
  754. package/lib/enlighten-lib/report/tabular-report/orderby-type.d.ts +5 -0
  755. package/lib/enlighten-lib/report/tabular-report/row-style.d.ts +5 -0
  756. package/lib/enlighten-lib/report/tabular-report/table-style.d.ts +21 -0
  757. package/lib/enlighten-lib/report/tabular-report/tabular/column-group-view/column-group-view.component.d.ts +124 -0
  758. package/lib/enlighten-lib/report/tabular-report/tabular/detail-group-view/detail-group-view.component.d.ts +242 -0
  759. package/lib/enlighten-lib/report/tabular-report/tabular/resize-column-directive.d.ts +21 -0
  760. package/lib/enlighten-lib/report/tabular-report/tabular/row-group-view/row-group-view.component.d.ts +190 -0
  761. package/lib/enlighten-lib/report/tabular-report/tabular/tabular.component.d.ts +177 -0
  762. package/lib/enlighten-lib/report/tabular-report/tabular-report.component.d.ts +53 -0
  763. package/lib/enlighten-lib/report/tabular-report/tabular-report.d.ts +102 -0
  764. package/lib/enlighten-lib/report/tabular-report/tabular-report.service.d.ts +173 -0
  765. package/lib/enlighten-lib/report/tabular-report/tabular.d.ts +92 -0
  766. package/lib/enlighten-lib/report/tabular-report/value-formatting.d.ts +7 -0
  767. package/lib/enlighten-lib/report-control.service.d.ts +15 -0
  768. package/lib/enlighten-lib/utils/utils.d.ts +16 -0
  769. package/lib/field-list-lib/fields-list.service.d.ts +71 -0
  770. package/lib/filters/calender-filter/calender-filter.component.d.ts +70 -0
  771. package/lib/filters/category-filter/category-filter.component.d.ts +65 -0
  772. package/lib/filters/category-filter/category-filter.service.d.ts +16 -0
  773. package/lib/filters/category-filter/category.service.d.ts +23 -0
  774. package/lib/filters/choice-list-filter/choice-list-filter.component.d.ts +64 -0
  775. package/lib/filters/choice-list-filter/choice-list-filter.service.d.ts +36 -0
  776. package/lib/filters/common-filter/common-filter.component.d.ts +135 -0
  777. package/lib/filters/common-filter/common-filter.service.d.ts +42 -0
  778. package/lib/filters/custom-scroll-directives.d.ts +14 -0
  779. package/lib/filters/date-time-filter/date-time-filter.component.d.ts +83 -0
  780. package/lib/filters/filter-footer/filter-footer.component.d.ts +12 -0
  781. package/lib/filters/filters.component.d.ts +139 -0
  782. package/lib/filters/filters.module.d.ts +43 -0
  783. package/lib/filters/filters.service.d.ts +83 -0
  784. package/lib/filters/meta-column-filter-builder/meta-column-filter-builder.service.d.ts +70 -0
  785. package/lib/filters/metaColumnTypes.d.ts +18 -0
  786. package/lib/filters/multi-select-filter/multi-select-filter.component.d.ts +68 -0
  787. package/lib/filters/multi-select-filter/multi-select-filter.service.d.ts +77 -0
  788. package/lib/filters/number-filter/number-filter.component.d.ts +70 -0
  789. package/lib/filters/public-api.d.ts +14 -0
  790. package/lib/filters/reference-list-filter/reference-list-filter.component.d.ts +59 -0
  791. package/lib/filters/reference-list-filter/reference-list-filter.service.d.ts +62 -0
  792. package/lib/filters/single-select-filter/single-select-filter.component.d.ts +59 -0
  793. package/lib/filters/time-filter/time-filter.component.d.ts +62 -0
  794. package/lib/filters/user-filter/user-filter.component.d.ts +61 -0
  795. package/lib/filters/user-filter/user-filter.service.d.ts +26 -0
  796. package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.component.d.ts +87 -0
  797. package/lib/form-object/form-object-list/form-object-list-filter/form-object-list-filter.service.d.ts +33 -0
  798. package/lib/form-object/form-object-list/form-object-list-header/form-object-list-header.component.d.ts +13 -0
  799. package/lib/form-object/form-object-list/form-object-list-header/widget-header-type-handler.d.ts +3 -0
  800. package/lib/form-object/form-object-list/form-object-list-header/widgets/text-box-header/text-box-header.component.d.ts +10 -0
  801. package/lib/form-object/form-object-list/form-object-list-header/widgets-header.directive.d.ts +8 -0
  802. package/lib/form-object/form-object-list/form-object-list.component.d.ts +200 -0
  803. package/lib/form-object/form-object-list/form-object-list.d.ts +42 -0
  804. package/lib/form-object/form-object-list/form-object-list.module.d.ts +59 -0
  805. package/lib/form-object/form-object-list/form-object-list.service.d.ts +69 -0
  806. package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value-handler.d.ts +3 -0
  807. package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-value.directive.d.ts +8 -0
  808. package/lib/form-object/form-object-list/formObjectWidgetValue/form-object-widget-value.component.d.ts +22 -0
  809. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-apply-geo-fence-value/formobject-apply-geo-fence-value.component.d.ts +10 -0
  810. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-audio-value/formobject-audio-value.component.d.ts +12 -0
  811. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-auto-number-value/formobject-auto-number-value.component.d.ts +10 -0
  812. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-bar-code-value/formobject-bar-code-value.component.d.ts +27 -0
  813. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-child-records-value/formobject-child-records-value.component.d.ts +13 -0
  814. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-choicelist-value/formobject-choicelist-value.component.d.ts +20 -0
  815. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-counter-value/formobject-counter-value.component.d.ts +10 -0
  816. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-date-time-value/formobject-date-time-value.component.d.ts +13 -0
  817. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-document-value/formobject-document-value.component.d.ts +15 -0
  818. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-formula-value/formobject-formula-value.component.d.ts +11 -0
  819. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-geo-fence-value/formobject-geo-fence-value.component.d.ts +21 -0
  820. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-gps-value/formobject-gps-value.component.d.ts +23 -0
  821. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-group-header-value/formobject-group-header-value.component.d.ts +10 -0
  822. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-image-value/formobject-image-value.component.d.ts +34 -0
  823. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-languages-value/formobject-languages-value.component.d.ts +12 -0
  824. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-payment-value/formobject-payment-value.component.d.ts +10 -0
  825. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-qr-code-value/formobject-qr-code-value.component.d.ts +27 -0
  826. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-signature-value/formobject-signature-value.component.d.ts +17 -0
  827. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-static-media-value/formobject-static-media-value.component.d.ts +15 -0
  828. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-stop-watch-value/formobject-stop-watch-value.component.d.ts +10 -0
  829. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-sub-form-value/formobject-sub-form-value.component.d.ts +10 -0
  830. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-textbox-value/formobject-textbox-value.component.d.ts +12 -0
  831. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-time-stamp-value/formobject-time-stamp-value.component.d.ts +16 -0
  832. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-toggle-value/formobject-toggle-value.component.d.ts +11 -0
  833. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-unique-id-value/formobject-unique-id-value.component.d.ts +10 -0
  834. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-verification-value/formobject-verification-value.component.d.ts +14 -0
  835. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-video-value/formobject-video-value.component.d.ts +16 -0
  836. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-web-link-value/formobject-web-link-value.component.d.ts +10 -0
  837. package/lib/form-object/form-object-list/formObjectWidgetValue/formobject-widget-mat-dialog/formobject-widget-mat-dialog.component.d.ts +13 -0
  838. package/lib/form-object/form-object-view/data-detail-view-dto.d.ts +16 -0
  839. package/lib/form-object/form-object-view/dynamic-view/dynamic-view.component.d.ts +32 -0
  840. package/lib/form-object/form-object-view/dynamic-view/dynamic-view.directive.d.ts +8 -0
  841. package/lib/form-object/form-object-view/form-object-view.component.d.ts +45 -0
  842. package/lib/form-object/form-object-view/form-object-view.module.d.ts +70 -0
  843. package/lib/form-object/form-object-view/form-object-view.service.d.ts +49 -0
  844. package/lib/form-object/form-object-view/form-object-widgets/apply-geo-fence-widget-view/apply-geo-fence-widget-view.component.d.ts +10 -0
  845. package/lib/form-object/form-object-view/form-object-widgets/audio-widget-view/audio-widget-view.component.d.ts +12 -0
  846. package/lib/form-object/form-object-view/form-object-widgets/auto-number-widget-view/auto-number-widget-view.component.d.ts +10 -0
  847. package/lib/form-object/form-object-view/form-object-widgets/bar-code-widget-view/bar-code-widget-view.component.d.ts +31 -0
  848. package/lib/form-object/form-object-view/form-object-widgets/child-records-widget-view/child-records-widget-view.component.d.ts +22 -0
  849. package/lib/form-object/form-object-view/form-object-widgets/choice-list-widget-view/choice-list-widget-view.component.d.ts +25 -0
  850. package/lib/form-object/form-object-view/form-object-widgets/counter-widget-view/counter-widget-view.component.d.ts +10 -0
  851. package/lib/form-object/form-object-view/form-object-widgets/date-time-widget-view/date-time-widget-view.component.d.ts +12 -0
  852. package/lib/form-object/form-object-view/form-object-widgets/document-widget-view/document-widget-view.component.d.ts +15 -0
  853. package/lib/form-object/form-object-view/form-object-widgets/form-object-widget-type-handler.d.ts +3 -0
  854. package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.component.d.ts +25 -0
  855. package/lib/form-object/form-object-view/form-object-widgets/form-object-widgets-view.directive.d.ts +8 -0
  856. package/lib/form-object/form-object-view/form-object-widgets/formula-widget-view/formula-widget-view.component.d.ts +10 -0
  857. package/lib/form-object/form-object-view/form-object-widgets/geo-fence-widget-view/geo-fence-widget-view.component.d.ts +14 -0
  858. package/lib/form-object/form-object-view/form-object-widgets/gps-widget-view/gps-widget-view.component.d.ts +37 -0
  859. package/lib/form-object/form-object-view/form-object-widgets/group-header-widget-view/group-header-widget-view.component.d.ts +10 -0
  860. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-annotation-data-dto.d.ts +91 -0
  861. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-map-view/image-map-view.component.d.ts +32 -0
  862. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-lightbox-view/image-widget-lightbox-view.component.d.ts +71 -0
  863. package/lib/form-object/form-object-view/form-object-widgets/image-widget-view/image-widget-view.component.d.ts +40 -0
  864. package/lib/form-object/form-object-view/form-object-widgets/language-widget-view/language-widget-view.component.d.ts +12 -0
  865. package/lib/form-object/form-object-view/form-object-widgets/payment-widget-view/payment-widget-view.component.d.ts +10 -0
  866. package/lib/form-object/form-object-view/form-object-widgets/qr-code-widget-view/qr-code-widget-view.component.d.ts +26 -0
  867. package/lib/form-object/form-object-view/form-object-widgets/signature-widget-view/signature-widget-view.component.d.ts +13 -0
  868. package/lib/form-object/form-object-view/form-object-widgets/static-media-widget-view/static-media-widget-view.component.d.ts +13 -0
  869. package/lib/form-object/form-object-view/form-object-widgets/stop-watch-widget-view/stop-watch-widget-view.component.d.ts +10 -0
  870. package/lib/form-object/form-object-view/form-object-widgets/sub-form-widget-view/sub-form-widget-view.component.d.ts +16 -0
  871. package/lib/form-object/form-object-view/form-object-widgets/text-box-widget-view/text-box-widget-view.component.d.ts +14 -0
  872. package/lib/form-object/form-object-view/form-object-widgets/time-stamp-widget-view/time-stamp-widget-view.component.d.ts +15 -0
  873. package/lib/form-object/form-object-view/form-object-widgets/toggle-widget-view/toggle-widget-view.component.d.ts +11 -0
  874. package/lib/form-object/form-object-view/form-object-widgets/unique-id-widget-view/unique-id-widget-view.component.d.ts +10 -0
  875. package/lib/form-object/form-object-view/form-object-widgets/verification-widget-view/verification-widget-view.component.d.ts +14 -0
  876. package/lib/form-object/form-object-view/form-object-widgets/video-widget-view/video-widget-view.component.d.ts +16 -0
  877. package/lib/form-object/form-object-view/form-object-widgets/web-link-widget-view/web-link-widget-view.component.d.ts +10 -0
  878. package/lib/form-object/form-object-view/meta-section/meta-section.component.d.ts +31 -0
  879. package/lib/form-object/form-object-view/section/section.component.d.ts +16 -0
  880. package/lib/form-object/form-object-view/section-field/section-field.component.d.ts +13 -0
  881. package/lib/form-object/form-object-view/section-view/section-view.component.d.ts +16 -0
  882. package/lib/form-object/public-api.d.ts +2 -0
  883. package/lib/form-permission.service.d.ts +51 -0
  884. package/lib/forms/ax-form.d.ts +47 -0
  885. package/lib/forms/iform.d.ts +18 -0
  886. package/lib/forms/page/common/axo-response-status.d.ts +4 -0
  887. package/lib/forms/page/common/constants.d.ts +371 -0
  888. package/lib/forms/page/common/detail-view-enums.d.ts +5 -0
  889. package/lib/forms/page/common/flatten-status-enum.d.ts +7 -0
  890. package/lib/forms/page/common/form.constant.d.ts +85 -0
  891. package/lib/forms/page/common/property-panel-field.d.ts +21 -0
  892. package/lib/forms/page/common/widget-enums.d.ts +236 -0
  893. package/lib/forms/page/common/widget-value-handler.d.ts +4 -0
  894. package/lib/forms/page/data-detail-view/ax-section.d.ts +22 -0
  895. package/lib/forms/page/data-detail-view/collection-view.d.ts +11 -0
  896. package/lib/forms/page/data-detail-view/data-details.d.ts +17 -0
  897. package/lib/forms/page/data-detail-view/section-field.d.ts +13 -0
  898. package/lib/forms/page/data-detail-view/section.d.ts +13 -0
  899. package/lib/forms/page/data-list/data-list-column.d.ts +24 -0
  900. package/lib/forms/page/data-list/data-list.d.ts +24 -0
  901. package/lib/forms/page/form-object.d.ts +6 -0
  902. package/lib/forms/page/form-page.d.ts +19 -0
  903. package/lib/forms/page/value-converters/displayMode-to-bool.d.ts +5 -0
  904. package/lib/forms/page/value-converters/form-type-converter.d.ts +5 -0
  905. package/lib/forms/page/value-converters/geo-fence-value-converter.d.ts +5 -0
  906. package/lib/forms/page/value-converters/image-annotation-value-converter.d.ts +5 -0
  907. package/lib/forms/page/value-converters/language-source-value-converter.d.ts +6 -0
  908. package/lib/forms/page/value-converters/list-view-title-converter.d.ts +5 -0
  909. package/lib/forms/page/value-converters/parse-float-converter.d.ts +5 -0
  910. package/lib/forms/page/value-converters/parse-int-converter.d.ts +5 -0
  911. package/lib/forms/page/value-converters/parse-string-converter.d.ts +5 -0
  912. package/lib/forms/page/value-converters/publicUrls-string-to-array.d.ts +5 -0
  913. package/lib/forms/page/value-converters/record-limit-type-converter.d.ts +5 -0
  914. package/lib/forms/page/value-converters/restriction-mode-converter.d.ts +5 -0
  915. package/lib/forms/page/value-converters/string-to-bool-converter.d.ts +5 -0
  916. package/lib/forms/page/value-converters/string-to-bool-value-converter.d.ts +5 -0
  917. package/lib/forms/page/value-converters/string-to-date-time-converter.d.ts +5 -0
  918. package/lib/forms/page/value-converters/string-to-number -converter.d.ts +5 -0
  919. package/lib/forms/page/value-converters/textBox-mask-converter.d.ts +5 -0
  920. package/lib/forms/page/value-converters/validate-converter.d.ts +5 -0
  921. package/lib/forms/page/value-converters/value-without-mask-converter.d.ts +5 -0
  922. package/lib/forms/page/value-converters/widget-concrete-class-converter.d.ts +6 -0
  923. package/lib/forms/page/value-converters/widget-deserializer.d.ts +3 -0
  924. package/lib/forms/page/widgets/apply-geofences.d.ts +25 -0
  925. package/lib/forms/page/widgets/auto-number.d.ts +28 -0
  926. package/lib/forms/page/widgets/ax-audio.d.ts +43 -0
  927. package/lib/forms/page/widgets/ax-document.d.ts +44 -0
  928. package/lib/forms/page/widgets/ax-image.d.ts +46 -0
  929. package/lib/forms/page/widgets/bar-code.d.ts +52 -0
  930. package/lib/forms/page/widgets/child-record.d.ts +50 -0
  931. package/lib/forms/page/widgets/choicelist.d.ts +70 -0
  932. package/lib/forms/page/widgets/counter.d.ts +36 -0
  933. package/lib/forms/page/widgets/datetime.d.ts +53 -0
  934. package/lib/forms/page/widgets/formula.d.ts +38 -0
  935. package/lib/forms/page/widgets/geofence.d.ts +41 -0
  936. package/lib/forms/page/widgets/gps.d.ts +49 -0
  937. package/lib/forms/page/widgets/group-header.d.ts +51 -0
  938. package/lib/forms/page/widgets/languages.d.ts +41 -0
  939. package/lib/forms/page/widgets/link.d.ts +36 -0
  940. package/lib/forms/page/widgets/payment.d.ts +37 -0
  941. package/lib/forms/page/widgets/qr-code.d.ts +39 -0
  942. package/lib/forms/page/widgets/script-condition.d.ts +33 -0
  943. package/lib/forms/page/widgets/signature.d.ts +34 -0
  944. package/lib/forms/page/widgets/static-media.d.ts +40 -0
  945. package/lib/forms/page/widgets/stopwatch.d.ts +37 -0
  946. package/lib/forms/page/widgets/sub-form.d.ts +39 -0
  947. package/lib/forms/page/widgets/textbox.d.ts +63 -0
  948. package/lib/forms/page/widgets/timestamp.d.ts +42 -0
  949. package/lib/forms/page/widgets/toggle.d.ts +36 -0
  950. package/lib/forms/page/widgets/unique-id.d.ts +33 -0
  951. package/lib/forms/page/widgets/verification.d.ts +55 -0
  952. package/lib/forms/page/widgets/video.d.ts +44 -0
  953. package/lib/forms/page/widgets/widget-value/apply-geo-fence-widget-value.d.ts +18 -0
  954. package/lib/forms/page/widgets/widget-value/audio-video-widget-value.d.ts +11 -0
  955. package/lib/forms/page/widgets/widget-value/child-record-value.d.ts +26 -0
  956. package/lib/forms/page/widgets/widget-value/choice-list-options.d.ts +27 -0
  957. package/lib/forms/page/widgets/widget-value/choices-ml.d.ts +22 -0
  958. package/lib/forms/page/widgets/widget-value/dateRangeValue.d.ts +12 -0
  959. package/lib/forms/page/widgets/widget-value/deviceProfileParams.d.ts +4 -0
  960. package/lib/forms/page/widgets/widget-value/deviceProfilesTemp.d.ts +19 -0
  961. package/lib/forms/page/widgets/widget-value/document-widget-value.d.ts +15 -0
  962. package/lib/forms/page/widgets/widget-value/geo-fence-location-value.d.ts +14 -0
  963. package/lib/forms/page/widgets/widget-value/geo-fence-widget-value.d.ts +14 -0
  964. package/lib/forms/page/widgets/widget-value/gps-widget-value.d.ts +21 -0
  965. package/lib/forms/page/widgets/widget-value/image-widget-value.d.ts +19 -0
  966. package/lib/forms/page/widgets/widget-value/language-widget-value.d.ts +12 -0
  967. package/lib/forms/page/widgets/widget-value/location-object-value.d.ts +12 -0
  968. package/lib/forms/page/widgets/widget-value/multiple-languages.d.ts +21 -0
  969. package/lib/forms/page/widgets/widget-value/reference-list-object-value.d.ts +17 -0
  970. package/lib/forms/page/widgets/widget-value/verification-widget-value.d.ts +31 -0
  971. package/lib/forms/page/widgets/widget.d.ts +75 -0
  972. package/lib/ghost-loader/ghost-loader.component.d.ts +41 -0
  973. package/lib/ghost-loader/ghost-loader.module.d.ts +8 -0
  974. package/lib/ghost-loader/public-api.d.ts +2 -0
  975. package/lib/map-dialog/map-dialog.component.d.ts +16 -0
  976. package/lib/map-dialog/map-dialog.module.d.ts +11 -0
  977. package/lib/map-dialog/public-api.d.ts +5 -0
  978. package/lib/reports-container/public-api.d.ts +7 -0
  979. package/lib/reports-container/report-group/report-group.component.d.ts +17 -0
  980. package/lib/reports-container/reports-container-models/report-group.d.ts +20 -0
  981. package/lib/reports-container/reports-container-models/report-property.d.ts +19 -0
  982. package/lib/reports-container/reports-container-models/reports-container-enums.d.ts +13 -0
  983. package/lib/reports-container/reports-container-models/reports-container.d.ts +16 -0
  984. package/lib/reports-container/reports-container.component.d.ts +16 -0
  985. package/lib/reports-container/reports-container.module.d.ts +13 -0
  986. package/lib/reports-container/reports-container.service.d.ts +18 -0
  987. package/lib/scrollbar/index.d.ts +2 -0
  988. package/lib/scrollbar/public-api.d.ts +2 -0
  989. package/lib/scrollbar/scrollbar.directive.d.ts +153 -0
  990. package/lib/scrollbar/scrollbar.module.d.ts +7 -0
  991. package/lib/scrollbar/scrollbar.types.d.ts +12 -0
  992. package/lib/sculptor-lib/widgets/audio/audio.component.d.ts +32 -0
  993. package/lib/sculptor-lib/widgets/barcode/barcode.component.d.ts +32 -0
  994. package/lib/sculptor-lib/widgets/child-record/child-record.component.d.ts +32 -0
  995. package/lib/sculptor-lib/widgets/choice-list/choice-list.component.d.ts +32 -0
  996. package/lib/sculptor-lib/widgets/date-time/date-time.component.d.ts +32 -0
  997. package/lib/sculptor-lib/widgets/document/document.component.d.ts +32 -0
  998. package/lib/sculptor-lib/widgets/geofence/geofence.component.d.ts +32 -0
  999. package/lib/sculptor-lib/widgets/gps/gps.component.d.ts +32 -0
  1000. package/lib/sculptor-lib/widgets/group-header/group-header.component.d.ts +32 -0
  1001. package/lib/sculptor-lib/widgets/image/image.component.d.ts +32 -0
  1002. package/lib/sculptor-lib/widgets/language/language.component.d.ts +32 -0
  1003. package/lib/sculptor-lib/widgets/link/link.component.d.ts +32 -0
  1004. package/lib/sculptor-lib/widgets/qr-code/qr-code.component.d.ts +32 -0
  1005. package/lib/sculptor-lib/widgets/stopwatch/stopwatch.component.d.ts +32 -0
  1006. package/lib/sculptor-lib/widgets/subform/subform.component.d.ts +32 -0
  1007. package/lib/sculptor-lib/widgets/textbox/textbox.component.d.ts +32 -0
  1008. package/lib/sculptor-lib/widgets/timestamp/timestamp.component.d.ts +32 -0
  1009. package/lib/sculptor-lib/widgets/toggle/toggle.component.d.ts +32 -0
  1010. package/lib/sculptor-lib/widgets/video/video.component.d.ts +32 -0
  1011. package/lib/sculptor-lib/widgets/widgets.service.d.ts +30 -0
  1012. package/lib/shared/comfirmation-modal/confirmation-modal.component.d.ts +18 -0
  1013. package/lib/shared/conditional-formatting/conditional-formatting/conditional-formatting.component.d.ts +29 -0
  1014. package/lib/shared/shared.module.d.ts +13 -0
  1015. package/package.json +64 -0
  1016. package/public-api.d.ts +130 -0
@@ -0,0 +1,1837 @@
1
+ import { moveItemInArray } from '@angular/cdk/drag-drop';
2
+ import { Component, Input, ViewChild, ViewEncapsulation } from '@angular/core';
3
+ import { MatMenuTrigger } from '@angular/material/menu';
4
+ import { ElementsDto } from '../../../../../common-dto/elements-dto';
5
+ import { FieldsListService } from '../../../../../field-list-lib/fields-list.service';
6
+ import moment from 'moment';
7
+ import { ReportBuilderMasterService } from '../../../report-builder-master.service';
8
+ import { TabularReport } from '../../tabular-report';
9
+ import { TabularReportService } from '../../tabular-report.service';
10
+ import { CommonService } from '../../../../../common.service';
11
+ import { ElementService } from '../../../element.service';
12
+ import { ScopeType, ScreenType } from '../../../../filters/condition-type';
13
+ import { DashboardBuilderService } from '../../../../../dashboard-lib/dashboard-builder.service';
14
+ import { TabularComponent } from '../tabular.component';
15
+ import { AxFilter } from '../../../../filters/ax-filter';
16
+ import { GhostLoaderType } from '../../../../../ghost-loader/ghost-loader.component';
17
+ import * as i0 from "@angular/core";
18
+ import * as i1 from "../../../report-builder-master.service";
19
+ import * as i2 from "../../../../../field-list-lib/fields-list.service";
20
+ import * as i3 from "../../tabular-report.service";
21
+ import * as i4 from "../../../../../common.service";
22
+ import * as i5 from "../../../element.service";
23
+ import * as i6 from "../../../../../dashboard-lib/dashboard-builder.service";
24
+ import * as i7 from "@angular/common";
25
+ import * as i8 from "@angular/material/menu";
26
+ import * as i9 from "@angular/cdk/drag-drop";
27
+ import * as i10 from "../resize-column-directive";
28
+ import * as i11 from "@angular/forms";
29
+ import * as i12 from "@angular/material/icon";
30
+ import * as i13 from "@angular/material/checkbox";
31
+ import * as i14 from "../../../../../ghost-loader/ghost-loader.component";
32
+ import * as i15 from "../../axo-percentage.pipe";
33
+ function RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_div_2_Template(rf, ctx) { if (rf & 1) {
34
+ i0.ɵɵelementStart(0, "div", 24);
35
+ i0.ɵɵelementStart(1, "mat-icon");
36
+ i0.ɵɵtext(2, "drag_indicator");
37
+ i0.ɵɵelementEnd();
38
+ i0.ɵɵelementEnd();
39
+ } }
40
+ function RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_button_5_Template(rf, ctx) { if (rf & 1) {
41
+ const _r18 = i0.ɵɵgetCurrentView();
42
+ i0.ɵɵelementStart(0, "button", 25);
43
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_button_5_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r18); const ctx_r17 = i0.ɵɵnextContext(2); const i_r12 = ctx_r17.index; const attr_r11 = ctx_r17.$implicit; const ctx_r16 = i0.ɵɵnextContext(3); return ctx_r16.onContextMenu($event, i_r12, attr_r11); });
44
+ i0.ɵɵelement(1, "mat-icon", 26);
45
+ i0.ɵɵelementEnd();
46
+ } }
47
+ const _c0 = function (a1, a2, a4) { return { enable: true, report: a1, attribute: a2, type: "attribute", index: a4 }; };
48
+ function RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_Template(rf, ctx) { if (rf & 1) {
49
+ const _r21 = i0.ɵɵgetCurrentView();
50
+ i0.ɵɵelementStart(0, "th", 18);
51
+ i0.ɵɵelementStart(1, "div", 19);
52
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_div_2_Template, 3, 0, "div", 20);
53
+ i0.ɵɵelementStart(3, "div", 21);
54
+ i0.ɵɵelementStart(4, "input", 22);
55
+ i0.ɵɵlistener("ngModelChange", function RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_Template_input_ngModelChange_4_listener($event) { i0.ɵɵrestoreView(_r21); const attr_r11 = i0.ɵɵnextContext().$implicit; return attr_r11.label = $event; });
56
+ i0.ɵɵelementEnd();
57
+ i0.ɵɵelementEnd();
58
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_button_5_Template, 2, 0, "button", 23);
59
+ i0.ɵɵelementEnd();
60
+ i0.ɵɵelementEnd();
61
+ } if (rf & 2) {
62
+ const ctx_r22 = i0.ɵɵnextContext();
63
+ const attr_r11 = ctx_r22.$implicit;
64
+ const i_r12 = ctx_r22.index;
65
+ const ctx_r13 = i0.ɵɵnextContext(3);
66
+ i0.ɵɵstyleProp("font-size", ctx_r13.tabularReport.tableStyle.header.font.size, "px")("color", ctx_r13.tabularReport.tableStyle.header.font.color)("font-family", ctx_r13.tabularReport.tableStyle.header.font.family)("background", ctx_r13.tabularReport.tableStyle.header.backgroundColor)("border", ctx_r13.tabularReport.tableStyle.border.width + "px" + " " + ctx_r13.tabularReport.tableStyle.border.borderStyle + " " + ctx_r13.tabularReport.tableStyle.border.color)("text-align", attr_r11.alignment);
67
+ i0.ɵɵproperty("id", ctx_r13.th)("cdkDragDisabled", !ctx_r13.isEditable || attr_r11.rowSpan)("resizeColumnData", i0.ɵɵpureFunction3(27, _c0, ctx_r13.tabularReport, attr_r11, i_r12));
68
+ i0.ɵɵadvance(2);
69
+ i0.ɵɵproperty("ngIf", ctx_r13.isEditable && !attr_r11.rowSpan);
70
+ i0.ɵɵadvance(2);
71
+ i0.ɵɵstyleProp("width", attr_r11.label.length + 1 + "ch")("font-size", ctx_r13.tabularReport.tableStyle.header.font.size, "px")("color", ctx_r13.tabularReport.tableStyle.header.font.color)("font-family", ctx_r13.tabularReport.tableStyle.header.font.family);
72
+ i0.ɵɵproperty("ngModel", attr_r11.label)("readonly", !ctx_r13.isEditable);
73
+ i0.ɵɵadvance(1);
74
+ i0.ɵɵproperty("ngIf", ctx_r13.isEditable);
75
+ } }
76
+ function RowGroupViewComponent_div_0_table_1_ng_container_4_Template(rf, ctx) { if (rf & 1) {
77
+ i0.ɵɵelementContainerStart(0);
78
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_ng_container_4_th_1_Template, 6, 31, "th", 17);
79
+ i0.ɵɵelementContainerEnd();
80
+ } if (rf & 2) {
81
+ const attr_r11 = ctx.$implicit;
82
+ i0.ɵɵadvance(1);
83
+ i0.ɵɵproperty("ngIf", !attr_r11.isHidden);
84
+ } }
85
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
86
+ i0.ɵɵelementContainerStart(0);
87
+ i0.ɵɵelementStart(1, "span");
88
+ i0.ɵɵtext(2);
89
+ i0.ɵɵpipe(3, "date");
90
+ i0.ɵɵelementEnd();
91
+ i0.ɵɵelementContainerEnd();
92
+ } if (rf & 2) {
93
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
94
+ const i_r25 = i0.ɵɵnextContext().index;
95
+ const ctx_r48 = i0.ɵɵnextContext(4);
96
+ i0.ɵɵadvance(2);
97
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(3, 1, ctx_r48.moment(_attr_r30.series[i_r25] + "Z"), _attr_r30.valueFormatting.date));
98
+ } }
99
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
100
+ i0.ɵɵelementContainerStart(0);
101
+ i0.ɵɵelementStart(1, "span");
102
+ i0.ɵɵtext(2);
103
+ i0.ɵɵelementEnd();
104
+ i0.ɵɵelementContainerEnd();
105
+ } if (rf & 2) {
106
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
107
+ const i_r25 = i0.ɵɵnextContext().index;
108
+ i0.ɵɵadvance(2);
109
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
110
+ } }
111
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_3_span_1_Template(rf, ctx) { if (rf & 1) {
112
+ i0.ɵɵelementStart(0, "span");
113
+ i0.ɵɵtext(1);
114
+ i0.ɵɵpipe(2, "date");
115
+ i0.ɵɵelementEnd();
116
+ } if (rf & 2) {
117
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
118
+ const i_r25 = i0.ɵɵnextContext().index;
119
+ const ctx_r57 = i0.ɵɵnextContext(4);
120
+ i0.ɵɵadvance(1);
121
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, ctx_r57.moment(_attr_r30.series[i_r25], "hh:mm:ss"), _attr_r30.valueFormatting.date));
122
+ } }
123
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_3_Template(rf, ctx) { if (rf & 1) {
124
+ i0.ɵɵelementContainerStart(0);
125
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_3_span_1_Template, 3, 4, "span", 6);
126
+ i0.ɵɵelementContainerEnd();
127
+ } if (rf & 2) {
128
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
129
+ const i_r25 = i0.ɵɵnextContext().index;
130
+ i0.ɵɵadvance(1);
131
+ i0.ɵɵproperty("ngIf", _attr_r30.series[i_r25]);
132
+ } }
133
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_4_span_1_Template(rf, ctx) { if (rf & 1) {
134
+ i0.ɵɵelementStart(0, "span");
135
+ i0.ɵɵtext(1);
136
+ i0.ɵɵpipe(2, "date");
137
+ i0.ɵɵelementEnd();
138
+ } if (rf & 2) {
139
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
140
+ const i_r25 = i0.ɵɵnextContext().index;
141
+ i0.ɵɵadvance(1);
142
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, _attr_r30.series[i_r25], _attr_r30.valueFormatting.date));
143
+ } }
144
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_4_Template(rf, ctx) { if (rf & 1) {
145
+ i0.ɵɵelementContainerStart(0);
146
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_4_span_1_Template, 3, 4, "span", 6);
147
+ i0.ɵɵelementContainerEnd();
148
+ } if (rf & 2) {
149
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
150
+ i0.ɵɵadvance(1);
151
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "date");
152
+ } }
153
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_5_Template(rf, ctx) { if (rf & 1) {
154
+ i0.ɵɵelementContainerStart(0);
155
+ i0.ɵɵtext(1);
156
+ i0.ɵɵelementContainerEnd();
157
+ } if (rf & 2) {
158
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
159
+ const i_r25 = i0.ɵɵnextContext().index;
160
+ i0.ɵɵadvance(1);
161
+ i0.ɵɵtextInterpolate1(" ", _attr_r30.series[i_r25], " ");
162
+ } }
163
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_Template(rf, ctx) { if (rf & 1) {
164
+ i0.ɵɵelementStart(0, "span");
165
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_1_Template, 4, 4, "ng-container", 6);
166
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_2_Template, 3, 1, "ng-container", 6);
167
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_3_Template, 2, 1, "ng-container", 6);
168
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_4_Template, 2, 1, "ng-container", 6);
169
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_ng_container_5_Template, 2, 1, "ng-container", 6);
170
+ i0.ɵɵelementEnd();
171
+ } if (rf & 2) {
172
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
173
+ i0.ɵɵadvance(1);
174
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "datetime" || _attr_r30.widgetSubType === "both");
175
+ i0.ɵɵadvance(1);
176
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "timestamp");
177
+ i0.ɵɵadvance(1);
178
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "time");
179
+ i0.ɵɵadvance(1);
180
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "date");
181
+ i0.ɵɵadvance(1);
182
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "date_range");
183
+ } }
184
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_1_Template(rf, ctx) { if (rf & 1) {
185
+ i0.ɵɵelementStart(0, "span");
186
+ i0.ɵɵtext(1);
187
+ i0.ɵɵelementEnd();
188
+ } if (rf & 2) {
189
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
190
+ const i_r25 = i0.ɵɵnextContext().index;
191
+ i0.ɵɵadvance(1);
192
+ i0.ɵɵtextInterpolate1(" ", _attr_r30.series[i_r25], " ");
193
+ } }
194
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_span_1_Template(rf, ctx) { if (rf & 1) {
195
+ i0.ɵɵelementStart(0, "span");
196
+ i0.ɵɵtext(1);
197
+ i0.ɵɵpipe(2, "currency");
198
+ i0.ɵɵelementEnd();
199
+ } if (rf & 2) {
200
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
201
+ const i_r25 = i0.ɵɵnextContext().index;
202
+ i0.ɵɵadvance(1);
203
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, _attr_r30.series[i_r25], _attr_r30.valueFormatting.currency, "symbol"));
204
+ } }
205
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_span_2_Template(rf, ctx) { if (rf & 1) {
206
+ i0.ɵɵelementStart(0, "span");
207
+ i0.ɵɵtext(1);
208
+ i0.ɵɵpipe(2, "axoPercentage");
209
+ i0.ɵɵelementEnd();
210
+ } if (rf & 2) {
211
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
212
+ const i_r25 = i0.ɵɵnextContext().index;
213
+ i0.ɵɵadvance(1);
214
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, _attr_r30.series[i_r25], _attr_r30.series, "detail"));
215
+ } }
216
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_span_3_Template(rf, ctx) { if (rf & 1) {
217
+ i0.ɵɵelementStart(0, "span");
218
+ i0.ɵɵtext(1);
219
+ i0.ɵɵelementEnd();
220
+ } if (rf & 2) {
221
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
222
+ const i_r25 = i0.ɵɵnextContext().index;
223
+ i0.ɵɵadvance(1);
224
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
225
+ } }
226
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_Template(rf, ctx) { if (rf & 1) {
227
+ i0.ɵɵelementStart(0, "span");
228
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_span_1_Template, 3, 5, "span", 6);
229
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_span_2_Template, 3, 5, "span", 6);
230
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_span_3_Template, 2, 1, "span", 6);
231
+ i0.ɵɵelementEnd();
232
+ } if (rf & 2) {
233
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
234
+ i0.ɵɵadvance(1);
235
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.currency);
236
+ i0.ɵɵadvance(1);
237
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.percentage);
238
+ i0.ɵɵadvance(1);
239
+ i0.ɵɵproperty("ngIf", !_attr_r30.valueFormatting.percentage && !_attr_r30.valueFormatting.currency);
240
+ } }
241
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_Template(rf, ctx) { if (rf & 1) {
242
+ i0.ɵɵelementStart(0, "span");
243
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_1_Template, 2, 1, "span", 6);
244
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_span_2_Template, 4, 3, "span", 6);
245
+ i0.ɵɵelementEnd();
246
+ } if (rf & 2) {
247
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
248
+ i0.ɵɵadvance(1);
249
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "decimal" || _attr_r30.widgetSubType === "text" || _attr_r30.widgetSubType === "string");
250
+ i0.ɵɵadvance(1);
251
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "numeric");
252
+ } }
253
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_3_Template(rf, ctx) { if (rf & 1) {
254
+ const _r86 = i0.ɵɵgetCurrentView();
255
+ i0.ɵɵelementStart(0, "span");
256
+ i0.ɵɵelementStart(1, "span", 35);
257
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_3_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r86); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r84 = i0.ɵɵnextContext(4); return ctx_r84.redirect($event, _attr_r30.series[i_r25]); });
258
+ i0.ɵɵtext(2);
259
+ i0.ɵɵelementEnd();
260
+ i0.ɵɵelementEnd();
261
+ } if (rf & 2) {
262
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
263
+ const i_r25 = i0.ɵɵnextContext().index;
264
+ const ctx_r40 = i0.ɵɵnextContext(4);
265
+ i0.ɵɵadvance(1);
266
+ i0.ɵɵproperty("title", ctx_r40.x1ImageMediaUrl + _attr_r30.series[i_r25]);
267
+ i0.ɵɵadvance(1);
268
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
269
+ } }
270
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_4_Template(rf, ctx) { if (rf & 1) {
271
+ const _r91 = i0.ɵɵgetCurrentView();
272
+ i0.ɵɵelementStart(0, "span");
273
+ i0.ɵɵelementStart(1, "span", 35);
274
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_4_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r91); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r90 = i0.ɵɵnextContext(4); return ctx_r90.redirect($event, ctx_r90.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
275
+ i0.ɵɵtext(2);
276
+ i0.ɵɵelementEnd();
277
+ i0.ɵɵelementEnd();
278
+ } if (rf & 2) {
279
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
280
+ const i_r25 = i0.ɵɵnextContext().index;
281
+ const ctx_r41 = i0.ɵɵnextContext(4);
282
+ i0.ɵɵadvance(1);
283
+ i0.ɵɵproperty("title", ctx_r41.x1ImageMediaUrl + _attr_r30.series[i_r25]);
284
+ i0.ɵɵadvance(1);
285
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
286
+ } }
287
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_5_Template(rf, ctx) { if (rf & 1) {
288
+ const _r97 = i0.ɵɵgetCurrentView();
289
+ i0.ɵɵelementStart(0, "span");
290
+ i0.ɵɵelementStart(1, "span", 35);
291
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_5_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r97); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r96 = i0.ɵɵnextContext(4); return ctx_r96.redirect($event, ctx_r96.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
292
+ i0.ɵɵtext(2);
293
+ i0.ɵɵelementEnd();
294
+ i0.ɵɵelementEnd();
295
+ } if (rf & 2) {
296
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
297
+ const i_r25 = i0.ɵɵnextContext().index;
298
+ const ctx_r42 = i0.ɵɵnextContext(4);
299
+ i0.ɵɵadvance(1);
300
+ i0.ɵɵproperty("title", ctx_r42.x1ImageMediaUrl + _attr_r30.series[i_r25]);
301
+ i0.ɵɵadvance(1);
302
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
303
+ } }
304
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_6_Template(rf, ctx) { if (rf & 1) {
305
+ const _r103 = i0.ɵɵgetCurrentView();
306
+ i0.ɵɵelementStart(0, "span");
307
+ i0.ɵɵelementStart(1, "span", 35);
308
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_6_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r103); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r102 = i0.ɵɵnextContext(4); return ctx_r102.redirect($event, ctx_r102.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
309
+ i0.ɵɵtext(2);
310
+ i0.ɵɵelementEnd();
311
+ i0.ɵɵelementEnd();
312
+ } if (rf & 2) {
313
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
314
+ const i_r25 = i0.ɵɵnextContext().index;
315
+ const ctx_r43 = i0.ɵɵnextContext(4);
316
+ i0.ɵɵadvance(1);
317
+ i0.ɵɵproperty("title", ctx_r43.x1ImageMediaUrl + _attr_r30.series[i_r25]);
318
+ i0.ɵɵadvance(1);
319
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
320
+ } }
321
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_7_Template(rf, ctx) { if (rf & 1) {
322
+ const _r109 = i0.ɵɵgetCurrentView();
323
+ i0.ɵɵelementStart(0, "span");
324
+ i0.ɵɵelementStart(1, "span", 35);
325
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_7_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r109); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r108 = i0.ɵɵnextContext(4); return ctx_r108.redirect($event, ctx_r108.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
326
+ i0.ɵɵtext(2);
327
+ i0.ɵɵelementEnd();
328
+ i0.ɵɵelementEnd();
329
+ } if (rf & 2) {
330
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
331
+ const i_r25 = i0.ɵɵnextContext().index;
332
+ const ctx_r44 = i0.ɵɵnextContext(4);
333
+ i0.ɵɵadvance(1);
334
+ i0.ɵɵproperty("title", ctx_r44.x1ImageMediaUrl + _attr_r30.series[i_r25]);
335
+ i0.ɵɵadvance(1);
336
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
337
+ } }
338
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_8_Template(rf, ctx) { if (rf & 1) {
339
+ const _r115 = i0.ɵɵgetCurrentView();
340
+ i0.ɵɵelementStart(0, "span");
341
+ i0.ɵɵelementStart(1, "span", 36);
342
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_8_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r115); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r114 = i0.ɵɵnextContext(4); return ctx_r114.redirectOnSingleClick($event, ctx_r114.removeSlashFromURL(ctx_r114.x1MediaUrl) + _attr_r30.series[i_r25]); });
343
+ i0.ɵɵelement(2, "mat-icon", 37);
344
+ i0.ɵɵelementEnd();
345
+ i0.ɵɵelementEnd();
346
+ } if (rf & 2) {
347
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
348
+ const i_r25 = i0.ɵɵnextContext().index;
349
+ const ctx_r45 = i0.ɵɵnextContext(4);
350
+ i0.ɵɵadvance(1);
351
+ i0.ɵɵproperty("title", ctx_r45.removeSlashFromURL(ctx_r45.x1MediaUrl) + _attr_r30.series[i_r25]);
352
+ } }
353
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_9_Template(rf, ctx) { if (rf & 1) {
354
+ const _r121 = i0.ɵɵgetCurrentView();
355
+ i0.ɵɵelementStart(0, "span");
356
+ i0.ɵɵelementStart(1, "span", 35);
357
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_9_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r121); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r120 = i0.ɵɵnextContext(4); return ctx_r120.redirect($event, ctx_r120.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
358
+ i0.ɵɵtext(2);
359
+ i0.ɵɵelementEnd();
360
+ i0.ɵɵelementEnd();
361
+ } if (rf & 2) {
362
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
363
+ const i_r25 = i0.ɵɵnextContext().index;
364
+ const ctx_r46 = i0.ɵɵnextContext(4);
365
+ i0.ɵɵadvance(1);
366
+ i0.ɵɵproperty("title", ctx_r46.x1ImageMediaUrl + _attr_r30.series[i_r25]);
367
+ i0.ɵɵadvance(1);
368
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
369
+ } }
370
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_10_Template(rf, ctx) { if (rf & 1) {
371
+ i0.ɵɵelementStart(0, "span");
372
+ i0.ɵɵtext(1);
373
+ i0.ɵɵelementEnd();
374
+ } if (rf & 2) {
375
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
376
+ const i_r25 = i0.ɵɵnextContext().index;
377
+ i0.ɵɵadvance(1);
378
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
379
+ } }
380
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_Template(rf, ctx) { if (rf & 1) {
381
+ i0.ɵɵelementContainerStart(0);
382
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_1_Template, 6, 5, "span", 33);
383
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_2_Template, 3, 2, "span", 33);
384
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_3_Template, 3, 2, "span", 33);
385
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_4_Template, 3, 2, "span", 33);
386
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_5_Template, 3, 2, "span", 33);
387
+ i0.ɵɵtemplate(6, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_6_Template, 3, 2, "span", 33);
388
+ i0.ɵɵtemplate(7, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_7_Template, 3, 2, "span", 33);
389
+ i0.ɵɵtemplate(8, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_8_Template, 3, 1, "span", 33);
390
+ i0.ɵɵtemplate(9, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_9_Template, 3, 2, "span", 33);
391
+ i0.ɵɵtemplate(10, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_span_10_Template, 2, 1, "span", 34);
392
+ i0.ɵɵelementContainerEnd();
393
+ } if (rf & 2) {
394
+ i0.ɵɵadvance(1);
395
+ i0.ɵɵproperty("ngSwitchCase", "datepicker-widget");
396
+ i0.ɵɵadvance(1);
397
+ i0.ɵɵproperty("ngSwitchCase", "textbox-widget");
398
+ i0.ɵɵadvance(1);
399
+ i0.ɵɵproperty("ngSwitchCase", "hyperlink-widget");
400
+ i0.ɵɵadvance(1);
401
+ i0.ɵɵproperty("ngSwitchCase", "wetsignaturecapture-widget");
402
+ i0.ɵɵadvance(1);
403
+ i0.ɵɵproperty("ngSwitchCase", "videocapture-widget");
404
+ i0.ɵɵadvance(1);
405
+ i0.ɵɵproperty("ngSwitchCase", "audiocapture-widget");
406
+ i0.ɵɵadvance(1);
407
+ i0.ɵɵproperty("ngSwitchCase", "fileupload-widget");
408
+ i0.ɵɵadvance(1);
409
+ i0.ɵɵproperty("ngSwitchCase", "document");
410
+ i0.ɵɵadvance(1);
411
+ i0.ɵɵproperty("ngSwitchCase", "imagecapture-widget");
412
+ } }
413
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_span_1_Template(rf, ctx) { if (rf & 1) {
414
+ i0.ɵɵelementStart(0, "span");
415
+ i0.ɵɵtext(1);
416
+ i0.ɵɵpipe(2, "currency");
417
+ i0.ɵɵelementEnd();
418
+ } if (rf & 2) {
419
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
420
+ i0.ɵɵadvance(1);
421
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, 0, _attr_r30.valueFormatting.currency, "symbol"));
422
+ } }
423
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_span_2_Template(rf, ctx) { if (rf & 1) {
424
+ i0.ɵɵelementStart(0, "span");
425
+ i0.ɵɵtext(1);
426
+ i0.ɵɵpipe(2, "axoPercentage");
427
+ i0.ɵɵelementEnd();
428
+ } if (rf & 2) {
429
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
430
+ i0.ɵɵadvance(1);
431
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, 0, _attr_r30.series, "detail"));
432
+ } }
433
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_span_3_Template(rf, ctx) { if (rf & 1) {
434
+ i0.ɵɵelementStart(0, "span");
435
+ i0.ɵɵtext(1);
436
+ i0.ɵɵelementEnd();
437
+ } if (rf & 2) {
438
+ i0.ɵɵadvance(1);
439
+ i0.ɵɵtextInterpolate(0);
440
+ } }
441
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_Template(rf, ctx) { if (rf & 1) {
442
+ i0.ɵɵelementStart(0, "span");
443
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_span_1_Template, 3, 5, "span", 6);
444
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_span_2_Template, 3, 5, "span", 6);
445
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_span_3_Template, 2, 1, "span", 6);
446
+ i0.ɵɵelementEnd();
447
+ } if (rf & 2) {
448
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
449
+ i0.ɵɵadvance(1);
450
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.currency);
451
+ i0.ɵɵadvance(1);
452
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.percentage);
453
+ i0.ɵɵadvance(1);
454
+ i0.ɵɵproperty("ngIf", !_attr_r30.valueFormatting.percentage && !_attr_r30.valueFormatting.currency);
455
+ } }
456
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_2_Template(rf, ctx) { if (rf & 1) {
457
+ i0.ɵɵelementStart(0, "span");
458
+ i0.ɵɵtext(1, "-");
459
+ i0.ɵɵelementEnd();
460
+ } }
461
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_Template(rf, ctx) { if (rf & 1) {
462
+ i0.ɵɵelementStart(0, "span");
463
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_1_Template, 4, 3, "span", 6);
464
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_span_2_Template, 2, 0, "span", 6);
465
+ i0.ɵɵelementEnd();
466
+ } if (rf & 2) {
467
+ const _attr_r30 = i0.ɵɵnextContext(2).$implicit;
468
+ i0.ɵɵadvance(1);
469
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "numeric" || _attr_r30.widgetSubType === "number");
470
+ i0.ɵɵadvance(1);
471
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType !== "numeric" || _attr_r30.widgetSubType === "number");
472
+ } }
473
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_5_Template(rf, ctx) { if (rf & 1) {
474
+ i0.ɵɵelementStart(0, "span");
475
+ i0.ɵɵtext(1);
476
+ i0.ɵɵelementEnd();
477
+ } if (rf & 2) {
478
+ const _attr_r30 = i0.ɵɵnextContext(2).$implicit;
479
+ const i_r25 = i0.ɵɵnextContext().index;
480
+ i0.ɵɵadvance(1);
481
+ i0.ɵɵtextInterpolate1(" (", _attr_r30.groupData[i_r25], ")");
482
+ } }
483
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_Template(rf, ctx) { if (rf & 1) {
484
+ const _r141 = i0.ɵɵgetCurrentView();
485
+ i0.ɵɵelementStart(0, "td", 31);
486
+ i0.ɵɵlistener("contextmenu", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_Template_td_contextmenu_0_listener($event) { i0.ɵɵrestoreView(_r141); const _attr_r30 = i0.ɵɵnextContext().$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r139 = i0.ɵɵnextContext(4); return ctx_r139.drillThroughContext($event, _attr_r30, i_r25); });
487
+ i0.ɵɵtext(1);
488
+ i0.ɵɵelementStart(2, "div", 32);
489
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_ng_container_3_Template, 11, 9, "ng-container", 6);
490
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_4_Template, 3, 2, "span", 6);
491
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_span_5_Template, 2, 1, "span", 6);
492
+ i0.ɵɵelementEnd();
493
+ i0.ɵɵelementEnd();
494
+ } if (rf & 2) {
495
+ const _attr_r30 = i0.ɵɵnextContext().$implicit;
496
+ const i_r25 = i0.ɵɵnextContext().index;
497
+ const ctx_r33 = i0.ɵɵnextContext(4);
498
+ i0.ɵɵstyleProp("font-family", ctx_r33.tabularReport.tableStyle.body.font.family)("font-size", ctx_r33.tabularReport.tableStyle.body.font.size, "px")("color", ctx_r33.tabularReport.tableStyle.body.font.color)("border", ctx_r33.tabularReport.tableStyle.border.width + "px" + " " + ctx_r33.tabularReport.tableStyle.border.borderStyle + " " + ctx_r33.tabularReport.tableStyle.border.color)("text-align", _attr_r30.alignment);
499
+ i0.ɵɵproperty("rowSpan", _attr_r30.cloneGroupData[i_r25]);
500
+ i0.ɵɵadvance(1);
501
+ i0.ɵɵtextInterpolate1(" ", ctx_r33.indexing(_attr_r30.groupData[i_r25], i_r25), " ");
502
+ i0.ɵɵadvance(1);
503
+ i0.ɵɵproperty("ngSwitch", _attr_r30.widgetType);
504
+ i0.ɵɵadvance(1);
505
+ i0.ɵɵproperty("ngIf", _attr_r30.series[i_r25]);
506
+ i0.ɵɵadvance(1);
507
+ i0.ɵɵproperty("ngIf", !_attr_r30.series[i_r25]);
508
+ i0.ɵɵadvance(1);
509
+ i0.ɵɵproperty("ngIf", _attr_r30.series[i_r25]);
510
+ } }
511
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
512
+ i0.ɵɵelementContainerStart(0);
513
+ i0.ɵɵelementStart(1, "span");
514
+ i0.ɵɵtext(2);
515
+ i0.ɵɵpipe(3, "date");
516
+ i0.ɵɵelementEnd();
517
+ i0.ɵɵelementContainerEnd();
518
+ } if (rf & 2) {
519
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
520
+ const i_r25 = i0.ɵɵnextContext().index;
521
+ const ctx_r157 = i0.ɵɵnextContext(4);
522
+ i0.ɵɵadvance(2);
523
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(3, 1, ctx_r157.moment(_attr_r30.series[i_r25] + "Z"), _attr_r30.valueFormatting.date));
524
+ } }
525
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
526
+ i0.ɵɵelementContainerStart(0);
527
+ i0.ɵɵelementStart(1, "span");
528
+ i0.ɵɵtext(2);
529
+ i0.ɵɵelementEnd();
530
+ i0.ɵɵelementContainerEnd();
531
+ } if (rf & 2) {
532
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
533
+ const i_r25 = i0.ɵɵnextContext().index;
534
+ i0.ɵɵadvance(2);
535
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
536
+ } }
537
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_3_Template(rf, ctx) { if (rf & 1) {
538
+ i0.ɵɵelementContainerStart(0);
539
+ i0.ɵɵelementStart(1, "span");
540
+ i0.ɵɵtext(2);
541
+ i0.ɵɵpipe(3, "date");
542
+ i0.ɵɵelementEnd();
543
+ i0.ɵɵelementContainerEnd();
544
+ } if (rf & 2) {
545
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
546
+ const i_r25 = i0.ɵɵnextContext().index;
547
+ const ctx_r159 = i0.ɵɵnextContext(4);
548
+ i0.ɵɵadvance(2);
549
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(3, 1, ctx_r159.moment(_attr_r30.series[i_r25], "hh:mm:ss"), _attr_r30.valueFormatting.date));
550
+ } }
551
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_4_span_1_Template(rf, ctx) { if (rf & 1) {
552
+ i0.ɵɵelementStart(0, "span");
553
+ i0.ɵɵtext(1);
554
+ i0.ɵɵpipe(2, "date");
555
+ i0.ɵɵelementEnd();
556
+ } if (rf & 2) {
557
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
558
+ const i_r25 = i0.ɵɵnextContext().index;
559
+ i0.ɵɵadvance(1);
560
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, _attr_r30.series[i_r25], _attr_r30.valueFormatting.date));
561
+ } }
562
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_4_Template(rf, ctx) { if (rf & 1) {
563
+ i0.ɵɵelementContainerStart(0);
564
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_4_span_1_Template, 3, 4, "span", 6);
565
+ i0.ɵɵelementContainerEnd();
566
+ } if (rf & 2) {
567
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
568
+ i0.ɵɵadvance(1);
569
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "date");
570
+ } }
571
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_5_Template(rf, ctx) { if (rf & 1) {
572
+ i0.ɵɵelementContainerStart(0);
573
+ i0.ɵɵtext(1);
574
+ i0.ɵɵelementContainerEnd();
575
+ } if (rf & 2) {
576
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
577
+ const i_r25 = i0.ɵɵnextContext().index;
578
+ i0.ɵɵadvance(1);
579
+ i0.ɵɵtextInterpolate1(" ", _attr_r30.series[i_r25], " ");
580
+ } }
581
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_Template(rf, ctx) { if (rf & 1) {
582
+ i0.ɵɵelementStart(0, "span");
583
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_1_Template, 4, 4, "ng-container", 6);
584
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_2_Template, 3, 1, "ng-container", 6);
585
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_3_Template, 4, 4, "ng-container", 6);
586
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_4_Template, 2, 1, "ng-container", 6);
587
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_ng_container_5_Template, 2, 1, "ng-container", 6);
588
+ i0.ɵɵelementEnd();
589
+ } if (rf & 2) {
590
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
591
+ i0.ɵɵadvance(1);
592
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "datetime" || _attr_r30.widgetSubType === "both");
593
+ i0.ɵɵadvance(1);
594
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "timestamp");
595
+ i0.ɵɵadvance(1);
596
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "time");
597
+ i0.ɵɵadvance(1);
598
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "date");
599
+ i0.ɵɵadvance(1);
600
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "date_range");
601
+ } }
602
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_1_Template(rf, ctx) { if (rf & 1) {
603
+ i0.ɵɵelementStart(0, "span");
604
+ i0.ɵɵtext(1);
605
+ i0.ɵɵelementEnd();
606
+ } if (rf & 2) {
607
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
608
+ const i_r25 = i0.ɵɵnextContext().index;
609
+ i0.ɵɵadvance(1);
610
+ i0.ɵɵtextInterpolate1(" ", _attr_r30.series[i_r25], " ");
611
+ } }
612
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_span_1_Template(rf, ctx) { if (rf & 1) {
613
+ i0.ɵɵelementStart(0, "span");
614
+ i0.ɵɵtext(1);
615
+ i0.ɵɵpipe(2, "currency");
616
+ i0.ɵɵelementEnd();
617
+ } if (rf & 2) {
618
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
619
+ const i_r25 = i0.ɵɵnextContext().index;
620
+ i0.ɵɵadvance(1);
621
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, _attr_r30.series[i_r25], _attr_r30.valueFormatting.currency, "symbol"));
622
+ } }
623
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_span_2_Template(rf, ctx) { if (rf & 1) {
624
+ i0.ɵɵelementStart(0, "span");
625
+ i0.ɵɵtext(1);
626
+ i0.ɵɵpipe(2, "axoPercentage");
627
+ i0.ɵɵelementEnd();
628
+ } if (rf & 2) {
629
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
630
+ const i_r25 = i0.ɵɵnextContext().index;
631
+ i0.ɵɵadvance(1);
632
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, _attr_r30.series[i_r25], _attr_r30.series, "detail"));
633
+ } }
634
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_span_3_Template(rf, ctx) { if (rf & 1) {
635
+ i0.ɵɵelementStart(0, "span");
636
+ i0.ɵɵtext(1);
637
+ i0.ɵɵelementEnd();
638
+ } if (rf & 2) {
639
+ const _attr_r30 = i0.ɵɵnextContext(5).$implicit;
640
+ const i_r25 = i0.ɵɵnextContext().index;
641
+ i0.ɵɵadvance(1);
642
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
643
+ } }
644
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_Template(rf, ctx) { if (rf & 1) {
645
+ i0.ɵɵelementStart(0, "span");
646
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_span_1_Template, 3, 5, "span", 6);
647
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_span_2_Template, 3, 5, "span", 6);
648
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_span_3_Template, 2, 1, "span", 6);
649
+ i0.ɵɵelementEnd();
650
+ } if (rf & 2) {
651
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
652
+ i0.ɵɵadvance(1);
653
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.currency);
654
+ i0.ɵɵadvance(1);
655
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.percentage);
656
+ i0.ɵɵadvance(1);
657
+ i0.ɵɵproperty("ngIf", !_attr_r30.valueFormatting.percentage && !_attr_r30.valueFormatting.currency);
658
+ } }
659
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_Template(rf, ctx) { if (rf & 1) {
660
+ i0.ɵɵelementStart(0, "span");
661
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_1_Template, 2, 1, "span", 6);
662
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_span_2_Template, 4, 3, "span", 6);
663
+ i0.ɵɵelementEnd();
664
+ } if (rf & 2) {
665
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
666
+ i0.ɵɵadvance(1);
667
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "decimal" || _attr_r30.widgetSubType === "text" || _attr_r30.widgetSubType === "string");
668
+ i0.ɵɵadvance(1);
669
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "numeric");
670
+ } }
671
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_3_Template(rf, ctx) { if (rf & 1) {
672
+ const _r192 = i0.ɵɵgetCurrentView();
673
+ i0.ɵɵelementStart(0, "span");
674
+ i0.ɵɵelementStart(1, "span", 35);
675
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_3_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r192); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r190 = i0.ɵɵnextContext(4); return ctx_r190.redirect($event, _attr_r30.series[i_r25]); });
676
+ i0.ɵɵtext(2);
677
+ i0.ɵɵelementEnd();
678
+ i0.ɵɵelementEnd();
679
+ } if (rf & 2) {
680
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
681
+ const i_r25 = i0.ɵɵnextContext().index;
682
+ const ctx_r149 = i0.ɵɵnextContext(4);
683
+ i0.ɵɵadvance(1);
684
+ i0.ɵɵproperty("title", ctx_r149.x1ImageMediaUrl + _attr_r30.series[i_r25]);
685
+ i0.ɵɵadvance(1);
686
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
687
+ } }
688
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_4_Template(rf, ctx) { if (rf & 1) {
689
+ const _r197 = i0.ɵɵgetCurrentView();
690
+ i0.ɵɵelementStart(0, "span");
691
+ i0.ɵɵelementStart(1, "span", 35);
692
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_4_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r197); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r196 = i0.ɵɵnextContext(4); return ctx_r196.redirect($event, ctx_r196.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
693
+ i0.ɵɵtext(2);
694
+ i0.ɵɵelementEnd();
695
+ i0.ɵɵelementEnd();
696
+ } if (rf & 2) {
697
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
698
+ const i_r25 = i0.ɵɵnextContext().index;
699
+ const ctx_r150 = i0.ɵɵnextContext(4);
700
+ i0.ɵɵadvance(1);
701
+ i0.ɵɵproperty("title", ctx_r150.x1ImageMediaUrl + _attr_r30.series[i_r25]);
702
+ i0.ɵɵadvance(1);
703
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
704
+ } }
705
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_5_Template(rf, ctx) { if (rf & 1) {
706
+ const _r203 = i0.ɵɵgetCurrentView();
707
+ i0.ɵɵelementStart(0, "span");
708
+ i0.ɵɵelementStart(1, "span", 35);
709
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_5_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r203); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r202 = i0.ɵɵnextContext(4); return ctx_r202.redirect($event, ctx_r202.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
710
+ i0.ɵɵtext(2);
711
+ i0.ɵɵelementEnd();
712
+ i0.ɵɵelementEnd();
713
+ } if (rf & 2) {
714
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
715
+ const i_r25 = i0.ɵɵnextContext().index;
716
+ const ctx_r151 = i0.ɵɵnextContext(4);
717
+ i0.ɵɵadvance(1);
718
+ i0.ɵɵproperty("title", ctx_r151.x1ImageMediaUrl + _attr_r30.series[i_r25]);
719
+ i0.ɵɵadvance(1);
720
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
721
+ } }
722
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_6_Template(rf, ctx) { if (rf & 1) {
723
+ const _r209 = i0.ɵɵgetCurrentView();
724
+ i0.ɵɵelementStart(0, "span");
725
+ i0.ɵɵelementStart(1, "span", 35);
726
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_6_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r209); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r208 = i0.ɵɵnextContext(4); return ctx_r208.redirect($event, ctx_r208.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
727
+ i0.ɵɵtext(2);
728
+ i0.ɵɵelementEnd();
729
+ i0.ɵɵelementEnd();
730
+ } if (rf & 2) {
731
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
732
+ const i_r25 = i0.ɵɵnextContext().index;
733
+ const ctx_r152 = i0.ɵɵnextContext(4);
734
+ i0.ɵɵadvance(1);
735
+ i0.ɵɵproperty("title", ctx_r152.x1ImageMediaUrl + _attr_r30.series[i_r25]);
736
+ i0.ɵɵadvance(1);
737
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
738
+ } }
739
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_7_Template(rf, ctx) { if (rf & 1) {
740
+ const _r215 = i0.ɵɵgetCurrentView();
741
+ i0.ɵɵelementStart(0, "span");
742
+ i0.ɵɵelementStart(1, "span", 35);
743
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_7_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r215); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r214 = i0.ɵɵnextContext(4); return ctx_r214.redirect($event, ctx_r214.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
744
+ i0.ɵɵtext(2);
745
+ i0.ɵɵelementEnd();
746
+ i0.ɵɵelementEnd();
747
+ } if (rf & 2) {
748
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
749
+ const i_r25 = i0.ɵɵnextContext().index;
750
+ const ctx_r153 = i0.ɵɵnextContext(4);
751
+ i0.ɵɵadvance(1);
752
+ i0.ɵɵproperty("title", ctx_r153.x1ImageMediaUrl + _attr_r30.series[i_r25]);
753
+ i0.ɵɵadvance(1);
754
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
755
+ } }
756
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_8_Template(rf, ctx) { if (rf & 1) {
757
+ const _r221 = i0.ɵɵgetCurrentView();
758
+ i0.ɵɵelementStart(0, "span");
759
+ i0.ɵɵelementStart(1, "span", 35);
760
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_8_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r221); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r220 = i0.ɵɵnextContext(4); return ctx_r220.redirect($event, ctx_r220.x1ImageMediaUrl + _attr_r30.series[i_r25]); });
761
+ i0.ɵɵtext(2);
762
+ i0.ɵɵelementEnd();
763
+ i0.ɵɵelementEnd();
764
+ } if (rf & 2) {
765
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
766
+ const i_r25 = i0.ɵɵnextContext().index;
767
+ const ctx_r154 = i0.ɵɵnextContext(4);
768
+ i0.ɵɵadvance(1);
769
+ i0.ɵɵproperty("title", ctx_r154.x1ImageMediaUrl + _attr_r30.series[i_r25]);
770
+ i0.ɵɵadvance(1);
771
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
772
+ } }
773
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_9_Template(rf, ctx) { if (rf & 1) {
774
+ const _r227 = i0.ɵɵgetCurrentView();
775
+ i0.ɵɵelementStart(0, "span");
776
+ i0.ɵɵelementStart(1, "span", 36);
777
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_9_Template_span_click_1_listener($event) { i0.ɵɵrestoreView(_r227); const _attr_r30 = i0.ɵɵnextContext(3).$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r226 = i0.ɵɵnextContext(4); return ctx_r226.redirectOnSingleClick($event, ctx_r226.removeSlashFromURL(ctx_r226.x1MediaUrl) + _attr_r30.series[i_r25]); });
778
+ i0.ɵɵelement(2, "mat-icon", 37);
779
+ i0.ɵɵelementEnd();
780
+ i0.ɵɵelementEnd();
781
+ } if (rf & 2) {
782
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
783
+ const i_r25 = i0.ɵɵnextContext().index;
784
+ const ctx_r155 = i0.ɵɵnextContext(4);
785
+ i0.ɵɵadvance(1);
786
+ i0.ɵɵproperty("title", ctx_r155.removeSlashFromURL(ctx_r155.x1MediaUrl) + _attr_r30.series[i_r25]);
787
+ } }
788
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_10_Template(rf, ctx) { if (rf & 1) {
789
+ i0.ɵɵelementStart(0, "span");
790
+ i0.ɵɵtext(1);
791
+ i0.ɵɵelementEnd();
792
+ } if (rf & 2) {
793
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
794
+ const i_r25 = i0.ɵɵnextContext().index;
795
+ i0.ɵɵadvance(1);
796
+ i0.ɵɵtextInterpolate(_attr_r30.series[i_r25]);
797
+ } }
798
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_Template(rf, ctx) { if (rf & 1) {
799
+ i0.ɵɵelementContainerStart(0);
800
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_1_Template, 6, 5, "span", 33);
801
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_2_Template, 3, 2, "span", 33);
802
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_3_Template, 3, 2, "span", 33);
803
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_4_Template, 3, 2, "span", 33);
804
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_5_Template, 3, 2, "span", 33);
805
+ i0.ɵɵtemplate(6, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_6_Template, 3, 2, "span", 33);
806
+ i0.ɵɵtemplate(7, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_7_Template, 3, 2, "span", 33);
807
+ i0.ɵɵtemplate(8, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_8_Template, 3, 2, "span", 33);
808
+ i0.ɵɵtemplate(9, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_9_Template, 3, 1, "span", 33);
809
+ i0.ɵɵtemplate(10, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_span_10_Template, 2, 1, "span", 34);
810
+ i0.ɵɵelementContainerEnd();
811
+ } if (rf & 2) {
812
+ i0.ɵɵadvance(1);
813
+ i0.ɵɵproperty("ngSwitchCase", "datepicker-widget");
814
+ i0.ɵɵadvance(1);
815
+ i0.ɵɵproperty("ngSwitchCase", "textbox-widget");
816
+ i0.ɵɵadvance(1);
817
+ i0.ɵɵproperty("ngSwitchCase", "hyperlink-widget");
818
+ i0.ɵɵadvance(1);
819
+ i0.ɵɵproperty("ngSwitchCase", "wetsignaturecapture-widget");
820
+ i0.ɵɵadvance(1);
821
+ i0.ɵɵproperty("ngSwitchCase", "videocapture-widget");
822
+ i0.ɵɵadvance(1);
823
+ i0.ɵɵproperty("ngSwitchCase", "audiocapture-widget");
824
+ i0.ɵɵadvance(1);
825
+ i0.ɵɵproperty("ngSwitchCase", "fileupload-widget");
826
+ i0.ɵɵadvance(1);
827
+ i0.ɵɵproperty("ngSwitchCase", "imagecapture-widget");
828
+ i0.ɵɵadvance(1);
829
+ i0.ɵɵproperty("ngSwitchCase", "document");
830
+ } }
831
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_span_1_Template(rf, ctx) { if (rf & 1) {
832
+ i0.ɵɵelementStart(0, "span");
833
+ i0.ɵɵtext(1);
834
+ i0.ɵɵpipe(2, "currency");
835
+ i0.ɵɵelementEnd();
836
+ } if (rf & 2) {
837
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
838
+ i0.ɵɵadvance(1);
839
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, 0, _attr_r30.valueFormatting.currency, "symbol"));
840
+ } }
841
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_span_2_Template(rf, ctx) { if (rf & 1) {
842
+ i0.ɵɵelementStart(0, "span");
843
+ i0.ɵɵtext(1);
844
+ i0.ɵɵpipe(2, "axoPercentage");
845
+ i0.ɵɵelementEnd();
846
+ } if (rf & 2) {
847
+ const _attr_r30 = i0.ɵɵnextContext(4).$implicit;
848
+ i0.ɵɵadvance(1);
849
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, 0, _attr_r30.series, "detail"));
850
+ } }
851
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_span_3_Template(rf, ctx) { if (rf & 1) {
852
+ i0.ɵɵelementStart(0, "span");
853
+ i0.ɵɵtext(1);
854
+ i0.ɵɵelementEnd();
855
+ } if (rf & 2) {
856
+ i0.ɵɵadvance(1);
857
+ i0.ɵɵtextInterpolate(0);
858
+ } }
859
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_Template(rf, ctx) { if (rf & 1) {
860
+ i0.ɵɵelementStart(0, "span");
861
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_span_1_Template, 3, 5, "span", 6);
862
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_span_2_Template, 3, 5, "span", 6);
863
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_span_3_Template, 2, 1, "span", 6);
864
+ i0.ɵɵelementEnd();
865
+ } if (rf & 2) {
866
+ const _attr_r30 = i0.ɵɵnextContext(3).$implicit;
867
+ i0.ɵɵadvance(1);
868
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.currency);
869
+ i0.ɵɵadvance(1);
870
+ i0.ɵɵproperty("ngIf", _attr_r30.valueFormatting.percentage);
871
+ i0.ɵɵadvance(1);
872
+ i0.ɵɵproperty("ngIf", !_attr_r30.valueFormatting.percentage && !_attr_r30.valueFormatting.currency);
873
+ } }
874
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_2_Template(rf, ctx) { if (rf & 1) {
875
+ i0.ɵɵelementStart(0, "span");
876
+ i0.ɵɵtext(1, "-");
877
+ i0.ɵɵelementEnd();
878
+ } }
879
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_Template(rf, ctx) { if (rf & 1) {
880
+ i0.ɵɵelementStart(0, "span");
881
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_1_Template, 4, 3, "span", 6);
882
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_span_2_Template, 2, 0, "span", 6);
883
+ i0.ɵɵelementEnd();
884
+ } if (rf & 2) {
885
+ const _attr_r30 = i0.ɵɵnextContext(2).$implicit;
886
+ i0.ɵɵadvance(1);
887
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType === "numeric" || _attr_r30.widgetSubType === "number");
888
+ i0.ɵɵadvance(1);
889
+ i0.ɵɵproperty("ngIf", _attr_r30.widgetSubType !== "numeric" || _attr_r30.widgetSubType === "number");
890
+ } }
891
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_Template(rf, ctx) { if (rf & 1) {
892
+ const _r245 = i0.ɵɵgetCurrentView();
893
+ i0.ɵɵelementStart(0, "td", 38);
894
+ i0.ɵɵlistener("contextmenu", function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_Template_td_contextmenu_0_listener($event) { i0.ɵɵrestoreView(_r245); const _attr_r30 = i0.ɵɵnextContext().$implicit; const i_r25 = i0.ɵɵnextContext().index; const ctx_r243 = i0.ɵɵnextContext(4); return ctx_r243.drillThroughContext($event, _attr_r30, i_r25); });
895
+ i0.ɵɵelementStart(1, "div", 32);
896
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_ng_container_2_Template, 11, 9, "ng-container", 6);
897
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_span_3_Template, 3, 2, "span", 6);
898
+ i0.ɵɵelementEnd();
899
+ i0.ɵɵelementEnd();
900
+ } if (rf & 2) {
901
+ const _attr_r30 = i0.ɵɵnextContext().$implicit;
902
+ const i_r25 = i0.ɵɵnextContext().index;
903
+ const ctx_r34 = i0.ɵɵnextContext(4);
904
+ i0.ɵɵstyleProp("font-family", ctx_r34.tabularReport.tableStyle.body.font.family)("font-size", ctx_r34.tabularReport.tableStyle.body.font.size, "px")("color", ctx_r34.tabularReport.tableStyle.body.font.color)("border", ctx_r34.tabularReport.tableStyle.border.width + "px" + " " + ctx_r34.tabularReport.tableStyle.border.borderStyle + " " + ctx_r34.tabularReport.tableStyle.border.color)("text-align", _attr_r30.alignment);
905
+ i0.ɵɵadvance(1);
906
+ i0.ɵɵproperty("ngSwitch", _attr_r30.widgetType);
907
+ i0.ɵɵadvance(1);
908
+ i0.ɵɵproperty("ngIf", _attr_r30.series[i_r25]);
909
+ i0.ɵɵadvance(1);
910
+ i0.ɵɵproperty("ngIf", !_attr_r30.series[i_r25]);
911
+ } }
912
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
913
+ i0.ɵɵelementContainerStart(0);
914
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_1_Template, 6, 16, "td", 29);
915
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_td_2_Template, 4, 13, "td", 30);
916
+ i0.ɵɵelementContainerEnd();
917
+ } if (rf & 2) {
918
+ const _attr_r30 = ctx.$implicit;
919
+ const i_r25 = i0.ɵɵnextContext().index;
920
+ i0.ɵɵadvance(1);
921
+ i0.ɵɵproperty("ngIf", _attr_r30.rowSpan && _attr_r30.cloneSeries && _attr_r30.cloneSeries[i_r25] !== "repeated" && !_attr_r30.isHidden);
922
+ i0.ɵɵadvance(1);
923
+ i0.ɵɵproperty("ngIf", !_attr_r30.rowSpan && _attr_r30.series[i_r25] !== "repeated" && !_attr_r30.isHidden);
924
+ } }
925
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_1_Template(rf, ctx) { if (rf & 1) {
926
+ i0.ɵɵelementStart(0, "td", 40);
927
+ i0.ɵɵelementStart(1, "span");
928
+ i0.ɵɵtext(2, "Subtotal");
929
+ i0.ɵɵelementEnd();
930
+ i0.ɵɵelementEnd();
931
+ } if (rf & 2) {
932
+ const _attr_r251 = i0.ɵɵnextContext().$implicit;
933
+ const ctx_r254 = i0.ɵɵnextContext(6);
934
+ i0.ɵɵstyleProp("border", ctx_r254.tabularReport.tableStyle.border.width + "px" + " " + ctx_r254.tabularReport.tableStyle.border.borderStyle + " " + ctx_r254.tabularReport.tableStyle.border.color)("background", ctx_r254.tabularReport.tableStyle.subFooter.backgroundColor)("font-family", ctx_r254.tabularReport.tableStyle.subFooter.font.family)("font-size", ctx_r254.tabularReport.tableStyle.subFooter.font.size, "px")("color", ctx_r254.tabularReport.tableStyle.subFooter.font.color)("border", ctx_r254.tabularReport.tableStyle.border.width + "px" + " " + ctx_r254.tabularReport.tableStyle.border.borderStyle + " " + ctx_r254.tabularReport.tableStyle.border.color)("text-align", _attr_r251.alignment);
935
+ } }
936
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_span_1_Template(rf, ctx) { if (rf & 1) {
937
+ i0.ɵɵelementStart(0, "span");
938
+ i0.ɵɵtext(1);
939
+ i0.ɵɵpipe(2, "currency");
940
+ i0.ɵɵelementEnd();
941
+ } if (rf & 2) {
942
+ const _attr_r251 = i0.ɵɵnextContext(3).$implicit;
943
+ const i_r25 = i0.ɵɵnextContext(2).index;
944
+ const ctx_r259 = i0.ɵɵnextContext(4);
945
+ i0.ɵɵadvance(1);
946
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, ctx_r259.subTotal(ctx_r259.count, i_r25, _attr_r251.series), _attr_r251.valueFormatting.currency, "symbol"));
947
+ } }
948
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_span_2_Template(rf, ctx) { if (rf & 1) {
949
+ i0.ɵɵelementStart(0, "span");
950
+ i0.ɵɵtext(1);
951
+ i0.ɵɵpipe(2, "axoPercentage");
952
+ i0.ɵɵelementEnd();
953
+ } if (rf & 2) {
954
+ const _attr_r251 = i0.ɵɵnextContext(3).$implicit;
955
+ const i_r25 = i0.ɵɵnextContext(2).index;
956
+ const ctx_r260 = i0.ɵɵnextContext(4);
957
+ i0.ɵɵadvance(1);
958
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind3(2, 1, ctx_r260.subTotal(ctx_r260.count, i_r25, _attr_r251.series), _attr_r251.series, "detail"));
959
+ } }
960
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_span_3_Template(rf, ctx) { if (rf & 1) {
961
+ i0.ɵɵelementStart(0, "span");
962
+ i0.ɵɵtext(1);
963
+ i0.ɵɵelementEnd();
964
+ } if (rf & 2) {
965
+ const _attr_r251 = i0.ɵɵnextContext(3).$implicit;
966
+ const i_r25 = i0.ɵɵnextContext(2).index;
967
+ const ctx_r261 = i0.ɵɵnextContext(4);
968
+ i0.ɵɵadvance(1);
969
+ i0.ɵɵtextInterpolate(ctx_r261.subTotal(ctx_r261.count, i_r25, _attr_r251.series));
970
+ } }
971
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_Template(rf, ctx) { if (rf & 1) {
972
+ i0.ɵɵelementStart(0, "span");
973
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_span_1_Template, 3, 5, "span", 6);
974
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_span_2_Template, 3, 5, "span", 6);
975
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_span_3_Template, 2, 1, "span", 6);
976
+ i0.ɵɵelementEnd();
977
+ } if (rf & 2) {
978
+ const _attr_r251 = i0.ɵɵnextContext(2).$implicit;
979
+ i0.ɵɵadvance(1);
980
+ i0.ɵɵproperty("ngIf", _attr_r251.valueFormatting.currency);
981
+ i0.ɵɵadvance(1);
982
+ i0.ɵɵproperty("ngIf", _attr_r251.valueFormatting.percentage);
983
+ i0.ɵɵadvance(1);
984
+ i0.ɵɵproperty("ngIf", !_attr_r251.valueFormatting.percentage && !_attr_r251.valueFormatting.currency);
985
+ } }
986
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_2_Template(rf, ctx) { if (rf & 1) {
987
+ i0.ɵɵelement(0, "span");
988
+ } }
989
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_Template(rf, ctx) { if (rf & 1) {
990
+ i0.ɵɵelementStart(0, "td", 40);
991
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_1_Template, 4, 3, "span", 6);
992
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_span_2_Template, 1, 0, "span", 6);
993
+ i0.ɵɵelementEnd();
994
+ } if (rf & 2) {
995
+ const _attr_r251 = i0.ɵɵnextContext().$implicit;
996
+ const ctx_r255 = i0.ɵɵnextContext(6);
997
+ i0.ɵɵstyleProp("border", ctx_r255.tabularReport.tableStyle.border.width + "px" + " " + ctx_r255.tabularReport.tableStyle.border.borderStyle + " " + ctx_r255.tabularReport.tableStyle.border.color)("background", ctx_r255.tabularReport.tableStyle.subFooter.backgroundColor)("font-family", ctx_r255.tabularReport.tableStyle.subFooter.font.family)("font-size", ctx_r255.tabularReport.tableStyle.subFooter.font.size, "px")("color", ctx_r255.tabularReport.tableStyle.subFooter.font.color)("border", ctx_r255.tabularReport.tableStyle.border.width + "px" + " " + ctx_r255.tabularReport.tableStyle.border.borderStyle + " " + ctx_r255.tabularReport.tableStyle.border.color)("text-align", _attr_r251.alignment);
998
+ i0.ɵɵadvance(1);
999
+ i0.ɵɵproperty("ngIf", _attr_r251.widgetType === "textbox-widget" && (_attr_r251.widgetSubType === "numeric" || _attr_r251.widgetSubType === "number"));
1000
+ i0.ɵɵadvance(1);
1001
+ i0.ɵɵproperty("ngIf", _attr_r251.enlightenType.matIcon !== "axo_number");
1002
+ } }
1003
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_Template(rf, ctx) { if (rf & 1) {
1004
+ i0.ɵɵelementContainerStart(0);
1005
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_1_Template, 3, 14, "td", 39);
1006
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_td_2_Template, 3, 16, "td", 39);
1007
+ i0.ɵɵelementContainerEnd();
1008
+ } if (rf & 2) {
1009
+ const m_r253 = ctx.index;
1010
+ const ctx_r250 = i0.ɵɵnextContext(6);
1011
+ i0.ɵɵadvance(1);
1012
+ i0.ɵɵproperty("ngIf", m_r253 === 0);
1013
+ i0.ɵɵadvance(1);
1014
+ i0.ɵɵproperty("ngIf", m_r253 >= ctx_r250.tabularReport.rowGrouping.length);
1015
+ } }
1016
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_Template(rf, ctx) { if (rf & 1) {
1017
+ i0.ɵɵelementStart(0, "tr");
1018
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_ng_container_1_Template, 3, 2, "ng-container", 14);
1019
+ i0.ɵɵelementEnd();
1020
+ } if (rf & 2) {
1021
+ const ctx_r29 = i0.ɵɵnextContext(5);
1022
+ i0.ɵɵadvance(1);
1023
+ i0.ɵɵproperty("ngForOf", ctx_r29.tabularReport.matrix.attributes);
1024
+ } }
1025
+ const _c1 = function (a0) { return { background: a0 }; };
1026
+ function RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_Template(rf, ctx) { if (rf & 1) {
1027
+ i0.ɵɵelementContainerStart(0);
1028
+ i0.ɵɵelementStart(1, "tr", 28);
1029
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_ng_container_2_Template, 3, 2, "ng-container", 14);
1030
+ i0.ɵɵelementEnd();
1031
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_tr_3_Template, 2, 1, "tr", 6);
1032
+ i0.ɵɵelementContainerEnd();
1033
+ } if (rf & 2) {
1034
+ const i_r25 = ctx.index;
1035
+ const isEven_r26 = ctx.even;
1036
+ const ctx_r23 = i0.ɵɵnextContext(4);
1037
+ i0.ɵɵadvance(1);
1038
+ i0.ɵɵstyleProp("background", ctx_r23.tabularReport.tableStyle.body.backgroundColor)("border", ctx_r23.tabularReport.tableStyle.border.width + " " + ctx_r23.tabularReport.tableStyle.border.borderStyle + " " + ctx_r23.tabularReport.tableStyle.border.color);
1039
+ i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(7, _c1, isEven_r26 ? ctx_r23.tabularReport.tableStyle.rowStyle.oddColor : ctx_r23.tabularReport.tableStyle.rowStyle.evenColor));
1040
+ i0.ɵɵadvance(1);
1041
+ i0.ɵɵproperty("ngForOf", ctx_r23.tabularReport.matrix.attributes);
1042
+ i0.ɵɵadvance(1);
1043
+ i0.ɵɵproperty("ngIf", ctx_r23.tabularReport.subTotal && ctx_r23.attrGlobal === i_r25);
1044
+ } }
1045
+ const _c2 = function (a0) { return { "shadow": a0 }; };
1046
+ function RowGroupViewComponent_div_0_table_1_tbody_5_Template(rf, ctx) { if (rf & 1) {
1047
+ i0.ɵɵelementStart(0, "tbody", 27);
1048
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tbody_5_ng_container_1_Template, 4, 9, "ng-container", 14);
1049
+ i0.ɵɵelementEnd();
1050
+ } if (rf & 2) {
1051
+ const ctx_r9 = i0.ɵɵnextContext(3);
1052
+ i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(2, _c2, ctx_r9.tabularReport.tableStyle.border.shadow.enable));
1053
+ i0.ɵɵadvance(1);
1054
+ i0.ɵɵproperty("ngForOf", ctx_r9.tabularReport.matrix.attributes[0].series);
1055
+ } }
1056
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_1_Template(rf, ctx) { if (rf & 1) {
1057
+ i0.ɵɵelementStart(0, "span");
1058
+ i0.ɵɵtext(1);
1059
+ i0.ɵɵpipe(2, "currency");
1060
+ i0.ɵɵelement(3, "br");
1061
+ i0.ɵɵelementEnd();
1062
+ } if (rf & 2) {
1063
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1064
+ const ctx_r279 = i0.ɵɵnextContext(5);
1065
+ i0.ɵɵadvance(1);
1066
+ i0.ɵɵtextInterpolate1("Sum: ", i0.ɵɵpipeBind3(2, 1, ctx_r279.sum(attr_r272.series), attr_r272.valueFormatting.currency, "symbol"), "");
1067
+ } }
1068
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_2_span_2_Template(rf, ctx) { if (rf & 1) {
1069
+ i0.ɵɵelementStart(0, "span");
1070
+ i0.ɵɵtext(1, "100%");
1071
+ i0.ɵɵelementEnd();
1072
+ } }
1073
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_2_span_3_Template(rf, ctx) { if (rf & 1) {
1074
+ i0.ɵɵelementStart(0, "span");
1075
+ i0.ɵɵtext(1, "0%");
1076
+ i0.ɵɵelementEnd();
1077
+ } }
1078
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_2_Template(rf, ctx) { if (rf & 1) {
1079
+ i0.ɵɵelementStart(0, "span");
1080
+ i0.ɵɵtext(1, " Sum: ");
1081
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_2_span_2_Template, 2, 0, "span", 6);
1082
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_2_span_3_Template, 2, 0, "span", 6);
1083
+ i0.ɵɵelement(4, "br");
1084
+ i0.ɵɵelementEnd();
1085
+ } if (rf & 2) {
1086
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1087
+ const ctx_r280 = i0.ɵɵnextContext(5);
1088
+ i0.ɵɵadvance(2);
1089
+ i0.ɵɵproperty("ngIf", ctx_r280.sum(attr_r272.series) > 1);
1090
+ i0.ɵɵadvance(1);
1091
+ i0.ɵɵproperty("ngIf", ctx_r280.sum(attr_r272.series) < 1);
1092
+ } }
1093
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_3_Template(rf, ctx) { if (rf & 1) {
1094
+ i0.ɵɵelementStart(0, "span");
1095
+ i0.ɵɵtext(1);
1096
+ i0.ɵɵelement(2, "br");
1097
+ i0.ɵɵelementEnd();
1098
+ } if (rf & 2) {
1099
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1100
+ const ctx_r281 = i0.ɵɵnextContext(5);
1101
+ i0.ɵɵadvance(1);
1102
+ i0.ɵɵtextInterpolate1("Sum: ", ctx_r281.sum(attr_r272.series), "");
1103
+ } }
1104
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_Template(rf, ctx) { if (rf & 1) {
1105
+ i0.ɵɵelementStart(0, "span");
1106
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_1_Template, 4, 5, "span", 6);
1107
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_2_Template, 5, 2, "span", 6);
1108
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_span_3_Template, 3, 1, "span", 6);
1109
+ i0.ɵɵelementEnd();
1110
+ } if (rf & 2) {
1111
+ const attr_r272 = i0.ɵɵnextContext(2).$implicit;
1112
+ i0.ɵɵadvance(1);
1113
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.currency);
1114
+ i0.ɵɵadvance(1);
1115
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.percentage);
1116
+ i0.ɵɵadvance(1);
1117
+ i0.ɵɵproperty("ngIf", !attr_r272.valueFormatting.percentage && !attr_r272.valueFormatting.currency);
1118
+ } }
1119
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_span_1_Template(rf, ctx) { if (rf & 1) {
1120
+ i0.ɵɵelementStart(0, "span");
1121
+ i0.ɵɵtext(1);
1122
+ i0.ɵɵpipe(2, "currency");
1123
+ i0.ɵɵelement(3, "br");
1124
+ i0.ɵɵelementEnd();
1125
+ } if (rf & 2) {
1126
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1127
+ const ctx_r288 = i0.ɵɵnextContext(5);
1128
+ i0.ɵɵadvance(1);
1129
+ i0.ɵɵtextInterpolate1("Avg: ", i0.ɵɵpipeBind3(2, 1, ctx_r288.avg(attr_r272.series), attr_r272.valueFormatting.currency, "symbol"), "");
1130
+ } }
1131
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_span_2_Template(rf, ctx) { if (rf & 1) {
1132
+ i0.ɵɵelementStart(0, "span");
1133
+ i0.ɵɵtext(1);
1134
+ i0.ɵɵpipe(2, "axoPercentage");
1135
+ i0.ɵɵelement(3, "br");
1136
+ i0.ɵɵelementEnd();
1137
+ } if (rf & 2) {
1138
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1139
+ const ctx_r289 = i0.ɵɵnextContext(5);
1140
+ i0.ɵɵadvance(1);
1141
+ i0.ɵɵtextInterpolate1("Avg: ", i0.ɵɵpipeBind3(2, 1, ctx_r289.avg(attr_r272.series), attr_r272.series, "detail"), "");
1142
+ } }
1143
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_span_3_Template(rf, ctx) { if (rf & 1) {
1144
+ i0.ɵɵelementStart(0, "span");
1145
+ i0.ɵɵtext(1);
1146
+ i0.ɵɵelement(2, "br");
1147
+ i0.ɵɵelementEnd();
1148
+ } if (rf & 2) {
1149
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1150
+ const ctx_r290 = i0.ɵɵnextContext(5);
1151
+ i0.ɵɵadvance(1);
1152
+ i0.ɵɵtextInterpolate1(" Avg: ", ctx_r290.avg(attr_r272.series), "");
1153
+ } }
1154
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_Template(rf, ctx) { if (rf & 1) {
1155
+ i0.ɵɵelementStart(0, "span");
1156
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_span_1_Template, 4, 5, "span", 6);
1157
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_span_2_Template, 4, 5, "span", 6);
1158
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_span_3_Template, 3, 1, "span", 6);
1159
+ i0.ɵɵelementEnd();
1160
+ } if (rf & 2) {
1161
+ const attr_r272 = i0.ɵɵnextContext(2).$implicit;
1162
+ i0.ɵɵadvance(1);
1163
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.currency);
1164
+ i0.ɵɵadvance(1);
1165
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.percentage);
1166
+ i0.ɵɵadvance(1);
1167
+ i0.ɵɵproperty("ngIf", !attr_r272.valueFormatting.percentage && !attr_r272.valueFormatting.currency);
1168
+ } }
1169
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_span_1_Template(rf, ctx) { if (rf & 1) {
1170
+ i0.ɵɵelementStart(0, "span");
1171
+ i0.ɵɵtext(1);
1172
+ i0.ɵɵpipe(2, "currency");
1173
+ i0.ɵɵelement(3, "br");
1174
+ i0.ɵɵelementEnd();
1175
+ } if (rf & 2) {
1176
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1177
+ const ctx_r295 = i0.ɵɵnextContext(5);
1178
+ i0.ɵɵadvance(1);
1179
+ i0.ɵɵtextInterpolate1(" Max: ", i0.ɵɵpipeBind3(2, 1, ctx_r295.max(attr_r272.series), attr_r272.valueFormatting.currency, "symbol"), "");
1180
+ } }
1181
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_span_2_Template(rf, ctx) { if (rf & 1) {
1182
+ i0.ɵɵelementStart(0, "span");
1183
+ i0.ɵɵtext(1);
1184
+ i0.ɵɵpipe(2, "axoPercentage");
1185
+ i0.ɵɵelement(3, "br");
1186
+ i0.ɵɵelementEnd();
1187
+ } if (rf & 2) {
1188
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1189
+ const ctx_r296 = i0.ɵɵnextContext(5);
1190
+ i0.ɵɵadvance(1);
1191
+ i0.ɵɵtextInterpolate1(" Max: ", i0.ɵɵpipeBind3(2, 1, ctx_r296.max(attr_r272.series), attr_r272.series, "detail"), "");
1192
+ } }
1193
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_span_3_Template(rf, ctx) { if (rf & 1) {
1194
+ i0.ɵɵelementStart(0, "span");
1195
+ i0.ɵɵtext(1);
1196
+ i0.ɵɵelement(2, "br");
1197
+ i0.ɵɵelementEnd();
1198
+ } if (rf & 2) {
1199
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1200
+ const ctx_r297 = i0.ɵɵnextContext(5);
1201
+ i0.ɵɵadvance(1);
1202
+ i0.ɵɵtextInterpolate1(" Max: ", ctx_r297.max(attr_r272.series), "");
1203
+ } }
1204
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_Template(rf, ctx) { if (rf & 1) {
1205
+ i0.ɵɵelementStart(0, "span");
1206
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_span_1_Template, 4, 5, "span", 6);
1207
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_span_2_Template, 4, 5, "span", 6);
1208
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_span_3_Template, 3, 1, "span", 6);
1209
+ i0.ɵɵelementEnd();
1210
+ } if (rf & 2) {
1211
+ const attr_r272 = i0.ɵɵnextContext(2).$implicit;
1212
+ i0.ɵɵadvance(1);
1213
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.currency);
1214
+ i0.ɵɵadvance(1);
1215
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.percentage);
1216
+ i0.ɵɵadvance(1);
1217
+ i0.ɵɵproperty("ngIf", !attr_r272.valueFormatting.percentage && !attr_r272.valueFormatting.currency);
1218
+ } }
1219
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_span_1_Template(rf, ctx) { if (rf & 1) {
1220
+ i0.ɵɵelementStart(0, "span");
1221
+ i0.ɵɵtext(1);
1222
+ i0.ɵɵpipe(2, "currency");
1223
+ i0.ɵɵelement(3, "br");
1224
+ i0.ɵɵelementEnd();
1225
+ } if (rf & 2) {
1226
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1227
+ const ctx_r302 = i0.ɵɵnextContext(5);
1228
+ i0.ɵɵadvance(1);
1229
+ i0.ɵɵtextInterpolate1("Min: ", i0.ɵɵpipeBind3(2, 1, ctx_r302.min(attr_r272.series), attr_r272.valueFormatting.currency, "symbol"), "");
1230
+ } }
1231
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_span_2_Template(rf, ctx) { if (rf & 1) {
1232
+ i0.ɵɵelementStart(0, "span");
1233
+ i0.ɵɵtext(1);
1234
+ i0.ɵɵpipe(2, "axoPercentage");
1235
+ i0.ɵɵelement(3, "br");
1236
+ i0.ɵɵelementEnd();
1237
+ } if (rf & 2) {
1238
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1239
+ const ctx_r303 = i0.ɵɵnextContext(5);
1240
+ i0.ɵɵadvance(1);
1241
+ i0.ɵɵtextInterpolate1("Min: ", i0.ɵɵpipeBind3(2, 1, ctx_r303.min(attr_r272.series), attr_r272.series, "detail"), "");
1242
+ } }
1243
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_span_3_Template(rf, ctx) { if (rf & 1) {
1244
+ i0.ɵɵelementStart(0, "span");
1245
+ i0.ɵɵtext(1);
1246
+ i0.ɵɵelement(2, "br");
1247
+ i0.ɵɵelementEnd();
1248
+ } if (rf & 2) {
1249
+ const attr_r272 = i0.ɵɵnextContext(3).$implicit;
1250
+ const ctx_r304 = i0.ɵɵnextContext(5);
1251
+ i0.ɵɵadvance(1);
1252
+ i0.ɵɵtextInterpolate1(" Min: ", ctx_r304.min(attr_r272.series), "");
1253
+ } }
1254
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_Template(rf, ctx) { if (rf & 1) {
1255
+ i0.ɵɵelementStart(0, "span");
1256
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_span_1_Template, 4, 5, "span", 6);
1257
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_span_2_Template, 4, 5, "span", 6);
1258
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_span_3_Template, 3, 1, "span", 6);
1259
+ i0.ɵɵelementEnd();
1260
+ } if (rf & 2) {
1261
+ const attr_r272 = i0.ɵɵnextContext(2).$implicit;
1262
+ i0.ɵɵadvance(1);
1263
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.currency);
1264
+ i0.ɵɵadvance(1);
1265
+ i0.ɵɵproperty("ngIf", attr_r272.valueFormatting.percentage);
1266
+ i0.ɵɵadvance(1);
1267
+ i0.ɵɵproperty("ngIf", !attr_r272.valueFormatting.percentage && !attr_r272.valueFormatting.currency);
1268
+ } }
1269
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
1270
+ i0.ɵɵelementContainerStart(0);
1271
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_1_Template, 4, 3, "span", 6);
1272
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_2_Template, 4, 3, "span", 6);
1273
+ i0.ɵɵtemplate(3, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_3_Template, 4, 3, "span", 6);
1274
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_span_4_Template, 4, 3, "span", 6);
1275
+ i0.ɵɵelementContainerEnd();
1276
+ } if (rf & 2) {
1277
+ const attr_r272 = i0.ɵɵnextContext().$implicit;
1278
+ i0.ɵɵadvance(1);
1279
+ i0.ɵɵproperty("ngIf", attr_r272.aggregate.showSum);
1280
+ i0.ɵɵadvance(1);
1281
+ i0.ɵɵproperty("ngIf", attr_r272.aggregate.showAvg);
1282
+ i0.ɵɵadvance(1);
1283
+ i0.ɵɵproperty("ngIf", attr_r272.aggregate.showMax);
1284
+ i0.ɵɵadvance(1);
1285
+ i0.ɵɵproperty("ngIf", attr_r272.aggregate.showMin);
1286
+ } }
1287
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
1288
+ i0.ɵɵelementContainerStart(0);
1289
+ i0.ɵɵelementStart(1, "td", 40);
1290
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_ng_container_2_Template, 5, 4, "ng-container", 6);
1291
+ i0.ɵɵelementEnd();
1292
+ i0.ɵɵelementContainerEnd();
1293
+ } if (rf & 2) {
1294
+ const attr_r272 = ctx.$implicit;
1295
+ const ctx_r271 = i0.ɵɵnextContext(5);
1296
+ i0.ɵɵadvance(1);
1297
+ i0.ɵɵstyleProp("border", ctx_r271.tabularReport.tableStyle.border.width + "px" + " " + ctx_r271.tabularReport.tableStyle.border.borderStyle + " " + ctx_r271.tabularReport.tableStyle.border.color)("text-align", attr_r272.alignment);
1298
+ i0.ɵɵadvance(1);
1299
+ i0.ɵɵproperty("ngIf", attr_r272.widgetType === "textbox-widget" && (attr_r272.widgetSubType === "numeric" || attr_r272.widgetSubType === "number"));
1300
+ } }
1301
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_Template(rf, ctx) { if (rf & 1) {
1302
+ i0.ɵɵelementStart(0, "tr");
1303
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_ng_container_1_Template, 3, 5, "ng-container", 14);
1304
+ i0.ɵɵelementEnd();
1305
+ } if (rf & 2) {
1306
+ const ctx_r270 = i0.ɵɵnextContext(4);
1307
+ i0.ɵɵadvance(1);
1308
+ i0.ɵɵproperty("ngForOf", ctx_r270.tabularReport.matrix.attributes);
1309
+ } }
1310
+ function RowGroupViewComponent_div_0_table_1_tfoot_6_Template(rf, ctx) { if (rf & 1) {
1311
+ i0.ɵɵelementStart(0, "tfoot");
1312
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_tfoot_6_tr_1_Template, 2, 1, "tr", 6);
1313
+ i0.ɵɵelementEnd();
1314
+ } if (rf & 2) {
1315
+ const ctx_r10 = i0.ɵɵnextContext(3);
1316
+ i0.ɵɵstyleProp("background", ctx_r10.tabularReport.tableStyle.footer.backgroundColor)("font-family", ctx_r10.tabularReport.tableStyle.footer.font.family)("font-size", ctx_r10.tabularReport.tableStyle.footer.font.size, "px")("color", ctx_r10.tabularReport.tableStyle.footer.font.color);
1317
+ i0.ɵɵadvance(1);
1318
+ i0.ɵɵproperty("ngIf", ctx_r10.tabularReport.showGrandTotal);
1319
+ } }
1320
+ const _c3 = function (a0) { return { "mt-1": a0 }; };
1321
+ function RowGroupViewComponent_div_0_table_1_Template(rf, ctx) { if (rf & 1) {
1322
+ const _r311 = i0.ɵɵgetCurrentView();
1323
+ i0.ɵɵelementStart(0, "table", 11);
1324
+ i0.ɵɵlistener("click", function RowGroupViewComponent_div_0_table_1_Template_table_click_0_listener($event) { i0.ɵɵrestoreView(_r311); const ctx_r310 = i0.ɵɵnextContext(2); return ctx_r310.tableSelect($event); });
1325
+ i0.ɵɵelement(1, "caption");
1326
+ i0.ɵɵelementStart(2, "thead", 12);
1327
+ i0.ɵɵelementStart(3, "tr", 13);
1328
+ i0.ɵɵlistener("cdkDropListDropped", function RowGroupViewComponent_div_0_table_1_Template_tr_cdkDropListDropped_3_listener($event) { i0.ɵɵrestoreView(_r311); const ctx_r312 = i0.ɵɵnextContext(2); return ctx_r312.drop($event); });
1329
+ i0.ɵɵtemplate(4, RowGroupViewComponent_div_0_table_1_ng_container_4_Template, 2, 1, "ng-container", 14);
1330
+ i0.ɵɵelementEnd();
1331
+ i0.ɵɵelementEnd();
1332
+ i0.ɵɵtemplate(5, RowGroupViewComponent_div_0_table_1_tbody_5_Template, 2, 4, "tbody", 15);
1333
+ i0.ɵɵtemplate(6, RowGroupViewComponent_div_0_table_1_tfoot_6_Template, 2, 9, "tfoot", 16);
1334
+ i0.ɵɵelementEnd();
1335
+ } if (rf & 2) {
1336
+ const ctx_r6 = i0.ɵɵnextContext(2);
1337
+ i0.ɵɵstyleProp("border", ctx_r6.tabularReport.tableStyle.border.width + "px" + " " + ctx_r6.tabularReport.tableStyle.border.borderStyle + " " + ctx_r6.tabularReport.tableStyle.border.color);
1338
+ i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(8, _c3, ctx_r6.tabularReport.matrix.attributes.length > 0 && ctx_r6.tabularReport.matrix.attributes[0].series.length === 0));
1339
+ i0.ɵɵadvance(2);
1340
+ i0.ɵɵstyleProp("outline", ctx_r6.tabularReport.tableStyle.border.width + "px" + " " + ctx_r6.tabularReport.tableStyle.border.borderStyle + " " + ctx_r6.tabularReport.tableStyle.border.color);
1341
+ i0.ɵɵadvance(2);
1342
+ i0.ɵɵproperty("ngForOf", ctx_r6.tabularReport.matrix.attributes);
1343
+ i0.ɵɵadvance(1);
1344
+ i0.ɵɵproperty("ngIf", ctx_r6.tabularReport.matrix.attributes.length > 0);
1345
+ i0.ɵɵadvance(1);
1346
+ i0.ɵɵproperty("ngIf", ctx_r6.tabularReport.matrix.attributes.length > 0);
1347
+ } }
1348
+ function RowGroupViewComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
1349
+ i0.ɵɵelementStart(0, "div", 41);
1350
+ i0.ɵɵtext(1, " No records available ");
1351
+ i0.ɵɵelementEnd();
1352
+ } }
1353
+ function RowGroupViewComponent_div_0_Template(rf, ctx) { if (rf & 1) {
1354
+ i0.ɵɵelementStart(0, "div", 8);
1355
+ i0.ɵɵtemplate(1, RowGroupViewComponent_div_0_table_1_Template, 7, 10, "table", 9);
1356
+ i0.ɵɵtemplate(2, RowGroupViewComponent_div_0_div_2_Template, 2, 0, "div", 10);
1357
+ i0.ɵɵelementEnd();
1358
+ } if (rf & 2) {
1359
+ const ctx_r0 = i0.ɵɵnextContext();
1360
+ i0.ɵɵadvance(1);
1361
+ i0.ɵɵproperty("ngIf", ctx_r0.tabularReport);
1362
+ i0.ɵɵadvance(1);
1363
+ i0.ɵɵproperty("ngIf", ctx_r0.tabularReport.matrix.attributes.length > 0 && ctx_r0.tabularReport.matrix.attributes[0].series.length === 0);
1364
+ } }
1365
+ function RowGroupViewComponent_ng_template_5_ng_container_0_button_1_Template(rf, ctx) { if (rf & 1) {
1366
+ i0.ɵɵelementStart(0, "button", 45);
1367
+ i0.ɵɵtext(1, "Aggregate");
1368
+ i0.ɵɵelementEnd();
1369
+ } if (rf & 2) {
1370
+ i0.ɵɵnextContext(3);
1371
+ const _r3 = i0.ɵɵreference(7);
1372
+ i0.ɵɵproperty("matMenuTriggerFor", _r3);
1373
+ } }
1374
+ function RowGroupViewComponent_ng_template_5_ng_container_0_button_2_Template(rf, ctx) { if (rf & 1) {
1375
+ const _r320 = i0.ɵɵgetCurrentView();
1376
+ i0.ɵɵelementStart(0, "button", 44);
1377
+ i0.ɵɵlistener("click", function RowGroupViewComponent_ng_template_5_ng_container_0_button_2_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r320); const ctx_r319 = i0.ɵɵnextContext(3); return ctx_r319.moveColumnLeft($event); });
1378
+ i0.ɵɵtext(1, "Move Left");
1379
+ i0.ɵɵelementEnd();
1380
+ } }
1381
+ function RowGroupViewComponent_ng_template_5_ng_container_0_button_5_Template(rf, ctx) { if (rf & 1) {
1382
+ const _r322 = i0.ɵɵgetCurrentView();
1383
+ i0.ɵɵelementStart(0, "button", 44);
1384
+ i0.ɵɵlistener("click", function RowGroupViewComponent_ng_template_5_ng_container_0_button_5_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r322); const ctx_r321 = i0.ɵɵnextContext(3); return ctx_r321.removeColumn($event); });
1385
+ i0.ɵɵtext(1, "Remove Column");
1386
+ i0.ɵɵelementEnd();
1387
+ } }
1388
+ function RowGroupViewComponent_ng_template_5_ng_container_0_Template(rf, ctx) { if (rf & 1) {
1389
+ const _r324 = i0.ɵɵgetCurrentView();
1390
+ i0.ɵɵelementContainerStart(0);
1391
+ i0.ɵɵtemplate(1, RowGroupViewComponent_ng_template_5_ng_container_0_button_1_Template, 2, 1, "button", 43);
1392
+ i0.ɵɵtemplate(2, RowGroupViewComponent_ng_template_5_ng_container_0_button_2_Template, 2, 0, "button", 42);
1393
+ i0.ɵɵelementStart(3, "button", 44);
1394
+ i0.ɵɵlistener("click", function RowGroupViewComponent_ng_template_5_ng_container_0_Template_button_click_3_listener($event) { i0.ɵɵrestoreView(_r324); const ctx_r323 = i0.ɵɵnextContext(2); return ctx_r323.moveColumnRight($event); });
1395
+ i0.ɵɵtext(4, "Move Right");
1396
+ i0.ɵɵelementEnd();
1397
+ i0.ɵɵtemplate(5, RowGroupViewComponent_ng_template_5_ng_container_0_button_5_Template, 2, 0, "button", 42);
1398
+ i0.ɵɵelementContainerEnd();
1399
+ } if (rf & 2) {
1400
+ const ctx_r314 = i0.ɵɵnextContext(2);
1401
+ i0.ɵɵadvance(1);
1402
+ i0.ɵɵproperty("ngIf", ctx_r314.tabularReport.matrix.attributes[ctx_r314.currentIndex].type === "int" && (ctx_r314.tabularReport.matrix.attributes[ctx_r314.currentIndex].type === "int" || ctx_r314.tabularReport.matrix.attributes[ctx_r314.currentIndex].type === "float"));
1403
+ i0.ɵɵadvance(1);
1404
+ i0.ɵɵproperty("ngIf", !ctx_r314.tabularReport.matrix.attributes[ctx_r314.currentIndex - 1].rowSpan);
1405
+ i0.ɵɵadvance(3);
1406
+ i0.ɵɵproperty("ngIf", !ctx_r314.tabularReport.matrix.attributes[ctx_r314.currentIndex].rowSpan && ctx_r314.tabularReport.rowGrouping.length + 1 !== ctx_r314.tabularReport.matrix.attributes.length);
1407
+ } }
1408
+ function RowGroupViewComponent_ng_template_5_button_1_Template(rf, ctx) { if (rf & 1) {
1409
+ const _r326 = i0.ɵɵgetCurrentView();
1410
+ i0.ɵɵelementStart(0, "button", 44);
1411
+ i0.ɵɵlistener("click", function RowGroupViewComponent_ng_template_5_button_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r326); const ctx_r325 = i0.ɵɵnextContext(2); return ctx_r325.removeFromDashboard(); });
1412
+ i0.ɵɵtext(1, "Remove From Dashboard");
1413
+ i0.ɵɵelementEnd();
1414
+ } }
1415
+ function RowGroupViewComponent_ng_template_5_Template(rf, ctx) { if (rf & 1) {
1416
+ i0.ɵɵtemplate(0, RowGroupViewComponent_ng_template_5_ng_container_0_Template, 6, 3, "ng-container", 6);
1417
+ i0.ɵɵtemplate(1, RowGroupViewComponent_ng_template_5_button_1_Template, 2, 0, "button", 42);
1418
+ } if (rf & 2) {
1419
+ const ctx_r2 = i0.ɵɵnextContext();
1420
+ i0.ɵɵproperty("ngIf", ctx_r2.isEditable);
1421
+ i0.ɵɵadvance(1);
1422
+ i0.ɵɵproperty("ngIf", ctx_r2.screenTypes.dashboardBuilder === ctx_r2.screenType);
1423
+ } }
1424
+ function RowGroupViewComponent_8_ng_template_0_section_0_Template(rf, ctx) { if (rf & 1) {
1425
+ const _r330 = i0.ɵɵgetCurrentView();
1426
+ i0.ɵɵelementStart(0, "section", 47);
1427
+ i0.ɵɵelementStart(1, "p");
1428
+ i0.ɵɵelementStart(2, "mat-checkbox", 48);
1429
+ i0.ɵɵlistener("ngModelChange", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_ngModelChange_2_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r329 = i0.ɵɵnextContext(3); return ctx_r329.tabularReport.matrix.attributes[ctx_r329.currentIndex].aggregate.showSum = $event; })("change", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_change_2_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r331 = i0.ɵɵnextContext(3); return ctx_r331.sumAggregation($event); })("click", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_click_2_listener($event) { return $event.stopPropagation(); });
1430
+ i0.ɵɵtext(3, "sum");
1431
+ i0.ɵɵelementEnd();
1432
+ i0.ɵɵelementEnd();
1433
+ i0.ɵɵelementStart(4, "p");
1434
+ i0.ɵɵelementStart(5, "mat-checkbox", 48);
1435
+ i0.ɵɵlistener("ngModelChange", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_ngModelChange_5_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r333 = i0.ɵɵnextContext(3); return ctx_r333.tabularReport.matrix.attributes[ctx_r333.currentIndex].aggregate.showAvg = $event; })("change", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_change_5_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r334 = i0.ɵɵnextContext(3); return ctx_r334.averageAggregation($event); })("click", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_click_5_listener($event) { return $event.stopPropagation(); });
1436
+ i0.ɵɵtext(6, "Average");
1437
+ i0.ɵɵelementEnd();
1438
+ i0.ɵɵelementEnd();
1439
+ i0.ɵɵelementStart(7, "p");
1440
+ i0.ɵɵelementStart(8, "mat-checkbox", 48);
1441
+ i0.ɵɵlistener("ngModelChange", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_ngModelChange_8_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r336 = i0.ɵɵnextContext(3); return ctx_r336.tabularReport.matrix.attributes[ctx_r336.currentIndex].aggregate.showMax = $event; })("change", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_change_8_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r337 = i0.ɵɵnextContext(3); return ctx_r337.maxAggregation($event); })("click", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_click_8_listener($event) { return $event.stopPropagation(); });
1442
+ i0.ɵɵtext(9, "Max");
1443
+ i0.ɵɵelementEnd();
1444
+ i0.ɵɵelementEnd();
1445
+ i0.ɵɵelementStart(10, "p");
1446
+ i0.ɵɵelementStart(11, "mat-checkbox", 48);
1447
+ i0.ɵɵlistener("ngModelChange", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_ngModelChange_11_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r339 = i0.ɵɵnextContext(3); return ctx_r339.tabularReport.matrix.attributes[ctx_r339.currentIndex].aggregate.showMin = $event; })("change", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_change_11_listener($event) { i0.ɵɵrestoreView(_r330); const ctx_r340 = i0.ɵɵnextContext(3); return ctx_r340.minAggregation($event); })("click", function RowGroupViewComponent_8_ng_template_0_section_0_Template_mat_checkbox_click_11_listener($event) { return $event.stopPropagation(); });
1448
+ i0.ɵɵtext(12, "Min");
1449
+ i0.ɵɵelementEnd();
1450
+ i0.ɵɵelementEnd();
1451
+ i0.ɵɵelementEnd();
1452
+ } if (rf & 2) {
1453
+ const ctx_r328 = i0.ɵɵnextContext(3);
1454
+ i0.ɵɵadvance(2);
1455
+ i0.ɵɵproperty("ngModel", ctx_r328.tabularReport.matrix.attributes[ctx_r328.currentIndex].aggregate.showSum);
1456
+ i0.ɵɵadvance(3);
1457
+ i0.ɵɵproperty("ngModel", ctx_r328.tabularReport.matrix.attributes[ctx_r328.currentIndex].aggregate.showAvg);
1458
+ i0.ɵɵadvance(3);
1459
+ i0.ɵɵproperty("ngModel", ctx_r328.tabularReport.matrix.attributes[ctx_r328.currentIndex].aggregate.showMax);
1460
+ i0.ɵɵadvance(3);
1461
+ i0.ɵɵproperty("ngModel", ctx_r328.tabularReport.matrix.attributes[ctx_r328.currentIndex].aggregate.showMin);
1462
+ } }
1463
+ function RowGroupViewComponent_8_ng_template_0_Template(rf, ctx) { if (rf & 1) {
1464
+ i0.ɵɵtemplate(0, RowGroupViewComponent_8_ng_template_0_section_0_Template, 13, 4, "section", 46);
1465
+ } if (rf & 2) {
1466
+ const ctx_r327 = i0.ɵɵnextContext(2);
1467
+ i0.ɵɵproperty("ngIf", ctx_r327.tabularReport.matrix.attributes[ctx_r327.currentIndex].type === "int" || ctx_r327.tabularReport.matrix.attributes[ctx_r327.currentIndex].type === "float");
1468
+ } }
1469
+ function RowGroupViewComponent_8_Template(rf, ctx) { if (rf & 1) {
1470
+ i0.ɵɵtemplate(0, RowGroupViewComponent_8_ng_template_0_Template, 1, 1, "ng-template", 4);
1471
+ } }
1472
+ function RowGroupViewComponent_div_9_Template(rf, ctx) { if (rf & 1) {
1473
+ i0.ɵɵelementStart(0, "div", 49);
1474
+ i0.ɵɵelement(1, "app-ghost-loader", 50);
1475
+ i0.ɵɵelementEnd();
1476
+ } if (rf & 2) {
1477
+ const ctx_r5 = i0.ɵɵnextContext();
1478
+ i0.ɵɵadvance(1);
1479
+ i0.ɵɵproperty("elementType", ctx_r5.GhostLoaderType.TabularChartLoader);
1480
+ } }
1481
+ export class RowGroupViewComponent {
1482
+ constructor(_reportBuilderMasterService, _fieldsListService, _tabularReportService, _commonService, _elementService, _dashboardBuilderService) {
1483
+ this._reportBuilderMasterService = _reportBuilderMasterService;
1484
+ this._fieldsListService = _fieldsListService;
1485
+ this._tabularReportService = _tabularReportService;
1486
+ this._commonService = _commonService;
1487
+ this._elementService = _elementService;
1488
+ this._dashboardBuilderService = _dashboardBuilderService;
1489
+ this.contextMenuPosition = { x: '0px', y: '0px' };
1490
+ this.showSum = false;
1491
+ this.showMax = false;
1492
+ this.showMin = false;
1493
+ this.showAvg = false;
1494
+ this.moment = moment;
1495
+ this.isDataLoaded = false;
1496
+ this.GhostLoaderType = GhostLoaderType;
1497
+ }
1498
+ get screenTypes() {
1499
+ return ScreenType;
1500
+ }
1501
+ ngOnChanges(changes) {
1502
+ this.tabularReport.isDataLoaded = false;
1503
+ this.report = this._reportBuilderMasterService.report;
1504
+ this.getTabularData();
1505
+ }
1506
+ ngOnInit() {
1507
+ this.report = this._reportBuilderMasterService.report;
1508
+ // this. getTabularData();
1509
+ }
1510
+ /**
1511
+ * remove slash from url
1512
+ * @param url
1513
+ * @returns
1514
+ */
1515
+ removeSlashFromURL(url) {
1516
+ if (url && url != "") {
1517
+ return url.slice(0, -1);
1518
+ }
1519
+ }
1520
+ getTabularData() {
1521
+ if (this.tabularReport.matrix.attributes.length > 0) {
1522
+ const data = new ElementsDto(this.tabularReport);
1523
+ if (this.screenType === ScreenType.drillThrough) {
1524
+ data.filters.globalFilters.basic.push(this.drillThroughFilterInput);
1525
+ }
1526
+ else {
1527
+ data.filters.globalFilters.basic = this._elementService.getValidFilter(this._elementService.filtersDto.basic, ScopeType.global);
1528
+ data.filters.globalFilters.category = this._elementService.getValidFilterCategory(this._elementService.filtersDto.category, ScopeType.global);
1529
+ }
1530
+ data.filters.localFilters.basic = this._elementService.getValidFilter(this.tabularReport.filters);
1531
+ data.filters.localFilters.category = this._elementService.getValidFilterCategory(this.tabularReport.categories);
1532
+ data.reportId = this.reportId;
1533
+ data.type = 'tabular-report';
1534
+ data.orderBy = this.tabularReport.rowGrouping;
1535
+ data.pageIndex = this.tabularReport.pageIndex;
1536
+ data.pageSize = this.tabularReport.pageSize;
1537
+ data.pageLength = this.tabularReport.pageLength;
1538
+ this._fieldsListService.getMatrixData(data).then((entitiesAttribute) => {
1539
+ if (entitiesAttribute != null) {
1540
+ entitiesAttribute.matrix.attributes.showSum = true;
1541
+ this.tabularReport.matrix.attributes = entitiesAttribute.matrix.attributes;
1542
+ this.tabularReport.pageLength = entitiesAttribute.totalRecords;
1543
+ this.tabularReport.pageIndex = entitiesAttribute.pageIndex;
1544
+ this.tabularReport.pageSize = entitiesAttribute.pageSize;
1545
+ this.tabularReport = this._tabularReportService.groupData(this.tabularReport);
1546
+ }
1547
+ });
1548
+ }
1549
+ this.isDataLoaded = true;
1550
+ this.tabularReport.isDataLoaded = true;
1551
+ }
1552
+ /**
1553
+ * to drop column from tabular report
1554
+ *
1555
+ * @param CdkDragDrop
1556
+ *
1557
+ */
1558
+ drop(event) {
1559
+ if (!this.tabularReport.matrix.attributes[event.currentIndex].rowSpan) {
1560
+ moveItemInArray(this.tabularReport.matrix.attributes, event.previousIndex, event.currentIndex);
1561
+ this._commonService.isReportBuilderDirty = true;
1562
+ }
1563
+ }
1564
+ /**
1565
+ * to move column left on tabular report
1566
+ *
1567
+ * @param CdkDragDrop
1568
+ *
1569
+ */
1570
+ moveColumnLeft(event) {
1571
+ moveItemInArray(this.tabularReport.matrix.attributes, this.currentIndex, this.currentIndex - 1);
1572
+ this._commonService.isReportBuilderDirty = true;
1573
+ }
1574
+ /**
1575
+ * to move column right on tabular report
1576
+ *
1577
+ * @param CdkDragDrop
1578
+ *
1579
+ */
1580
+ moveColumnRight(event) {
1581
+ moveItemInArray(this.tabularReport.matrix.attributes, this.currentIndex, this.currentIndex + 1);
1582
+ this._commonService.isReportBuilderDirty = true;
1583
+ }
1584
+ /**used to create a row for subtotal
1585
+ *
1586
+ *@param number
1587
+ *@param number
1588
+ */
1589
+ indexing(count_, i) {
1590
+ this.ct = count_;
1591
+ if (count_ === 1) {
1592
+ this.count = 1;
1593
+ this.attrGlobal = i;
1594
+ }
1595
+ if (count_ > 1) {
1596
+ this.attrGlobal = (count_ + i) - 1;
1597
+ }
1598
+ }
1599
+ /** to count subtotal of a grouped data
1600
+ *
1601
+ *@param number
1602
+ *@param number
1603
+ *@param string
1604
+ *
1605
+ */
1606
+ subTotal(c, i, series) {
1607
+ let total = 0;
1608
+ if (this.ct > i) {
1609
+ for (let m = 0; m <= i; m++) {
1610
+ total = total + Number(series[m]);
1611
+ }
1612
+ }
1613
+ else {
1614
+ let m = i - this.ct + 1;
1615
+ for (m; m <= i; m++) {
1616
+ total = total + Number(series[m]);
1617
+ }
1618
+ }
1619
+ return total;
1620
+ }
1621
+ /**
1622
+ *
1623
+ * @param MouseEvent
1624
+ * @param number
1625
+ * @param AttributeData
1626
+ */
1627
+ onContextMenu(event, index, attr) {
1628
+ if (!this.isEditable) {
1629
+ event.preventDefault();
1630
+ return;
1631
+ }
1632
+ event.stopPropagation();
1633
+ event.preventDefault();
1634
+ this.currentIndex = index;
1635
+ this.contextMenuPosition.x = event.clientX + 'px';
1636
+ this.contextMenuPosition.y = event.clientY + 'px';
1637
+ this.contextMenu.menuData = { 'attr': attr };
1638
+ this.contextMenu.menu.focusFirstItem('mouse');
1639
+ if (attr.type === 'int' && this.tabularReport.showGrandTotal || (!attr.rowSpan && (this.tabularReport.rowGrouping.length + 1 !== this.tabularReport.matrix.attributes.length))) {
1640
+ this.contextMenu.openMenu();
1641
+ }
1642
+ }
1643
+ /**
1644
+ * to returns sum of rows
1645
+ *
1646
+ *@param string
1647
+ */
1648
+ sum(series) {
1649
+ let total = 0;
1650
+ for (const data of series) {
1651
+ total += Number(data);
1652
+ }
1653
+ return total;
1654
+ }
1655
+ /**
1656
+ * to returns average of rows
1657
+ *
1658
+ * @param string
1659
+ *
1660
+ */
1661
+ avg(series) {
1662
+ let total = 0;
1663
+ for (const data of series) {
1664
+ total += Number(data);
1665
+ }
1666
+ return (parseFloat((total / series.length).toFixed(2)));
1667
+ }
1668
+ /**
1669
+ * to returns maximum value of rows
1670
+ *
1671
+ *@param string
1672
+ */
1673
+ max(series) {
1674
+ const a = [];
1675
+ for (const data of series) {
1676
+ a.push(Number(data));
1677
+ }
1678
+ return Math.max(...a);
1679
+ }
1680
+ /**
1681
+ * to returns minimum value of rows
1682
+ *
1683
+ *@param string
1684
+ */
1685
+ min(series) {
1686
+ const a = [];
1687
+ for (const data of series) {
1688
+ a.push(Number(data));
1689
+ }
1690
+ return Math.min(...a);
1691
+ }
1692
+ /**
1693
+ * to returns count of unique values of rows
1694
+ *
1695
+ * @param string
1696
+ *
1697
+ */
1698
+ unique(series) {
1699
+ return [...new Set(series)].length;
1700
+ }
1701
+ /***
1702
+ * On chart context click for sum aggregation
1703
+ * @param MatCheckboxChange
1704
+ */
1705
+ sumAggregation(ob) {
1706
+ this.showSum = ob.checked;
1707
+ this._commonService.isReportBuilderDirty = true;
1708
+ }
1709
+ /***
1710
+ * On chart context click for avg aggregation
1711
+ * @param MatCheckboxChange
1712
+ */
1713
+ averageAggregation(ob) {
1714
+ this.showAvg = ob.checked;
1715
+ this._commonService.isReportBuilderDirty = true;
1716
+ }
1717
+ /***
1718
+ * On chart context click for max aggregation
1719
+ * @param MatCheckboxChange
1720
+ */
1721
+ maxAggregation(ob) {
1722
+ this.showMax = ob.checked;
1723
+ this._commonService.isReportBuilderDirty = true;
1724
+ }
1725
+ /***
1726
+ * On chart context click for min aggregation
1727
+ * @param MatCheckboxChange
1728
+ */
1729
+ minAggregation(ob) {
1730
+ this.showMin = ob.checked;
1731
+ this._commonService.isReportBuilderDirty = true;
1732
+ }
1733
+ /**
1734
+ * to set isDirty after changes in tabular report filter
1735
+ *
1736
+ */
1737
+ dirtyFlowCheckEvent() {
1738
+ this._commonService.isReportBuilderDirty = true;
1739
+ }
1740
+ /**
1741
+ * to remove column from tabular report
1742
+ *
1743
+ * @param Event
1744
+ *
1745
+ */
1746
+ removeColumn($event) {
1747
+ this.tabularReport.matrix.attributes.splice(this.currentIndex, 1);
1748
+ this.getTabularData();
1749
+ this._commonService.isReportBuilderDirty = true;
1750
+ }
1751
+ /**
1752
+ * will emit table properties on table click t
1753
+ *
1754
+ * @param event
1755
+ */
1756
+ tableSelect(event) {
1757
+ event.stopPropagation();
1758
+ this._tabularReportService.tableClickEvent(this.tabularReport);
1759
+ }
1760
+ /**
1761
+ * to redirect media url
1762
+ *
1763
+ * @param event
1764
+ * @param url
1765
+ */
1766
+ redirect(event, url) {
1767
+ if (event.ctrlKey || event.metaKey) {
1768
+ window.open(url, '_blank');
1769
+ }
1770
+ }
1771
+ /**
1772
+ * to redirect media url on single click
1773
+ */
1774
+ redirectOnSingleClick(event, url) {
1775
+ event.stopPropagation();
1776
+ window.open(url, '_blank');
1777
+ }
1778
+ removeFromDashboard() {
1779
+ this._dashboardBuilderService.deleteElement.emit(this.tabularReport);
1780
+ }
1781
+ drillThroughContext(event, attribute, i) {
1782
+ this.parentRef.drillThroughContext(event, attribute, i);
1783
+ }
1784
+ }
1785
+ RowGroupViewComponent.ɵfac = function RowGroupViewComponent_Factory(t) { return new (t || RowGroupViewComponent)(i0.ɵɵdirectiveInject(i1.ReportBuilderMasterService), i0.ɵɵdirectiveInject(i2.FieldsListService), i0.ɵɵdirectiveInject(i3.TabularReportService), i0.ɵɵdirectiveInject(i4.CommonService), i0.ɵɵdirectiveInject(i5.ElementService), i0.ɵɵdirectiveInject(i6.DashboardBuilderService)); };
1786
+ RowGroupViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RowGroupViewComponent, selectors: [["lib-row-group-view"]], viewQuery: function RowGroupViewComponent_Query(rf, ctx) { if (rf & 1) {
1787
+ i0.ɵɵviewQuery(MatMenuTrigger, 5);
1788
+ } if (rf & 2) {
1789
+ let _t;
1790
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.contextMenu = _t.first);
1791
+ } }, inputs: { tabularReport: "tabularReport", isEditable: "isEditable", x1ImageMediaUrl: "x1ImageMediaUrl", screenType: "screenType", drillThroughParentType: "drillThroughParentType", drillThroughFilterInput: "drillThroughFilterInput", parentRef: "parentRef", reportId: "reportId" }, features: [i0.ɵɵNgOnChangesFeature], decls: 10, vars: 8, consts: [["class", "tableContainer customscroll", 4, "ngIf"], [2, "visibility", "hidden", "position", "fixed", 3, "matMenuTriggerFor"], ["contextMenu", "matMenu"], ["id", "table-menu"], ["matMenuContent", ""], ["Aggregate", "matMenu"], [4, "ngIf"], ["class", "loader-spinner", 4, "ngIf"], [1, "tableContainer", "customscroll"], ["cdkDropListGroup", "", "style", "width:100%", 3, "border", "ngClass", "click", 4, "ngIf"], ["class", "flex justify-center items-center flex-col zero-records", 4, "ngIf"], ["cdkDropListGroup", "", 2, "width", "100%", 3, "ngClass", "click"], [1, "thead"], ["cdkDropList", "", "cdkDropListOrientation", "horizontal", 1, "example-list", 3, "cdkDropListDropped"], [4, "ngFor", "ngForOf"], [3, "ngClass", 4, "ngIf"], [3, "background", "font-family", "font-size", "color", 4, "ngIf"], ["class", "px-1.5\tpy-1.5", "cdkDrag", "", 3, "id", "cdkDragDisabled", "font-size", "color", "font-family", "background", "border", "text-align", "resizeColumnData", 4, "ngIf"], ["cdkDrag", "", 1, "px-1.5", "py-1.5", 3, "id", "cdkDragDisabled", "resizeColumnData"], [1, "tabular-report-tabel-th"], ["class", "vertical-dot", "cdkDragHandle", "", 4, "ngIf"], [1, "w-full"], [1, "tabular-report-table-text", 3, "ngModel", "readonly", "ngModelChange"], ["mat-icon-button", "", 3, "click", 4, "ngIf"], ["cdkDragHandle", "", 1, "vertical-dot"], ["mat-icon-button", "", 3, "click"], ["svgIcon", "heroicons_outline:chevron-down", 1, "tab-down-arrow"], [3, "ngClass"], [3, "ngStyle"], ["class", "px-1.5\tpy-1.5", 3, "font-family", "font-size", "color", "border", "text-align", "rowSpan", "contextmenu", 4, "ngIf"], ["class", "px-1.5\tpy-1.5", 3, "font-family", "font-size", "color", "border", "text-align", "contextmenu", 4, "ngIf"], [1, "px-1.5", "py-1.5", 3, "rowSpan", "contextmenu"], [3, "ngSwitch"], [4, "ngSwitchCase"], [4, "ngSwitchDefault"], [1, "url", 3, "title", "click"], [1, "url", "cursor-pointer", 3, "title", "click"], ["svgIcon", "axo_pdf1", 1, "doc-icon"], [1, "px-1.5", "py-1.5", 3, "contextmenu"], ["class", "px-1.5\tpy-1.5", 3, "border", "background", "font-family", "font-size", "color", "text-align", 4, "ngIf"], [1, "px-1.5", "py-1.5"], [1, "flex", "justify-center", "items-center", "flex-col", "zero-records"], ["mat-menu-item", "", 3, "click", 4, "ngIf"], ["mat-menu-item", "", 3, "matMenuTriggerFor", 4, "ngIf"], ["mat-menu-item", "", 3, "click"], ["mat-menu-item", "", 3, "matMenuTriggerFor"], ["class", "detailed-group-aggregate-function", 4, "ngIf"], [1, "detailed-group-aggregate-function"], [1, "aggregate-fun", 3, "ngModel", "ngModelChange", "change", "click"], [1, "loader-spinner"], [3, "elementType"]], template: function RowGroupViewComponent_Template(rf, ctx) { if (rf & 1) {
1792
+ i0.ɵɵtemplate(0, RowGroupViewComponent_div_0_Template, 3, 2, "div", 0);
1793
+ i0.ɵɵelement(1, "div", 1);
1794
+ i0.ɵɵelementStart(2, "mat-menu", null, 2);
1795
+ i0.ɵɵelementStart(4, "div", 3);
1796
+ i0.ɵɵtemplate(5, RowGroupViewComponent_ng_template_5_Template, 2, 2, "ng-template", 4);
1797
+ i0.ɵɵelementEnd();
1798
+ i0.ɵɵelementEnd();
1799
+ i0.ɵɵelementStart(6, "mat-menu", null, 5);
1800
+ i0.ɵɵtemplate(8, RowGroupViewComponent_8_Template, 1, 0, undefined, 6);
1801
+ i0.ɵɵelementEnd();
1802
+ i0.ɵɵtemplate(9, RowGroupViewComponent_div_9_Template, 2, 1, "div", 7);
1803
+ } if (rf & 2) {
1804
+ const _r1 = i0.ɵɵreference(3);
1805
+ i0.ɵɵproperty("ngIf", ctx.tabularReport.isDataLoaded);
1806
+ i0.ɵɵadvance(1);
1807
+ i0.ɵɵstyleProp("left", ctx.contextMenuPosition.x)("top", ctx.contextMenuPosition.y);
1808
+ i0.ɵɵproperty("matMenuTriggerFor", _r1);
1809
+ i0.ɵɵadvance(7);
1810
+ i0.ɵɵproperty("ngIf", ctx.tabularReport.matrix.attributes.length > 0);
1811
+ i0.ɵɵadvance(1);
1812
+ i0.ɵɵproperty("ngIf", !ctx.tabularReport.isDataLoaded && ctx.tabularReport.matrix.attributes.length !== 0);
1813
+ } }, directives: [i7.NgIf, i8.MatMenuTrigger, i8.MatMenu, i8.MatMenuContent, i9.CdkDropListGroup, i7.NgClass, i9.CdkDropList, i7.NgForOf, i9.CdkDrag, i10.ResizeColumnDirective, i11.DefaultValueAccessor, i11.NgControlStatus, i11.NgModel, i9.CdkDragHandle, i12.MatIcon, i7.NgStyle, i7.NgSwitch, i7.NgSwitchCase, i7.NgSwitchDefault, i8.MatMenuItem, i13.MatCheckbox, i14.GhostLoaderComponent], pipes: [i7.DatePipe, i7.CurrencyPipe, i15.AxoPercentagePipe], styles: ["lib-row-group-view{display:block;height:calc(100% - 6.7rem);min-height:calc(100% - 6.7rem);max-height:calc(100% - 6.7rem)}lib-row-group-view .tableContainer{min-height:100%;max-height:100%;height:100%;width:100%;max-width:100%;min-width:100%;padding-top:0;padding-left:1px;padding-right:1px}lib-row-group-view .tableContainer table{width:auto;height:auto;border:none!important}lib-row-group-view .tableContainer .thead{position:sticky;top:1px}lib-row-group-view .tableContainer .thead th{background-color:#f2f8ff;border-top:none!important;border-bottom:none!important;padding:0}lib-row-group-view .tableContainer .thead th:last-child{border-right:none!important}lib-row-group-view .tableContainer .thead th:first-child{border-left:none!important}lib-row-group-view .tableContainer tbody:nth-of-type(1) tr:nth-of-type(1) td{border-top:none!important}lib-row-group-view .tableContainer tr:first-child td:first-child{border-top:none!important}lib-row-group-view .zero-records{height:calc(100% - 2.4rem);max-width:100%;position:sticky;left:0}lib-row-group-view .tab-down-arrow{padding:4px;position:relative}lib-row-group-view .tab-down-arrow:hover{background-color:#e2e8f0!important}lib-row-group-view .mat-menu-item{background:transparent;color:#1e293b;font-size:12px}lib-row-group-view .tabular-report-tabel-th{display:flex;justify-content:space-between}lib-row-group-view .tabular-report-tabel-th .tabular-report-table-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:900;line-height:26px}lib-row-group-view .tabular-report-tabel-th button{width:24px}lib-row-group-view .vertical-dot .mat-icon{font-size:15px;cursor:all-scroll}lib-row-group-view .vertical-dot .mat-icon:hover{background-color:#e2e8f0!important}lib-row-group-view .loader-spinner{justify-content:center;display:flex;position:sticky;top:50%;vertical-align:middle;margin:0}.aggregate-fun{padding:0 10px;font-size:12px}.url:hover{color:#00f}.detailed-group-aggregate-function p:last-child{margin-bottom:0!important}.mat-menu-panel{min-height:-moz-fit-content!important;min-height:fit-content!important}\n"], encapsulation: 2 });
1814
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RowGroupViewComponent, [{
1815
+ type: Component,
1816
+ args: [{ selector: 'lib-row-group-view', encapsulation: ViewEncapsulation.None, template: "<div class=\"tableContainer customscroll\" *ngIf='tabularReport.isDataLoaded'>\n <table\n (click)=\"tableSelect($event)\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+ ' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n *ngIf=tabularReport cdkDropListGroup style=\"width:100%\" [ngClass]=\"{'mt-1': tabularReport.matrix.attributes.length>0 && tabularReport.matrix.attributes[0].series.length===0}\">\n <caption></caption>\n <thead class=\"thead\" class=\"thead\"[style.outline]=\"tabularReport.tableStyle.border.width+'px'+ ' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\" >\n <tr class=\"example-list\" cdkDropList cdkDropListOrientation=\"horizontal\" (cdkDropListDropped)=\"drop($event)\">\n <!-- column headers -->\n <ng-container *ngFor=\"let attr of tabularReport.matrix.attributes; let i= index\"\n >\n <th [id]=\"th\"\n class=\"px-1.5\tpy-1.5\"\n cdkDrag\n [cdkDragDisabled]=\"!isEditable || attr.rowSpan\"\n [style.font-size.px]=\"tabularReport.tableStyle.header.font.size\"\n [style.color]=\"tabularReport.tableStyle.header.font.color\"\n [style.font-family]=\"tabularReport.tableStyle.header.font.family\"\n [style.background]=\"tabularReport.tableStyle.header.backgroundColor\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+ ' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.text-align]='attr.alignment'\n [resizeColumnData]=\"{enable:true, report:tabularReport, attribute:attr, type: 'attribute',index:i}\"\n *ngIf='!attr.isHidden'\n >\n\n <div class=\"tabular-report-tabel-th\">\n <div class=\"vertical-dot\" *ngIf=\"isEditable && !attr.rowSpan\" cdkDragHandle>\n <mat-icon >drag_indicator</mat-icon>\n </div>\n <div class=\"w-full\">\n <input class=\"tabular-report-table-text\" [(ngModel)]=\"attr.label\"\n [readonly] =\"!isEditable\" [style.width]=\"attr.label.length+1+'ch'\"\n [style.font-size.px]=\"tabularReport.tableStyle.header.font.size\"\n [style.color]=\"tabularReport.tableStyle.header.font.color\"\n [style.font-family]=\"tabularReport.tableStyle.header.font.family\"\n />\n </div>\n\n <button *ngIf=\"isEditable\" mat-icon-button (click)=\"onContextMenu($event,i,attr);\">\n <mat-icon class=\"tab-down-arrow\" svgIcon=\"heroicons_outline:chevron-down\"></mat-icon>\n </button>\n </div>\n </th>\n </ng-container>\n </tr>\n </thead>\n <tbody [ngClass]=\"{'shadow':tabularReport.tableStyle.border.shadow.enable}\"\n *ngIf=\"tabularReport.matrix.attributes.length>0\"\n >\n\n <ng-container *ngFor=\"let data of tabularReport.matrix.attributes[0].series;let i = index; even as isEven; let data1\">\n <tr\n [style.background]=\"tabularReport.tableStyle.body.backgroundColor\"\n [ngStyle]=\"{ background: isEven ? tabularReport.tableStyle.rowStyle.oddColor: tabularReport.tableStyle.rowStyle.evenColor}\"\n [style.border]=\"tabularReport.tableStyle.border.width + ' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n >\n <!-- series data -->\n <ng-container *ngFor=\"let _attr of tabularReport.matrix.attributes; even as isEven;let m = index\">\n <td\n class=\"px-1.5\tpy-1.5\"\n *ngIf=\" _attr.rowSpan && _attr.cloneSeries && _attr.cloneSeries[i]!=='repeated' && !_attr.isHidden\"\n [style.font-family]=\"tabularReport.tableStyle.body.font.family\"\n [style.font-size.px]=\"tabularReport.tableStyle.body.font.size\"\n [style.color]=\"tabularReport.tableStyle.body.font.color\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+ ' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.text-align]='_attr.alignment'\n [rowSpan]='_attr.cloneGroupData[i]'\n (contextmenu)=\"drillThroughContext($event, _attr, i)\"\n >\n {{indexing(_attr.groupData[i],i)}}\n <div [ngSwitch]=\"_attr.widgetType\">\n <ng-container *ngIf='_attr.series[i]'>\n <!-- when data type is datetime -->\n <span *ngSwitchCase=\"'datepicker-widget'\">\n <ng-container *ngIf=\"_attr.widgetSubType==='datetime' || _attr.widgetSubType==='both'\">\n <span >{{moment(_attr.series[i]+'Z')|date:_attr.valueFormatting.date}}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='timestamp'\">\n <span>{{_attr.series[i]}}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='time'\">\n <span *ngIf=\"_attr.series[i] \">{{moment(_attr.series[i],'hh:mm:ss')|date:_attr.valueFormatting.date}}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='date'\">\n <span *ngIf=\" _attr.widgetSubType==='date'\">{{_attr.series[i]|date:_attr.valueFormatting.date }}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='date_range'\">\n {{_attr.series[i]}}\n </ng-container>\n </span>\n <!-- when data type is text -->\n <span *ngSwitchCase=\"'textbox-widget'\">\n <span *ngIf=\"_attr.widgetSubType==='decimal'|| _attr.widgetSubType==='text' || _attr.widgetSubType==='string'\">\n {{_attr.series[i]}}\n </span>\n <span *ngIf=\"_attr.widgetSubType==='numeric'\">\n <span *ngIf=\"_attr.valueFormatting.currency \">{{ _attr.series[i] | currency:_attr.valueFormatting.currency :'symbol'}}</span>\n <span *ngIf=\" _attr.valueFormatting.percentage\">{{_attr.series[i]| axoPercentage:_attr.series: 'detail'}}</span>\n <span *ngIf=\"!_attr.valueFormatting.percentage && !_attr.valueFormatting.currency\">{{_attr.series[i]}}</span>\n </span>\n </span>\n <!-- When widget type is web link -->\n <span *ngSwitchCase=\"'hyperlink-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is signature widget -->\n <span *ngSwitchCase=\"'wetsignaturecapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is video widget -->\n <span *ngSwitchCase=\"'videocapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is audio widget -->\n <span *ngSwitchCase=\"'audiocapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n <!-- When widget type is document widget -->\n <span *ngSwitchCase=\"'fileupload-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is document widget -->\n <span *ngSwitchCase=\"'document'\">\n <span class=\"url cursor-pointer\" [title]=\"removeSlashFromURL(x1MediaUrl)+_attr.series[i]\" (click)=\"redirectOnSingleClick($event,removeSlashFromURL(x1MediaUrl)+_attr.series[i])\"><mat-icon class=\"doc-icon\" svgIcon=\"axo_pdf1\"></mat-icon></span>\n </span>\n\n <!-- When widget type is document widget -->\n <span *ngSwitchCase=\"'imagecapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n\n <!-- default case -->\n <span *ngSwitchDefault>{{_attr.series[i]}}</span>\n </ng-container>\n <span *ngIf='!_attr.series[i]'>\n <span *ngIf=\"_attr.widgetSubType==='numeric' || _attr.widgetSubType==='number'\">\n <span *ngIf=\"_attr.valueFormatting.currency \">{{ 0 | currency:_attr.valueFormatting.currency :'symbol'}}</span>\n <span *ngIf=\" _attr.valueFormatting.percentage\">{{0 | axoPercentage:_attr.series: 'detail'}}</span>\n <span *ngIf=\"!_attr.valueFormatting.percentage && !_attr.valueFormatting.currency\">{{0}}</span>\n </span>\n <!-- when series data is empty -->\n <span *ngIf=\"_attr.widgetSubType!=='numeric' || _attr.widgetSubType==='number'\">-</span>\n\n </span>\n\n <span *ngIf='_attr.series[i]'> ({{_attr.groupData[i]}})</span>\n </div>\n\n </td>\n\n\n <td\n class=\"px-1.5\tpy-1.5\"\n *ngIf=\"!_attr.rowSpan && _attr.series[i]!=='repeated' && !_attr.isHidden\"\n [style.font-family]=\"tabularReport.tableStyle.body.font.family\"\n [style.font-size.px]=\"tabularReport.tableStyle.body.font.size\"\n [style.color]=\"tabularReport.tableStyle.body.font.color\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+ ' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.text-align]='_attr.alignment'\n (contextmenu)=\"drillThroughContext($event, _attr, i)\"\n >\n <div [ngSwitch]=\"_attr.widgetType\">\n <ng-container *ngIf='_attr.series[i]'>\n <!-- when data type is datetime -->\n <span *ngSwitchCase=\"'datepicker-widget'\">\n <ng-container *ngIf=\"_attr.widgetSubType==='datetime' || _attr.widgetSubType==='both'\">\n <span >{{moment(_attr.series[i]+'Z')|date:_attr.valueFormatting.date}}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='timestamp'\">\n <span>{{_attr.series[i]}}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='time'\">\n <span >{{moment(_attr.series[i],'hh:mm:ss')|date:_attr.valueFormatting.date}}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='date'\">\n <span *ngIf=\"_attr.widgetSubType==='date'\">{{_attr.series[i]|date:_attr.valueFormatting.date }}</span>\n </ng-container>\n <ng-container *ngIf=\"_attr.widgetSubType==='date_range'\">\n {{_attr.series[i]}}\n </ng-container>\n </span>\n <!-- when data type is text -->\n <span *ngSwitchCase=\"'textbox-widget'\">\n <span *ngIf=\"_attr.widgetSubType==='decimal'|| _attr.widgetSubType==='text' || _attr.widgetSubType==='string'\">\n {{_attr.series[i]}}\n </span>\n <span *ngIf=\"_attr.widgetSubType==='numeric'\">\n <span *ngIf=\"_attr.valueFormatting.currency \">{{ _attr.series[i] | currency:_attr.valueFormatting.currency :'symbol'}}</span>\n <span *ngIf=\" _attr.valueFormatting.percentage\">{{_attr.series[i]| axoPercentage:_attr.series: 'detail'}}</span>\n <span *ngIf=\"!_attr.valueFormatting.percentage && !_attr.valueFormatting.currency\">{{_attr.series[i]}}</span>\n </span>\n </span>\n\n <!-- When widget type is web link -->\n <span *ngSwitchCase=\"'hyperlink-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is signature widget -->\n <span *ngSwitchCase=\"'wetsignaturecapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is video widget -->\n <span *ngSwitchCase=\"'videocapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is audio widget -->\n <span *ngSwitchCase=\"'audiocapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n <!-- When widget type is file widget -->\n <span *ngSwitchCase=\"'fileupload-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is image widget -->\n <span *ngSwitchCase=\"'imagecapture-widget'\">\n <span class=\"url\" [title]=\"x1ImageMediaUrl+_attr.series[i]\" (click)=\"redirect($event,x1ImageMediaUrl+_attr.series[i])\">{{_attr.series[i]}}</span>\n </span>\n\n <!-- When widget type is document widget -->\n <span *ngSwitchCase=\"'document'\">\n <span class=\"url cursor-pointer\" [title]=\"removeSlashFromURL(x1MediaUrl)+_attr.series[i]\" (click)=\"redirectOnSingleClick($event,removeSlashFromURL(x1MediaUrl)+_attr.series[i])\"><mat-icon class=\"doc-icon\" svgIcon=\"axo_pdf1\"></mat-icon></span>\n </span>\n\n <!-- default case -->\n <span *ngSwitchDefault>{{_attr.series[i]}}</span>\n </ng-container>\n <span *ngIf='!_attr.series[i]'>\n <span *ngIf=\"_attr.widgetSubType==='numeric' || _attr.widgetSubType==='number'\">\n <span *ngIf=\"_attr.valueFormatting.currency \">{{ 0 | currency:_attr.valueFormatting.currency :'symbol'}}</span>\n <span *ngIf=\" _attr.valueFormatting.percentage\">{{0 | axoPercentage:_attr.series: 'detail'}}</span>\n <span *ngIf=\"!_attr.valueFormatting.percentage && !_attr.valueFormatting.currency\">{{0}}</span>\n </span>\n <!-- when series data is empty -->\n <span *ngIf=\"_attr.widgetSubType!=='numeric' || _attr.widgetSubType==='number'\">-</span>\n\n </span>\n </div>\n\n </td>\n\n </ng-container>\n </tr>\n <!-- subtotal for future use -->\n <tr *ngIf='tabularReport.subTotal && (attrGlobal===i) '>\n <ng-container *ngFor=\"let _attr of tabularReport.matrix.attributes; even as isEven;let m = index\">\n <td *ngIf=\"m===0\"\n class=\"px-1.5\tpy-1.5\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.background]=\"tabularReport.tableStyle.subFooter.backgroundColor\"\n [style.font-family]=\"tabularReport.tableStyle.subFooter.font.family\"\n [style.font-size.px]=\"tabularReport.tableStyle.subFooter.font.size\"\n [style.color]=\"tabularReport.tableStyle.subFooter.font.color\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.text-align]='_attr.alignment'\n >\n <span>Subtotal</span>\n </td>\n <td\n class=\"px-1.5\tpy-1.5\"\n *ngIf=\"m>=tabularReport.rowGrouping.length\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.background]=\"tabularReport.tableStyle.subFooter.backgroundColor\"\n [style.font-family]=\"tabularReport.tableStyle.subFooter.font.family\"\n [style.font-size.px]=\"tabularReport.tableStyle.subFooter.font.size\"\n [style.color]=\"tabularReport.tableStyle.subFooter.font.color\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.text-align]='_attr.alignment'\n >\n <span *ngIf=\"_attr.widgetType==='textbox-widget' && (_attr.widgetSubType==='numeric' || _attr.widgetSubType==='number')\">\n <span *ngIf=\"_attr.valueFormatting.currency \">{{ subTotal(count,i,_attr.series) | currency:_attr.valueFormatting.currency :'symbol'}}</span>\n <span *ngIf=\" _attr.valueFormatting.percentage\">{{subTotal(count,i,_attr.series)| axoPercentage:_attr.series: 'detail'}}</span>\n <span *ngIf=\"!_attr.valueFormatting.percentage && !_attr.valueFormatting.currency\">{{subTotal(count,i,_attr.series)}}</span>\n\n </span>\n <span *ngIf=\"_attr.enlightenType.matIcon!=='axo_number'\"></span>\n </td>\n </ng-container>\n </tr>\n </ng-container>\n </tbody>\n <!-- Table footer for grand total -->\n <tfoot *ngIf=\"tabularReport.matrix.attributes.length>0\"\n [style.background]=\"tabularReport.tableStyle.footer.backgroundColor\"\n [style.font-family]=\"tabularReport.tableStyle.footer.font.family\"\n [style.font-size.px]=\"tabularReport.tableStyle.footer.font.size\"\n [style.color]=\"tabularReport.tableStyle.footer.font.color\">\n <tr *ngIf=\"tabularReport.showGrandTotal\">\n <!-- For future Use -->\n <ng-container *ngFor=\"let attr of tabularReport.matrix.attributes; let i=index\">\n <td\n class=\"px-1.5\tpy-1.5\"\n [style.border]=\"tabularReport.tableStyle.border.width+'px'+' '+ tabularReport.tableStyle.border.borderStyle + ' ' + tabularReport.tableStyle.border.color\"\n [style.text-align]='attr.alignment'\n >\n <ng-container *ngIf=\"attr.widgetType==='textbox-widget' && (attr.widgetSubType==='numeric' || attr.widgetSubType==='number')\">\n <span *ngIf=\"attr.aggregate.showSum\">\n <span *ngIf=\"attr.valueFormatting.currency \">Sum: {{ sum(attr.series) | currency:attr.valueFormatting.currency :'symbol'}}<br></span>\n <span *ngIf=\" attr.valueFormatting.percentage\"> Sum:\n <span *ngIf=\"sum(attr.series)>1\">100%</span>\n <span *ngIf=\"sum(attr.series)<1\">0%</span>\n <br></span>\n <span *ngIf=\"!attr.valueFormatting.percentage && !attr.valueFormatting.currency\">Sum: {{sum(attr.series)}}<br></span>\n </span>\n <span *ngIf=\"attr.aggregate.showAvg\">\n <span *ngIf=\"attr.valueFormatting.currency \">Avg: {{avg(attr.series) | currency:attr.valueFormatting.currency :'symbol'}}<br></span>\n <span *ngIf=\" attr.valueFormatting.percentage\">Avg: {{avg(attr.series)| axoPercentage:attr.series: 'detail'}}<br></span>\n <span *ngIf=\"!attr.valueFormatting.percentage && !attr.valueFormatting.currency\"> Avg: {{avg(attr.series)}}<br></span>\n </span>\n <span *ngIf=\"attr.aggregate.showMax\">\n <span *ngIf=\"attr.valueFormatting.currency \"> Max: {{max(attr.series)| currency:attr.valueFormatting.currency :'symbol'}}<br></span>\n <span *ngIf=\" attr.valueFormatting.percentage\"> Max: {{max(attr.series)| axoPercentage:attr.series: 'detail'}}<br></span>\n <span *ngIf=\"!attr.valueFormatting.percentage && !attr.valueFormatting.currency\"> Max: {{max(attr.series)}}<br></span>\n </span>\n <span *ngIf=\"attr.aggregate.showMin\">\n <span *ngIf=\"attr.valueFormatting.currency \">Min: {{min(attr.series) | currency:attr.valueFormatting.currency :'symbol'}}<br></span>\n <span *ngIf=\" attr.valueFormatting.percentage\">Min: {{min(attr.series)| axoPercentage:attr.series: 'detail'}}<br></span>\n <span *ngIf=\"!attr.valueFormatting.percentage && !attr.valueFormatting.currency\"> Min: {{min(attr.series)}}<br></span>\n </span>\n </ng-container>\n </td>\n </ng-container>\n </tr>\n </tfoot>\n </table>\n <div class=\"flex justify-center items-center flex-col zero-records\" *ngIf=\"(tabularReport.matrix.attributes.length>0 && tabularReport.matrix.attributes[0].series.length===0)\">\n No records available\n </div>\n</div>\n\n<div style=\"visibility: hidden; position: fixed\" [style.left]=\"contextMenuPosition.x\"\n [style.top]=\"contextMenuPosition.y\" [matMenuTriggerFor]=\"contextMenu\">\n</div>\n\n<!-- Mat Menu trigger for table columns-->\n<mat-menu #contextMenu=\"matMenu\">\n <div id=\"table-menu\">\n <ng-template matMenuContent let-item=\"reportData\" >\n <ng-container *ngIf=\"isEditable\">\n <button *ngIf=\"tabularReport.matrix.attributes[currentIndex].type==='int' && (tabularReport.matrix.attributes[currentIndex].type==='int' || tabularReport.matrix.attributes[currentIndex].type==='float')\" mat-menu-item [matMenuTriggerFor]=\"Aggregate\">Aggregate</button>\n <button *ngIf=\"!tabularReport.matrix.attributes[currentIndex-1].rowSpan\" mat-menu-item (click)=\"moveColumnLeft($event)\" >Move Left</button>\n <button mat-menu-item (click)=\"moveColumnRight($event)\">Move Right</button>\n <button mat-menu-item\n *ngIf=\"!tabularReport.matrix.attributes[currentIndex].rowSpan &&\n (tabularReport.rowGrouping.length+1 !== tabularReport.matrix.attributes.length)\"\n (click)=\"removeColumn($event)\">Remove Column</button>\n </ng-container>\n <button *ngIf=\"screenTypes.dashboardBuilder === screenType\" mat-menu-item (click)=\"removeFromDashboard()\">Remove From Dashboard</button>\n </ng-template>\n </div>\n</mat-menu>\n<!------------------------------------------------------------------------------ -->\n\n\n\n<!-- Mat menu trigger for Aggregation-->\n<mat-menu #Aggregate=\"matMenu\">\n <ng-template matMenuContent *ngIf='tabularReport.matrix.attributes.length>0'>\n <!-- <p>\n <mat-checkbox class=\"aggregate-fun\" [(ngModel)]='tabularReport.matrix.attributes[currentIndex].aggregate.showUniqueCount'\n (click)=\"$event.stopPropagation()\">Show Unique Count</mat-checkbox>\n </p> -->\n <section *ngIf=\"tabularReport.matrix.attributes[currentIndex].type==='int' || tabularReport.matrix.attributes[currentIndex].type==='float'\" class=\"detailed-group-aggregate-function\">\n <p>\n <mat-checkbox class=\"aggregate-fun\" [(ngModel)]='tabularReport.matrix.attributes[currentIndex].aggregate.showSum'\n (change)=\"sumAggregation($event)\" (click)=\"$event.stopPropagation()\">sum</mat-checkbox>\n </p>\n <p>\n <mat-checkbox class=\"aggregate-fun\" [(ngModel)]='tabularReport.matrix.attributes[currentIndex].aggregate.showAvg'\n (change)=\"averageAggregation($event)\" (click)=\"$event.stopPropagation()\">Average</mat-checkbox>\n </p>\n <p>\n <mat-checkbox class=\"aggregate-fun\"[(ngModel)]='tabularReport.matrix.attributes[currentIndex].aggregate.showMax'\n (change)=\"maxAggregation($event)\" (click)=\"$event.stopPropagation()\">Max</mat-checkbox>\n </p>\n <p>\n <mat-checkbox class=\"aggregate-fun\"[(ngModel)]='tabularReport.matrix.attributes[currentIndex].aggregate.showMin'\n (change)=\"minAggregation($event)\"(click)=\"$event.stopPropagation()\">Min</mat-checkbox>\n </p>\n </section>\n </ng-template>\n</mat-menu>\n\n<div *ngIf=\"!tabularReport.isDataLoaded && tabularReport.matrix.attributes.length!==0\" class=\"loader-spinner\">\n <app-ghost-loader [elementType]=\"GhostLoaderType.TabularChartLoader\" ></app-ghost-loader>\n</div>\n<!-- <div *ngIf=\"!tabularReport.isDataLoaded && tabularReport.matrix.attributes.length!==0\" class=\"loader-spinner\">\n <mat-spinner [diameter]=\"40\"></mat-spinner></div> -->\n\n\n", styles: ["lib-row-group-view{display:block;height:calc(100% - 6.7rem);min-height:calc(100% - 6.7rem);max-height:calc(100% - 6.7rem)}lib-row-group-view .tableContainer{min-height:100%;max-height:100%;height:100%;width:100%;max-width:100%;min-width:100%;padding-top:0;padding-left:1px;padding-right:1px}lib-row-group-view .tableContainer table{width:auto;height:auto;border:none!important}lib-row-group-view .tableContainer .thead{position:sticky;top:1px}lib-row-group-view .tableContainer .thead th{background-color:#f2f8ff;border-top:none!important;border-bottom:none!important;padding:0}lib-row-group-view .tableContainer .thead th:last-child{border-right:none!important}lib-row-group-view .tableContainer .thead th:first-child{border-left:none!important}lib-row-group-view .tableContainer tbody:nth-of-type(1) tr:nth-of-type(1) td{border-top:none!important}lib-row-group-view .tableContainer tr:first-child td:first-child{border-top:none!important}lib-row-group-view .zero-records{height:calc(100% - 2.4rem);max-width:100%;position:sticky;left:0}lib-row-group-view .tab-down-arrow{padding:4px;position:relative}lib-row-group-view .tab-down-arrow:hover{background-color:#e2e8f0!important}lib-row-group-view .mat-menu-item{background:transparent;color:#1e293b;font-size:12px}lib-row-group-view .tabular-report-tabel-th{display:flex;justify-content:space-between}lib-row-group-view .tabular-report-tabel-th .tabular-report-table-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:900;line-height:26px}lib-row-group-view .tabular-report-tabel-th button{width:24px}lib-row-group-view .vertical-dot .mat-icon{font-size:15px;cursor:all-scroll}lib-row-group-view .vertical-dot .mat-icon:hover{background-color:#e2e8f0!important}lib-row-group-view .loader-spinner{justify-content:center;display:flex;position:sticky;top:50%;vertical-align:middle;margin:0}.aggregate-fun{padding:0 10px;font-size:12px}.url:hover{color:#00f}.detailed-group-aggregate-function p:last-child{margin-bottom:0!important}.mat-menu-panel{min-height:-moz-fit-content!important;min-height:fit-content!important}\n"] }]
1817
+ }], function () { return [{ type: i1.ReportBuilderMasterService }, { type: i2.FieldsListService }, { type: i3.TabularReportService }, { type: i4.CommonService }, { type: i5.ElementService }, { type: i6.DashboardBuilderService }]; }, { tabularReport: [{
1818
+ type: Input
1819
+ }], isEditable: [{
1820
+ type: Input
1821
+ }], x1ImageMediaUrl: [{
1822
+ type: Input
1823
+ }], screenType: [{
1824
+ type: Input
1825
+ }], drillThroughParentType: [{
1826
+ type: Input
1827
+ }], drillThroughFilterInput: [{
1828
+ type: Input
1829
+ }], parentRef: [{
1830
+ type: Input
1831
+ }], reportId: [{
1832
+ type: Input
1833
+ }], contextMenu: [{
1834
+ type: ViewChild,
1835
+ args: [MatMenuTrigger]
1836
+ }] }); })();
1837
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm93LWdyb3VwLXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2F4LWFwcC1jb21tb24tbGliL3NyYy9saWIvZW5saWdodGVuLWxpYi9yZXBvcnQvdGFidWxhci1yZXBvcnQvdGFidWxhci9yb3ctZ3JvdXAtdmlldy9yb3ctZ3JvdXAtdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXgtYXBwLWNvbW1vbi1saWIvc3JjL2xpYi9lbmxpZ2h0ZW4tbGliL3JlcG9ydC90YWJ1bGFyLXJlcG9ydC90YWJ1bGFyL3Jvdy1ncm91cC12aWV3L3Jvdy1ncm91cC12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBZSxlQUFlLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN0RSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBb0MsU0FBUyxFQUFFLGlCQUFpQixFQUFDLE1BQU0sZUFBZSxDQUFDO0FBRWhILE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sd0NBQXdDLENBQUM7QUFHckUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDdEYsT0FBTyxNQUFNLE1BQU0sUUFBUSxDQUFDO0FBQzVCLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQ3BGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDOUQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzFELE9B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Q0FBQyxLQUFLLEVBQUUsU0FBUyxFQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3pELENBQUM7OzBGQTFWVSxxQkFBcUI7d0VBQXJCLHFCQUFxQjt1QkFVckIsY0FBYzs7Ozs7UUNwQzNCLHNFQWdWTTtRQUVOLHlCQUVNO1FBR04seUNBQWlDO1FBQy9CLDhCQUFxQjtRQUNuQixzRkFXYztRQUNoQixpQkFBTTtRQUNSLGlCQUFXO1FBTVgseUNBQStCO1FBQzdCLHNFQXVCYztRQUNoQixpQkFBVztRQUVYLHNFQUVNOzs7UUF6WW9DLHFEQUFnQztRQWtWekIsZUFBb0M7UUFBcEMsaURBQW9DLGtDQUFBO1FBQy9DLHVDQUFpQztRQTBCeEMsZUFBOEM7UUFBOUMscUVBQThDO1FBMEJ2RSxlQUErRTtRQUEvRSwwR0FBK0U7O3VGRDdXeEUscUJBQXFCO2NBTmpDLFNBQVM7MkJBQ0Usb0JBQW9CLGlCQUdmLGlCQUFpQixDQUFDLElBQUk7K09BSTVCLGFBQWE7a0JBQXJCLEtBQUs7WUFDRyxVQUFVO2tCQUFsQixLQUFLO1lBQ0UsZUFBZTtrQkFBdEIsS0FBSztZQUNHLFVBQVU7a0JBQWxCLEtBQUs7WUFDRyxzQkFBc0I7a0JBQTlCLEtBQUs7WUFDRyx1QkFBdUI7a0JBQS9CLEtBQUs7WUFDRyxTQUFTO2tCQUFqQixLQUFLO1lBQ0csUUFBUTtrQkFBaEIsS0FBSztZQUVOLFdBQVc7a0JBRFYsU0FBUzttQkFBQyxjQUFjIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrRHJhZ0Ryb3AsIG1vdmVJdGVtSW5BcnJheSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9kcmFnLWRyb3AnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25DaGFuZ2VzLCBPbkluaXQsIFNpbXBsZUNoYW5nZXMsIFZpZXdDaGlsZCwgVmlld0VuY2Fwc3VsYXRpb259IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0Q2hlY2tib3hDaGFuZ2UgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jaGVja2JveCc7XG5pbXBvcnQgeyBNYXRNZW51VHJpZ2dlciB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL21lbnUnO1xuaW1wb3J0IHsgRWxlbWVudHNEdG8gfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9jb21tb24tZHRvL2VsZW1lbnRzLWR0byc7XG5pbXBvcnQgeyBSZXBvcnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9jb21tb24tdXRpbHMvcmVwb3J0JztcbmltcG9ydCB7IEF0dHJpYnV0ZURhdGEgfSBmcm9tICcuLi8uLi8uLi8uLi9maWVsZHMvYXR0cmlidXRlLWRhdGEnO1xuaW1wb3J0IHsgRmllbGRzTGlzdFNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9maWVsZC1saXN0LWxpYi9maWVsZHMtbGlzdC5zZXJ2aWNlJztcbmltcG9ydCBtb21lbnQgZnJvbSAnbW9tZW50JztcbmltcG9ydCB7IFJlcG9ydEJ1aWxkZXJNYXN0ZXJTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vcmVwb3J0LWJ1aWxkZXItbWFzdGVyLnNlcnZpY2UnO1xuaW1wb3J0IHsgVGFidWxhclJlcG9ydCB9IGZyb20gJy4uLy4uL3RhYnVsYXItcmVwb3J0JztcbmltcG9ydCB7IFRhYnVsYXJSZXBvcnRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vdGFidWxhci1yZXBvcnQuc2VydmljZSc7XG5pbXBvcnQgeyBDb21tb25TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vY29tbW9uLnNlcnZpY2UnO1xuaW1wb3J0IHsgRWxlbWVudFNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9lbGVtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgU2NvcGVUeXBlLCBTY3JlZW5UeXBlIH0gZnJvbSAnLi4vLi4vLi4vLi4vZmlsdGVycy9jb25kaXRpb24tdHlwZSc7XG5pbXBvcnQgeyBEYXNoYm9hcmRCdWlsZGVyU2VydmljZSB9IGZyb20gJy4uLy4uLy4uLy4uLy4uL2Rhc2hib2FyZC1saWIvZGFzaGJvYXJkLWJ1aWxkZXIuc2VydmljZSc7XG5pbXBvcnQgeyBUYWJ1bGFyQ29tcG9uZW50IH0gZnJvbSAnLi4vdGFidWxhci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQXhGaWx0ZXIgfSBmcm9tICcuLi8uLi8uLi8uLi9maWx0ZXJzL2F4LWZpbHRlcic7XG5pbXBvcnQgeyBHaG9zdExvYWRlclR5cGUgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9naG9zdC1sb2FkZXIvZ2hvc3QtbG9hZGVyLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xpYi1yb3ctZ3JvdXAtdmlldycsXG4gIHRlbXBsYXRlVXJsOiAnLi9yb3ctZ3JvdXAtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3Jvdy1ncm91cC12aWV3LmNvbXBvbmVudC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgUm93R3JvdXBWaWV3Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LE9uQ2hhbmdlcyB7XG4gIC8vIEBJbnB1dCgpIHBhZ2U6IFBhZ2U7XG4gIEBJbnB1dCgpIHRhYnVsYXJSZXBvcnQ6IFRhYnVsYXJSZXBvcnQ7XG4gIEBJbnB1dCgpIGlzRWRpdGFibGU6IGJvb2xlYW47XG4gIEBJbnB1dCgpeDFJbWFnZU1lZGlhVXJsOiBzdHJpbmc7XG4gIEBJbnB1dCgpIHNjcmVlblR5cGU6IFNjcmVlblR5cGU7XG4gIEBJbnB1dCgpIGRyaWxsVGhyb3VnaFBhcmVudFR5cGU6IFNjcmVlblR5cGU7XG4gIEBJbnB1dCgpIGRyaWxsVGhyb3VnaEZpbHRlcklucHV0OiBBeEZpbHRlcjtcbiAgQElucHV0KCkgcGFyZW50UmVmOiBUYWJ1bGFyQ29tcG9uZW50O1xuICBASW5wdXQoKSByZXBvcnRJZDogbnVtYmVyO1xuICBAVmlld0NoaWxkKE1hdE1lbnVUcmlnZ2VyKVxuICBjb250ZXh0TWVudTogTWF0TWVudVRyaWdnZXI7XG4gIGNvbnRleHRNZW51UG9zaXRpb24gPSB7IHg6ICcwcHgnLCB5OiAnMHB4JyB9O1xuICBjdXJyZW50SW5kZXg6IG51bWJlcjtcbiAgc2hvd1N1bTogYm9vbGVhbj1mYWxzZTtcbiAgc2hvd01heDogYm9vbGVhbj1mYWxzZTtcbiAgc2hvd01pbjogYm9vbGVhbj1mYWxzZTtcbiAgc2hvd0F2ZzogYm9vbGVhbj1mYWxzZTtcbiAgbW9tZW50OiBhbnk9bW9tZW50O1xuICBpc0RpcnR5OiBib29sZWFuO1xuICByZXBvcnQ6IFJlcG9ydDtcbiAgYXR0ckdsb2JhbDogbnVtYmVyO1xuICBjb3VudDogbnVtYmVyO1xuICBjdDogbnVtYmVyO1xuICBpc0RhdGFMb2FkZWQ9ZmFsc2U7XG4gIEdob3N0TG9hZGVyVHlwZSA9IEdob3N0TG9hZGVyVHlwZTtcbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBfcmVwb3J0QnVpbGRlck1hc3RlclNlcnZpY2U6IFJlcG9ydEJ1aWxkZXJNYXN0ZXJTZXJ2aWNlLFxuICAgIHByaXZhdGUgX2ZpZWxkc0xpc3RTZXJ2aWNlOiBGaWVsZHNMaXN0U2VydmljZSxcbiAgICBwcml2YXRlIF90YWJ1bGFyUmVwb3J0U2VydmljZTogVGFidWxhclJlcG9ydFNlcnZpY2UsXG4gICAgcHJpdmF0ZSBfY29tbW9uU2VydmljZTogQ29tbW9uU2VydmljZSxcbiAgICBwcml2YXRlIF9lbGVtZW50U2VydmljZTogRWxlbWVudFNlcnZpY2UsXG4gICAgcHJpdmF0ZSBfZGFzaGJvYXJkQnVpbGRlclNlcnZpY2U6IERhc2hib2FyZEJ1aWxkZXJTZXJ2aWNlXG5cbiAgKSB7IH1cblxuICBnZXQgc2NyZWVuVHlwZXMoKTogdHlwZW9mIFNjcmVlblR5cGUge1xuICAgIHJldHVybiBTY3JlZW5UeXBlO1xufVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpOiB2b2lkIHtcbiAgICB0aGlzLnRhYnVsYXJSZXBvcnQuaXNEYXRhTG9hZGVkPWZhbHNlO1xuICAgIHRoaXMucmVwb3J0PXRoaXMuX3JlcG9ydEJ1aWxkZXJNYXN0ZXJTZXJ2aWNlLnJlcG9ydDtcblxuICAgIHRoaXMuZ2V0VGFidWxhckRhdGEoKTtcblxuICB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5yZXBvcnQ9dGhpcy5fcmVwb3J0QnVpbGRlck1hc3RlclNlcnZpY2UucmVwb3J0O1xuICAgIC8vIHRoaXMuIGdldFRhYnVsYXJEYXRhKCk7XG4gIH1cblxuICAvKipcbiAgICogcmVtb3ZlIHNsYXNoIGZyb20gdXJsXG4gICAqIEBwYXJhbSB1cmwgXG4gICAqIEByZXR1cm5zIFxuICAgKi9cbiAgcmVtb3ZlU2xhc2hGcm9tVVJMKHVybDogc3RyaW5nKTogYW55e1xuICAgIGlmKHVybCAmJiB1cmwgIT0gXCJcIil7XG4gICAgICByZXR1cm4gdXJsLnNsaWNlKDAsIC0xKTtcbiAgICB9XG4gIH1cblxuICAgZ2V0VGFidWxhckRhdGEoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMudGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlcy5sZW5ndGggPiAwKSB7XG4gICAgICBjb25zdCBkYXRhID0gbmV3IEVsZW1lbnRzRHRvKHRoaXMudGFidWxhclJlcG9ydCk7XG4gICAgICBpZih0aGlzLnNjcmVlblR5cGUgPT09IFNjcmVlblR5cGUuZHJpbGxUaHJvdWdoKXtcbiAgICAgICAgZGF0YS5maWx0ZXJzLmdsb2JhbEZpbHRlcnMuYmFzaWMucHVzaCh0aGlzLmRyaWxsVGhyb3VnaEZpbHRlcklucHV0KTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIGRhdGEuZmlsdGVycy5nbG9iYWxGaWx0ZXJzLmJhc2ljID0gdGhpcy5fZWxlbWVudFNlcnZpY2UuZ2V0VmFsaWRGaWx0ZXIodGhpcy5fZWxlbWVudFNlcnZpY2UuZmlsdGVyc0R0by5iYXNpYywgU2NvcGVUeXBlLmdsb2JhbCk7XG4gICAgICAgIGRhdGEuZmlsdGVycy5nbG9iYWxGaWx0ZXJzLmNhdGVnb3J5ID0gdGhpcy5fZWxlbWVudFNlcnZpY2UuZ2V0VmFsaWRGaWx0ZXJDYXRlZ29yeSh0aGlzLl9lbGVtZW50U2VydmljZS5maWx0ZXJzRHRvLmNhdGVnb3J5LCBTY29wZVR5cGUuZ2xvYmFsKTtcbiAgICAgIH1cbiAgICAgIGRhdGEuZmlsdGVycy5sb2NhbEZpbHRlcnMuYmFzaWMgPSB0aGlzLl9lbGVtZW50U2VydmljZS5nZXRWYWxpZEZpbHRlcih0aGlzLnRhYnVsYXJSZXBvcnQuZmlsdGVycyk7XG4gICAgICBkYXRhLmZpbHRlcnMubG9jYWxGaWx0ZXJzLmNhdGVnb3J5ID0gdGhpcy5fZWxlbWVudFNlcnZpY2UuZ2V0VmFsaWRGaWx0ZXJDYXRlZ29yeSh0aGlzLnRhYnVsYXJSZXBvcnQuY2F0ZWdvcmllcyk7XG4gICAgICBkYXRhLnJlcG9ydElkID0gdGhpcy5yZXBvcnRJZDtcbiAgICAgIGRhdGEudHlwZT0ndGFidWxhci1yZXBvcnQnO1xuICAgICAgZGF0YS5vcmRlckJ5PXRoaXMudGFidWxhclJlcG9ydC5yb3dHcm91cGluZztcbiAgICAgIGRhdGEucGFnZUluZGV4PXRoaXMudGFidWxhclJlcG9ydC5wYWdlSW5kZXg7XG4gICAgICBkYXRhLnBhZ2VTaXplPXRoaXMudGFidWxhclJlcG9ydC5wYWdlU2l6ZTtcbiAgICAgIGRhdGEucGFnZUxlbmd0aD10aGlzLnRhYnVsYXJSZXBvcnQucGFnZUxlbmd0aDtcbiAgICAgIHRoaXMuX2ZpZWxkc0xpc3RTZXJ2aWNlLmdldE1hdHJpeERhdGEoZGF0YSkudGhlbigoZW50aXRpZXNBdHRyaWJ1dGUpID0+IHtcbiAgICAgICAgaWYgKGVudGl0aWVzQXR0cmlidXRlICE9IG51bGwpIHtcbiAgICAgICAgICBlbnRpdGllc0F0dHJpYnV0ZS5tYXRyaXguYXR0cmlidXRlcy5zaG93U3VtPXRydWU7XG4gICAgICAgICAgdGhpcy50YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzID0gZW50aXRpZXNBdHRyaWJ1dGUubWF0cml4LmF0dHJpYnV0ZXM7XG4gICAgICAgICAgdGhpcy50YWJ1bGFyUmVwb3J0LnBhZ2VMZW5ndGg9ZW50aXRpZXNBdHRyaWJ1dGUudG90YWxSZWNvcmRzO1xuICAgICAgICAgIHRoaXMudGFidWxhclJlcG9ydC5wYWdlSW5kZXg9ZW50aXRpZXNBdHRyaWJ1dGUucGFnZUluZGV4O1xuICAgICAgICAgIHRoaXMudGFidWxhclJlcG9ydC5wYWdlU2l6ZT1lbnRpdGllc0F0dHJpYnV0ZS5wYWdlU2l6ZTtcbiAgICAgICAgICB0aGlzLnRhYnVsYXJSZXBvcnQgPSB0aGlzLl90YWJ1bGFyUmVwb3J0U2VydmljZS5ncm91cERhdGEodGhpcy50YWJ1bGFyUmVwb3J0KTtcbiAgICAgICAgfVxuXG4gICAgICB9KTtcbiAgICB9XG4gICAgdGhpcy5pc0RhdGFMb2FkZWQ9dHJ1ZTtcbiAgICB0aGlzLnRhYnVsYXJSZXBvcnQuaXNEYXRhTG9hZGVkPXRydWU7XG4gIH1cblxuLyoqXG4gKiB0byBkcm9wIGNvbHVtbiBmcm9tIHRhYnVsYXIgcmVwb3J0XG4gKlxuICogQHBhcmFtIENka0RyYWdEcm9wXG4gKlxuICovXG4gZHJvcChldmVudDogQ2RrRHJhZ0Ryb3A8c3RyaW5nW10+KTogdm9pZHtcbiAgIGlmKCF0aGlzLnRhYnVsYXJSZXBvcnQubWF0cml4LmF0dHJpYnV0ZXNbZXZlbnQuY3VycmVudEluZGV4XS5yb3dTcGFuKXtcbiAgbW92ZUl0ZW1JbkFycmF5KHRoaXMudGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlcywgZXZlbnQucHJldmlvdXNJbmRleCwgZXZlbnQuY3VycmVudEluZGV4KTtcbiAgdGhpcy5fY29tbW9uU2VydmljZS5pc1JlcG9ydEJ1aWxkZXJEaXJ0eT10cnVlO1xuICAgfVxufVxuICAvKipcbiAgICogdG8gbW92ZSBjb2x1bW4gbGVmdCBvbiB0YWJ1bGFyIHJlcG9ydFxuICAgKlxuICAgKiBAcGFyYW0gQ2RrRHJhZ0Ryb3BcbiAgICpcbiAgICovXG4gICBtb3ZlQ29sdW1uTGVmdChldmVudDogQ2RrRHJhZ0Ryb3A8c3RyaW5nW10+KTogdm9pZHtcbiAgICBtb3ZlSXRlbUluQXJyYXkodGhpcy50YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzLHRoaXMuY3VycmVudEluZGV4LHRoaXMuY3VycmVudEluZGV4LTEpO1xuICAgIHRoaXMuX2NvbW1vblNlcnZpY2UuaXNSZXBvcnRCdWlsZGVyRGlydHk9dHJ1ZTtcbiAgfVxuXG4gIC8qKlxuICAgKiB0byBtb3ZlIGNvbHVtbiByaWdodCBvbiB0YWJ1bGFyIHJlcG9ydFxuICAgKlxuICAgKiBAcGFyYW0gQ2RrRHJhZ0Ryb3BcbiAgICpcbiAgICovXG4gIG1vdmVDb2x1bW5SaWdodChldmVudDogQ2RrRHJhZ0Ryb3A8c3RyaW5nW10+KTogdm9pZHtcbiAgICBtb3ZlSXRlbUluQXJyYXkodGhpcy50YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzLHRoaXMuY3VycmVudEluZGV4LHRoaXMuY3VycmVudEluZGV4KzEpO1xuICAgIHRoaXMuX2NvbW1vblNlcnZpY2UuaXNSZXBvcnRCdWlsZGVyRGlydHk9dHJ1ZTtcbiAgfVxuXG5cbiAgLyoqdXNlZCB0byBjcmVhdGUgYSByb3cgZm9yIHN1YnRvdGFsXG4gICAqXG4gICAqQHBhcmFtIG51bWJlclxuICAgKkBwYXJhbSBudW1iZXJcbiAgICovXG4gIGluZGV4aW5nKGNvdW50XzogbnVtYmVyLGk6IG51bWJlcik6IHZvaWR7XG4gICAgdGhpcy5jdD1jb3VudF87XG4gICAgaWYoY291bnRfPT09MSl7XG4gICAgICB0aGlzLmNvdW50PTE7XG4gICAgICB0aGlzLmF0dHJHbG9iYWw9aTtcbiAgICB9XG4gICAgaWYoY291bnRfPjEpe1xuICAgIHRoaXMuYXR0ckdsb2JhbD0oY291bnRfK2kpLTE7XG4gICAgfVxuXG4gIH1cbiAgLyoqICB0byBjb3VudCBzdWJ0b3RhbCBvZiBhIGdyb3VwZWQgZGF0YVxuICAgKlxuICAgKkBwYXJhbSBudW1iZXJcbiAgICpAcGFyYW0gbnVtYmVyXG4gICAqQHBhcmFtIHN0cmluZ1xuICAgKlxuICAgKi9cbiAgc3ViVG90YWwoYzogbnVtYmVyLCBpOiBudW1iZXIsIHNlcmllczogQXJyYXk8c3RyaW5nPik6IG51bWJlcntcbiAgICBsZXQgdG90YWw9MDtcbiAgICBpZih0aGlzLmN0Pmkpe1xuICAgICAgIGZvcihsZXQgbT0wO208PWk7bSsrKXtcbiAgICAgICAgIHRvdGFsPXRvdGFsK051bWJlcihzZXJpZXNbbV0pO1xuICAgICAgIH1cbiAgICB9XG4gIGVsc2V7XG4gICAgbGV0IG0gPWktdGhpcy5jdCsxO1xuICAgIGZvcihtO208PWk7bSsrKXtcbiAgICB0b3RhbD10b3RhbCtOdW1iZXIoc2VyaWVzW21dKTtcbiAgICB9XG4gIH1cbiAgICByZXR1cm4gdG90YWw7XG4gIH1cblxuICAvKipcbiAgICpcbiAgICogQHBhcmFtIE1vdXNlRXZlbnRcbiAgICogQHBhcmFtIG51bWJlclxuICAgKiBAcGFyYW0gQXR0cmlidXRlRGF0YVxuICAgKi9cbiAgb25Db250ZXh0TWVudShldmVudDogTW91c2VFdmVudCxpbmRleDogbnVtYmVyLGF0dHI6IEF0dHJpYnV0ZURhdGEpOiB2b2lkIHtcbiAgICBpZiAoIXRoaXMuaXNFZGl0YWJsZSkge1xuICAgICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcbiAgICAgIHJldHVybjtcbiAgICB9XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgZXZlbnQucHJldmVudERlZmF1bHQoKTtcbiAgICB0aGlzLmN1cnJlbnRJbmRleD1pbmRleDtcbiAgICB0aGlzLmNvbnRleHRNZW51UG9zaXRpb24ueCA9IGV2ZW50LmNsaWVudFggKyAncHgnO1xuICAgIHRoaXMuY29udGV4dE1lbnVQb3NpdGlvbi55ID0gZXZlbnQuY2xpZW50WSArICdweCc7XG4gICAgdGhpcy5jb250ZXh0TWVudS5tZW51RGF0YSA9IHsgJ2F0dHInOiBhdHRyIH07XG4gICAgdGhpcy5jb250ZXh0TWVudS5tZW51LmZvY3VzRmlyc3RJdGVtKCdtb3VzZScpO1xuICAgIGlmKGF0dHIudHlwZT09PSdpbnQnICYmIHRoaXMudGFidWxhclJlcG9ydC5zaG93R3JhbmRUb3RhbCB8fCAoIWF0dHIucm93U3BhbiAmJiAodGhpcy50YWJ1bGFyUmVwb3J0LnJvd0dyb3VwaW5nLmxlbmd0aCsxICE9PSB0aGlzLnRhYnVsYXJSZXBvcnQubWF0cml4LmF0dHJpYnV0ZXMubGVuZ3RoKSkpe1xuICAgIHRoaXMuY29udGV4dE1lbnUub3Blbk1lbnUoKTtcbiAgICB9XG4gIH1cblxuICAvKipcbiAgICogdG8gcmV0dXJucyBzdW0gb2Ygcm93c1xuICAgKlxuICAgKkBwYXJhbSBzdHJpbmdcbiAgICovXG4gIHN1bShzZXJpZXM6IEFycmF5PHN0cmluZz4pOiBudW1iZXJ7XG4gICAgbGV0IHRvdGFsID0gMDtcbiAgICBmb3IoY29uc3QgZGF0YSBvZiBzZXJpZXMpe1xuICAgICAgdG90YWwgKz0gTnVtYmVyKGRhdGEpO1xuICAgIH1cbiAgICByZXR1cm4gdG90YWw7XG4gIH1cbiAgLyoqXG4gICAqIHRvIHJldHVybnMgYXZlcmFnZSBvZiByb3dzXG4gICAqXG4gICAqIEBwYXJhbSBzdHJpbmdcbiAgICpcbiAgICovXG4gIGF2ZyhzZXJpZXM6IEFycmF5PHN0cmluZz4pOiBudW1iZXJ7XG4gICAgbGV0IHRvdGFsID0gMDtcbiAgICBmb3IoY29uc3QgZGF0YSBvZiBzZXJpZXMpe1xuICAgICAgdG90YWwgKz0gTnVtYmVyKGRhdGEpO1xuICAgIH1cbiAgICByZXR1cm4gKHBhcnNlRmxvYXQoKHRvdGFsL3Nlcmllcy5sZW5ndGgpLnRvRml4ZWQoMikpKTtcblxuICB9XG5cbiAgLyoqXG4gICAqIHRvIHJldHVybnMgbWF4aW11bSB2YWx1ZSBvZiByb3dzXG4gICAqXG4gICAqQHBhcmFtIHN0cmluZ1xuICAgKi9cbiAgbWF4KHNlcmllczogQXJyYXk8c3RyaW5nPik6IG51bWJlcntcbiAgICBjb25zdCBhPVtdO1xuICAgIGZvcihjb25zdCBkYXRhIG9mIHNlcmllcyl7XG4gICAgICBhLnB1c2goTnVtYmVyKGRhdGEpKTtcbiAgICB9XG4gICAgcmV0dXJuICBNYXRoLm1heCguLi5hKTtcbiAgfVxuXG4gIC8qKlxuICAgKiB0byByZXR1cm5zIG1pbmltdW0gdmFsdWUgb2Ygcm93c1xuICAgKlxuICAgKkBwYXJhbSBzdHJpbmdcbiAgICovXG4gIG1pbihzZXJpZXM6IEFycmF5PHN0cmluZz4pOiBudW1iZXJ7XG4gICAgY29uc3QgYT1bXTtcbiAgICBmb3IoY29uc3QgZGF0YSBvZiBzZXJpZXMpe1xuICAgICAgYS5wdXNoKE51bWJlcihkYXRhKSk7XG4gICAgfVxuICAgIHJldHVybiAgTWF0aC5taW4oLi4uYSk7XG4gIH1cblxuICAvKipcbiAgICogdG8gcmV0dXJucyBjb3VudCBvZiB1bmlxdWUgdmFsdWVzIG9mIHJvd3NcbiAgICpcbiAgICogQHBhcmFtIHN0cmluZ1xuICAgKlxuICAgKi9cbiAgICAgdW5pcXVlKHNlcmllczogQXJyYXk8c3RyaW5nPik6IG51bWJlcntcbiAgICAgIHJldHVybiBbLi4ubmV3IFNldChzZXJpZXMpXS5sZW5ndGg7XG4gICAgfVxuXG5cbiAgLyoqKlxuICAgKiBPbiBjaGFydCBjb250ZXh0ICBjbGljayBmb3Igc3VtIGFnZ3JlZ2F0aW9uXG4gICAqIEBwYXJhbSBNYXRDaGVja2JveENoYW5nZVxuICAgKi9cbiAgc3VtQWdncmVnYXRpb24ob2I6IE1hdENoZWNrYm94Q2hhbmdlKTogdm9pZHtcbiAgICB0aGlzLnNob3dTdW09b2IuY2hlY2tlZDtcbiAgICB0aGlzLl9jb21tb25TZXJ2aWNlLmlzUmVwb3J0QnVpbGRlckRpcnR5PXRydWU7XG4gIH1cbiAgLyoqKlxuICAgKiBPbiBjaGFydCBjb250ZXh0ICBjbGljayBmb3IgYXZnIGFnZ3JlZ2F0aW9uXG4gICAqIEBwYXJhbSBNYXRDaGVja2JveENoYW5nZVxuICAgKi9cbiAgYXZlcmFnZUFnZ3JlZ2F0aW9uKG9iOiBNYXRDaGVja2JveENoYW5nZSk6IHZvaWR7XG4gICAgdGhpcy5zaG93QXZnPW9iLmNoZWNrZWQ7XG4gICAgdGhpcy5fY29tbW9uU2VydmljZS5pc1JlcG9ydEJ1aWxkZXJEaXJ0eT10cnVlO1xuICB9XG4gIC8qKipcbiAgICogT24gY2hhcnQgY29udGV4dCAgY2xpY2sgZm9yIG1heCBhZ2dyZWdhdGlvblxuICAgKiBAcGFyYW0gTWF0Q2hlY2tib3hDaGFuZ2VcbiAgICovXG4gIG1heEFnZ3JlZ2F0aW9uKG9iOiBNYXRDaGVja2JveENoYW5nZSk6IHZvaWR7XG4gICAgdGhpcy5zaG93TWF4PW9iLmNoZWNrZWQ7XG4gICAgdGhpcy5fY29tbW9uU2VydmljZS5pc1JlcG9ydEJ1aWxkZXJEaXJ0eT10cnVlO1xuICB9XG4gIC8qKipcbiAgICogT24gY2hhcnQgY29udGV4dCAgY2xpY2sgZm9yIG1pbiBhZ2dyZWdhdGlvblxuICAgKiBAcGFyYW0gTWF0Q2hlY2tib3hDaGFuZ2VcbiAgICovXG4gIG1pbkFnZ3JlZ2F0aW9uKG9iOiBNYXRDaGVja2JveENoYW5nZSk6IHZvaWR7XG4gICAgdGhpcy5zaG93TWluPW9iLmNoZWNrZWQ7XG4gICAgdGhpcy5fY29tbW9uU2VydmljZS5pc1JlcG9ydEJ1aWxkZXJEaXJ0eT10cnVlO1xuICB9XG5cblxuLyoqXG4gKiB0byBzZXQgaXNEaXJ0eSBhZnRlciBjaGFuZ2VzIGluIHRhYnVsYXIgcmVwb3J0IGZpbHRlclxuICpcbiAqL1xuICBkaXJ0eUZsb3dDaGVja0V2ZW50KCk6IHZvaWR7XG4gICAgdGhpcy5fY29tbW9uU2VydmljZS5pc1JlcG9ydEJ1aWxkZXJEaXJ0eT10cnVlO1xuICB9XG5cbiAgLyoqXG4gICAqIHRvIHJlbW92ZSBjb2x1bW4gZnJvbSB0YWJ1bGFyIHJlcG9ydFxuICAgKlxuICAgKiBAcGFyYW0gRXZlbnRcbiAgICpcbiAgICovXG4gICByZW1vdmVDb2x1bW4oJGV2ZW50OiBFdmVudCk6IHZvaWR7XG4gICAgdGhpcy50YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzLnNwbGljZSh0aGlzLmN1cnJlbnRJbmRleCwxKTtcbiAgICB0aGlzLiBnZXRUYWJ1bGFyRGF0YSgpO1xuICAgIHRoaXMuX2NvbW1vblNlcnZpY2UuaXNSZXBvcnRCdWlsZGVyRGlydHk9dHJ1ZTtcbiAgIH1cbiAgLyoqXG4gICAqIHdpbGwgZW1pdCB0YWJsZSBwcm9wZXJ0aWVzIG9uIHRhYmxlIGNsaWNrIHRcbiAgICpcbiAgICogQHBhcmFtIGV2ZW50XG4gICAqL1xuICB0YWJsZVNlbGVjdChldmVudDogUG9pbnRlckV2ZW50KTogdm9pZCB7XG4gIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuICB0aGlzLl90YWJ1bGFyUmVwb3J0U2VydmljZS50YWJsZUNsaWNrRXZlbnQodGhpcy50YWJ1bGFyUmVwb3J0KTtcbiAgfVxuICAvKipcbiAgICogdG8gcmVkaXJlY3QgbWVkaWEgdXJsXG4gICAqXG4gICAqIEBwYXJhbSBldmVudFxuICAgKiBAcGFyYW0gdXJsXG4gICAqL1xuICByZWRpcmVjdChldmVudDogS2V5Ym9hcmRFdmVudCx1cmw6IHN0cmluZyk6IHZvaWR7XG4gICAgaWYoZXZlbnQuY3RybEtleXx8ZXZlbnQubWV0YUtleSl7XG4gICAgd2luZG93Lm9wZW4odXJsICwgJ19ibGFuaycpO1xuICAgIH1cbiAgfVxuXG4gIC8qKlxuICogdG8gcmVkaXJlY3QgbWVkaWEgdXJsIG9uIHNpbmdsZSBjbGljayBcbiAqL1xuICByZWRpcmVjdE9uU2luZ2xlQ2xpY2soZXZlbnQ6IEV2ZW50LHVybDpzdHJpbmcpOnZvaWR7XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgd2luZG93Lm9wZW4odXJsICwgJ19ibGFuaycpO1xuICB9XG5cbiAgcmVtb3ZlRnJvbURhc2hib2FyZCgpOiB2b2lkIHtcbiAgICB0aGlzLl9kYXNoYm9hcmRCdWlsZGVyU2VydmljZS5kZWxldGVFbGVtZW50LmVtaXQodGhpcy50YWJ1bGFyUmVwb3J0KTtcbiAgfVxuXG4gIGRyaWxsVGhyb3VnaENvbnRleHQoZXZlbnQ6IE1vdXNlRXZlbnQsIGF0dHJpYnV0ZTogQXR0cmlidXRlRGF0YSwgaTogbnVtYmVyKTogdm9pZCB7XG4gICAgdGhpcy5wYXJlbnRSZWYuZHJpbGxUaHJvdWdoQ29udGV4dChldmVudCwgYXR0cmlidXRlLGkpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwidGFibGVDb250YWluZXIgY3VzdG9tc2Nyb2xsXCIgKm5nSWY9J3RhYnVsYXJSZXBvcnQuaXNEYXRhTG9hZGVkJz5cbiAgPHRhYmxlXG4gICAgKGNsaWNrKT1cInRhYmxlU2VsZWN0KCRldmVudClcIlxuICAgIFtzdHlsZS5ib3JkZXJdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci53aWR0aCsncHgnKyAnICcrIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuYm9yZGVyU3R5bGUgKyAnICcgKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmNvbG9yXCJcbiAgICAqbmdJZj10YWJ1bGFyUmVwb3J0IGNka0Ryb3BMaXN0R3JvdXAgc3R5bGU9XCJ3aWR0aDoxMDAlXCIgW25nQ2xhc3NdPVwieydtdC0xJzogdGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlcy5sZW5ndGg+MCAmJiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzWzBdLnNlcmllcy5sZW5ndGg9PT0wfVwiPlxuICAgIDxjYXB0aW9uPjwvY2FwdGlvbj5cbiAgICAgIDx0aGVhZCBjbGFzcz1cInRoZWFkXCIgY2xhc3M9XCJ0aGVhZFwiW3N0eWxlLm91dGxpbmVdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci53aWR0aCsncHgnKyAnICcrIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuYm9yZGVyU3R5bGUgKyAnICcgKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmNvbG9yXCIgPlxuICAgICAgICA8dHIgY2xhc3M9XCJleGFtcGxlLWxpc3RcIiAgY2RrRHJvcExpc3QgY2RrRHJvcExpc3RPcmllbnRhdGlvbj1cImhvcml6b250YWxcIiAoY2RrRHJvcExpc3REcm9wcGVkKT1cImRyb3AoJGV2ZW50KVwiPlxuICAgICAgICAgIDwhLS0gY29sdW1uIGhlYWRlcnMgLS0+XG4gICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgYXR0ciBvZiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzOyBsZXQgaT0gaW5kZXhcIlxuICAgICAgICAgID5cbiAgICAgICAgICA8dGggW2lkXT1cInRoXCJcbiAgICAgICAgICAgIGNsYXNzPVwicHgtMS41XHRweS0xLjVcIlxuICAgICAgICAgICAgY2RrRHJhZ1xuICAgICAgICAgICAgW2Nka0RyYWdEaXNhYmxlZF09XCIhaXNFZGl0YWJsZSB8fCBhdHRyLnJvd1NwYW5cIlxuICAgICAgICAgICAgW3N0eWxlLmZvbnQtc2l6ZS5weF09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuaGVhZGVyLmZvbnQuc2l6ZVwiXG4gICAgICAgICAgICBbc3R5bGUuY29sb3JdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmhlYWRlci5mb250LmNvbG9yXCJcbiAgICAgICAgICAgIFtzdHlsZS5mb250LWZhbWlseV09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuaGVhZGVyLmZvbnQuZmFtaWx5XCJcbiAgICAgICAgICAgIFtzdHlsZS5iYWNrZ3JvdW5kXT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5oZWFkZXIuYmFja2dyb3VuZENvbG9yXCJcbiAgICAgICAgICAgIFtzdHlsZS5ib3JkZXJdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci53aWR0aCsncHgnKyAnICcrIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuYm9yZGVyU3R5bGUgKyAnICcgKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmNvbG9yXCJcbiAgICAgICAgICAgIFtzdHlsZS50ZXh0LWFsaWduXT0nYXR0ci5hbGlnbm1lbnQnXG4gICAgICAgICAgICBbcmVzaXplQ29sdW1uRGF0YV09XCJ7ZW5hYmxlOnRydWUsIHJlcG9ydDp0YWJ1bGFyUmVwb3J0LCBhdHRyaWJ1dGU6YXR0ciwgdHlwZTogJ2F0dHJpYnV0ZScsaW5kZXg6aX1cIlxuICAgICAgICAgICAgKm5nSWY9JyFhdHRyLmlzSGlkZGVuJ1xuICAgICAgICAgICAgPlxuXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwidGFidWxhci1yZXBvcnQtdGFiZWwtdGhcIj5cbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInZlcnRpY2FsLWRvdFwiICpuZ0lmPVwiaXNFZGl0YWJsZSAmJiAhYXR0ci5yb3dTcGFuXCIgY2RrRHJhZ0hhbmRsZT5cbiAgICAgICAgICAgICAgICA8bWF0LWljb24gPmRyYWdfaW5kaWNhdG9yPC9tYXQtaWNvbj5cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ3LWZ1bGxcIj5cbiAgICAgICAgICAgICAgICA8aW5wdXQgY2xhc3M9XCJ0YWJ1bGFyLXJlcG9ydC10YWJsZS10ZXh0XCIgWyhuZ01vZGVsKV09XCJhdHRyLmxhYmVsXCJcbiAgICAgICAgICAgICAgICAgICAgW3JlYWRvbmx5XSA9XCIhaXNFZGl0YWJsZVwiIFtzdHlsZS53aWR0aF09XCJhdHRyLmxhYmVsLmxlbmd0aCsxKydjaCdcIlxuICAgICAgICAgICAgICAgICAgICBbc3R5bGUuZm9udC1zaXplLnB4XT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5oZWFkZXIuZm9udC5zaXplXCJcbiAgICAgICAgICAgICAgICAgICAgW3N0eWxlLmNvbG9yXT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5oZWFkZXIuZm9udC5jb2xvclwiXG4gICAgICAgICAgICAgICAgICAgIFtzdHlsZS5mb250LWZhbWlseV09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuaGVhZGVyLmZvbnQuZmFtaWx5XCJcbiAgICAgICAgICAgICAgLz5cbiAgICAgICAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgICAgICAgPGJ1dHRvbiAqbmdJZj1cImlzRWRpdGFibGVcIiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cIm9uQ29udGV4dE1lbnUoJGV2ZW50LGksYXR0cik7XCI+XG4gICAgICAgICAgICAgICAgPG1hdC1pY29uICBjbGFzcz1cInRhYi1kb3duLWFycm93XCIgc3ZnSWNvbj1cImhlcm9pY29uc19vdXRsaW5lOmNoZXZyb24tZG93blwiPjwvbWF0LWljb24+XG4gICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC90aD5cbiAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvdHI+XG4gICAgICA8L3RoZWFkPlxuICAgIDx0Ym9keSAgW25nQ2xhc3NdPVwieydzaGFkb3cnOnRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuc2hhZG93LmVuYWJsZX1cIlxuICAgICAgKm5nSWY9XCJ0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzLmxlbmd0aD4wXCJcbiAgICAgID5cblxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgZGF0YSBvZiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzWzBdLnNlcmllcztsZXQgaSA9IGluZGV4OyBldmVuIGFzIGlzRXZlbjsgbGV0IGRhdGExXCI+XG4gICAgICA8dHJcbiAgICAgICAgW3N0eWxlLmJhY2tncm91bmRdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvZHkuYmFja2dyb3VuZENvbG9yXCJcbiAgICAgICAgW25nU3R5bGVdPVwieyBiYWNrZ3JvdW5kOiBpc0V2ZW4gPyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUucm93U3R5bGUub2RkQ29sb3I6IHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5yb3dTdHlsZS5ldmVuQ29sb3J9XCJcbiAgICAgICAgW3N0eWxlLmJvcmRlcl09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLndpZHRoICsgJyAnKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmJvcmRlclN0eWxlICsgJyAnICsgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5jb2xvclwiXG4gICAgICAgID5cbiAgICAgICAgPCEtLSAgc2VyaWVzIGRhdGEgIC0tPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBfYXR0ciBvZiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzOyBldmVuIGFzIGlzRXZlbjtsZXQgbSA9IGluZGV4XCI+XG4gICAgICAgICAgPHRkXG4gICAgICAgICAgY2xhc3M9XCJweC0xLjVcdHB5LTEuNVwiXG4gICAgICAgICAgKm5nSWY9XCIgX2F0dHIucm93U3BhbiAmJiBfYXR0ci5jbG9uZVNlcmllcyAmJiBfYXR0ci5jbG9uZVNlcmllc1tpXSE9PSdyZXBlYXRlZCcgJiYgIV9hdHRyLmlzSGlkZGVuXCJcbiAgICAgICAgICBbc3R5bGUuZm9udC1mYW1pbHldPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvZHkuZm9udC5mYW1pbHlcIlxuICAgICAgICAgIFtzdHlsZS5mb250LXNpemUucHhdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvZHkuZm9udC5zaXplXCJcbiAgICAgICAgICBbc3R5bGUuY29sb3JdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvZHkuZm9udC5jb2xvclwiXG4gICAgICAgICAgW3N0eWxlLmJvcmRlcl09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLndpZHRoKydweCcrICcgJysgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5ib3JkZXJTdHlsZSArICcgJyArIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuY29sb3JcIlxuICAgICAgICAgIFtzdHlsZS50ZXh0LWFsaWduXT0nX2F0dHIuYWxpZ25tZW50J1xuICAgICAgICAgIFtyb3dTcGFuXT0nX2F0dHIuY2xvbmVHcm91cERhdGFbaV0nXG4gICAgICAgICAgKGNvbnRleHRtZW51KT1cImRyaWxsVGhyb3VnaENvbnRleHQoJGV2ZW50LCBfYXR0ciwgaSlcIlxuICAgICAgICAgID5cbiAgICAgICAgICB7e2luZGV4aW5nKF9hdHRyLmdyb3VwRGF0YVtpXSxpKX19XG4gICAgICAgICAgPGRpdiAgW25nU3dpdGNoXT1cIl9hdHRyLndpZGdldFR5cGVcIj5cbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj0nX2F0dHIuc2VyaWVzW2ldJz5cbiAgICAgICAgICAgICAgPCEtLSB3aGVuIGRhdGEgdHlwZSBpcyBkYXRldGltZSAtLT5cbiAgICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidkYXRlcGlja2VyLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdkYXRldGltZScgfHwgX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdib3RoJ1wiPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gPnt7bW9tZW50KF9hdHRyLnNlcmllc1tpXSsnWicpfGRhdGU6X2F0dHIudmFsdWVGb3JtYXR0aW5nLmRhdGV9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSd0aW1lc3RhbXAnXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuPnt7X2F0dHIuc2VyaWVzW2ldfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIl9hdHRyLndpZGdldFN1YlR5cGU9PT0ndGltZSdcIj5cbiAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiX2F0dHIuc2VyaWVzW2ldIFwiPnt7bW9tZW50KF9hdHRyLnNlcmllc1tpXSwnaGg6bW06c3MnKXxkYXRlOl9hdHRyLnZhbHVlRm9ybWF0dGluZy5kYXRlfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIl9hdHRyLndpZGdldFN1YlR5cGU9PT0nZGF0ZSdcIj5cbiAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIF9hdHRyLndpZGdldFN1YlR5cGU9PT0nZGF0ZSdcIj57e19hdHRyLnNlcmllc1tpXXxkYXRlOl9hdHRyLnZhbHVlRm9ybWF0dGluZy5kYXRlIH19PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJfYXR0ci53aWRnZXRTdWJUeXBlPT09J2RhdGVfcmFuZ2UnXCI+XG4gICAgICAgICAgICAgICAgICB7e19hdHRyLnNlcmllc1tpXX19XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgPCEtLSB3aGVuIGRhdGEgdHlwZSBpcyB0ZXh0IC0tPlxuICAgICAgICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ3RleHRib3gtd2lkZ2V0J1wiPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJfYXR0ci53aWRnZXRTdWJUeXBlPT09J2RlY2ltYWwnfHwgX2F0dHIud2lkZ2V0U3ViVHlwZT09PSd0ZXh0JyB8fCBfYXR0ci53aWRnZXRTdWJUeXBlPT09J3N0cmluZydcIj5cbiAgICAgICAgICAgICAgICAgIHt7X2F0dHIuc2VyaWVzW2ldfX1cbiAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdudW1lcmljJ1wiPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIl9hdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj57eyBfYXR0ci5zZXJpZXNbaV0gfCAgY3VycmVuY3k6X2F0dHIudmFsdWVGb3JtYXR0aW5nLmN1cnJlbmN5IDonc3ltYm9sJ319PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiBfYXR0ci52YWx1ZUZvcm1hdHRpbmcucGVyY2VudGFnZVwiPnt7X2F0dHIuc2VyaWVzW2ldfCAgYXhvUGVyY2VudGFnZTpfYXR0ci5zZXJpZXM6ICdkZXRhaWwnfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIV9hdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlICYmICFfYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3lcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgd2ViIGxpbmsgIC0tPlxuICAgICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidoeXBlcmxpbmstd2lkZ2V0J1wiPlxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidXJsXCIgW3RpdGxlXT1cIngxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV1cIiAoY2xpY2spPVwicmVkaXJlY3QoJGV2ZW50LF9hdHRyLnNlcmllc1tpXSlcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9zcGFuPlxuXG4gICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgc2lnbmF0dXJlIHdpZGdldCAtLT5cbiAgICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInd2V0c2lnbmF0dXJlY2FwdHVyZS13aWRnZXQnXCI+XG4gICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidXJsXCIgW3RpdGxlXT1cIngxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV1cIiAoY2xpY2spPVwicmVkaXJlY3QoJGV2ZW50LHgxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV0pXCI+e3tfYXR0ci5zZXJpZXNbaV19fTwvc3Bhbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cblxuICAgICAgICAgICAgPCEtLSBXaGVuIHdpZGdldCB0eXBlIGlzIHZpZGVvIHdpZGdldCAtLT5cbiAgICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCIndmlkZW9jYXB0dXJlLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmxcIiBbdGl0bGVdPVwieDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdCgkZXZlbnQseDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXSlcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9zcGFuPlxuXG4gICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgYXVkaW8gd2lkZ2V0IC0tPlxuICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidhdWRpb2NhcHR1cmUtd2lkZ2V0J1wiPlxuICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInVybFwiIFt0aXRsZV09XCJ4MUltYWdlTWVkaWFVcmwrX2F0dHIuc2VyaWVzW2ldXCIgKGNsaWNrKT1cInJlZGlyZWN0KCRldmVudCx4MUltYWdlTWVkaWFVcmwrX2F0dHIuc2VyaWVzW2ldKVwiPnt7X2F0dHIuc2VyaWVzW2ldfX08L3NwYW4+XG4gICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgZG9jdW1lbnQgd2lkZ2V0IC0tPlxuICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidmaWxldXBsb2FkLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmxcIiBbdGl0bGVdPVwieDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdCgkZXZlbnQseDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXSlcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9zcGFuPlxuXG4gICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgZG9jdW1lbnQgd2lkZ2V0IC0tPlxuICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidkb2N1bWVudCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmwgY3Vyc29yLXBvaW50ZXJcIiBbdGl0bGVdPVwicmVtb3ZlU2xhc2hGcm9tVVJMKHgxTWVkaWFVcmwpK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdE9uU2luZ2xlQ2xpY2soJGV2ZW50LHJlbW92ZVNsYXNoRnJvbVVSTCh4MU1lZGlhVXJsKStfYXR0ci5zZXJpZXNbaV0pXCI+PG1hdC1pY29uIGNsYXNzPVwiZG9jLWljb25cIiBzdmdJY29uPVwiYXhvX3BkZjFcIj48L21hdC1pY29uPjwvc3Bhbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cblxuICAgICAgICAgICAgPCEtLSBXaGVuIHdpZGdldCB0eXBlIGlzIGRvY3VtZW50IHdpZGdldCAtLT5cbiAgICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInaW1hZ2VjYXB0dXJlLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmxcIiBbdGl0bGVdPVwieDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdCgkZXZlbnQseDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXSlcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9zcGFuPlxuXG5cbiAgICAgICAgICAgICAgPCEtLSBkZWZhdWx0IGNhc2UgLS0+XG4gICAgICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaERlZmF1bHQ+e3tfYXR0ci5zZXJpZXNbaV19fTwvc3Bhbj5cbiAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9JyFfYXR0ci5zZXJpZXNbaV0nPlxuICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIl9hdHRyLndpZGdldFN1YlR5cGU9PT0nbnVtZXJpYycgfHwgX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdudW1iZXInXCI+XG4gICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJfYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3kgXCI+e3sgIDAgfCAgY3VycmVuY3k6X2F0dHIudmFsdWVGb3JtYXR0aW5nLmN1cnJlbmN5IDonc3ltYm9sJ319PC9zcGFuPlxuICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIF9hdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlXCI+e3swIHwgIGF4b1BlcmNlbnRhZ2U6X2F0dHIuc2VyaWVzOiAnZGV0YWlsJ319PC9zcGFuPlxuICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIV9hdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlICYmICFfYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3lcIj57ezB9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICA8IS0tIHdoZW4gc2VyaWVzIGRhdGEgaXMgZW1wdHkgLS0+XG4gICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZSE9PSdudW1lcmljJyB8fCBfYXR0ci53aWRnZXRTdWJUeXBlPT09J251bWJlcidcIj4tPC9zcGFuPlxuXG4gICAgICAgICAgICA8L3NwYW4+XG5cbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPSdfYXR0ci5zZXJpZXNbaV0nPiAoe3tfYXR0ci5ncm91cERhdGFbaV19fSk8L3NwYW4+XG4gICAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPC90ZD5cblxuXG4gICAgICAgIDx0ZFxuICAgICAgICAgIGNsYXNzPVwicHgtMS41XHRweS0xLjVcIlxuICAgICAgICAgICpuZ0lmPVwiIV9hdHRyLnJvd1NwYW4gJiYgX2F0dHIuc2VyaWVzW2ldIT09J3JlcGVhdGVkJyAmJiAhX2F0dHIuaXNIaWRkZW5cIlxuICAgICAgICAgIFtzdHlsZS5mb250LWZhbWlseV09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9keS5mb250LmZhbWlseVwiXG4gICAgICAgICAgW3N0eWxlLmZvbnQtc2l6ZS5weF09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9keS5mb250LnNpemVcIlxuICAgICAgICAgIFtzdHlsZS5jb2xvcl09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9keS5mb250LmNvbG9yXCJcbiAgICAgICAgICBbc3R5bGUuYm9yZGVyXT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIud2lkdGgrJ3B4JysgJyAnKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmJvcmRlclN0eWxlICsgJyAnICsgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5jb2xvclwiXG4gICAgICAgICAgW3N0eWxlLnRleHQtYWxpZ25dPSdfYXR0ci5hbGlnbm1lbnQnXG4gICAgICAgICAgKGNvbnRleHRtZW51KT1cImRyaWxsVGhyb3VnaENvbnRleHQoJGV2ZW50LCBfYXR0ciwgaSlcIlxuICAgICAgICAgID5cbiAgICAgICAgICA8ZGl2ICBbbmdTd2l0Y2hdPVwiX2F0dHIud2lkZ2V0VHlwZVwiPlxuICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj0nX2F0dHIuc2VyaWVzW2ldJz5cbiAgICAgICAgICAgICAgPCEtLSB3aGVuIGRhdGEgdHlwZSBpcyBkYXRldGltZSAtLT5cbiAgICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidkYXRlcGlja2VyLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdkYXRldGltZScgfHwgX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdib3RoJ1wiPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gPnt7bW9tZW50KF9hdHRyLnNlcmllc1tpXSsnWicpfGRhdGU6X2F0dHIudmFsdWVGb3JtYXR0aW5nLmRhdGV9fTwvc3Bhbj5cbiAgICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSd0aW1lc3RhbXAnXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuPnt7X2F0dHIuc2VyaWVzW2ldfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIl9hdHRyLndpZGdldFN1YlR5cGU9PT0ndGltZSdcIj5cbiAgICAgICAgICAgICAgICAgIDxzcGFuID57e21vbWVudChfYXR0ci5zZXJpZXNbaV0sJ2hoOm1tOnNzJyl8ZGF0ZTpfYXR0ci52YWx1ZUZvcm1hdHRpbmcuZGF0ZX19PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJfYXR0ci53aWRnZXRTdWJUeXBlPT09J2RhdGUnXCI+XG4gICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIl9hdHRyLndpZGdldFN1YlR5cGU9PT0nZGF0ZSdcIj57e19hdHRyLnNlcmllc1tpXXxkYXRlOl9hdHRyLnZhbHVlRm9ybWF0dGluZy5kYXRlIH19PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJfYXR0ci53aWRnZXRTdWJUeXBlPT09J2RhdGVfcmFuZ2UnXCI+XG4gICAgICAgICAgICAgICAgICB7e19hdHRyLnNlcmllc1tpXX19XG4gICAgICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgPCEtLSB3aGVuIGRhdGEgdHlwZSBpcyB0ZXh0IC0tPlxuICAgICAgICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ3RleHRib3gtd2lkZ2V0J1wiPlxuICAgICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJfYXR0ci53aWRnZXRTdWJUeXBlPT09J2RlY2ltYWwnfHwgX2F0dHIud2lkZ2V0U3ViVHlwZT09PSd0ZXh0JyB8fCBfYXR0ci53aWRnZXRTdWJUeXBlPT09J3N0cmluZydcIj5cbiAgICAgICAgICAgICAgICAgIHt7X2F0dHIuc2VyaWVzW2ldfX1cbiAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdudW1lcmljJ1wiPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIl9hdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj57eyBfYXR0ci5zZXJpZXNbaV0gfCAgY3VycmVuY3k6X2F0dHIudmFsdWVGb3JtYXR0aW5nLmN1cnJlbmN5IDonc3ltYm9sJ319PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiBfYXR0ci52YWx1ZUZvcm1hdHRpbmcucGVyY2VudGFnZVwiPnt7X2F0dHIuc2VyaWVzW2ldfCAgYXhvUGVyY2VudGFnZTpfYXR0ci5zZXJpZXM6ICdkZXRhaWwnfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIV9hdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlICYmICFfYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3lcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICA8L3NwYW4+XG5cbiAgICAgICAgICAgICAgIDwhLS0gV2hlbiB3aWRnZXQgdHlwZSBpcyB3ZWIgbGluayAgLS0+XG4gICAgICAgICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ2h5cGVybGluay13aWRnZXQnXCI+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmxcIiBbdGl0bGVdPVwieDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdCgkZXZlbnQsX2F0dHIuc2VyaWVzW2ldKVwiPnt7X2F0dHIuc2VyaWVzW2ldfX08L3NwYW4+XG4gICAgICAgICAgICA8L3NwYW4+XG5cbiAgICAgICAgICAgIDwhLS0gV2hlbiB3aWRnZXQgdHlwZSBpcyBzaWduYXR1cmUgd2lkZ2V0IC0tPlxuICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIid3ZXRzaWduYXR1cmVjYXB0dXJlLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmxcIiBbdGl0bGVdPVwieDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdCgkZXZlbnQseDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXSlcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9zcGFuPlxuXG4gICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgdmlkZW8gd2lkZ2V0IC0tPlxuICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIid2aWRlb2NhcHR1cmUtd2lkZ2V0J1wiPlxuICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInVybFwiIFt0aXRsZV09XCJ4MUltYWdlTWVkaWFVcmwrX2F0dHIuc2VyaWVzW2ldXCIgKGNsaWNrKT1cInJlZGlyZWN0KCRldmVudCx4MUltYWdlTWVkaWFVcmwrX2F0dHIuc2VyaWVzW2ldKVwiPnt7X2F0dHIuc2VyaWVzW2ldfX08L3NwYW4+XG4gICAgICAgICAgICA8L3NwYW4+XG5cbiAgICAgICAgICAgIDwhLS0gV2hlbiB3aWRnZXQgdHlwZSBpcyBhdWRpbyB3aWRnZXQgLS0+XG4gICAgICAgICAgICA8c3BhbiAqbmdTd2l0Y2hDYXNlPVwiJ2F1ZGlvY2FwdHVyZS13aWRnZXQnXCI+XG4gICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidXJsXCIgW3RpdGxlXT1cIngxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV1cIiAoY2xpY2spPVwicmVkaXJlY3QoJGV2ZW50LHgxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV0pXCI+e3tfYXR0ci5zZXJpZXNbaV19fTwvc3Bhbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICAgIDwhLS0gV2hlbiB3aWRnZXQgdHlwZSBpcyBmaWxlIHdpZGdldCAtLT5cbiAgICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInZmlsZXVwbG9hZC13aWRnZXQnXCI+XG4gICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwidXJsXCIgW3RpdGxlXT1cIngxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV1cIiAoY2xpY2spPVwicmVkaXJlY3QoJGV2ZW50LHgxSW1hZ2VNZWRpYVVybCtfYXR0ci5zZXJpZXNbaV0pXCI+e3tfYXR0ci5zZXJpZXNbaV19fTwvc3Bhbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cblxuICAgICAgICAgICAgPCEtLSBXaGVuIHdpZGdldCB0eXBlIGlzIGltYWdlIHdpZGdldCAtLT5cbiAgICAgICAgICAgIDxzcGFuICpuZ1N3aXRjaENhc2U9XCInaW1hZ2VjYXB0dXJlLXdpZGdldCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmxcIiBbdGl0bGVdPVwieDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdCgkZXZlbnQseDFJbWFnZU1lZGlhVXJsK19hdHRyLnNlcmllc1tpXSlcIj57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9zcGFuPlxuXG4gICAgICAgICAgICA8IS0tIFdoZW4gd2lkZ2V0IHR5cGUgaXMgZG9jdW1lbnQgd2lkZ2V0IC0tPlxuICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoQ2FzZT1cIidkb2N1bWVudCdcIj5cbiAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJ1cmwgY3Vyc29yLXBvaW50ZXJcIiBbdGl0bGVdPVwicmVtb3ZlU2xhc2hGcm9tVVJMKHgxTWVkaWFVcmwpK19hdHRyLnNlcmllc1tpXVwiIChjbGljayk9XCJyZWRpcmVjdE9uU2luZ2xlQ2xpY2soJGV2ZW50LHJlbW92ZVNsYXNoRnJvbVVSTCh4MU1lZGlhVXJsKStfYXR0ci5zZXJpZXNbaV0pXCI+PG1hdC1pY29uIGNsYXNzPVwiZG9jLWljb25cIiBzdmdJY29uPVwiYXhvX3BkZjFcIj48L21hdC1pY29uPjwvc3Bhbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cblxuICAgICAgICAgICAgICA8IS0tIGRlZmF1bHQgY2FzZSAtLT5cbiAgICAgICAgICAgICAgPHNwYW4gKm5nU3dpdGNoRGVmYXVsdD57e19hdHRyLnNlcmllc1tpXX19PC9zcGFuPlxuICAgICAgICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj0nIV9hdHRyLnNlcmllc1tpXSc+XG4gICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdudW1lcmljJyB8fCBfYXR0ci53aWRnZXRTdWJUeXBlPT09J251bWJlcidcIj5cbiAgICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cIl9hdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj57eyAgMCB8ICBjdXJyZW5jeTpfYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3kgOidzeW1ib2wnfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCIgX2F0dHIudmFsdWVGb3JtYXR0aW5nLnBlcmNlbnRhZ2VcIj57ezAgfCAgYXhvUGVyY2VudGFnZTpfYXR0ci5zZXJpZXM6ICdkZXRhaWwnfX08L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCIhX2F0dHIudmFsdWVGb3JtYXR0aW5nLnBlcmNlbnRhZ2UgJiYgIV9hdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeVwiPnt7MH19PC9zcGFuPlxuICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgIDwhLS0gd2hlbiBzZXJpZXMgZGF0YSBpcyBlbXB0eSAtLT5cbiAgICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJfYXR0ci53aWRnZXRTdWJUeXBlIT09J251bWVyaWMnIHx8IF9hdHRyLndpZGdldFN1YlR5cGU9PT0nbnVtYmVyJ1wiPi08L3NwYW4+XG5cbiAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICA8L2Rpdj5cblxuICAgICAgICA8L3RkPlxuXG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICAgIDwvdHI+XG4gICAgICA8IS0tIHN1YnRvdGFsIGZvciBmdXR1cmUgdXNlIC0tPlxuICAgICAgPHRyICpuZ0lmPSd0YWJ1bGFyUmVwb3J0LnN1YlRvdGFsICAmJiAoYXR0ckdsb2JhbD09PWkpICc+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBfYXR0ciBvZiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzOyBldmVuIGFzIGlzRXZlbjtsZXQgbSA9IGluZGV4XCI+XG4gICAgICAgIDx0ZCAqbmdJZj1cIm09PT0wXCJcbiAgICAgICAgY2xhc3M9XCJweC0xLjVcdHB5LTEuNVwiXG4gICAgICAgIFtzdHlsZS5ib3JkZXJdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci53aWR0aCsncHgnKycgJysgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5ib3JkZXJTdHlsZSArICcgJyArIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuY29sb3JcIlxuICAgICAgICBbc3R5bGUuYmFja2dyb3VuZF09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuc3ViRm9vdGVyLmJhY2tncm91bmRDb2xvclwiXG4gICAgICAgIFtzdHlsZS5mb250LWZhbWlseV09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuc3ViRm9vdGVyLmZvbnQuZmFtaWx5XCJcbiAgICAgICAgW3N0eWxlLmZvbnQtc2l6ZS5weF09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuc3ViRm9vdGVyLmZvbnQuc2l6ZVwiXG4gICAgICAgIFtzdHlsZS5jb2xvcl09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuc3ViRm9vdGVyLmZvbnQuY29sb3JcIlxuICAgICAgICBbc3R5bGUuYm9yZGVyXT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIud2lkdGgrJ3B4JysnICcrIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuYm9yZGVyU3R5bGUgKyAnICcgKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmNvbG9yXCJcbiAgICAgICAgW3N0eWxlLnRleHQtYWxpZ25dPSdfYXR0ci5hbGlnbm1lbnQnXG4gICAgICAgID5cbiAgICAgICAgICA8c3Bhbj5TdWJ0b3RhbDwvc3Bhbj5cbiAgICAgICAgPC90ZD5cbiAgICAgICAgPHRkXG4gICAgICAgIGNsYXNzPVwicHgtMS41XHRweS0xLjVcIlxuICAgICAgICAqbmdJZj1cIm0+PXRhYnVsYXJSZXBvcnQucm93R3JvdXBpbmcubGVuZ3RoXCJcbiAgICAgICAgW3N0eWxlLmJvcmRlcl09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLndpZHRoKydweCcrJyAnKyB0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuYm9yZGVyLmJvcmRlclN0eWxlICsgJyAnICsgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5jb2xvclwiXG4gICAgICAgIFtzdHlsZS5iYWNrZ3JvdW5kXT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5zdWJGb290ZXIuYmFja2dyb3VuZENvbG9yXCJcbiAgICAgICAgW3N0eWxlLmZvbnQtZmFtaWx5XT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5zdWJGb290ZXIuZm9udC5mYW1pbHlcIlxuICAgICAgICBbc3R5bGUuZm9udC1zaXplLnB4XT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5zdWJGb290ZXIuZm9udC5zaXplXCJcbiAgICAgICAgW3N0eWxlLmNvbG9yXT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5zdWJGb290ZXIuZm9udC5jb2xvclwiXG4gICAgICAgIFtzdHlsZS5ib3JkZXJdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci53aWR0aCsncHgnKycgJysgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5ib3JkZXJTdHlsZSArICcgJyArIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuY29sb3JcIlxuICAgICAgICBbc3R5bGUudGV4dC1hbGlnbl09J19hdHRyLmFsaWdubWVudCdcbiAgICAgICAgPlxuICAgICAgICAgPHNwYW4gKm5nSWY9XCJfYXR0ci53aWRnZXRUeXBlPT09J3RleHRib3gtd2lkZ2V0JyAmJiAoX2F0dHIud2lkZ2V0U3ViVHlwZT09PSdudW1lcmljJyB8fCBfYXR0ci53aWRnZXRTdWJUeXBlPT09J251bWJlcicpXCI+XG4gICAgICAgICA8c3BhbiAqbmdJZj1cIl9hdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj57eyBzdWJUb3RhbChjb3VudCxpLF9hdHRyLnNlcmllcykgfCAgY3VycmVuY3k6X2F0dHIudmFsdWVGb3JtYXR0aW5nLmN1cnJlbmN5IDonc3ltYm9sJ319PC9zcGFuPlxuICAgICAgICAgPHNwYW4gKm5nSWY9XCIgX2F0dHIudmFsdWVGb3JtYXR0aW5nLnBlcmNlbnRhZ2VcIj57e3N1YlRvdGFsKGNvdW50LGksX2F0dHIuc2VyaWVzKXwgIGF4b1BlcmNlbnRhZ2U6X2F0dHIuc2VyaWVzOiAnZGV0YWlsJ319PC9zcGFuPlxuICAgICAgICAgPHNwYW4gKm5nSWY9XCIhX2F0dHIudmFsdWVGb3JtYXR0aW5nLnBlcmNlbnRhZ2UgJiYgIV9hdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeVwiPnt7c3ViVG90YWwoY291bnQsaSxfYXR0ci5zZXJpZXMpfX08L3NwYW4+XG5cbiAgICAgICAgPC9zcGFuPlxuICAgICAgICAgPHNwYW4gKm5nSWY9XCJfYXR0ci5lbmxpZ2h0ZW5UeXBlLm1hdEljb24hPT0nYXhvX251bWJlcidcIj48L3NwYW4+XG4gICAgICA8L3RkPlxuICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPC90cj5cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L3Rib2R5PlxuICAgIDwhLS0gIFRhYmxlIGZvb3RlciBmb3IgZ3JhbmQgdG90YWwgLS0+XG4gICAgPHRmb290ICpuZ0lmPVwidGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlcy5sZW5ndGg+MFwiXG4gICAgICBbc3R5bGUuYmFja2dyb3VuZF09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuZm9vdGVyLmJhY2tncm91bmRDb2xvclwiXG4gICAgICBbc3R5bGUuZm9udC1mYW1pbHldPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmZvb3Rlci5mb250LmZhbWlseVwiXG4gICAgICBbc3R5bGUuZm9udC1zaXplLnB4XT1cInRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5mb290ZXIuZm9udC5zaXplXCJcbiAgICAgIFtzdHlsZS5jb2xvcl09XCJ0YWJ1bGFyUmVwb3J0LnRhYmxlU3R5bGUuZm9vdGVyLmZvbnQuY29sb3JcIj5cbiAgICAgIDx0ciAqbmdJZj1cInRhYnVsYXJSZXBvcnQuc2hvd0dyYW5kVG90YWxcIj5cbiAgICAgICAgICA8IS0tIEZvciBmdXR1cmUgVXNlICAtLT5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgYXR0ciBvZiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzOyBsZXQgaT1pbmRleFwiPlxuICAgICAgICAgIDx0ZFxuICAgICAgICAgIGNsYXNzPVwicHgtMS41XHRweS0xLjVcIlxuICAgICAgICAgIFtzdHlsZS5ib3JkZXJdPVwidGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci53aWR0aCsncHgnKycgJysgdGFidWxhclJlcG9ydC50YWJsZVN0eWxlLmJvcmRlci5ib3JkZXJTdHlsZSArICcgJyArIHRhYnVsYXJSZXBvcnQudGFibGVTdHlsZS5ib3JkZXIuY29sb3JcIlxuICAgICAgICAgIFtzdHlsZS50ZXh0LWFsaWduXT0nYXR0ci5hbGlnbm1lbnQnXG4gICAgICAgICAgPlxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJhdHRyLndpZGdldFR5cGU9PT0ndGV4dGJveC13aWRnZXQnICYmICAoYXR0ci53aWRnZXRTdWJUeXBlPT09J251bWVyaWMnIHx8IGF0dHIud2lkZ2V0U3ViVHlwZT09PSdudW1iZXInKVwiPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJhdHRyLmFnZ3JlZ2F0ZS5zaG93U3VtXCI+XG4gICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJhdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj5TdW06IHt7IHN1bShhdHRyLnNlcmllcykgfCAgY3VycmVuY3k6YXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3kgOidzeW1ib2wnfX08YnI+PC9zcGFuPlxuICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIGF0dHIudmFsdWVGb3JtYXR0aW5nLnBlcmNlbnRhZ2VcIj4gU3VtOlxuICAgICAgICAgICAgICA8c3BhbiAqbmdJZj1cInN1bShhdHRyLnNlcmllcyk+MVwiPjEwMCU8L3NwYW4+XG4gICAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwic3VtKGF0dHIuc2VyaWVzKTwxXCI+MCU8L3NwYW4+XG4gICAgICAgICAgICA8YnI+PC9zcGFuPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCIhYXR0ci52YWx1ZUZvcm1hdHRpbmcucGVyY2VudGFnZSAmJiAhYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3lcIj5TdW06IHt7c3VtKGF0dHIuc2VyaWVzKX19PGJyPjwvc3Bhbj5cbiAgICAgICAgICAgIDwvc3Bhbj5cbiAgICAgICAgICA8c3BhbiAqbmdJZj1cImF0dHIuYWdncmVnYXRlLnNob3dBdmdcIj5cbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiYXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3kgXCI+QXZnOiB7e2F2ZyhhdHRyLnNlcmllcykgfCAgY3VycmVuY3k6YXR0ci52YWx1ZUZvcm1hdHRpbmcuY3VycmVuY3kgOidzeW1ib2wnfX08YnI+PC9zcGFuPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCIgYXR0ci52YWx1ZUZvcm1hdHRpbmcucGVyY2VudGFnZVwiPkF2Zzoge3thdmcoYXR0ci5zZXJpZXMpfCAgYXhvUGVyY2VudGFnZTphdHRyLnNlcmllczogJ2RldGFpbCd9fTxicj48L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiFhdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlICYmICFhdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeVwiPiBBdmc6IHt7YXZnKGF0dHIuc2VyaWVzKX19PGJyPjwvc3Bhbj5cbiAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDxzcGFuICpuZ0lmPVwiYXR0ci5hZ2dyZWdhdGUuc2hvd01heFwiPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJhdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj4gTWF4OiB7e21heChhdHRyLnNlcmllcyl8ICBjdXJyZW5jeTphdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSA6J3N5bWJvbCd9fTxicj48L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiBhdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlXCI+IE1heDoge3ttYXgoYXR0ci5zZXJpZXMpfCAgYXhvUGVyY2VudGFnZTphdHRyLnNlcmllczogJ2RldGFpbCd9fTxicj48L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiFhdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlICYmICFhdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeVwiPiBNYXg6IHt7bWF4KGF0dHIuc2VyaWVzKX19PGJyPjwvc3Bhbj5cbiAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgIDxzcGFuICpuZ0lmPVwiYXR0ci5hZ2dyZWdhdGUuc2hvd01pblwiPlxuICAgICAgICAgICAgPHNwYW4gKm5nSWY9XCJhdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSBcIj5NaW46IHt7bWluKGF0dHIuc2VyaWVzKSB8ICBjdXJyZW5jeTphdHRyLnZhbHVlRm9ybWF0dGluZy5jdXJyZW5jeSA6J3N5bWJvbCd9fTxicj48L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cIiBhdHRyLnZhbHVlRm9ybWF0dGluZy5wZXJjZW50YWdlXCI+TWluOiB7e21pbihhdHRyLnNlcmllcyl8ICBheG9QZXJjZW50YWdlOmF0dHIuc2VyaWVzOiAnZGV0YWlsJ319PGJyPjwvc3Bhbj5cbiAgICAgICAgICAgIDxzcGFuICpuZ0lmPVwiIWF0dHIudmFsdWVGb3JtYXR0aW5nLnBlcmNlbnRhZ2UgJiYgIWF0dHIudmFsdWVGb3JtYXR0aW5nLmN1cnJlbmN5XCI+IE1pbjoge3ttaW4oYXR0ci5zZXJpZXMpfX08YnI+PC9zcGFuPlxuICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgICAgIDwvdGQ+XG4gICAgICAgIDwvbmctY29udGFpbmVyPlxuICAgICAgPC90cj5cbiAgICA8L3Rmb290PlxuICA8L3RhYmxlPlxuICA8ZGl2IGNsYXNzPVwiZmxleCBqdXN0aWZ5LWNlbnRlciBpdGVtcy1jZW50ZXIgZmxleC1jb2wgemVyby1yZWNvcmRzXCIgKm5nSWY9XCIodGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlcy5sZW5ndGg+MCAmJiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzWzBdLnNlcmllcy5sZW5ndGg9PT0wKVwiPlxuICAgIE5vIHJlY29yZHMgYXZhaWxhYmxlXG4gIDwvZGl2PlxuPC9kaXY+XG5cbjxkaXYgc3R5bGU9XCJ2aXNpYmlsaXR5OiBoaWRkZW47IHBvc2l0aW9uOiBmaXhlZFwiIFtzdHlsZS5sZWZ0XT1cImNvbnRleHRNZW51UG9zaXRpb24ueFwiXG4gIFtzdHlsZS50b3BdPVwiY29udGV4dE1lbnVQb3NpdGlvbi55XCIgW21hdE1lbnVUcmlnZ2VyRm9yXT1cImNvbnRleHRNZW51XCI+XG48L2Rpdj5cblxuPCEtLSBNYXQgTWVudSB0cmlnZ2VyIGZvciB0YWJsZSBjb2x1bW5zLS0+XG48bWF0LW1lbnUgI2NvbnRleHRNZW51PVwibWF0TWVudVwiPlxuICA8ZGl2IGlkPVwidGFibGUtbWVudVwiPlxuICAgIDxuZy10ZW1wbGF0ZSBtYXRNZW51Q29udGVudCBsZXQtaXRlbT1cInJlcG9ydERhdGFcIiA+XG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXNFZGl0YWJsZVwiPlxuICAgICAgICA8YnV0dG9uICpuZ0lmPVwidGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlc1tjdXJyZW50SW5kZXhdLnR5cGU9PT0naW50JyAmJiAodGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlc1tjdXJyZW50SW5kZXhdLnR5cGU9PT0naW50JyB8fCB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzW2N1cnJlbnRJbmRleF0udHlwZT09PSdmbG9hdCcpXCIgbWF0LW1lbnUtaXRlbSBbbWF0TWVudVRyaWdnZXJGb3JdPVwiQWdncmVnYXRlXCI+QWdncmVnYXRlPC9idXR0b24+XG4gICAgICAgIDxidXR0b24gKm5nSWY9XCIhdGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlc1tjdXJyZW50SW5kZXgtMV0ucm93U3BhblwiIG1hdC1tZW51LWl0ZW0gKGNsaWNrKT1cIm1vdmVDb2x1bW5MZWZ0KCRldmVudClcIiA+TW92ZSBMZWZ0PC9idXR0b24+XG4gICAgICAgIDxidXR0b24gbWF0LW1lbnUtaXRlbSAoY2xpY2spPVwibW92ZUNvbHVtblJpZ2h0KCRldmVudClcIj5Nb3ZlIFJpZ2h0PC9idXR0b24+XG4gICAgICAgIDxidXR0b24gbWF0LW1lbnUtaXRlbVxuICAgICAgICAqbmdJZj1cIiF0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzW2N1cnJlbnRJbmRleF0ucm93U3BhbiAmJlxuICAgICAgICAodGFidWxhclJlcG9ydC5yb3dHcm91cGluZy5sZW5ndGgrMSAhPT0gdGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlcy5sZW5ndGgpXCJcbiAgICAgICAgKGNsaWNrKT1cInJlbW92ZUNvbHVtbigkZXZlbnQpXCI+UmVtb3ZlIENvbHVtbjwvYnV0dG9uPlxuICAgICAgPC9uZy1jb250YWluZXI+XG4gICAgICA8YnV0dG9uICpuZ0lmPVwic2NyZWVuVHlwZXMuZGFzaGJvYXJkQnVpbGRlciA9PT0gc2NyZWVuVHlwZVwiIG1hdC1tZW51LWl0ZW0gKGNsaWNrKT1cInJlbW92ZUZyb21EYXNoYm9hcmQoKVwiPlJlbW92ZSBGcm9tIERhc2hib2FyZDwvYnV0dG9uPlxuICAgIDwvbmctdGVtcGxhdGU+XG4gIDwvZGl2PlxuPC9tYXQtbWVudT5cbjwhLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tIC0tPlxuXG5cblxuPCEtLSBNYXQgbWVudSB0cmlnZ2VyIGZvciAgQWdncmVnYXRpb24tLT5cbjxtYXQtbWVudSAjQWdncmVnYXRlPVwibWF0TWVudVwiPlxuICA8bmctdGVtcGxhdGUgbWF0TWVudUNvbnRlbnQgKm5nSWY9J3RhYnVsYXJSZXBvcnQubWF0cml4LmF0dHJpYnV0ZXMubGVuZ3RoPjAnPlxuICAgIDwhLS0gPHA+XG4gICAgICA8bWF0LWNoZWNrYm94ICBjbGFzcz1cImFnZ3JlZ2F0ZS1mdW5cIiBbKG5nTW9kZWwpXT0ndGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlc1tjdXJyZW50SW5kZXhdLmFnZ3JlZ2F0ZS5zaG93VW5pcXVlQ291bnQnXG4gICAgICAgICAoY2xpY2spPVwiJGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpXCI+U2hvdyBVbmlxdWUgQ291bnQ8L21hdC1jaGVja2JveD5cbiAgICA8L3A+IC0tPlxuICAgIDxzZWN0aW9uICpuZ0lmPVwidGFidWxhclJlcG9ydC5tYXRyaXguYXR0cmlidXRlc1tjdXJyZW50SW5kZXhdLnR5cGU9PT0naW50JyB8fCB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzW2N1cnJlbnRJbmRleF0udHlwZT09PSdmbG9hdCdcIiBjbGFzcz1cImRldGFpbGVkLWdyb3VwLWFnZ3JlZ2F0ZS1mdW5jdGlvblwiPlxuICAgICAgPHA+XG4gICAgICAgIDxtYXQtY2hlY2tib3ggIGNsYXNzPVwiYWdncmVnYXRlLWZ1blwiIFsobmdNb2RlbCldPSd0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzW2N1cnJlbnRJbmRleF0uYWdncmVnYXRlLnNob3dTdW0nXG4gICAgICAgICAgKGNoYW5nZSk9XCJzdW1BZ2dyZWdhdGlvbigkZXZlbnQpXCIgKGNsaWNrKT1cIiRldmVudC5zdG9wUHJvcGFnYXRpb24oKVwiPnN1bTwvbWF0LWNoZWNrYm94PlxuICAgICAgPC9wPlxuICAgICAgPHA+XG4gICAgICAgIDxtYXQtY2hlY2tib3ggY2xhc3M9XCJhZ2dyZWdhdGUtZnVuXCIgWyhuZ01vZGVsKV09J3RhYnVsYXJSZXBvcnQubWF0cml4LmF0dHJpYnV0ZXNbY3VycmVudEluZGV4XS5hZ2dyZWdhdGUuc2hvd0F2ZydcbiAgICAgICAgICAoY2hhbmdlKT1cImF2ZXJhZ2VBZ2dyZWdhdGlvbigkZXZlbnQpXCIgKGNsaWNrKT1cIiRldmVudC5zdG9wUHJvcGFnYXRpb24oKVwiPkF2ZXJhZ2U8L21hdC1jaGVja2JveD5cbiAgICAgIDwvcD5cbiAgICAgIDxwPlxuICAgICAgICA8bWF0LWNoZWNrYm94IGNsYXNzPVwiYWdncmVnYXRlLWZ1blwiWyhuZ01vZGVsKV09J3RhYnVsYXJSZXBvcnQubWF0cml4LmF0dHJpYnV0ZXNbY3VycmVudEluZGV4XS5hZ2dyZWdhdGUuc2hvd01heCdcbiAgICAgICAgICAoY2hhbmdlKT1cIm1heEFnZ3JlZ2F0aW9uKCRldmVudClcIiAoY2xpY2spPVwiJGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpXCI+TWF4PC9tYXQtY2hlY2tib3g+XG4gICAgICA8L3A+XG4gICAgICA8cD5cbiAgICAgICAgPG1hdC1jaGVja2JveCBjbGFzcz1cImFnZ3JlZ2F0ZS1mdW5cIlsobmdNb2RlbCldPSd0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzW2N1cnJlbnRJbmRleF0uYWdncmVnYXRlLnNob3dNaW4nXG4gICAgICAgICAgKGNoYW5nZSk9XCJtaW5BZ2dyZWdhdGlvbigkZXZlbnQpXCIoY2xpY2spPVwiJGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpXCI+TWluPC9tYXQtY2hlY2tib3g+XG4gICAgICA8L3A+XG4gICAgPC9zZWN0aW9uPlxuICA8L25nLXRlbXBsYXRlPlxuPC9tYXQtbWVudT5cblxuPGRpdiAqbmdJZj1cIiF0YWJ1bGFyUmVwb3J0LmlzRGF0YUxvYWRlZCAmJiB0YWJ1bGFyUmVwb3J0Lm1hdHJpeC5hdHRyaWJ1dGVzLmxlbmd0aCE9PTBcIiBjbGFzcz1cImxvYWRlci1zcGlubmVyXCI+XG4gIDxhcHAtZ2hvc3QtbG9hZGVyIFtlbGVtZW50VHlwZV09XCJHaG9zdExvYWRlclR5cGUuVGFidWxhckNoYXJ0TG9hZGVyXCIgPjwvYXBwLWdob3N0LWxvYWRlcj5cbjwvZGl2PlxuPCEtLSA8ZGl2ICpuZ0lmPVwiIXRhYnVsYXJSZXBvcnQuaXNEYXRhTG9hZGVkICYmIHRhYnVsYXJSZXBvcnQubWF0cml4LmF0dHJpYnV0ZXMubGVuZ3RoIT09MFwiIGNsYXNzPVwibG9hZGVyLXNwaW5uZXJcIj5cbiAgPG1hdC1zcGlubmVyIFtkaWFtZXRlcl09XCI0MFwiPjwvbWF0LXNwaW5uZXI+PC9kaXY+ICAtLT5cblxuXG4iXX0=