@bizdoc/core 1.16.3 → 1.16.4

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 (1033) hide show
  1. package/bizdoc-core.d.ts.map +1 -0
  2. package/esm2020/lib/admin/admin-dismiss.service.mjs +6 -6
  3. package/esm2020/lib/admin/admin-menu.component.mjs +82 -9
  4. package/esm2020/lib/admin/configuration-designer/cube-axes-filter.component.mjs +248 -0
  5. package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +192 -29
  6. package/esm2020/lib/admin/configuration-designer/designer.base.mjs +37 -25
  7. package/esm2020/lib/admin/configuration-designer/designer.component.mjs +152 -10
  8. package/esm2020/lib/admin/configuration-designer/elements/action.component.mjs +107 -10
  9. package/esm2020/lib/admin/configuration-designer/elements/analysis-view.component.mjs +447 -7
  10. package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +441 -7
  11. package/esm2020/lib/admin/configuration-designer/elements/anomaly-rule.component.mjs +25 -7
  12. package/esm2020/lib/admin/configuration-designer/elements/box-form.component.mjs +25 -7
  13. package/esm2020/lib/admin/configuration-designer/elements/configuration-datasource.component.mjs +79 -7
  14. package/esm2020/lib/admin/configuration-designer/elements/cube-index-utility.component.mjs +71 -7
  15. package/esm2020/lib/admin/configuration-designer/elements/cube-view.component.mjs +98 -7
  16. package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +793 -10
  17. package/esm2020/lib/admin/configuration-designer/elements/documents-report.component.mjs +52 -7
  18. package/esm2020/lib/admin/configuration-designer/elements/documents-widget.component.mjs +55 -10
  19. package/esm2020/lib/admin/configuration-designer/elements/explore-view.component.mjs +73 -7
  20. package/esm2020/lib/admin/configuration-designer/elements/folder.component.mjs +275 -9
  21. package/esm2020/lib/admin/configuration-designer/elements/form.component.mjs +96 -10
  22. package/esm2020/lib/admin/configuration-designer/elements/guide.component.mjs +78 -7
  23. package/esm2020/lib/admin/configuration-designer/elements/matrix-view.component.mjs +293 -8
  24. package/esm2020/lib/admin/configuration-designer/elements/parallel-view.component.mjs +210 -8
  25. package/esm2020/lib/admin/configuration-designer/elements/performance-widget.component.mjs +74 -7
  26. package/esm2020/lib/admin/configuration-designer/elements/pivot-view.component.mjs +162 -8
  27. package/esm2020/lib/admin/configuration-designer/elements/report.component.mjs +58 -7
  28. package/esm2020/lib/admin/configuration-designer/elements/return-to-role-action.component.mjs +40 -7
  29. package/esm2020/lib/admin/configuration-designer/elements/role.component.mjs +70 -8
  30. package/esm2020/lib/admin/configuration-designer/elements/rule.component.mjs +20 -7
  31. package/esm2020/lib/admin/configuration-designer/elements/state.component.mjs +63 -11
  32. package/esm2020/lib/admin/configuration-designer/elements/sum-view.component.mjs +132 -8
  33. package/esm2020/lib/admin/configuration-designer/elements/tasks-report.component.mjs +101 -7
  34. package/esm2020/lib/admin/configuration-designer/elements/type.component.mjs +25 -7
  35. package/esm2020/lib/admin/configuration-designer/elements/usage-report.component.mjs +205 -8
  36. package/esm2020/lib/admin/configuration-designer/elements/utility.component.mjs +24 -7
  37. package/esm2020/lib/admin/configuration-designer/elements/view.component.mjs +22 -7
  38. package/esm2020/lib/admin/configuration-designer/elements/widget.component.mjs +54 -7
  39. package/esm2020/lib/admin/configuration-designer/icon-picker.component.mjs +79 -30
  40. package/esm2020/lib/admin/core/ace.input.mjs +35 -29
  41. package/esm2020/lib/admin/core/color-picker.input.mjs +89 -36
  42. package/esm2020/lib/admin/core/search.input.mjs +23 -13
  43. package/esm2020/lib/admin/diff/configuration-diff.component.mjs +90 -15
  44. package/esm2020/lib/admin/document-trace/document-trace.component.mjs +296 -30
  45. package/esm2020/lib/admin/document-trace/reassign.dialog.mjs +63 -10
  46. package/esm2020/lib/admin/document-trace/trace-element.component.mjs +238 -7
  47. package/esm2020/lib/admin/form/designer/designer.component.mjs +492 -10
  48. package/esm2020/lib/admin/form/form.resolve.service.mjs +6 -6
  49. package/esm2020/lib/admin/form/workflow/node.component.mjs +86 -15
  50. package/esm2020/lib/admin/form/workflow/role-node.component.mjs +152 -13
  51. package/esm2020/lib/admin/form/workflow/workflow.component.mjs +219 -18
  52. package/esm2020/lib/admin/indices/manage-cube-index.component.mjs +160 -13
  53. package/esm2020/lib/admin/patterns/patterns.component.mjs +280 -19
  54. package/esm2020/lib/admin/permissions/permissions.component.mjs +129 -13
  55. package/esm2020/lib/admin/positions/positions-popup.component.mjs +77 -13
  56. package/esm2020/lib/admin/positions/positions.component.mjs +605 -31
  57. package/esm2020/lib/admin/profiler/outofoffice.component.mjs +184 -16
  58. package/esm2020/lib/admin/profiler/profiler.component.mjs +268 -21
  59. package/esm2020/lib/admin/system.service.mjs +6 -6
  60. package/esm2020/lib/admin/utility-wrapper.component.mjs +9 -9
  61. package/esm2020/lib/admin/utility.pane.component.mjs +23 -15
  62. package/esm2020/lib/app.component.mjs +19 -19
  63. package/esm2020/lib/bizdoc.module.mjs +30 -29
  64. package/esm2020/lib/browse/browse-items.component.mjs +629 -40
  65. package/esm2020/lib/browse/browse.mobile.component.mjs +218 -13
  66. package/esm2020/lib/browse/browse.pane.component.mjs +214 -18
  67. package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +161 -11
  68. package/esm2020/lib/browse/filter/filter.component.mjs +184 -27
  69. package/esm2020/lib/browse/folders-menu.component.mjs +74 -11
  70. package/esm2020/lib/chat/chat-info.mjs +10 -10
  71. package/esm2020/lib/chat/chat.mobile.component.mjs +32 -11
  72. package/esm2020/lib/chat/chat.service.mjs +7 -7
  73. package/esm2020/lib/chat/contacts.component.mjs +134 -15
  74. package/esm2020/lib/chat/contacts.pane.component.mjs +16 -12
  75. package/esm2020/lib/chat/conversation.component.mjs +128 -21
  76. package/esm2020/lib/chat/conversation.pane.component.mjs +13 -9
  77. package/esm2020/lib/compose/action/action-picker.component.mjs +107 -14
  78. package/esm2020/lib/compose/action/action.dialog.mjs +78 -13
  79. package/esm2020/lib/compose/action/action.pane.dialog.exp.mjs +58 -12
  80. package/esm2020/lib/compose/action/assign-action.component.mjs +93 -10
  81. package/esm2020/lib/compose/action/moveto-action.component.mjs +110 -10
  82. package/esm2020/lib/compose/action/return-action.component.mjs +55 -7
  83. package/esm2020/lib/compose/attachments/attachments.component.mjs +140 -13
  84. package/esm2020/lib/compose/attachments/preview/attachment-preview.component.mjs +147 -58
  85. package/esm2020/lib/compose/attachments/progress-button.directive.mjs +9 -9
  86. package/esm2020/lib/compose/box/box.component.mjs +160 -7
  87. package/esm2020/lib/compose/can-deactivate-changes.service.mjs +6 -6
  88. package/esm2020/lib/compose/comments/comment.component.mjs +189 -26
  89. package/esm2020/lib/compose/comments/comments.component.mjs +111 -22
  90. package/esm2020/lib/compose/comments/comments.pane.component.mjs +21 -12
  91. package/esm2020/lib/compose/comments/edit-comment.component.mjs +16 -10
  92. package/esm2020/lib/compose/comments/edits.component.mjs +47 -10
  93. package/esm2020/lib/compose/comments/quick-comment.component.exp.mjs +37 -10
  94. package/esm2020/lib/compose/comments/votes.component.mjs +45 -10
  95. package/esm2020/lib/compose/compose-resolve.service.mjs +11 -11
  96. package/esm2020/lib/compose/compose.mobile.component.mjs +297 -19
  97. package/esm2020/lib/compose/compose.pane.component.mjs +336 -36
  98. package/esm2020/lib/compose/copy/copy.dialog.mjs +58 -7
  99. package/esm2020/lib/compose/dismiss.service.mjs +6 -6
  100. package/esm2020/lib/compose/document-resolver.service.mjs +6 -6
  101. package/esm2020/lib/compose/document.component.mjs +28 -12
  102. package/esm2020/lib/compose/document.mobile.component.mjs +13 -9
  103. package/esm2020/lib/compose/document.pane.component.mjs +13 -9
  104. package/esm2020/lib/compose/events/events.component.mjs +33 -9
  105. package/esm2020/lib/compose/form-selector/form-selector.sheet.mjs +40 -7
  106. package/esm2020/lib/compose/form.component.mjs +119 -40
  107. package/esm2020/lib/compose/new-menu.component.mjs +45 -9
  108. package/esm2020/lib/compose/privilage.directive.mjs +31 -31
  109. package/esm2020/lib/compose/recipient-resolver.service.mjs +6 -6
  110. package/esm2020/lib/compose/state.component.mjs +9 -9
  111. package/esm2020/lib/compose/tag/tags.component.mjs +73 -16
  112. package/esm2020/lib/compose/trace/flow.component.mjs +13 -13
  113. package/esm2020/lib/compose/trace/people.component.mjs +23 -13
  114. package/esm2020/lib/compose/trace/trace.base.mjs +6 -6
  115. package/esm2020/lib/compose/trace/trace.component.mjs +306 -11
  116. package/esm2020/lib/compose/trace/trace.pane.component.mjs +31 -15
  117. package/esm2020/lib/compose/version-compare/version-compare.component.mjs +14 -14
  118. package/esm2020/lib/compose/version-compare/version-compare.directive.mjs +64 -64
  119. package/esm2020/lib/compose/version-compare/version.pane.component.mjs +66 -9
  120. package/esm2020/lib/core/NgComponentOutlet.mjs +18 -18
  121. package/esm2020/lib/core/account.service.mjs +7 -7
  122. package/esm2020/lib/core/animated-icon/animated-icon.directive.mjs +7 -7
  123. package/esm2020/lib/core/avatar/avatar.component.mjs +43 -16
  124. package/esm2020/lib/core/component-factory-resolver.mjs +6 -6
  125. package/esm2020/lib/core/controls/address.input.mjs +74 -45
  126. package/esm2020/lib/core/controls/auto-complete.input.mjs +129 -65
  127. package/esm2020/lib/core/controls/combination-picker-body.mjs +156 -20
  128. package/esm2020/lib/core/controls/combination-picker.mjs +71 -52
  129. package/esm2020/lib/core/controls/combination-pool.mjs +76 -20
  130. package/esm2020/lib/core/controls/file.input.mjs +316 -51
  131. package/esm2020/lib/core/controls/select.input.mjs +115 -59
  132. package/esm2020/lib/core/controls/time-picker.mjs +49 -25
  133. package/esm2020/lib/core/controls/timespan.input.mjs +59 -37
  134. package/esm2020/lib/core/datasource.service.mjs +7 -7
  135. package/esm2020/lib/core/guide/guide.component.mjs +88 -19
  136. package/esm2020/lib/core/guide/guide.service.mjs +10 -10
  137. package/esm2020/lib/core/guide/help-tip.component.mjs +36 -14
  138. package/esm2020/lib/core/http.interceptor.mjs +12 -12
  139. package/esm2020/lib/core/hub.service.mjs +9 -9
  140. package/esm2020/lib/core/identity/identity.component.mjs +38 -16
  141. package/esm2020/lib/core/info/attachment-info.service.mjs +6 -6
  142. package/esm2020/lib/core/info/document-info.service.mjs +6 -6
  143. package/esm2020/lib/core/info/location-info.component.mjs +12 -12
  144. package/esm2020/lib/core/info/map-info.mjs +6 -6
  145. package/esm2020/lib/core/layout/autocomplete.field.mjs +66 -22
  146. package/esm2020/lib/core/layout/checkbox.field.mjs +56 -18
  147. package/esm2020/lib/core/layout/checkbox.mjs +33 -19
  148. package/esm2020/lib/core/layout/date-range.field.mjs +47 -22
  149. package/esm2020/lib/core/layout/date.field.mjs +67 -23
  150. package/esm2020/lib/core/layout/expression.field.mjs +66 -24
  151. package/esm2020/lib/core/layout/file.field.mjs +64 -20
  152. package/esm2020/lib/core/layout/html.field.mjs +60 -18
  153. package/esm2020/lib/core/layout/input.base.mjs +6 -6
  154. package/esm2020/lib/core/layout/input.field.mjs +64 -20
  155. package/esm2020/lib/core/layout/layout.component.mjs +34 -26
  156. package/esm2020/lib/core/layout/numeric.field.mjs +72 -21
  157. package/esm2020/lib/core/layout/select.field.mjs +100 -33
  158. package/esm2020/lib/core/layout/switch.field.mjs +56 -18
  159. package/esm2020/lib/core/layout/textarea.field.mjs +60 -18
  160. package/esm2020/lib/core/layout/timespan.field.mjs +67 -22
  161. package/esm2020/lib/core/lottie-animation.mjs +22 -20
  162. package/esm2020/lib/core/mailbox.service.mjs +7 -7
  163. package/esm2020/lib/core/models.mjs +1 -1
  164. package/esm2020/lib/core/none.component.mjs +39 -17
  165. package/esm2020/lib/core/pipes/action.pipe.mjs +7 -7
  166. package/esm2020/lib/core/pipes/calendar.pipe.mjs +10 -10
  167. package/esm2020/lib/core/pipes/date-format.pipe.mjs +7 -7
  168. package/esm2020/lib/core/pipes/daterange.pipe.mjs +13 -13
  169. package/esm2020/lib/core/pipes/difference.pipe.mjs +7 -7
  170. package/esm2020/lib/core/pipes/duration-format.pipe.mjs +7 -7
  171. package/esm2020/lib/core/pipes/duration.pipe.mjs +7 -7
  172. package/esm2020/lib/core/pipes/form.pipe.mjs +7 -7
  173. package/esm2020/lib/core/pipes/join.pipe.mjs +7 -7
  174. package/esm2020/lib/core/pipes/role.pipe.mjs +7 -7
  175. package/esm2020/lib/core/pipes/sort.pipe.mjs +17 -17
  176. package/esm2020/lib/core/pipes/state.pipe.mjs +7 -7
  177. package/esm2020/lib/core/pipes/time-ago.pipe.mjs +10 -10
  178. package/esm2020/lib/core/pipes/type-value.pipe.mjs +9 -9
  179. package/esm2020/lib/core/pipes/user-name.pipe.mjs +7 -7
  180. package/esm2020/lib/core/popup/popup.component.mjs +26 -13
  181. package/esm2020/lib/core/popup/popup.service.mjs +7 -7
  182. package/esm2020/lib/core/popup/tooltip.directive.mjs +34 -34
  183. package/esm2020/lib/core/prompt/ask/ask.dialog.mjs +34 -10
  184. package/esm2020/lib/core/prompt/mask/mask.component.mjs +18 -10
  185. package/esm2020/lib/core/prompt.service.mjs +7 -7
  186. package/esm2020/lib/core/router.mjs +11 -11
  187. package/esm2020/lib/core/save-changes.dialog.mjs +43 -7
  188. package/esm2020/lib/core/session.service.mjs +10 -10
  189. package/esm2020/lib/core/slots/router.directive.mjs +29 -27
  190. package/esm2020/lib/core/slots/router.service.mjs +7 -7
  191. package/esm2020/lib/core/slots/slots.component.mjs +296 -41
  192. package/esm2020/lib/core/tagging/documents.component.mjs +33 -7
  193. package/esm2020/lib/core/tagging/edit-input.component.mjs +141 -38
  194. package/esm2020/lib/core/tagging/emoji.component.mjs +15 -12
  195. package/esm2020/lib/core/tagging/tagging-item.directive.mjs +31 -23
  196. package/esm2020/lib/core/tagging/tagging.component-base.mjs +14 -9
  197. package/esm2020/lib/core/tagging/tagging.directive.mjs +23 -21
  198. package/esm2020/lib/core/tagging/tagging.pipe.mjs +7 -7
  199. package/esm2020/lib/core/tagging/users.component.mjs +37 -7
  200. package/esm2020/lib/core/translate.service.mjs +7 -7
  201. package/esm2020/lib/core/translations.mjs +4 -1
  202. package/esm2020/lib/core/window-title.service.mjs +10 -10
  203. package/esm2020/lib/cube/accum/accum.component.mjs +41 -39
  204. package/esm2020/lib/cube/chart/chart.component.mjs +47 -45
  205. package/esm2020/lib/cube/cube-info.service.mjs +6 -6
  206. package/esm2020/lib/cube/cube-menu.component.mjs +70 -11
  207. package/esm2020/lib/cube/cube-view.component.mjs +34 -32
  208. package/esm2020/lib/cube/cube.service.mjs +10 -10
  209. package/esm2020/lib/cube/explore/document-item.component.mjs +15 -11
  210. package/esm2020/lib/cube/explore/explore-item.component.mjs +11 -11
  211. package/esm2020/lib/cube/explore/explore-items.component.mjs +167 -37
  212. package/esm2020/lib/cube/explore/explore.pane.component.mjs +65 -12
  213. package/esm2020/lib/cube/explore/item-resolver.service.mjs +11 -11
  214. package/esm2020/lib/cube/explore/item.pane.component.mjs +13 -9
  215. package/esm2020/lib/cube/filter/filter-tags.component.exp.mjs +59 -15
  216. package/esm2020/lib/cube/filter/filter.component.mjs +153 -17
  217. package/esm2020/lib/cube/grid/grid.component.mjs +33 -31
  218. package/esm2020/lib/cube/grid/spreadsheet.component.mjs +39 -37
  219. package/esm2020/lib/cube/matrix/matrix.base.mjs +6 -6
  220. package/esm2020/lib/cube/matrix/matrix.mobile.component.mjs +112 -10
  221. package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +123 -12
  222. package/esm2020/lib/cube/matrix/popup.component.mjs +120 -16
  223. package/esm2020/lib/cube/matrix/table.component.mjs +178 -45
  224. package/esm2020/lib/cube/parallel/parallel.component.mjs +57 -28
  225. package/esm2020/lib/cube/pivot/pivot.component.mjs +43 -40
  226. package/esm2020/lib/cube/sum/sum.component.mjs +238 -32
  227. package/esm2020/lib/cube/view-base.mjs +6 -6
  228. package/esm2020/lib/cube/view.mobile.component.mjs +177 -19
  229. package/esm2020/lib/cube/view.pane.component.mjs +109 -15
  230. package/esm2020/lib/dashboard/actions/actions.widget.mjs +28 -21
  231. package/esm2020/lib/dashboard/cube/accum-cube.widget.mjs +17 -15
  232. package/esm2020/lib/dashboard/cube/compare.widget.mjs +25 -18
  233. package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +6 -6
  234. package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +10 -10
  235. package/esm2020/lib/dashboard/cube/cube-chart.widget.mjs +17 -15
  236. package/esm2020/lib/dashboard/cube/documents.widget.mjs +114 -19
  237. package/esm2020/lib/dashboard/cube/filter/filter.component.mjs +13 -7
  238. package/esm2020/lib/dashboard/dashboard.component.mjs +90 -12
  239. package/esm2020/lib/dashboard/dashboard.pane.component.mjs +9 -7
  240. package/esm2020/lib/dashboard/recents/recents.widget.mjs +164 -19
  241. package/esm2020/lib/dashboard/score/activity.widget.mjs +18 -13
  242. package/esm2020/lib/dashboard/score/compare-groups.widget.mjs +25 -18
  243. package/esm2020/lib/dashboard/score/peers-performance.widget.mjs +26 -19
  244. package/esm2020/lib/dashboard/score/pending-results.widget.mjs +143 -19
  245. package/esm2020/lib/dashboard/score/personal-score.widget.mjs +23 -18
  246. package/esm2020/lib/dashboard/widget-item.component.mjs +17 -15
  247. package/esm2020/lib/desktop.module.mjs +58 -57
  248. package/esm2020/lib/home/about/about.dialog.mjs +97 -7
  249. package/esm2020/lib/home/home-base.component.mjs +6 -6
  250. package/esm2020/lib/home/home.desktop.component.mjs +336 -16
  251. package/esm2020/lib/home/home.mobile.component.mjs +310 -16
  252. package/esm2020/lib/home/notifications/notifications.component.mjs +78 -7
  253. package/esm2020/lib/home/options/options.component.mjs +171 -7
  254. package/esm2020/lib/home/outofoffice/outofoffice.component.mjs +40 -10
  255. package/esm2020/lib/home/search.service.mjs +6 -6
  256. package/esm2020/lib/home/sign/sign.component.mjs +32 -7
  257. package/esm2020/lib/home/tools.component.mjs +87 -13
  258. package/esm2020/lib/impersonate/impersonate.component.mjs +61 -7
  259. package/esm2020/lib/mobile.module.mjs +34 -33
  260. package/esm2020/lib/modules/chart.module.mjs +22 -21
  261. package/esm2020/lib/modules/circular-gauge.module.mjs +13 -12
  262. package/esm2020/lib/modules/datepicker.intl.mjs +6 -6
  263. package/esm2020/lib/modules/dayjs.module.mjs +11 -11
  264. package/esm2020/lib/modules/diagram.module.mjs +24 -23
  265. package/esm2020/lib/modules/gantt.module.mjs +13 -12
  266. package/esm2020/lib/modules/grid.module.mjs +16 -15
  267. package/esm2020/lib/modules/material.module.mjs +87 -86
  268. package/esm2020/lib/modules/paginator.intl.mjs +6 -6
  269. package/esm2020/lib/modules/pivot.module.mjs +17 -16
  270. package/esm2020/lib/modules/schedule.module.mjs +15 -14
  271. package/esm2020/lib/modules/spreadsheet.module.mjs +21 -20
  272. package/esm2020/lib/modules/stepper.intl.mjs +6 -6
  273. package/esm2020/lib/modules/texteditor.module.mjs +19 -18
  274. package/esm2020/lib/notifications/filter.component.mjs +22 -7
  275. package/esm2020/lib/notifications/notifications-table.component.mjs +214 -10
  276. package/esm2020/lib/notifications/notifications.mobile.component.mjs +11 -9
  277. package/esm2020/lib/notifications/notifications.pane.component.mjs +14 -12
  278. package/esm2020/lib/notifications/notifications.service.mjs +6 -6
  279. package/esm2020/lib/notifications/types/commented.notification.mjs +42 -15
  280. package/esm2020/lib/notifications/types/cube-anomaly.notification.mjs +25 -15
  281. package/esm2020/lib/notifications/types/escalated.notification.mjs +24 -12
  282. package/esm2020/lib/notifications/types/liked.notification.mjs +42 -15
  283. package/esm2020/lib/notifications/types/long-running-task.notification.mjs +17 -13
  284. package/esm2020/lib/notifications/types/notification-base.mjs +11 -9
  285. package/esm2020/lib/notifications/types/nudge.notification.mjs +18 -12
  286. package/esm2020/lib/notifications/types/state-changed.notification.mjs +18 -10
  287. package/esm2020/lib/notifications/types/tagged.notification.mjs +26 -14
  288. package/esm2020/lib/notifications/types/text.notification.mjs +14 -10
  289. package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +24 -15
  290. package/esm2020/lib/options/options.component.mjs +350 -25
  291. package/esm2020/lib/options/options.service.mjs +6 -6
  292. package/esm2020/lib/reports/arguments-component.mjs +20 -20
  293. package/esm2020/lib/reports/cube/documents.component.mjs +9 -9
  294. package/esm2020/lib/reports/cube/grid-documents.component.mjs +77 -10
  295. package/esm2020/lib/reports/cube/table-documents.component.mjs +175 -13
  296. package/esm2020/lib/reports/cube/usage-args.component.mjs +13 -7
  297. package/esm2020/lib/reports/cube/usage-base.mjs +6 -6
  298. package/esm2020/lib/reports/cube/usage-chart.component.mjs +15 -13
  299. package/esm2020/lib/reports/cube/usage-pivot.component.mjs +21 -14
  300. package/esm2020/lib/reports/cube/usage.component.mjs +9 -9
  301. package/esm2020/lib/reports/report-viewer.component.mjs +36 -20
  302. package/esm2020/lib/reports/report.mobile.component.mjs +105 -13
  303. package/esm2020/lib/reports/report.pane.component.mjs +92 -15
  304. package/esm2020/lib/reports/reports-menu.component.mjs +40 -11
  305. package/esm2020/lib/reports/substitution/substitution.component.mjs +157 -10
  306. package/esm2020/lib/reports/table/table-view.component.mjs +74 -16
  307. package/esm2020/lib/reports/tasks/tasks.component.mjs +38 -10
  308. package/esm2020/lib/scheduler/schedule.component.mjs +110 -14
  309. package/esm2020/lib/scheduler/scheduler.mobile.component.mjs +15 -9
  310. package/esm2020/lib/scheduler/scheduler.pane.component.mjs +19 -12
  311. package/esm2020/lib/shared.module.mjs +197 -196
  312. package/esm2020/lib/system.module.mjs +64 -62
  313. package/esm2020/lib/views/cube/chart.component.mjs +45 -7
  314. package/esm2020/lib/views/cube/cube-base.mjs +6 -6
  315. package/esm2020/lib/views/cube/explore.component.mjs +128 -7
  316. package/esm2020/lib/views/cube/matrix.component.mjs +164 -10
  317. package/esm2020/lib/views/cube/parallel.component.mjs +20 -7
  318. package/esm2020/lib/views/cube/pivot.component.mjs +20 -7
  319. package/esm2020/lib/views/cube/sum.component.mjs +116 -7
  320. package/esm2020/lib/views/cube/view.component.mjs +137 -10
  321. package/esm2020/lib/views/timeline/timeline.component.exp.mjs +14 -12
  322. package/esm2020/lib/views/view-item.component.mjs +20 -18
  323. package/esm2020/lib/views/views.component.mjs +31 -12
  324. package/esm2020/lib/views/views.mobile.component.mjs +11 -7
  325. package/esm2020/lib/views/views.pane.component.mjs +19 -10
  326. package/fesm2015/bizdoc-core.mjs +25737 -2457
  327. package/fesm2015/bizdoc-core.mjs.map +1 -1
  328. package/fesm2020/bizdoc-core.mjs +24051 -5129
  329. package/fesm2020/bizdoc-core.mjs.map +1 -1
  330. package/index.d.ts +1 -0
  331. package/lib/admin/admin-dismiss.service.d.ts +1 -0
  332. package/lib/admin/admin-dismiss.service.d.ts.map +1 -0
  333. package/lib/admin/admin-menu.component.d.ts +1 -0
  334. package/lib/admin/admin-menu.component.d.ts.map +1 -0
  335. package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts +36 -0
  336. package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts.map +1 -0
  337. package/lib/admin/configuration-designer/designer-element.component.d.ts +6 -2
  338. package/lib/admin/configuration-designer/designer-element.component.d.ts.map +1 -0
  339. package/lib/admin/configuration-designer/designer.base.d.ts +25 -3
  340. package/lib/admin/configuration-designer/designer.base.d.ts.map +1 -0
  341. package/lib/admin/configuration-designer/designer.component.d.ts +1 -0
  342. package/lib/admin/configuration-designer/designer.component.d.ts.map +1 -0
  343. package/lib/admin/configuration-designer/elements/action.component.d.ts +16 -1
  344. package/lib/admin/configuration-designer/elements/action.component.d.ts.map +1 -0
  345. package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts +1 -0
  346. package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts.map +1 -0
  347. package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts +1 -0
  348. package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts.map +1 -0
  349. package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts +1 -0
  350. package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts.map +1 -0
  351. package/lib/admin/configuration-designer/elements/box-form.component.d.ts +1 -0
  352. package/lib/admin/configuration-designer/elements/box-form.component.d.ts.map +1 -0
  353. package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts +1 -0
  354. package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts.map +1 -0
  355. package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts +1 -0
  356. package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts.map +1 -0
  357. package/lib/admin/configuration-designer/elements/cube-view.component.d.ts +1 -0
  358. package/lib/admin/configuration-designer/elements/cube-view.component.d.ts.map +1 -0
  359. package/lib/admin/configuration-designer/elements/cube.component.d.ts +1 -0
  360. package/lib/admin/configuration-designer/elements/cube.component.d.ts.map +1 -0
  361. package/lib/admin/configuration-designer/elements/documents-report.component.d.ts +1 -0
  362. package/lib/admin/configuration-designer/elements/documents-report.component.d.ts.map +1 -0
  363. package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts +1 -0
  364. package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts.map +1 -0
  365. package/lib/admin/configuration-designer/elements/explore-view.component.d.ts +1 -0
  366. package/lib/admin/configuration-designer/elements/explore-view.component.d.ts.map +1 -0
  367. package/lib/admin/configuration-designer/elements/folder.component.d.ts +13 -1
  368. package/lib/admin/configuration-designer/elements/folder.component.d.ts.map +1 -0
  369. package/lib/admin/configuration-designer/elements/form.component.d.ts +1 -0
  370. package/lib/admin/configuration-designer/elements/form.component.d.ts.map +1 -0
  371. package/lib/admin/configuration-designer/elements/guide.component.d.ts +1 -0
  372. package/lib/admin/configuration-designer/elements/guide.component.d.ts.map +1 -0
  373. package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts +1 -0
  374. package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts.map +1 -0
  375. package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts +1 -0
  376. package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts.map +1 -0
  377. package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts +1 -0
  378. package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts.map +1 -0
  379. package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts +1 -0
  380. package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts.map +1 -0
  381. package/lib/admin/configuration-designer/elements/report.component.d.ts +1 -0
  382. package/lib/admin/configuration-designer/elements/report.component.d.ts.map +1 -0
  383. package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts +1 -0
  384. package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts.map +1 -0
  385. package/lib/admin/configuration-designer/elements/role.component.d.ts +3 -0
  386. package/lib/admin/configuration-designer/elements/role.component.d.ts.map +1 -0
  387. package/lib/admin/configuration-designer/elements/rule.component.d.ts +1 -0
  388. package/lib/admin/configuration-designer/elements/rule.component.d.ts.map +1 -0
  389. package/lib/admin/configuration-designer/elements/state.component.d.ts +5 -0
  390. package/lib/admin/configuration-designer/elements/state.component.d.ts.map +1 -0
  391. package/lib/admin/configuration-designer/elements/sum-view.component.d.ts +1 -0
  392. package/lib/admin/configuration-designer/elements/sum-view.component.d.ts.map +1 -0
  393. package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts +1 -0
  394. package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts.map +1 -0
  395. package/lib/admin/configuration-designer/elements/type.component.d.ts +1 -0
  396. package/lib/admin/configuration-designer/elements/type.component.d.ts.map +1 -0
  397. package/lib/admin/configuration-designer/elements/usage-report.component.d.ts +1 -0
  398. package/lib/admin/configuration-designer/elements/usage-report.component.d.ts.map +1 -0
  399. package/lib/admin/configuration-designer/elements/utility.component.d.ts +1 -0
  400. package/lib/admin/configuration-designer/elements/utility.component.d.ts.map +1 -0
  401. package/lib/admin/configuration-designer/elements/view.component.d.ts +1 -0
  402. package/lib/admin/configuration-designer/elements/view.component.d.ts.map +1 -0
  403. package/lib/admin/configuration-designer/elements/widget.component.d.ts +1 -0
  404. package/lib/admin/configuration-designer/elements/widget.component.d.ts.map +1 -0
  405. package/lib/admin/configuration-designer/icon-picker.component.d.ts +1 -0
  406. package/lib/admin/configuration-designer/icon-picker.component.d.ts.map +1 -0
  407. package/lib/admin/core/ace.input.d.ts +1 -0
  408. package/lib/admin/core/ace.input.d.ts.map +1 -0
  409. package/lib/admin/core/color-picker.input.d.ts +1 -0
  410. package/lib/admin/core/color-picker.input.d.ts.map +1 -0
  411. package/lib/admin/core/search.input.d.ts +1 -0
  412. package/lib/admin/core/search.input.d.ts.map +1 -0
  413. package/lib/admin/diff/configuration-diff.component.d.ts +1 -0
  414. package/lib/admin/diff/configuration-diff.component.d.ts.map +1 -0
  415. package/lib/admin/document-trace/document-trace.component.d.ts +1 -0
  416. package/lib/admin/document-trace/document-trace.component.d.ts.map +1 -0
  417. package/lib/admin/document-trace/reassign.dialog.d.ts +1 -0
  418. package/lib/admin/document-trace/reassign.dialog.d.ts.map +1 -0
  419. package/lib/admin/document-trace/timeline.d.ts +1 -0
  420. package/lib/admin/document-trace/timeline.d.ts.map +1 -0
  421. package/lib/admin/document-trace/trace-element.component.d.ts +1 -0
  422. package/lib/admin/document-trace/trace-element.component.d.ts.map +1 -0
  423. package/lib/admin/form/designer/designer.component.d.ts +1 -0
  424. package/lib/admin/form/designer/designer.component.d.ts.map +1 -0
  425. package/lib/admin/form/form.resolve.service.d.ts +1 -0
  426. package/lib/admin/form/form.resolve.service.d.ts.map +1 -0
  427. package/lib/admin/form/workflow/node-ref.d.ts +1 -0
  428. package/lib/admin/form/workflow/node-ref.d.ts.map +1 -0
  429. package/lib/admin/form/workflow/node.component.d.ts +1 -0
  430. package/lib/admin/form/workflow/node.component.d.ts.map +1 -0
  431. package/lib/admin/form/workflow/role-node.component.d.ts +1 -0
  432. package/lib/admin/form/workflow/role-node.component.d.ts.map +1 -0
  433. package/lib/admin/form/workflow/workflow.component.d.ts +1 -0
  434. package/lib/admin/form/workflow/workflow.component.d.ts.map +1 -0
  435. package/lib/admin/indices/manage-cube-index.component.d.ts +1 -0
  436. package/lib/admin/indices/manage-cube-index.component.d.ts.map +1 -0
  437. package/lib/admin/patterns/patterns.component.d.ts +1 -0
  438. package/lib/admin/patterns/patterns.component.d.ts.map +1 -0
  439. package/lib/admin/permissions/permissions.component.d.ts +1 -0
  440. package/lib/admin/permissions/permissions.component.d.ts.map +1 -0
  441. package/lib/admin/positions/positions-popup.component.d.ts +1 -0
  442. package/lib/admin/positions/positions-popup.component.d.ts.map +1 -0
  443. package/lib/admin/positions/positions.component.d.ts +1 -0
  444. package/lib/admin/positions/positions.component.d.ts.map +1 -0
  445. package/lib/admin/profiler/outofoffice.component.d.ts +1 -0
  446. package/lib/admin/profiler/outofoffice.component.d.ts.map +1 -0
  447. package/lib/admin/profiler/profiler.component.d.ts +1 -0
  448. package/lib/admin/profiler/profiler.component.d.ts.map +1 -0
  449. package/lib/admin/system.service.d.ts +1 -0
  450. package/lib/admin/system.service.d.ts.map +1 -0
  451. package/lib/admin/utility-ref.d.ts +1 -0
  452. package/lib/admin/utility-ref.d.ts.map +1 -0
  453. package/lib/admin/utility-wrapper.component.d.ts +1 -0
  454. package/lib/admin/utility-wrapper.component.d.ts.map +1 -0
  455. package/lib/admin/utility.pane.component.d.ts +1 -0
  456. package/lib/admin/utility.pane.component.d.ts.map +1 -0
  457. package/lib/app.component.d.ts +1 -0
  458. package/lib/app.component.d.ts.map +1 -0
  459. package/lib/bizdoc.module.d.ts +1 -0
  460. package/lib/bizdoc.module.d.ts.map +1 -0
  461. package/lib/browse/browse-items.component.d.ts +1 -0
  462. package/lib/browse/browse-items.component.d.ts.map +1 -0
  463. package/lib/browse/browse.mobile.component.d.ts +1 -0
  464. package/lib/browse/browse.mobile.component.d.ts.map +1 -0
  465. package/lib/browse/browse.pane.component.d.ts +1 -0
  466. package/lib/browse/browse.pane.component.d.ts.map +1 -0
  467. package/lib/browse/expanded-item/expanded-item.component.d.ts +1 -0
  468. package/lib/browse/expanded-item/expanded-item.component.d.ts.map +1 -0
  469. package/lib/browse/filter/filter.component.d.ts +1 -0
  470. package/lib/browse/filter/filter.component.d.ts.map +1 -0
  471. package/lib/browse/folders-menu.component.d.ts +1 -0
  472. package/lib/browse/folders-menu.component.d.ts.map +1 -0
  473. package/lib/chat/chat-info.d.ts +1 -0
  474. package/lib/chat/chat-info.d.ts.map +1 -0
  475. package/lib/chat/chat.mobile.component.d.ts +1 -0
  476. package/lib/chat/chat.mobile.component.d.ts.map +1 -0
  477. package/lib/chat/chat.service.d.ts +1 -0
  478. package/lib/chat/chat.service.d.ts.map +1 -0
  479. package/lib/chat/contacts.component.d.ts +1 -0
  480. package/lib/chat/contacts.component.d.ts.map +1 -0
  481. package/lib/chat/contacts.pane.component.d.ts +1 -0
  482. package/lib/chat/contacts.pane.component.d.ts.map +1 -0
  483. package/lib/chat/conversation.component.d.ts +1 -0
  484. package/lib/chat/conversation.component.d.ts.map +1 -0
  485. package/lib/chat/conversation.pane.component.d.ts +1 -0
  486. package/lib/chat/conversation.pane.component.d.ts.map +1 -0
  487. package/lib/compose/action/action-picker.component.d.ts +1 -0
  488. package/lib/compose/action/action-picker.component.d.ts.map +1 -0
  489. package/lib/compose/action/action-ref.d.ts +1 -0
  490. package/lib/compose/action/action-ref.d.ts.map +1 -0
  491. package/lib/compose/action/action.base.d.ts +1 -0
  492. package/lib/compose/action/action.base.d.ts.map +1 -0
  493. package/lib/compose/action/action.dialog.d.ts +1 -0
  494. package/lib/compose/action/action.dialog.d.ts.map +1 -0
  495. package/lib/compose/action/action.pane.dialog.exp.d.ts +1 -0
  496. package/lib/compose/action/action.pane.dialog.exp.d.ts.map +1 -0
  497. package/lib/compose/action/assign-action.component.d.ts +1 -0
  498. package/lib/compose/action/assign-action.component.d.ts.map +1 -0
  499. package/lib/compose/action/moveto-action.component.d.ts +1 -0
  500. package/lib/compose/action/moveto-action.component.d.ts.map +1 -0
  501. package/lib/compose/action/return-action.component.d.ts +1 -0
  502. package/lib/compose/action/return-action.component.d.ts.map +1 -0
  503. package/lib/compose/attachments/attachments.component.d.ts +1 -0
  504. package/lib/compose/attachments/attachments.component.d.ts.map +1 -0
  505. package/lib/compose/attachments/preview/attachment-preview.component.d.ts +1 -0
  506. package/lib/compose/attachments/preview/attachment-preview.component.d.ts.map +1 -0
  507. package/lib/compose/attachments/progress-button.directive.d.ts +1 -0
  508. package/lib/compose/attachments/progress-button.directive.d.ts.map +1 -0
  509. package/lib/compose/box/box.component.d.ts +1 -0
  510. package/lib/compose/box/box.component.d.ts.map +1 -0
  511. package/lib/compose/can-deactivate-changes.service.d.ts +1 -0
  512. package/lib/compose/can-deactivate-changes.service.d.ts.map +1 -0
  513. package/lib/compose/comments/comment.component.d.ts +1 -0
  514. package/lib/compose/comments/comment.component.d.ts.map +1 -0
  515. package/lib/compose/comments/comments.component.d.ts +1 -0
  516. package/lib/compose/comments/comments.component.d.ts.map +1 -0
  517. package/lib/compose/comments/comments.pane.component.d.ts +1 -0
  518. package/lib/compose/comments/comments.pane.component.d.ts.map +1 -0
  519. package/lib/compose/comments/edit-comment.component.d.ts +1 -0
  520. package/lib/compose/comments/edit-comment.component.d.ts.map +1 -0
  521. package/lib/compose/comments/edits.component.d.ts +1 -0
  522. package/lib/compose/comments/edits.component.d.ts.map +1 -0
  523. package/lib/compose/comments/quick-comment.component.exp.d.ts +1 -0
  524. package/lib/compose/comments/quick-comment.component.exp.d.ts.map +1 -0
  525. package/lib/compose/comments/votes.component.d.ts +1 -0
  526. package/lib/compose/comments/votes.component.d.ts.map +1 -0
  527. package/lib/compose/compose-resolve.service.d.ts +1 -0
  528. package/lib/compose/compose-resolve.service.d.ts.map +1 -0
  529. package/lib/compose/compose.mobile.component.d.ts +1 -0
  530. package/lib/compose/compose.mobile.component.d.ts.map +1 -0
  531. package/lib/compose/compose.pane.component.d.ts +1 -0
  532. package/lib/compose/compose.pane.component.d.ts.map +1 -0
  533. package/lib/compose/copy/copy.dialog.d.ts +1 -0
  534. package/lib/compose/copy/copy.dialog.d.ts.map +1 -0
  535. package/lib/compose/dismiss.service.d.ts +1 -0
  536. package/lib/compose/dismiss.service.d.ts.map +1 -0
  537. package/lib/compose/document-resolver.service.d.ts +1 -0
  538. package/lib/compose/document-resolver.service.d.ts.map +1 -0
  539. package/lib/compose/document.component.d.ts +1 -0
  540. package/lib/compose/document.component.d.ts.map +1 -0
  541. package/lib/compose/document.mobile.component.d.ts +1 -0
  542. package/lib/compose/document.mobile.component.d.ts.map +1 -0
  543. package/lib/compose/document.pane.component.d.ts +1 -0
  544. package/lib/compose/document.pane.component.d.ts.map +1 -0
  545. package/lib/compose/events/events.component.d.ts +1 -0
  546. package/lib/compose/events/events.component.d.ts.map +1 -0
  547. package/lib/compose/form-ref.d.ts +1 -0
  548. package/lib/compose/form-ref.d.ts.map +1 -0
  549. package/lib/compose/form-selector/form-selector.sheet.d.ts +1 -0
  550. package/lib/compose/form-selector/form-selector.sheet.d.ts.map +1 -0
  551. package/lib/compose/form.component.d.ts +1 -0
  552. package/lib/compose/form.component.d.ts.map +1 -0
  553. package/lib/compose/new-menu.component.d.ts +1 -0
  554. package/lib/compose/new-menu.component.d.ts.map +1 -0
  555. package/lib/compose/privilage.directive.d.ts +1 -0
  556. package/lib/compose/privilage.directive.d.ts.map +1 -0
  557. package/lib/compose/recipient-resolver.service.d.ts +1 -0
  558. package/lib/compose/recipient-resolver.service.d.ts.map +1 -0
  559. package/lib/compose/state.component.d.ts +1 -0
  560. package/lib/compose/state.component.d.ts.map +1 -0
  561. package/lib/compose/tag/tags.component.d.ts +1 -0
  562. package/lib/compose/tag/tags.component.d.ts.map +1 -0
  563. package/lib/compose/trace/flow.component.d.ts +1 -0
  564. package/lib/compose/trace/flow.component.d.ts.map +1 -0
  565. package/lib/compose/trace/people.component.d.ts +1 -0
  566. package/lib/compose/trace/people.component.d.ts.map +1 -0
  567. package/lib/compose/trace/trace.base.d.ts +1 -0
  568. package/lib/compose/trace/trace.base.d.ts.map +1 -0
  569. package/lib/compose/trace/trace.component.d.ts +1 -0
  570. package/lib/compose/trace/trace.component.d.ts.map +1 -0
  571. package/lib/compose/trace/trace.pane.component.d.ts +1 -0
  572. package/lib/compose/trace/trace.pane.component.d.ts.map +1 -0
  573. package/lib/compose/version-compare/version-compare.component.d.ts +1 -0
  574. package/lib/compose/version-compare/version-compare.component.d.ts.map +1 -0
  575. package/lib/compose/version-compare/version-compare.directive.d.ts +1 -0
  576. package/lib/compose/version-compare/version-compare.directive.d.ts.map +1 -0
  577. package/lib/compose/version-compare/version.pane.component.d.ts +1 -0
  578. package/lib/compose/version-compare/version.pane.component.d.ts.map +1 -0
  579. package/lib/core/NgComponentOutlet.d.ts +1 -0
  580. package/lib/core/NgComponentOutlet.d.ts.map +1 -0
  581. package/lib/core/account.service.d.ts +1 -0
  582. package/lib/core/account.service.d.ts.map +1 -0
  583. package/lib/core/animated-icon/animated-icon.directive.d.ts +1 -0
  584. package/lib/core/animated-icon/animated-icon.directive.d.ts.map +1 -0
  585. package/lib/core/animations.d.ts +1 -0
  586. package/lib/core/animations.d.ts.map +1 -0
  587. package/lib/core/authentication.d.ts +1 -0
  588. package/lib/core/authentication.d.ts.map +1 -0
  589. package/lib/core/avatar/avatar.component.d.ts +1 -0
  590. package/lib/core/avatar/avatar.component.d.ts.map +1 -0
  591. package/lib/core/base.d.ts +1 -0
  592. package/lib/core/base.d.ts.map +1 -0
  593. package/lib/core/colors.d.ts +1 -0
  594. package/lib/core/colors.d.ts.map +1 -0
  595. package/lib/core/component-factory-resolver.d.ts +1 -0
  596. package/lib/core/component-factory-resolver.d.ts.map +1 -0
  597. package/lib/core/configuration.d.ts +1 -0
  598. package/lib/core/configuration.d.ts.map +1 -0
  599. package/lib/core/controls/address.input.d.ts +1 -0
  600. package/lib/core/controls/address.input.d.ts.map +1 -0
  601. package/lib/core/controls/auto-complete.input.d.ts +1 -0
  602. package/lib/core/controls/auto-complete.input.d.ts.map +1 -0
  603. package/lib/core/controls/combination-picker-body.d.ts +1 -0
  604. package/lib/core/controls/combination-picker-body.d.ts.map +1 -0
  605. package/lib/core/controls/combination-picker.d.ts +1 -0
  606. package/lib/core/controls/combination-picker.d.ts.map +1 -0
  607. package/lib/core/controls/combination-pool.d.ts +1 -0
  608. package/lib/core/controls/combination-pool.d.ts.map +1 -0
  609. package/lib/core/controls/file.input.d.ts +1 -0
  610. package/lib/core/controls/file.input.d.ts.map +1 -0
  611. package/lib/core/controls/select.input.d.ts +1 -0
  612. package/lib/core/controls/select.input.d.ts.map +1 -0
  613. package/lib/core/controls/time-picker.d.ts +1 -0
  614. package/lib/core/controls/time-picker.d.ts.map +1 -0
  615. package/lib/core/controls/timespan.input.d.ts +1 -0
  616. package/lib/core/controls/timespan.input.d.ts.map +1 -0
  617. package/lib/core/datasource.service.d.ts +1 -0
  618. package/lib/core/datasource.service.d.ts.map +1 -0
  619. package/lib/core/decorators.d.ts +1 -0
  620. package/lib/core/decorators.d.ts.map +1 -0
  621. package/lib/core/firebase.service.d.ts +1 -0
  622. package/lib/core/firebase.service.d.ts.map +1 -0
  623. package/lib/core/functions.d.ts +1 -0
  624. package/lib/core/functions.d.ts.map +1 -0
  625. package/lib/core/guide/guide.component.d.ts +1 -0
  626. package/lib/core/guide/guide.component.d.ts.map +1 -0
  627. package/lib/core/guide/guide.service.d.ts +1 -0
  628. package/lib/core/guide/guide.service.d.ts.map +1 -0
  629. package/lib/core/guide/help-tip.component.d.ts +1 -0
  630. package/lib/core/guide/help-tip.component.d.ts.map +1 -0
  631. package/lib/core/http.interceptor.d.ts +1 -0
  632. package/lib/core/http.interceptor.d.ts.map +1 -0
  633. package/lib/core/hub.service.d.ts +1 -0
  634. package/lib/core/hub.service.d.ts.map +1 -0
  635. package/lib/core/identity/identity.component.d.ts +1 -0
  636. package/lib/core/identity/identity.component.d.ts.map +1 -0
  637. package/lib/core/info/attachment-info.service.d.ts +1 -0
  638. package/lib/core/info/attachment-info.service.d.ts.map +1 -0
  639. package/lib/core/info/document-info.service.d.ts +1 -0
  640. package/lib/core/info/document-info.service.d.ts.map +1 -0
  641. package/lib/core/info/location-info.component.d.ts +1 -0
  642. package/lib/core/info/location-info.component.d.ts.map +1 -0
  643. package/lib/core/info/map-info.d.ts +1 -0
  644. package/lib/core/info/map-info.d.ts.map +1 -0
  645. package/lib/core/layout/autocomplete.field.d.ts +1 -0
  646. package/lib/core/layout/autocomplete.field.d.ts.map +1 -0
  647. package/lib/core/layout/checkbox.d.ts +1 -0
  648. package/lib/core/layout/checkbox.d.ts.map +1 -0
  649. package/lib/core/layout/checkbox.field.d.ts +1 -0
  650. package/lib/core/layout/checkbox.field.d.ts.map +1 -0
  651. package/lib/core/layout/date-range.field.d.ts +1 -0
  652. package/lib/core/layout/date-range.field.d.ts.map +1 -0
  653. package/lib/core/layout/date.field.d.ts +1 -0
  654. package/lib/core/layout/date.field.d.ts.map +1 -0
  655. package/lib/core/layout/expression.field.d.ts +1 -0
  656. package/lib/core/layout/expression.field.d.ts.map +1 -0
  657. package/lib/core/layout/file.field.d.ts +1 -0
  658. package/lib/core/layout/file.field.d.ts.map +1 -0
  659. package/lib/core/layout/html.field.d.ts +1 -0
  660. package/lib/core/layout/html.field.d.ts.map +1 -0
  661. package/lib/core/layout/input.base.d.ts +1 -0
  662. package/lib/core/layout/input.base.d.ts.map +1 -0
  663. package/lib/core/layout/input.field.d.ts +1 -0
  664. package/lib/core/layout/input.field.d.ts.map +1 -0
  665. package/lib/core/layout/layout.component.d.ts +1 -0
  666. package/lib/core/layout/layout.component.d.ts.map +1 -0
  667. package/lib/core/layout/numeric.field.d.ts +1 -0
  668. package/lib/core/layout/numeric.field.d.ts.map +1 -0
  669. package/lib/core/layout/select.field.d.ts +1 -0
  670. package/lib/core/layout/select.field.d.ts.map +1 -0
  671. package/lib/core/layout/switch.field.d.ts +1 -0
  672. package/lib/core/layout/switch.field.d.ts.map +1 -0
  673. package/lib/core/layout/textarea.field.d.ts +1 -0
  674. package/lib/core/layout/textarea.field.d.ts.map +1 -0
  675. package/lib/core/layout/timespan.field.d.ts +1 -0
  676. package/lib/core/layout/timespan.field.d.ts.map +1 -0
  677. package/lib/core/lottie-animation.d.ts +1 -0
  678. package/lib/core/lottie-animation.d.ts.map +1 -0
  679. package/lib/core/mailbox.service.d.ts +1 -0
  680. package/lib/core/mailbox.service.d.ts.map +1 -0
  681. package/lib/core/models.d.ts +6 -4
  682. package/lib/core/models.d.ts.map +1 -0
  683. package/lib/core/none.component.d.ts +1 -0
  684. package/lib/core/none.component.d.ts.map +1 -0
  685. package/lib/core/pipes/action.pipe.d.ts +1 -0
  686. package/lib/core/pipes/action.pipe.d.ts.map +1 -0
  687. package/lib/core/pipes/calendar.pipe.d.ts +1 -0
  688. package/lib/core/pipes/calendar.pipe.d.ts.map +1 -0
  689. package/lib/core/pipes/date-format.pipe.d.ts +1 -0
  690. package/lib/core/pipes/date-format.pipe.d.ts.map +1 -0
  691. package/lib/core/pipes/daterange.pipe.d.ts +1 -0
  692. package/lib/core/pipes/daterange.pipe.d.ts.map +1 -0
  693. package/lib/core/pipes/difference.pipe.d.ts +1 -0
  694. package/lib/core/pipes/difference.pipe.d.ts.map +1 -0
  695. package/lib/core/pipes/duration-format.pipe.d.ts +1 -0
  696. package/lib/core/pipes/duration-format.pipe.d.ts.map +1 -0
  697. package/lib/core/pipes/duration.pipe.d.ts +1 -0
  698. package/lib/core/pipes/duration.pipe.d.ts.map +1 -0
  699. package/lib/core/pipes/form.pipe.d.ts +1 -0
  700. package/lib/core/pipes/form.pipe.d.ts.map +1 -0
  701. package/lib/core/pipes/join.pipe.d.ts +1 -0
  702. package/lib/core/pipes/join.pipe.d.ts.map +1 -0
  703. package/lib/core/pipes/role.pipe.d.ts +1 -0
  704. package/lib/core/pipes/role.pipe.d.ts.map +1 -0
  705. package/lib/core/pipes/sanitize-html.pipe.d.ts.map +1 -0
  706. package/lib/core/pipes/sort.pipe.d.ts +1 -0
  707. package/lib/core/pipes/sort.pipe.d.ts.map +1 -0
  708. package/lib/core/pipes/state.pipe.d.ts +1 -0
  709. package/lib/core/pipes/state.pipe.d.ts.map +1 -0
  710. package/lib/core/pipes/time-ago.pipe.d.ts +1 -0
  711. package/lib/core/pipes/time-ago.pipe.d.ts.map +1 -0
  712. package/lib/core/pipes/translate.pipe.d.ts.map +1 -0
  713. package/lib/core/pipes/type-value.pipe.d.ts +1 -0
  714. package/lib/core/pipes/type-value.pipe.d.ts.map +1 -0
  715. package/lib/core/pipes/user-name.pipe.d.ts +1 -0
  716. package/lib/core/pipes/user-name.pipe.d.ts.map +1 -0
  717. package/lib/core/popup/popup-ref.d.ts +1 -0
  718. package/lib/core/popup/popup-ref.d.ts.map +1 -0
  719. package/lib/core/popup/popup.component.d.ts +1 -0
  720. package/lib/core/popup/popup.component.d.ts.map +1 -0
  721. package/lib/core/popup/popup.service.d.ts +1 -0
  722. package/lib/core/popup/popup.service.d.ts.map +1 -0
  723. package/lib/core/popup/tooltip.directive.d.ts +1 -0
  724. package/lib/core/popup/tooltip.directive.d.ts.map +1 -0
  725. package/lib/core/prompt/ask/ask.dialog.d.ts +1 -0
  726. package/lib/core/prompt/ask/ask.dialog.d.ts.map +1 -0
  727. package/lib/core/prompt/mask/mask.component.d.ts +1 -0
  728. package/lib/core/prompt/mask/mask.component.d.ts.map +1 -0
  729. package/lib/core/prompt.service.d.ts +1 -0
  730. package/lib/core/prompt.service.d.ts.map +1 -0
  731. package/lib/core/router.d.ts +1 -0
  732. package/lib/core/router.d.ts.map +1 -0
  733. package/lib/core/save-changes.dialog.d.ts +1 -0
  734. package/lib/core/save-changes.dialog.d.ts.map +1 -0
  735. package/lib/core/session.service.d.ts +1 -0
  736. package/lib/core/session.service.d.ts.map +1 -0
  737. package/lib/core/slots/pane-ref.d.ts +1 -0
  738. package/lib/core/slots/pane-ref.d.ts.map +1 -0
  739. package/lib/core/slots/router.directive.d.ts +1 -0
  740. package/lib/core/slots/router.directive.d.ts.map +1 -0
  741. package/lib/core/slots/router.service.d.ts +1 -0
  742. package/lib/core/slots/router.service.d.ts.map +1 -0
  743. package/lib/core/slots/slots.component.d.ts +1 -0
  744. package/lib/core/slots/slots.component.d.ts.map +1 -0
  745. package/lib/core/tagging/documents.component.d.ts +1 -0
  746. package/lib/core/tagging/documents.component.d.ts.map +1 -0
  747. package/lib/core/tagging/edit-input.component.d.ts +1 -0
  748. package/lib/core/tagging/edit-input.component.d.ts.map +1 -0
  749. package/lib/core/tagging/emoji.component.d.ts +1 -0
  750. package/lib/core/tagging/emoji.component.d.ts.map +1 -0
  751. package/lib/core/tagging/tagging-item.directive.d.ts +1 -0
  752. package/lib/core/tagging/tagging-item.directive.d.ts.map +1 -0
  753. package/lib/core/tagging/tagging.component-base.d.ts +1 -0
  754. package/lib/core/tagging/tagging.component-base.d.ts.map +1 -0
  755. package/lib/core/tagging/tagging.directive.d.ts +1 -0
  756. package/lib/core/tagging/tagging.directive.d.ts.map +1 -0
  757. package/lib/core/tagging/tagging.pipe.d.ts +1 -0
  758. package/lib/core/tagging/tagging.pipe.d.ts.map +1 -0
  759. package/lib/core/tagging/users.component.d.ts +1 -0
  760. package/lib/core/tagging/users.component.d.ts.map +1 -0
  761. package/lib/core/translate.service.d.ts +1 -0
  762. package/lib/core/translate.service.d.ts.map +1 -0
  763. package/lib/core/translations.d.ts +4 -0
  764. package/lib/core/translations.d.ts.map +1 -0
  765. package/lib/core/window-title.service.d.ts +1 -0
  766. package/lib/core/window-title.service.d.ts.map +1 -0
  767. package/lib/cube/accum/accum.component.d.ts +1 -0
  768. package/lib/cube/accum/accum.component.d.ts.map +1 -0
  769. package/lib/cube/chart/chart.component.d.ts +1 -0
  770. package/lib/cube/chart/chart.component.d.ts.map +1 -0
  771. package/lib/cube/cube-info.service.d.ts +1 -0
  772. package/lib/cube/cube-info.service.d.ts.map +1 -0
  773. package/lib/cube/cube-menu.component.d.ts +1 -0
  774. package/lib/cube/cube-menu.component.d.ts.map +1 -0
  775. package/lib/cube/cube-view.component.d.ts +1 -0
  776. package/lib/cube/cube-view.component.d.ts.map +1 -0
  777. package/lib/cube/cube.service.d.ts +1 -0
  778. package/lib/cube/cube.service.d.ts.map +1 -0
  779. package/lib/cube/declarations.d.ts +1 -0
  780. package/lib/cube/declarations.d.ts.map +1 -0
  781. package/lib/cube/explore/document-item.component.d.ts +1 -0
  782. package/lib/cube/explore/document-item.component.d.ts.map +1 -0
  783. package/lib/cube/explore/explore-item.component.d.ts +1 -0
  784. package/lib/cube/explore/explore-item.component.d.ts.map +1 -0
  785. package/lib/cube/explore/explore-items.component.d.ts +1 -0
  786. package/lib/cube/explore/explore-items.component.d.ts.map +1 -0
  787. package/lib/cube/explore/explore.pane.component.d.ts +1 -0
  788. package/lib/cube/explore/explore.pane.component.d.ts.map +1 -0
  789. package/lib/cube/explore/item-resolver.service.d.ts +1 -0
  790. package/lib/cube/explore/item-resolver.service.d.ts.map +1 -0
  791. package/lib/cube/explore/item.pane.component.d.ts +1 -0
  792. package/lib/cube/explore/item.pane.component.d.ts.map +1 -0
  793. package/lib/cube/filter/filter-tags.component.exp.d.ts +1 -0
  794. package/lib/cube/filter/filter-tags.component.exp.d.ts.map +1 -0
  795. package/lib/cube/filter/filter.component.d.ts +1 -0
  796. package/lib/cube/filter/filter.component.d.ts.map +1 -0
  797. package/lib/cube/grid/grid.component.d.ts +1 -0
  798. package/lib/cube/grid/grid.component.d.ts.map +1 -0
  799. package/lib/cube/grid/spreadsheet.component.d.ts +1 -0
  800. package/lib/cube/grid/spreadsheet.component.d.ts.map +1 -0
  801. package/lib/cube/matrix/matrix.base.d.ts +1 -0
  802. package/lib/cube/matrix/matrix.base.d.ts.map +1 -0
  803. package/lib/cube/matrix/matrix.mobile.component.d.ts +1 -0
  804. package/lib/cube/matrix/matrix.mobile.component.d.ts.map +1 -0
  805. package/lib/cube/matrix/matrix.pane.component.d.ts +1 -0
  806. package/lib/cube/matrix/matrix.pane.component.d.ts.map +1 -0
  807. package/lib/cube/matrix/popup.component.d.ts +1 -0
  808. package/lib/cube/matrix/popup.component.d.ts.map +1 -0
  809. package/lib/cube/matrix/table.component.d.ts +1 -0
  810. package/lib/cube/matrix/table.component.d.ts.map +1 -0
  811. package/lib/cube/parallel/item.d.ts +1 -0
  812. package/lib/cube/parallel/item.d.ts.map +1 -0
  813. package/lib/cube/parallel/parallel.component.d.ts +1 -0
  814. package/lib/cube/parallel/parallel.component.d.ts.map +1 -0
  815. package/lib/cube/pivot/pivot.component.d.ts +1 -0
  816. package/lib/cube/pivot/pivot.component.d.ts.map +1 -0
  817. package/lib/cube/sum/sum.component.d.ts +1 -0
  818. package/lib/cube/sum/sum.component.d.ts.map +1 -0
  819. package/lib/cube/view-base.d.ts +1 -0
  820. package/lib/cube/view-base.d.ts.map +1 -0
  821. package/lib/cube/view.mobile.component.d.ts +1 -0
  822. package/lib/cube/view.mobile.component.d.ts.map +1 -0
  823. package/lib/cube/view.pane.component.d.ts +1 -0
  824. package/lib/cube/view.pane.component.d.ts.map +1 -0
  825. package/lib/dashboard/actions/actions.widget.d.ts +1 -0
  826. package/lib/dashboard/actions/actions.widget.d.ts.map +1 -0
  827. package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -0
  828. package/lib/dashboard/cube/accum-cube.widget.d.ts.map +1 -0
  829. package/lib/dashboard/cube/compare.widget.d.ts +1 -0
  830. package/lib/dashboard/cube/compare.widget.d.ts.map +1 -0
  831. package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -0
  832. package/lib/dashboard/cube/cube-analysis.base.d.ts.map +1 -0
  833. package/lib/dashboard/cube/cube-analysis.widget.d.ts +1 -0
  834. package/lib/dashboard/cube/cube-analysis.widget.d.ts.map +1 -0
  835. package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -0
  836. package/lib/dashboard/cube/cube-chart.widget.d.ts.map +1 -0
  837. package/lib/dashboard/cube/documents.widget.d.ts +1 -0
  838. package/lib/dashboard/cube/documents.widget.d.ts.map +1 -0
  839. package/lib/dashboard/cube/filter/filter.component.d.ts +1 -0
  840. package/lib/dashboard/cube/filter/filter.component.d.ts.map +1 -0
  841. package/lib/dashboard/dashboard.component.d.ts +1 -0
  842. package/lib/dashboard/dashboard.component.d.ts.map +1 -0
  843. package/lib/dashboard/dashboard.pane.component.d.ts +1 -0
  844. package/lib/dashboard/dashboard.pane.component.d.ts.map +1 -0
  845. package/lib/dashboard/recents/recents.widget.d.ts +1 -0
  846. package/lib/dashboard/recents/recents.widget.d.ts.map +1 -0
  847. package/lib/dashboard/score/activity.widget.d.ts +1 -0
  848. package/lib/dashboard/score/activity.widget.d.ts.map +1 -0
  849. package/lib/dashboard/score/compare-groups.widget.d.ts +1 -0
  850. package/lib/dashboard/score/compare-groups.widget.d.ts.map +1 -0
  851. package/lib/dashboard/score/peers-performance.widget.d.ts +1 -0
  852. package/lib/dashboard/score/peers-performance.widget.d.ts.map +1 -0
  853. package/lib/dashboard/score/pending-results.widget.d.ts +1 -0
  854. package/lib/dashboard/score/pending-results.widget.d.ts.map +1 -0
  855. package/lib/dashboard/score/personal-score.widget.d.ts +1 -0
  856. package/lib/dashboard/score/personal-score.widget.d.ts.map +1 -0
  857. package/lib/dashboard/widget-item.component.d.ts +1 -0
  858. package/lib/dashboard/widget-item.component.d.ts.map +1 -0
  859. package/lib/dashboard/widget-ref.d.ts +1 -0
  860. package/lib/dashboard/widget-ref.d.ts.map +1 -0
  861. package/lib/desktop.module.d.ts +1 -0
  862. package/lib/desktop.module.d.ts.map +1 -0
  863. package/lib/home/about/about.dialog.d.ts +1 -0
  864. package/lib/home/about/about.dialog.d.ts.map +1 -0
  865. package/lib/home/home-base.component.d.ts +1 -0
  866. package/lib/home/home-base.component.d.ts.map +1 -0
  867. package/lib/home/home.desktop.component.d.ts +1 -0
  868. package/lib/home/home.desktop.component.d.ts.map +1 -0
  869. package/lib/home/home.mobile.component.d.ts +1 -0
  870. package/lib/home/home.mobile.component.d.ts.map +1 -0
  871. package/lib/home/notifications/notifications.component.d.ts +1 -0
  872. package/lib/home/notifications/notifications.component.d.ts.map +1 -0
  873. package/lib/home/options/options.component.d.ts +1 -0
  874. package/lib/home/options/options.component.d.ts.map +1 -0
  875. package/lib/home/outofoffice/outofoffice.component.d.ts +1 -0
  876. package/lib/home/outofoffice/outofoffice.component.d.ts.map +1 -0
  877. package/lib/home/search.service.d.ts +1 -0
  878. package/lib/home/search.service.d.ts.map +1 -0
  879. package/lib/home/sign/sign.component.d.ts +1 -0
  880. package/lib/home/sign/sign.component.d.ts.map +1 -0
  881. package/lib/home/tools.component.d.ts +1 -0
  882. package/lib/home/tools.component.d.ts.map +1 -0
  883. package/lib/impersonate/impersonate.component.d.ts +1 -0
  884. package/lib/impersonate/impersonate.component.d.ts.map +1 -0
  885. package/lib/mobile.module.d.ts +1 -0
  886. package/lib/mobile.module.d.ts.map +1 -0
  887. package/lib/modules/chart.module.d.ts +1 -0
  888. package/lib/modules/chart.module.d.ts.map +1 -0
  889. package/lib/modules/circular-gauge.module.d.ts +1 -0
  890. package/lib/modules/circular-gauge.module.d.ts.map +1 -0
  891. package/lib/modules/date.adapter.d.ts +1 -0
  892. package/lib/modules/date.adapter.d.ts.map +1 -0
  893. package/lib/modules/datepicker.intl.d.ts +1 -0
  894. package/lib/modules/datepicker.intl.d.ts.map +1 -0
  895. package/lib/modules/dayjs.module.d.ts +1 -0
  896. package/lib/modules/dayjs.module.d.ts.map +1 -0
  897. package/lib/modules/diagram.module.d.ts +1 -0
  898. package/lib/modules/diagram.module.d.ts.map +1 -0
  899. package/lib/modules/gantt.module.d.ts +1 -0
  900. package/lib/modules/gantt.module.d.ts.map +1 -0
  901. package/lib/modules/grid.module.d.ts +1 -0
  902. package/lib/modules/grid.module.d.ts.map +1 -0
  903. package/lib/modules/material.module.d.ts +1 -0
  904. package/lib/modules/material.module.d.ts.map +1 -0
  905. package/lib/modules/paginator.intl.d.ts +1 -0
  906. package/lib/modules/paginator.intl.d.ts.map +1 -0
  907. package/lib/modules/pivot.module.d.ts +1 -0
  908. package/lib/modules/pivot.module.d.ts.map +1 -0
  909. package/lib/modules/schedule.module.d.ts +1 -0
  910. package/lib/modules/schedule.module.d.ts.map +1 -0
  911. package/lib/modules/spreadsheet.module.d.ts +1 -0
  912. package/lib/modules/spreadsheet.module.d.ts.map +1 -0
  913. package/lib/modules/stepper.intl.d.ts +1 -0
  914. package/lib/modules/stepper.intl.d.ts.map +1 -0
  915. package/lib/modules/texteditor.module.d.ts +1 -0
  916. package/lib/modules/texteditor.module.d.ts.map +1 -0
  917. package/lib/notifications/filter.component.d.ts +1 -0
  918. package/lib/notifications/filter.component.d.ts.map +1 -0
  919. package/lib/notifications/notifications-table.component.d.ts +1 -0
  920. package/lib/notifications/notifications-table.component.d.ts.map +1 -0
  921. package/lib/notifications/notifications.component-base.d.ts +1 -0
  922. package/lib/notifications/notifications.component-base.d.ts.map +1 -0
  923. package/lib/notifications/notifications.mobile.component.d.ts +1 -0
  924. package/lib/notifications/notifications.mobile.component.d.ts.map +1 -0
  925. package/lib/notifications/notifications.pane.component.d.ts +1 -0
  926. package/lib/notifications/notifications.pane.component.d.ts.map +1 -0
  927. package/lib/notifications/notifications.service.d.ts +1 -0
  928. package/lib/notifications/notifications.service.d.ts.map +1 -0
  929. package/lib/notifications/types/commented.notification.d.ts +1 -0
  930. package/lib/notifications/types/commented.notification.d.ts.map +1 -0
  931. package/lib/notifications/types/cube-anomaly.notification.d.ts +1 -0
  932. package/lib/notifications/types/cube-anomaly.notification.d.ts.map +1 -0
  933. package/lib/notifications/types/escalated.notification.d.ts +1 -0
  934. package/lib/notifications/types/escalated.notification.d.ts.map +1 -0
  935. package/lib/notifications/types/liked.notification.d.ts +1 -0
  936. package/lib/notifications/types/liked.notification.d.ts.map +1 -0
  937. package/lib/notifications/types/long-running-task.notification.d.ts +1 -0
  938. package/lib/notifications/types/long-running-task.notification.d.ts.map +1 -0
  939. package/lib/notifications/types/notification-base.d.ts +1 -0
  940. package/lib/notifications/types/notification-base.d.ts.map +1 -0
  941. package/lib/notifications/types/nudge.notification.d.ts +1 -0
  942. package/lib/notifications/types/nudge.notification.d.ts.map +1 -0
  943. package/lib/notifications/types/state-changed.notification.d.ts +1 -0
  944. package/lib/notifications/types/state-changed.notification.d.ts.map +1 -0
  945. package/lib/notifications/types/tagged.notification.d.ts +1 -0
  946. package/lib/notifications/types/tagged.notification.d.ts.map +1 -0
  947. package/lib/notifications/types/text.notification.d.ts +1 -0
  948. package/lib/notifications/types/text.notification.d.ts.map +1 -0
  949. package/lib/notifications/types/upcoming-event.notification.d.ts +1 -0
  950. package/lib/notifications/types/upcoming-event.notification.d.ts.map +1 -0
  951. package/lib/options/options.component.d.ts +1 -0
  952. package/lib/options/options.component.d.ts.map +1 -0
  953. package/lib/options/options.service.d.ts +1 -0
  954. package/lib/options/options.service.d.ts.map +1 -0
  955. package/lib/reports/arguments-component.d.ts +1 -0
  956. package/lib/reports/arguments-component.d.ts.map +1 -0
  957. package/lib/reports/cube/documents.component.d.ts +1 -0
  958. package/lib/reports/cube/documents.component.d.ts.map +1 -0
  959. package/lib/reports/cube/grid-documents.component.d.ts +1 -0
  960. package/lib/reports/cube/grid-documents.component.d.ts.map +1 -0
  961. package/lib/reports/cube/table-documents.component.d.ts +1 -0
  962. package/lib/reports/cube/table-documents.component.d.ts.map +1 -0
  963. package/lib/reports/cube/usage-args.component.d.ts +1 -0
  964. package/lib/reports/cube/usage-args.component.d.ts.map +1 -0
  965. package/lib/reports/cube/usage-base.d.ts +1 -0
  966. package/lib/reports/cube/usage-base.d.ts.map +1 -0
  967. package/lib/reports/cube/usage-chart.component.d.ts +1 -0
  968. package/lib/reports/cube/usage-chart.component.d.ts.map +1 -0
  969. package/lib/reports/cube/usage-pivot.component.d.ts +1 -0
  970. package/lib/reports/cube/usage-pivot.component.d.ts.map +1 -0
  971. package/lib/reports/cube/usage.component.d.ts +1 -0
  972. package/lib/reports/cube/usage.component.d.ts.map +1 -0
  973. package/lib/reports/report-ref.d.ts +1 -0
  974. package/lib/reports/report-ref.d.ts.map +1 -0
  975. package/lib/reports/report-viewer.component.d.ts +1 -0
  976. package/lib/reports/report-viewer.component.d.ts.map +1 -0
  977. package/lib/reports/report.mobile.component.d.ts +1 -0
  978. package/lib/reports/report.mobile.component.d.ts.map +1 -0
  979. package/lib/reports/report.pane.component.d.ts +1 -0
  980. package/lib/reports/report.pane.component.d.ts.map +1 -0
  981. package/lib/reports/reports-menu.component.d.ts +1 -0
  982. package/lib/reports/reports-menu.component.d.ts.map +1 -0
  983. package/lib/reports/substitution/substitution.component.d.ts +1 -0
  984. package/lib/reports/substitution/substitution.component.d.ts.map +1 -0
  985. package/lib/reports/table/table-view.component.d.ts +1 -0
  986. package/lib/reports/table/table-view.component.d.ts.map +1 -0
  987. package/lib/reports/tasks/tasks.component.d.ts +1 -0
  988. package/lib/reports/tasks/tasks.component.d.ts.map +1 -0
  989. package/lib/routes.desktop.d.ts +1 -0
  990. package/lib/routes.desktop.d.ts.map +1 -0
  991. package/lib/routes.mobile.d.ts +1 -0
  992. package/lib/routes.mobile.d.ts.map +1 -0
  993. package/lib/scheduler/schedule.component.d.ts +1 -0
  994. package/lib/scheduler/schedule.component.d.ts.map +1 -0
  995. package/lib/scheduler/scheduler.mobile.component.d.ts +1 -0
  996. package/lib/scheduler/scheduler.mobile.component.d.ts.map +1 -0
  997. package/lib/scheduler/scheduler.pane.component.d.ts +1 -0
  998. package/lib/scheduler/scheduler.pane.component.d.ts.map +1 -0
  999. package/lib/shared.module.d.ts +1 -0
  1000. package/lib/shared.module.d.ts.map +1 -0
  1001. package/lib/system.module.d.ts +51 -49
  1002. package/lib/system.module.d.ts.map +1 -0
  1003. package/lib/views/cube/chart.component.d.ts +1 -0
  1004. package/lib/views/cube/chart.component.d.ts.map +1 -0
  1005. package/lib/views/cube/cube-base.d.ts +1 -0
  1006. package/lib/views/cube/cube-base.d.ts.map +1 -0
  1007. package/lib/views/cube/explore.component.d.ts +1 -0
  1008. package/lib/views/cube/explore.component.d.ts.map +1 -0
  1009. package/lib/views/cube/matrix.component.d.ts +1 -0
  1010. package/lib/views/cube/matrix.component.d.ts.map +1 -0
  1011. package/lib/views/cube/parallel.component.d.ts +1 -0
  1012. package/lib/views/cube/parallel.component.d.ts.map +1 -0
  1013. package/lib/views/cube/pivot.component.d.ts +1 -0
  1014. package/lib/views/cube/pivot.component.d.ts.map +1 -0
  1015. package/lib/views/cube/sum.component.d.ts +4 -3
  1016. package/lib/views/cube/sum.component.d.ts.map +1 -0
  1017. package/lib/views/cube/view.component.d.ts +1 -0
  1018. package/lib/views/cube/view.component.d.ts.map +1 -0
  1019. package/lib/views/document-view-ref.d.ts +1 -0
  1020. package/lib/views/document-view-ref.d.ts.map +1 -0
  1021. package/lib/views/timeline/timeline.component.exp.d.ts +1 -0
  1022. package/lib/views/timeline/timeline.component.exp.d.ts.map +1 -0
  1023. package/lib/views/view-item.component.d.ts +1 -0
  1024. package/lib/views/view-item.component.d.ts.map +1 -0
  1025. package/lib/views/views.component.d.ts +1 -0
  1026. package/lib/views/views.component.d.ts.map +1 -0
  1027. package/lib/views/views.mobile.component.d.ts +1 -0
  1028. package/lib/views/views.mobile.component.d.ts.map +1 -0
  1029. package/lib/views/views.pane.component.d.ts +1 -0
  1030. package/lib/views/views.pane.component.d.ts.map +1 -0
  1031. package/package.json +1 -1
  1032. package/public-api.d.ts +1 -0
  1033. package/public-api.d.ts.map +1 -0
