@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.
- package/bizdoc-core.d.ts.map +1 -0
- package/esm2020/lib/admin/admin-dismiss.service.mjs +6 -6
- package/esm2020/lib/admin/admin-menu.component.mjs +82 -9
- package/esm2020/lib/admin/configuration-designer/cube-axes-filter.component.mjs +248 -0
- package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +192 -29
- package/esm2020/lib/admin/configuration-designer/designer.base.mjs +37 -25
- package/esm2020/lib/admin/configuration-designer/designer.component.mjs +152 -10
- package/esm2020/lib/admin/configuration-designer/elements/action.component.mjs +107 -10
- package/esm2020/lib/admin/configuration-designer/elements/analysis-view.component.mjs +447 -7
- package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +441 -7
- package/esm2020/lib/admin/configuration-designer/elements/anomaly-rule.component.mjs +25 -7
- package/esm2020/lib/admin/configuration-designer/elements/box-form.component.mjs +25 -7
- package/esm2020/lib/admin/configuration-designer/elements/configuration-datasource.component.mjs +79 -7
- package/esm2020/lib/admin/configuration-designer/elements/cube-index-utility.component.mjs +71 -7
- package/esm2020/lib/admin/configuration-designer/elements/cube-view.component.mjs +98 -7
- package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +793 -10
- package/esm2020/lib/admin/configuration-designer/elements/documents-report.component.mjs +52 -7
- package/esm2020/lib/admin/configuration-designer/elements/documents-widget.component.mjs +55 -10
- package/esm2020/lib/admin/configuration-designer/elements/explore-view.component.mjs +73 -7
- package/esm2020/lib/admin/configuration-designer/elements/folder.component.mjs +275 -9
- package/esm2020/lib/admin/configuration-designer/elements/form.component.mjs +96 -10
- package/esm2020/lib/admin/configuration-designer/elements/guide.component.mjs +78 -7
- package/esm2020/lib/admin/configuration-designer/elements/matrix-view.component.mjs +293 -8
- package/esm2020/lib/admin/configuration-designer/elements/parallel-view.component.mjs +210 -8
- package/esm2020/lib/admin/configuration-designer/elements/performance-widget.component.mjs +74 -7
- package/esm2020/lib/admin/configuration-designer/elements/pivot-view.component.mjs +162 -8
- package/esm2020/lib/admin/configuration-designer/elements/report.component.mjs +58 -7
- package/esm2020/lib/admin/configuration-designer/elements/return-to-role-action.component.mjs +40 -7
- package/esm2020/lib/admin/configuration-designer/elements/role.component.mjs +70 -8
- package/esm2020/lib/admin/configuration-designer/elements/rule.component.mjs +20 -7
- package/esm2020/lib/admin/configuration-designer/elements/state.component.mjs +63 -11
- package/esm2020/lib/admin/configuration-designer/elements/sum-view.component.mjs +132 -8
- package/esm2020/lib/admin/configuration-designer/elements/tasks-report.component.mjs +101 -7
- package/esm2020/lib/admin/configuration-designer/elements/type.component.mjs +25 -7
- package/esm2020/lib/admin/configuration-designer/elements/usage-report.component.mjs +205 -8
- package/esm2020/lib/admin/configuration-designer/elements/utility.component.mjs +24 -7
- package/esm2020/lib/admin/configuration-designer/elements/view.component.mjs +22 -7
- package/esm2020/lib/admin/configuration-designer/elements/widget.component.mjs +54 -7
- package/esm2020/lib/admin/configuration-designer/icon-picker.component.mjs +79 -30
- package/esm2020/lib/admin/core/ace.input.mjs +35 -29
- package/esm2020/lib/admin/core/color-picker.input.mjs +89 -36
- package/esm2020/lib/admin/core/search.input.mjs +23 -13
- package/esm2020/lib/admin/diff/configuration-diff.component.mjs +90 -15
- package/esm2020/lib/admin/document-trace/document-trace.component.mjs +296 -30
- package/esm2020/lib/admin/document-trace/reassign.dialog.mjs +63 -10
- package/esm2020/lib/admin/document-trace/trace-element.component.mjs +238 -7
- package/esm2020/lib/admin/form/designer/designer.component.mjs +492 -10
- package/esm2020/lib/admin/form/form.resolve.service.mjs +6 -6
- package/esm2020/lib/admin/form/workflow/node.component.mjs +86 -15
- package/esm2020/lib/admin/form/workflow/role-node.component.mjs +152 -13
- package/esm2020/lib/admin/form/workflow/workflow.component.mjs +219 -18
- package/esm2020/lib/admin/indices/manage-cube-index.component.mjs +160 -13
- package/esm2020/lib/admin/patterns/patterns.component.mjs +280 -19
- package/esm2020/lib/admin/permissions/permissions.component.mjs +129 -13
- package/esm2020/lib/admin/positions/positions-popup.component.mjs +77 -13
- package/esm2020/lib/admin/positions/positions.component.mjs +605 -31
- package/esm2020/lib/admin/profiler/outofoffice.component.mjs +184 -16
- package/esm2020/lib/admin/profiler/profiler.component.mjs +268 -21
- package/esm2020/lib/admin/system.service.mjs +6 -6
- package/esm2020/lib/admin/utility-wrapper.component.mjs +9 -9
- package/esm2020/lib/admin/utility.pane.component.mjs +23 -15
- package/esm2020/lib/app.component.mjs +19 -19
- package/esm2020/lib/bizdoc.module.mjs +30 -29
- package/esm2020/lib/browse/browse-items.component.mjs +629 -40
- package/esm2020/lib/browse/browse.mobile.component.mjs +218 -13
- package/esm2020/lib/browse/browse.pane.component.mjs +214 -18
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +161 -11
- package/esm2020/lib/browse/filter/filter.component.mjs +184 -27
- package/esm2020/lib/browse/folders-menu.component.mjs +74 -11
- package/esm2020/lib/chat/chat-info.mjs +10 -10
- package/esm2020/lib/chat/chat.mobile.component.mjs +32 -11
- package/esm2020/lib/chat/chat.service.mjs +7 -7
- package/esm2020/lib/chat/contacts.component.mjs +134 -15
- package/esm2020/lib/chat/contacts.pane.component.mjs +16 -12
- package/esm2020/lib/chat/conversation.component.mjs +128 -21
- package/esm2020/lib/chat/conversation.pane.component.mjs +13 -9
- package/esm2020/lib/compose/action/action-picker.component.mjs +107 -14
- package/esm2020/lib/compose/action/action.dialog.mjs +78 -13
- package/esm2020/lib/compose/action/action.pane.dialog.exp.mjs +58 -12
- package/esm2020/lib/compose/action/assign-action.component.mjs +93 -10
- package/esm2020/lib/compose/action/moveto-action.component.mjs +110 -10
- package/esm2020/lib/compose/action/return-action.component.mjs +55 -7
- package/esm2020/lib/compose/attachments/attachments.component.mjs +140 -13
- package/esm2020/lib/compose/attachments/preview/attachment-preview.component.mjs +147 -58
- package/esm2020/lib/compose/attachments/progress-button.directive.mjs +9 -9
- package/esm2020/lib/compose/box/box.component.mjs +160 -7
- package/esm2020/lib/compose/can-deactivate-changes.service.mjs +6 -6
- package/esm2020/lib/compose/comments/comment.component.mjs +189 -26
- package/esm2020/lib/compose/comments/comments.component.mjs +111 -22
- package/esm2020/lib/compose/comments/comments.pane.component.mjs +21 -12
- package/esm2020/lib/compose/comments/edit-comment.component.mjs +16 -10
- package/esm2020/lib/compose/comments/edits.component.mjs +47 -10
- package/esm2020/lib/compose/comments/quick-comment.component.exp.mjs +37 -10
- package/esm2020/lib/compose/comments/votes.component.mjs +45 -10
- package/esm2020/lib/compose/compose-resolve.service.mjs +11 -11
- package/esm2020/lib/compose/compose.mobile.component.mjs +297 -19
- package/esm2020/lib/compose/compose.pane.component.mjs +336 -36
- package/esm2020/lib/compose/copy/copy.dialog.mjs +58 -7
- package/esm2020/lib/compose/dismiss.service.mjs +6 -6
- package/esm2020/lib/compose/document-resolver.service.mjs +6 -6
- package/esm2020/lib/compose/document.component.mjs +28 -12
- package/esm2020/lib/compose/document.mobile.component.mjs +13 -9
- package/esm2020/lib/compose/document.pane.component.mjs +13 -9
- package/esm2020/lib/compose/events/events.component.mjs +33 -9
- package/esm2020/lib/compose/form-selector/form-selector.sheet.mjs +40 -7
- package/esm2020/lib/compose/form.component.mjs +119 -40
- package/esm2020/lib/compose/new-menu.component.mjs +45 -9
- package/esm2020/lib/compose/privilage.directive.mjs +31 -31
- package/esm2020/lib/compose/recipient-resolver.service.mjs +6 -6
- package/esm2020/lib/compose/state.component.mjs +9 -9
- package/esm2020/lib/compose/tag/tags.component.mjs +73 -16
- package/esm2020/lib/compose/trace/flow.component.mjs +13 -13
- package/esm2020/lib/compose/trace/people.component.mjs +23 -13
- package/esm2020/lib/compose/trace/trace.base.mjs +6 -6
- package/esm2020/lib/compose/trace/trace.component.mjs +306 -11
- package/esm2020/lib/compose/trace/trace.pane.component.mjs +31 -15
- package/esm2020/lib/compose/version-compare/version-compare.component.mjs +14 -14
- package/esm2020/lib/compose/version-compare/version-compare.directive.mjs +64 -64
- package/esm2020/lib/compose/version-compare/version.pane.component.mjs +66 -9
- package/esm2020/lib/core/NgComponentOutlet.mjs +18 -18
- package/esm2020/lib/core/account.service.mjs +7 -7
- package/esm2020/lib/core/animated-icon/animated-icon.directive.mjs +7 -7
- package/esm2020/lib/core/avatar/avatar.component.mjs +43 -16
- package/esm2020/lib/core/component-factory-resolver.mjs +6 -6
- package/esm2020/lib/core/controls/address.input.mjs +74 -45
- package/esm2020/lib/core/controls/auto-complete.input.mjs +129 -65
- package/esm2020/lib/core/controls/combination-picker-body.mjs +156 -20
- package/esm2020/lib/core/controls/combination-picker.mjs +71 -52
- package/esm2020/lib/core/controls/combination-pool.mjs +76 -20
- package/esm2020/lib/core/controls/file.input.mjs +316 -51
- package/esm2020/lib/core/controls/select.input.mjs +115 -59
- package/esm2020/lib/core/controls/time-picker.mjs +49 -25
- package/esm2020/lib/core/controls/timespan.input.mjs +59 -37
- package/esm2020/lib/core/datasource.service.mjs +7 -7
- package/esm2020/lib/core/guide/guide.component.mjs +88 -19
- package/esm2020/lib/core/guide/guide.service.mjs +10 -10
- package/esm2020/lib/core/guide/help-tip.component.mjs +36 -14
- package/esm2020/lib/core/http.interceptor.mjs +12 -12
- package/esm2020/lib/core/hub.service.mjs +9 -9
- package/esm2020/lib/core/identity/identity.component.mjs +38 -16
- package/esm2020/lib/core/info/attachment-info.service.mjs +6 -6
- package/esm2020/lib/core/info/document-info.service.mjs +6 -6
- package/esm2020/lib/core/info/location-info.component.mjs +12 -12
- package/esm2020/lib/core/info/map-info.mjs +6 -6
- package/esm2020/lib/core/layout/autocomplete.field.mjs +66 -22
- package/esm2020/lib/core/layout/checkbox.field.mjs +56 -18
- package/esm2020/lib/core/layout/checkbox.mjs +33 -19
- package/esm2020/lib/core/layout/date-range.field.mjs +47 -22
- package/esm2020/lib/core/layout/date.field.mjs +67 -23
- package/esm2020/lib/core/layout/expression.field.mjs +66 -24
- package/esm2020/lib/core/layout/file.field.mjs +64 -20
- package/esm2020/lib/core/layout/html.field.mjs +60 -18
- package/esm2020/lib/core/layout/input.base.mjs +6 -6
- package/esm2020/lib/core/layout/input.field.mjs +64 -20
- package/esm2020/lib/core/layout/layout.component.mjs +34 -26
- package/esm2020/lib/core/layout/numeric.field.mjs +72 -21
- package/esm2020/lib/core/layout/select.field.mjs +100 -33
- package/esm2020/lib/core/layout/switch.field.mjs +56 -18
- package/esm2020/lib/core/layout/textarea.field.mjs +60 -18
- package/esm2020/lib/core/layout/timespan.field.mjs +67 -22
- package/esm2020/lib/core/lottie-animation.mjs +22 -20
- package/esm2020/lib/core/mailbox.service.mjs +7 -7
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/none.component.mjs +39 -17
- package/esm2020/lib/core/pipes/action.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/calendar.pipe.mjs +10 -10
- package/esm2020/lib/core/pipes/date-format.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/daterange.pipe.mjs +13 -13
- package/esm2020/lib/core/pipes/difference.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/duration-format.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/duration.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/form.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/join.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/role.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/sort.pipe.mjs +17 -17
- package/esm2020/lib/core/pipes/state.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/time-ago.pipe.mjs +10 -10
- package/esm2020/lib/core/pipes/type-value.pipe.mjs +9 -9
- package/esm2020/lib/core/pipes/user-name.pipe.mjs +7 -7
- package/esm2020/lib/core/popup/popup.component.mjs +26 -13
- package/esm2020/lib/core/popup/popup.service.mjs +7 -7
- package/esm2020/lib/core/popup/tooltip.directive.mjs +34 -34
- package/esm2020/lib/core/prompt/ask/ask.dialog.mjs +34 -10
- package/esm2020/lib/core/prompt/mask/mask.component.mjs +18 -10
- package/esm2020/lib/core/prompt.service.mjs +7 -7
- package/esm2020/lib/core/router.mjs +11 -11
- package/esm2020/lib/core/save-changes.dialog.mjs +43 -7
- package/esm2020/lib/core/session.service.mjs +10 -10
- package/esm2020/lib/core/slots/router.directive.mjs +29 -27
- package/esm2020/lib/core/slots/router.service.mjs +7 -7
- package/esm2020/lib/core/slots/slots.component.mjs +296 -41
- package/esm2020/lib/core/tagging/documents.component.mjs +33 -7
- package/esm2020/lib/core/tagging/edit-input.component.mjs +141 -38
- package/esm2020/lib/core/tagging/emoji.component.mjs +15 -12
- package/esm2020/lib/core/tagging/tagging-item.directive.mjs +31 -23
- package/esm2020/lib/core/tagging/tagging.component-base.mjs +14 -9
- package/esm2020/lib/core/tagging/tagging.directive.mjs +23 -21
- package/esm2020/lib/core/tagging/tagging.pipe.mjs +7 -7
- package/esm2020/lib/core/tagging/users.component.mjs +37 -7
- package/esm2020/lib/core/translate.service.mjs +7 -7
- package/esm2020/lib/core/translations.mjs +4 -1
- package/esm2020/lib/core/window-title.service.mjs +10 -10
- package/esm2020/lib/cube/accum/accum.component.mjs +41 -39
- package/esm2020/lib/cube/chart/chart.component.mjs +47 -45
- package/esm2020/lib/cube/cube-info.service.mjs +6 -6
- package/esm2020/lib/cube/cube-menu.component.mjs +70 -11
- package/esm2020/lib/cube/cube-view.component.mjs +34 -32
- package/esm2020/lib/cube/cube.service.mjs +10 -10
- package/esm2020/lib/cube/explore/document-item.component.mjs +15 -11
- package/esm2020/lib/cube/explore/explore-item.component.mjs +11 -11
- package/esm2020/lib/cube/explore/explore-items.component.mjs +167 -37
- package/esm2020/lib/cube/explore/explore.pane.component.mjs +65 -12
- package/esm2020/lib/cube/explore/item-resolver.service.mjs +11 -11
- package/esm2020/lib/cube/explore/item.pane.component.mjs +13 -9
- package/esm2020/lib/cube/filter/filter-tags.component.exp.mjs +59 -15
- package/esm2020/lib/cube/filter/filter.component.mjs +153 -17
- package/esm2020/lib/cube/grid/grid.component.mjs +33 -31
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +39 -37
- package/esm2020/lib/cube/matrix/matrix.base.mjs +6 -6
- package/esm2020/lib/cube/matrix/matrix.mobile.component.mjs +112 -10
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +123 -12
- package/esm2020/lib/cube/matrix/popup.component.mjs +120 -16
- package/esm2020/lib/cube/matrix/table.component.mjs +178 -45
- package/esm2020/lib/cube/parallel/parallel.component.mjs +57 -28
- package/esm2020/lib/cube/pivot/pivot.component.mjs +43 -40
- package/esm2020/lib/cube/sum/sum.component.mjs +238 -32
- package/esm2020/lib/cube/view-base.mjs +6 -6
- package/esm2020/lib/cube/view.mobile.component.mjs +177 -19
- package/esm2020/lib/cube/view.pane.component.mjs +109 -15
- package/esm2020/lib/dashboard/actions/actions.widget.mjs +28 -21
- package/esm2020/lib/dashboard/cube/accum-cube.widget.mjs +17 -15
- package/esm2020/lib/dashboard/cube/compare.widget.mjs +25 -18
- package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +6 -6
- package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +10 -10
- package/esm2020/lib/dashboard/cube/cube-chart.widget.mjs +17 -15
- package/esm2020/lib/dashboard/cube/documents.widget.mjs +114 -19
- package/esm2020/lib/dashboard/cube/filter/filter.component.mjs +13 -7
- package/esm2020/lib/dashboard/dashboard.component.mjs +90 -12
- package/esm2020/lib/dashboard/dashboard.pane.component.mjs +9 -7
- package/esm2020/lib/dashboard/recents/recents.widget.mjs +164 -19
- package/esm2020/lib/dashboard/score/activity.widget.mjs +18 -13
- package/esm2020/lib/dashboard/score/compare-groups.widget.mjs +25 -18
- package/esm2020/lib/dashboard/score/peers-performance.widget.mjs +26 -19
- package/esm2020/lib/dashboard/score/pending-results.widget.mjs +143 -19
- package/esm2020/lib/dashboard/score/personal-score.widget.mjs +23 -18
- package/esm2020/lib/dashboard/widget-item.component.mjs +17 -15
- package/esm2020/lib/desktop.module.mjs +58 -57
- package/esm2020/lib/home/about/about.dialog.mjs +97 -7
- package/esm2020/lib/home/home-base.component.mjs +6 -6
- package/esm2020/lib/home/home.desktop.component.mjs +336 -16
- package/esm2020/lib/home/home.mobile.component.mjs +310 -16
- package/esm2020/lib/home/notifications/notifications.component.mjs +78 -7
- package/esm2020/lib/home/options/options.component.mjs +171 -7
- package/esm2020/lib/home/outofoffice/outofoffice.component.mjs +40 -10
- package/esm2020/lib/home/search.service.mjs +6 -6
- package/esm2020/lib/home/sign/sign.component.mjs +32 -7
- package/esm2020/lib/home/tools.component.mjs +87 -13
- package/esm2020/lib/impersonate/impersonate.component.mjs +61 -7
- package/esm2020/lib/mobile.module.mjs +34 -33
- package/esm2020/lib/modules/chart.module.mjs +22 -21
- package/esm2020/lib/modules/circular-gauge.module.mjs +13 -12
- package/esm2020/lib/modules/datepicker.intl.mjs +6 -6
- package/esm2020/lib/modules/dayjs.module.mjs +11 -11
- package/esm2020/lib/modules/diagram.module.mjs +24 -23
- package/esm2020/lib/modules/gantt.module.mjs +13 -12
- package/esm2020/lib/modules/grid.module.mjs +16 -15
- package/esm2020/lib/modules/material.module.mjs +87 -86
- package/esm2020/lib/modules/paginator.intl.mjs +6 -6
- package/esm2020/lib/modules/pivot.module.mjs +17 -16
- package/esm2020/lib/modules/schedule.module.mjs +15 -14
- package/esm2020/lib/modules/spreadsheet.module.mjs +21 -20
- package/esm2020/lib/modules/stepper.intl.mjs +6 -6
- package/esm2020/lib/modules/texteditor.module.mjs +19 -18
- package/esm2020/lib/notifications/filter.component.mjs +22 -7
- package/esm2020/lib/notifications/notifications-table.component.mjs +214 -10
- package/esm2020/lib/notifications/notifications.mobile.component.mjs +11 -9
- package/esm2020/lib/notifications/notifications.pane.component.mjs +14 -12
- package/esm2020/lib/notifications/notifications.service.mjs +6 -6
- package/esm2020/lib/notifications/types/commented.notification.mjs +42 -15
- package/esm2020/lib/notifications/types/cube-anomaly.notification.mjs +25 -15
- package/esm2020/lib/notifications/types/escalated.notification.mjs +24 -12
- package/esm2020/lib/notifications/types/liked.notification.mjs +42 -15
- package/esm2020/lib/notifications/types/long-running-task.notification.mjs +17 -13
- package/esm2020/lib/notifications/types/notification-base.mjs +11 -9
- package/esm2020/lib/notifications/types/nudge.notification.mjs +18 -12
- package/esm2020/lib/notifications/types/state-changed.notification.mjs +18 -10
- package/esm2020/lib/notifications/types/tagged.notification.mjs +26 -14
- package/esm2020/lib/notifications/types/text.notification.mjs +14 -10
- package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +24 -15
- package/esm2020/lib/options/options.component.mjs +350 -25
- package/esm2020/lib/options/options.service.mjs +6 -6
- package/esm2020/lib/reports/arguments-component.mjs +20 -20
- package/esm2020/lib/reports/cube/documents.component.mjs +9 -9
- package/esm2020/lib/reports/cube/grid-documents.component.mjs +77 -10
- package/esm2020/lib/reports/cube/table-documents.component.mjs +175 -13
- package/esm2020/lib/reports/cube/usage-args.component.mjs +13 -7
- package/esm2020/lib/reports/cube/usage-base.mjs +6 -6
- package/esm2020/lib/reports/cube/usage-chart.component.mjs +15 -13
- package/esm2020/lib/reports/cube/usage-pivot.component.mjs +21 -14
- package/esm2020/lib/reports/cube/usage.component.mjs +9 -9
- package/esm2020/lib/reports/report-viewer.component.mjs +36 -20
- package/esm2020/lib/reports/report.mobile.component.mjs +105 -13
- package/esm2020/lib/reports/report.pane.component.mjs +92 -15
- package/esm2020/lib/reports/reports-menu.component.mjs +40 -11
- package/esm2020/lib/reports/substitution/substitution.component.mjs +157 -10
- package/esm2020/lib/reports/table/table-view.component.mjs +74 -16
- package/esm2020/lib/reports/tasks/tasks.component.mjs +38 -10
- package/esm2020/lib/scheduler/schedule.component.mjs +110 -14
- package/esm2020/lib/scheduler/scheduler.mobile.component.mjs +15 -9
- package/esm2020/lib/scheduler/scheduler.pane.component.mjs +19 -12
- package/esm2020/lib/shared.module.mjs +197 -196
- package/esm2020/lib/system.module.mjs +64 -62
- package/esm2020/lib/views/cube/chart.component.mjs +45 -7
- package/esm2020/lib/views/cube/cube-base.mjs +6 -6
- package/esm2020/lib/views/cube/explore.component.mjs +128 -7
- package/esm2020/lib/views/cube/matrix.component.mjs +164 -10
- package/esm2020/lib/views/cube/parallel.component.mjs +20 -7
- package/esm2020/lib/views/cube/pivot.component.mjs +20 -7
- package/esm2020/lib/views/cube/sum.component.mjs +116 -7
- package/esm2020/lib/views/cube/view.component.mjs +137 -10
- package/esm2020/lib/views/timeline/timeline.component.exp.mjs +14 -12
- package/esm2020/lib/views/view-item.component.mjs +20 -18
- package/esm2020/lib/views/views.component.mjs +31 -12
- package/esm2020/lib/views/views.mobile.component.mjs +11 -7
- package/esm2020/lib/views/views.pane.component.mjs +19 -10
- package/fesm2015/bizdoc-core.mjs +25737 -2457
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +24051 -5129
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/admin/admin-dismiss.service.d.ts +1 -0
- package/lib/admin/admin-dismiss.service.d.ts.map +1 -0
- package/lib/admin/admin-menu.component.d.ts +1 -0
- package/lib/admin/admin-menu.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts +36 -0
- package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/designer-element.component.d.ts +6 -2
- package/lib/admin/configuration-designer/designer-element.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/designer.base.d.ts +25 -3
- package/lib/admin/configuration-designer/designer.base.d.ts.map +1 -0
- package/lib/admin/configuration-designer/designer.component.d.ts +1 -0
- package/lib/admin/configuration-designer/designer.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/action.component.d.ts +16 -1
- package/lib/admin/configuration-designer/elements/action.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/box-form.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/box-form.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/cube-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/cube-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/documents-report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/documents-report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/explore-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/explore-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/folder.component.d.ts +13 -1
- package/lib/admin/configuration-designer/elements/folder.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/form.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/form.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/guide.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/guide.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/role.component.d.ts +3 -0
- package/lib/admin/configuration-designer/elements/role.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/rule.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/rule.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/state.component.d.ts +5 -0
- package/lib/admin/configuration-designer/elements/state.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/sum-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/sum-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/type.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/type.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/usage-report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/usage-report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/utility.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/utility.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/icon-picker.component.d.ts +1 -0
- package/lib/admin/configuration-designer/icon-picker.component.d.ts.map +1 -0
- package/lib/admin/core/ace.input.d.ts +1 -0
- package/lib/admin/core/ace.input.d.ts.map +1 -0
- package/lib/admin/core/color-picker.input.d.ts +1 -0
- package/lib/admin/core/color-picker.input.d.ts.map +1 -0
- package/lib/admin/core/search.input.d.ts +1 -0
- package/lib/admin/core/search.input.d.ts.map +1 -0
- package/lib/admin/diff/configuration-diff.component.d.ts +1 -0
- package/lib/admin/diff/configuration-diff.component.d.ts.map +1 -0
- package/lib/admin/document-trace/document-trace.component.d.ts +1 -0
- package/lib/admin/document-trace/document-trace.component.d.ts.map +1 -0
- package/lib/admin/document-trace/reassign.dialog.d.ts +1 -0
- package/lib/admin/document-trace/reassign.dialog.d.ts.map +1 -0
- package/lib/admin/document-trace/timeline.d.ts +1 -0
- package/lib/admin/document-trace/timeline.d.ts.map +1 -0
- package/lib/admin/document-trace/trace-element.component.d.ts +1 -0
- package/lib/admin/document-trace/trace-element.component.d.ts.map +1 -0
- package/lib/admin/form/designer/designer.component.d.ts +1 -0
- package/lib/admin/form/designer/designer.component.d.ts.map +1 -0
- package/lib/admin/form/form.resolve.service.d.ts +1 -0
- package/lib/admin/form/form.resolve.service.d.ts.map +1 -0
- package/lib/admin/form/workflow/node-ref.d.ts +1 -0
- package/lib/admin/form/workflow/node-ref.d.ts.map +1 -0
- package/lib/admin/form/workflow/node.component.d.ts +1 -0
- package/lib/admin/form/workflow/node.component.d.ts.map +1 -0
- package/lib/admin/form/workflow/role-node.component.d.ts +1 -0
- package/lib/admin/form/workflow/role-node.component.d.ts.map +1 -0
- package/lib/admin/form/workflow/workflow.component.d.ts +1 -0
- package/lib/admin/form/workflow/workflow.component.d.ts.map +1 -0
- package/lib/admin/indices/manage-cube-index.component.d.ts +1 -0
- package/lib/admin/indices/manage-cube-index.component.d.ts.map +1 -0
- package/lib/admin/patterns/patterns.component.d.ts +1 -0
- package/lib/admin/patterns/patterns.component.d.ts.map +1 -0
- package/lib/admin/permissions/permissions.component.d.ts +1 -0
- package/lib/admin/permissions/permissions.component.d.ts.map +1 -0
- package/lib/admin/positions/positions-popup.component.d.ts +1 -0
- package/lib/admin/positions/positions-popup.component.d.ts.map +1 -0
- package/lib/admin/positions/positions.component.d.ts +1 -0
- package/lib/admin/positions/positions.component.d.ts.map +1 -0
- package/lib/admin/profiler/outofoffice.component.d.ts +1 -0
- package/lib/admin/profiler/outofoffice.component.d.ts.map +1 -0
- package/lib/admin/profiler/profiler.component.d.ts +1 -0
- package/lib/admin/profiler/profiler.component.d.ts.map +1 -0
- package/lib/admin/system.service.d.ts +1 -0
- package/lib/admin/system.service.d.ts.map +1 -0
- package/lib/admin/utility-ref.d.ts +1 -0
- package/lib/admin/utility-ref.d.ts.map +1 -0
- package/lib/admin/utility-wrapper.component.d.ts +1 -0
- package/lib/admin/utility-wrapper.component.d.ts.map +1 -0
- package/lib/admin/utility.pane.component.d.ts +1 -0
- package/lib/admin/utility.pane.component.d.ts.map +1 -0
- package/lib/app.component.d.ts +1 -0
- package/lib/app.component.d.ts.map +1 -0
- package/lib/bizdoc.module.d.ts +1 -0
- package/lib/bizdoc.module.d.ts.map +1 -0
- package/lib/browse/browse-items.component.d.ts +1 -0
- package/lib/browse/browse-items.component.d.ts.map +1 -0
- package/lib/browse/browse.mobile.component.d.ts +1 -0
- package/lib/browse/browse.mobile.component.d.ts.map +1 -0
- package/lib/browse/browse.pane.component.d.ts +1 -0
- package/lib/browse/browse.pane.component.d.ts.map +1 -0
- package/lib/browse/expanded-item/expanded-item.component.d.ts +1 -0
- package/lib/browse/expanded-item/expanded-item.component.d.ts.map +1 -0
- package/lib/browse/filter/filter.component.d.ts +1 -0
- package/lib/browse/filter/filter.component.d.ts.map +1 -0
- package/lib/browse/folders-menu.component.d.ts +1 -0
- package/lib/browse/folders-menu.component.d.ts.map +1 -0
- package/lib/chat/chat-info.d.ts +1 -0
- package/lib/chat/chat-info.d.ts.map +1 -0
- package/lib/chat/chat.mobile.component.d.ts +1 -0
- package/lib/chat/chat.mobile.component.d.ts.map +1 -0
- package/lib/chat/chat.service.d.ts +1 -0
- package/lib/chat/chat.service.d.ts.map +1 -0
- package/lib/chat/contacts.component.d.ts +1 -0
- package/lib/chat/contacts.component.d.ts.map +1 -0
- package/lib/chat/contacts.pane.component.d.ts +1 -0
- package/lib/chat/contacts.pane.component.d.ts.map +1 -0
- package/lib/chat/conversation.component.d.ts +1 -0
- package/lib/chat/conversation.component.d.ts.map +1 -0
- package/lib/chat/conversation.pane.component.d.ts +1 -0
- package/lib/chat/conversation.pane.component.d.ts.map +1 -0
- package/lib/compose/action/action-picker.component.d.ts +1 -0
- package/lib/compose/action/action-picker.component.d.ts.map +1 -0
- package/lib/compose/action/action-ref.d.ts +1 -0
- package/lib/compose/action/action-ref.d.ts.map +1 -0
- package/lib/compose/action/action.base.d.ts +1 -0
- package/lib/compose/action/action.base.d.ts.map +1 -0
- package/lib/compose/action/action.dialog.d.ts +1 -0
- package/lib/compose/action/action.dialog.d.ts.map +1 -0
- package/lib/compose/action/action.pane.dialog.exp.d.ts +1 -0
- package/lib/compose/action/action.pane.dialog.exp.d.ts.map +1 -0
- package/lib/compose/action/assign-action.component.d.ts +1 -0
- package/lib/compose/action/assign-action.component.d.ts.map +1 -0
- package/lib/compose/action/moveto-action.component.d.ts +1 -0
- package/lib/compose/action/moveto-action.component.d.ts.map +1 -0
- package/lib/compose/action/return-action.component.d.ts +1 -0
- package/lib/compose/action/return-action.component.d.ts.map +1 -0
- package/lib/compose/attachments/attachments.component.d.ts +1 -0
- package/lib/compose/attachments/attachments.component.d.ts.map +1 -0
- package/lib/compose/attachments/preview/attachment-preview.component.d.ts +1 -0
- package/lib/compose/attachments/preview/attachment-preview.component.d.ts.map +1 -0
- package/lib/compose/attachments/progress-button.directive.d.ts +1 -0
- package/lib/compose/attachments/progress-button.directive.d.ts.map +1 -0
- package/lib/compose/box/box.component.d.ts +1 -0
- package/lib/compose/box/box.component.d.ts.map +1 -0
- package/lib/compose/can-deactivate-changes.service.d.ts +1 -0
- package/lib/compose/can-deactivate-changes.service.d.ts.map +1 -0
- package/lib/compose/comments/comment.component.d.ts +1 -0
- package/lib/compose/comments/comment.component.d.ts.map +1 -0
- package/lib/compose/comments/comments.component.d.ts +1 -0
- package/lib/compose/comments/comments.component.d.ts.map +1 -0
- package/lib/compose/comments/comments.pane.component.d.ts +1 -0
- package/lib/compose/comments/comments.pane.component.d.ts.map +1 -0
- package/lib/compose/comments/edit-comment.component.d.ts +1 -0
- package/lib/compose/comments/edit-comment.component.d.ts.map +1 -0
- package/lib/compose/comments/edits.component.d.ts +1 -0
- package/lib/compose/comments/edits.component.d.ts.map +1 -0
- package/lib/compose/comments/quick-comment.component.exp.d.ts +1 -0
- package/lib/compose/comments/quick-comment.component.exp.d.ts.map +1 -0
- package/lib/compose/comments/votes.component.d.ts +1 -0
- package/lib/compose/comments/votes.component.d.ts.map +1 -0
- package/lib/compose/compose-resolve.service.d.ts +1 -0
- package/lib/compose/compose-resolve.service.d.ts.map +1 -0
- package/lib/compose/compose.mobile.component.d.ts +1 -0
- package/lib/compose/compose.mobile.component.d.ts.map +1 -0
- package/lib/compose/compose.pane.component.d.ts +1 -0
- package/lib/compose/compose.pane.component.d.ts.map +1 -0
- package/lib/compose/copy/copy.dialog.d.ts +1 -0
- package/lib/compose/copy/copy.dialog.d.ts.map +1 -0
- package/lib/compose/dismiss.service.d.ts +1 -0
- package/lib/compose/dismiss.service.d.ts.map +1 -0
- package/lib/compose/document-resolver.service.d.ts +1 -0
- package/lib/compose/document-resolver.service.d.ts.map +1 -0
- package/lib/compose/document.component.d.ts +1 -0
- package/lib/compose/document.component.d.ts.map +1 -0
- package/lib/compose/document.mobile.component.d.ts +1 -0
- package/lib/compose/document.mobile.component.d.ts.map +1 -0
- package/lib/compose/document.pane.component.d.ts +1 -0
- package/lib/compose/document.pane.component.d.ts.map +1 -0
- package/lib/compose/events/events.component.d.ts +1 -0
- package/lib/compose/events/events.component.d.ts.map +1 -0
- package/lib/compose/form-ref.d.ts +1 -0
- package/lib/compose/form-ref.d.ts.map +1 -0
- package/lib/compose/form-selector/form-selector.sheet.d.ts +1 -0
- package/lib/compose/form-selector/form-selector.sheet.d.ts.map +1 -0
- package/lib/compose/form.component.d.ts +1 -0
- package/lib/compose/form.component.d.ts.map +1 -0
- package/lib/compose/new-menu.component.d.ts +1 -0
- package/lib/compose/new-menu.component.d.ts.map +1 -0
- package/lib/compose/privilage.directive.d.ts +1 -0
- package/lib/compose/privilage.directive.d.ts.map +1 -0
- package/lib/compose/recipient-resolver.service.d.ts +1 -0
- package/lib/compose/recipient-resolver.service.d.ts.map +1 -0
- package/lib/compose/state.component.d.ts +1 -0
- package/lib/compose/state.component.d.ts.map +1 -0
- package/lib/compose/tag/tags.component.d.ts +1 -0
- package/lib/compose/tag/tags.component.d.ts.map +1 -0
- package/lib/compose/trace/flow.component.d.ts +1 -0
- package/lib/compose/trace/flow.component.d.ts.map +1 -0
- package/lib/compose/trace/people.component.d.ts +1 -0
- package/lib/compose/trace/people.component.d.ts.map +1 -0
- package/lib/compose/trace/trace.base.d.ts +1 -0
- package/lib/compose/trace/trace.base.d.ts.map +1 -0
- package/lib/compose/trace/trace.component.d.ts +1 -0
- package/lib/compose/trace/trace.component.d.ts.map +1 -0
- package/lib/compose/trace/trace.pane.component.d.ts +1 -0
- package/lib/compose/trace/trace.pane.component.d.ts.map +1 -0
- package/lib/compose/version-compare/version-compare.component.d.ts +1 -0
- package/lib/compose/version-compare/version-compare.component.d.ts.map +1 -0
- package/lib/compose/version-compare/version-compare.directive.d.ts +1 -0
- package/lib/compose/version-compare/version-compare.directive.d.ts.map +1 -0
- package/lib/compose/version-compare/version.pane.component.d.ts +1 -0
- package/lib/compose/version-compare/version.pane.component.d.ts.map +1 -0
- package/lib/core/NgComponentOutlet.d.ts +1 -0
- package/lib/core/NgComponentOutlet.d.ts.map +1 -0
- package/lib/core/account.service.d.ts +1 -0
- package/lib/core/account.service.d.ts.map +1 -0
- package/lib/core/animated-icon/animated-icon.directive.d.ts +1 -0
- package/lib/core/animated-icon/animated-icon.directive.d.ts.map +1 -0
- package/lib/core/animations.d.ts +1 -0
- package/lib/core/animations.d.ts.map +1 -0
- package/lib/core/authentication.d.ts +1 -0
- package/lib/core/authentication.d.ts.map +1 -0
- package/lib/core/avatar/avatar.component.d.ts +1 -0
- package/lib/core/avatar/avatar.component.d.ts.map +1 -0
- package/lib/core/base.d.ts +1 -0
- package/lib/core/base.d.ts.map +1 -0
- package/lib/core/colors.d.ts +1 -0
- package/lib/core/colors.d.ts.map +1 -0
- package/lib/core/component-factory-resolver.d.ts +1 -0
- package/lib/core/component-factory-resolver.d.ts.map +1 -0
- package/lib/core/configuration.d.ts +1 -0
- package/lib/core/configuration.d.ts.map +1 -0
- package/lib/core/controls/address.input.d.ts +1 -0
- package/lib/core/controls/address.input.d.ts.map +1 -0
- package/lib/core/controls/auto-complete.input.d.ts +1 -0
- package/lib/core/controls/auto-complete.input.d.ts.map +1 -0
- package/lib/core/controls/combination-picker-body.d.ts +1 -0
- package/lib/core/controls/combination-picker-body.d.ts.map +1 -0
- package/lib/core/controls/combination-picker.d.ts +1 -0
- package/lib/core/controls/combination-picker.d.ts.map +1 -0
- package/lib/core/controls/combination-pool.d.ts +1 -0
- package/lib/core/controls/combination-pool.d.ts.map +1 -0
- package/lib/core/controls/file.input.d.ts +1 -0
- package/lib/core/controls/file.input.d.ts.map +1 -0
- package/lib/core/controls/select.input.d.ts +1 -0
- package/lib/core/controls/select.input.d.ts.map +1 -0
- package/lib/core/controls/time-picker.d.ts +1 -0
- package/lib/core/controls/time-picker.d.ts.map +1 -0
- package/lib/core/controls/timespan.input.d.ts +1 -0
- package/lib/core/controls/timespan.input.d.ts.map +1 -0
- package/lib/core/datasource.service.d.ts +1 -0
- package/lib/core/datasource.service.d.ts.map +1 -0
- package/lib/core/decorators.d.ts +1 -0
- package/lib/core/decorators.d.ts.map +1 -0
- package/lib/core/firebase.service.d.ts +1 -0
- package/lib/core/firebase.service.d.ts.map +1 -0
- package/lib/core/functions.d.ts +1 -0
- package/lib/core/functions.d.ts.map +1 -0
- package/lib/core/guide/guide.component.d.ts +1 -0
- package/lib/core/guide/guide.component.d.ts.map +1 -0
- package/lib/core/guide/guide.service.d.ts +1 -0
- package/lib/core/guide/guide.service.d.ts.map +1 -0
- package/lib/core/guide/help-tip.component.d.ts +1 -0
- package/lib/core/guide/help-tip.component.d.ts.map +1 -0
- package/lib/core/http.interceptor.d.ts +1 -0
- package/lib/core/http.interceptor.d.ts.map +1 -0
- package/lib/core/hub.service.d.ts +1 -0
- package/lib/core/hub.service.d.ts.map +1 -0
- package/lib/core/identity/identity.component.d.ts +1 -0
- package/lib/core/identity/identity.component.d.ts.map +1 -0
- package/lib/core/info/attachment-info.service.d.ts +1 -0
- package/lib/core/info/attachment-info.service.d.ts.map +1 -0
- package/lib/core/info/document-info.service.d.ts +1 -0
- package/lib/core/info/document-info.service.d.ts.map +1 -0
- package/lib/core/info/location-info.component.d.ts +1 -0
- package/lib/core/info/location-info.component.d.ts.map +1 -0
- package/lib/core/info/map-info.d.ts +1 -0
- package/lib/core/info/map-info.d.ts.map +1 -0
- package/lib/core/layout/autocomplete.field.d.ts +1 -0
- package/lib/core/layout/autocomplete.field.d.ts.map +1 -0
- package/lib/core/layout/checkbox.d.ts +1 -0
- package/lib/core/layout/checkbox.d.ts.map +1 -0
- package/lib/core/layout/checkbox.field.d.ts +1 -0
- package/lib/core/layout/checkbox.field.d.ts.map +1 -0
- package/lib/core/layout/date-range.field.d.ts +1 -0
- package/lib/core/layout/date-range.field.d.ts.map +1 -0
- package/lib/core/layout/date.field.d.ts +1 -0
- package/lib/core/layout/date.field.d.ts.map +1 -0
- package/lib/core/layout/expression.field.d.ts +1 -0
- package/lib/core/layout/expression.field.d.ts.map +1 -0
- package/lib/core/layout/file.field.d.ts +1 -0
- package/lib/core/layout/file.field.d.ts.map +1 -0
- package/lib/core/layout/html.field.d.ts +1 -0
- package/lib/core/layout/html.field.d.ts.map +1 -0
- package/lib/core/layout/input.base.d.ts +1 -0
- package/lib/core/layout/input.base.d.ts.map +1 -0
- package/lib/core/layout/input.field.d.ts +1 -0
- package/lib/core/layout/input.field.d.ts.map +1 -0
- package/lib/core/layout/layout.component.d.ts +1 -0
- package/lib/core/layout/layout.component.d.ts.map +1 -0
- package/lib/core/layout/numeric.field.d.ts +1 -0
- package/lib/core/layout/numeric.field.d.ts.map +1 -0
- package/lib/core/layout/select.field.d.ts +1 -0
- package/lib/core/layout/select.field.d.ts.map +1 -0
- package/lib/core/layout/switch.field.d.ts +1 -0
- package/lib/core/layout/switch.field.d.ts.map +1 -0
- package/lib/core/layout/textarea.field.d.ts +1 -0
- package/lib/core/layout/textarea.field.d.ts.map +1 -0
- package/lib/core/layout/timespan.field.d.ts +1 -0
- package/lib/core/layout/timespan.field.d.ts.map +1 -0
- package/lib/core/lottie-animation.d.ts +1 -0
- package/lib/core/lottie-animation.d.ts.map +1 -0
- package/lib/core/mailbox.service.d.ts +1 -0
- package/lib/core/mailbox.service.d.ts.map +1 -0
- package/lib/core/models.d.ts +6 -4
- package/lib/core/models.d.ts.map +1 -0
- package/lib/core/none.component.d.ts +1 -0
- package/lib/core/none.component.d.ts.map +1 -0
- package/lib/core/pipes/action.pipe.d.ts +1 -0
- package/lib/core/pipes/action.pipe.d.ts.map +1 -0
- package/lib/core/pipes/calendar.pipe.d.ts +1 -0
- package/lib/core/pipes/calendar.pipe.d.ts.map +1 -0
- package/lib/core/pipes/date-format.pipe.d.ts +1 -0
- package/lib/core/pipes/date-format.pipe.d.ts.map +1 -0
- package/lib/core/pipes/daterange.pipe.d.ts +1 -0
- package/lib/core/pipes/daterange.pipe.d.ts.map +1 -0
- package/lib/core/pipes/difference.pipe.d.ts +1 -0
- package/lib/core/pipes/difference.pipe.d.ts.map +1 -0
- package/lib/core/pipes/duration-format.pipe.d.ts +1 -0
- package/lib/core/pipes/duration-format.pipe.d.ts.map +1 -0
- package/lib/core/pipes/duration.pipe.d.ts +1 -0
- package/lib/core/pipes/duration.pipe.d.ts.map +1 -0
- package/lib/core/pipes/form.pipe.d.ts +1 -0
- package/lib/core/pipes/form.pipe.d.ts.map +1 -0
- package/lib/core/pipes/join.pipe.d.ts +1 -0
- package/lib/core/pipes/join.pipe.d.ts.map +1 -0
- package/lib/core/pipes/role.pipe.d.ts +1 -0
- package/lib/core/pipes/role.pipe.d.ts.map +1 -0
- package/lib/core/pipes/sanitize-html.pipe.d.ts.map +1 -0
- package/lib/core/pipes/sort.pipe.d.ts +1 -0
- package/lib/core/pipes/sort.pipe.d.ts.map +1 -0
- package/lib/core/pipes/state.pipe.d.ts +1 -0
- package/lib/core/pipes/state.pipe.d.ts.map +1 -0
- package/lib/core/pipes/time-ago.pipe.d.ts +1 -0
- package/lib/core/pipes/time-ago.pipe.d.ts.map +1 -0
- package/lib/core/pipes/translate.pipe.d.ts.map +1 -0
- package/lib/core/pipes/type-value.pipe.d.ts +1 -0
- package/lib/core/pipes/type-value.pipe.d.ts.map +1 -0
- package/lib/core/pipes/user-name.pipe.d.ts +1 -0
- package/lib/core/pipes/user-name.pipe.d.ts.map +1 -0
- package/lib/core/popup/popup-ref.d.ts +1 -0
- package/lib/core/popup/popup-ref.d.ts.map +1 -0
- package/lib/core/popup/popup.component.d.ts +1 -0
- package/lib/core/popup/popup.component.d.ts.map +1 -0
- package/lib/core/popup/popup.service.d.ts +1 -0
- package/lib/core/popup/popup.service.d.ts.map +1 -0
- package/lib/core/popup/tooltip.directive.d.ts +1 -0
- package/lib/core/popup/tooltip.directive.d.ts.map +1 -0
- package/lib/core/prompt/ask/ask.dialog.d.ts +1 -0
- package/lib/core/prompt/ask/ask.dialog.d.ts.map +1 -0
- package/lib/core/prompt/mask/mask.component.d.ts +1 -0
- package/lib/core/prompt/mask/mask.component.d.ts.map +1 -0
- package/lib/core/prompt.service.d.ts +1 -0
- package/lib/core/prompt.service.d.ts.map +1 -0
- package/lib/core/router.d.ts +1 -0
- package/lib/core/router.d.ts.map +1 -0
- package/lib/core/save-changes.dialog.d.ts +1 -0
- package/lib/core/save-changes.dialog.d.ts.map +1 -0
- package/lib/core/session.service.d.ts +1 -0
- package/lib/core/session.service.d.ts.map +1 -0
- package/lib/core/slots/pane-ref.d.ts +1 -0
- package/lib/core/slots/pane-ref.d.ts.map +1 -0
- package/lib/core/slots/router.directive.d.ts +1 -0
- package/lib/core/slots/router.directive.d.ts.map +1 -0
- package/lib/core/slots/router.service.d.ts +1 -0
- package/lib/core/slots/router.service.d.ts.map +1 -0
- package/lib/core/slots/slots.component.d.ts +1 -0
- package/lib/core/slots/slots.component.d.ts.map +1 -0
- package/lib/core/tagging/documents.component.d.ts +1 -0
- package/lib/core/tagging/documents.component.d.ts.map +1 -0
- package/lib/core/tagging/edit-input.component.d.ts +1 -0
- package/lib/core/tagging/edit-input.component.d.ts.map +1 -0
- package/lib/core/tagging/emoji.component.d.ts +1 -0
- package/lib/core/tagging/emoji.component.d.ts.map +1 -0
- package/lib/core/tagging/tagging-item.directive.d.ts +1 -0
- package/lib/core/tagging/tagging-item.directive.d.ts.map +1 -0
- package/lib/core/tagging/tagging.component-base.d.ts +1 -0
- package/lib/core/tagging/tagging.component-base.d.ts.map +1 -0
- package/lib/core/tagging/tagging.directive.d.ts +1 -0
- package/lib/core/tagging/tagging.directive.d.ts.map +1 -0
- package/lib/core/tagging/tagging.pipe.d.ts +1 -0
- package/lib/core/tagging/tagging.pipe.d.ts.map +1 -0
- package/lib/core/tagging/users.component.d.ts +1 -0
- package/lib/core/tagging/users.component.d.ts.map +1 -0
- package/lib/core/translate.service.d.ts +1 -0
- package/lib/core/translate.service.d.ts.map +1 -0
- package/lib/core/translations.d.ts +4 -0
- package/lib/core/translations.d.ts.map +1 -0
- package/lib/core/window-title.service.d.ts +1 -0
- package/lib/core/window-title.service.d.ts.map +1 -0
- package/lib/cube/accum/accum.component.d.ts +1 -0
- package/lib/cube/accum/accum.component.d.ts.map +1 -0
- package/lib/cube/chart/chart.component.d.ts +1 -0
- package/lib/cube/chart/chart.component.d.ts.map +1 -0
- package/lib/cube/cube-info.service.d.ts +1 -0
- package/lib/cube/cube-info.service.d.ts.map +1 -0
- package/lib/cube/cube-menu.component.d.ts +1 -0
- package/lib/cube/cube-menu.component.d.ts.map +1 -0
- package/lib/cube/cube-view.component.d.ts +1 -0
- package/lib/cube/cube-view.component.d.ts.map +1 -0
- package/lib/cube/cube.service.d.ts +1 -0
- package/lib/cube/cube.service.d.ts.map +1 -0
- package/lib/cube/declarations.d.ts +1 -0
- package/lib/cube/declarations.d.ts.map +1 -0
- package/lib/cube/explore/document-item.component.d.ts +1 -0
- package/lib/cube/explore/document-item.component.d.ts.map +1 -0
- package/lib/cube/explore/explore-item.component.d.ts +1 -0
- package/lib/cube/explore/explore-item.component.d.ts.map +1 -0
- package/lib/cube/explore/explore-items.component.d.ts +1 -0
- package/lib/cube/explore/explore-items.component.d.ts.map +1 -0
- package/lib/cube/explore/explore.pane.component.d.ts +1 -0
- package/lib/cube/explore/explore.pane.component.d.ts.map +1 -0
- package/lib/cube/explore/item-resolver.service.d.ts +1 -0
- package/lib/cube/explore/item-resolver.service.d.ts.map +1 -0
- package/lib/cube/explore/item.pane.component.d.ts +1 -0
- package/lib/cube/explore/item.pane.component.d.ts.map +1 -0
- package/lib/cube/filter/filter-tags.component.exp.d.ts +1 -0
- package/lib/cube/filter/filter-tags.component.exp.d.ts.map +1 -0
- package/lib/cube/filter/filter.component.d.ts +1 -0
- package/lib/cube/filter/filter.component.d.ts.map +1 -0
- package/lib/cube/grid/grid.component.d.ts +1 -0
- package/lib/cube/grid/grid.component.d.ts.map +1 -0
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -0
- package/lib/cube/grid/spreadsheet.component.d.ts.map +1 -0
- package/lib/cube/matrix/matrix.base.d.ts +1 -0
- package/lib/cube/matrix/matrix.base.d.ts.map +1 -0
- package/lib/cube/matrix/matrix.mobile.component.d.ts +1 -0
- package/lib/cube/matrix/matrix.mobile.component.d.ts.map +1 -0
- package/lib/cube/matrix/matrix.pane.component.d.ts +1 -0
- package/lib/cube/matrix/matrix.pane.component.d.ts.map +1 -0
- package/lib/cube/matrix/popup.component.d.ts +1 -0
- package/lib/cube/matrix/popup.component.d.ts.map +1 -0
- package/lib/cube/matrix/table.component.d.ts +1 -0
- package/lib/cube/matrix/table.component.d.ts.map +1 -0
- package/lib/cube/parallel/item.d.ts +1 -0
- package/lib/cube/parallel/item.d.ts.map +1 -0
- package/lib/cube/parallel/parallel.component.d.ts +1 -0
- package/lib/cube/parallel/parallel.component.d.ts.map +1 -0
- package/lib/cube/pivot/pivot.component.d.ts +1 -0
- package/lib/cube/pivot/pivot.component.d.ts.map +1 -0
- package/lib/cube/sum/sum.component.d.ts +1 -0
- package/lib/cube/sum/sum.component.d.ts.map +1 -0
- package/lib/cube/view-base.d.ts +1 -0
- package/lib/cube/view-base.d.ts.map +1 -0
- package/lib/cube/view.mobile.component.d.ts +1 -0
- package/lib/cube/view.mobile.component.d.ts.map +1 -0
- package/lib/cube/view.pane.component.d.ts +1 -0
- package/lib/cube/view.pane.component.d.ts.map +1 -0
- package/lib/dashboard/actions/actions.widget.d.ts +1 -0
- package/lib/dashboard/actions/actions.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -0
- package/lib/dashboard/cube/accum-cube.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/compare.widget.d.ts +1 -0
- package/lib/dashboard/cube/compare.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -0
- package/lib/dashboard/cube/cube-analysis.base.d.ts.map +1 -0
- package/lib/dashboard/cube/cube-analysis.widget.d.ts +1 -0
- package/lib/dashboard/cube/cube-analysis.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -0
- package/lib/dashboard/cube/cube-chart.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/documents.widget.d.ts +1 -0
- package/lib/dashboard/cube/documents.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -0
- package/lib/dashboard/cube/filter/filter.component.d.ts.map +1 -0
- package/lib/dashboard/dashboard.component.d.ts +1 -0
- package/lib/dashboard/dashboard.component.d.ts.map +1 -0
- package/lib/dashboard/dashboard.pane.component.d.ts +1 -0
- package/lib/dashboard/dashboard.pane.component.d.ts.map +1 -0
- package/lib/dashboard/recents/recents.widget.d.ts +1 -0
- package/lib/dashboard/recents/recents.widget.d.ts.map +1 -0
- package/lib/dashboard/score/activity.widget.d.ts +1 -0
- package/lib/dashboard/score/activity.widget.d.ts.map +1 -0
- package/lib/dashboard/score/compare-groups.widget.d.ts +1 -0
- package/lib/dashboard/score/compare-groups.widget.d.ts.map +1 -0
- package/lib/dashboard/score/peers-performance.widget.d.ts +1 -0
- package/lib/dashboard/score/peers-performance.widget.d.ts.map +1 -0
- package/lib/dashboard/score/pending-results.widget.d.ts +1 -0
- package/lib/dashboard/score/pending-results.widget.d.ts.map +1 -0
- package/lib/dashboard/score/personal-score.widget.d.ts +1 -0
- package/lib/dashboard/score/personal-score.widget.d.ts.map +1 -0
- package/lib/dashboard/widget-item.component.d.ts +1 -0
- package/lib/dashboard/widget-item.component.d.ts.map +1 -0
- package/lib/dashboard/widget-ref.d.ts +1 -0
- package/lib/dashboard/widget-ref.d.ts.map +1 -0
- package/lib/desktop.module.d.ts +1 -0
- package/lib/desktop.module.d.ts.map +1 -0
- package/lib/home/about/about.dialog.d.ts +1 -0
- package/lib/home/about/about.dialog.d.ts.map +1 -0
- package/lib/home/home-base.component.d.ts +1 -0
- package/lib/home/home-base.component.d.ts.map +1 -0
- package/lib/home/home.desktop.component.d.ts +1 -0
- package/lib/home/home.desktop.component.d.ts.map +1 -0
- package/lib/home/home.mobile.component.d.ts +1 -0
- package/lib/home/home.mobile.component.d.ts.map +1 -0
- package/lib/home/notifications/notifications.component.d.ts +1 -0
- package/lib/home/notifications/notifications.component.d.ts.map +1 -0
- package/lib/home/options/options.component.d.ts +1 -0
- package/lib/home/options/options.component.d.ts.map +1 -0
- package/lib/home/outofoffice/outofoffice.component.d.ts +1 -0
- package/lib/home/outofoffice/outofoffice.component.d.ts.map +1 -0
- package/lib/home/search.service.d.ts +1 -0
- package/lib/home/search.service.d.ts.map +1 -0
- package/lib/home/sign/sign.component.d.ts +1 -0
- package/lib/home/sign/sign.component.d.ts.map +1 -0
- package/lib/home/tools.component.d.ts +1 -0
- package/lib/home/tools.component.d.ts.map +1 -0
- package/lib/impersonate/impersonate.component.d.ts +1 -0
- package/lib/impersonate/impersonate.component.d.ts.map +1 -0
- package/lib/mobile.module.d.ts +1 -0
- package/lib/mobile.module.d.ts.map +1 -0
- package/lib/modules/chart.module.d.ts +1 -0
- package/lib/modules/chart.module.d.ts.map +1 -0
- package/lib/modules/circular-gauge.module.d.ts +1 -0
- package/lib/modules/circular-gauge.module.d.ts.map +1 -0
- package/lib/modules/date.adapter.d.ts +1 -0
- package/lib/modules/date.adapter.d.ts.map +1 -0
- package/lib/modules/datepicker.intl.d.ts +1 -0
- package/lib/modules/datepicker.intl.d.ts.map +1 -0
- package/lib/modules/dayjs.module.d.ts +1 -0
- package/lib/modules/dayjs.module.d.ts.map +1 -0
- package/lib/modules/diagram.module.d.ts +1 -0
- package/lib/modules/diagram.module.d.ts.map +1 -0
- package/lib/modules/gantt.module.d.ts +1 -0
- package/lib/modules/gantt.module.d.ts.map +1 -0
- package/lib/modules/grid.module.d.ts +1 -0
- package/lib/modules/grid.module.d.ts.map +1 -0
- package/lib/modules/material.module.d.ts +1 -0
- package/lib/modules/material.module.d.ts.map +1 -0
- package/lib/modules/paginator.intl.d.ts +1 -0
- package/lib/modules/paginator.intl.d.ts.map +1 -0
- package/lib/modules/pivot.module.d.ts +1 -0
- package/lib/modules/pivot.module.d.ts.map +1 -0
- package/lib/modules/schedule.module.d.ts +1 -0
- package/lib/modules/schedule.module.d.ts.map +1 -0
- package/lib/modules/spreadsheet.module.d.ts +1 -0
- package/lib/modules/spreadsheet.module.d.ts.map +1 -0
- package/lib/modules/stepper.intl.d.ts +1 -0
- package/lib/modules/stepper.intl.d.ts.map +1 -0
- package/lib/modules/texteditor.module.d.ts +1 -0
- package/lib/modules/texteditor.module.d.ts.map +1 -0
- package/lib/notifications/filter.component.d.ts +1 -0
- package/lib/notifications/filter.component.d.ts.map +1 -0
- package/lib/notifications/notifications-table.component.d.ts +1 -0
- package/lib/notifications/notifications-table.component.d.ts.map +1 -0
- package/lib/notifications/notifications.component-base.d.ts +1 -0
- package/lib/notifications/notifications.component-base.d.ts.map +1 -0
- package/lib/notifications/notifications.mobile.component.d.ts +1 -0
- package/lib/notifications/notifications.mobile.component.d.ts.map +1 -0
- package/lib/notifications/notifications.pane.component.d.ts +1 -0
- package/lib/notifications/notifications.pane.component.d.ts.map +1 -0
- package/lib/notifications/notifications.service.d.ts +1 -0
- package/lib/notifications/notifications.service.d.ts.map +1 -0
- package/lib/notifications/types/commented.notification.d.ts +1 -0
- package/lib/notifications/types/commented.notification.d.ts.map +1 -0
- package/lib/notifications/types/cube-anomaly.notification.d.ts +1 -0
- package/lib/notifications/types/cube-anomaly.notification.d.ts.map +1 -0
- package/lib/notifications/types/escalated.notification.d.ts +1 -0
- package/lib/notifications/types/escalated.notification.d.ts.map +1 -0
- package/lib/notifications/types/liked.notification.d.ts +1 -0
- package/lib/notifications/types/liked.notification.d.ts.map +1 -0
- package/lib/notifications/types/long-running-task.notification.d.ts +1 -0
- package/lib/notifications/types/long-running-task.notification.d.ts.map +1 -0
- package/lib/notifications/types/notification-base.d.ts +1 -0
- package/lib/notifications/types/notification-base.d.ts.map +1 -0
- package/lib/notifications/types/nudge.notification.d.ts +1 -0
- package/lib/notifications/types/nudge.notification.d.ts.map +1 -0
- package/lib/notifications/types/state-changed.notification.d.ts +1 -0
- package/lib/notifications/types/state-changed.notification.d.ts.map +1 -0
- package/lib/notifications/types/tagged.notification.d.ts +1 -0
- package/lib/notifications/types/tagged.notification.d.ts.map +1 -0
- package/lib/notifications/types/text.notification.d.ts +1 -0
- package/lib/notifications/types/text.notification.d.ts.map +1 -0
- package/lib/notifications/types/upcoming-event.notification.d.ts +1 -0
- package/lib/notifications/types/upcoming-event.notification.d.ts.map +1 -0
- package/lib/options/options.component.d.ts +1 -0
- package/lib/options/options.component.d.ts.map +1 -0
- package/lib/options/options.service.d.ts +1 -0
- package/lib/options/options.service.d.ts.map +1 -0
- package/lib/reports/arguments-component.d.ts +1 -0
- package/lib/reports/arguments-component.d.ts.map +1 -0
- package/lib/reports/cube/documents.component.d.ts +1 -0
- package/lib/reports/cube/documents.component.d.ts.map +1 -0
- package/lib/reports/cube/grid-documents.component.d.ts +1 -0
- package/lib/reports/cube/grid-documents.component.d.ts.map +1 -0
- package/lib/reports/cube/table-documents.component.d.ts +1 -0
- package/lib/reports/cube/table-documents.component.d.ts.map +1 -0
- package/lib/reports/cube/usage-args.component.d.ts +1 -0
- package/lib/reports/cube/usage-args.component.d.ts.map +1 -0
- package/lib/reports/cube/usage-base.d.ts +1 -0
- package/lib/reports/cube/usage-base.d.ts.map +1 -0
- package/lib/reports/cube/usage-chart.component.d.ts +1 -0
- package/lib/reports/cube/usage-chart.component.d.ts.map +1 -0
- package/lib/reports/cube/usage-pivot.component.d.ts +1 -0
- package/lib/reports/cube/usage-pivot.component.d.ts.map +1 -0
- package/lib/reports/cube/usage.component.d.ts +1 -0
- package/lib/reports/cube/usage.component.d.ts.map +1 -0
- package/lib/reports/report-ref.d.ts +1 -0
- package/lib/reports/report-ref.d.ts.map +1 -0
- package/lib/reports/report-viewer.component.d.ts +1 -0
- package/lib/reports/report-viewer.component.d.ts.map +1 -0
- package/lib/reports/report.mobile.component.d.ts +1 -0
- package/lib/reports/report.mobile.component.d.ts.map +1 -0
- package/lib/reports/report.pane.component.d.ts +1 -0
- package/lib/reports/report.pane.component.d.ts.map +1 -0
- package/lib/reports/reports-menu.component.d.ts +1 -0
- package/lib/reports/reports-menu.component.d.ts.map +1 -0
- package/lib/reports/substitution/substitution.component.d.ts +1 -0
- package/lib/reports/substitution/substitution.component.d.ts.map +1 -0
- package/lib/reports/table/table-view.component.d.ts +1 -0
- package/lib/reports/table/table-view.component.d.ts.map +1 -0
- package/lib/reports/tasks/tasks.component.d.ts +1 -0
- package/lib/reports/tasks/tasks.component.d.ts.map +1 -0
- package/lib/routes.desktop.d.ts +1 -0
- package/lib/routes.desktop.d.ts.map +1 -0
- package/lib/routes.mobile.d.ts +1 -0
- package/lib/routes.mobile.d.ts.map +1 -0
- package/lib/scheduler/schedule.component.d.ts +1 -0
- package/lib/scheduler/schedule.component.d.ts.map +1 -0
- package/lib/scheduler/scheduler.mobile.component.d.ts +1 -0
- package/lib/scheduler/scheduler.mobile.component.d.ts.map +1 -0
- package/lib/scheduler/scheduler.pane.component.d.ts +1 -0
- package/lib/scheduler/scheduler.pane.component.d.ts.map +1 -0
- package/lib/shared.module.d.ts +1 -0
- package/lib/shared.module.d.ts.map +1 -0
- package/lib/system.module.d.ts +51 -49
- package/lib/system.module.d.ts.map +1 -0
- package/lib/views/cube/chart.component.d.ts +1 -0
- package/lib/views/cube/chart.component.d.ts.map +1 -0
- package/lib/views/cube/cube-base.d.ts +1 -0
- package/lib/views/cube/cube-base.d.ts.map +1 -0
- package/lib/views/cube/explore.component.d.ts +1 -0
- package/lib/views/cube/explore.component.d.ts.map +1 -0
- package/lib/views/cube/matrix.component.d.ts +1 -0
- package/lib/views/cube/matrix.component.d.ts.map +1 -0
- package/lib/views/cube/parallel.component.d.ts +1 -0
- package/lib/views/cube/parallel.component.d.ts.map +1 -0
- package/lib/views/cube/pivot.component.d.ts +1 -0
- package/lib/views/cube/pivot.component.d.ts.map +1 -0
- package/lib/views/cube/sum.component.d.ts +4 -3
- package/lib/views/cube/sum.component.d.ts.map +1 -0
- package/lib/views/cube/view.component.d.ts +1 -0
- package/lib/views/cube/view.component.d.ts.map +1 -0
- package/lib/views/document-view-ref.d.ts +1 -0
- package/lib/views/document-view-ref.d.ts.map +1 -0
- package/lib/views/timeline/timeline.component.exp.d.ts +1 -0
- package/lib/views/timeline/timeline.component.exp.d.ts.map +1 -0
- package/lib/views/view-item.component.d.ts +1 -0
- package/lib/views/view-item.component.d.ts.map +1 -0
- package/lib/views/views.component.d.ts +1 -0
- package/lib/views/views.component.d.ts.map +1 -0
- package/lib/views/views.mobile.component.d.ts +1 -0
- package/lib/views/views.mobile.component.d.ts.map +1 -0
- package/lib/views/views.pane.component.d.ts +1 -0
- package/lib/views/views.pane.component.d.ts.map +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -0
@@ -24,6 +24,783 @@ import * as i15 from "../../../core/popup/tooltip.directive";
|
|
24
24
|
import * as i16 from "../icon-picker.component";
|
25
25
|
import * as i17 from "../../../core/pipes/translate.pipe";
|
26
26
|
import * as i18 from "../designer.base";
|
27
|
+
function CubeDesignComponent_form_0_div_28_mat_option_14_Template(rf, ctx) { if (rf & 1) {
|
28
|
+
i0.ɵɵelementStart(0, "mat-option", 18);
|
29
|
+
i0.ɵɵtext(1);
|
30
|
+
i0.ɵɵelementEnd();
|
31
|
+
} if (rf & 2) {
|
32
|
+
const t_r10 = ctx.$implicit;
|
33
|
+
i0.ɵɵproperty("value", t_r10.name);
|
34
|
+
i0.ɵɵadvance(1);
|
35
|
+
i0.ɵɵtextInterpolate(t_r10.title);
|
36
|
+
} }
|
37
|
+
function CubeDesignComponent_form_0_div_28_Template(rf, ctx) { if (rf & 1) {
|
38
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
39
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "mat-icon", 13);
|
40
|
+
i0.ɵɵtext(2, "drag_indicator");
|
41
|
+
i0.ɵɵelementEnd();
|
42
|
+
i0.ɵɵelementStart(3, "mat-form-field", 14)(4, "mat-label");
|
43
|
+
i0.ɵɵtext(5);
|
44
|
+
i0.ɵɵpipe(6, "translate");
|
45
|
+
i0.ɵɵelementEnd();
|
46
|
+
i0.ɵɵelement(7, "input", 15);
|
47
|
+
i0.ɵɵelementEnd();
|
48
|
+
i0.ɵɵtext(8, " \u00A0 ");
|
49
|
+
i0.ɵɵelementStart(9, "mat-form-field")(10, "mat-label");
|
50
|
+
i0.ɵɵtext(11);
|
51
|
+
i0.ɵɵpipe(12, "translate");
|
52
|
+
i0.ɵɵelementEnd();
|
53
|
+
i0.ɵɵelementStart(13, "mat-select", 16);
|
54
|
+
i0.ɵɵtemplate(14, CubeDesignComponent_form_0_div_28_mat_option_14_Template, 2, 2, "mat-option", 17);
|
55
|
+
i0.ɵɵelementEnd()();
|
56
|
+
i0.ɵɵelementStart(15, "button", 9);
|
57
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_div_28_Template_button_click_15_listener() { const restoredCtx = i0.ɵɵrestoreView(_r12); const index_r8 = restoredCtx.index; const ctx_r11 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r11.removeAxis(index_r8)); });
|
58
|
+
i0.ɵɵpipe(16, "translate");
|
59
|
+
i0.ɵɵelementStart(17, "mat-icon");
|
60
|
+
i0.ɵɵtext(18, "delete");
|
61
|
+
i0.ɵɵelementEnd()()();
|
62
|
+
} if (rf & 2) {
|
63
|
+
const a_r7 = ctx.$implicit;
|
64
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
65
|
+
i0.ɵɵproperty("formGroup", a_r7);
|
66
|
+
i0.ɵɵadvance(5);
|
67
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 5, "Title"));
|
68
|
+
i0.ɵɵadvance(6);
|
69
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 7, "DataType"));
|
70
|
+
i0.ɵɵadvance(3);
|
71
|
+
i0.ɵɵproperty("ngForOf", ctx_r3.types);
|
72
|
+
i0.ɵɵadvance(1);
|
73
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(16, 9, "Remove"));
|
74
|
+
} }
|
75
|
+
function CubeDesignComponent_form_0_div_37_Template(rf, ctx) { if (rf & 1) {
|
76
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
77
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "mat-icon", 13);
|
78
|
+
i0.ɵɵtext(2, "drag_indicator");
|
79
|
+
i0.ɵɵelementEnd();
|
80
|
+
i0.ɵɵelementStart(3, "mat-form-field", 14)(4, "mat-label");
|
81
|
+
i0.ɵɵtext(5);
|
82
|
+
i0.ɵɵpipe(6, "translate");
|
83
|
+
i0.ɵɵelementEnd();
|
84
|
+
i0.ɵɵelement(7, "input", 15);
|
85
|
+
i0.ɵɵelementEnd();
|
86
|
+
i0.ɵɵelementStart(8, "button", 9);
|
87
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_div_37_Template_button_click_8_listener() { const restoredCtx = i0.ɵɵrestoreView(_r16); const index_r14 = restoredCtx.index; const ctx_r15 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r15.removeIndex(index_r14)); });
|
88
|
+
i0.ɵɵpipe(9, "translate");
|
89
|
+
i0.ɵɵelementStart(10, "mat-icon");
|
90
|
+
i0.ɵɵtext(11, "delete");
|
91
|
+
i0.ɵɵelementEnd()()();
|
92
|
+
} if (rf & 2) {
|
93
|
+
const a_r13 = ctx.$implicit;
|
94
|
+
i0.ɵɵproperty("formGroup", a_r13);
|
95
|
+
i0.ɵɵadvance(5);
|
96
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 3, "Title"));
|
97
|
+
i0.ɵɵadvance(3);
|
98
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(9, 5, "Remove"));
|
99
|
+
} }
|
100
|
+
function CubeDesignComponent_form_0_div_46_Template(rf, ctx) { if (rf & 1) {
|
101
|
+
const _r20 = i0.ɵɵgetCurrentView();
|
102
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "mat-icon", 13);
|
103
|
+
i0.ɵɵtext(2, "drag_indicator");
|
104
|
+
i0.ɵɵelementEnd();
|
105
|
+
i0.ɵɵelementStart(3, "mat-form-field", 14)(4, "mat-label");
|
106
|
+
i0.ɵɵtext(5);
|
107
|
+
i0.ɵɵpipe(6, "translate");
|
108
|
+
i0.ɵɵelementEnd();
|
109
|
+
i0.ɵɵelement(7, "input", 19);
|
110
|
+
i0.ɵɵelementEnd();
|
111
|
+
i0.ɵɵelementStart(8, "bizdoc-cube-filter", 20);
|
112
|
+
i0.ɵɵlistener("axesChange", function CubeDesignComponent_form_0_div_46_Template_bizdoc_cube_filter_axesChange_8_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r20); const p_r17 = restoredCtx.$implicit; return i0.ɵɵresetView(p_r17.get("axes").value = $event); });
|
113
|
+
i0.ɵɵelementEnd();
|
114
|
+
i0.ɵɵelementStart(9, "button", 9);
|
115
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_div_46_Template_button_click_9_listener() { const restoredCtx = i0.ɵɵrestoreView(_r20); const index_r18 = restoredCtx.index; const ctx_r21 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r21.removePattern(index_r18)); });
|
116
|
+
i0.ɵɵpipe(10, "translate");
|
117
|
+
i0.ɵɵelementStart(11, "mat-icon");
|
118
|
+
i0.ɵɵtext(12, "delete");
|
119
|
+
i0.ɵɵelementEnd()()();
|
120
|
+
} if (rf & 2) {
|
121
|
+
const p_r17 = ctx.$implicit;
|
122
|
+
const ctx_r5 = i0.ɵɵnextContext(2);
|
123
|
+
i0.ɵɵproperty("formGroup", p_r17);
|
124
|
+
i0.ɵɵadvance(5);
|
125
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 5, "Title"));
|
126
|
+
i0.ɵɵadvance(3);
|
127
|
+
i0.ɵɵproperty("cube", ctx_r5.model.name)("axes", p_r17.get("axes").value);
|
128
|
+
i0.ɵɵadvance(1);
|
129
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(10, 7, "Remove"));
|
130
|
+
} }
|
131
|
+
function CubeDesignComponent_form_0_div_55_mat_form_field_30_Template(rf, ctx) { if (rf & 1) {
|
132
|
+
i0.ɵɵelementStart(0, "mat-form-field")(1, "mat-label");
|
133
|
+
i0.ɵɵtext(2);
|
134
|
+
i0.ɵɵpipe(3, "translate");
|
135
|
+
i0.ɵɵelementEnd();
|
136
|
+
i0.ɵɵelementStart(4, "mat-select", 31)(5, "mat-option", 32);
|
137
|
+
i0.ɵɵtext(6);
|
138
|
+
i0.ɵɵpipe(7, "translate");
|
139
|
+
i0.ɵɵelementEnd();
|
140
|
+
i0.ɵɵelementStart(8, "mat-option", 33);
|
141
|
+
i0.ɵɵtext(9);
|
142
|
+
i0.ɵɵpipe(10, "translate");
|
143
|
+
i0.ɵɵelementEnd();
|
144
|
+
i0.ɵɵelementStart(11, "mat-option", 34);
|
145
|
+
i0.ɵɵtext(12);
|
146
|
+
i0.ɵɵpipe(13, "translate");
|
147
|
+
i0.ɵɵelementEnd();
|
148
|
+
i0.ɵɵelementStart(14, "mat-option", 35);
|
149
|
+
i0.ɵɵtext(15);
|
150
|
+
i0.ɵɵpipe(16, "translate");
|
151
|
+
i0.ɵɵelementEnd();
|
152
|
+
i0.ɵɵelementStart(17, "mat-option", 36);
|
153
|
+
i0.ɵɵtext(18);
|
154
|
+
i0.ɵɵpipe(19, "translate");
|
155
|
+
i0.ɵɵelementEnd();
|
156
|
+
i0.ɵɵelementStart(20, "mat-option", 37);
|
157
|
+
i0.ɵɵtext(21);
|
158
|
+
i0.ɵɵpipe(22, "translate");
|
159
|
+
i0.ɵɵelementEnd();
|
160
|
+
i0.ɵɵelementStart(23, "mat-option", 38);
|
161
|
+
i0.ɵɵtext(24);
|
162
|
+
i0.ɵɵpipe(25, "translate");
|
163
|
+
i0.ɵɵelementEnd();
|
164
|
+
i0.ɵɵelementStart(26, "mat-option", 39);
|
165
|
+
i0.ɵɵtext(27);
|
166
|
+
i0.ɵɵpipe(28, "translate");
|
167
|
+
i0.ɵɵelementEnd();
|
168
|
+
i0.ɵɵelementStart(29, "mat-option", 40);
|
169
|
+
i0.ɵɵtext(30);
|
170
|
+
i0.ɵɵpipe(31, "translate");
|
171
|
+
i0.ɵɵelementEnd();
|
172
|
+
i0.ɵɵelementStart(32, "mat-option", 41);
|
173
|
+
i0.ɵɵtext(33);
|
174
|
+
i0.ɵɵpipe(34, "translate");
|
175
|
+
i0.ɵɵelementEnd();
|
176
|
+
i0.ɵɵelementStart(35, "mat-option", 42);
|
177
|
+
i0.ɵɵtext(36);
|
178
|
+
i0.ɵɵpipe(37, "translate");
|
179
|
+
i0.ɵɵelementEnd();
|
180
|
+
i0.ɵɵelementStart(38, "mat-option", 43);
|
181
|
+
i0.ɵɵtext(39);
|
182
|
+
i0.ɵɵpipe(40, "translate");
|
183
|
+
i0.ɵɵelementEnd();
|
184
|
+
i0.ɵɵelementStart(41, "mat-option", 44);
|
185
|
+
i0.ɵɵtext(42);
|
186
|
+
i0.ɵɵpipe(43, "translate");
|
187
|
+
i0.ɵɵelementEnd();
|
188
|
+
i0.ɵɵelementStart(44, "mat-option", 45);
|
189
|
+
i0.ɵɵtext(45);
|
190
|
+
i0.ɵɵpipe(46, "translate");
|
191
|
+
i0.ɵɵelementEnd();
|
192
|
+
i0.ɵɵelementStart(47, "mat-option", 46);
|
193
|
+
i0.ɵɵtext(48);
|
194
|
+
i0.ɵɵpipe(49, "translate");
|
195
|
+
i0.ɵɵelementEnd();
|
196
|
+
i0.ɵɵelementStart(50, "mat-option", 47);
|
197
|
+
i0.ɵɵtext(51);
|
198
|
+
i0.ɵɵpipe(52, "translate");
|
199
|
+
i0.ɵɵelementEnd();
|
200
|
+
i0.ɵɵelementStart(53, "mat-option", 48);
|
201
|
+
i0.ɵɵtext(54);
|
202
|
+
i0.ɵɵpipe(55, "translate");
|
203
|
+
i0.ɵɵelementEnd();
|
204
|
+
i0.ɵɵelementStart(56, "mat-option", 49);
|
205
|
+
i0.ɵɵtext(57);
|
206
|
+
i0.ɵɵpipe(58, "translate");
|
207
|
+
i0.ɵɵelementEnd();
|
208
|
+
i0.ɵɵelementStart(59, "mat-option", 50);
|
209
|
+
i0.ɵɵtext(60);
|
210
|
+
i0.ɵɵpipe(61, "translate");
|
211
|
+
i0.ɵɵelementEnd();
|
212
|
+
i0.ɵɵelementStart(62, "mat-option", 51);
|
213
|
+
i0.ɵɵtext(63);
|
214
|
+
i0.ɵɵpipe(64, "translate");
|
215
|
+
i0.ɵɵelementEnd();
|
216
|
+
i0.ɵɵelementStart(65, "mat-option", 52);
|
217
|
+
i0.ɵɵtext(66);
|
218
|
+
i0.ɵɵpipe(67, "translate");
|
219
|
+
i0.ɵɵelementEnd();
|
220
|
+
i0.ɵɵelementStart(68, "mat-option", 53);
|
221
|
+
i0.ɵɵtext(69);
|
222
|
+
i0.ɵɵpipe(70, "translate");
|
223
|
+
i0.ɵɵelementEnd();
|
224
|
+
i0.ɵɵelementStart(71, "mat-option", 54);
|
225
|
+
i0.ɵɵtext(72);
|
226
|
+
i0.ɵɵpipe(73, "translate");
|
227
|
+
i0.ɵɵelementEnd();
|
228
|
+
i0.ɵɵelementStart(74, "mat-option", 55);
|
229
|
+
i0.ɵɵtext(75);
|
230
|
+
i0.ɵɵpipe(76, "translate");
|
231
|
+
i0.ɵɵelementEnd();
|
232
|
+
i0.ɵɵelementStart(77, "mat-option", 56);
|
233
|
+
i0.ɵɵtext(78);
|
234
|
+
i0.ɵɵpipe(79, "translate");
|
235
|
+
i0.ɵɵelementEnd();
|
236
|
+
i0.ɵɵelementStart(80, "mat-option", 57);
|
237
|
+
i0.ɵɵtext(81);
|
238
|
+
i0.ɵɵpipe(82, "translate");
|
239
|
+
i0.ɵɵelementEnd()()();
|
240
|
+
} if (rf & 2) {
|
241
|
+
i0.ɵɵadvance(2);
|
242
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 27, "ChartType"));
|
243
|
+
i0.ɵɵadvance(4);
|
244
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 29, "Pie"));
|
245
|
+
i0.ɵɵadvance(3);
|
246
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 31, "Doughnut"));
|
247
|
+
i0.ɵɵadvance(3);
|
248
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(13, 33, "HalfDoughnut"));
|
249
|
+
i0.ɵɵadvance(3);
|
250
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(16, 35, "Column"));
|
251
|
+
i0.ɵɵadvance(3);
|
252
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(19, 37, "StackingColumn"));
|
253
|
+
i0.ɵɵadvance(3);
|
254
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(22, 39, "StackingColumn100"));
|
255
|
+
i0.ɵɵadvance(3);
|
256
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(25, 41, "Bar"));
|
257
|
+
i0.ɵɵadvance(3);
|
258
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(28, 43, "Bubble"));
|
259
|
+
i0.ɵɵadvance(3);
|
260
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(31, 45, "StackingBar"));
|
261
|
+
i0.ɵɵadvance(3);
|
262
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(34, 47, "StackingBar100"));
|
263
|
+
i0.ɵɵadvance(3);
|
264
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(37, 49, "Line"));
|
265
|
+
i0.ɵɵadvance(3);
|
266
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(40, 51, "StackingLine"));
|
267
|
+
i0.ɵɵadvance(3);
|
268
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(43, 53, "StackingLine100"));
|
269
|
+
i0.ɵɵadvance(3);
|
270
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(46, 55, "Spline"));
|
271
|
+
i0.ɵɵadvance(3);
|
272
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(49, 57, "SplineArea"));
|
273
|
+
i0.ɵɵadvance(3);
|
274
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(52, 59, "Area"));
|
275
|
+
i0.ɵɵadvance(3);
|
276
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(55, 61, "StackingArea"));
|
277
|
+
i0.ɵɵadvance(3);
|
278
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(58, 63, "StackingArea100"));
|
279
|
+
i0.ɵɵadvance(3);
|
280
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(61, 65, "Scatter"));
|
281
|
+
i0.ɵɵadvance(3);
|
282
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(64, 67, "Polar"));
|
283
|
+
i0.ɵɵadvance(3);
|
284
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(67, 69, "Radar"));
|
285
|
+
i0.ɵɵadvance(3);
|
286
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(70, 71, "StepLine"));
|
287
|
+
i0.ɵɵadvance(3);
|
288
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(73, 73, "StepArea"));
|
289
|
+
i0.ɵɵadvance(3);
|
290
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(76, 75, "StackingStepArea"));
|
291
|
+
i0.ɵɵadvance(3);
|
292
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(79, 77, "Funnel"));
|
293
|
+
i0.ɵɵadvance(3);
|
294
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(82, 79, "Pyramid"));
|
295
|
+
} }
|
296
|
+
function CubeDesignComponent_form_0_div_55_mat_form_field_31_Template(rf, ctx) { if (rf & 1) {
|
297
|
+
i0.ɵɵelementStart(0, "mat-form-field")(1, "mat-label");
|
298
|
+
i0.ɵɵtext(2);
|
299
|
+
i0.ɵɵpipe(3, "translate");
|
300
|
+
i0.ɵɵelementEnd();
|
301
|
+
i0.ɵɵelementStart(4, "mat-select", 31)(5, "mat-option");
|
302
|
+
i0.ɵɵtext(6);
|
303
|
+
i0.ɵɵpipe(7, "translate");
|
304
|
+
i0.ɵɵelementEnd();
|
305
|
+
i0.ɵɵelementStart(8, "mat-option", 35);
|
306
|
+
i0.ɵɵtext(9);
|
307
|
+
i0.ɵɵpipe(10, "translate");
|
308
|
+
i0.ɵɵelementEnd();
|
309
|
+
i0.ɵɵelementStart(11, "mat-option", 38);
|
310
|
+
i0.ɵɵtext(12);
|
311
|
+
i0.ɵɵpipe(13, "translate");
|
312
|
+
i0.ɵɵelementEnd();
|
313
|
+
i0.ɵɵelementStart(14, "mat-option", 39);
|
314
|
+
i0.ɵɵtext(15);
|
315
|
+
i0.ɵɵpipe(16, "translate");
|
316
|
+
i0.ɵɵelementEnd();
|
317
|
+
i0.ɵɵelementStart(17, "mat-option", 40);
|
318
|
+
i0.ɵɵtext(18);
|
319
|
+
i0.ɵɵpipe(19, "translate");
|
320
|
+
i0.ɵɵelementEnd();
|
321
|
+
i0.ɵɵelementStart(20, "mat-option", 41);
|
322
|
+
i0.ɵɵtext(21);
|
323
|
+
i0.ɵɵpipe(22, "translate");
|
324
|
+
i0.ɵɵelementEnd();
|
325
|
+
i0.ɵɵelementStart(23, "mat-option", 42);
|
326
|
+
i0.ɵɵtext(24);
|
327
|
+
i0.ɵɵpipe(25, "translate");
|
328
|
+
i0.ɵɵelementEnd();
|
329
|
+
i0.ɵɵelementStart(26, "mat-option", 45);
|
330
|
+
i0.ɵɵtext(27);
|
331
|
+
i0.ɵɵpipe(28, "translate");
|
332
|
+
i0.ɵɵelementEnd();
|
333
|
+
i0.ɵɵelementStart(29, "mat-option", 46);
|
334
|
+
i0.ɵɵtext(30);
|
335
|
+
i0.ɵɵpipe(31, "translate");
|
336
|
+
i0.ɵɵelementEnd();
|
337
|
+
i0.ɵɵelementStart(32, "mat-option", 47);
|
338
|
+
i0.ɵɵtext(33);
|
339
|
+
i0.ɵɵpipe(34, "translate");
|
340
|
+
i0.ɵɵelementEnd();
|
341
|
+
i0.ɵɵelementStart(35, "mat-option", 33);
|
342
|
+
i0.ɵɵtext(36);
|
343
|
+
i0.ɵɵpipe(37, "translate");
|
344
|
+
i0.ɵɵelementEnd();
|
345
|
+
i0.ɵɵelementStart(38, "mat-option", 34);
|
346
|
+
i0.ɵɵtext(39);
|
347
|
+
i0.ɵɵpipe(40, "translate");
|
348
|
+
i0.ɵɵelementEnd();
|
349
|
+
i0.ɵɵelementStart(41, "mat-option", 48);
|
350
|
+
i0.ɵɵtext(42);
|
351
|
+
i0.ɵɵpipe(43, "translate");
|
352
|
+
i0.ɵɵelementEnd();
|
353
|
+
i0.ɵɵelementStart(44, "mat-option", 49);
|
354
|
+
i0.ɵɵtext(45);
|
355
|
+
i0.ɵɵpipe(46, "translate");
|
356
|
+
i0.ɵɵelementEnd();
|
357
|
+
i0.ɵɵelementStart(47, "mat-option", 36);
|
358
|
+
i0.ɵɵtext(48);
|
359
|
+
i0.ɵɵpipe(49, "translate");
|
360
|
+
i0.ɵɵelementEnd();
|
361
|
+
i0.ɵɵelementStart(50, "mat-option", 37);
|
362
|
+
i0.ɵɵtext(51);
|
363
|
+
i0.ɵɵpipe(52, "translate");
|
364
|
+
i0.ɵɵelementEnd();
|
365
|
+
i0.ɵɵelementStart(53, "mat-option", 50);
|
366
|
+
i0.ɵɵtext(54);
|
367
|
+
i0.ɵɵpipe(55, "translate");
|
368
|
+
i0.ɵɵelementEnd();
|
369
|
+
i0.ɵɵelementStart(56, "mat-option", 51);
|
370
|
+
i0.ɵɵtext(57);
|
371
|
+
i0.ɵɵpipe(58, "translate");
|
372
|
+
i0.ɵɵelementEnd();
|
373
|
+
i0.ɵɵelementStart(59, "mat-option", 52);
|
374
|
+
i0.ɵɵtext(60);
|
375
|
+
i0.ɵɵpipe(61, "translate");
|
376
|
+
i0.ɵɵelementEnd();
|
377
|
+
i0.ɵɵelementStart(62, "mat-option", 53);
|
378
|
+
i0.ɵɵtext(63);
|
379
|
+
i0.ɵɵpipe(64, "translate");
|
380
|
+
i0.ɵɵelementEnd();
|
381
|
+
i0.ɵɵelementStart(65, "mat-option", 54);
|
382
|
+
i0.ɵɵtext(66);
|
383
|
+
i0.ɵɵpipe(67, "translate");
|
384
|
+
i0.ɵɵelementEnd();
|
385
|
+
i0.ɵɵelementStart(68, "mat-option", 55);
|
386
|
+
i0.ɵɵtext(69);
|
387
|
+
i0.ɵɵpipe(70, "translate");
|
388
|
+
i0.ɵɵelementEnd();
|
389
|
+
i0.ɵɵelementStart(71, "mat-option", 43);
|
390
|
+
i0.ɵɵtext(72);
|
391
|
+
i0.ɵɵpipe(73, "translate");
|
392
|
+
i0.ɵɵelementEnd();
|
393
|
+
i0.ɵɵelementStart(74, "mat-option", 44);
|
394
|
+
i0.ɵɵtext(75);
|
395
|
+
i0.ɵɵpipe(76, "translate");
|
396
|
+
i0.ɵɵelementEnd()()();
|
397
|
+
} if (rf & 2) {
|
398
|
+
i0.ɵɵadvance(2);
|
399
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 25, "ChartType"));
|
400
|
+
i0.ɵɵadvance(4);
|
401
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 27, "None"));
|
402
|
+
i0.ɵɵadvance(3);
|
403
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(10, 29, "Column"));
|
404
|
+
i0.ɵɵadvance(3);
|
405
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(13, 31, "Bar"));
|
406
|
+
i0.ɵɵadvance(3);
|
407
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(16, 33, "Bubble"));
|
408
|
+
i0.ɵɵadvance(3);
|
409
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(19, 35, "StackingBar"));
|
410
|
+
i0.ɵɵadvance(3);
|
411
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(22, 37, "StackingBar100"));
|
412
|
+
i0.ɵɵadvance(3);
|
413
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(25, 39, "Line"));
|
414
|
+
i0.ɵɵadvance(3);
|
415
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(28, 41, "Spline"));
|
416
|
+
i0.ɵɵadvance(3);
|
417
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(31, 43, "SplineArea"));
|
418
|
+
i0.ɵɵadvance(3);
|
419
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(34, 45, "Area"));
|
420
|
+
i0.ɵɵadvance(3);
|
421
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(37, 47, "Doughnut"));
|
422
|
+
i0.ɵɵadvance(3);
|
423
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(40, 49, "HalfDoughnut"));
|
424
|
+
i0.ɵɵadvance(3);
|
425
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(43, 51, "StackingArea"));
|
426
|
+
i0.ɵɵadvance(3);
|
427
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(46, 53, "StackingArea100"));
|
428
|
+
i0.ɵɵadvance(3);
|
429
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(49, 55, "StackingColumn"));
|
430
|
+
i0.ɵɵadvance(3);
|
431
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(52, 57, "StackingColumn100"));
|
432
|
+
i0.ɵɵadvance(3);
|
433
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(55, 59, "Scatter"));
|
434
|
+
i0.ɵɵadvance(3);
|
435
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(58, 61, "Polar"));
|
436
|
+
i0.ɵɵadvance(3);
|
437
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(61, 63, "Radar"));
|
438
|
+
i0.ɵɵadvance(3);
|
439
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(64, 65, "StepLine"));
|
440
|
+
i0.ɵɵadvance(3);
|
441
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(67, 67, "StepArea"));
|
442
|
+
i0.ɵɵadvance(3);
|
443
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(70, 69, "StackingStepArea"));
|
444
|
+
i0.ɵɵadvance(3);
|
445
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(73, 71, "StackingLine"));
|
446
|
+
i0.ɵɵadvance(3);
|
447
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(76, 73, "StackingLine100"));
|
448
|
+
} }
|
449
|
+
function CubeDesignComponent_form_0_div_55_mat_option_38_Template(rf, ctx) { if (rf & 1) {
|
450
|
+
i0.ɵɵelementStart(0, "mat-option", 18);
|
451
|
+
i0.ɵɵtext(1);
|
452
|
+
i0.ɵɵelementEnd();
|
453
|
+
} if (rf & 2) {
|
454
|
+
const x_r28 = ctx.$implicit;
|
455
|
+
i0.ɵɵproperty("value", x_r28.name);
|
456
|
+
i0.ɵɵadvance(1);
|
457
|
+
i0.ɵɵtextInterpolate(x_r28.title || x_r28.name);
|
458
|
+
} }
|
459
|
+
function CubeDesignComponent_form_0_div_55_mat_option_45_Template(rf, ctx) { if (rf & 1) {
|
460
|
+
i0.ɵɵelementStart(0, "mat-option", 18);
|
461
|
+
i0.ɵɵtext(1);
|
462
|
+
i0.ɵɵelementEnd();
|
463
|
+
} if (rf & 2) {
|
464
|
+
const x_r29 = ctx.$implicit;
|
465
|
+
i0.ɵɵproperty("value", x_r29.name);
|
466
|
+
i0.ɵɵadvance(1);
|
467
|
+
i0.ɵɵtextInterpolate(x_r29.title || x_r29.name);
|
468
|
+
} }
|
469
|
+
function CubeDesignComponent_form_0_div_55_Template(rf, ctx) { if (rf & 1) {
|
470
|
+
const _r31 = i0.ɵɵgetCurrentView();
|
471
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "mat-icon", 13);
|
472
|
+
i0.ɵɵtext(2, "drag_indicator");
|
473
|
+
i0.ɵɵelementEnd();
|
474
|
+
i0.ɵɵelementStart(3, "mat-form-field", 14)(4, "mat-label");
|
475
|
+
i0.ɵɵtext(5);
|
476
|
+
i0.ɵɵpipe(6, "translate");
|
477
|
+
i0.ɵɵelementEnd();
|
478
|
+
i0.ɵɵelement(7, "input", 15);
|
479
|
+
i0.ɵɵelementEnd();
|
480
|
+
i0.ɵɵtext(8, " \u00A0 ");
|
481
|
+
i0.ɵɵelement(9, "bizdoc-icon-picker", 21);
|
482
|
+
i0.ɵɵtext(10, " \u00A0 ");
|
483
|
+
i0.ɵɵelementStart(11, "mat-form-field")(12, "mat-label");
|
484
|
+
i0.ɵɵtext(13);
|
485
|
+
i0.ɵɵpipe(14, "translate");
|
486
|
+
i0.ɵɵelementEnd();
|
487
|
+
i0.ɵɵelementStart(15, "mat-select", 22)(16, "mat-option", 23);
|
488
|
+
i0.ɵɵtext(17);
|
489
|
+
i0.ɵɵpipe(18, "translate");
|
490
|
+
i0.ɵɵelementEnd();
|
491
|
+
i0.ɵɵelementStart(19, "mat-option", 24);
|
492
|
+
i0.ɵɵtext(20);
|
493
|
+
i0.ɵɵpipe(21, "translate");
|
494
|
+
i0.ɵɵelementEnd();
|
495
|
+
i0.ɵɵelementStart(22, "mat-option", 25);
|
496
|
+
i0.ɵɵtext(23);
|
497
|
+
i0.ɵɵpipe(24, "translate");
|
498
|
+
i0.ɵɵelementEnd();
|
499
|
+
i0.ɵɵelementStart(25, "mat-option", 26);
|
500
|
+
i0.ɵɵtext(26);
|
501
|
+
i0.ɵɵpipe(27, "translate");
|
502
|
+
i0.ɵɵelementEnd()()();
|
503
|
+
i0.ɵɵtext(28, " \u00A0 ");
|
504
|
+
i0.ɵɵelementContainerStart(29, 27);
|
505
|
+
i0.ɵɵtemplate(30, CubeDesignComponent_form_0_div_55_mat_form_field_30_Template, 83, 81, "mat-form-field", 28);
|
506
|
+
i0.ɵɵtemplate(31, CubeDesignComponent_form_0_div_55_mat_form_field_31_Template, 77, 75, "mat-form-field", 28);
|
507
|
+
i0.ɵɵelementContainerEnd();
|
508
|
+
i0.ɵɵtext(32, " \u00A0 ");
|
509
|
+
i0.ɵɵelementStart(33, "mat-form-field")(34, "mat-label");
|
510
|
+
i0.ɵɵtext(35);
|
511
|
+
i0.ɵɵpipe(36, "translate");
|
512
|
+
i0.ɵɵelementEnd();
|
513
|
+
i0.ɵɵelementStart(37, "mat-select", 29);
|
514
|
+
i0.ɵɵlistener("selectionChange", function CubeDesignComponent_form_0_div_55_Template_mat_select_selectionChange_37_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r31); const index_r23 = restoredCtx.index; const ctx_r30 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r30.xAxisSelected(index_r23, $event)); });
|
515
|
+
i0.ɵɵtemplate(38, CubeDesignComponent_form_0_div_55_mat_option_38_Template, 2, 2, "mat-option", 17);
|
516
|
+
i0.ɵɵelementEnd()();
|
517
|
+
i0.ɵɵtext(39, " \u00A0 ");
|
518
|
+
i0.ɵɵelementStart(40, "mat-form-field")(41, "mat-label");
|
519
|
+
i0.ɵɵtext(42);
|
520
|
+
i0.ɵɵpipe(43, "translate");
|
521
|
+
i0.ɵɵelementEnd();
|
522
|
+
i0.ɵɵelementStart(44, "mat-select", 30);
|
523
|
+
i0.ɵɵtemplate(45, CubeDesignComponent_form_0_div_55_mat_option_45_Template, 2, 2, "mat-option", 17);
|
524
|
+
i0.ɵɵelementEnd()();
|
525
|
+
i0.ɵɵelementStart(46, "button", 9);
|
526
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_div_55_Template_button_click_46_listener() { const restoredCtx = i0.ɵɵrestoreView(_r31); const index_r23 = restoredCtx.index; const ctx_r32 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r32.removeView(index_r23)); });
|
527
|
+
i0.ɵɵpipe(47, "translate");
|
528
|
+
i0.ɵɵelementStart(48, "mat-icon");
|
529
|
+
i0.ɵɵtext(49, "delete");
|
530
|
+
i0.ɵɵelementEnd()()();
|
531
|
+
} if (rf & 2) {
|
532
|
+
const v_r22 = ctx.$implicit;
|
533
|
+
const index_r23 = ctx.index;
|
534
|
+
const ctx_r6 = i0.ɵɵnextContext(2);
|
535
|
+
i0.ɵɵproperty("formGroup", v_r22);
|
536
|
+
i0.ɵɵadvance(5);
|
537
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 16, "Title"));
|
538
|
+
i0.ɵɵadvance(8);
|
539
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(14, 18, "Type"));
|
540
|
+
i0.ɵɵadvance(4);
|
541
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(18, 20, "Chart"));
|
542
|
+
i0.ɵɵadvance(3);
|
543
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(21, 22, "Pivot"));
|
544
|
+
i0.ɵɵadvance(3);
|
545
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(24, 24, "Grid"));
|
546
|
+
i0.ɵɵadvance(3);
|
547
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(27, 26, "Spreadsheet"));
|
548
|
+
i0.ɵɵadvance(3);
|
549
|
+
i0.ɵɵproperty("ngSwitch", v_r22.get("type").value);
|
550
|
+
i0.ɵɵadvance(1);
|
551
|
+
i0.ɵɵproperty("ngSwitchCase", "Chart");
|
552
|
+
i0.ɵɵadvance(1);
|
553
|
+
i0.ɵɵproperty("ngSwitchCase", "Pivot");
|
554
|
+
i0.ɵɵadvance(4);
|
555
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(36, 28, "XAxis"));
|
556
|
+
i0.ɵɵadvance(3);
|
557
|
+
i0.ɵɵproperty("ngForOf", ctx_r6.model.axes);
|
558
|
+
i0.ɵɵadvance(4);
|
559
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(43, 30, "Series"));
|
560
|
+
i0.ɵɵadvance(2);
|
561
|
+
i0.ɵɵproperty("disabled", ctx_r6.isAccum(index_r23));
|
562
|
+
i0.ɵɵadvance(1);
|
563
|
+
i0.ɵɵproperty("ngForOf", ctx_r6.secondaryAxes[index_r23]);
|
564
|
+
i0.ɵɵadvance(1);
|
565
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(47, 32, "Remove"));
|
566
|
+
} }
|
567
|
+
function CubeDesignComponent_form_0_Template(rf, ctx) { if (rf & 1) {
|
568
|
+
const _r34 = i0.ɵɵgetCurrentView();
|
569
|
+
i0.ɵɵelementStart(0, "form", 2)(1, "mat-label");
|
570
|
+
i0.ɵɵtext(2);
|
571
|
+
i0.ɵɵpipe(3, "translate");
|
572
|
+
i0.ɵɵelementEnd();
|
573
|
+
i0.ɵɵelement(4, "br");
|
574
|
+
i0.ɵɵelementStart(5, "mat-radio-group", 3)(6, "mat-radio-button");
|
575
|
+
i0.ɵɵtext(7);
|
576
|
+
i0.ɵɵpipe(8, "translate");
|
577
|
+
i0.ɵɵelementEnd();
|
578
|
+
i0.ɵɵelementStart(9, "p");
|
579
|
+
i0.ɵɵtext(10);
|
580
|
+
i0.ɵɵpipe(11, "translate");
|
581
|
+
i0.ɵɵelementEnd();
|
582
|
+
i0.ɵɵelementStart(12, "mat-radio-button", 4);
|
583
|
+
i0.ɵɵtext(13);
|
584
|
+
i0.ɵɵpipe(14, "translate");
|
585
|
+
i0.ɵɵelementEnd();
|
586
|
+
i0.ɵɵelementStart(15, "p");
|
587
|
+
i0.ɵɵtext(16);
|
588
|
+
i0.ɵɵpipe(17, "translate");
|
589
|
+
i0.ɵɵelementEnd();
|
590
|
+
i0.ɵɵelementStart(18, "mat-radio-button", 5);
|
591
|
+
i0.ɵɵtext(19);
|
592
|
+
i0.ɵɵpipe(20, "translate");
|
593
|
+
i0.ɵɵelementEnd();
|
594
|
+
i0.ɵɵelementStart(21, "p");
|
595
|
+
i0.ɵɵtext(22);
|
596
|
+
i0.ɵɵpipe(23, "translate");
|
597
|
+
i0.ɵɵelementEnd()();
|
598
|
+
i0.ɵɵelementStart(24, "h2", 6);
|
599
|
+
i0.ɵɵtext(25);
|
600
|
+
i0.ɵɵpipe(26, "translate");
|
601
|
+
i0.ɵɵelementEnd();
|
602
|
+
i0.ɵɵelementStart(27, "div", 7);
|
603
|
+
i0.ɵɵlistener("cdkDropListDropped", function CubeDesignComponent_form_0_Template_div_cdkDropListDropped_27_listener($event) { i0.ɵɵrestoreView(_r34); const ctx_r33 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r33.drop($event, ctx_r33.axes)); });
|
604
|
+
i0.ɵɵtemplate(28, CubeDesignComponent_form_0_div_28_Template, 19, 11, "div", 8);
|
605
|
+
i0.ɵɵelementEnd();
|
606
|
+
i0.ɵɵelementStart(29, "button", 9);
|
607
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_Template_button_click_29_listener() { i0.ɵɵrestoreView(_r34); const ctx_r35 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r35.addAxis()); });
|
608
|
+
i0.ɵɵpipe(30, "translate");
|
609
|
+
i0.ɵɵelementStart(31, "mat-icon");
|
610
|
+
i0.ɵɵtext(32, "add");
|
611
|
+
i0.ɵɵelementEnd()();
|
612
|
+
i0.ɵɵelementStart(33, "h2", 6);
|
613
|
+
i0.ɵɵtext(34);
|
614
|
+
i0.ɵɵpipe(35, "translate");
|
615
|
+
i0.ɵɵelementEnd();
|
616
|
+
i0.ɵɵelementStart(36, "div", 10);
|
617
|
+
i0.ɵɵlistener("cdkDropListDropped", function CubeDesignComponent_form_0_Template_div_cdkDropListDropped_36_listener($event) { i0.ɵɵrestoreView(_r34); const ctx_r36 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r36.drop($event, ctx_r36.indices)); });
|
618
|
+
i0.ɵɵtemplate(37, CubeDesignComponent_form_0_div_37_Template, 12, 7, "div", 8);
|
619
|
+
i0.ɵɵelementEnd();
|
620
|
+
i0.ɵɵelementStart(38, "button", 9);
|
621
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_Template_button_click_38_listener() { i0.ɵɵrestoreView(_r34); const ctx_r37 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r37.addIndex()); });
|
622
|
+
i0.ɵɵpipe(39, "translate");
|
623
|
+
i0.ɵɵelementStart(40, "mat-icon");
|
624
|
+
i0.ɵɵtext(41, "add");
|
625
|
+
i0.ɵɵelementEnd()();
|
626
|
+
i0.ɵɵelementStart(42, "h2", 6);
|
627
|
+
i0.ɵɵtext(43);
|
628
|
+
i0.ɵɵpipe(44, "translate");
|
629
|
+
i0.ɵɵelementEnd();
|
630
|
+
i0.ɵɵelementStart(45, "div", 10);
|
631
|
+
i0.ɵɵlistener("cdkDropListDropped", function CubeDesignComponent_form_0_Template_div_cdkDropListDropped_45_listener($event) { i0.ɵɵrestoreView(_r34); const ctx_r38 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r38.drop($event, ctx_r38.patterns)); });
|
632
|
+
i0.ɵɵtemplate(46, CubeDesignComponent_form_0_div_46_Template, 13, 9, "div", 8);
|
633
|
+
i0.ɵɵelementEnd();
|
634
|
+
i0.ɵɵelementStart(47, "button", 9);
|
635
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_Template_button_click_47_listener() { i0.ɵɵrestoreView(_r34); const ctx_r39 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r39.addPattern()); });
|
636
|
+
i0.ɵɵpipe(48, "translate");
|
637
|
+
i0.ɵɵelementStart(49, "mat-icon");
|
638
|
+
i0.ɵɵtext(50, "add");
|
639
|
+
i0.ɵɵelementEnd()();
|
640
|
+
i0.ɵɵelementStart(51, "h2", 6);
|
641
|
+
i0.ɵɵtext(52);
|
642
|
+
i0.ɵɵpipe(53, "translate");
|
643
|
+
i0.ɵɵelementEnd();
|
644
|
+
i0.ɵɵelementStart(54, "div", 11);
|
645
|
+
i0.ɵɵlistener("cdkDropListDropped", function CubeDesignComponent_form_0_Template_div_cdkDropListDropped_54_listener($event) { i0.ɵɵrestoreView(_r34); const ctx_r40 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r40.dropView($event)); });
|
646
|
+
i0.ɵɵtemplate(55, CubeDesignComponent_form_0_div_55_Template, 50, 34, "div", 8);
|
647
|
+
i0.ɵɵelementStart(56, "button", 9);
|
648
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_form_0_Template_button_click_56_listener() { i0.ɵɵrestoreView(_r34); const ctx_r41 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r41.addView()); });
|
649
|
+
i0.ɵɵpipe(57, "translate");
|
650
|
+
i0.ɵɵelementStart(58, "mat-icon");
|
651
|
+
i0.ɵɵtext(59, "add");
|
652
|
+
i0.ɵɵelementEnd()()()();
|
653
|
+
} if (rf & 2) {
|
654
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
655
|
+
i0.ɵɵproperty("formGroup", ctx_r0.form);
|
656
|
+
i0.ɵɵadvance(2);
|
657
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 20, "SecurityLevel"));
|
658
|
+
i0.ɵɵadvance(5);
|
659
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 22, "Global"));
|
660
|
+
i0.ɵɵadvance(3);
|
661
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 24, " "));
|
662
|
+
i0.ɵɵadvance(3);
|
663
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(14, 26, "Positions"));
|
664
|
+
i0.ɵɵadvance(3);
|
665
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(17, 28, " "));
|
666
|
+
i0.ɵɵadvance(3);
|
667
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(20, 30, "Patterns"));
|
668
|
+
i0.ɵɵadvance(3);
|
669
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(23, 32, " "));
|
670
|
+
i0.ɵɵadvance(3);
|
671
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(26, 34, "Axes"));
|
672
|
+
i0.ɵɵadvance(3);
|
673
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.axes.controls);
|
674
|
+
i0.ɵɵadvance(1);
|
675
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(30, 36, "Add"));
|
676
|
+
i0.ɵɵadvance(5);
|
677
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(35, 38, "Indices"));
|
678
|
+
i0.ɵɵadvance(3);
|
679
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.indices.controls);
|
680
|
+
i0.ɵɵadvance(1);
|
681
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(39, 40, "Add"));
|
682
|
+
i0.ɵɵadvance(5);
|
683
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(44, 42, "Patterns"));
|
684
|
+
i0.ɵɵadvance(3);
|
685
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.patterns.controls);
|
686
|
+
i0.ɵɵadvance(1);
|
687
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(48, 44, "Add"));
|
688
|
+
i0.ɵɵadvance(5);
|
689
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(53, 46, "Views"));
|
690
|
+
i0.ɵɵadvance(3);
|
691
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.views.controls);
|
692
|
+
i0.ɵɵadvance(1);
|
693
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(57, 48, "Add"));
|
694
|
+
} }
|
695
|
+
function CubeDesignComponent_ng_template_1_mat_spinner_4_Template(rf, ctx) { if (rf & 1) {
|
696
|
+
i0.ɵɵelement(0, "mat-spinner", 62);
|
697
|
+
} }
|
698
|
+
function CubeDesignComponent_ng_template_1_div_6_tr_5_Template(rf, ctx) { if (rf & 1) {
|
699
|
+
i0.ɵɵelementStart(0, "tr", 65)(1, "td", 66);
|
700
|
+
i0.ɵɵtext(2);
|
701
|
+
i0.ɵɵelementEnd();
|
702
|
+
i0.ɵɵelementStart(3, "td", 66);
|
703
|
+
i0.ɵɵtext(4);
|
704
|
+
i0.ɵɵelementEnd()();
|
705
|
+
} if (rf & 2) {
|
706
|
+
const a_r47 = ctx.$implicit;
|
707
|
+
const ctx_r46 = i0.ɵɵnextContext(3);
|
708
|
+
i0.ɵɵadvance(2);
|
709
|
+
i0.ɵɵtextInterpolate(a_r47.title);
|
710
|
+
i0.ɵɵadvance(2);
|
711
|
+
i0.ɵɵtextInterpolate(ctx_r46.datatype(a_r47.dataType));
|
712
|
+
} }
|
713
|
+
function CubeDesignComponent_ng_template_1_div_6_Template(rf, ctx) { if (rf & 1) {
|
714
|
+
i0.ɵɵelementStart(0, "div")(1, "h2", 6);
|
715
|
+
i0.ɵɵtext(2);
|
716
|
+
i0.ɵɵpipe(3, "translate");
|
717
|
+
i0.ɵɵelementEnd();
|
718
|
+
i0.ɵɵelementStart(4, "table", 63);
|
719
|
+
i0.ɵɵtemplate(5, CubeDesignComponent_ng_template_1_div_6_tr_5_Template, 5, 2, "tr", 64);
|
720
|
+
i0.ɵɵelementEnd()();
|
721
|
+
} if (rf & 2) {
|
722
|
+
const ctx_r43 = i0.ɵɵnextContext(2);
|
723
|
+
i0.ɵɵadvance(2);
|
724
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "Axes"));
|
725
|
+
i0.ɵɵadvance(3);
|
726
|
+
i0.ɵɵproperty("ngForOf", ctx_r43.model.axes);
|
727
|
+
} }
|
728
|
+
function CubeDesignComponent_ng_template_1_div_7_tr_5_Template(rf, ctx) { if (rf & 1) {
|
729
|
+
i0.ɵɵelementStart(0, "tr", 65)(1, "td", 66);
|
730
|
+
i0.ɵɵtext(2);
|
731
|
+
i0.ɵɵelementEnd()();
|
732
|
+
} if (rf & 2) {
|
733
|
+
const a_r49 = ctx.$implicit;
|
734
|
+
i0.ɵɵadvance(2);
|
735
|
+
i0.ɵɵtextInterpolate(a_r49.title);
|
736
|
+
} }
|
737
|
+
function CubeDesignComponent_ng_template_1_div_7_Template(rf, ctx) { if (rf & 1) {
|
738
|
+
i0.ɵɵelementStart(0, "div")(1, "h2", 6);
|
739
|
+
i0.ɵɵtext(2);
|
740
|
+
i0.ɵɵpipe(3, "translate");
|
741
|
+
i0.ɵɵelementEnd();
|
742
|
+
i0.ɵɵelementStart(4, "table", 63);
|
743
|
+
i0.ɵɵtemplate(5, CubeDesignComponent_ng_template_1_div_7_tr_5_Template, 3, 1, "tr", 64);
|
744
|
+
i0.ɵɵelementEnd()();
|
745
|
+
} if (rf & 2) {
|
746
|
+
const ctx_r44 = i0.ɵɵnextContext(2);
|
747
|
+
i0.ɵɵadvance(2);
|
748
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "Indices"));
|
749
|
+
i0.ɵɵadvance(3);
|
750
|
+
i0.ɵɵproperty("ngForOf", ctx_r44.model.indices);
|
751
|
+
} }
|
752
|
+
function CubeDesignComponent_ng_template_1_div_8_tr_5_Template(rf, ctx) { if (rf & 1) {
|
753
|
+
i0.ɵɵelementStart(0, "tr", 65)(1, "td", 66);
|
754
|
+
i0.ɵɵtext(2);
|
755
|
+
i0.ɵɵelementEnd()();
|
756
|
+
} if (rf & 2) {
|
757
|
+
const v_r51 = ctx.$implicit;
|
758
|
+
i0.ɵɵadvance(2);
|
759
|
+
i0.ɵɵtextInterpolate(v_r51.title);
|
760
|
+
} }
|
761
|
+
function CubeDesignComponent_ng_template_1_div_8_Template(rf, ctx) { if (rf & 1) {
|
762
|
+
i0.ɵɵelementStart(0, "div")(1, "h2", 6);
|
763
|
+
i0.ɵɵtext(2);
|
764
|
+
i0.ɵɵpipe(3, "translate");
|
765
|
+
i0.ɵɵelementEnd();
|
766
|
+
i0.ɵɵelementStart(4, "table", 63);
|
767
|
+
i0.ɵɵtemplate(5, CubeDesignComponent_ng_template_1_div_8_tr_5_Template, 3, 1, "tr", 64);
|
768
|
+
i0.ɵɵelementEnd()();
|
769
|
+
} if (rf & 2) {
|
770
|
+
const ctx_r45 = i0.ɵɵnextContext(2);
|
771
|
+
i0.ɵɵadvance(2);
|
772
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "Views"));
|
773
|
+
i0.ɵɵadvance(3);
|
774
|
+
i0.ɵɵproperty("ngForOf", ctx_r45.model.views);
|
775
|
+
} }
|
776
|
+
function CubeDesignComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
777
|
+
const _r53 = i0.ɵɵgetCurrentView();
|
778
|
+
i0.ɵɵelementStart(0, "button", 58);
|
779
|
+
i0.ɵɵlistener("click", function CubeDesignComponent_ng_template_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r53); const ctx_r52 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r52.sync()); });
|
780
|
+
i0.ɵɵelementStart(1, "span");
|
781
|
+
i0.ɵɵtext(2);
|
782
|
+
i0.ɵɵpipe(3, "translate");
|
783
|
+
i0.ɵɵelementEnd();
|
784
|
+
i0.ɵɵtemplate(4, CubeDesignComponent_ng_template_1_mat_spinner_4_Template, 1, 0, "mat-spinner", 59);
|
785
|
+
i0.ɵɵelementEnd();
|
786
|
+
i0.ɵɵelementStart(5, "div", 60);
|
787
|
+
i0.ɵɵtemplate(6, CubeDesignComponent_ng_template_1_div_6_Template, 6, 4, "div", 61);
|
788
|
+
i0.ɵɵtemplate(7, CubeDesignComponent_ng_template_1_div_7_Template, 6, 4, "div", 61);
|
789
|
+
i0.ɵɵtemplate(8, CubeDesignComponent_ng_template_1_div_8_Template, 6, 4, "div", 61);
|
790
|
+
i0.ɵɵelementEnd();
|
791
|
+
} if (rf & 2) {
|
792
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
793
|
+
i0.ɵɵadvance(2);
|
794
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(3, 5, "Synchronize"), "");
|
795
|
+
i0.ɵɵadvance(2);
|
796
|
+
i0.ɵɵproperty("ngIf", ctx_r2.syncing);
|
797
|
+
i0.ɵɵadvance(2);
|
798
|
+
i0.ɵɵproperty("ngIf", ctx_r2.model.axes.length);
|
799
|
+
i0.ɵɵadvance(1);
|
800
|
+
i0.ɵɵproperty("ngIf", ctx_r2.model.indices.length);
|
801
|
+
i0.ɵɵadvance(1);
|
802
|
+
i0.ɵɵproperty("ngIf", ctx_r2.model.views.length);
|
803
|
+
} }
|
27
804
|
let CubeDesignComponent = class CubeDesignComponent extends DesignerTypeElementComponent {
|
28
805
|
constructor(fb, _service, _ps, ref) {
|
29
806
|
super(fb, ref);
|
@@ -172,17 +949,23 @@ let CubeDesignComponent = class CubeDesignComponent extends DesignerTypeElementC
|
|
172
949
|
}
|
173
950
|
}
|
174
951
|
};
|
175
|
-
CubeDesignComponent.ɵfac =
|
176
|
-
CubeDesignComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.3", type: CubeDesignComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: " <form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\" *ngIf=\"mode === 'edit'; else info\">\r\n <mat-label>{{'SecurityLevel'|translate}}</mat-label>\r\n <br />\r\n <mat-radio-group formControlName=\"scope\">\r\n <mat-radio-button>{{'Global'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n <mat-radio-button value=\"Positions\">{{'Positions'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n <mat-radio-button value=\"Patterns\">{{'Patterns'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n </mat-radio-group>\r\n <!-- Axes -->\r\n <h2 class=\"mat-title\">{{'Axes'|translate}}</h2>\r\n <div formArrayName=\"axes\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, axes)\">\r\n <div class=\"row\" *ngFor=\"let a of axes.controls; index as index\" [formGroup]=\"a\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'DataType'|translate}}</mat-label>\r\n <mat-select formControlName=\"dataType\" required>\r\n <mat-option *ngFor=\"let t of types\" [value]=\"t.name\">{{t.title}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeAxis(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addAxis()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Indices -->\r\n <h2 class=\"mat-title\">{{'Indices'|translate}}</h2>\r\n <div formArrayName=\"indices\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, indices)\">\r\n <div class=\"row\" *ngFor=\"let a of indices.controls; index as index\" [formGroup]=\"a\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeIndex(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addIndex()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Patterns -->\r\n <h2 class=\"mat-title\">{{'Patterns'|translate}}</h2>\r\n <div formArrayName=\"indices\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, patterns)\">\r\n <div class=\"row\" *ngFor=\"let p of patterns.controls; index as index\" [formGroup]=\"p\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" />\r\n </mat-form-field>\r\n <bizdoc-cube-filter [cube]=\"model.name\" [(axes)]=\"p.get('axes').value\"></bizdoc-cube-filter>\r\n <button mat-icon-button (click)=\"removePattern(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addPattern()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Views -->\r\n <h2 class=\"mat-title\">{{'Views'|translate}}</h2>\r\n <div formArrayName=\"views\" class=\"column\" cdkDropList (cdkDropListDropped)=\"dropView($event)\">\r\n <div class=\"row\" *ngFor=\"let v of views.controls; index as index\" [formGroup]=\"v\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n \r\n <bizdoc-icon-picker formControlName=\"icon\" required></bizdoc-icon-picker>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'Type'|translate}}</mat-label>\r\n <mat-select formControlName=\"type\">\r\n <mat-option value=\"Chart\">{{'Chart'|translate}}</mat-option>\r\n <mat-option value=\"Pivot\">{{'Pivot'|translate}}</mat-option>\r\n <mat-option value=\"Grid\">{{'Grid'|translate}}</mat-option>\r\n <mat-option value=\"Spreadsheet\">{{'Spreadsheet'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n \r\n <ng-container [ngSwitch]=\"v.get('type').value\">\r\n <mat-form-field *ngSwitchCase=\"'Chart'\">\r\n <mat-label>{{'ChartType'|translate}}</mat-label>\r\n <mat-select formControlName=\"chartType\">\r\n <mat-option value=\"Pie\">{{'Pie'|translate}}</mat-option>\r\n <mat-option value=\"Doughnut\">{{'Doughnut'|translate}}</mat-option>\r\n <mat-option value=\"HalfDoughnut\">{{'HalfDoughnut'|translate}}</mat-option>\r\n <mat-option value=\"Column\">{{'Column'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn\">{{'StackingColumn'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn100\">{{'StackingColumn100'|translate}}</mat-option>\r\n <mat-option value=\"Bar\">{{'Bar'|translate}}</mat-option>\r\n <mat-option value=\"Bubble\">{{'Bubble'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar\">{{'StackingBar'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar100\">{{'StackingBar100'|translate}}</mat-option>\r\n <mat-option value=\"Line\">{{'Line'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine\">{{'StackingLine'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine100\">{{'StackingLine100'|translate}}</mat-option>\r\n <mat-option value=\"Spline\">{{'Spline'|translate}}</mat-option>\r\n <mat-option value=\"SplineArea\">{{'SplineArea'|translate}}</mat-option>\r\n <mat-option value=\"Area\">{{'Area'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea\">{{'StackingArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea100\">{{'StackingArea100'|translate}}</mat-option>\r\n <mat-option value=\"Scatter\">{{'Scatter'|translate}}</mat-option>\r\n <mat-option value=\"Polar\">{{'Polar'|translate}}</mat-option>\r\n <mat-option value=\"Radar\">{{'Radar'|translate}}</mat-option>\r\n <mat-option value=\"StepLine\">{{'StepLine'|translate}}</mat-option>\r\n <mat-option value=\"StepArea\">{{'StepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingStepArea\">{{'StackingStepArea'|translate}}</mat-option>\r\n <mat-option value=\"Funnel\">{{'Funnel'|translate}}</mat-option>\r\n <mat-option value=\"Pyramid\">{{'Pyramid'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field *ngSwitchCase=\"'Pivot'\">\r\n <mat-label>{{'ChartType'|translate}}</mat-label>\r\n <mat-select formControlName=\"chartType\">\r\n <mat-option>{{'None'|translate}}</mat-option>\r\n <mat-option value=\"Column\">{{'Column'|translate}}</mat-option>\r\n <mat-option value=\"Bar\">{{'Bar'|translate}}</mat-option>\r\n <mat-option value=\"Bubble\">{{'Bubble'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar\">{{'StackingBar'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar100\">{{'StackingBar100'|translate}}</mat-option>\r\n <mat-option value=\"Line\">{{'Line'|translate}}</mat-option>\r\n <mat-option value=\"Spline\">{{'Spline'|translate}}</mat-option>\r\n <mat-option value=\"SplineArea\">{{'SplineArea'|translate}}</mat-option>\r\n <mat-option value=\"Area\">{{'Area'|translate}}</mat-option>\r\n <mat-option value=\"Doughnut\">{{'Doughnut'|translate}}</mat-option>\r\n <mat-option value=\"HalfDoughnut\">{{'HalfDoughnut'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea\">{{'StackingArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea100\">{{'StackingArea100'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn\">{{'StackingColumn'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn100\">{{'StackingColumn100'|translate}}</mat-option>\r\n <mat-option value=\"Scatter\">{{'Scatter'|translate}}</mat-option>\r\n <mat-option value=\"Polar\">{{'Polar'|translate}}</mat-option>\r\n <mat-option value=\"Radar\">{{'Radar'|translate}}</mat-option>\r\n <mat-option value=\"StepLine\">{{'StepLine'|translate}}</mat-option>\r\n <mat-option value=\"StepArea\">{{'StepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingStepArea\">{{'StackingStepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine\">{{'StackingLine'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine100\">{{'StackingLine100'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n </ng-container>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'XAxis'|translate}}</mat-label>\r\n <mat-select formControlName=\"xAxis\" required (selectionChange)=\"xAxisSelected(index, $event)\" multiple>\r\n <mat-option *ngFor=\"let x of model.axes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'Series'|translate}}</mat-label>\r\n <mat-select formControlName=\"series\" multiple [disabled]=\"isAccum(index)\">\r\n <mat-option *ngFor=\"let x of secondaryAxes[index]\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeView(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n <button mat-icon-button (click)=\"addView()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n </div>\r\n</form>\r\n<!-- Info -->\r\n<ng-template #info>\r\n <button mat-stroked-button (click)=\"sync()\">\r\n <span> {{'Synchronize'|translate}}</span>\r\n <mat-spinner *ngIf=\"syncing\" diameter=\"20\"></mat-spinner>\r\n </button>\r\n <div class=\"row\">\r\n <div *ngIf=\"model.axes.length\">\r\n <h2 class=\"mat-title\">{{'Axes'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let a of model.axes\">\r\n <!--<td class=\"mat-cell\">{{a.name}}</td>-->\r\n <td class=\"mat-cell\">{{a.title}}</td>\r\n <td class=\"mat-cell\">{{datatype(a.dataType)}}</td>\r\n </tr>\r\n </table>\r\n </div>\r\n <div *ngIf=\"model.indices.length\">\r\n <h2 class=\"mat-title\">{{'Indices'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let a of model.indices\">\r\n <!--<td class=\"mat-cell\">{{a.name}}</td>-->\r\n <td class=\"mat-cell\">{{a.title}}</td>\r\n </tr>\r\n </table>\r\n </div>\r\n <div *ngIf=\"model.views.length\">\r\n <h2 class=\"mat-title\">{{'Views'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let v of model.views\">\r\n <td class=\"mat-cell\">{{v.title}}</td>\r\n <!--<td class=\"mat-cell\">({{(v.type||'Chart')|translate}})</td>-->\r\n </tr>\r\n </table>\r\n </div>\r\n </div>\r\n</ng-template>\r\n", dependencies: [{ kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i4.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.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: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i5.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: i5.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: i5.CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { kind: "directive", type: i6.MatRadioGroup, selector: "mat-radio-group", exportAs: ["matRadioGroup"] }, { kind: "component", type: i6.MatRadioButton, selector: "mat-radio-button", inputs: ["disableRipple", "tabIndex"], exportAs: ["matRadioButton"] }, { kind: "component", type: i7.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "diameter", "strokeWidth", "mode", "value"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: i8.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "component", type: i9.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i9.MatLabel, selector: "mat-label" }, { kind: "component", type: i10.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { kind: "component", type: i11.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: "directive", type: i12.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: i13.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i14.CubeFilterComponent, selector: "bizdoc-cube-filter", inputs: ["cube", "exclude", "include", "axes"], outputs: ["axesChange"] }, { kind: "directive", type: i15.TooltipDirective, selector: "[bizdocTooltip]", inputs: ["bizdocTooltip", "bizdocTooltipTemplate", "bizdocTooltipContext", "bizdocTooltipPosition", "bizdocTooltipDuration", "bizdocTooltipDisabled"] }, { kind: "component", type: i16.IconPickerComponent, selector: "bizdoc-icon-picker", inputs: ["value", "required", "disabled"], outputs: ["valueChanges"] }, { kind: "pipe", type: i17.TranslatePipe, name: "translate" }] });
|
952
|
+
CubeDesignComponent.ɵfac = function CubeDesignComponent_Factory(t) { return new (t || CubeDesignComponent)(i0.ɵɵdirectiveInject(i1.FormBuilder), i0.ɵɵdirectiveInject(i2.SystemService), i0.ɵɵdirectiveInject(i3.PromptService), i0.ɵɵdirectiveInject(DesignerRef)); };
|
953
|
+
CubeDesignComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CubeDesignComponent, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [["autocomplete", "off", "class", "column", 3, "formGroup", 4, "ngIf", "ngIfElse"], ["info", ""], ["autocomplete", "off", 1, "column", 3, "formGroup"], ["formControlName", "scope"], ["value", "Positions"], ["value", "Patterns"], [1, "mat-title"], ["formArrayName", "axes", "cdkDropList", "", 1, "column", 3, "cdkDropListDropped"], ["class", "row", "cdkDrag", "", 3, "formGroup", 4, "ngFor", "ngForOf"], ["mat-icon-button", "", 3, "bizdocTooltip", "click"], ["formArrayName", "indices", "cdkDropList", "", 1, "column", 3, "cdkDropListDropped"], ["formArrayName", "views", "cdkDropList", "", 1, "column", 3, "cdkDropListDropped"], ["cdkDrag", "", 1, "row", 3, "formGroup"], ["cdkDragHandle", ""], [1, "flex"], ["matInput", "", "formControlName", "title", "required", ""], ["formControlName", "dataType", "required", ""], [3, "value", 4, "ngFor", "ngForOf"], [3, "value"], ["matInput", "", "formControlName", "title"], [3, "cube", "axes", "axesChange"], ["formControlName", "icon", "required", ""], ["formControlName", "type"], ["value", "Chart"], ["value", "Pivot"], ["value", "Grid"], ["value", "Spreadsheet"], [3, "ngSwitch"], [4, "ngSwitchCase"], ["formControlName", "xAxis", "required", "", "multiple", "", 3, "selectionChange"], ["formControlName", "series", "multiple", "", 3, "disabled"], ["formControlName", "chartType"], ["value", "Pie"], ["value", "Doughnut"], ["value", "HalfDoughnut"], ["value", "Column"], ["value", "StackingColumn"], ["value", "StackingColumn100"], ["value", "Bar"], ["value", "Bubble"], ["value", "StackingBar"], ["value", "StackingBar100"], ["value", "Line"], ["value", "StackingLine"], ["value", "StackingLine100"], ["value", "Spline"], ["value", "SplineArea"], ["value", "Area"], ["value", "StackingArea"], ["value", "StackingArea100"], ["value", "Scatter"], ["value", "Polar"], ["value", "Radar"], ["value", "StepLine"], ["value", "StepArea"], ["value", "StackingStepArea"], ["value", "Funnel"], ["value", "Pyramid"], ["mat-stroked-button", "", 3, "click"], ["diameter", "20", 4, "ngIf"], [1, "row"], [4, "ngIf"], ["diameter", "20"], [1, "mat-table"], ["class", "mat-row", 4, "ngFor", "ngForOf"], [1, "mat-row"], [1, "mat-cell"]], template: function CubeDesignComponent_Template(rf, ctx) { if (rf & 1) {
|
954
|
+
i0.ɵɵtemplate(0, CubeDesignComponent_form_0_Template, 60, 50, "form", 0);
|
955
|
+
i0.ɵɵtemplate(1, CubeDesignComponent_ng_template_1_Template, 9, 7, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
956
|
+
} if (rf & 2) {
|
957
|
+
const _r1 = i0.ɵɵreference(2);
|
958
|
+
i0.ɵɵproperty("ngIf", ctx.mode === "edit")("ngIfElse", _r1);
|
959
|
+
} }, dependencies: [i4.NgForOf, i4.NgIf, i4.NgSwitch, i4.NgSwitchCase, i1.ɵNgNoValidate, i1.DefaultValueAccessor, i1.NgControlStatus, i1.NgControlStatusGroup, i1.RequiredValidator, i1.FormGroupDirective, i1.FormControlName, i1.FormArrayName, i5.CdkDropList, i5.CdkDrag, i5.CdkDragHandle, i6.MatRadioGroup, i6.MatRadioButton, i7.MatProgressSpinner, i8.MatOption, i9.MatFormField, i9.MatLabel, i10.MatSelect, i11.MatButton, i12.MatInput, i13.MatIcon, i14.CubeFilterComponent, i15.TooltipDirective, i16.IconPickerComponent, i17.TranslatePipe], encapsulation: 2 });
|
177
960
|
CubeDesignComponent = __decorate([
|
178
961
|
BizDoc({ selector: 'cube-designer' })
|
179
962
|
], CubeDesignComponent);
|
180
963
|
export { CubeDesignComponent };
|
181
|
-
|
182
|
-
|
183
|
-
args: [{ template: " <form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\" *ngIf=\"mode === 'edit'; else info\">\r\n <mat-label>{{'SecurityLevel'|translate}}</mat-label>\r\n <br />\r\n <mat-radio-group formControlName=\"scope\">\r\n <mat-radio-button>{{'Global'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n <mat-radio-button value=\"Positions\">{{'Positions'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n <mat-radio-button value=\"Patterns\">{{'Patterns'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n </mat-radio-group>\r\n <!-- Axes -->\r\n <h2 class=\"mat-title\">{{'Axes'|translate}}</h2>\r\n <div formArrayName=\"axes\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, axes)\">\r\n <div class=\"row\" *ngFor=\"let a of axes.controls; index as index\" [formGroup]=\"a\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'DataType'|translate}}</mat-label>\r\n <mat-select formControlName=\"dataType\" required>\r\n <mat-option *ngFor=\"let t of types\" [value]=\"t.name\">{{t.title}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeAxis(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addAxis()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Indices -->\r\n <h2 class=\"mat-title\">{{'Indices'|translate}}</h2>\r\n <div formArrayName=\"indices\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, indices)\">\r\n <div class=\"row\" *ngFor=\"let a of indices.controls; index as index\" [formGroup]=\"a\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeIndex(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addIndex()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Patterns -->\r\n <h2 class=\"mat-title\">{{'Patterns'|translate}}</h2>\r\n <div formArrayName=\"indices\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, patterns)\">\r\n <div class=\"row\" *ngFor=\"let p of patterns.controls; index as index\" [formGroup]=\"p\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" />\r\n </mat-form-field>\r\n <bizdoc-cube-filter [cube]=\"model.name\" [(axes)]=\"p.get('axes').value\"></bizdoc-cube-filter>\r\n <button mat-icon-button (click)=\"removePattern(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addPattern()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Views -->\r\n <h2 class=\"mat-title\">{{'Views'|translate}}</h2>\r\n <div formArrayName=\"views\" class=\"column\" cdkDropList (cdkDropListDropped)=\"dropView($event)\">\r\n <div class=\"row\" *ngFor=\"let v of views.controls; index as index\" [formGroup]=\"v\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n \r\n <bizdoc-icon-picker formControlName=\"icon\" required></bizdoc-icon-picker>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'Type'|translate}}</mat-label>\r\n <mat-select formControlName=\"type\">\r\n <mat-option value=\"Chart\">{{'Chart'|translate}}</mat-option>\r\n <mat-option value=\"Pivot\">{{'Pivot'|translate}}</mat-option>\r\n <mat-option value=\"Grid\">{{'Grid'|translate}}</mat-option>\r\n <mat-option value=\"Spreadsheet\">{{'Spreadsheet'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n \r\n <ng-container [ngSwitch]=\"v.get('type').value\">\r\n <mat-form-field *ngSwitchCase=\"'Chart'\">\r\n <mat-label>{{'ChartType'|translate}}</mat-label>\r\n <mat-select formControlName=\"chartType\">\r\n <mat-option value=\"Pie\">{{'Pie'|translate}}</mat-option>\r\n <mat-option value=\"Doughnut\">{{'Doughnut'|translate}}</mat-option>\r\n <mat-option value=\"HalfDoughnut\">{{'HalfDoughnut'|translate}}</mat-option>\r\n <mat-option value=\"Column\">{{'Column'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn\">{{'StackingColumn'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn100\">{{'StackingColumn100'|translate}}</mat-option>\r\n <mat-option value=\"Bar\">{{'Bar'|translate}}</mat-option>\r\n <mat-option value=\"Bubble\">{{'Bubble'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar\">{{'StackingBar'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar100\">{{'StackingBar100'|translate}}</mat-option>\r\n <mat-option value=\"Line\">{{'Line'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine\">{{'StackingLine'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine100\">{{'StackingLine100'|translate}}</mat-option>\r\n <mat-option value=\"Spline\">{{'Spline'|translate}}</mat-option>\r\n <mat-option value=\"SplineArea\">{{'SplineArea'|translate}}</mat-option>\r\n <mat-option value=\"Area\">{{'Area'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea\">{{'StackingArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea100\">{{'StackingArea100'|translate}}</mat-option>\r\n <mat-option value=\"Scatter\">{{'Scatter'|translate}}</mat-option>\r\n <mat-option value=\"Polar\">{{'Polar'|translate}}</mat-option>\r\n <mat-option value=\"Radar\">{{'Radar'|translate}}</mat-option>\r\n <mat-option value=\"StepLine\">{{'StepLine'|translate}}</mat-option>\r\n <mat-option value=\"StepArea\">{{'StepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingStepArea\">{{'StackingStepArea'|translate}}</mat-option>\r\n <mat-option value=\"Funnel\">{{'Funnel'|translate}}</mat-option>\r\n <mat-option value=\"Pyramid\">{{'Pyramid'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field *ngSwitchCase=\"'Pivot'\">\r\n <mat-label>{{'ChartType'|translate}}</mat-label>\r\n <mat-select formControlName=\"chartType\">\r\n <mat-option>{{'None'|translate}}</mat-option>\r\n <mat-option value=\"Column\">{{'Column'|translate}}</mat-option>\r\n <mat-option value=\"Bar\">{{'Bar'|translate}}</mat-option>\r\n <mat-option value=\"Bubble\">{{'Bubble'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar\">{{'StackingBar'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar100\">{{'StackingBar100'|translate}}</mat-option>\r\n <mat-option value=\"Line\">{{'Line'|translate}}</mat-option>\r\n <mat-option value=\"Spline\">{{'Spline'|translate}}</mat-option>\r\n <mat-option value=\"SplineArea\">{{'SplineArea'|translate}}</mat-option>\r\n <mat-option value=\"Area\">{{'Area'|translate}}</mat-option>\r\n <mat-option value=\"Doughnut\">{{'Doughnut'|translate}}</mat-option>\r\n <mat-option value=\"HalfDoughnut\">{{'HalfDoughnut'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea\">{{'StackingArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea100\">{{'StackingArea100'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn\">{{'StackingColumn'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn100\">{{'StackingColumn100'|translate}}</mat-option>\r\n <mat-option value=\"Scatter\">{{'Scatter'|translate}}</mat-option>\r\n <mat-option value=\"Polar\">{{'Polar'|translate}}</mat-option>\r\n <mat-option value=\"Radar\">{{'Radar'|translate}}</mat-option>\r\n <mat-option value=\"StepLine\">{{'StepLine'|translate}}</mat-option>\r\n <mat-option value=\"StepArea\">{{'StepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingStepArea\">{{'StackingStepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine\">{{'StackingLine'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine100\">{{'StackingLine100'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n </ng-container>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'XAxis'|translate}}</mat-label>\r\n <mat-select formControlName=\"xAxis\" required (selectionChange)=\"xAxisSelected(index, $event)\" multiple>\r\n <mat-option *ngFor=\"let x of model.axes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'Series'|translate}}</mat-label>\r\n <mat-select formControlName=\"series\" multiple [disabled]=\"isAccum(index)\">\r\n <mat-option *ngFor=\"let x of secondaryAxes[index]\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeView(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n <button mat-icon-button (click)=\"addView()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n </div>\r\n</form>\r\n<!-- Info -->\r\n<ng-template #info>\r\n <button mat-stroked-button (click)=\"sync()\">\r\n <span> {{'Synchronize'|translate}}</span>\r\n <mat-spinner *ngIf=\"syncing\" diameter=\"20\"></mat-spinner>\r\n </button>\r\n <div class=\"row\">\r\n <div *ngIf=\"model.axes.length\">\r\n <h2 class=\"mat-title\">{{'Axes'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let a of model.axes\">\r\n <!--<td class=\"mat-cell\">{{a.name}}</td>-->\r\n <td class=\"mat-cell\">{{a.title}}</td>\r\n <td class=\"mat-cell\">{{datatype(a.dataType)}}</td>\r\n </tr>\r\n </table>\r\n </div>\r\n <div *ngIf=\"model.indices.length\">\r\n <h2 class=\"mat-title\">{{'Indices'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let a of model.indices\">\r\n <!--<td class=\"mat-cell\">{{a.name}}</td>-->\r\n <td class=\"mat-cell\">{{a.title}}</td>\r\n </tr>\r\n </table>\r\n </div>\r\n <div *ngIf=\"model.views.length\">\r\n <h2 class=\"mat-title\">{{'Views'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let v of model.views\">\r\n <td class=\"mat-cell\">{{v.title}}</td>\r\n <!--<td class=\"mat-cell\">({{(v.type||'Chart')|translate}})</td>-->\r\n </tr>\r\n </table>\r\n </div>\r\n </div>\r\n</ng-template>\r\n" }]
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3ViZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvY3ViZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvY3ViZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFlLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3RFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFELE9BQU8sRUFBMkMsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFckYsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUtsRCxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsV0FBVyxFQUFnQixXQUFXLEVBQWUsTUFBTSxrQkFBa0IsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7SUFNeEcsbUJBQW1CLFNBQW5CLG1CQUFvQixTQUFRLDRCQUE0QjtJQThCbkUsWUFBWSxFQUFlLEVBQ2pCLFFBQXVCLEVBQ3ZCLEdBQWtCLEVBQ0wsR0FBZ0I7UUFDckMsS0FBSyxDQUFDLEVBQUUsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUhQLGFBQVEsR0FBUixRQUFRLENBQWU7UUFDdkIsUUFBRyxHQUFILEdBQUcsQ0FBZTtRQS9CbkIsVUFBSyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQzNCLFNBQUksR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFF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Q0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLEVBQUUsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUM5RSxPQUFPLENBQUMsS0FBYTtRQUNuQixRQUFRLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxFQUFFLFNBQVMsRUFBRTtZQUMxQyxLQUFLLEtBQUssQ0FBQztZQUNYLEtBQUssVUFBVSxDQUFDO1lBQ2hCLEtBQUssY0FBYyxDQUFDO1lBQ3BCLEtBQUssUUFBUTtnQkFDWCxPQUFPLElBQUksQ0FBQztTQUNmO0lBQ0gsQ0FBQztDQUNGLENBQUE7Z0hBNUpZLG1CQUFtQix1R0FpQ3BCLFdBQVc7b0dBakNWLG1CQUFtQiwyRUNoQmhDLHd2WEFzTUE7QUR0TGEsbUJBQW1CO0lBRC9CLE1BQU0sQ0FBQyxFQUFFLFFBQVEsRUFBRSxlQUFlLEVBQUUsQ0FBQztHQUN6QixtQkFBbUIsQ0E0Si9CO1NBNUpZLG1CQUFtQjsyRkFBbkIsbUJBQW1CO2tCQUovQixTQUFTOzs7MEJBcUNMLE1BQU07MkJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka0RyYWdEcm9wLCBtb3ZlSXRlbUluQXJyYXkgfSBmcm9tIFwiQGFuZ3VsYXIvY2RrL2RyYWctZHJvcFwiO1xyXG5pbXBvcnQgeyBDb21wb25lbnQsIEluamVjdCwgT25Jbml0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgQWJzdHJhY3RDb250cm9sLCBGb3JtQnVpbGRlciwgRm9ybUdyb3VwLCBWYWxpZGF0b3JzIH0gZnJvbSBcIkBhbmd1bGFyL2Zvcm1zXCI7XHJcbmltcG9ydCB7IE1hdFNlbGVjdENoYW5nZSB9IGZyb20gXCJAYW5ndWxhci9tYXRlcmlhbC9zZWxlY3RcIjtcclxuaW1wb3J0IHsgQml6RG9jIH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvZGVjb3JhdG9yc1wiO1xyXG5pbXBvcnQgeyBpc0FycmF5IH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvZnVuY3Rpb25zXCI7XHJcbmltcG9ydCB7IEN1YmVBeGlzLCBDdWJlSW5kZXgsIEN1YmVWaWV3IH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IFByb21wdFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vY29yZS9wcm9tcHQuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBQYXR0ZXJuIH0gZnJvbSBcIi4uLy4uLy4uL2N1YmUvY3ViZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEN1YmVJbmZvLCBTeXN0ZW1TZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3N5c3RlbS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IERlc2lnbmVyVHlwZUVsZW1lbnRDb21wb25lbnQsIERlc2lnbmVyUmVmLCBFbGVtZW50TW9kZWwsIHByb2dyYW1OYW1lLCBFbGVtZW50SW5mbyB9IGZyb20gXCIuLi9kZXNpZ25lci5iYXNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZVVybDogJ2N1YmUuY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbkBCaXpEb2MoeyBzZWxlY3RvcjogJ2N1YmUtZGVzaWduZXInIH0pXHJcbmV4cG9ydCBjbGFzcyBDdWJlRGVzaWduQ29tcG9uZW50IGV4dGVuZHMgRGVzaWduZXJUeXBlRWxlbWVudENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgcmVhZG9ubHkgdmlld3MgPSB0aGlzLl9mYi5hcnJheShbXSk7XHJcbiAgcmVhZG9ubHkgYXhlcyA9IHRoaXMuX2ZiLmFycmF5KFtdKTtcclxuICByZWFkb25seSBpbmRpY2VzID0gdGhpcy5fZmIuYXJyYXkoW10pO1xyXG4gIHJlYWRvbmx5IHBhdHRlcm5zID0gdGhpcy5fZmIuYXJyYXkoW10pO1xyXG4gIHByaXZhdGUgX2N1YmVBeGVzVmFsaWRhdG9yID0gKF86IEFic3RyYWN0Q29udHJvbCkgPT4ge1xyXG4gICAgaWYgKCF0aGlzLm1vZGVsKSByZXR1cm47XHJcbiAgICBjb25zdCBheGVzID0gdGhpcy5tb2RlbC5heGVzLm1hcCh4ID0+IHgubmFtZSk7XHJcbiAgICBsZXQgaSA9IDAsIG4gPSB0aGlzLm1vZGVsLnZpZXdzLmxlbmd0aDtcclxuICAgIHdoaWxlIChpIDwgbikge1xyXG4gICAgICBsZXQgdmlldyA9IHRoaXMubW9kZWwudmlld3NbaV07XHJcbiAgICAgIGlmICh2aWV3LnhBeGlzICYmIHZpZXcueEF4aXMuc29tZSh4ID0+IGF4ZXMuaW5kZXhPZih4KSA8IDApKVxyXG4gICAgICAgIHJldHVybiB7IHhBeGlzOiBmYWxzZSB9O1xyXG4gICAgICBpZiAodmlldy5zZXJpZXMgJiYgdmlldy5zZXJpZXMuc29tZSh4ID0+IGF4ZXMuaW5kZXhPZih4KSA8IDApKVxyXG4gICAgICAgIHJldHVybiB7IHNlcmllczogZmFsc2UgfTtcclxuICAgICAgaSsrO1xyXG4gICAgfVxyXG4gIH07XHJcbiAgcmVhZG9ubHkgZm9ybSA9IHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgIHBhdHRlcm5zOiB0aGlzLnBhdHRlcm5zLFxyXG4gICAgdmlld3M6IHRoaXMudmlld3MsXHJcbiAgICBheGVzOiB0aGlzLmF4ZXMsXHJcbiAgICBpbmRpY2VzOiB0aGlzLmluZGljZXMsXHJcbiAgICBzY29wZTogdGhpcy5fZmIuY29udHJvbChudWxsLCBWYWxpZGF0b3JzLnJlcXVpcmVkKSxcclxuICAgIGFub21hbHk6IHRoaXMuX2ZiLmNvbnRyb2wobnVsbCwgVmFsaWRhdG9ycy5yZXF1aXJlZCksXHJcbiAgfSwgeyAvKnZhbGlkYXRvcnM6IHRoaXMuX2N1YmVBeGVzVmFsaWRhdG9yKi8gfSk7XHJcbiAgc2Vjb25kYXJ5QXhlczogQ3ViZUF4aXNbXVtdID0gW107XHJcbiAgdXNhZ2U6IEN1YmVJbmZvO1xyXG4gIHN5bmNpbmcgPSBmYWxzZTtcclxuICByZWFkb25seSB0eXBlczogRWxlbWVudEluZm9bXTtcclxuICBjb25zdHJ1Y3RvcihmYjogRm9ybUJ1aWxkZXIsXHJcbiAgICBwcml2YXRlIF9zZXJ2aWNlOiBTeXN0ZW1TZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfcHM6IFByb21wdFNlcnZpY2UsXHJcbiAgICBASW5qZWN0KERlc2lnbmVyUmVmKSByZWY6IERlc2lnbmVyUmVmKSB7XHJcbiAgICBzdXBlcihmYiwgcmVmKTtcclxuICAgIHRoaXMudHlwZXMgPSByZWYuZGVzaWduZXIudHlwZXM7XHJcbiAgfVxyXG4gIHN5bmMoKSB7XHJcbiAgICB0aGlzLnN5bmNpbmcgPSB0cnVlO1xyXG4gICAgdGhpcy5fc2VydmljZS5zeW5jaHJpbml6ZSh0aGlzLm1vZGVsLm5hbWUpLnN1YnNjcmliZSgoKSA9PiB0aGlzLnN5bmNpbmcgPSBmYWxzZSwgKCkgPT4ge1xyXG4gICAgICB0aGlzLnN5bmNpbmcgPSBmYWxzZTtcclxuICAgICAgdGhpcy5fcHMuZXJyb3IoKTtcclxuICAgIH0pO1xyXG4gIH1cclxuICBuZ09uSW5pdCgpIHtcclxuICAgIGlmICh0aGlzLm1vZGUgPT09ICdlZGl0Jykge1xyXG4gICAgICB0aGlzLm1vZGVsLmF4ZXM/LmZvckVhY2goYSA9PiB7XHJcbiAgICAgICAgdGhpcy5heGVzLnB1c2godGhpcy5fZm9ybWF4aXMoYSksIHsgZW1pdEV2ZW50OiB0cnVlIH0pO1xyXG4gICAgICB9KTtcclxuICAgICAgdGhpcy5tb2RlbC5pbmRpY2VzPy5mb3JFYWNoKGkgPT5cclxuICAgICAgICB0aGlzLmluZGljZXMucHVzaCh0aGlzLl9mb3JtaW5kZXgoaSksIHsgZW1pdEV2ZW50OiB0cnVlIH0pXHJcbiAgICAgICk7XHJcbiAgICAgIHRoaXMubW9kZWwucGF0dGVybnM/LmZvckVhY2gocCA9PlxyXG4gICAgICAgIHRoaXMucGF0dGVybnMucHVzaCh0aGlzLl9mb3JtcGF0dGVybihwKSwgeyBlbWl0RXZlbnQ6IHRydWUgfSlcclxuICAgICAgKTtcclxuICAgICAgdGhpcy5tb2RlbC52aWV3cz8uZm9yRWFjaCgodiwgaSkgPT4ge1xyXG4gICAgICAgIHRoaXMudmlld3MucHVzaCh0aGlzLl9mb3Jtdmlldyh2KSwgeyBlbWl0RXZlbnQ6IHRydWUgfSk7XHJcbiAgICAgICAgdGhpcy5fc2Vjb25kYXJ5QXhlcyhpLCB2LnhBeGlzKTtcclxuICAgICAgfSk7XHJcbiAgICB9XHJcbiAgICBlbHNlXHJcbiAgICAgIHRoaXMuX3NlcnZpY2UuY3ViZSh0aGlzLm1vZGVsLm5hbWUpLnN1YnNjcmliZShyID0+IHRoaXMudXNhZ2UgPSByKTtcclxuICB9XHJcbiAgZHJvcFZpZXcoZXZlbnQ6IENka0RyYWdEcm9wPEZvcm1Hcm91cD4pIHtcclxuICAgIHRoaXMuZHJvcChldmVudCwgdGhpcy52aWV3cyk7XHJcbiAgICBtb3ZlSXRlbUluQXJyYXkodGhpcy5zZWNvbmRhcnlBeGVzLCBldmVudC5wcmV2aW91c0luZGV4LCBldmVudC5jdXJyZW50SW5kZXgpO1xyXG4gIH1cclxuXHJcbiAgcmVtb3ZlQXhpcyhpbmRleDogbnVtYmVyKSB7XHJcbiAgICB0aGlzLmF4ZXMucmVtb3ZlQXQoaW5kZXgpO1xyXG4gIH1cclxuICByZW1vdmVJbmRleChpbmRleDogbnVtYmVyKSB7XHJcbiAgICB0aGlzLmluZGljZXMucmVtb3ZlQXQoaW5kZXgpO1xyXG4gIH1cclxuICByZW1vdmVQYXR0ZXJuKGluZGV4OiBudW1iZXIpIHtcclxuICAgIHRoaXMucGF0dGVybnMucmVtb3ZlQXQoaW5kZXgpO1xyXG4gIH1cclxuICByZW1vdmVWaWV3KGluZGV4OiBudW1iZXIpIHtcclxuICAgIHRoaXMuc2Vjb25kYXJ5QXhlcy5zcGxpY2UoaW5kZXgsIDEpO1xyXG4gICAgdGhpcy52aWV3cy5yZW1vdmVBdChpbmRleCk7XHJcbiAgfVxyXG4gIGFkZEF4aXMoKSB7XHJcbiAgICB0aGlzLmF4ZXMucHVzaCh0aGlzLl9mb3JtYXhpcygpKTtcclxuICB9XHJcbiAgYWRkSW5kZXgoKSB7XHJcbiAgICB0aGlzLmluZGljZXMucHVzaCh0aGlzLl9mb3JtaW5kZXgoKSk7XHJcbiAgfVxyXG4gIGFkZFZpZXcoKSB7XHJcbiAgICB0aGlzLnZpZXdzLnB1c2godGhpcy5fZm9ybXZpZXcoKSk7XHJcbiAgfVxyXG4gIGFkZFBhdHRlcm4oKSB7XHJcbiAgICB0aGlzLnBhdHRlcm5zLnB1c2godGhpcy5fZm9ybXBhdHRlcm4oKSk7XHJcbiAgfVxyXG4gIG5hbWVPZihheGlzOiBzdHJpbmcgfCBzdHJpbmdbXSkgeyByZXR1cm4gdGhpcy5tb2RlbC5heGVzLmZpbHRlcihhID0+IGlzQXJyYXkoYXhpcykgPyBheGlzLmluZGV4T2YoYS5uYW1lKSA+IC0xIDogYS5uYW1lID09PSBheGlzKS5qb2luKCcsICcpIH1cclxuICB4QXhpc1NlbGVjdGVkKGluZGV4OiBudW1iZXIsIGV2dDogTWF0U2VsZWN0Q2hhbmdlKSB7XHJcbiAgICB0aGlzLl9zZWNvbmRhcnlBeGVzKGluZGV4LCBldnQudmFsdWUpO1xyXG4gIH1cclxuICBwcm90ZWN0ZWQgX3NlY29uZGFyeUF4ZXMoaW5kZXg6IG51bWJlciwgYXhpczogc3RyaW5nW10gfCBzdHJpbmcpIHtcclxuICAgIGlmICghYXhpcykgcmV0dXJuO1xyXG4gICAgdGhpcy5zZWNvbmRhcnlBeGVzW2luZGV4XSA9IHRoaXMubW9kZWwuYXhlcy5maWx0ZXIoYSA9PiBpc0FycmF5KGF4aXMpID8gYXhpcy5pbmRleE9mKGEubmFtZSkgPCAwIDogYXhpcyAhPT0gYS5uYW1lKTtcclxuICB9XHJcbiAgcHJpdmF0ZSBfZm9ybXZpZXcobW9kZWw/OiBDdWJlVmlldyk6IGFueSB7XHJcbiAgICBjb25zdCBuYW1lID0gdGhpcy5fZmIuY29udHJvbChtb2RlbD8ubmFtZSwgVmFsaWRhdG9ycy5yZXF1aXJlZCksXHJcbiAgICAgIHRpdGxlID0gdGhpcy5fZmIuY29udHJvbChtb2RlbD8udGl0bGUsIFZhbGlkYXRvcnMucmVxdWlyZWQpO1xyXG4gICAgdGhpcy5tb2RlbC5kcmFmdCAmJiB0aXRsZS52YWx1ZUNoYW5nZXMuXHJcbiAgICAgIHN1YnNjcmliZSh0ID0+IG5hbWUuc2V0VmFsdWUocHJvZ3JhbU5hbWUodCkpKTtcclxuICAgIHJldHVybiB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICAgIG5hbWUsXHJcbiAgICAgIHRpdGxlLFxyXG4gICAgICBpY29uOiBtb2RlbD8uaWNvbiB8fCBudWxsLFxyXG4gICAgICB4QXhpczogdGhpcy5fZmIuY29udHJvbChtb2RlbD8ueEF4aXMsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgICBzZXJpZXM6IG1vZGVsPy5zZXJpZXMgfHwgW10sXHJcbiAgICAgIGluZGljZXM6IG1vZGVsPy5pbmRpY2VzIHx8IFtdLFxyXG4gICAgICB0eXBlOiBtb2RlbD8udHlwZSB8fCAnQ2hhcnQnLFxyXG4gICAgICBjaGFydFR5cGU6IG1vZGVsPy5jaGFydFR5cGUgfHwgbnVsbCxcclxuICAgIH0pO1xyXG4gIH1cclxuICBwcml2YXRlIF9mb3JtYXhpcyhtb2RlbD86IEN1YmVBeGlzKTogYW55IHtcclxuICAgIGNvbnN0IG5hbWUgPSB0aGlzLl9mYi5jb250cm9sKG1vZGVsPy5uYW1lLCBWYWxpZGF0b3JzLnJlcXVpcmVkKSxcclxuICAgICAgdGl0bGUgPSB0aGlzLl9mYi5jb250cm9sKG1vZGVsPy50aXRsZSwgVmFsaWRhdG9ycy5yZXF1aXJlZCk7XHJcbiAgICB0aGlzLm1vZGVsLmRyYWZ0ICYmIHRpdGxlLnZhbHVlQ2hhbmdlcy5cclxuICAgICAgc3Vic2NyaWJlKHQgPT4gbmFtZS5zZXRWYWx1ZShwcm9ncmFtTmFtZSh0KSkpO1xyXG4gICAgcmV0dXJuIHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgICAgbmFtZSxcclxuICAgICAgdGl0bGUsXHJcbiAgICAgIGRlc2NlbmRlbnRPZjogbW9kZWw/LmRlc2NlbmRlbnRPZixcclxuICAgICAgZGF0YVR5cGU6IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/LmRhdGFUeXBlLCBWYWxpZGF0b3JzLnJlcXVpcmVkKVxyXG4gICAgfSk7XHJcbiAgfVxyXG4gIHByaXZhdGUgX2Zvcm1pbmRleChtb2RlbD86IEN1YmVJbmRleCk6IGFueSB7XHJcbiAgICBjb25zdCBuYW1lID0gdGhpcy5fZmIuY29udHJvbChtb2RlbD8ubmFtZSwgVmFsaWRhdG9ycy5yZXF1aXJlZCksXHJcbiAgICAgIHRpdGxlID0gdGhpcy5fZmIuY29udHJvbChtb2RlbD8udGl0bGUsIFZhbGlkYXRvcnMucmVxdWlyZWQpO1xyXG4gICAgdGhpcy5tb2RlbC5kcmFmdCAmJiB0aXRsZS52YWx1ZUNoYW5nZXMuXHJcbiAgICAgIHN1YnNjcmliZSh0ID0+IG5hbWUuc2V0VmFsdWUocHJvZ3JhbU5hbWUodCkpKTtcclxuICAgIHJldHVybiB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICAgIG5hbWUsXHJcbiAgICAgIHRpdGxlLFxyXG4gICAgICBhY2N1bXVsYXRlOiBtb2RlbD8uYWNjdW11bGF0ZSxcclxuICAgIH0pO1xyXG4gIH1cclxuICBwcml2YXRlIF9mb3JtcGF0dGVybihtb2RlbD86IFBhdHRlcm4pOiBhbnkge1xyXG4gICAgcmV0dXJuIHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgICAgYXhlczogdGhpcy5fZmIuZ3JvdXAobW9kZWw/LmF4ZXMgfHwge30pLFxyXG4gICAgICB0aXRsZTogdGhpcy5fZmIuY29udHJvbChtb2RlbD8udGl0bGUsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgfSk7XHJcbiAgfVxyXG4gIGRhdGF0eXBlKG5hbWU6IHN0cmluZykgeyByZXR1cm4gdGhpcy50eXBlcy5maW5kKHQgPT4gdC5uYW1lID09IG5hbWUpPy50aXRsZTsgfVxyXG4gIGlzQWNjdW0oaW5kZXg6IG51bWJlcikge1xyXG4gICAgc3dpdGNoICh0aGlzLm1vZGVsLnZpZXdzW2luZGV4XT8uY2hhcnRUeXBlKSB7XHJcbiAgICAgIGNhc2UgJ1BpZSc6XHJcbiAgICAgIGNhc2UgJ0RvdWdobnV0JzpcclxuICAgICAgY2FzZSAnSGFsZkRvdWdobnV0JzpcclxuICAgICAgY2FzZSAnRnVubmVsJzpcclxuICAgICAgICByZXR1cm4gdHJ1ZTtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiICA8Zm9ybSBhdXRvY29tcGxldGU9XCJvZmZcIiBbZm9ybUdyb3VwXT1cImZvcm1cIiBjbGFzcz1cImNvbHVtblwiICpuZ0lmPVwibW9kZSA9PT0gJ2VkaXQnOyBlbHNlIGluZm9cIj5cclxuICA8bWF0LWxhYmVsPnt7J1NlY3VyaXR5TGV2ZWwnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICA8YnIgLz5cclxuICAgIDxtYXQtcmFkaW8tZ3JvdXAgZm9ybUNvbnRyb2xOYW1lPVwic2NvcGVcIj5cclxuICAgICAgPG1hdC1yYWRpby1idXR0b24+e3snR2xvYmFsJ3x0cmFuc2xhdGV9fTwvbWF0LXJhZGlvLWJ1dHRvbj5cclxuICAgICAgPHA+e3snICd8dHJhbnNsYXRlfX08L3A+XHJcbiAgICAgIDxtYXQtcmFkaW8tYnV0dG9uIHZhbHVlPVwiUG9zaXRpb25zXCI+e3snUG9zaXRpb25zJ3x0cmFuc2xhdGV9fTwvbWF0LXJhZGlvLWJ1dHRvbj5cclxuICAgICAgPHA+e3snICd8dHJhbnNsYXRlfX08L3A+XHJcbiAgICAgIDxtYXQtcmFkaW8tYnV0dG9uIHZhbHVlPVwiUGF0dGVybnNcIj57eydQYXR0ZXJucyd8dHJhbnNsYXRlfX08L21hdC1yYWRpby1idXR0b24+XHJcbiAgICAgIDxwPnt7JyAnfHRyYW5zbGF0ZX19PC9wPlxyXG4gICAgPC9tYXQtcmFkaW8tZ3JvdXA+XHJcbiAgPCEtLSBBeGVzIC0tPlxyXG4gIDxoMiBjbGFzcz1cIm1hdC10aXRsZVwiPnt7J0F4ZXMnfHRyYW5zbGF0ZX19PC9oMj5cclxuICA8ZGl2IGZvcm1BcnJheU5hbWU9XCJheGVzXCIgY2xhc3M9XCJjb2x1bW5cIiBjZGtEcm9wTGlzdCAoY2RrRHJvcExpc3REcm9wcGVkKT1cImRyb3AoJGV2ZW50LCBheGVzKVwiPlxyXG4gICAgPGRpdiBjbGFzcz1cInJvd1wiICpuZ0Zvcj1cImxldCBhIG9mIGF4ZXMuY29udHJvbHM7IGluZGV4IGFzIGluZGV4XCIgW2Zvcm1Hcm91cF09XCJhXCIgY2RrRHJhZz5cclxuICAgICAgPG1hdC1pY29uIGNka0RyYWdIYW5kbGU+ZHJhZ19pbmRpY2F0b3I8L21hdC1pY29uPlxyXG4gICAgICA8bWF0LWZvcm0tZmllbGQgY2xhc3M9XCJmbGV4XCI+XHJcbiAgICAgICAgPG1hdC1sYWJlbD57eydUaXRsZSd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgICA8aW5wdXQgbWF0SW5wdXQgZm9ybUNvbnRyb2xOYW1lPVwidGl0bGVcIiByZXF1aXJlZCAvPlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAmbmJzcDtcclxuICAgICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAgIDxtYXQtbGFiZWw+e3snRGF0YVR5cGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwiZGF0YVR5cGVcIiByZXF1aXJlZD5cclxuICAgICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCB0IG9mIHR5cGVzXCIgW3ZhbHVlXT1cInQubmFtZVwiPnt7dC50aXRsZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cInJlbW92ZUF4aXMoaW5kZXgpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ1JlbW92ZSd8dHJhbnNsYXRlXCI+PG1hdC1pY29uPmRlbGV0ZTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwiYWRkQXhpcygpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ0FkZCd8dHJhbnNsYXRlXCI+PG1hdC1pY29uPmFkZDwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgPCEtLSBJbmRpY2VzIC0tPlxyXG4gIDxoMiBjbGFzcz1cIm1hdC10aXRsZVwiPnt7J0luZGljZXMnfHRyYW5zbGF0ZX19PC9oMj5cclxuICA8ZGl2IGZvcm1BcnJheU5hbWU9XCJpbmRpY2VzXCIgY2xhc3M9XCJjb2x1bW5cIiBjZGtEcm9wTGlzdCAoY2RrRHJvcExpc3REcm9wcGVkKT1cImRyb3AoJGV2ZW50LCBpbmRpY2VzKVwiPlxyXG4gICAgPGRpdiBjbGFzcz1cInJvd1wiICpuZ0Zvcj1cImxldCBhIG9mIGluZGljZXMuY29udHJvbHM7IGluZGV4IGFzIGluZGV4XCIgW2Zvcm1Hcm91cF09XCJhXCIgY2RrRHJhZz5cclxuICAgICAgPG1hdC1pY29uIGNka0RyYWdIYW5kbGU+ZHJhZ19pbmRpY2F0b3I8L21hdC1pY29uPlxyXG4gICAgICA8bWF0LWZvcm0tZmllbGQgY2xhc3M9XCJmbGV4XCI+XHJcbiAgICAgICAgPG1hdC1sYWJlbD57eydUaXRsZSd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgICA8aW5wdXQgbWF0SW5wdXQgZm9ybUNvbnRyb2xOYW1lPVwidGl0bGVcIiByZXF1aXJlZCAvPlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwicmVtb3ZlSW5kZXgoaW5kZXgpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ1JlbW92ZSd8dHJhbnNsYXRlXCI+PG1hdC1pY29uPmRlbGV0ZTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwiYWRkSW5kZXgoKVwiIFtiaXpkb2NUb29sdGlwXT1cIidBZGQnfHRyYW5zbGF0ZVwiPjxtYXQtaWNvbj5hZGQ8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4gIDwhLS0gUGF0dGVybnMgLS0+XHJcbiAgPGgyIGNsYXNzPVwibWF0LXRpdGxlXCI+e3snUGF0dGVybnMnfHRyYW5zbGF0ZX19PC9oMj5cclxuICA8ZGl2IGZvcm1BcnJheU5hbWU9XCJpbmRpY2VzXCIgY2xhc3M9XCJjb2x1bW5cIiBjZGtEcm9wTGlzdCAoY2RrRHJvcExpc3REcm9wcGVkKT1cImRyb3AoJGV2ZW50LCBwYXR0ZXJucylcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJyb3dcIiAqbmdGb3I9XCJsZXQgcCBvZiBwYXR0ZXJucy5jb250cm9sczsgaW5kZXggYXMgaW5kZXhcIiBbZm9ybUdyb3VwXT1cInBcIiBjZGtEcmFnPlxyXG4gICAgICA8bWF0LWljb24gY2RrRHJhZ0hhbmRsZT5kcmFnX2luZGljYXRvcjwvbWF0LWljb24+XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZCBjbGFzcz1cImZsZXhcIj5cclxuICAgICAgICA8bWF0LWxhYmVsPnt7J1RpdGxlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICAgIDxpbnB1dCBtYXRJbnB1dCBmb3JtQ29udHJvbE5hbWU9XCJ0aXRsZVwiIC8+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgIDxiaXpkb2MtY3ViZS1maWx0ZXIgW2N1YmVdPVwibW9kZWwubmFtZVwiIFsoYXhlcyldPVwicC5nZXQoJ2F4ZXMnKS52YWx1ZVwiPjwvYml6ZG9jLWN1YmUtZmlsdGVyPlxyXG4gICAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwicmVtb3ZlUGF0dGVybihpbmRleClcIiBbYml6ZG9jVG9vbHRpcF09XCInUmVtb3ZlJ3x0cmFuc2xhdGVcIj48bWF0LWljb24+ZGVsZXRlPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG4gIDxidXR0b24gbWF0LWljb24tYnV0dG9uIChjbGljayk9XCJhZGRQYXR0ZXJuKClcIiBbYml6ZG9jVG9vbHRpcF09XCInQWRkJ3x0cmFuc2xhdGVcIj48bWF0LWljb24+YWRkPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICA8IS0tIFZpZXdzIC0tPlxyXG4gIDxoMiBjbGFzcz1cIm1hdC10aXRsZVwiPnt7J1ZpZXdzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgPGRpdiBmb3JtQXJyYXlOYW1lPVwidmlld3NcIiBjbGFzcz1cImNvbHVtblwiIGNka0Ryb3BMaXN0IChjZGtEcm9wTGlzdERyb3BwZWQpPVwiZHJvcFZpZXcoJGV2ZW50KVwiPlxyXG4gICAgPGRpdiBjbGFzcz1cInJvd1wiICpuZ0Zvcj1cImxldCB2IG9mIHZpZXdzLmNvbnRyb2xzOyBpbmRleCBhcyBpbmRleFwiIFtmb3JtR3JvdXBdPVwidlwiIGNka0RyYWc+XHJcbiAgICAgIDxtYXQtaWNvbiBjZGtEcmFnSGFuZGxlPmRyYWdfaW5kaWNhdG9yPC9tYXQtaWNvbj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwiZmxleFwiPlxyXG4gICAgICAgIDxtYXQtbGFiZWw+e3snVGl0bGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgPGlucHV0IG1hdElucHV0IGZvcm1Db250cm9sTmFtZT1cInRpdGxlXCIgcmVxdWlyZWQgLz5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgJm5ic3A7XHJcbiAgICAgIDxiaXpkb2MtaWNvbi1waWNrZXIgZm9ybUNvbnRyb2xOYW1lPVwiaWNvblwiIHJlcXVpcmVkPjwvYml6ZG9jLWljb24tcGlja2VyPlxyXG4gICAgICAmbmJzcDtcclxuICAgICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAgIDxtYXQtbGFiZWw+e3snVHlwZSd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJ0eXBlXCI+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkNoYXJ0XCI+e3snQ2hhcnQnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJQaXZvdFwiPnt7J1Bpdm90J3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiR3JpZFwiPnt7J0dyaWQnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTcHJlYWRzaGVldFwiPnt7J1NwcmVhZHNoZWV0J3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICZuYnNwO1xyXG4gICAgICA8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJ2LmdldCgndHlwZScpLnZhbHVlXCI+XHJcbiAgICAgICAgPG1hdC1mb3JtLWZpZWxkICpuZ1N3aXRjaENhc2U9XCInQ2hhcnQnXCI+XHJcbiAgICAgICAgICA8bWF0LWxhYmVsPnt7J0NoYXJ0VHlwZSd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgICAgIDxtYXQtc2VsZWN0IGZvcm1Db250cm9sTmFtZT1cImNoYXJ0VHlwZVwiPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlBpZVwiPnt7J1BpZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiRG91Z2hudXRcIj57eydEb3VnaG51dCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiSGFsZkRvdWdobnV0XCI+e3snSGFsZkRvdWdobnV0J3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJDb2x1bW5cIj57eydDb2x1bW4nfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQ29sdW1uXCI+e3snU3RhY2tpbmdDb2x1bW4nfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQ29sdW1uMTAwXCI+e3snU3RhY2tpbmdDb2x1bW4xMDAnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkJhclwiPnt7J0Jhcid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiQnViYmxlXCI+e3snQnViYmxlJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0JhclwiPnt7J1N0YWNraW5nQmFyJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0JhcjEwMFwiPnt7J1N0YWNraW5nQmFyMTAwJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJMaW5lXCI+e3snTGluZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdMaW5lXCI+e3snU3RhY2tpbmdMaW5lJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0xpbmUxMDBcIj57eydTdGFja2luZ0xpbmUxMDAnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlNwbGluZVwiPnt7J1NwbGluZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3BsaW5lQXJlYVwiPnt7J1NwbGluZUFyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkFyZWFcIj57eydBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0FyZWFcIj57eydTdGFja2luZ0FyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQXJlYTEwMFwiPnt7J1N0YWNraW5nQXJlYTEwMCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU2NhdHRlclwiPnt7J1NjYXR0ZXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlBvbGFyXCI+e3snUG9sYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlJhZGFyXCI+e3snUmFkYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0ZXBMaW5lXCI+e3snU3RlcExpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0ZXBBcmVhXCI+e3snU3RlcEFyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nU3RlcEFyZWFcIj57eydTdGFja2luZ1N0ZXBBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJGdW5uZWxcIj57eydGdW5uZWwnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlB5cmFtaWRcIj57eydQeXJhbWlkJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAgIDxtYXQtZm9ybS1maWVsZCAqbmdTd2l0Y2hDYXNlPVwiJ1Bpdm90J1wiPlxyXG4gICAgICAgICAgPG1hdC1sYWJlbD57eydDaGFydFR5cGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJjaGFydFR5cGVcIj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24+e3snTm9uZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiQ29sdW1uXCI+e3snQ29sdW1uJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJCYXJcIj57eydCYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkJ1YmJsZVwiPnt7J0J1YmJsZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdCYXJcIj57eydTdGFja2luZ0Jhcid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdCYXIxMDBcIj57eydTdGFja2luZ0JhcjEwMCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiTGluZVwiPnt7J0xpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlNwbGluZVwiPnt7J1NwbGluZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3BsaW5lQXJlYVwiPnt7J1NwbGluZUFyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkFyZWFcIj57eydBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJEb3VnaG51dFwiPnt7J0RvdWdobnV0J3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJIYWxmRG91Z2hudXRcIj57eydIYWxmRG91Z2hudXQnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQXJlYVwiPnt7J1N0YWNraW5nQXJlYSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdBcmVhMTAwXCI+e3snU3RhY2tpbmdBcmVhMTAwJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0NvbHVtblwiPnt7J1N0YWNraW5nQ29sdW1uJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0NvbHVtbjEwMFwiPnt7J1N0YWNraW5nQ29sdW1uMTAwJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTY2F0dGVyXCI+e3snU2NhdHRlcid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiUG9sYXJcIj57eydQb2xhcid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiUmFkYXJcIj57eydSYWRhcid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RlcExpbmVcIj57eydTdGVwTGluZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RlcEFyZWFcIj57eydTdGVwQXJlYSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdTdGVwQXJlYVwiPnt7J1N0YWNraW5nU3RlcEFyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nTGluZVwiPnt7J1N0YWNraW5nTGluZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdMaW5lMTAwXCI+e3snU3RhY2tpbmdMaW5lMTAwJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgJm5ic3A7XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8bWF0LWxhYmVsPnt7J1hBeGlzJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICAgIDxtYXQtc2VsZWN0IGZvcm1Db250cm9sTmFtZT1cInhBeGlzXCIgcmVxdWlyZWQgKHNlbGVjdGlvbkNoYW5nZSk9XCJ4QXhpc1NlbGVjdGVkKGluZGV4LCAkZXZlbnQpXCIgbXVsdGlwbGU+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgeCBvZiBtb2RlbC5heGVzXCIgW3ZhbHVlXT1cIngubmFtZVwiPnt7eC50aXRsZSB8fCB4Lm5hbWV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICZuYnNwO1xyXG4gICAgICA8bWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICAgPG1hdC1sYWJlbD57eydTZXJpZXMnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwic2VyaWVzXCIgbXVsdGlwbGUgW2Rpc2FibGVkXT1cImlzQWNjdW0oaW5kZXgpXCI+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgeCBvZiBzZWNvbmRhcnlBeGVzW2luZGV4XVwiIFt2YWx1ZV09XCJ4Lm5hbWVcIj57e3gudGl0bGUgfHwgeC5uYW1lfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwicmVtb3ZlVmlldyhpbmRleClcIiBbYml6ZG9jVG9vbHRpcF09XCInUmVtb3ZlJ3x0cmFuc2xhdGVcIj48bWF0LWljb24+ZGVsZXRlPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImFkZFZpZXcoKVwiIFtiaXpkb2NUb29sdGlwXT1cIidBZGQnfHRyYW5zbGF0ZVwiPjxtYXQtaWNvbj5hZGQ8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4gIDwvZGl2PlxyXG48L2Zvcm0+XHJcbjwhLS0gSW5mbyAtLT5cclxuPG5nLXRlbXBsYXRlICNpbmZvPlxyXG4gIDxidXR0b24gbWF0LXN0cm9rZWQtYnV0dG9uIChjbGljayk9XCJzeW5jKClcIj5cclxuICAgIDxzcGFuPiB7eydTeW5jaHJvbml6ZSd8dHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICA8bWF0LXNwaW5uZXIgKm5nSWY9XCJzeW5jaW5nXCIgZGlhbWV0ZXI9XCIyMFwiPjwvbWF0LXNwaW5uZXI+XHJcbiAgPC9idXR0b24+XHJcbiAgPGRpdiBjbGFzcz1cInJvd1wiPlxyXG4gICAgPGRpdiAqbmdJZj1cIm1vZGVsLmF4ZXMubGVuZ3RoXCI+XHJcbiAgICAgIDxoMiBjbGFzcz1cIm1hdC10aXRsZVwiPnt7J0F4ZXMnfHRyYW5zbGF0ZX19PC9oMj5cclxuICAgICAgPHRhYmxlIGNsYXNzPVwibWF0LXRhYmxlXCI+XHJcbiAgICAgICAgPHRyIGNsYXNzPVwibWF0LXJvd1wiICpuZ0Zvcj1cImxldCBhIG9mIG1vZGVsLmF4ZXNcIj5cclxuICAgICAgICAgIDwhLS08dGQgY2xhc3M9XCJtYXQtY2VsbFwiPnt7YS5uYW1lfX08L3RkPi0tPlxyXG4gICAgICAgICAgPHRkIGNsYXNzPVwibWF0LWNlbGxcIj57e2EudGl0bGV9fTwvdGQ+XHJcbiAgICAgICAgICA8dGQgY2xhc3M9XCJtYXQtY2VsbFwiPnt7ZGF0YXR5cGUoYS5kYXRhVHlwZSl9fTwvdGQ+XHJcbiAgICAgICAgPC90cj5cclxuICAgICAgPC90YWJsZT5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiAqbmdJZj1cIm1vZGVsLmluZGljZXMubGVuZ3RoXCI+XHJcbiAgICAgIDxoMiBjbGFzcz1cIm1hdC10aXRsZVwiPnt7J0luZGljZXMnfHRyYW5zbGF0ZX19PC9oMj5cclxuICAgICAgPHRhYmxlIGNsYXNzPVwibWF0LXRhYmxlXCI+XHJcbiAgICAgICAgPHRyIGNsYXNzPVwibWF0LXJvd1wiICpuZ0Zvcj1cImxldCBhIG9mIG1vZGVsLmluZGljZXNcIj5cclxuICAgICAgICAgIDwhLS08dGQgY2xhc3M9XCJtYXQtY2VsbFwiPnt7YS5uYW1lfX08L3RkPi0tPlxyXG4gICAgICAgICAgPHRkIGNsYXNzPVwibWF0LWNlbGxcIj57e2EudGl0bGV9fTwvdGQ+XHJcbiAgICAgICAgPC90cj5cclxuICAgICAgPC90YWJsZT5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiAqbmdJZj1cIm1vZGVsLnZpZXdzLmxlbmd0aFwiPlxyXG4gICAgICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydWaWV3cyd8dHJhbnNsYXRlfX08L2gyPlxyXG4gICAgICA8dGFibGUgY2xhc3M9XCJtYXQtdGFibGVcIj5cclxuICAgICAgICA8dHIgY2xhc3M9XCJtYXQtcm93XCIgKm5nRm9yPVwibGV0IHYgb2YgbW9kZWwudmlld3NcIj5cclxuICAgICAgICAgIDx0ZCBjbGFzcz1cIm1hdC1jZWxsXCI+e3t2LnRpdGxlfX08L3RkPlxyXG4gICAgICAgICAgPCEtLTx0ZCBjbGFzcz1cIm1hdC1jZWxsXCI+KHt7KHYudHlwZXx8J0NoYXJ0Jyl8dHJhbnNsYXRlfX0pPC90ZD4tLT5cclxuICAgICAgICA8L3RyPlxyXG4gICAgICA8L3RhYmxlPlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbjwvbmctdGVtcGxhdGU+XHJcbiJdfQ==
|
964
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CubeDesignComponent, [{
|
965
|
+
type: Component,
|
966
|
+
args: [{ template: " <form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\" *ngIf=\"mode === 'edit'; else info\">\r\n <mat-label>{{'SecurityLevel'|translate}}</mat-label>\r\n <br />\r\n <mat-radio-group formControlName=\"scope\">\r\n <mat-radio-button>{{'Global'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n <mat-radio-button value=\"Positions\">{{'Positions'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n <mat-radio-button value=\"Patterns\">{{'Patterns'|translate}}</mat-radio-button>\r\n <p>{{' '|translate}}</p>\r\n </mat-radio-group>\r\n <!-- Axes -->\r\n <h2 class=\"mat-title\">{{'Axes'|translate}}</h2>\r\n <div formArrayName=\"axes\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, axes)\">\r\n <div class=\"row\" *ngFor=\"let a of axes.controls; index as index\" [formGroup]=\"a\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'DataType'|translate}}</mat-label>\r\n <mat-select formControlName=\"dataType\" required>\r\n <mat-option *ngFor=\"let t of types\" [value]=\"t.name\">{{t.title}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeAxis(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addAxis()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Indices -->\r\n <h2 class=\"mat-title\">{{'Indices'|translate}}</h2>\r\n <div formArrayName=\"indices\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, indices)\">\r\n <div class=\"row\" *ngFor=\"let a of indices.controls; index as index\" [formGroup]=\"a\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeIndex(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addIndex()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Patterns -->\r\n <h2 class=\"mat-title\">{{'Patterns'|translate}}</h2>\r\n <div formArrayName=\"indices\" class=\"column\" cdkDropList (cdkDropListDropped)=\"drop($event, patterns)\">\r\n <div class=\"row\" *ngFor=\"let p of patterns.controls; index as index\" [formGroup]=\"p\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" />\r\n </mat-form-field>\r\n <bizdoc-cube-filter [cube]=\"model.name\" [(axes)]=\"p.get('axes').value\"></bizdoc-cube-filter>\r\n <button mat-icon-button (click)=\"removePattern(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n </div>\r\n <button mat-icon-button (click)=\"addPattern()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n <!-- Views -->\r\n <h2 class=\"mat-title\">{{'Views'|translate}}</h2>\r\n <div formArrayName=\"views\" class=\"column\" cdkDropList (cdkDropListDropped)=\"dropView($event)\">\r\n <div class=\"row\" *ngFor=\"let v of views.controls; index as index\" [formGroup]=\"v\" cdkDrag>\r\n <mat-icon cdkDragHandle>drag_indicator</mat-icon>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Title'|translate}}</mat-label>\r\n <input matInput formControlName=\"title\" required />\r\n </mat-form-field>\r\n \r\n <bizdoc-icon-picker formControlName=\"icon\" required></bizdoc-icon-picker>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'Type'|translate}}</mat-label>\r\n <mat-select formControlName=\"type\">\r\n <mat-option value=\"Chart\">{{'Chart'|translate}}</mat-option>\r\n <mat-option value=\"Pivot\">{{'Pivot'|translate}}</mat-option>\r\n <mat-option value=\"Grid\">{{'Grid'|translate}}</mat-option>\r\n <mat-option value=\"Spreadsheet\">{{'Spreadsheet'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n \r\n <ng-container [ngSwitch]=\"v.get('type').value\">\r\n <mat-form-field *ngSwitchCase=\"'Chart'\">\r\n <mat-label>{{'ChartType'|translate}}</mat-label>\r\n <mat-select formControlName=\"chartType\">\r\n <mat-option value=\"Pie\">{{'Pie'|translate}}</mat-option>\r\n <mat-option value=\"Doughnut\">{{'Doughnut'|translate}}</mat-option>\r\n <mat-option value=\"HalfDoughnut\">{{'HalfDoughnut'|translate}}</mat-option>\r\n <mat-option value=\"Column\">{{'Column'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn\">{{'StackingColumn'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn100\">{{'StackingColumn100'|translate}}</mat-option>\r\n <mat-option value=\"Bar\">{{'Bar'|translate}}</mat-option>\r\n <mat-option value=\"Bubble\">{{'Bubble'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar\">{{'StackingBar'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar100\">{{'StackingBar100'|translate}}</mat-option>\r\n <mat-option value=\"Line\">{{'Line'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine\">{{'StackingLine'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine100\">{{'StackingLine100'|translate}}</mat-option>\r\n <mat-option value=\"Spline\">{{'Spline'|translate}}</mat-option>\r\n <mat-option value=\"SplineArea\">{{'SplineArea'|translate}}</mat-option>\r\n <mat-option value=\"Area\">{{'Area'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea\">{{'StackingArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea100\">{{'StackingArea100'|translate}}</mat-option>\r\n <mat-option value=\"Scatter\">{{'Scatter'|translate}}</mat-option>\r\n <mat-option value=\"Polar\">{{'Polar'|translate}}</mat-option>\r\n <mat-option value=\"Radar\">{{'Radar'|translate}}</mat-option>\r\n <mat-option value=\"StepLine\">{{'StepLine'|translate}}</mat-option>\r\n <mat-option value=\"StepArea\">{{'StepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingStepArea\">{{'StackingStepArea'|translate}}</mat-option>\r\n <mat-option value=\"Funnel\">{{'Funnel'|translate}}</mat-option>\r\n <mat-option value=\"Pyramid\">{{'Pyramid'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field *ngSwitchCase=\"'Pivot'\">\r\n <mat-label>{{'ChartType'|translate}}</mat-label>\r\n <mat-select formControlName=\"chartType\">\r\n <mat-option>{{'None'|translate}}</mat-option>\r\n <mat-option value=\"Column\">{{'Column'|translate}}</mat-option>\r\n <mat-option value=\"Bar\">{{'Bar'|translate}}</mat-option>\r\n <mat-option value=\"Bubble\">{{'Bubble'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar\">{{'StackingBar'|translate}}</mat-option>\r\n <mat-option value=\"StackingBar100\">{{'StackingBar100'|translate}}</mat-option>\r\n <mat-option value=\"Line\">{{'Line'|translate}}</mat-option>\r\n <mat-option value=\"Spline\">{{'Spline'|translate}}</mat-option>\r\n <mat-option value=\"SplineArea\">{{'SplineArea'|translate}}</mat-option>\r\n <mat-option value=\"Area\">{{'Area'|translate}}</mat-option>\r\n <mat-option value=\"Doughnut\">{{'Doughnut'|translate}}</mat-option>\r\n <mat-option value=\"HalfDoughnut\">{{'HalfDoughnut'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea\">{{'StackingArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingArea100\">{{'StackingArea100'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn\">{{'StackingColumn'|translate}}</mat-option>\r\n <mat-option value=\"StackingColumn100\">{{'StackingColumn100'|translate}}</mat-option>\r\n <mat-option value=\"Scatter\">{{'Scatter'|translate}}</mat-option>\r\n <mat-option value=\"Polar\">{{'Polar'|translate}}</mat-option>\r\n <mat-option value=\"Radar\">{{'Radar'|translate}}</mat-option>\r\n <mat-option value=\"StepLine\">{{'StepLine'|translate}}</mat-option>\r\n <mat-option value=\"StepArea\">{{'StepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingStepArea\">{{'StackingStepArea'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine\">{{'StackingLine'|translate}}</mat-option>\r\n <mat-option value=\"StackingLine100\">{{'StackingLine100'|translate}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n </ng-container>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'XAxis'|translate}}</mat-label>\r\n <mat-select formControlName=\"xAxis\" required (selectionChange)=\"xAxisSelected(index, $event)\" multiple>\r\n <mat-option *ngFor=\"let x of model.axes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n \r\n <mat-form-field>\r\n <mat-label>{{'Series'|translate}}</mat-label>\r\n <mat-select formControlName=\"series\" multiple [disabled]=\"isAccum(index)\">\r\n <mat-option *ngFor=\"let x of secondaryAxes[index]\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <button mat-icon-button (click)=\"removeView(index)\" [bizdocTooltip]=\"'Remove'|translate\"><mat-icon>delete</mat-icon></button>\r\n </div>\r\n <button mat-icon-button (click)=\"addView()\" [bizdocTooltip]=\"'Add'|translate\"><mat-icon>add</mat-icon></button>\r\n </div>\r\n</form>\r\n<!-- Info -->\r\n<ng-template #info>\r\n <button mat-stroked-button (click)=\"sync()\">\r\n <span> {{'Synchronize'|translate}}</span>\r\n <mat-spinner *ngIf=\"syncing\" diameter=\"20\"></mat-spinner>\r\n </button>\r\n <div class=\"row\">\r\n <div *ngIf=\"model.axes.length\">\r\n <h2 class=\"mat-title\">{{'Axes'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let a of model.axes\">\r\n <!--<td class=\"mat-cell\">{{a.name}}</td>-->\r\n <td class=\"mat-cell\">{{a.title}}</td>\r\n <td class=\"mat-cell\">{{datatype(a.dataType)}}</td>\r\n </tr>\r\n </table>\r\n </div>\r\n <div *ngIf=\"model.indices.length\">\r\n <h2 class=\"mat-title\">{{'Indices'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let a of model.indices\">\r\n <!--<td class=\"mat-cell\">{{a.name}}</td>-->\r\n <td class=\"mat-cell\">{{a.title}}</td>\r\n </tr>\r\n </table>\r\n </div>\r\n <div *ngIf=\"model.views.length\">\r\n <h2 class=\"mat-title\">{{'Views'|translate}}</h2>\r\n <table class=\"mat-table\">\r\n <tr class=\"mat-row\" *ngFor=\"let v of model.views\">\r\n <td class=\"mat-cell\">{{v.title}}</td>\r\n <!--<td class=\"mat-cell\">({{(v.type||'Chart')|translate}})</td>-->\r\n </tr>\r\n </table>\r\n </div>\r\n </div>\r\n</ng-template>\r\n" }]
|
967
|
+
}], function () { return [{ type: i1.FormBuilder }, { type: i2.SystemService }, { type: i3.PromptService }, { type: i18.DesignerRef, decorators: [{
|
968
|
+
type: Inject,
|
969
|
+
args: [DesignerRef]
|
970
|
+
}] }]; }, null); })();
|
971
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3ViZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvY3ViZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvY3ViZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFlLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3RFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzFELE9BQU8sRUFBMkMsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFckYsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUtsRCxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsV0FBVyxFQUFnQixXQUFXLEVBQWUsTUFBTSxrQkFBa0IsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0lDYzNHLHNDQUFxRDtJQUFBLFlBQVc7SUFBQSxpQkFBYTs7O0lBQXpDLGtDQUFnQjtJQUFDLGVBQVc7SUFBWCxpQ0FBVzs7OztJQVZ0RSwrQkFBeUYsbUJBQUE7SUFDL0QsOEJBQWM7SUFBQSxpQkFBVztJQUNqRCwwQ0FBNkIsZ0JBQUE7SUFDaEIsWUFBcUI7O0lBQUEsaUJBQVk7SUFDNUMsNEJBQW1EO0lBQ3JELGlCQUFpQjtJQUNqQix3QkFDQTtJQUFBLHNDQUFnQixpQkFBQTtJQUNILGFBQXdCOztJQUFBLGlCQUFZO0lBQy9DLHVDQUFnRDtJQUM5QyxtR0FBNkU7SUFDL0UsaUJBQWEsRUFBQTtJQUVmLGtDQUF5RjtJQUFqRSxvT0FBUyxlQUFBLDRCQUFpQixDQUFBLElBQUM7O0lBQXNDLGlDQUFVO0lBQUEsdUJBQU07SUFBQSxpQkFBVyxFQUFBLEVBQUE7Ozs7SUFickQsZ0NBQWU7SUFHakUsZUFBcUI7SUFBckIsbURBQXFCO0lBS3JCLGVBQXdCO0lBQXhCLHVEQUF3QjtJQUVQLGVBQVE7SUFBUixzQ0FBUTtJQUdjLGVBQW9DO0lBQXBDLCtEQUFvQzs7OztJQU8xRiwrQkFBNEYsbUJBQUE7SUFDbEUsOEJBQWM7SUFBQSxpQkFBVztJQUNqRCwwQ0FBNkIsZ0JBQUE7SUFDaEIsWUFBcUI7O0lBQUEsaUJBQVk7SUFDNUMsNEJBQW1EO0lBQ3JELGlCQUFpQjtJQUNqQixpQ0FBMEY7SUFBbEUsb09BQVMsZUFBQSw4QkFBa0IsQ0FBQSxJQUFDOztJQUFzQyxpQ0FBVTtJQUFBLHVCQUFNO0lBQUEsaUJBQVcsRUFBQSxFQUFBOzs7SUFObkQsaUNBQWU7SUFHcEUsZUFBcUI7SUFBckIsbURBQXFCO0lBR21CLGVBQW9DO0lBQXBDLDhEQUFvQzs7OztJQU8zRiwrQkFBNkYsbUJBQUE7SUFDbkUsOEJBQWM7SUFBQSxpQkFBVztJQUNqRCwwQ0FBNkIsZ0JBQUE7SUFDaEIsWUFBcUI7O0lBQUEsaUJBQVk7SUFDNUMsNEJBQTBDO0lBQzVDLGlCQUFpQjtJQUNqQiw4Q0FBdUU7SUFBL0IsMk5BQVUsZUFBQSxVQUFNLE1BQU0sQ0FBQyxnQkFBYyxJQUFQO0lBQUMsaUJBQXFCO0lBQzVGLGlDQUE0RjtJQUFwRSxvT0FBUyxlQUFBLGdDQUFvQixDQUFBLElBQUM7O0lBQXNDLGlDQUFVO0lBQUEsdUJBQU07SUFBQSxpQkFBVyxFQUFBLEVBQUE7Ozs7SUFQcEQsaUNBQWU7SUFHckUsZUFBcUI7SUFBckIsbURBQXFCO0lBR2QsZUFBbUI7SUFBbkIsd0NBQW1CLGlDQUFBO0lBQ2dCLGVBQW9DO0lBQXBDLCtEQUFvQzs7O0lBMkJ6RixzQ0FBd0MsZ0JBQUE7SUFDM0IsWUFBeUI7O0lBQUEsaUJBQVk7SUFDaEQsc0NBQXdDLHFCQUFBO0lBQ2QsWUFBbUI7O0lBQUEsaUJBQWE7SUFDeEQsc0NBQTZCO0lBQUEsWUFBd0I7O0lBQUEsaUJBQWE7SUFDbEUsdUNBQWlDO0lBQUEsYUFBNEI7O0lBQUEsaUJBQWE7SUFDMUUsdUNBQTJCO0lBQUEsYUFBc0I7O0lBQUEsaUJBQWE7SUFDOUQsdUNBQW1DO0lBQUEsYUFBOEI7O0lBQUEsaUJBQWE7SUFDOUUsdUNBQXNDO0lBQUEsYUFBaUM7O0lBQUEsaUJBQWE7SUFDcEYsdUNBQXdCO0lBQUEsYUFBbUI7O0lBQUEsaUJBQWE7SUFDeEQsdUNBQTJCO0lBQUEsYUFBc0I7O0lBQUEsaUJBQWE7SUFDOUQsdUNBQWdDO0lBQUEsYUFBMkI7O0lBQUEsaUJBQWE7SUFDeEUsdUNBQW1DO0lBQUEsYUFBOEI7O0lBQUEsaUJBQWE7SUFDOUUsdUNBQXlCO0lBQUEsYUFBb0I7O0lBQUEsaUJBQWE7SUFDMUQsdUNBQWlDO0lBQUEsYUFBNEI7O0lBQUEsaUJBQWE7SUFDMUUsdUNBQW9DO0lBQUEsYUFBK0I7O0lBQUEsaUJBQWE7SUFDaEYsdUNBQTJCO0lBQUEsYUFBc0I7O0lBQUEsaUJBQWE7SUFDOUQsdUNBQStCO0lBQUEsYUFBMEI7O0lBQUEsaUJBQWE7SUFDdEUsdUNBQXlCO0lBQUEsYUFBb0I7O0lBQUEsaUJBQWE7SUFDMUQsdUNBQWlDO0lBQUEsYUFBNEI7O0lBQUEsaUJBQWE7SUFDMUUsdUNBQW9DO0lBQUEsYUFBK0I7O0lBQUEsaUJBQWE7SUFDaEYsdUNBQTRCO0lBQUEsYUFBdUI7O0lBQUEsaUJBQWE7SUFDaEUsdUNBQTBCO0lBQUEsYUFBcUI7O0lBQUEsaUJBQWE7SUFDNUQsdUNBQTBCO0lBQUEsYUFBcUI7O0lBQUEsaUJBQWE7SUFDNUQsdUNBQTZCO0lBQUEsYUFBd0I7O0lBQUEsaUJBQWE7SUFDbEUsdUNBQTZCO0lBQUEsYUFBd0I7O0lBQUEsaUJBQWE7SUFDbEUsdUNBQXFDO0lBQUEsYUFBZ0M7O0lBQUEsaUJBQWE7SUFDbEYsdUNBQTJCO0lBQUEsYUFBc0I7O0lBQUEsaUJBQWE7SUFDOUQsdUNBQTRCO0lBQUEsYUFBdUI7O0lBQUEsaUJBQWEsRUFBQSxFQUFBOztJQTNCdkQsZUFBeUI7SUFBekIsd0RBQXlCO0lBRVYsZUFBbUI7SUFBbkIsa0RBQW1CO0lBQ2QsZUFBd0I7SUFBeEIsd0RBQXdCO0lBQ3BCLGVBQTRCO0lBQTVCLDREQUE0QjtJQUNsQyxlQUFzQjtJQUF0QixzREFBc0I7SUFDZCxlQUE4QjtJQUE5Qiw4REFBOEI7SUFDM0IsZUFBaUM7SUFBakMsaUVBQWlDO0lBQy9DLGVBQW1CO0lBQW5CLG1EQUFtQjtJQUNoQixlQUFzQjtJQUF0QixzREFBc0I7SUFDakIsZUFBMkI7SUFBM0IsMkRBQTJCO0lBQ3hCLGVBQThCO0lBQTlCLDhEQUE4QjtJQUN4QyxlQUFvQjtJQUFwQixvREFBb0I7SUFDWixlQUE0QjtJQUE1Qiw0REFBNEI7SUFDekIsZUFBK0I7SUFBL0IsK0RBQStCO0lBQ3hDLGVBQXNCO0lBQXRCLHNEQUFzQjtJQUNsQixlQUEwQjtJQUExQiwwREFBMEI7SUFDaEMsZUFBb0I7SUFBcEIsb0RBQW9CO0lBQ1osZUFBNEI7SUFBNUIsNERBQTRCO0lBQ3pCLGVBQStCO0lBQS9CLCtEQUErQjtJQUN2QyxlQUF1QjtJQUF2Qix1REFBdUI7SUFDekIsZUFBcUI7SUFBckIscURBQXFCO0lBQ3JCLGVBQXFCO0lBQXJCLHFEQUFxQjtJQUNsQixlQUF3QjtJQUF4Qix3REFBd0I7SUFDeEIsZUFBd0I7SUFBeEIsd0RBQXdCO0lBQ2hCLGVBQWdDO0lBQWhDLGdFQUFnQztJQUMxQyxlQUFzQjtJQUF0QixzREFBc0I7SUFDckIsZUFBdUI7SUFBdkIsdURBQXVCOzs7SUFHdkQsc0NBQXdDLGdCQUFBO0lBQzNCLFlBQXlCOztJQUFBLGlCQUFZO0lBQ2hELHNDQUF3QyxpQkFBQTtJQUMxQixZQUFvQjs7SUFBQSxpQkFBYTtJQUM3QyxzQ0FBMkI7SUFBQSxZQUFzQjs7SUFBQSxpQkFBYTtJQUM5RCx1Q0FBd0I7SUFBQSxhQUFtQjs7SUFBQSxpQkFBYTtJQUN4RCx1Q0FBMkI7SUFBQSxhQUFzQjs7SUFBQSxpQkFBYTtJQUM5RCx1Q0FBZ0M7SUFBQSxhQUEyQjs7SUFBQSxpQkFBYTtJQUN4RSx1Q0FBbUM7SUFBQSxhQUE4Qjs7SUFBQSxpQkFBYTtJQUM5RSx1Q0FBeUI7SUFBQSxhQUFvQjs7SUFBQSxpQkFBYTtJQUMxRCx1Q0FBMkI7SUFBQSxhQUFzQjs7SUFBQSxpQkFBYTtJQUM5RCx1Q0FBK0I7SUFBQSxhQUEwQjs7SUFBQSxpQkFBYTtJQUN0RSx1Q0FBeUI7SUFBQSxhQUFvQjs7SUFBQSxpQkFBYTtJQUMxRCx1Q0FBNkI7SUFBQSxhQUF3Qjs7SUFBQSxpQkFBYTtJQUNsRSx1Q0FBaUM7SUFBQSxhQUE0Qjs7SUFBQSxpQkFBYTtJQUMxRSx1Q0FBaUM7SUFBQSxhQUE0Qjs7SUFBQSxpQkFBYTtJQUMxRSx1Q0FBb0M7SUFBQSxhQUErQjs7SUFBQSxpQkFBYTtJQUNoRix1Q0FBbUM7SUFBQSxhQUE4Qjs7SUFBQSxpQkFBYTtJQUM5RSx1Q0FBc0M7SUFBQSxhQUFpQzs7SUFBQSxpQkFBYTtJQUNwRix1Q0FBNEI7SUFBQSxhQUF1Qjs7SUFBQSxpQkFBYTtJQUNoRSx1Q0FBMEI7SUFBQSxhQUFxQjs7SUFBQSxpQkFBYTtJQUM1RCx1Q0FBMEI7SUFBQSxhQUFxQjs7SUFBQSxpQkFBYTtJQUM1RCx1Q0FBNkI7SUFBQSxhQUF3Qjs7SUFBQSxpQkFBYTtJQUNsRSx1Q0FBNkI7SUFBQSxhQUF3Qjs7SUFBQSxpQkFBYTtJQUNsRSx1Q0FBcUM7SUFBQSxhQUFnQzs7SUFBQSxpQkFBYTtJQUNsRix1Q0FBaUM7SUFBQSxhQUE0Qjs7SUFBQSxpQkFBYTtJQUMxRSx1Q0FBb0M7SUFBQSxhQUErQjs7SUFBQSxpQkFBYSxFQUFBLEVBQUE7O0lBekJ2RSxlQUF5QjtJQUF6Qix3REFBeUI7SUFFdEIsZUFBb0I7SUFBcEIsbURBQW9CO0lBQ0wsZUFBc0I7SUFBdEIsc0RBQXNCO0lBQ3pCLGVBQW1CO0lBQW5CLG1EQUFtQjtJQUNoQixlQUFzQjtJQUF0QixzREFBc0I7SUFDakIsZUFBMkI7SUFBM0IsMkRBQTJCO0lBQ3hCLGVBQThCO0lBQTlCLDhEQUE4QjtJQUN4QyxlQUFvQjtJQUFwQixvREFBb0I7SUFDbEIsZUFBc0I7SUFBdEIsc0RBQXNCO0lBQ2xCLGVBQTBCO0lBQTFCLDBEQUEwQjtJQUNoQyxlQUFvQjtJQUFwQixvREFBb0I7SUFDaEIsZUFBd0I7SUFBeEIsd0RBQXdCO0lBQ3BCLGVBQTRCO0lBQTVCLDREQUE0QjtJQUM1QixlQUE0QjtJQUE1Qiw0REFBNEI7SUFDekIsZUFBK0I7SUFBL0IsK0RBQStCO0lBQ2hDLGVBQThCO0lBQTlCLDhEQUE4QjtJQUMzQixlQUFpQztJQUFqQyxpRUFBaUM7SUFDM0MsZUFBdUI7SUFBdkIsdURBQXVCO0lBQ3pCLGVBQXFCO0lBQXJCLHFEQUFxQjtJQUNyQixlQUFxQjtJQUFyQixxREFBcUI7SUFDbEIsZUFBd0I7SUFBeEIsd0RBQXdCO0lBQ3hCLGVBQXdCO0lBQXhCLHdEQUF3QjtJQUNoQixlQUFnQztJQUFoQyxnRUFBZ0M7SUFDcEMsZUFBNEI7SUFBNUIsNERBQTRCO0lBQ3pCLGVBQStCO0lBQS9CLCtEQUErQjs7O0lBUXJFLHNDQUEwRDtJQUFBLFlBQXFCO0lBQUEsaUJBQWE7OztJQUFuRCxrQ0FBZ0I7SUFBQyxlQUFxQjtJQUFyQiwrQ0FBcUI7OztJQU8vRSxzQ0FBb0U7SUFBQSxZQUFxQjtJQUFBLGlCQUFhOzs7SUFBbkQsa0NBQWdCO0lBQUMsZUFBcUI7SUFBckIsK0NBQXFCOzs7O0lBNUYvRiwrQkFBMEYsbUJBQUE7SUFDaEUsOEJBQWM7SUFBQSxpQkFBVztJQUNqRCwwQ0FBNkIsZ0JBQUE7SUFDaEIsWUFBcUI7O0lBQUEsaUJBQVk7SUFDNUMsNEJBQW1EO0lBQ3JELGlCQUFpQjtJQUNqQix3QkFDQTtJQUFBLHlDQUF5RTtJQUN6RSx5QkFDQTtJQUFBLHVDQUFnQixpQkFBQTtJQUNILGFBQW9COztJQUFBLGlCQUFZO0lBQzNDLHVDQUFtQyxzQkFBQTtJQUNQLGFBQXFCOztJQUFBLGlCQUFhO0lBQzVELHVDQUEwQjtJQUFBLGFBQXFCOztJQUFBLGlCQUFhO0lBQzVELHVDQUF5QjtJQUFBLGFBQW9COztJQUFBLGlCQUFhO0lBQzFELHVDQUFnQztJQUFBLGFBQTJCOztJQUFBLGlCQUFhLEVBQUEsRUFBQTtJQUc1RSx5QkFDQTtJQUFBLGtDQUErQztJQUM3Qyw2R0E4QmlCO0lBQ2pCLDZHQTRCaUI7SUFDbkIsMEJBQWU7SUFDZix5QkFDQTtJQUFBLHVDQUFnQixpQkFBQTtJQUNILGFBQXFCOztJQUFBLGlCQUFZO0lBQzVDLHVDQUF1RztJQUExRCxtUUFBbUIsZUFBQSx3Q0FBNEIsQ0FBQSxJQUFDO0lBQzNGLG1HQUE0RjtJQUM5RixpQkFBYSxFQUFBO0lBRWYseUJBQ0E7SUFBQSx1Q0FBZ0IsaUJBQUE7SUFDSCxhQUFzQjs7SUFBQSxpQkFBWTtJQUM3Qyx1Q0FBMEU7SUFDeEUsbUdBQXNHO0lBQ3hHLGlCQUFhLEVBQUE7SUFFZixrQ0FBeUY7SUFBakUscU9BQVMsZUFBQSw2QkFBaUIsQ0FBQSxJQUFDOztJQUFzQyxpQ0FBVTtJQUFBLHVCQUFNO0lBQUEsaUJBQVcsRUFBQSxFQUFBOzs7OztJQS9GcEQsaUNBQWU7SUFHbEUsZUFBcUI7SUFBckIsb0RBQXFCO0lBT3JCLGVBQW9CO0lBQXBCLG9EQUFvQjtJQUVILGVBQXFCO0lBQXJCLHFEQUFxQjtJQUNyQixlQUFxQjtJQUFyQixxREFBcUI7SUFDdEIsZUFBb0I7SUFBcEIsb0RBQW9CO0lBQ2IsZUFBMkI7SUFBM0IsMkRBQTJCO0lBSWpELGVBQWdDO0lBQWhDLGtEQUFnQztJQUMzQixlQUFxQjtJQUFyQixzQ0FBcUI7SUErQnJCLGVBQXFCO0lBQXJCLHNDQUFxQjtJQWdDM0IsZUFBcUI7SUFBckIscURBQXFCO0lBRUosZUFBYTtJQUFiLDJDQUFhO0lBSzlCLGVBQXNCO0lBQXRCLHNEQUFzQjtJQUNhLGVBQTJCO0lBQTNCLG9EQUEyQjtJQUM3QyxlQUF1QjtJQUF2Qix5REFBdUI7SUFHRCxlQUFvQztJQUFwQyxnRUFBb0M7Ozs7SUE1SjVGLCtCQUE4RixnQkFBQTtJQUNuRixZQUE2Qjs7SUFBQSxpQkFBWTtJQUNsRCxxQkFBTTtJQUNOLDBDQUF5Qyx1QkFBQTtJQUNyQixZQUFzQjs7SUFBQSxpQkFBbUI7SUFDM0QseUJBQUc7SUFBQSxhQUFpQjs7SUFBQSxpQkFBSTtJQUN4Qiw0Q0FBb0M7SUFBQSxhQUF5Qjs7SUFBQSxpQkFBbUI7SUFDaEYsMEJBQUc7SUFBQSxhQUFpQjs7SUFBQSxpQkFBSTtJQUN4Qiw0Q0FBbUM7SUFBQSxhQUF3Qjs7SUFBQSxpQkFBbUI7SUFDOUUsMEJBQUc7SUFBQSxhQUFpQjs7SUFBQSxpQkFBSSxFQUFBO0lBRzVCLDhCQUFzQjtJQUFBLGFBQW9COztJQUFBLGlCQUFLO0lBQy9DLCtCQUErRjtJQUExQyxpTUFBc0IsZUFBQSxrQ0FBa0IsQ0FBQSxJQUFDO0lBQzVGLCtFQWNNO0lBQ1IsaUJBQU07SUFDTixrQ0FBOEU7SUFBdEQsb0tBQVMsZUFBQSxpQkFBUyxDQUFBLElBQUM7O0lBQW1DLGlDQUFVO0lBQUEsb0JBQUc7SUFBQSxpQkFBVyxFQUFBO0lBRXRHLDhCQUFzQjtJQUFBLGFBQXVCOztJQUFBLGlCQUFLO0lBQ2xELGdDQUFxRztJQUE3QyxpTUFBc0IsZUFBQSxxQ0FBcUIsQ0FBQSxJQUFDO0lBQ2xHLDhFQU9NO0lBQ1IsaUJBQU07SUFDTixrQ0FBK0U7SUFBdkQsb0tBQVMsZUFBQSxrQkFBVSxDQUFBLElBQUM7O0lBQW1DLGlDQUFVO0lBQUEsb0JBQUc7SUFBQSxpQkFBVyxFQUFBO0lBRXZHLDhCQUFzQjtJQUFBLGFBQXdCOztJQUFBLGlCQUFLO0lBQ25ELGdDQUFzRztJQUE5QyxpTUFBc0IsZUFBQSxzQ0FBc0IsQ0FBQSxJQUFDO0lBQ25HLDhFQVFNO0lBQ1IsaUJBQU07SUFDTixrQ0FBaUY7SUFBekQsb0tBQVMsZUFBQSxvQkFBWSxDQUFBLElBQUM7O0lBQW1DLGlDQUFVO0lBQUEsb0JBQUc7SUFBQSxpQkFBVyxFQUFBO0lBRXpHLDhCQUFzQjtJQUFBLGFBQXFCOztJQUFBLGlCQUFLO0lBQ2hELGdDQUE4RjtJQUF4QyxpTUFBc0IsZUFBQSx3QkFBZ0IsQ0FBQSxJQUFDO0lBQzNGLCtFQWdHTTtJQUNOLGtDQUE4RTtJQUF0RCxvS0FBUyxlQUFBLGlCQUFTLENBQUEsSUFBQzs7SUFBbUMsaUNBQVU7SUFBQSxvQkFBRztJQUFBLGlCQUFXLEVBQUEsRUFBQSxFQUFBOzs7SUE5Si9FLHVDQUFrQjtJQUNoQyxlQUE2QjtJQUE3Qiw0REFBNkI7SUFHbEIsZUFBc0I7SUFBdEIscURBQXNCO0lBQ3JDLGVBQWlCO0lBQWpCLGlEQUFpQjtJQUNnQixlQUF5QjtJQUF6Qix5REFBeUI7SUFDMUQsZUFBaUI7SUFBakIsaURBQWlCO0lBQ2UsZUFBd0I7SUFBeEIsd0RBQXdCO0lBQ3hELGVBQWlCO0lBQWpCLGlEQUFpQjtJQUdGLGVBQW9CO0lBQXBCLG9EQUFvQjtJQUVULGVBQWtCO0lBQWxCLDhDQUFrQjtJQWdCUCxlQUFpQztJQUFqQyw2REFBaUM7SUFFdkQsZUFBdUI7SUFBdkIsdURBQXVCO0lBRVosZUFBcUI7SUFBckIsaURBQXFCO0lBU1QsZUFBaUM7SUFBakMsNkRBQWlDO0lBRXhELGVBQXdCO0lBQXhCLHdEQUF3QjtJQUViLGVBQXNCO0lBQXRCLGtEQUFzQjtJQVVSLGVBQWlDO0lBQWpDLDZEQUFpQztJQUUxRCxlQUFxQjtJQUFyQixxREFBcUI7SUFFVixlQUFtQjtJQUFuQiwrQ0FBbUI7SUFpR04sZUFBaUM7SUFBakMsNkRBQWlDOzs7SUFPN0Usa0NBQXlEOzs7SUFNckQsOEJBQWlELGFBQUE7SUFFMUIsWUFBVztJQUFBLGlCQUFLO0lBQ3JDLDhCQUFxQjtJQUFBLFlBQXdCO0lBQUEsaUJBQUssRUFBQTs7OztJQUQ3QixlQUFXO0lBQVgsaUNBQVc7SUFDWCxlQUF3QjtJQUF4QixzREFBd0I7OztJQU5uRCwyQkFBK0IsWUFBQTtJQUNQLFlBQW9COztJQUFBLGlCQUFLO0lBQy9DLGlDQUF5QjtJQUN2Qix1RkFJSztJQUNQLGlCQUFRLEVBQUE7OztJQVBjLGVBQW9CO0lBQXBCLGtEQUFvQjtJQUVOLGVBQWE7SUFBYiw0Q0FBYTs7O0lBVS9DLDhCQUFvRCxhQUFBO0lBRTdCLFlBQVc7SUFBQSxpQkFBSyxFQUFBOzs7SUFBaEIsZUFBVztJQUFYLGlDQUFXOzs7SUFMdEMsMkJBQWtDLFlBQUE7SUFDVixZQUF1Qjs7SUFBQSxpQkFBSztJQUNsRCxpQ0FBeUI7SUFDdkIsdUZBR0s7SUFDUCxpQkFBUSxFQUFBOzs7SUFOYyxlQUF1QjtJQUF2QixxREFBdUI7SUFFVCxlQUFnQjtJQUFoQiwrQ0FBZ0I7OztJQVNsRCw4QkFBa0QsYUFBQTtJQUMzQixZQUFXO0lBQUEsaUJBQUssRUFBQTs7O0lBQWhCLGVBQVc7SUFBWCxpQ0FBVzs7O0lBSnRDLDJCQUFnQyxZQUFBO0lBQ1IsWUFBcUI7O0lBQUEsaUJBQUs7SUFDaEQsaUNBQXlCO0lBQ3ZCLHVGQUdLO0lBQ1AsaUJBQVEsRUFBQTs7O0lBTmMsZUFBcUI7SUFBckIsbURBQXFCO0lBRVAsZUFBYztJQUFkLDZDQUFjOzs7O0lBM0J0RCxrQ0FBNEM7SUFBakIsMEtBQVMsZUFBQSxjQUFNLENBQUEsSUFBQztJQUN6Qyw0QkFBTTtJQUFDLFlBQTJCOztJQUFBLGlCQUFPO0lBQ3pDLG1HQUF5RDtJQUMzRCxpQkFBUztJQUNULCtCQUFpQjtJQUNmLG1GQVNNO0lBQ04sbUZBUU07SUFDTixtRkFRTTtJQUNSLGlCQUFNOzs7SUFoQ0csZUFBMkI7SUFBM0IsbUVBQTJCO0lBQ3BCLGVBQWE7SUFBYixxQ0FBYTtJQUdyQixlQUF1QjtJQUF2QiwrQ0FBdUI7SUFVdkIsZUFBMEI7SUFBMUIsa0RBQTBCO0lBUzFCLGVBQXdCO0lBQXhCLGdEQUF3Qjs7SUQzS3JCLG1CQUFtQixTQUFuQixtQkFBb0IsU0FBUSw0QkFBNEI7SUE4Qm5FLFlBQVksRUFBZSxFQUNqQixRQUF1QixFQUN2QixHQUFrQixFQUNMLEdBQWdCO1FBQ3JDLEtBQUssQ0FBQyxFQUFFLEVBQUUsR0FBRyxDQUFDLENBQUM7UUFIUCxhQUFRLEdBQVIsUUFBUSxDQUFlO1FBQ3ZCLFFBQUcsR0FBSCxHQUFHLENBQWU7UUEvQm5CLFVBQUssR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUMzQixTQUFJLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDMUIsWUFBTyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQzdCLGFBQVEsR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUMvQix1QkFBa0IsR0FBRyxDQUFDLENBQWtCLEVBQUUsRUFBRTtZQUNsRCxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUs7Z0JBQUUsT0FBTztZQUN4QixNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDOUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUM7WUFDdkMsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFO2dCQUNaLElBQUksSUFBSSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO2dCQUMvQixJQUFJLElBQUksQ0FBQyxLQUFLLElBQUksSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQztvQkFDekQsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsQ0FBQztnQkFDMUIsSUFBSSxJQUFJLENBQUMsTUFBTSxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUM7b0JBQzNELE9BQU8sRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLENBQUM7Z0JBQzNCLENBQUMsRUFBRSxDQUFDO2FBQ0w7UUFDSCxDQUFDLENBQUM7UUFDTyxTQUFJLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUM7WUFDN0IsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRO1lBQ3ZCLEtBQUssRUFBRSxJQUFJLENBQUMsS0FBSztZQUNqQixJQUFJLEVBQUUsSUFBSSxDQUFDLElBQUk7WUFDZixPQUFPLEVBQUUsSUFBSSxDQUFDLE9BQU87WUFDckIsS0FBSyxFQUFFLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxVQUFVLENBQUMsUUFBUSxDQUFDO1lBQ2xELE9BQU8sRUFBRSxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsVUFBVSxDQUFDLFFBQVEsQ0FBQztTQUNyRCxFQUFFLEVBQUUsdUNBQXVDLENBQUUsQ0FBQyxDQUFDO1FBQ2hELGtCQUFhLEdBQWlCLEVBQUUsQ0FBQztRQUVqQyxZQUFPLEdBQUcsS0FBSyxDQUFDO1FBT2QsSUFBSSxDQUFDLEtBQUssR0FBRyxHQUFHLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQztJQUNsQyxDQUFDO0lBQ0QsSUFBSTtRQUNGLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDO1FBQ3BCLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEdBQUcsS0FBSyxFQUFFLEdBQUcsRUFBRTtZQUNwRixJQUFJLENBQUMsT0FBTyxHQUFHLEtBQUssQ0FBQztZQUNyQixJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ25CLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUNELFFBQVE7UUFDTixJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssTUFBTSxFQUFFO1lBQ3hCLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRTtnQkFDM0IsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO1lBQ3pELENBQUMsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLEtBQUssQ0FBQyxPQUFPLEVBQUUsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQzlCLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FDM0QsQ0FBQztZQUNGLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUMvQixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxDQUFDLENBQzlELENBQUM7WUFDRixJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssRUFBRSxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUU7Z0JBQ2pDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQztnQkFDeEQsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQ2xDLENBQUMsQ0FBQyxDQUFDO1NBQ0o7O1lBRUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsS0FBSyxHQUFHLENBQUMsQ0FBQyxDQUFDO0lBQ3ZFLENBQUM7SUFDRCxRQUFRLENBQUMsS0FBNkI7UUFDcEMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQzdCLGVBQWUsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLEtBQUssQ0FBQyxhQUFhLEVBQUUsS0FBSyxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQy9FLENBQUM7SUFFRCxVQUFVLENBQUMsS0FBYTtRQUN0QixJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM1QixDQUFDO0lBQ0QsV0FBVyxDQUFDLEtBQWE7UUFDdkIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDL0IsQ0FBQztJQUNELGFBQWEsQ0FBQyxLQUFhO1FBQ3pCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2hDLENBQUM7SUFDRCxVQUFVLENBQUMsS0FBYTtRQUN0QixJQUFJLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDcEMsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDN0IsQ0FBQztJQUNELE9BQU87UUFDTCxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBQ0QsUUFBUTtRQUNOLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFDRCxPQUFPO1FBQ0wsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUM7SUFDcEMsQ0FBQztJQUNELFVBQVU7UUFDUixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBQ0QsTUFBTSxDQUFDLElBQXVCLElBQUksT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxLQUFLLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQSxDQUFDLENBQUM7SUFDOUksYUFBYSxDQUFDLEtBQWEsRUFBRSxHQUFvQjtRQUMvQyxJQUFJLENBQUMsY0FBYyxDQUFDLEtBQUssRUFBRSxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUNTLGNBQWMsQ0FBQyxLQUFhLEVBQUUsSUFBdUI7UUFDN0QsSUFBSSxDQUFDLElBQUk7WUFBRSxPQUFPO1FBQ2xCLElBQUksQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDdEgsQ0FBQztJQUNPLFNBQVMsQ0FBQyxLQUFnQjtRQUNoQyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLFVBQVUsQ0FBQyxRQUFRLENBQUMsRUFDN0QsS0FBSyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzlELElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxJQUFJLEtBQUssQ0FBQyxZQUFZO1lBQ3BDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNoRCxPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDO1lBQ3BCLElBQUk7WUFDSixLQUFLO1lBQ0wsSUFBSSxFQUFFLEtBQUssRUFBRSxJQUFJLElBQUksSUFBSTtZQUN6QixLQUFLLEVBQUUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsS0FBSyxFQUFFLEtBQUssRUFBRSxVQUFVLENBQUMsUUFBUSxDQUFDO1lBQzFELE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxJQUFJLEVBQUU7WUFDM0IsT0FBTyxFQUFFLEtBQUssRUFBRSxPQUFPLElBQUksRUFBRTtZQUM3QixJQUFJLEVBQUUsS0FBSyxFQUFFLElBQUksSUFBSSxPQUFPO1lBQzVCLFNBQVMsRUFBRSxLQUFLLEVBQUUsU0FBUyxJQUFJLElBQUk7U0FDcEMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUNPLFNBQVMsQ0FBQyxLQUFnQjtRQUNoQyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLFVBQVUsQ0FBQyxRQUFRLENBQUMsRUFDN0QsS0FBSyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzlELElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxJQUFJLEtBQUssQ0FBQyxZQUFZO1lBQ3BDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNoRCxPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDO1lBQ3BCLElBQUk7WUFDSixLQUFLO1lBQ0wsWUFBWSxFQUFFLEtBQUssRUFBRSxZQUFZO1lBQ2pDLFFBQVEsRUFBRSxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsUUFBUSxFQUFFLFVBQVUsQ0FBQyxRQUFRLENBQUM7U0FDakUsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUNPLFVBQVUsQ0FBQyxLQUFpQjtRQUNsQyxNQUFNLElBQUksR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLFVBQVUsQ0FBQyxRQUFRLENBQUMsRUFDN0QsS0FBSyxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQzlELElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxJQUFJLEtBQUssQ0FBQyxZQUFZO1lBQ3BDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNoRCxPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDO1lBQ3BCLElBQUk7WUFDSixLQUFLO1lBQ0wsVUFBVSxFQUFFLEtBQUssRUFBRSxVQUFVO1NBQzlCLENBQUMsQ0FBQztJQUNMLENBQUM7SUFDTyxZQUFZLENBQUMsS0FBZTtRQUNsQyxPQUFPLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDO1lBQ3BCLElBQUksRUFBRSxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxLQUFLLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQztZQUN2QyxLQUFLLEVBQUUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsS0FBSyxFQUFFLEtBQUssRUFBRSxVQUFVLENBQUMsUUFBUSxDQUFDO1NBQzNELENBQUMsQ0FBQztJQUNMLENBQUM7SUFDRCxRQUFRLENBQUMsSUFBWSxJQUFJLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxFQUFFLEtBQUssQ0FBQyxDQUFDLENBQUM7SUFDOUUsT0FBTyxDQUFDLEtBQWE7UUFDbkIsUUFBUSxJQUFJLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsRUFBRSxTQUFTLEVBQUU7WUFDMUMsS0FBSyxLQUFLLENBQUM7WUFDWCxLQUFLLFVBQVUsQ0FBQztZQUNoQixLQUFLLGNBQWMsQ0FBQztZQUNwQixLQUFLLFFBQVE7Z0JBQ1gsT0FBTyxJQUFJLENBQUM7U0FDZjtJQUNILENBQUM7Q0FDRixDQUFBO3NGQTVKWSxtQkFBbUIsNklBaUNwQixXQUFXO3NFQWpDVixtQkFBbUI7UUNoQjlCLHdFQWdLSztRQUVQLHFIQW1DYzs7O1FBck1nRCwwQ0FBdUIsaUJBQUE7O0FEZ0J4RSxtQkFBbUI7SUFEL0IsTUFBTSxDQUFDLEVBQUUsUUFBUSxFQUFFLGVBQWUsRUFBRSxDQUFDO0dBQ3pCLG1CQUFtQixDQTRKL0I7U0E1SlksbUJBQW1CO3VGQUFuQixtQkFBbUI7Y0FKL0IsU0FBUzs7O3NCQXFDTCxNQUFNO3VCQUFDLFdBQVciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDZGtEcmFnRHJvcCwgbW92ZUl0ZW1JbkFycmF5IH0gZnJvbSBcIkBhbmd1bGFyL2Nkay9kcmFnLWRyb3BcIjtcclxuaW1wb3J0IHsgQ29tcG9uZW50LCBJbmplY3QsIE9uSW5pdCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IEFic3RyYWN0Q29udHJvbCwgRm9ybUJ1aWxkZXIsIEZvcm1Hcm91cCwgVmFsaWRhdG9ycyB9IGZyb20gXCJAYW5ndWxhci9mb3Jtc1wiO1xyXG5pbXBvcnQgeyBNYXRTZWxlY3RDaGFuZ2UgfSBmcm9tIFwiQGFuZ3VsYXIvbWF0ZXJpYWwvc2VsZWN0XCI7XHJcbmltcG9ydCB7IEJpekRvYyB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL2RlY29yYXRvcnNcIjtcclxuaW1wb3J0IHsgaXNBcnJheSB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL2Z1bmN0aW9uc1wiO1xyXG5pbXBvcnQgeyBDdWJlQXhpcywgQ3ViZUluZGV4LCBDdWJlVmlldyB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL21vZGVsc1wiO1xyXG5pbXBvcnQgeyBQcm9tcHRTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvcHJvbXB0LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgUGF0dGVybiB9IGZyb20gXCIuLi8uLi8uLi9jdWJlL2N1YmUuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBDdWJlSW5mbywgU3lzdGVtU2VydmljZSB9IGZyb20gXCIuLi8uLi9zeXN0ZW0uc2VydmljZVwiO1xyXG5pbXBvcnQgeyBEZXNpZ25lclR5cGVFbGVtZW50Q29tcG9uZW50LCBEZXNpZ25lclJlZiwgRWxlbWVudE1vZGVsLCBwcm9ncmFtTmFtZSwgRWxlbWVudEluZm8gfSBmcm9tIFwiLi4vZGVzaWduZXIuYmFzZVwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgdGVtcGxhdGVVcmw6ICdjdWJlLmNvbXBvbmVudC5odG1sJ1xyXG59KVxyXG5AQml6RG9jKHsgc2VsZWN0b3I6ICdjdWJlLWRlc2lnbmVyJyB9KVxyXG5leHBvcnQgY2xhc3MgQ3ViZURlc2lnbkNvbXBvbmVudCBleHRlbmRzIERlc2lnbmVyVHlwZUVsZW1lbnRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIHJlYWRvbmx5IHZpZXdzID0gdGhpcy5fZmIuYXJyYXkoW10pO1xyXG4gIHJlYWRvbmx5IGF4ZXMgPSB0aGlzLl9mYi5hcnJheShbXSk7XHJcbiAgcmVhZG9ubHkgaW5kaWNlcyA9IHRoaXMuX2ZiLmFycmF5KFtdKTtcclxuICByZWFkb25seSBwYXR0ZXJucyA9IHRoaXMuX2ZiLmFycmF5KFtdKTtcclxuICBwcml2YXRlIF9jdWJlQXhlc1ZhbGlkYXRvciA9IChfOiBBYnN0cmFjdENvbnRyb2wpID0+IHtcclxuICAgIGlmICghdGhpcy5tb2RlbCkgcmV0dXJuO1xyXG4gICAgY29uc3QgYXhlcyA9IHRoaXMubW9kZWwuYXhlcy5tYXAoeCA9PiB4Lm5hbWUpO1xyXG4gICAgbGV0IGkgPSAwLCBuID0gdGhpcy5tb2RlbC52aWV3cy5sZW5ndGg7XHJcbiAgICB3aGlsZSAoaSA8IG4pIHtcclxuICAgICAgbGV0IHZpZXcgPSB0aGlzLm1vZGVsLnZpZXdzW2ldO1xyXG4gICAgICBpZiAodmlldy54QXhpcyAmJiB2aWV3LnhBeGlzLnNvbWUoeCA9PiBheGVzLmluZGV4T2YoeCkgPCAwKSlcclxuICAgICAgICByZXR1cm4geyB4QXhpczogZmFsc2UgfTtcclxuICAgICAgaWYgKHZpZXcuc2VyaWVzICYmIHZpZXcuc2VyaWVzLnNvbWUoeCA9PiBheGVzLmluZGV4T2YoeCkgPCAwKSlcclxuICAgICAgICByZXR1cm4geyBzZXJpZXM6IGZhbHNlIH07XHJcbiAgICAgIGkrKztcclxuICAgIH1cclxuICB9O1xyXG4gIHJlYWRvbmx5IGZvcm0gPSB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICBwYXR0ZXJuczogdGhpcy5wYXR0ZXJucyxcclxuICAgIHZpZXdzOiB0aGlzLnZpZXdzLFxyXG4gICAgYXhlczogdGhpcy5heGVzLFxyXG4gICAgaW5kaWNlczogdGhpcy5pbmRpY2VzLFxyXG4gICAgc2NvcGU6IHRoaXMuX2ZiLmNvbnRyb2wobnVsbCwgVmFsaWRhdG9ycy5yZXF1aXJlZCksXHJcbiAgICBhbm9tYWx5OiB0aGlzLl9mYi5jb250cm9sKG51bGwsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gIH0sIHsgLyp2YWxpZGF0b3JzOiB0aGlzLl9jdWJlQXhlc1ZhbGlkYXRvciovIH0pO1xyXG4gIHNlY29uZGFyeUF4ZXM6IEN1YmVBeGlzW11bXSA9IFtdO1xyXG4gIHVzYWdlOiBDdWJlSW5mbztcclxuICBzeW5jaW5nID0gZmFsc2U7XHJcbiAgcmVhZG9ubHkgdHlwZXM6IEVsZW1lbnRJbmZvW107XHJcbiAgY29uc3RydWN0b3IoZmI6IEZvcm1CdWlsZGVyLFxyXG4gICAgcHJpdmF0ZSBfc2VydmljZTogU3lzdGVtU2VydmljZSxcclxuICAgIHByaXZhdGUgX3BzOiBQcm9tcHRTZXJ2aWNlLFxyXG4gICAgQEluamVjdChEZXNpZ25lclJlZikgcmVmOiBEZXNpZ25lclJlZikge1xyXG4gICAgc3VwZXIoZmIsIHJlZik7XHJcbiAgICB0aGlzLnR5cGVzID0gcmVmLmRlc2lnbmVyLnR5cGVzO1xyXG4gIH1cclxuICBzeW5jKCkge1xyXG4gICAgdGhpcy5zeW5jaW5nID0gdHJ1ZTtcclxuICAgIHRoaXMuX3NlcnZpY2Uuc3luY2hyaW5pemUodGhpcy5tb2RlbC5uYW1lKS5zdWJzY3JpYmUoKCkgPT4gdGhpcy5zeW5jaW5nID0gZmFsc2UsICgpID0+IHtcclxuICAgICAgdGhpcy5zeW5jaW5nID0gZmFsc2U7XHJcbiAgICAgIHRoaXMuX3BzLmVycm9yKCk7XHJcbiAgICB9KTtcclxuICB9XHJcbiAgbmdPbkluaXQoKSB7XHJcbiAgICBpZiAodGhpcy5tb2RlID09PSAnZWRpdCcpIHtcclxuICAgICAgdGhpcy5tb2RlbC5heGVzPy5mb3JFYWNoKGEgPT4ge1xyXG4gICAgICAgIHRoaXMuYXhlcy5wdXNoKHRoaXMuX2Zvcm1heGlzKGEpLCB7IGVtaXRFdmVudDogdHJ1ZSB9KTtcclxuICAgICAgfSk7XHJcbiAgICAgIHRoaXMubW9kZWwuaW5kaWNlcz8uZm9yRWFjaChpID0+XHJcbiAgICAgICAgdGhpcy5pbmRpY2VzLnB1c2godGhpcy5fZm9ybWluZGV4KGkpLCB7IGVtaXRFdmVudDogdHJ1ZSB9KVxyXG4gICAgICApO1xyXG4gICAgICB0aGlzLm1vZGVsLnBhdHRlcm5zPy5mb3JFYWNoKHAgPT5cclxuICAgICAgICB0aGlzLnBhdHRlcm5zLnB1c2godGhpcy5fZm9ybXBhdHRlcm4ocCksIHsgZW1pdEV2ZW50OiB0cnVlIH0pXHJcbiAgICAgICk7XHJcbiAgICAgIHRoaXMubW9kZWwudmlld3M/LmZvckVhY2goKHYsIGkpID0+IHtcclxuICAgICAgICB0aGlzLnZpZXdzLnB1c2godGhpcy5fZm9ybXZpZXcodiksIHsgZW1pdEV2ZW50OiB0cnVlIH0pO1xyXG4gICAgICAgIHRoaXMuX3NlY29uZGFyeUF4ZXMoaSwgdi54QXhpcyk7XHJcbiAgICAgIH0pO1xyXG4gICAgfVxyXG4gICAgZWxzZVxyXG4gICAgICB0aGlzLl9zZXJ2aWNlLmN1YmUodGhpcy5tb2RlbC5uYW1lKS5zdWJzY3JpYmUociA9PiB0aGlzLnVzYWdlID0gcik7XHJcbiAgfVxyXG4gIGRyb3BWaWV3KGV2ZW50OiBDZGtEcmFnRHJvcDxGb3JtR3JvdXA+KSB7XHJcbiAgICB0aGlzLmRyb3AoZXZlbnQsIHRoaXMudmlld3MpO1xyXG4gICAgbW92ZUl0ZW1JbkFycmF5KHRoaXMuc2Vjb25kYXJ5QXhlcywgZXZlbnQucHJldmlvdXNJbmRleCwgZXZlbnQuY3VycmVudEluZGV4KTtcclxuICB9XHJcblxyXG4gIHJlbW92ZUF4aXMoaW5kZXg6IG51bWJlcikge1xyXG4gICAgdGhpcy5heGVzLnJlbW92ZUF0KGluZGV4KTtcclxuICB9XHJcbiAgcmVtb3ZlSW5kZXgoaW5kZXg6IG51bWJlcikge1xyXG4gICAgdGhpcy5pbmRpY2VzLnJlbW92ZUF0KGluZGV4KTtcclxuICB9XHJcbiAgcmVtb3ZlUGF0dGVybihpbmRleDogbnVtYmVyKSB7XHJcbiAgICB0aGlzLnBhdHRlcm5zLnJlbW92ZUF0KGluZGV4KTtcclxuICB9XHJcbiAgcmVtb3ZlVmlldyhpbmRleDogbnVtYmVyKSB7XHJcbiAgICB0aGlzLnNlY29uZGFyeUF4ZXMuc3BsaWNlKGluZGV4LCAxKTtcclxuICAgIHRoaXMudmlld3MucmVtb3ZlQXQoaW5kZXgpO1xyXG4gIH1cclxuICBhZGRBeGlzKCkge1xyXG4gICAgdGhpcy5heGVzLnB1c2godGhpcy5fZm9ybWF4aXMoKSk7XHJcbiAgfVxyXG4gIGFkZEluZGV4KCkge1xyXG4gICAgdGhpcy5pbmRpY2VzLnB1c2godGhpcy5fZm9ybWluZGV4KCkpO1xyXG4gIH1cclxuICBhZGRWaWV3KCkge1xyXG4gICAgdGhpcy52aWV3cy5wdXNoKHRoaXMuX2Zvcm12aWV3KCkpO1xyXG4gIH1cclxuICBhZGRQYXR0ZXJuKCkge1xyXG4gICAgdGhpcy5wYXR0ZXJucy5wdXNoKHRoaXMuX2Zvcm1wYXR0ZXJuKCkpO1xyXG4gIH1cclxuICBuYW1lT2YoYXhpczogc3RyaW5nIHwgc3RyaW5nW10pIHsgcmV0dXJuIHRoaXMubW9kZWwuYXhlcy5maWx0ZXIoYSA9PiBpc0FycmF5KGF4aXMpID8gYXhpcy5pbmRleE9mKGEubmFtZSkgPiAtMSA6IGEubmFtZSA9PT0gYXhpcykuam9pbignLCAnKSB9XHJcbiAgeEF4aXNTZWxlY3RlZChpbmRleDogbnVtYmVyLCBldnQ6IE1hdFNlbGVjdENoYW5nZSkge1xyXG4gICAgdGhpcy5fc2Vjb25kYXJ5QXhlcyhpbmRleCwgZXZ0LnZhbHVlKTtcclxuICB9XHJcbiAgcHJvdGVjdGVkIF9zZWNvbmRhcnlBeGVzKGluZGV4OiBudW1iZXIsIGF4aXM6IHN0cmluZ1tdIHwgc3RyaW5nKSB7XHJcbiAgICBpZiAoIWF4aXMpIHJldHVybjtcclxuICAgIHRoaXMuc2Vjb25kYXJ5QXhlc1tpbmRleF0gPSB0aGlzLm1vZGVsLmF4ZXMuZmlsdGVyKGEgPT4gaXNBcnJheShheGlzKSA/IGF4aXMuaW5kZXhPZihhLm5hbWUpIDwgMCA6IGF4aXMgIT09IGEubmFtZSk7XHJcbiAgfVxyXG4gIHByaXZhdGUgX2Zvcm12aWV3KG1vZGVsPzogQ3ViZVZpZXcpOiBhbnkge1xyXG4gICAgY29uc3QgbmFtZSA9IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/Lm5hbWUsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgICB0aXRsZSA9IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/LnRpdGxlLCBWYWxpZGF0b3JzLnJlcXVpcmVkKTtcclxuICAgIHRoaXMubW9kZWwuZHJhZnQgJiYgdGl0bGUudmFsdWVDaGFuZ2VzLlxyXG4gICAgICBzdWJzY3JpYmUodCA9PiBuYW1lLnNldFZhbHVlKHByb2dyYW1OYW1lKHQpKSk7XHJcbiAgICByZXR1cm4gdGhpcy5fZmIuZ3JvdXAoe1xyXG4gICAgICBuYW1lLFxyXG4gICAgICB0aXRsZSxcclxuICAgICAgaWNvbjogbW9kZWw/Lmljb24gfHwgbnVsbCxcclxuICAgICAgeEF4aXM6IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/LnhBeGlzLCBWYWxpZGF0b3JzLnJlcXVpcmVkKSxcclxuICAgICAgc2VyaWVzOiBtb2RlbD8uc2VyaWVzIHx8IFtdLFxyXG4gICAgICBpbmRpY2VzOiBtb2RlbD8uaW5kaWNlcyB8fCBbXSxcclxuICAgICAgdHlwZTogbW9kZWw/LnR5cGUgfHwgJ0NoYXJ0JyxcclxuICAgICAgY2hhcnRUeXBlOiBtb2RlbD8uY2hhcnRUeXBlIHx8IG51bGwsXHJcbiAgICB9KTtcclxuICB9XHJcbiAgcHJpdmF0ZSBfZm9ybWF4aXMobW9kZWw/OiBDdWJlQXhpcyk6IGFueSB7XHJcbiAgICBjb25zdCBuYW1lID0gdGhpcy5fZmIuY29udHJvbChtb2RlbD8ubmFtZSwgVmFsaWRhdG9ycy5yZXF1aXJlZCksXHJcbiAgICAgIHRpdGxlID0gdGhpcy5fZmIuY29udHJvbChtb2RlbD8udGl0bGUsIFZhbGlkYXRvcnMucmVxdWlyZWQpO1xyXG4gICAgdGhpcy5tb2RlbC5kcmFmdCAmJiB0aXRsZS52YWx1ZUNoYW5nZXMuXHJcbiAgICAgIHN1YnNjcmliZSh0ID0+IG5hbWUuc2V0VmFsdWUocHJvZ3JhbU5hbWUodCkpKTtcclxuICAgIHJldHVybiB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICAgIG5hbWUsXHJcbiAgICAgIHRpdGxlLFxyXG4gICAgICBkZXNjZW5kZW50T2Y6IG1vZGVsPy5kZXNjZW5kZW50T2YsXHJcbiAgICAgIGRhdGFUeXBlOiB0aGlzLl9mYi5jb250cm9sKG1vZGVsPy5kYXRhVHlwZSwgVmFsaWRhdG9ycy5yZXF1aXJlZClcclxuICAgIH0pO1xyXG4gIH1cclxuICBwcml2YXRlIF9mb3JtaW5kZXgobW9kZWw/OiBDdWJlSW5kZXgpOiBhbnkge1xyXG4gICAgY29uc3QgbmFtZSA9IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/Lm5hbWUsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgICB0aXRsZSA9IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/LnRpdGxlLCBWYWxpZGF0b3JzLnJlcXVpcmVkKTtcclxuICAgIHRoaXMubW9kZWwuZHJhZnQgJiYgdGl0bGUudmFsdWVDaGFuZ2VzLlxyXG4gICAgICBzdWJzY3JpYmUodCA9PiBuYW1lLnNldFZhbHVlKHByb2dyYW1OYW1lKHQpKSk7XHJcbiAgICByZXR1cm4gdGhpcy5fZmIuZ3JvdXAoe1xyXG4gICAgICBuYW1lLFxyXG4gICAgICB0aXRsZSxcclxuICAgICAgYWNjdW11bGF0ZTogbW9kZWw/LmFjY3VtdWxhdGUsXHJcbiAgICB9KTtcclxuICB9XHJcbiAgcHJpdmF0ZSBfZm9ybXBhdHRlcm4obW9kZWw/OiBQYXR0ZXJuKTogYW55IHtcclxuICAgIHJldHVybiB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICAgIGF4ZXM6IHRoaXMuX2ZiLmdyb3VwKG1vZGVsPy5heGVzIHx8IHt9KSxcclxuICAgICAgdGl0bGU6IHRoaXMuX2ZiLmNvbnRyb2wobW9kZWw/LnRpdGxlLCBWYWxpZGF0b3JzLnJlcXVpcmVkKSxcclxuICAgIH0pO1xyXG4gIH1cclxuICBkYXRhdHlwZShuYW1lOiBzdHJpbmcpIHsgcmV0dXJuIHRoaXMudHlwZXMuZmluZCh0ID0+IHQubmFtZSA9PSBuYW1lKT8udGl0bGU7IH1cclxuICBpc0FjY3VtKGluZGV4OiBudW1iZXIpIHtcclxuICAgIHN3aXRjaCAodGhpcy5tb2RlbC52aWV3c1tpbmRleF0/LmNoYXJ0VHlwZSkge1xyXG4gICAgICBjYXNlICdQaWUnOlxyXG4gICAgICBjYXNlICdEb3VnaG51dCc6XHJcbiAgICAgIGNhc2UgJ0hhbGZEb3VnaG51dCc6XHJcbiAgICAgIGNhc2UgJ0Z1bm5lbCc6XHJcbiAgICAgICAgcmV0dXJuIHRydWU7XHJcbiAgICB9XHJcbiAgfVxyXG59XHJcbiIsIiAgPGZvcm0gYXV0b2NvbXBsZXRlPVwib2ZmXCIgW2Zvcm1Hcm91cF09XCJmb3JtXCIgY2xhc3M9XCJjb2x1bW5cIiAqbmdJZj1cIm1vZGUgPT09ICdlZGl0JzsgZWxzZSBpbmZvXCI+XHJcbiAgPG1hdC1sYWJlbD57eydTZWN1cml0eUxldmVsJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgPGJyIC8+XHJcbiAgICA8bWF0LXJhZGlvLWdyb3VwIGZvcm1Db250cm9sTmFtZT1cInNjb3BlXCI+XHJcbiAgICAgIDxtYXQtcmFkaW8tYnV0dG9uPnt7J0dsb2JhbCd8dHJhbnNsYXRlfX08L21hdC1yYWRpby1idXR0b24+XHJcbiAgICAgIDxwPnt7JyAnfHRyYW5zbGF0ZX19PC9wPlxyXG4gICAgICA8bWF0LXJhZGlvLWJ1dHRvbiB2YWx1ZT1cIlBvc2l0aW9uc1wiPnt7J1Bvc2l0aW9ucyd8dHJhbnNsYXRlfX08L21hdC1yYWRpby1idXR0b24+XHJcbiAgICAgIDxwPnt7JyAnfHRyYW5zbGF0ZX19PC9wPlxyXG4gICAgICA8bWF0LXJhZGlvLWJ1dHRvbiB2YWx1ZT1cIlBhdHRlcm5zXCI+e3snUGF0dGVybnMnfHRyYW5zbGF0ZX19PC9tYXQtcmFkaW8tYnV0dG9uPlxyXG4gICAgICA8cD57eycgJ3x0cmFuc2xhdGV9fTwvcD5cclxuICAgIDwvbWF0LXJhZGlvLWdyb3VwPlxyXG4gIDwhLS0gQXhlcyAtLT5cclxuICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydBeGVzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgPGRpdiBmb3JtQXJyYXlOYW1lPVwiYXhlc1wiIGNsYXNzPVwiY29sdW1uXCIgY2RrRHJvcExpc3QgKGNka0Ryb3BMaXN0RHJvcHBlZCk9XCJkcm9wKCRldmVudCwgYXhlcylcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJyb3dcIiAqbmdGb3I9XCJsZXQgYSBvZiBheGVzLmNvbnRyb2xzOyBpbmRleCBhcyBpbmRleFwiIFtmb3JtR3JvdXBdPVwiYVwiIGNka0RyYWc+XHJcbiAgICAgIDxtYXQtaWNvbiBjZGtEcmFnSGFuZGxlPmRyYWdfaW5kaWNhdG9yPC9tYXQtaWNvbj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwiZmxleFwiPlxyXG4gICAgICAgIDxtYXQtbGFiZWw+e3snVGl0bGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgPGlucHV0IG1hdElucHV0IGZvcm1Db250cm9sTmFtZT1cInRpdGxlXCIgcmVxdWlyZWQgLz5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgJm5ic3A7XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8bWF0LWxhYmVsPnt7J0RhdGFUeXBlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICAgIDxtYXQtc2VsZWN0IGZvcm1Db250cm9sTmFtZT1cImRhdGFUeXBlXCIgcmVxdWlyZWQ+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgdCBvZiB0eXBlc1wiIFt2YWx1ZV09XCJ0Lm5hbWVcIj57e3QudGl0bGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgIDxidXR0b24gbWF0LWljb24tYnV0dG9uIChjbGljayk9XCJyZW1vdmVBeGlzKGluZGV4KVwiIFtiaXpkb2NUb29sdGlwXT1cIidSZW1vdmUnfHRyYW5zbGF0ZVwiPjxtYXQtaWNvbj5kZWxldGU8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImFkZEF4aXMoKVwiIFtiaXpkb2NUb29sdGlwXT1cIidBZGQnfHRyYW5zbGF0ZVwiPjxtYXQtaWNvbj5hZGQ8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4gIDwhLS0gSW5kaWNlcyAtLT5cclxuICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydJbmRpY2VzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgPGRpdiBmb3JtQXJyYXlOYW1lPVwiaW5kaWNlc1wiIGNsYXNzPVwiY29sdW1uXCIgY2RrRHJvcExpc3QgKGNka0Ryb3BMaXN0RHJvcHBlZCk9XCJkcm9wKCRldmVudCwgaW5kaWNlcylcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJyb3dcIiAqbmdGb3I9XCJsZXQgYSBvZiBpbmRpY2VzLmNvbnRyb2xzOyBpbmRleCBhcyBpbmRleFwiIFtmb3JtR3JvdXBdPVwiYVwiIGNka0RyYWc+XHJcbiAgICAgIDxtYXQtaWNvbiBjZGtEcmFnSGFuZGxlPmRyYWdfaW5kaWNhdG9yPC9tYXQtaWNvbj5cclxuICAgICAgPG1hdC1mb3JtLWZpZWxkIGNsYXNzPVwiZmxleFwiPlxyXG4gICAgICAgIDxtYXQtbGFiZWw+e3snVGl0bGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgPGlucHV0IG1hdElucHV0IGZvcm1Db250cm9sTmFtZT1cInRpdGxlXCIgcmVxdWlyZWQgLz5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cInJlbW92ZUluZGV4KGluZGV4KVwiIFtiaXpkb2NUb29sdGlwXT1cIidSZW1vdmUnfHRyYW5zbGF0ZVwiPjxtYXQtaWNvbj5kZWxldGU8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImFkZEluZGV4KClcIiBbYml6ZG9jVG9vbHRpcF09XCInQWRkJ3x0cmFuc2xhdGVcIj48bWF0LWljb24+YWRkPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICA8IS0tIFBhdHRlcm5zIC0tPlxyXG4gIDxoMiBjbGFzcz1cIm1hdC10aXRsZVwiPnt7J1BhdHRlcm5zJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgPGRpdiBmb3JtQXJyYXlOYW1lPVwiaW5kaWNlc1wiIGNsYXNzPVwiY29sdW1uXCIgY2RrRHJvcExpc3QgKGNka0Ryb3BMaXN0RHJvcHBlZCk9XCJkcm9wKCRldmVudCwgcGF0dGVybnMpXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwicm93XCIgKm5nRm9yPVwibGV0IHAgb2YgcGF0dGVybnMuY29udHJvbHM7IGluZGV4IGFzIGluZGV4XCIgW2Zvcm1Hcm91cF09XCJwXCIgY2RrRHJhZz5cclxuICAgICAgPG1hdC1pY29uIGNka0RyYWdIYW5kbGU+ZHJhZ19pbmRpY2F0b3I8L21hdC1pY29uPlxyXG4gICAgICA8bWF0LWZvcm0tZmllbGQgY2xhc3M9XCJmbGV4XCI+XHJcbiAgICAgICAgPG1hdC1sYWJlbD57eydUaXRsZSd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgICA8aW5wdXQgbWF0SW5wdXQgZm9ybUNvbnRyb2xOYW1lPVwidGl0bGVcIiAvPlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8Yml6ZG9jLWN1YmUtZmlsdGVyIFtjdWJlXT1cIm1vZGVsLm5hbWVcIiBbKGF4ZXMpXT1cInAuZ2V0KCdheGVzJykudmFsdWVcIj48L2JpemRvYy1jdWJlLWZpbHRlcj5cclxuICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cInJlbW92ZVBhdHRlcm4oaW5kZXgpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ1JlbW92ZSd8dHJhbnNsYXRlXCI+PG1hdC1pY29uPmRlbGV0ZTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwiYWRkUGF0dGVybigpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ0FkZCd8dHJhbnNsYXRlXCI+PG1hdC1pY29uPmFkZDwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgPCEtLSBWaWV3cyAtLT5cclxuICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydWaWV3cyd8dHJhbnNsYXRlfX08L2gyPlxyXG4gIDxkaXYgZm9ybUFycmF5TmFtZT1cInZpZXdzXCIgY2xhc3M9XCJjb2x1bW5cIiBjZGtEcm9wTGlzdCAoY2RrRHJvcExpc3REcm9wcGVkKT1cImRyb3BWaWV3KCRldmVudClcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJyb3dcIiAqbmdGb3I9XCJsZXQgdiBvZiB2aWV3cy5jb250cm9sczsgaW5kZXggYXMgaW5kZXhcIiBbZm9ybUdyb3VwXT1cInZcIiBjZGtEcmFnPlxyXG4gICAgICA8bWF0LWljb24gY2RrRHJhZ0hhbmRsZT5kcmFnX2luZGljYXRvcjwvbWF0LWljb24+XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZCBjbGFzcz1cImZsZXhcIj5cclxuICAgICAgICA8bWF0LWxhYmVsPnt7J1RpdGxlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICAgIDxpbnB1dCBtYXRJbnB1dCBmb3JtQ29udHJvbE5hbWU9XCJ0aXRsZVwiIHJlcXVpcmVkIC8+XHJcbiAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICZuYnNwO1xyXG4gICAgICA8Yml6ZG9jLWljb24tcGlja2VyIGZvcm1Db250cm9sTmFtZT1cImljb25cIiByZXF1aXJlZD48L2JpemRvYy1pY29uLXBpY2tlcj5cclxuICAgICAgJm5ic3A7XHJcbiAgICAgIDxtYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8bWF0LWxhYmVsPnt7J1R5cGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwidHlwZVwiPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJDaGFydFwiPnt7J0NoYXJ0J3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiUGl2b3RcIj57eydQaXZvdCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkdyaWRcIj57eydHcmlkJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3ByZWFkc2hlZXRcIj57eydTcHJlYWRzaGVldCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAmbmJzcDtcclxuICAgICAgPG5nLWNvbnRhaW5lciBbbmdTd2l0Y2hdPVwidi5nZXQoJ3R5cGUnKS52YWx1ZVwiPlxyXG4gICAgICAgIDxtYXQtZm9ybS1maWVsZCAqbmdTd2l0Y2hDYXNlPVwiJ0NoYXJ0J1wiPlxyXG4gICAgICAgICAgPG1hdC1sYWJlbD57eydDaGFydFR5cGUnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJjaGFydFR5cGVcIj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJQaWVcIj57eydQaWUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkRvdWdobnV0XCI+e3snRG91Z2hudXQnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkhhbGZEb3VnaG51dFwiPnt7J0hhbGZEb3VnaG51dCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiQ29sdW1uXCI+e3snQ29sdW1uJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0NvbHVtblwiPnt7J1N0YWNraW5nQ29sdW1uJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0NvbHVtbjEwMFwiPnt7J1N0YWNraW5nQ29sdW1uMTAwJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJCYXJcIj57eydCYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkJ1YmJsZVwiPnt7J0J1YmJsZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdCYXJcIj57eydTdGFja2luZ0Jhcid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdCYXIxMDBcIj57eydTdGFja2luZ0JhcjEwMCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiTGluZVwiPnt7J0xpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nTGluZVwiPnt7J1N0YWNraW5nTGluZSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdMaW5lMTAwXCI+e3snU3RhY2tpbmdMaW5lMTAwJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTcGxpbmVcIj57eydTcGxpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlNwbGluZUFyZWFcIj57eydTcGxpbmVBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJBcmVhXCI+e3snQXJlYSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdBcmVhXCI+e3snU3RhY2tpbmdBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0FyZWExMDBcIj57eydTdGFja2luZ0FyZWExMDAnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlNjYXR0ZXJcIj57eydTY2F0dGVyJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJQb2xhclwiPnt7J1BvbGFyJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJSYWRhclwiPnt7J1JhZGFyJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGVwTGluZVwiPnt7J1N0ZXBMaW5lJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGVwQXJlYVwiPnt7J1N0ZXBBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ1N0ZXBBcmVhXCI+e3snU3RhY2tpbmdTdGVwQXJlYSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiRnVubmVsXCI+e3snRnVubmVsJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJQeXJhbWlkXCI+e3snUHlyYW1pZCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgICA8bWF0LWZvcm0tZmllbGQgKm5nU3dpdGNoQ2FzZT1cIidQaXZvdCdcIj5cclxuICAgICAgICAgIDxtYXQtbGFiZWw+e3snQ2hhcnRUeXBlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwiY2hhcnRUeXBlXCI+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uPnt7J05vbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkNvbHVtblwiPnt7J0NvbHVtbid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiQmFyXCI+e3snQmFyJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJCdWJibGVcIj57eydCdWJibGUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQmFyXCI+e3snU3RhY2tpbmdCYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQmFyMTAwXCI+e3snU3RhY2tpbmdCYXIxMDAnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIkxpbmVcIj57eydMaW5lJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTcGxpbmVcIj57eydTcGxpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlNwbGluZUFyZWFcIj57eydTcGxpbmVBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJBcmVhXCI+e3snQXJlYSd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiRG91Z2hudXRcIj57eydEb3VnaG51dCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiSGFsZkRvdWdobnV0XCI+e3snSGFsZkRvdWdobnV0J3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0FyZWFcIj57eydTdGFja2luZ0FyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nQXJlYTEwMFwiPnt7J1N0YWNraW5nQXJlYTEwMCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdDb2x1bW5cIj57eydTdGFja2luZ0NvbHVtbid8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU3RhY2tpbmdDb2x1bW4xMDBcIj57eydTdGFja2luZ0NvbHVtbjEwMCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICAgIDxtYXQtb3B0aW9uIHZhbHVlPVwiU2NhdHRlclwiPnt7J1NjYXR0ZXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlBvbGFyXCI+e3snUG9sYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlJhZGFyXCI+e3snUmFkYXInfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0ZXBMaW5lXCI+e3snU3RlcExpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0ZXBBcmVhXCI+e3snU3RlcEFyZWEnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nU3RlcEFyZWFcIj57eydTdGFja2luZ1N0ZXBBcmVhJ3x0cmFuc2xhdGV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgICAgICAgPG1hdC1vcHRpb24gdmFsdWU9XCJTdGFja2luZ0xpbmVcIj57eydTdGFja2luZ0xpbmUnfHRyYW5zbGF0ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgICAgICA8bWF0LW9wdGlvbiB2YWx1ZT1cIlN0YWNraW5nTGluZTEwMFwiPnt7J1N0YWNraW5nTGluZTEwMCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgICZuYnNwO1xyXG4gICAgICA8bWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgICAgPG1hdC1sYWJlbD57eydYQXhpcyd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJ4QXhpc1wiIHJlcXVpcmVkIChzZWxlY3Rpb25DaGFuZ2UpPVwieEF4aXNTZWxlY3RlZChpbmRleCwgJGV2ZW50KVwiIG11bHRpcGxlPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHggb2YgbW9kZWwuYXhlc1wiIFt2YWx1ZV09XCJ4Lm5hbWVcIj57e3gudGl0bGUgfHwgeC5uYW1lfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAmbmJzcDtcclxuICAgICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICAgIDxtYXQtbGFiZWw+e3snU2VyaWVzJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICAgIDxtYXQtc2VsZWN0IGZvcm1Db250cm9sTmFtZT1cInNlcmllc1wiIG11bHRpcGxlIFtkaXNhYmxlZF09XCJpc0FjY3VtKGluZGV4KVwiPlxyXG4gICAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHggb2Ygc2Vjb25kYXJ5QXhlc1tpbmRleF1cIiBbdmFsdWVdPVwieC5uYW1lXCI+e3t4LnRpdGxlIHx8IHgubmFtZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICAgICAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cInJlbW92ZVZpZXcoaW5kZXgpXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ1JlbW92ZSd8dHJhbnNsYXRlXCI+PG1hdC1pY29uPmRlbGV0ZTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxidXR0b24gbWF0LWljb24tYnV0dG9uIChjbGljayk9XCJhZGRWaWV3KClcIiBbYml6ZG9jVG9vbHRpcF09XCInQWRkJ3x0cmFuc2xhdGVcIj48bWF0LWljb24+YWRkPC9tYXQtaWNvbj48L2J1dHRvbj5cclxuICA8L2Rpdj5cclxuPC9mb3JtPlxyXG48IS0tIEluZm8gLS0+XHJcbjxuZy10ZW1wbGF0ZSAjaW5mbz5cclxuICA8YnV0dG9uIG1hdC1zdHJva2VkLWJ1dHRvbiAoY2xpY2spPVwic3luYygpXCI+XHJcbiAgICA8c3Bhbj4ge3snU3luY2hyb25pemUnfHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgPG1hdC1zcGlubmVyICpuZ0lmPVwic3luY2luZ1wiIGRpYW1ldGVyPVwiMjBcIj48L21hdC1zcGlubmVyPlxyXG4gIDwvYnV0dG9uPlxyXG4gIDxkaXYgY2xhc3M9XCJyb3dcIj5cclxuICAgIDxkaXYgKm5nSWY9XCJtb2RlbC5heGVzLmxlbmd0aFwiPlxyXG4gICAgICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydBeGVzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgICAgIDx0YWJsZSBjbGFzcz1cIm1hdC10YWJsZVwiPlxyXG4gICAgICAgIDx0ciBjbGFzcz1cIm1hdC1yb3dcIiAqbmdGb3I9XCJsZXQgYSBvZiBtb2RlbC5heGVzXCI+XHJcbiAgICAgICAgICA8IS0tPHRkIGNsYXNzPVwibWF0LWNlbGxcIj57e2EubmFtZX19PC90ZD4tLT5cclxuICAgICAgICAgIDx0ZCBjbGFzcz1cIm1hdC1jZWxsXCI+e3thLnRpdGxlfX08L3RkPlxyXG4gICAgICAgICAgPHRkIGNsYXNzPVwibWF0LWNlbGxcIj57e2RhdGF0eXBlKGEuZGF0YVR5cGUpfX08L3RkPlxyXG4gICAgICAgIDwvdHI+XHJcbiAgICAgIDwvdGFibGU+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgKm5nSWY9XCJtb2RlbC5pbmRpY2VzLmxlbmd0aFwiPlxyXG4gICAgICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydJbmRpY2VzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgICAgIDx0YWJsZSBjbGFzcz1cIm1hdC10YWJsZVwiPlxyXG4gICAgICAgIDx0ciBjbGFzcz1cIm1hdC1yb3dcIiAqbmdGb3I9XCJsZXQgYSBvZiBtb2RlbC5pbmRpY2VzXCI+XHJcbiAgICAgICAgICA8IS0tPHRkIGNsYXNzPVwibWF0LWNlbGxcIj57e2EubmFtZX19PC90ZD4tLT5cclxuICAgICAgICAgIDx0ZCBjbGFzcz1cIm1hdC1jZWxsXCI+e3thLnRpdGxlfX08L3RkPlxyXG4gICAgICAgIDwvdHI+XHJcbiAgICAgIDwvdGFibGU+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgKm5nSWY9XCJtb2RlbC52aWV3cy5sZW5ndGhcIj5cclxuICAgICAgPGgyIGNsYXNzPVwibWF0LXRpdGxlXCI+e3snVmlld3MnfHRyYW5zbGF0ZX19PC9oMj5cclxuICAgICAgPHRhYmxlIGNsYXNzPVwibWF0LXRhYmxlXCI+XHJcbiAgICAgICAgPHRyIGNsYXNzPVwibWF0LXJvd1wiICpuZ0Zvcj1cImxldCB2IG9mIG1vZGVsLnZpZXdzXCI+XHJcbiAgICAgICAgICA8dGQgY2xhc3M9XCJtYXQtY2VsbFwiPnt7di50aXRsZX19PC90ZD5cclxuICAgICAgICAgIDwhLS08dGQgY2xhc3M9XCJtYXQtY2VsbFwiPih7eyh2LnR5cGV8fCdDaGFydCcpfHRyYW5zbGF0ZX19KTwvdGQ+LS0+XHJcbiAgICAgICAgPC90cj5cclxuICAgICAgPC90YWJsZT5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG48L25nLXRlbXBsYXRlPlxyXG4iXX0=
|