@@ -36,6 +36,213 @@ import * as i23 from "@angular/material/menu";
36
36
  import * as i24 from "../../core/popup/tooltip.directive";
37
37
  import * as i25 from "../../core/pipes/translate.pipe";
38
38
  import * as i26 from "../utility-ref";
39
+ const _c0 = ["properties"];
40
+ function PatternsComponent_th_11_Template(rf, ctx) { if (rf & 1) {
41
+ i0.ɵɵelementStart(0, "th", 14);
42
+ i0.ɵɵtext(1);
43
+ i0.ɵɵpipe(2, "translate");
44
+ i0.ɵɵelementEnd();
45
+ } if (rf & 2) {
46
+ i0.ɵɵadvance(1);
47
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Title"));
48
+ } }
49
+ function PatternsComponent_td_12_Template(rf, ctx) { if (rf & 1) {
50
+ i0.ɵɵelementStart(0, "td", 15);
51
+ i0.ɵɵtext(1);
52
+ i0.ɵɵelementEnd();
53
+ } if (rf & 2) {
54
+ const element_r10 = ctx.$implicit;
55
+ i0.ɵɵadvance(1);
56
+ i0.ɵɵtextInterpolate1(" ", element_r10.title, " ");
57
+ } }
58
+ function PatternsComponent_ng_container_13_th_1_Template(rf, ctx) { if (rf & 1) {
59
+ i0.ɵɵelementStart(0, "th", 14);
60
+ i0.ɵɵtext(1);
61
+ i0.ɵɵelementEnd();
62
+ } if (rf & 2) {
63
+ const r_r11 = i0.ɵɵnextContext().$implicit;
64
+ i0.ɵɵadvance(1);
65
+ i0.ɵɵtextInterpolate(r_r11.title);
66
+ } }
67
+ function PatternsComponent_ng_container_13_td_2_Template(rf, ctx) { if (rf & 1) {
68
+ const _r17 = i0.ɵɵgetCurrentView();
69
+ i0.ɵɵelementStart(0, "td", 15)(1, "mat-checkbox", 17);
70
+ i0.ɵɵlistener("change", function PatternsComponent_ng_container_13_td_2_Template_mat_checkbox_change_1_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r17); const element_r15 = restoredCtx.$implicit; const r_r11 = i0.ɵɵnextContext().$implicit; const ctx_r16 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r16.toggle(element_r15, r_r11.name, $event)); });
71
+ i0.ɵɵelementEnd()();
72
+ } if (rf & 2) {
73
+ const element_r15 = ctx.$implicit;
74
+ const r_r11 = i0.ɵɵnextContext().$implicit;
75
+ i0.ɵɵadvance(1);
76
+ i0.ɵɵproperty("checked", element_r15.roles && element_r15.roles.indexOf(r_r11.name) > -1);
77
+ } }
78
+ function PatternsComponent_ng_container_13_Template(rf, ctx) { if (rf & 1) {
79
+ i0.ɵɵelementContainerStart(0, 16);
80
+ i0.ɵɵtemplate(1, PatternsComponent_ng_container_13_th_1_Template, 2, 1, "th", 5);
81
+ i0.ɵɵtemplate(2, PatternsComponent_ng_container_13_td_2_Template, 2, 1, "td", 6);
82
+ i0.ɵɵelementContainerEnd();
83
+ } if (rf & 2) {
84
+ const r_r11 = ctx.$implicit;
85
+ i0.ɵɵproperty("matColumnDef", r_r11.name);
86
+ } }
87
+ function PatternsComponent_th_15_Template(rf, ctx) { if (rf & 1) {
88
+ i0.ɵɵelement(0, "th", 18);
89
+ } }
90
+ function PatternsComponent_td_16_Template(rf, ctx) { if (rf & 1) {
91
+ const _r23 = i0.ɵɵgetCurrentView();
92
+ i0.ɵɵelementStart(0, "td", 15)(1, "button", 19)(2, "mat-icon");
93
+ i0.ɵɵtext(3, "more_vert");
94
+ i0.ɵɵelementEnd()();
95
+ i0.ɵɵelementStart(4, "mat-menu", null, 20)(6, "button", 21);
96
+ i0.ɵɵlistener("click", function PatternsComponent_td_16_Template_button_click_6_listener() { const restoredCtx = i0.ɵɵrestoreView(_r23); const element_r20 = restoredCtx.$implicit; const ctx_r22 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r22.edit(element_r20)); });
97
+ i0.ɵɵtext(7);
98
+ i0.ɵɵpipe(8, "translate");
99
+ i0.ɵɵelementEnd();
100
+ i0.ɵɵelement(9, "mat-divider");
101
+ i0.ɵɵelementStart(10, "button", 21);
102
+ i0.ɵɵlistener("click", function PatternsComponent_td_16_Template_button_click_10_listener() { const restoredCtx = i0.ɵɵrestoreView(_r23); const element_r20 = restoredCtx.$implicit; const ctx_r24 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r24.delete(element_r20)); });
103
+ i0.ɵɵtext(11);
104
+ i0.ɵɵpipe(12, "translate");
105
+ i0.ɵɵelementEnd()()();
106
+ } if (rf & 2) {
107
+ const _r21 = i0.ɵɵreference(5);
108
+ i0.ɵɵadvance(1);
109
+ i0.ɵɵproperty("matMenuTriggerFor", _r21);
110
+ i0.ɵɵadvance(6);
111
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 3, "Edit"));
112
+ i0.ɵɵadvance(4);
113
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 5, "Discard"));
114
+ } }
115
+ function PatternsComponent_tr_17_Template(rf, ctx) { if (rf & 1) {
116
+ i0.ɵɵelement(0, "tr", 22);
117
+ } }
118
+ function PatternsComponent_tr_18_Template(rf, ctx) { if (rf & 1) {
119
+ i0.ɵɵelement(0, "tr", 23);
120
+ } }
121
+ function PatternsComponent_mat_paginator_19_Template(rf, ctx) { if (rf & 1) {
122
+ i0.ɵɵelement(0, "mat-paginator", 24);
123
+ } if (rf & 2) {
124
+ const ctx_r7 = i0.ɵɵnextContext();
125
+ i0.ɵɵproperty("pageSize", ctx_r7.PAGE_SIZE);
126
+ } }
127
+ function PatternsComponent_ng_template_20_div_5_ng_container_1_mat_form_field_1_mat_option_4_Template(rf, ctx) { if (rf & 1) {
128
+ i0.ɵɵelementStart(0, "mat-option", 39);
129
+ i0.ɵɵtext(1);
130
+ i0.ɵɵelementEnd();
131
+ } if (rf & 2) {
132
+ const o_r35 = ctx.$implicit;
133
+ i0.ɵɵproperty("value", o_r35.key);
134
+ i0.ɵɵadvance(1);
135
+ i0.ɵɵtextInterpolate(o_r35.value);
136
+ } }
137
+ function PatternsComponent_ng_template_20_div_5_ng_container_1_mat_form_field_1_mat_error_6_Template(rf, ctx) { if (rf & 1) {
138
+ i0.ɵɵelementStart(0, "mat-error");
139
+ i0.ɵɵtext(1);
140
+ i0.ɵɵpipe(2, "translate");
141
+ i0.ɵɵelementEnd();
142
+ } if (rf & 2) {
143
+ i0.ɵɵadvance(1);
144
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "PatternErr"));
145
+ } }
146
+ function PatternsComponent_ng_template_20_div_5_ng_container_1_mat_form_field_1_Template(rf, ctx) { if (rf & 1) {
147
+ i0.ɵɵelementStart(0, "mat-form-field", 36);
148
+ i0.ɵɵelement(1, "input", 37);
149
+ i0.ɵɵelementStart(2, "mat-autocomplete", null, 38);
150
+ i0.ɵɵtemplate(4, PatternsComponent_ng_template_20_div_5_ng_container_1_mat_form_field_1_mat_option_4_Template, 2, 2, "mat-option", 29);
151
+ i0.ɵɵpipe(5, "async");
152
+ i0.ɵɵelementEnd();
153
+ i0.ɵɵtemplate(6, PatternsComponent_ng_template_20_div_5_ng_container_1_mat_form_field_1_mat_error_6_Template, 3, 3, "mat-error", 30);
154
+ i0.ɵɵelementEnd();
155
+ } if (rf & 2) {
156
+ const _r32 = i0.ɵɵreference(3);
157
+ const a_r30 = i0.ɵɵnextContext().$implicit;
158
+ const ctx_r31 = i0.ɵɵnextContext(3);
159
+ i0.ɵɵadvance(1);
160
+ i0.ɵɵproperty("matAutocomplete", _r32)("pattern", ctx_r31.pattern)("formControlName", a_r30.name)("placeholder", a_r30.title);
161
+ i0.ɵɵadvance(3);
162
+ i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(5, 6, ctx_r31.segments[a_r30.name]));
163
+ i0.ɵɵadvance(2);
164
+ i0.ɵɵproperty("ngIf", ctx_r31.axes.controls[a_r30.name].invalid);
165
+ } }
166
+ function PatternsComponent_ng_template_20_div_5_ng_container_1_Template(rf, ctx) { if (rf & 1) {
167
+ i0.ɵɵelementContainerStart(0);
168
+ i0.ɵɵtemplate(1, PatternsComponent_ng_template_20_div_5_ng_container_1_mat_form_field_1_Template, 7, 8, "mat-form-field", 35);
169
+ i0.ɵɵelementContainerEnd();
170
+ } if (rf & 2) {
171
+ const a_r30 = ctx.$implicit;
172
+ const ctx_r29 = i0.ɵɵnextContext(3);
173
+ i0.ɵɵadvance(1);
174
+ i0.ɵɵproperty("ngIf", ctx_r29.include.indexOf(a_r30.name) > -1);
175
+ } }
176
+ function PatternsComponent_ng_template_20_div_5_Template(rf, ctx) { if (rf & 1) {
177
+ i0.ɵɵelementStart(0, "div", 33);
178
+ i0.ɵɵtemplate(1, PatternsComponent_ng_template_20_div_5_ng_container_1_Template, 2, 1, "ng-container", 34);
179
+ i0.ɵɵelementEnd();
180
+ } if (rf & 2) {
181
+ const ctx_r26 = i0.ɵɵnextContext(2);
182
+ i0.ɵɵadvance(1);
183
+ i0.ɵɵproperty("ngForOf", ctx_r26.cube.axes);
184
+ } }
185
+ function PatternsComponent_ng_template_20_mat_option_9_Template(rf, ctx) { if (rf & 1) {
186
+ i0.ɵɵelementStart(0, "mat-option", 39);
187
+ i0.ɵɵtext(1);
188
+ i0.ɵɵelementEnd();
189
+ } if (rf & 2) {
190
+ const r_r37 = ctx.$implicit;
191
+ i0.ɵɵproperty("value", r_r37.name);
192
+ i0.ɵɵadvance(1);
193
+ i0.ɵɵtextInterpolate(r_r37.title);
194
+ } }
195
+ function PatternsComponent_ng_template_20_mat_error_10_Template(rf, ctx) { if (rf & 1) {
196
+ i0.ɵɵelementStart(0, "mat-error");
197
+ i0.ɵɵtext(1);
198
+ i0.ɵɵpipe(2, "translate");
199
+ i0.ɵɵpipe(3, "translate");
200
+ i0.ɵɵelementEnd();
201
+ } if (rf & 2) {
202
+ i0.ɵɵadvance(1);
203
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind2(2, 1, "Required", i0.ɵɵpipeBind1(3, 4, "Roles")));
204
+ } }
205
+ function PatternsComponent_ng_template_20_Template(rf, ctx) { if (rf & 1) {
206
+ i0.ɵɵelementStart(0, "mat-dialog-content")(1, "form", 25)(2, "mat-form-field");
207
+ i0.ɵɵelement(3, "input", 26);
208
+ i0.ɵɵpipe(4, "translate");
209
+ i0.ɵɵelementEnd();
210
+ i0.ɵɵtemplate(5, PatternsComponent_ng_template_20_div_5_Template, 2, 1, "div", 27);
211
+ i0.ɵɵelementStart(6, "mat-form-field")(7, "mat-select", 28);
212
+ i0.ɵɵpipe(8, "translate");
213
+ i0.ɵɵtemplate(9, PatternsComponent_ng_template_20_mat_option_9_Template, 2, 2, "mat-option", 29);
214
+ i0.ɵɵelementEnd();
215
+ i0.ɵɵtemplate(10, PatternsComponent_ng_template_20_mat_error_10_Template, 4, 6, "mat-error", 30);
216
+ i0.ɵɵelementEnd()()();
217
+ i0.ɵɵelementStart(11, "mat-dialog-actions")(12, "button", 31);
218
+ i0.ɵɵtext(13);
219
+ i0.ɵɵpipe(14, "translate");
220
+ i0.ɵɵelementEnd();
221
+ i0.ɵɵelementStart(15, "button", 32);
222
+ i0.ɵɵtext(16);
223
+ i0.ɵɵpipe(17, "translate");
224
+ i0.ɵɵelementEnd()();
225
+ } if (rf & 2) {
226
+ const ctx_r9 = i0.ɵɵnextContext();
227
+ i0.ɵɵadvance(1);
228
+ i0.ɵɵproperty("formGroup", ctx_r9.form);
229
+ i0.ɵɵadvance(2);
230
+ i0.ɵɵproperty("placeholder", i0.ɵɵpipeBind1(4, 10, "Title"));
231
+ i0.ɵɵadvance(2);
232
+ i0.ɵɵproperty("ngIf", ctx_r9.cube);
233
+ i0.ɵɵadvance(2);
234
+ i0.ɵɵproperty("placeholder", i0.ɵɵpipeBind1(8, 12, "Roles"));
235
+ i0.ɵɵadvance(2);
236
+ i0.ɵɵproperty("ngForOf", ctx_r9.roles);
237
+ i0.ɵɵadvance(1);
238
+ i0.ɵɵproperty("ngIf", ctx_r9.form.controls.roles.hasError("required"));
239
+ i0.ɵɵadvance(2);
240
+ i0.ɵɵproperty("mat-dialog-close", ctx_r9.form.value)("disabled", !ctx_r9.form.valid);
241
+ i0.ɵɵadvance(1);
242
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(14, 14, "OK"));
243
+ i0.ɵɵadvance(3);
244
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(17, 16, "Cancel"));
245
+ } }
39
246
  const PAGE_SIZE = 20;
40
247
  let PatternsComponent = class PatternsComponent {
41
248
  constructor(_session, _dir, _fb, _ref, _type, _service, _sb, _dialog) {
@@ -152,28 +359,82 @@ let PatternsComponent = class PatternsComponent {
152
359
  this._destroy.complete();
153
360
  }
154
361
  };
155
- PatternsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.3", ngImport: i0, type: PatternsComponent, deps: [{ token: i1.SessionService }, { token: i2.Directionality }, { token: i3.FormBuilder }, { token: UtilityRef }, { token: i4.DatasourceService }, { token: i5.SystemService }, { token: i6.PromptService }, { token: i7.MatDialog }], target: i0.ɵɵFactoryTarget.Component });
156
- PatternsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.3", type: PatternsComponent, selector: "ng-component", viewQueries: [{ propertyName: "properties", first: true, predicate: ["properties"], descendants: true, static: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }, { propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }], ngImport: i0, template: "<mat-toolbar>\r\n <button mat-button color=\"primary\" (click)=\"save()\" [disabled]=\"!dirty\">{{'SaveChanges'|translate}}</button>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"create()\" [bizdocTooltip]=\"'Add'|translate\" data-guide=\"create\"><mat-icon>add</mat-icon></button>\r\n</mat-toolbar>\r\n<table mat-table [dataSource]=\"dataSource\" matSort>\r\n <ng-container matColumnDef=\"title\" sticky>\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Title'|translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element.title}} </td>\r\n </ng-container>\r\n <ng-container *ngFor=\"let r of roles\" [matColumnDef]=\"r.name\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{r.title}}</th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <mat-checkbox [checked]=\"element.roles && element.roles.indexOf(r.name) > -1\" (change)=\"toggle(element, r.name, $event)\"></mat-checkbox>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"options\">\r\n <th mat-header-cell *matHeaderCellDef></th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <button mat-icon-button [matMenuTriggerFor]=\"options\"><mat-icon>more_vert</mat-icon></button>\r\n <mat-menu #options>\r\n <button mat-menu-item (click)=\"edit(element)\">{{'Edit'|translate}}</button>\r\n <mat-divider></mat-divider>\r\n <button mat-menu-item (click)=\"delete(element)\">{{'Discard'|translate}}</button>\r\n </mat-menu>\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns; sticky: true\"></tr>\r\n <tr mat-row *matRowDef=\"let element; columns: displayedColumns;\"></tr>\r\n</table>\r\n<mat-paginator [pageSize]=\"PAGE_SIZE\" hidePageSize showFirstLastButtons *ngIf=\"paging\"></mat-paginator>\r\n<!-- dialog -->\r\n<ng-template #properties>\r\n <mat-dialog-content>\r\n <form [formGroup]=\"form\" autocomplete=\"off\" fxLayout=\"column\">\r\n <mat-form-field>\r\n <input matInput formControlName=\"title\" [placeholder]=\"'Title'|translate\" required />\r\n </mat-form-field>\r\n <div formGroupName=\"axes\" *ngIf=\"cube\" fxLayout.gt-sm=\"row wrap\" fxLayout=\"column wrap\"\r\n fxLayoutGap=\"5px grid\">\r\n <ng-container *ngFor=\"let a of cube.axes\">\r\n <mat-form-field *ngIf=\"include.indexOf(a.name)>-1\" fxFlex=\"50\">\r\n <input matInput\r\n [matAutocomplete]=\"segment\" [pattern]=\"pattern\"\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title\" />\r\n <mat-autocomplete #segment>\r\n <mat-option *ngFor=\"let o of segments[a.name] | async\" [value]=\"o.key\">{{o.value}}</mat-option>\r\n </mat-autocomplete>\r\n <mat-error *ngIf=\"axes.controls[a.name].invalid\">{{'PatternErr' |translate}}</mat-error>\r\n </mat-form-field>\r\n </ng-container>\r\n </div>\r\n <mat-form-field>\r\n <mat-select formControlName=\"roles\" [placeholder]=\"'Roles'|translate\" multiple required>\r\n <mat-option *ngFor=\"let r of roles\" [value]=\"r.name\">{{r.title}}</mat-option>\r\n </mat-select>\r\n <mat-error *ngIf=\"form.controls.roles.hasError('required')\">{{'Required'|translate:('Roles'|translate)}}</mat-error>\r\n </mat-form-field>\r\n </form>\r\n </mat-dialog-content>\r\n <mat-dialog-actions>\r\n <button mat-button [mat-dialog-close]=\"form.value\" [disabled]=\"!form.valid\">{{'OK'| translate}}</button>\r\n <button mat-button mat-dialog-close>{{'Cancel'| translate}}</button>\r\n </mat-dialog-actions>\r\n</ng-template>\r\n<style scoped>\r\n table {\r\n width: 100%\r\n }\r\n</style>\r\n", styles: ["\n table {\n width: 100%\n }\n"], dependencies: [{ kind: "directive", type: i8.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i3.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i9.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i9.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i9.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "component", type: i10.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i10.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i10.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i10.MatColumnDef, selector: "[matColumnDef]", inputs: ["sticky", "matColumnDef"] }, { kind: "directive", type: i10.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i10.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i10.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i10.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i10.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i10.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i11.MatSort, selector: "[matSort]", inputs: ["matSortDisabled", "matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i11.MatSortHeader, selector: "[mat-sort-header]", inputs: ["disabled", "mat-sort-header", "arrowPosition", "start", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "component", type: i12.MatPaginator, selector: "mat-paginator", inputs: ["disabled"], exportAs: ["matPaginator"] }, { kind: "directive", type: i7.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i7.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: i7.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "component", type: i13.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "component", type: i14.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "component", type: i15.MatAutocomplete, selector: "mat-autocomplete", inputs: ["disableRipple"], exportAs: ["matAutocomplete"] }, { kind: "directive", type: i15.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", exportAs: ["matAutocompleteTrigger"] }, { kind: "component", type: i16.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i17.MatError, selector: "mat-error", inputs: ["id"] }, { kind: "component", type: i17.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "component", type: i18.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i19.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i20.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex"], exportAs: ["matCheckbox"] }, { kind: "directive", type: i21.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i22.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i23.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { kind: "component", type: i23.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i23.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { kind: "directive", type: i24.TooltipDirective, selector: "[bizdocTooltip]", inputs: ["bizdocTooltip", "bizdocTooltipTemplate", "bizdocTooltipContext", "bizdocTooltipPosition", "bizdocTooltipDuration", "bizdocTooltipDisabled"] }, { kind: "pipe", type: i8.AsyncPipe, name: "async" }, { kind: "pipe", type: i25.TranslatePipe, name: "translate" }] });
362
+ PatternsComponent.ɵfac = function PatternsComponent_Factory(t) { return new (t || PatternsComponent)(i0.ɵɵdirectiveInject(i1.SessionService), i0.ɵɵdirectiveInject(i2.Directionality), i0.ɵɵdirectiveInject(i3.FormBuilder), i0.ɵɵdirectiveInject(UtilityRef), i0.ɵɵdirectiveInject(i4.DatasourceService), i0.ɵɵdirectiveInject(i5.SystemService), i0.ɵɵdirectiveInject(i6.PromptService), i0.ɵɵdirectiveInject(i7.MatDialog)); };
363
+ PatternsComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PatternsComponent, selectors: [["ng-component"]], viewQuery: function PatternsComponent_Query(rf, ctx) { if (rf & 1) {
364
+ i0.ɵɵviewQuery(_c0, 7);
365
+ i0.ɵɵviewQuery(MatSort, 5);
366
+ i0.ɵɵviewQuery(MatPaginator, 5);
367
+ } if (rf & 2) {
368
+ let _t;
369
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.properties = _t.first);
370
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sort = _t.first);
371
+ i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.paginator = _t.first);
372
+ } }, decls: 22, vars: 13, consts: [["mat-button", "", "color", "primary", 3, "disabled", "click"], [1, "divider"], ["mat-icon-button", "", "data-guide", "create", 3, "bizdocTooltip", "click"], ["mat-table", "", "matSort", "", 3, "dataSource"], ["matColumnDef", "title", "sticky", ""], ["mat-header-cell", "", "mat-sort-header", "", 4, "matHeaderCellDef"], ["mat-cell", "", 4, "matCellDef"], [3, "matColumnDef", 4, "ngFor", "ngForOf"], ["matColumnDef", "options"], ["mat-header-cell", "", 4, "matHeaderCellDef"], ["mat-header-row", "", 4, "matHeaderRowDef", "matHeaderRowDefSticky"], ["mat-row", "", 4, "matRowDef", "matRowDefColumns"], ["hidePageSize", "", "showFirstLastButtons", "", 3, "pageSize", 4, "ngIf"], ["properties", ""], ["mat-header-cell", "", "mat-sort-header", ""], ["mat-cell", ""], [3, "matColumnDef"], [3, "checked", "change"], ["mat-header-cell", ""], ["mat-icon-button", "", 3, "matMenuTriggerFor"], ["options", ""], ["mat-menu-item", "", 3, "click"], ["mat-header-row", ""], ["mat-row", ""], ["hidePageSize", "", "showFirstLastButtons", "", 3, "pageSize"], ["autocomplete", "off", "fxLayout", "column", 3, "formGroup"], ["matInput", "", "formControlName", "title", "required", "", 3, "placeholder"], ["formGroupName", "axes", "fxLayout.gt-sm", "row wrap", "fxLayout", "column wrap", "fxLayoutGap", "5px grid", 4, "ngIf"], ["formControlName", "roles", "multiple", "", "required", "", 3, "placeholder"], [3, "value", 4, "ngFor", "ngForOf"], [4, "ngIf"], ["mat-button", "", 3, "mat-dialog-close", "disabled"], ["mat-button", "", "mat-dialog-close", ""], ["formGroupName", "axes", "fxLayout.gt-sm", "row wrap", "fxLayout", "column wrap", "fxLayoutGap", "5px grid"], [4, "ngFor", "ngForOf"], ["fxFlex", "50", 4, "ngIf"], ["fxFlex", "50"], ["matInput", "", 3, "matAutocomplete", "pattern", "formControlName", "placeholder"], ["segment", ""], [3, "value"]], template: function PatternsComponent_Template(rf, ctx) { if (rf & 1) {
373
+ i0.ɵɵelementStart(0, "mat-toolbar")(1, "button", 0);
374
+ i0.ɵɵlistener("click", function PatternsComponent_Template_button_click_1_listener() { return ctx.save(); });
375
+ i0.ɵɵtext(2);
376
+ i0.ɵɵpipe(3, "translate");
377
+ i0.ɵɵelementEnd();
378
+ i0.ɵɵelement(4, "span", 1);
379
+ i0.ɵɵelementStart(5, "button", 2);
380
+ i0.ɵɵlistener("click", function PatternsComponent_Template_button_click_5_listener() { return ctx.create(); });
381
+ i0.ɵɵpipe(6, "translate");
382
+ i0.ɵɵelementStart(7, "mat-icon");
383
+ i0.ɵɵtext(8, "add");
384
+ i0.ɵɵelementEnd()()();
385
+ i0.ɵɵelementStart(9, "table", 3);
386
+ i0.ɵɵelementContainerStart(10, 4);
387
+ i0.ɵɵtemplate(11, PatternsComponent_th_11_Template, 3, 3, "th", 5);
388
+ i0.ɵɵtemplate(12, PatternsComponent_td_12_Template, 2, 1, "td", 6);
389
+ i0.ɵɵelementContainerEnd();
390
+ i0.ɵɵtemplate(13, PatternsComponent_ng_container_13_Template, 3, 1, "ng-container", 7);
391
+ i0.ɵɵelementContainerStart(14, 8);
392
+ i0.ɵɵtemplate(15, PatternsComponent_th_15_Template, 1, 0, "th", 9);
393
+ i0.ɵɵtemplate(16, PatternsComponent_td_16_Template, 13, 7, "td", 6);
394
+ i0.ɵɵelementContainerEnd();
395
+ i0.ɵɵtemplate(17, PatternsComponent_tr_17_Template, 1, 0, "tr", 10);
396
+ i0.ɵɵtemplate(18, PatternsComponent_tr_18_Template, 1, 0, "tr", 11);
397
+ i0.ɵɵelementEnd();
398
+ i0.ɵɵtemplate(19, PatternsComponent_mat_paginator_19_Template, 1, 1, "mat-paginator", 12);
399
+ i0.ɵɵtemplate(20, PatternsComponent_ng_template_20_Template, 18, 18, "ng-template", null, 13, i0.ɵɵtemplateRefExtractor);
400
+ } if (rf & 2) {
401
+ i0.ɵɵadvance(1);
402
+ i0.ɵɵproperty("disabled", !ctx.dirty);
403
+ i0.ɵɵadvance(1);
404
+ i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 9, "SaveChanges"));
405
+ i0.ɵɵadvance(3);
406
+ i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(6, 11, "Add"));
407
+ i0.ɵɵadvance(4);
408
+ i0.ɵɵproperty("dataSource", ctx.dataSource);
409
+ i0.ɵɵadvance(4);
410
+ i0.ɵɵproperty("ngForOf", ctx.roles);
411
+ i0.ɵɵadvance(4);
412
+ i0.ɵɵproperty("matHeaderRowDef", ctx.displayedColumns)("matHeaderRowDefSticky", true);
413
+ i0.ɵɵadvance(1);
414
+ i0.ɵɵproperty("matRowDefColumns", ctx.displayedColumns);
415
+ i0.ɵɵadvance(1);
416
+ i0.ɵɵproperty("ngIf", ctx.paging);
417
+ } }, dependencies: [i8.NgForOf, i8.NgIf, i3.ɵNgNoValidate, i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgControlStatusGroup, i3.RequiredValidator, i3.PatternValidator, i3.FormGroupDirective, i3.FormControlName, i3.FormGroupName, i9.DefaultLayoutDirective, i9.DefaultLayoutGapDirective, i9.DefaultFlexDirective, i10.MatTable, i10.MatHeaderCellDef, i10.MatHeaderRowDef, i10.MatColumnDef, i10.MatCellDef, i10.MatRowDef, i10.MatHeaderCell, i10.MatCell, i10.MatHeaderRow, i10.MatRow, i11.MatSort, i11.MatSortHeader, i12.MatPaginator, i7.MatDialogClose, i7.MatDialogContent, i7.MatDialogActions, i13.MatDivider, i14.MatToolbar, i15.MatAutocomplete, i15.MatAutocompleteTrigger, i16.MatOption, i17.MatError, i17.MatFormField, i18.MatSelect, i19.MatButton, i20.MatCheckbox, i21.MatInput, i22.MatIcon, i23.MatMenu, i23.MatMenuItem, i23.MatMenuTrigger, i24.TooltipDirective, i8.AsyncPipe, i25.TranslatePipe], styles: ["table[_ngcontent-%COMP%] {\n width: 100%\n }"] });
157
418
  PatternsComponent = __decorate([
158
419
  BizDoc({
159
420
  selector: 'bizdoc-patterns'
160
421
  })
161
422
  ], PatternsComponent);
162
423
  export { PatternsComponent };
163
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.3", ngImport: i0, type: PatternsComponent, decorators: [{
164
- type: Component,
165
- args: [{ template: "<mat-toolbar>\r\n <button mat-button color=\"primary\" (click)=\"save()\" [disabled]=\"!dirty\">{{'SaveChanges'|translate}}</button>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"create()\" [bizdocTooltip]=\"'Add'|translate\" data-guide=\"create\"><mat-icon>add</mat-icon></button>\r\n</mat-toolbar>\r\n<table mat-table [dataSource]=\"dataSource\" matSort>\r\n <ng-container matColumnDef=\"title\" sticky>\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Title'|translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element.title}} </td>\r\n </ng-container>\r\n <ng-container *ngFor=\"let r of roles\" [matColumnDef]=\"r.name\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{r.title}}</th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <mat-checkbox [checked]=\"element.roles && element.roles.indexOf(r.name) > -1\" (change)=\"toggle(element, r.name, $event)\"></mat-checkbox>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"options\">\r\n <th mat-header-cell *matHeaderCellDef></th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <button mat-icon-button [matMenuTriggerFor]=\"options\"><mat-icon>more_vert</mat-icon></button>\r\n <mat-menu #options>\r\n <button mat-menu-item (click)=\"edit(element)\">{{'Edit'|translate}}</button>\r\n <mat-divider></mat-divider>\r\n <button mat-menu-item (click)=\"delete(element)\">{{'Discard'|translate}}</button>\r\n </mat-menu>\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns; sticky: true\"></tr>\r\n <tr mat-row *matRowDef=\"let element; columns: displayedColumns;\"></tr>\r\n</table>\r\n<mat-paginator [pageSize]=\"PAGE_SIZE\" hidePageSize showFirstLastButtons *ngIf=\"paging\"></mat-paginator>\r\n<!-- dialog -->\r\n<ng-template #properties>\r\n <mat-dialog-content>\r\n <form [formGroup]=\"form\" autocomplete=\"off\" fxLayout=\"column\">\r\n <mat-form-field>\r\n <input matInput formControlName=\"title\" [placeholder]=\"'Title'|translate\" required />\r\n </mat-form-field>\r\n <div formGroupName=\"axes\" *ngIf=\"cube\" fxLayout.gt-sm=\"row wrap\" fxLayout=\"column wrap\"\r\n fxLayoutGap=\"5px grid\">\r\n <ng-container *ngFor=\"let a of cube.axes\">\r\n <mat-form-field *ngIf=\"include.indexOf(a.name)>-1\" fxFlex=\"50\">\r\n <input matInput\r\n [matAutocomplete]=\"segment\" [pattern]=\"pattern\"\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title\" />\r\n <mat-autocomplete #segment>\r\n <mat-option *ngFor=\"let o of segments[a.name] | async\" [value]=\"o.key\">{{o.value}}</mat-option>\r\n </mat-autocomplete>\r\n <mat-error *ngIf=\"axes.controls[a.name].invalid\">{{'PatternErr' |translate}}</mat-error>\r\n </mat-form-field>\r\n </ng-container>\r\n </div>\r\n <mat-form-field>\r\n <mat-select formControlName=\"roles\" [placeholder]=\"'Roles'|translate\" multiple required>\r\n <mat-option *ngFor=\"let r of roles\" [value]=\"r.name\">{{r.title}}</mat-option>\r\n </mat-select>\r\n <mat-error *ngIf=\"form.controls.roles.hasError('required')\">{{'Required'|translate:('Roles'|translate)}}</mat-error>\r\n </mat-form-field>\r\n </form>\r\n </mat-dialog-content>\r\n <mat-dialog-actions>\r\n <button mat-button [mat-dialog-close]=\"form.value\" [disabled]=\"!form.valid\">{{'OK'| translate}}</button>\r\n <button mat-button mat-dialog-close>{{'Cancel'| translate}}</button>\r\n </mat-dialog-actions>\r\n</ng-template>\r\n<style scoped>\r\n table {\r\n width: 100%\r\n }\r\n</style>\r\n" }]
166
- }], ctorParameters: function () { return [{ type: i1.SessionService }, { type: i2.Directionality }, { type: i3.FormBuilder }, { type: i26.UtilityRef, decorators: [{
167
- type: Inject,
168
- args: [UtilityRef]
169
- }] }, { type: i4.DatasourceService }, { type: i5.SystemService }, { type: i6.PromptService }, { type: i7.MatDialog }]; }, propDecorators: { properties: [{
170
- type: ViewChild,
171
- args: ['properties', { static: true }]
172
- }], sort: [{
173
- type: ViewChild,
174
- args: [MatSort]
175
- }], paginator: [{
176
- type: ViewChild,
177
- args: [MatPaginator]
178
- }] } });
179
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF0dGVybnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9wYXR0ZXJucy9wYXR0ZXJucy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL3BhdHRlcm5zL3BhdHRlcm5zLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sRUFBYSxTQUFTLEVBQWUsTUFBTSxlQUFlLENBQUM7QUFFN0YsT0FBTyxFQUFlLFVBQVUsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxPQUFPLEVBQWMsTUFBTSxNQUFNLENBQUM7QUFDM0MsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTNDLE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUcvQyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHNUMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFJN0QsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDN0QsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUczRCxNQUFNLFNBQVMsR0FBRyxFQUFFLENBQUM7SUFRUixpQkFBaUIsU0FBakIsaUJBQWlCO0lBcUI1QixZQUFvQixRQUF3QixFQUNsQyxJQUFvQixFQUNwQixHQUFnQixFQUNJLElBQTZELEVBQ2pGLEtBQXdCLEVBQ3hCLFFBQXVCLEVBQ3ZCLEdBQWtCLEVBQ2xCLE9BQWtCO1FBUFIsYUFB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Q0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUNELElBQUk7UUFDRixJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDckQsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7WUFDbkIsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsY0FBYyxDQUFDLENBQUM7UUFDakMsQ0FBQyxFQUFFLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztJQUM3QixDQUFDO0lBQ0QsV0FBVztRQUNULElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUM7UUFDckIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUMzQixDQUFDO0NBQ0YsQ0FBQTs4R0ExSFksaUJBQWlCLHlHQXdCbEIsVUFBVTtrR0F4QlQsaUJBQWlCLG1NQVFqQixPQUFPLDRFQUNQLFlBQVksZ0RDdEN6Qiw4ckhBc0VBO0FEekNhLGlCQUFpQjtJQUg3QixNQUFNLENBQUM7UUFDTixRQUFRLEVBQUUsaUJBQWlCO0tBQzVCLENBQUM7R0FDVyxpQkFBaUIsQ0EwSDdCO1NBMUhZLGlCQUFpQjsyRkFBakIsaUJBQWlCO2tCQU43QixTQUFTOzs7MEJBOEJMLE1BQU07MkJBQUMsVUFBVTs0SkFqQnVCLFVBQVU7c0JBQXBELFNBQVM7dUJBQUMsWUFBWSxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFDckIsSUFBSTtzQkFBdkIsU0FBUzt1QkFBQyxPQUFPO2dCQUNPLFNBQVM7c0JBQWpDLFNBQVM7dUJBQUMsWUFBWSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0LCBJbmplY3QsIE9uRGVzdHJveSwgVmlld0NoaWxkLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBIdHRwQ2xpZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uL2h0dHAnO1xyXG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgVmFsaWRhdG9ycyB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgU3ViamVjdCwgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xyXG5pbXBvcnQgeyB0YWtlVW50aWwgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XHJcbmltcG9ydCB7IEN1YmUsIEF4aXNWYWx1ZSB9IGZyb20gJy4uLy4uL2NvcmUvbW9kZWxzJztcclxuaW1wb3J0IHsgQml6RG9jIH0gZnJvbSAnLi4vLi4vY29yZS9kZWNvcmF0b3JzJztcclxuaW1wb3J0IHsgVXRpbGl0eUNvbXBvbmVudCB9IGZyb20gJy4uLy4uL2NvcmUvYmFzZSc7XHJcbmltcG9ydCB7IFNlc3Npb25TZXJ2aWNlIH0gZnJvbSAnLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBVdGlsaXR5UmVmIH0gZnJvbSBcIi4uL3V0aWxpdHktcmVmXCI7XHJcbmltcG9ydCB7IFByb21wdFNlcnZpY2UgfSBmcm9tICcuLi8uLi9jb3JlL3Byb21wdC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRGlyZWN0aW9uYWxpdHkgfSBmcm9tICdAYW5ndWxhci9jZGsvYmlkaSc7XHJcbmltcG9ydCB7IE1hdFRhYmxlRGF0YVNvdXJjZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3RhYmxlJztcclxuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcclxuaW1wb3J0IHsgTWF0Q2hlY2tib3hDaGFuZ2UgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jaGVja2JveCc7XHJcbmltcG9ydCB7IERhdGFzb3VyY2VTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vY29yZS9kYXRhc291cmNlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBBWElTX1ZBTFVFX1BBVFRFUk4gfSBmcm9tICcuLi8uLi9jdWJlL2N1YmUuc2VydmljZSc7XHJcbmltcG9ydCB7IE1hdFNvcnQgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zb3J0JztcclxuaW1wb3J0IHsgTWF0UGFnaW5hdG9yIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvcGFnaW5hdG9yJztcclxuaW1wb3J0IHsgU3lzdGVtU2VydmljZSB9IGZyb20gJy4uL3N5c3RlbS5zZXJ2aWNlJztcclxuXHJcbmNvbnN0IFBBR0VfU0laRSA9IDIwO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgdGVtcGxhdGVVcmw6ICcuL3BhdHRlcm5zLmNvbXBvbmVudC5odG1sJ1xyXG59KVxyXG5AQml6RG9jKHtcclxuICBzZWxlY3RvcjogJ2JpemRvYy1wYXR0ZXJucydcclxufSlcclxuZXhwb3J0IGNsYXNzIFBhdHRlcm5zQ29tcG9uZW50IGltcGxlbWVudHMgVXRpbGl0eUNvbXBvbmVudDxib29sZWFuLCBhbnk+LCBPbkluaXQsIE9uRGVzdHJveSB7XHJcbiAgcmVhZG9ubHkgUEFHRV9TSVpFID0gUEFHRV9TSVpFO1xyXG4gIHJlYWRvbmx5IHBhdHRlcm4gPSBBWElTX1ZBTFVFX1BBVFRFUk47XHJcbiAgZGF0YVNvdXJjZTogTWF0VGFibGVEYXRhU291cmNlPFBhdHRlcm4+O1xyXG4gIGRpcnR5ID0gZmFsc2U7XHJcbiAgcmVhZG9ubHkgc2VnbWVudHM6IHsgW2tleTogc3RyaW5nXTogT2JzZXJ2YWJsZTxTb3VyY2VbXT4gfSA9IHt9O1xyXG4gIHJvbGVzOiBSb2xlW10gPSBbXTtcclxuICBAVmlld0NoaWxkKCdwcm9wZXJ0aWVzJywgeyBzdGF0aWM6IHRydWUgfSkgcHJvcGVydGllczogVGVtcGxhdGVSZWY8YW55PjtcclxuICBAVmlld0NoaWxkKE1hdFNvcnQpIHNvcnQ6IE1hdFNvcnQ7XHJcbiAgQFZpZXdDaGlsZChNYXRQYWdpbmF0b3IpIHBhZ2luYXRvcjogTWF0UGFnaW5hdG9yO1xyXG4gIGluY2x1ZGU6IHN0cmluZ1tdO1xyXG4gIGN1YmU6IEN1YmU7XHJcbiAgcmVhZG9ubHkgZGlzcGxheWVkQ29sdW1ucyA9IFsndGl0bGUnXTtcclxuICByZWFkb25seSBheGVzID0gdGhpcy5fZmIuZ3JvdXAoe30pO1xyXG4gIHJlYWRvbmx5IGZvcm0gPSB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICBheGVzOiB0aGlzLmF4ZXMsXHJcbiAgICB0aXRsZTogdGhpcy5fZmIuY29udHJvbChudWxsLCBWYWxpZGF0b3JzLnJlcXVpcmVkKSxcclxuICAgIHJvbGVzOiB0aGlzLl9mYi5jb250cm9sKFtdLCBWYWxpZGF0b3JzLnJlcXVpcmVkKVxyXG4gIH0pO1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG4gIHBhZ2luZzogYm9vbGVhbjtcclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9zZXNzaW9uOiBTZXNzaW9uU2VydmljZSxcclxuICAgIHByaXZhdGUgX2RpcjogRGlyZWN0aW9uYWxpdHksXHJcbiAgICBwcml2YXRlIF9mYjogRm9ybUJ1aWxkZXIsXHJcbiAgICBASW5qZWN0KFV0aWxpdHlSZWYpIHByaXZhdGUgX3JlZjogVXRpbGl0eVJlZjxib29sZWFuLCBQYXR0ZXJuW10sIFBhdHRlcm5bXSwgYW55LCBPcHRpb25zPixcclxuICAgIHByaXZhdGUgX3R5cGU6IERhdGFzb3VyY2VTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfc2VydmljZTogU3lzdGVtU2VydmljZSxcclxuICAgIHByaXZhdGUgX3NiOiBQcm9tcHRTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfZGlhbG9nOiBNYXREaWFsb2cpIHtcclxuICAgIGNvbnN0IHsgY3ViZSwgYXhlcyB9ID0gdGhpcy5fcmVmLm9wdGlvbnM7XHJcbiAgICBjb25zdCBjY3ViZSA9IGN1YmUgPyB0aGlzLl9zZXNzaW9uLnByb2ZpbGUuY3ViZXMuZmluZChjID0+IGMubmFtZSA9PT0gY3ViZSkgOiB0aGlzLl9zZXNzaW9uLnByb2ZpbGUuY3ViZXNbMF07XHJcbiAgICBpZiAoIWNjdWJlKVxyXG4gICAgICB0aHJvdyAnY3ViZSBub3QgZm91bmQuJztcclxuICAgIHRoaXMuY3ViZSA9IGNjdWJlO1xyXG4gICAgdGhpcy5pbmNsdWRlID0gYXhlcyB8fCBjY3ViZS5heGVzLmZpbHRlcihhID0+ICFhLmhpZGRlbiAmJiBhLmNvbWJpbmF0aW9uKS5tYXAoYSA9PiBhLm5hbWUpO1xyXG4gICAgdGhpcy5jdWJlLmF4ZXMuZm9yRWFjaChhID0+IHtcclxuICAgICAgdGhpcy5heGVzLmFkZENvbnRyb2woYS5uYW1lLCB0aGlzLl9mYi5jb250cm9sKG51bGwpKTtcclxuICAgICAgdGhpcy5zZWdtZW50c1thLm5hbWVdID0gdGhpcy5fdHlwZS5hbGwoYS5kYXRhVHlwZSk7XHJcbiAgICB9KTtcclxuICB9XHJcbiAgbmdPbkluaXQoKSB7XHJcbiAgICB0aGlzLmZvcm0udmFsdWVDaGFuZ2VzLnBpcGUodGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kpKS5zdWJzY3JpYmUoKCkgPT4gdGhpcy5kaXJ0eSA9IHRydWUpO1xyXG4gICAgdGhpcy5fc2VydmljZS5yb2xlcygpLnN1YnNjcmliZShyID0+IHtcclxuICAgICAgdGhpcy5fcmVmLnBvcHVsYXRlKCkuc3Vic2NyaWJlKHAgPT4ge1xyXG4gICAgICAgIHRoaXMuX2NvbHVtbnMocik7XHJcbiAgICAgICAgdGhpcy5fZGF0YXNvdXJjZShwKTtcclxuICAgICAgfSk7XHJcbiAgICB9KTtcclxuICB9XHJcbiAgcHJpdmF0ZSBfZGF0YXNvdXJjZShkYXRhOiBQYXR0ZXJuW10pIHtcclxuICAgIC8vIHJvbGVzIHNvcnRpbmdcclxuICAgIGRhdGEuZm9yRWFjaChwID0+IHAucm9sZXMgJiYgcC5yb2xlcy5mb3JFYWNoKHIgPT4gcFtyXSA9IHRydWUpKTtcclxuICAgIHRoaXMuZGF0YVNvdXJjZSA9IG5ldyBNYXRUYWJsZURhdGFTb3VyY2UoZGF0YSB8fCBbXSk7XHJcbiAgICB0aGlzLmRhdGFTb3VyY2Uuc29ydCA9IHRoaXMuc29ydDtcclxuICAgIHRoaXMucGFnaW5nID0gZGF0YS5sZW5ndGggPiBQQUdFX1NJWkU7XHJcbiAgICB0aGlzLmRhdGFTb3VyY2UucGFnaW5hdG9yID0gdGhpcy5wYWdpbmF0b3I7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIF9jb2x1bW5zKHJvbGVzOiBSb2xlW10pIHtcclxuICAgIHRoaXMucm9sZXMgPSByb2xlcztcclxuICAgIHJvbGVzLmZvckVhY2goZSA9PiB0aGlzLmRpc3BsYXllZENvbHVtbnMucHVzaChlLm5hbWUpKTtcclxuICAgIHRoaXMuZGlzcGxheWVkQ29sdW1ucy5wdXNoKCdvcHRpb25zJyk7XHJcbiAgfVxyXG5cclxuICB0b2dnbGUocGF0dGVybjogUGF0dGVybiwgcm9sZTogc3RyaW5nLCBldnQ6IE1hdENoZWNrYm94Q2hhbmdlKSB7XHJcbiAgICBpZiAoIXBhdHRlcm4ucm9sZXMpIHBhdHRlcm4ucm9sZXMgPSBbXTtcclxuICAgIGlmIChldnQuY2hlY2tlZCkge1xyXG4gICAgICBwYXR0ZXJuLnJvbGVzLnB1c2gocm9sZSk7XHJcbiAgICAgIHBhdHRlcm5bcm9sZV0gPSB0cnVlO1xyXG4gICAgfVxyXG4gICAgZWxzZSB7XHJcbiAgICAgIHBhdHRlcm4ucm9sZXMucmVtb3ZlKHJvbGUpO1xyXG4gICAgICBwYXR0ZXJuW3JvbGVdID0gZmFsc2U7XHJcbiAgICB9XHJcbiAgICB0aGlzLmRpcnR5ID0gdHJ1ZTtcclxuICB9XHJcbiAgY3JlYXRlKCkge1xyXG4gICAgdGhpcy5mb3JtLnJlc2V0KHsgYXhlczoge30sIHJvbGVzOiBbXSB9LCB7IGVtaXRFdmVudDogZmFsc2UgfSk7XHJcbiAgICB0aGlzLl9kaWFsb2cub3Blbih0aGlzLnByb3BlcnRpZXMsIHtcclxuICAgICAgZGlyZWN0aW9uOiB0aGlzLl9kaXIudmFsdWUsXHJcbiAgICAgIG1pbldpZHRoOiAnNjZ2dycsXHJcbiAgICAgIGNsb3NlT25OYXZpZ2F0aW9uOiB0cnVlXHJcbiAgICB9KS5hZnRlckNsb3NlZCgpLnN1YnNjcmliZSgocGF0dGVybjogUGF0dGVybikgPT4ge1xyXG4gICAgICBpZiAocGF0dGVybikge1xyXG4gICAgICAgIHBhdHRlcm4ubmFtZSA9IHBhdHRlcm4udGl0bGUubm9ybWFsaXplKCk7XHJcbiAgICAgICAgdGhpcy5fbm9ybWFsaXplKHBhdHRlcm4pO1xyXG4gICAgICAgIHRoaXMuZGF0YVNvdXJjZS5kYXRhLnB1c2gocGF0dGVybik7XHJcbiAgICAgICAgdGhpcy5kYXRhU291cmNlLmZpbHRlciA9ICcnO1xyXG4gICAgICB9XHJcbiAgICB9KTtcclxuICB9XHJcbiAgcHJpdmF0ZSBfbm9ybWFsaXplKHBhdHRlcm46IFBhdHRlcm4pIHtcclxuICAgIHRoaXMucm9sZXMuZm9yRWFjaChyID0+IHBhdHRlcm5bci5uYW1lXSA9IHBhdHRlcm4ucm9sZXMuaW5kZXhPZihyLm5hbWUpID4gLTEpO1xyXG4gICAgT2JqZWN0LmtleXMocGF0dGVybi5heGVzKS5mb3JFYWNoKGsgPT4ge1xyXG4gICAgICBpZiAocGF0dGVybi5heGVzW2tdID09PSBudWxsKVxyXG4gICAgICAgIGRlbGV0ZSBwYXR0ZXJuLmF4ZXNba107XHJcbiAgICB9KTtcclxuICB9XHJcblxyXG4gIGRlbGV0ZShwYXR0ZXJuOiBQYXR0ZXJuKSB7XHJcbiAgICB0aGlzLmRhdGFTb3VyY2UuZGF0YS5yZW1vdmUocGF0dGVybik7XHJcbiAgfVxyXG4gIGVkaXQocGF0dGVybjogUGF0dGVybikge1xyXG4gICAgdGhpcy5mb3JtLnBhdGNoVmFsdWUocGF0dGVybiwgeyBlbWl0RXZlbnQ6IGZhbHNlIH0pO1xyXG4gICAgdGhpcy5fZGlhbG9nLm9wZW4odGhpcy5wcm9wZXJ0aWVzKS5hZnRlckNsb3NlZCgpLnN1YnNjcmliZShyID0+IHtcclxuICAgICAgaWYgKHIpIHtcclxuICAgICAgICBPYmplY3QuYXNzaWduKHBhdHRlcm4sIHIpO1xyXG4gICAgICAgIHRoaXMuX25vcm1hbGl6ZShwYXR0ZXJuKTtcclxuICAgICAgICB0aGlzLmRpcnR5ID0gdHJ1ZTtcclxuICAgICAgfVxyXG4gICAgfSk7XHJcbiAgfVxyXG4gIHNhdmUoKSB7XHJcbiAgICB0aGlzLl9yZWYuZXhlY3V0ZSh0aGlzLmRhdGFTb3VyY2UuZGF0YSkuc3Vic2NyaWJlKCgpID0+IHtcclxuICAgICAgdGhpcy5kaXJ0eSA9IGZhbHNlO1xyXG4gICAgICB0aGlzLl9zYi50b2FzdCgnQ2hhbmdlc1NhdmVkJyk7XHJcbiAgICB9LCAoKSA9PiB0aGlzLl9zYi5lcnJvcigpKTtcclxuICB9XHJcbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLl9kZXN0cm95Lm5leHQoKTtcclxuICAgIHRoaXMuX2Rlc3Ryb3kuY29tcGxldGUoKTtcclxuICB9XHJcbn1cclxuaW50ZXJmYWNlIE9wdGlvbnMge1xyXG4gIGN1YmU6IHN0cmluZztcclxuICBheGVzOiBzdHJpbmdbXTtcclxufVxyXG5pbnRlcmZhY2UgUGF0dGVybiB7XHJcbiAgbmFtZTogc3RyaW5nO1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbiAgcm9sZXM6IHN0cmluZ1tdO1xyXG4gIGF4ZXM6IHtcclxuICAgIFtheGlzOiBzdHJpbmddOiBBeGlzVmFsdWU7XHJcbiAgfTtcclxufVxyXG5pbnRlcmZhY2UgUm9sZSB7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICBuYW1lOiBzdHJpbmc7XHJcbn1cclxuaW50ZXJmYWNlIFNvdXJjZSB7XHJcbiAga2V5OiBhbnk7XHJcbiAgdmFsdWU6IGFueTtcclxufVxyXG4iLCI8bWF0LXRvb2xiYXI+XHJcbiAgPGJ1dHRvbiBtYXQtYnV0dG9uIGNvbG9yPVwicHJpbWFyeVwiIChjbGljayk9XCJzYXZlKClcIiBbZGlzYWJsZWRdPVwiIWRpcnR5XCI+e3snU2F2ZUNoYW5nZXMnfHRyYW5zbGF0ZX19PC9idXR0b24+XHJcbiAgPHNwYW4gY2xhc3M9XCJkaXZpZGVyXCI+PC9zcGFuPlxyXG4gIDxidXR0b24gbWF0LWljb24tYnV0dG9uIChjbGljayk9XCJjcmVhdGUoKVwiIFtiaXpkb2NUb29sdGlwXT1cIidBZGQnfHRyYW5zbGF0ZVwiIGRhdGEtZ3VpZGU9XCJjcmVhdGVcIj48bWF0LWljb24+YWRkPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuPC9tYXQtdG9vbGJhcj5cclxuPHRhYmxlIG1hdC10YWJsZSBbZGF0YVNvdXJjZV09XCJkYXRhU291cmNlXCIgbWF0U29ydD5cclxuICA8bmctY29udGFpbmVyIG1hdENvbHVtbkRlZj1cInRpdGxlXCIgc3RpY2t5PlxyXG4gICAgPHRoIG1hdC1oZWFkZXItY2VsbCAqbWF0SGVhZGVyQ2VsbERlZiBtYXQtc29ydC1oZWFkZXI+e3snVGl0bGUnfHRyYW5zbGF0ZX19PC90aD5cclxuICAgIDx0ZCBtYXQtY2VsbCAqbWF0Q2VsbERlZj1cImxldCBlbGVtZW50XCI+IHt7ZWxlbWVudC50aXRsZX19IDwvdGQ+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbiAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgciBvZiByb2xlc1wiIFttYXRDb2x1bW5EZWZdPVwici5uYW1lXCI+XHJcbiAgICA8dGggbWF0LWhlYWRlci1jZWxsICptYXRIZWFkZXJDZWxsRGVmIG1hdC1zb3J0LWhlYWRlcj57e3IudGl0bGV9fTwvdGg+XHJcbiAgICA8dGQgbWF0LWNlbGwgKm1hdENlbGxEZWY9XCJsZXQgZWxlbWVudFwiPlxyXG4gICAgICA8bWF0LWNoZWNrYm94IFtjaGVja2VkXT1cImVsZW1lbnQucm9sZXMgJiYgZWxlbWVudC5yb2xlcy5pbmRleE9mKHIubmFtZSkgPiAtMVwiIChjaGFuZ2UpPVwidG9nZ2xlKGVsZW1lbnQsIHIubmFtZSwgJGV2ZW50KVwiPjwvbWF0LWNoZWNrYm94PlxyXG4gICAgPC90ZD5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuICA8bmctY29udGFpbmVyIG1hdENvbHVtbkRlZj1cIm9wdGlvbnNcIj5cclxuICAgIDx0aCBtYXQtaGVhZGVyLWNlbGwgKm1hdEhlYWRlckNlbGxEZWY+PC90aD5cclxuICAgIDx0ZCBtYXQtY2VsbCAqbWF0Q2VsbERlZj1cImxldCBlbGVtZW50XCI+XHJcbiAgICAgIDxidXR0b24gbWF0LWljb24tYnV0dG9uIFttYXRNZW51VHJpZ2dlckZvcl09XCJvcHRpb25zXCI+PG1hdC1pY29uPm1vcmVfdmVydDwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgICAgIDxtYXQtbWVudSAjb3B0aW9ucz5cclxuICAgICAgICA8YnV0dG9uIG1hdC1tZW51LWl0ZW0gKGNsaWNrKT1cImVkaXQoZWxlbWVudClcIj57eydFZGl0J3x0cmFuc2xhdGV9fTwvYnV0dG9uPlxyXG4gICAgICAgIDxtYXQtZGl2aWRlcj48L21hdC1kaXZpZGVyPlxyXG4gICAgICAgIDxidXR0b24gbWF0LW1lbnUtaXRlbSAoY2xpY2spPVwiZGVsZXRlKGVsZW1lbnQpXCI+e3snRGlzY2FyZCd8dHJhbnNsYXRlfX08L2J1dHRvbj5cclxuICAgICAgPC9tYXQtbWVudT5cclxuICAgIDwvdGQ+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbiAgPHRyIG1hdC1oZWFkZXItcm93ICptYXRIZWFkZXJSb3dEZWY9XCJkaXNwbGF5ZWRDb2x1bW5zOyBzdGlja3k6IHRydWVcIj48L3RyPlxyXG4gIDx0ciBtYXQtcm93ICptYXRSb3dEZWY9XCJsZXQgZWxlbWVudDsgY29sdW1uczogZGlzcGxheWVkQ29sdW1ucztcIj48L3RyPlxyXG48L3RhYmxlPlxyXG48bWF0LXBhZ2luYXRvciBbcGFnZVNpemVdPVwiUEFHRV9TSVpFXCIgaGlkZVBhZ2VTaXplIHNob3dGaXJzdExhc3RCdXR0b25zICpuZ0lmPVwicGFnaW5nXCI+PC9tYXQtcGFnaW5hdG9yPlxyXG48IS0tIGRpYWxvZyAtLT5cclxuPG5nLXRlbXBsYXRlICNwcm9wZXJ0aWVzPlxyXG4gIDxtYXQtZGlhbG9nLWNvbnRlbnQ+XHJcbiAgICA8Zm9ybSBbZm9ybUdyb3VwXT1cImZvcm1cIiBhdXRvY29tcGxldGU9XCJvZmZcIiBmeExheW91dD1cImNvbHVtblwiPlxyXG4gICAgICA8bWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICAgPGlucHV0IG1hdElucHV0IGZvcm1Db250cm9sTmFtZT1cInRpdGxlXCIgW3BsYWNlaG9sZGVyXT1cIidUaXRsZSd8dHJhbnNsYXRlXCIgcmVxdWlyZWQgLz5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgPGRpdiBmb3JtR3JvdXBOYW1lPVwiYXhlc1wiICpuZ0lmPVwiY3ViZVwiIGZ4TGF5b3V0Lmd0LXNtPVwicm93IHdyYXBcIiBmeExheW91dD1cImNvbHVtbiB3cmFwXCJcclxuICAgICAgICAgICBmeExheW91dEdhcD1cIjVweCBncmlkXCI+XHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgYSBvZiBjdWJlLmF4ZXNcIj5cclxuICAgICAgICAgIDxtYXQtZm9ybS1maWVsZCAqbmdJZj1cImluY2x1ZGUuaW5kZXhPZihhLm5hbWUpPi0xXCIgZnhGbGV4PVwiNTBcIj5cclxuICAgICAgICAgICAgPGlucHV0IG1hdElucHV0XHJcbiAgICAgICAgICAgICAgICAgICBbbWF0QXV0b2NvbXBsZXRlXT1cInNlZ21lbnRcIiBbcGF0dGVybl09XCJwYXR0ZXJuXCJcclxuICAgICAgICAgICAgICAgICAgIFtmb3JtQ29udHJvbE5hbWVdPVwiYS5uYW1lXCIgW3BsYWNlaG9sZGVyXT1cImEudGl0bGVcIiAvPlxyXG4gICAgICAgICAgICA8bWF0LWF1dG9jb21wbGV0ZSAjc2VnbWVudD5cclxuICAgICAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgbyBvZiBzZWdtZW50c1thLm5hbWVdIHwgYXN5bmNcIiBbdmFsdWVdPVwiby5rZXlcIj57e28udmFsdWV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPC9tYXQtYXV0b2NvbXBsZXRlPlxyXG4gICAgICAgICAgICA8bWF0LWVycm9yICpuZ0lmPVwiYXhlcy5jb250cm9sc1thLm5hbWVdLmludmFsaWRcIj57eydQYXR0ZXJuRXJyJyB8dHJhbnNsYXRlfX08L21hdC1lcnJvcj5cclxuICAgICAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8bWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwicm9sZXNcIiBbcGxhY2Vob2xkZXJdPVwiJ1JvbGVzJ3x0cmFuc2xhdGVcIiBtdWx0aXBsZSByZXF1aXJlZD5cclxuICAgICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCByIG9mIHJvbGVzXCIgW3ZhbHVlXT1cInIubmFtZVwiPnt7ci50aXRsZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgICAgICA8bWF0LWVycm9yICpuZ0lmPVwiZm9ybS5jb250cm9scy5yb2xlcy5oYXNFcnJvcigncmVxdWlyZWQnKVwiPnt7J1JlcXVpcmVkJ3x0cmFuc2xhdGU6KCdSb2xlcyd8dHJhbnNsYXRlKX19PC9tYXQtZXJyb3I+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICA8L2Zvcm0+XHJcbiAgPC9tYXQtZGlhbG9nLWNvbnRlbnQ+XHJcbiAgPG1hdC1kaWFsb2ctYWN0aW9ucz5cclxuICAgIDxidXR0b24gbWF0LWJ1dHRvbiBbbWF0LWRpYWxvZy1jbG9zZV09XCJmb3JtLnZhbHVlXCIgW2Rpc2FibGVkXT1cIiFmb3JtLnZhbGlkXCI+e3snT0snfCB0cmFuc2xhdGV9fTwvYnV0dG9uPlxyXG4gICAgPGJ1dHRvbiBtYXQtYnV0dG9uIG1hdC1kaWFsb2ctY2xvc2U+e3snQ2FuY2VsJ3wgdHJhbnNsYXRlfX08L2J1dHRvbj5cclxuICA8L21hdC1kaWFsb2ctYWN0aW9ucz5cclxuPC9uZy10ZW1wbGF0ZT5cclxuPHN0eWxlIHNjb3BlZD5cclxuICB0YWJsZSB7XHJcbiAgICB3aWR0aDogMTAwJVxyXG4gIH1cclxuPC9zdHlsZT5cclxuIl19
424
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PatternsComponent, [{
425
+ type: Component,
426
+ args: [{ template: "<mat-toolbar>\r\n <button mat-button color=\"primary\" (click)=\"save()\" [disabled]=\"!dirty\">{{'SaveChanges'|translate}}</button>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"create()\" [bizdocTooltip]=\"'Add'|translate\" data-guide=\"create\"><mat-icon>add</mat-icon></button>\r\n</mat-toolbar>\r\n<table mat-table [dataSource]=\"dataSource\" matSort>\r\n <ng-container matColumnDef=\"title\" sticky>\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Title'|translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element.title}} </td>\r\n </ng-container>\r\n <ng-container *ngFor=\"let r of roles\" [matColumnDef]=\"r.name\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{r.title}}</th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <mat-checkbox [checked]=\"element.roles && element.roles.indexOf(r.name) > -1\" (change)=\"toggle(element, r.name, $event)\"></mat-checkbox>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"options\">\r\n <th mat-header-cell *matHeaderCellDef></th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <button mat-icon-button [matMenuTriggerFor]=\"options\"><mat-icon>more_vert</mat-icon></button>\r\n <mat-menu #options>\r\n <button mat-menu-item (click)=\"edit(element)\">{{'Edit'|translate}}</button>\r\n <mat-divider></mat-divider>\r\n <button mat-menu-item (click)=\"delete(element)\">{{'Discard'|translate}}</button>\r\n </mat-menu>\r\n </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns; sticky: true\"></tr>\r\n <tr mat-row *matRowDef=\"let element; columns: displayedColumns;\"></tr>\r\n</table>\r\n<mat-paginator [pageSize]=\"PAGE_SIZE\" hidePageSize showFirstLastButtons *ngIf=\"paging\"></mat-paginator>\r\n<!-- dialog -->\r\n<ng-template #properties>\r\n <mat-dialog-content>\r\n <form [formGroup]=\"form\" autocomplete=\"off\" fxLayout=\"column\">\r\n <mat-form-field>\r\n <input matInput formControlName=\"title\" [placeholder]=\"'Title'|translate\" required />\r\n </mat-form-field>\r\n <div formGroupName=\"axes\" *ngIf=\"cube\" fxLayout.gt-sm=\"row wrap\" fxLayout=\"column wrap\"\r\n fxLayoutGap=\"5px grid\">\r\n <ng-container *ngFor=\"let a of cube.axes\">\r\n <mat-form-field *ngIf=\"include.indexOf(a.name)>-1\" fxFlex=\"50\">\r\n <input matInput\r\n [matAutocomplete]=\"segment\" [pattern]=\"pattern\"\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title\" />\r\n <mat-autocomplete #segment>\r\n <mat-option *ngFor=\"let o of segments[a.name] | async\" [value]=\"o.key\">{{o.value}}</mat-option>\r\n </mat-autocomplete>\r\n <mat-error *ngIf=\"axes.controls[a.name].invalid\">{{'PatternErr' |translate}}</mat-error>\r\n </mat-form-field>\r\n </ng-container>\r\n </div>\r\n <mat-form-field>\r\n <mat-select formControlName=\"roles\" [placeholder]=\"'Roles'|translate\" multiple required>\r\n <mat-option *ngFor=\"let r of roles\" [value]=\"r.name\">{{r.title}}</mat-option>\r\n </mat-select>\r\n <mat-error *ngIf=\"form.controls.roles.hasError('required')\">{{'Required'|translate:('Roles'|translate)}}</mat-error>\r\n </mat-form-field>\r\n </form>\r\n </mat-dialog-content>\r\n <mat-dialog-actions>\r\n <button mat-button [mat-dialog-close]=\"form.value\" [disabled]=\"!form.valid\">{{'OK'| translate}}</button>\r\n <button mat-button mat-dialog-close>{{'Cancel'| translate}}</button>\r\n </mat-dialog-actions>\r\n</ng-template>\r\n<style scoped>\r\n table {\r\n width: 100%\r\n }\r\n</style>\r\n" }]
427
+ }], function () { return [{ type: i1.SessionService }, { type: i2.Directionality }, { type: i3.FormBuilder }, { type: i26.UtilityRef, decorators: [{
428
+ type: Inject,
429
+ args: [UtilityRef]
430
+ }] }, { type: i4.DatasourceService }, { type: i5.SystemService }, { type: i6.PromptService }, { type: i7.MatDialog }]; }, { properties: [{
431
+ type: ViewChild,
432
+ args: ['properties', { static: true }]
433
+ }], sort: [{
434
+ type: ViewChild,
435
+ args: [MatSort]
436
+ }], paginator: [{
437
+ type: ViewChild,
438
+ args: [MatPaginator]
439
+ }] }); })();
440
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF0dGVybnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9wYXR0ZXJucy9wYXR0ZXJucy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL3BhdHRlcm5zL3BhdHRlcm5zLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sRUFBYSxTQUFTLEVBQWUsTUFBTSxlQUFlLENBQUM7QUFFN0YsT0FBTyxFQUFlLFVBQVUsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxPQUFPLEVBQWMsTUFBTSxNQUFNLENBQUM7QUFDM0MsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTNDLE9BQU8sRUFBRSxNQUFNLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUcvQyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFHNUMsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFJN0QsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDN0QsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0lDWHZELDhCQUFzRDtJQUFBLFlBQXFCOztJQUFBLGlCQUFLOztJQUExQixlQUFxQjtJQUFyQixtREFBcUI7OztJQUMzRSw4QkFBdUM7SUFBQyxZQUFrQjtJQUFBLGlCQUFLOzs7SUFBdkIsZUFBa0I7SUFBbEIsa0RBQWtCOzs7SUFHMUQsOEJBQXNEO0lBQUEsWUFBVztJQUFBLGlCQUFLOzs7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UUFBUixtQ0FBUTtRQWlCaEIsZUFBbUM7UUFBbkMsc0RBQW1DLCtCQUFBO1FBQ2xCLGVBQTBCO1FBQTFCLHVEQUEwQjtRQUVRLGVBQVk7UUFBWixpQ0FBWTs7QUREeEUsaUJBQWlCO0lBSDdCLE1BQU0sQ0FBQztRQUNOLFFBQVEsRUFBRSxpQkFBaUI7S0FDNUIsQ0FBQztHQUNXLGlCQUFpQixDQTBIN0I7U0ExSFksaUJBQWlCO3VGQUFqQixpQkFBaUI7Y0FON0IsU0FBUzs7O3NCQThCTCxNQUFNO3VCQUFDLFVBQVU7d0lBakJ1QixVQUFVO2tCQUFwRCxTQUFTO21CQUFDLFlBQVksRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUU7WUFDckIsSUFBSTtrQkFBdkIsU0FBUzttQkFBQyxPQUFPO1lBQ08sU0FBUztrQkFBakMsU0FBUzttQkFBQyxZQUFZIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIEluamVjdCwgT25EZXN0cm95LCBWaWV3Q2hpbGQsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEh0dHBDbGllbnQgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XHJcbmltcG9ydCB7IEZvcm1CdWlsZGVyLCBWYWxpZGF0b3JzIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBTdWJqZWN0LCBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XHJcbmltcG9ydCB7IHRha2VVbnRpbCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcclxuaW1wb3J0IHsgQ3ViZSwgQXhpc1ZhbHVlIH0gZnJvbSAnLi4vLi4vY29yZS9tb2RlbHMnO1xyXG5pbXBvcnQgeyBCaXpEb2MgfSBmcm9tICcuLi8uLi9jb3JlL2RlY29yYXRvcnMnO1xyXG5pbXBvcnQgeyBVdGlsaXR5Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29yZS9iYXNlJztcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tICcuLi8uLi9jb3JlL3Nlc3Npb24uc2VydmljZSc7XHJcbmltcG9ydCB7IFV0aWxpdHlSZWYgfSBmcm9tIFwiLi4vdXRpbGl0eS1yZWZcIjtcclxuaW1wb3J0IHsgUHJvbXB0U2VydmljZSB9IGZyb20gJy4uLy4uL2NvcmUvcHJvbXB0LnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBEaXJlY3Rpb25hbGl0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9iaWRpJztcclxuaW1wb3J0IHsgTWF0VGFibGVEYXRhU291cmNlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdGFibGUnO1xyXG5pbXBvcnQgeyBNYXREaWFsb2cgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xyXG5pbXBvcnQgeyBNYXRDaGVja2JveENoYW5nZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NoZWNrYm94JztcclxuaW1wb3J0IHsgRGF0YXNvdXJjZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9jb3JlL2RhdGFzb3VyY2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEFYSVNfVkFMVUVfUEFUVEVSTiB9IGZyb20gJy4uLy4uL2N1YmUvY3ViZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgTWF0U29ydCB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NvcnQnO1xyXG5pbXBvcnQgeyBNYXRQYWdpbmF0b3IgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9wYWdpbmF0b3InO1xyXG5pbXBvcnQgeyBTeXN0ZW1TZXJ2aWNlIH0gZnJvbSAnLi4vc3lzdGVtLnNlcnZpY2UnO1xyXG5cclxuY29uc3QgUEFHRV9TSVpFID0gMjA7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZVVybDogJy4vcGF0dGVybnMuY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbkBCaXpEb2Moe1xyXG4gIHNlbGVjdG9yOiAnYml6ZG9jLXBhdHRlcm5zJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgUGF0dGVybnNDb21wb25lbnQgaW1wbGVtZW50cyBVdGlsaXR5Q29tcG9uZW50PGJvb2xlYW4sIGFueT4sIE9uSW5pdCwgT25EZXN0cm95IHtcclxuICByZWFkb25seSBQQUdFX1NJWkUgPSBQQUdFX1NJWkU7XHJcbiAgcmVhZG9ubHkgcGF0dGVybiA9IEFYSVNfVkFMVUVfUEFUVEVSTjtcclxuICBkYXRhU291cmNlOiBNYXRUYWJsZURhdGFTb3VyY2U8UGF0dGVybj47XHJcbiAgZGlydHkgPSBmYWxzZTtcclxuICByZWFkb25seSBzZWdtZW50czogeyBba2V5OiBzdHJpbmddOiBPYnNlcnZhYmxlPFNvdXJjZVtdPiB9ID0ge307XHJcbiAgcm9sZXM6IFJvbGVbXSA9IFtdO1xyXG4gIEBWaWV3Q2hpbGQoJ3Byb3BlcnRpZXMnLCB7IHN0YXRpYzogdHJ1ZSB9KSBwcm9wZXJ0aWVzOiBUZW1wbGF0ZVJlZjxhbnk+O1xyXG4gIEBWaWV3Q2hpbGQoTWF0U29ydCkgc29ydDogTWF0U29ydDtcclxuICBAVmlld0NoaWxkKE1hdFBhZ2luYXRvcikgcGFnaW5hdG9yOiBNYXRQYWdpbmF0b3I7XHJcbiAgaW5jbHVkZTogc3RyaW5nW107XHJcbiAgY3ViZTogQ3ViZTtcclxuICByZWFkb25seSBkaXNwbGF5ZWRDb2x1bW5zID0gWyd0aXRsZSddO1xyXG4gIHJlYWRvbmx5IGF4ZXMgPSB0aGlzLl9mYi5ncm91cCh7fSk7XHJcbiAgcmVhZG9ubHkgZm9ybSA9IHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgIGF4ZXM6IHRoaXMuYXhlcyxcclxuICAgIHRpdGxlOiB0aGlzLl9mYi5jb250cm9sKG51bGwsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgcm9sZXM6IHRoaXMuX2ZiLmNvbnRyb2woW10sIFZhbGlkYXRvcnMucmVxdWlyZWQpXHJcbiAgfSk7XHJcbiAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveSA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XHJcbiAgcGFnaW5nOiBib29sZWFuO1xyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX3Nlc3Npb246IFNlc3Npb25TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfZGlyOiBEaXJlY3Rpb25hbGl0eSxcclxuICAgIHByaXZhdGUgX2ZiOiBGb3JtQnVpbGRlcixcclxuICAgIEBJbmplY3QoVXRpbGl0eVJlZikgcHJpdmF0ZSBfcmVmOiBVdGlsaXR5UmVmPGJvb2xlYW4sIFBhdHRlcm5bXSwgUGF0dGVybltdLCBhbnksIE9wdGlvbnM+LFxyXG4gICAgcHJpdmF0ZSBfdHlwZTogRGF0YXNvdXJjZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9zZXJ2aWNlOiBTeXN0ZW1TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfc2I6IFByb21wdFNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9kaWFsb2c6IE1hdERpYWxvZykge1xyXG4gICAgY29uc3QgeyBjdWJlLCBheGVzIH0gPSB0aGlzLl9yZWYub3B0aW9ucztcclxuICAgIGNvbnN0IGNjdWJlID0gY3ViZSA/IHRoaXMuX3Nlc3Npb24ucHJvZmlsZS5jdWJlcy5maW5kKGMgPT4gYy5uYW1lID09PSBjdWJlKSA6IHRoaXMuX3Nlc3Npb24ucHJvZmlsZS5jdWJlc1swXTtcclxuICAgIGlmICghY2N1YmUpXHJcbiAgICAgIHRocm93ICdjdWJlIG5vdCBmb3VuZC4nO1xyXG4gICAgdGhpcy5jdWJlID0gY2N1YmU7XHJcbiAgICB0aGlzLmluY2x1ZGUgPSBheGVzIHx8IGNjdWJlLmF4ZXMuZmlsdGVyKGEgPT4gIWEuaGlkZGVuICYmIGEuY29tYmluYXRpb24pLm1hcChhID0+IGEubmFtZSk7XHJcbiAgICB0aGlzLmN1YmUuYXhlcy5mb3JFYWNoKGEgPT4ge1xyXG4gICAgICB0aGlzLmF4ZXMuYWRkQ29udHJvbChhLm5hbWUsIHRoaXMuX2ZiLmNvbnRyb2wobnVsbCkpO1xyXG4gICAgICB0aGlzLnNlZ21lbnRzW2EubmFtZV0gPSB0aGlzLl90eXBlLmFsbChhLmRhdGFUeXBlKTtcclxuICAgIH0pO1xyXG4gIH1cclxuICBuZ09uSW5pdCgpIHtcclxuICAgIHRoaXMuZm9ybS52YWx1ZUNoYW5nZXMucGlwZSh0YWtlVW50aWwodGhpcy5fZGVzdHJveSkpLnN1YnNjcmliZSgoKSA9PiB0aGlzLmRpcnR5ID0gdHJ1ZSk7XHJcbiAgICB0aGlzLl9zZXJ2aWNlLnJvbGVzKCkuc3Vic2NyaWJlKHIgPT4ge1xyXG4gICAgICB0aGlzLl9yZWYucG9wdWxhdGUoKS5zdWJzY3JpYmUocCA9PiB7XHJcbiAgICAgICAgdGhpcy5fY29sdW1ucyhyKTtcclxuICAgICAgICB0aGlzLl9kYXRhc291cmNlKHApO1xyXG4gICAgICB9KTtcclxuICAgIH0pO1xyXG4gIH1cclxuICBwcml2YXRlIF9kYXRhc291cmNlKGRhdGE6IFBhdHRlcm5bXSkge1xyXG4gICAgLy8gcm9sZXMgc29ydGluZ1xyXG4gICAgZGF0YS5mb3JFYWNoKHAgPT4gcC5yb2xlcyAmJiBwLnJvbGVzLmZvckVhY2gociA9PiBwW3JdID0gdHJ1ZSkpO1xyXG4gICAgdGhpcy5kYXRhU291cmNlID0gbmV3IE1hdFRhYmxlRGF0YVNvdXJjZShkYXRhIHx8IFtdKTtcclxuICAgIHRoaXMuZGF0YVNvdXJjZS5zb3J0ID0gdGhpcy5zb3J0O1xyXG4gICAgdGhpcy5wYWdpbmcgPSBkYXRhLmxlbmd0aCA+IFBBR0VfU0laRTtcclxuICAgIHRoaXMuZGF0YVNvdXJjZS5wYWdpbmF0b3IgPSB0aGlzLnBhZ2luYXRvcjtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX2NvbHVtbnMocm9sZXM6IFJvbGVbXSkge1xyXG4gICAgdGhpcy5yb2xlcyA9IHJvbGVzO1xyXG4gICAgcm9sZXMuZm9yRWFjaChlID0+IHRoaXMuZGlzcGxheWVkQ29sdW1ucy5wdXNoKGUubmFtZSkpO1xyXG4gICAgdGhpcy5kaXNwbGF5ZWRDb2x1bW5zLnB1c2goJ29wdGlvbnMnKTtcclxuICB9XHJcblxyXG4gIHRvZ2dsZShwYXR0ZXJuOiBQYXR0ZXJuLCByb2xlOiBzdHJpbmcsIGV2dDogTWF0Q2hlY2tib3hDaGFuZ2UpIHtcclxuICAgIGlmICghcGF0dGVybi5yb2xlcykgcGF0dGVybi5yb2xlcyA9IFtdO1xyXG4gICAgaWYgKGV2dC5jaGVja2VkKSB7XHJcbiAgICAgIHBhdHRlcm4ucm9sZXMucHVzaChyb2xlKTtcclxuICAgICAgcGF0dGVybltyb2xlXSA9IHRydWU7XHJcbiAgICB9XHJcbiAgICBlbHNlIHtcclxuICAgICAgcGF0dGVybi5yb2xlcy5yZW1vdmUocm9sZSk7XHJcbiAgICAgIHBhdHRlcm5bcm9sZV0gPSBmYWxzZTtcclxuICAgIH1cclxuICAgIHRoaXMuZGlydHkgPSB0cnVlO1xyXG4gIH1cclxuICBjcmVhdGUoKSB7XHJcbiAgICB0aGlzLmZvcm0ucmVzZXQoeyBheGVzOiB7fSwgcm9sZXM6IFtdIH0sIHsgZW1pdEV2ZW50OiBmYWxzZSB9KTtcclxuICAgIHRoaXMuX2RpYWxvZy5vcGVuKHRoaXMucHJvcGVydGllcywge1xyXG4gICAgICBkaXJlY3Rpb246IHRoaXMuX2Rpci52YWx1ZSxcclxuICAgICAgbWluV2lkdGg6ICc2NnZ3JyxcclxuICAgICAgY2xvc2VPbk5hdmlnYXRpb246IHRydWVcclxuICAgIH0pLmFmdGVyQ2xvc2VkKCkuc3Vic2NyaWJlKChwYXR0ZXJuOiBQYXR0ZXJuKSA9PiB7XHJcbiAgICAgIGlmIChwYXR0ZXJuKSB7XHJcbiAgICAgICAgcGF0dGVybi5uYW1lID0gcGF0dGVybi50aXRsZS5ub3JtYWxpemUoKTtcclxuICAgICAgICB0aGlzLl9ub3JtYWxpemUocGF0dGVybik7XHJcbiAgICAgICAgdGhpcy5kYXRhU291cmNlLmRhdGEucHVzaChwYXR0ZXJuKTtcclxuICAgICAgICB0aGlzLmRhdGFTb3VyY2UuZmlsdGVyID0gJyc7XHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG4gIH1cclxuICBwcml2YXRlIF9ub3JtYWxpemUocGF0dGVybjogUGF0dGVybikge1xyXG4gICAgdGhpcy5yb2xlcy5mb3JFYWNoKHIgPT4gcGF0dGVybltyLm5hbWVdID0gcGF0dGVybi5yb2xlcy5pbmRleE9mKHIubmFtZSkgPiAtMSk7XHJcbiAgICBPYmplY3Qua2V5cyhwYXR0ZXJuLmF4ZXMpLmZvckVhY2goayA9PiB7XHJcbiAgICAgIGlmIChwYXR0ZXJuLmF4ZXNba10gPT09IG51bGwpXHJcbiAgICAgICAgZGVsZXRlIHBhdHRlcm4uYXhlc1trXTtcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgZGVsZXRlKHBhdHRlcm46IFBhdHRlcm4pIHtcclxuICAgIHRoaXMuZGF0YVNvdXJjZS5kYXRhLnJlbW92ZShwYXR0ZXJuKTtcclxuICB9XHJcbiAgZWRpdChwYXR0ZXJuOiBQYXR0ZXJuKSB7XHJcbiAgICB0aGlzLmZvcm0ucGF0Y2hWYWx1ZShwYXR0ZXJuLCB7IGVtaXRFdmVudDogZmFsc2UgfSk7XHJcbiAgICB0aGlzLl9kaWFsb2cub3Blbih0aGlzLnByb3BlcnRpZXMpLmFmdGVyQ2xvc2VkKCkuc3Vic2NyaWJlKHIgPT4ge1xyXG4gICAgICBpZiAocikge1xyXG4gICAgICAgIE9iamVjdC5hc3NpZ24ocGF0dGVybiwgcik7XHJcbiAgICAgICAgdGhpcy5fbm9ybWFsaXplKHBhdHRlcm4pO1xyXG4gICAgICAgIHRoaXMuZGlydHkgPSB0cnVlO1xyXG4gICAgICB9XHJcbiAgICB9KTtcclxuICB9XHJcbiAgc2F2ZSgpIHtcclxuICAgIHRoaXMuX3JlZi5leGVjdXRlKHRoaXMuZGF0YVNvdXJjZS5kYXRhKS5zdWJzY3JpYmUoKCkgPT4ge1xyXG4gICAgICB0aGlzLmRpcnR5ID0gZmFsc2U7XHJcbiAgICAgIHRoaXMuX3NiLnRvYXN0KCdDaGFuZ2VzU2F2ZWQnKTtcclxuICAgIH0sICgpID0+IHRoaXMuX3NiLmVycm9yKCkpO1xyXG4gIH1cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuX2Rlc3Ryb3kubmV4dCgpO1xyXG4gICAgdGhpcy5fZGVzdHJveS5jb21wbGV0ZSgpO1xyXG4gIH1cclxufVxyXG5pbnRlcmZhY2UgT3B0aW9ucyB7XHJcbiAgY3ViZTogc3RyaW5nO1xyXG4gIGF4ZXM6IHN0cmluZ1tdO1xyXG59XHJcbmludGVyZmFjZSBQYXR0ZXJuIHtcclxuICBuYW1lOiBzdHJpbmc7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICByb2xlczogc3RyaW5nW107XHJcbiAgYXhlczoge1xyXG4gICAgW2F4aXM6IHN0cmluZ106IEF4aXNWYWx1ZTtcclxuICB9O1xyXG59XHJcbmludGVyZmFjZSBSb2xlIHtcclxuICB0aXRsZTogc3RyaW5nO1xyXG4gIG5hbWU6IHN0cmluZztcclxufVxyXG5pbnRlcmZhY2UgU291cmNlIHtcclxuICBrZXk6IGFueTtcclxuICB2YWx1ZTogYW55O1xyXG59XHJcbiIsIjxtYXQtdG9vbGJhcj5cclxuICA8YnV0dG9uIG1hdC1idXR0b24gY29sb3I9XCJwcmltYXJ5XCIgKGNsaWNrKT1cInNhdmUoKVwiIFtkaXNhYmxlZF09XCIhZGlydHlcIj57eydTYXZlQ2hhbmdlcyd8dHJhbnNsYXRlfX08L2J1dHRvbj5cclxuICA8c3BhbiBjbGFzcz1cImRpdmlkZXJcIj48L3NwYW4+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImNyZWF0ZSgpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ0FkZCd8dHJhbnNsYXRlXCIgZGF0YS1ndWlkZT1cImNyZWF0ZVwiPjxtYXQtaWNvbj5hZGQ8L21hdC1pY29uPjwvYnV0dG9uPlxyXG48L21hdC10b29sYmFyPlxyXG48dGFibGUgbWF0LXRhYmxlIFtkYXRhU291cmNlXT1cImRhdGFTb3VyY2VcIiBtYXRTb3J0PlxyXG4gIDxuZy1jb250YWluZXIgbWF0Q29sdW1uRGVmPVwidGl0bGVcIiBzdGlja3k+XHJcbiAgICA8dGggbWF0LWhlYWRlci1jZWxsICptYXRIZWFkZXJDZWxsRGVmIG1hdC1zb3J0LWhlYWRlcj57eydUaXRsZSd8dHJhbnNsYXRlfX08L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj4ge3tlbGVtZW50LnRpdGxlfX0gPC90ZD5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCByIG9mIHJvbGVzXCIgW21hdENvbHVtbkRlZl09XCJyLm5hbWVcIj5cclxuICAgIDx0aCBtYXQtaGVhZGVyLWNlbGwgKm1hdEhlYWRlckNlbGxEZWYgbWF0LXNvcnQtaGVhZGVyPnt7ci50aXRsZX19PC90aD5cclxuICAgIDx0ZCBtYXQtY2VsbCAqbWF0Q2VsbERlZj1cImxldCBlbGVtZW50XCI+XHJcbiAgICAgIDxtYXQtY2hlY2tib3ggW2NoZWNrZWRdPVwiZWxlbWVudC5yb2xlcyAmJiBlbGVtZW50LnJvbGVzLmluZGV4T2Yoci5uYW1lKSA+IC0xXCIgKGNoYW5nZSk9XCJ0b2dnbGUoZWxlbWVudCwgci5uYW1lLCAkZXZlbnQpXCI+PC9tYXQtY2hlY2tib3g+XHJcbiAgICA8L3RkPlxyXG4gIDwvbmctY29udGFpbmVyPlxyXG4gIDxuZy1jb250YWluZXIgbWF0Q29sdW1uRGVmPVwib3B0aW9uc1wiPlxyXG4gICAgPHRoIG1hdC1oZWFkZXItY2VsbCAqbWF0SGVhZGVyQ2VsbERlZj48L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj5cclxuICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gW21hdE1lbnVUcmlnZ2VyRm9yXT1cIm9wdGlvbnNcIj48bWF0LWljb24+bW9yZV92ZXJ0PC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICAgICAgPG1hdC1tZW51ICNvcHRpb25zPlxyXG4gICAgICAgIDxidXR0b24gbWF0LW1lbnUtaXRlbSAoY2xpY2spPVwiZWRpdChlbGVtZW50KVwiPnt7J0VkaXQnfHRyYW5zbGF0ZX19PC9idXR0b24+XHJcbiAgICAgICAgPG1hdC1kaXZpZGVyPjwvbWF0LWRpdmlkZXI+XHJcbiAgICAgICAgPGJ1dHRvbiBtYXQtbWVudS1pdGVtIChjbGljayk9XCJkZWxldGUoZWxlbWVudClcIj57eydEaXNjYXJkJ3x0cmFuc2xhdGV9fTwvYnV0dG9uPlxyXG4gICAgICA8L21hdC1tZW51PlxyXG4gICAgPC90ZD5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuICA8dHIgbWF0LWhlYWRlci1yb3cgKm1hdEhlYWRlclJvd0RlZj1cImRpc3BsYXllZENvbHVtbnM7IHN0aWNreTogdHJ1ZVwiPjwvdHI+XHJcbiAgPHRyIG1hdC1yb3cgKm1hdFJvd0RlZj1cImxldCBlbGVtZW50OyBjb2x1bW5zOiBkaXNwbGF5ZWRDb2x1bW5zO1wiPjwvdHI+XHJcbjwvdGFibGU+XHJcbjxtYXQtcGFnaW5hdG9yIFtwYWdlU2l6ZV09XCJQQUdFX1NJWkVcIiBoaWRlUGFnZVNpemUgc2hvd0ZpcnN0TGFzdEJ1dHRvbnMgKm5nSWY9XCJwYWdpbmdcIj48L21hdC1wYWdpbmF0b3I+XHJcbjwhLS0gZGlhbG9nIC0tPlxyXG48bmctdGVtcGxhdGUgI3Byb3BlcnRpZXM+XHJcbiAgPG1hdC1kaWFsb2ctY29udGVudD5cclxuICAgIDxmb3JtIFtmb3JtR3JvdXBdPVwiZm9ybVwiIGF1dG9jb21wbGV0ZT1cIm9mZlwiIGZ4TGF5b3V0PVwiY29sdW1uXCI+XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8aW5wdXQgbWF0SW5wdXQgZm9ybUNvbnRyb2xOYW1lPVwidGl0bGVcIiBbcGxhY2Vob2xkZXJdPVwiJ1RpdGxlJ3x0cmFuc2xhdGVcIiByZXF1aXJlZCAvPlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8ZGl2IGZvcm1Hcm91cE5hbWU9XCJheGVzXCIgKm5nSWY9XCJjdWJlXCIgZnhMYXlvdXQuZ3Qtc209XCJyb3cgd3JhcFwiIGZ4TGF5b3V0PVwiY29sdW1uIHdyYXBcIlxyXG4gICAgICAgICAgIGZ4TGF5b3V0R2FwPVwiNXB4IGdyaWRcIj5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBhIG9mIGN1YmUuYXhlc1wiPlxyXG4gICAgICAgICAgPG1hdC1mb3JtLWZpZWxkICpuZ0lmPVwiaW5jbHVkZS5pbmRleE9mKGEubmFtZSk+LTFcIiBmeEZsZXg9XCI1MFwiPlxyXG4gICAgICAgICAgICA8aW5wdXQgbWF0SW5wdXRcclxuICAgICAgICAgICAgICAgICAgIFttYXRBdXRvY29tcGxldGVdPVwic2VnbWVudFwiIFtwYXR0ZXJuXT1cInBhdHRlcm5cIlxyXG4gICAgICAgICAgICAgICAgICAgW2Zvcm1Db250cm9sTmFtZV09XCJhLm5hbWVcIiBbcGxhY2Vob2xkZXJdPVwiYS50aXRsZVwiIC8+XHJcbiAgICAgICAgICAgIDxtYXQtYXV0b2NvbXBsZXRlICNzZWdtZW50PlxyXG4gICAgICAgICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCBvIG9mIHNlZ21lbnRzW2EubmFtZV0gfCBhc3luY1wiIFt2YWx1ZV09XCJvLmtleVwiPnt7by52YWx1ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8L21hdC1hdXRvY29tcGxldGU+XHJcbiAgICAgICAgICAgIDxtYXQtZXJyb3IgKm5nSWY9XCJheGVzLmNvbnRyb2xzW2EubmFtZV0uaW52YWxpZFwiPnt7J1BhdHRlcm5FcnInIHx0cmFuc2xhdGV9fTwvbWF0LWVycm9yPlxyXG4gICAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJyb2xlc1wiIFtwbGFjZWhvbGRlcl09XCInUm9sZXMnfHRyYW5zbGF0ZVwiIG11bHRpcGxlIHJlcXVpcmVkPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHIgb2Ygcm9sZXNcIiBbdmFsdWVdPVwici5uYW1lXCI+e3tyLnRpdGxlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICAgIDxtYXQtZXJyb3IgKm5nSWY9XCJmb3JtLmNvbnRyb2xzLnJvbGVzLmhhc0Vycm9yKCdyZXF1aXJlZCcpXCI+e3snUmVxdWlyZWQnfHRyYW5zbGF0ZTooJ1JvbGVzJ3x0cmFuc2xhdGUpfX08L21hdC1lcnJvcj5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgIDwvZm9ybT5cclxuICA8L21hdC1kaWFsb2ctY29udGVudD5cclxuICA8bWF0LWRpYWxvZy1hY3Rpb25zPlxyXG4gICAgPGJ1dHRvbiBtYXQtYnV0dG9uIFttYXQtZGlhbG9nLWNsb3NlXT1cImZvcm0udmFsdWVcIiBbZGlzYWJsZWRdPVwiIWZvcm0udmFsaWRcIj57eydPSyd8IHRyYW5zbGF0ZX19PC9idXR0b24+XHJcbiAgICA8YnV0dG9uIG1hdC1idXR0b24gbWF0LWRpYWxvZy1jbG9zZT57eydDYW5jZWwnfCB0cmFuc2xhdGV9fTwvYnV0dG9uPlxyXG4gIDwvbWF0LWRpYWxvZy1hY3Rpb25zPlxyXG48L25nLXRlbXBsYXRlPlxyXG48c3R5bGUgc2NvcGVkPlxyXG4gIHRhYmxlIHtcclxuICAgIHdpZHRoOiAxMDAlXHJcbiAgfVxyXG48L3N0eWxlPlxyXG4iXX0=