@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
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"bizdoc-core.d.ts","sourceRoot":"","sources":["../../libraries/core/src/bizdoc-core.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
|
@@ -20,9 +20,9 @@ export class AdminDismiss {
|
|
20
20
|
return true;
|
21
21
|
}
|
22
22
|
}
|
23
|
-
AdminDismiss.ɵfac =
|
24
|
-
AdminDismiss.ɵprov = i0.ɵɵ
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
//# sourceMappingURL=data:application/json;base64,
|
23
|
+
AdminDismiss.ɵfac = function AdminDismiss_Factory(t) { return new (t || AdminDismiss)(i0.ɵɵinject(i1.MatDialog)); };
|
24
|
+
AdminDismiss.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AdminDismiss, factory: AdminDismiss.ɵfac });
|
25
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdminDismiss, [{
|
26
|
+
type: Injectable
|
27
|
+
}], function () { return [{ type: i1.MatDialog }]; }, null); })();
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tZGlzbWlzcy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9hZG1pbi1kaXNtaXNzLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUczQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQzs7O0FBSWhFLE1BQU0sT0FBTyxZQUFZO0lBQ3ZCLFlBQ1UsT0FBa0I7UUFBbEIsWUFBTyxHQUFQLE9BQU8sQ0FBVztJQUM1QixDQUFDO0lBQ0QsU0FBUyxDQUFDLFNBQXlCO1FBQ2pDLElBQUksU0FBUyxDQUFDLEtBQUs7WUFDakIsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsRUFBRSxDQUNyQyxJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQztnQkFDbEMsV0FBVyxFQUFFO2dCQUNiLFNBQVMsQ0FBQyxFQUFFLENBQUMsRUFBRTtnQkFDYixJQUFJLEVBQUU7b0JBQUUsU0FBUyxDQUFDLElBQUksRUFBRSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUUsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLEVBQUUsTUFBTSxDQUFDLENBQUM7O29CQUN0RCxPQUFPLENBQUMsRUFBRSxLQUFLLEtBQUssQ0FBQyxDQUFDO1lBQzdCLENBQUMsQ0FBQyxDQUFDLENBQUM7O1lBRVIsT0FBTyxJQUFJLENBQUM7SUFDaEIsQ0FBQzs7d0VBZlUsWUFBWTtrRUFBWixZQUFZLFdBQVosWUFBWTt1RkFBWixZQUFZO2NBRHhCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSBcIkBhbmd1bGFyL21hdGVyaWFsL2RpYWxvZ1wiO1xyXG5pbXBvcnQgeyBDYW5EaXNtaXNzIH0gZnJvbSBcIi4uL2NvcmUvY29uZmlndXJhdGlvblwiO1xyXG5pbXBvcnQgeyBTYXZlQ2hhbmdlc0RpYWxvZyB9IGZyb20gXCIuLi9jb3JlL3NhdmUtY2hhbmdlcy5kaWFsb2dcIjtcclxuXHJcblxyXG5ASW5qZWN0YWJsZSgpXHJcbmV4cG9ydCBjbGFzcyBBZG1pbkRpc21pc3MgaW1wbGVtZW50cyBDYW5EaXNtaXNzPEFkbWluQ29tcG9uZW50PiB7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwcml2YXRlIF9kaWFsb2c6IE1hdERpYWxvZykge1xyXG4gIH1cclxuICBvbkRpc21pc3MoY29tcG9uZW50OiBBZG1pbkNvbXBvbmVudCk6IFByb21pc2U8Ym9vbGVhbj4gfCBib29sZWFuIHtcclxuICAgIGlmIChjb21wb25lbnQuZGlydHkpXHJcbiAgICAgIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSwgcmVqZWN0KSA9PlxyXG4gICAgICAgIHRoaXMuX2RpYWxvZy5vcGVuKFNhdmVDaGFuZ2VzRGlhbG9nKS5cclxuICAgICAgICAgIGFmdGVyQ2xvc2VkKCkuXHJcbiAgICAgICAgICBzdWJzY3JpYmUob2sgPT4ge1xyXG4gICAgICAgICAgICBpZiAob2spIGNvbXBvbmVudC5zYXZlKCkudGhlbigoKSA9PiByZXNvbHZlKHRydWUpLCByZWplY3QpO1xyXG4gICAgICAgICAgICBlbHNlIHJlc29sdmUob2sgIT09IGZhbHNlKTtcclxuICAgICAgICAgIH0pKTsgXHJcbiAgICBlbHNlXHJcbiAgICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuXHJcbn1cclxuZXhwb3J0IGludGVyZmFjZSBBZG1pbkNvbXBvbmVudCB7XHJcbiAgc2F2ZSgpOiBQcm9taXNlPGFueT47XHJcbiAgZGlydHk6IGJvb2xlYW47XHJcbn1cclxuIl19
|
@@ -9,6 +9,62 @@ import * as i6 from "@angular/material/icon";
|
|
9
9
|
import * as i7 from "../core/popup/tooltip.directive";
|
10
10
|
import * as i8 from "../core/slots/router.directive";
|
11
11
|
import * as i9 from "../core/pipes/translate.pipe";
|
12
|
+
function AdminMenuComponent_h3_1_Template(rf, ctx) { if (rf & 1) {
|
13
|
+
i0.ɵɵelementStart(0, "h3", 2);
|
14
|
+
i0.ɵɵtext(1);
|
15
|
+
i0.ɵɵpipe(2, "translate");
|
16
|
+
i0.ɵɵelementEnd();
|
17
|
+
} if (rf & 2) {
|
18
|
+
i0.ɵɵadvance(1);
|
19
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Workflow"));
|
20
|
+
} }
|
21
|
+
const _c0 = function (a1) { return ["admin/forms", a1]; };
|
22
|
+
function AdminMenuComponent_mat_list_item_2_Template(rf, ctx) { if (rf & 1) {
|
23
|
+
i0.ɵɵelementStart(0, "mat-list-item", 3)(1, "mat-icon", 4);
|
24
|
+
i0.ɵɵtext(2);
|
25
|
+
i0.ɵɵelementEnd();
|
26
|
+
i0.ɵɵelementStart(3, "span", 5);
|
27
|
+
i0.ɵɵtext(4);
|
28
|
+
i0.ɵɵelementEnd()();
|
29
|
+
} if (rf & 2) {
|
30
|
+
const f_r4 = ctx.$implicit;
|
31
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
32
|
+
i0.ɵɵproperty("slotRouterLink", i0.ɵɵpureFunction1(5, _c0, f_r4.name));
|
33
|
+
i0.ɵɵadvance(1);
|
34
|
+
i0.ɵɵproperty("bizdocTooltip", f_r4.title)("bizdocTooltipDisabled", !ctx_r1.collapsed);
|
35
|
+
i0.ɵɵadvance(1);
|
36
|
+
i0.ɵɵtextInterpolate(f_r4.icon || "description");
|
37
|
+
i0.ɵɵadvance(2);
|
38
|
+
i0.ɵɵtextInterpolate(f_r4.title);
|
39
|
+
} }
|
40
|
+
function AdminMenuComponent_h3_4_Template(rf, ctx) { if (rf & 1) {
|
41
|
+
i0.ɵɵelementStart(0, "h3", 2);
|
42
|
+
i0.ɵɵtext(1);
|
43
|
+
i0.ɵɵpipe(2, "translate");
|
44
|
+
i0.ɵɵelementEnd();
|
45
|
+
} if (rf & 2) {
|
46
|
+
i0.ɵɵadvance(1);
|
47
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Utilities"));
|
48
|
+
} }
|
49
|
+
const _c1 = function (a1) { return ["admin/utilities", a1]; };
|
50
|
+
function AdminMenuComponent_mat_list_item_5_Template(rf, ctx) { if (rf & 1) {
|
51
|
+
i0.ɵɵelementStart(0, "mat-list-item", 3)(1, "mat-icon", 4);
|
52
|
+
i0.ɵɵtext(2);
|
53
|
+
i0.ɵɵelementEnd();
|
54
|
+
i0.ɵɵelementStart(3, "span", 5);
|
55
|
+
i0.ɵɵtext(4);
|
56
|
+
i0.ɵɵelementEnd()();
|
57
|
+
} if (rf & 2) {
|
58
|
+
const u_r5 = ctx.$implicit;
|
59
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
60
|
+
i0.ɵɵproperty("slotRouterLink", i0.ɵɵpureFunction1(5, _c1, u_r5.name));
|
61
|
+
i0.ɵɵadvance(1);
|
62
|
+
i0.ɵɵproperty("bizdocTooltip", u_r5.title)("bizdocTooltipDisabled", !ctx_r3.collapsed);
|
63
|
+
i0.ɵɵadvance(1);
|
64
|
+
i0.ɵɵtextInterpolate(u_r5.icon || "build");
|
65
|
+
i0.ɵɵadvance(2);
|
66
|
+
i0.ɵɵtextInterpolate(u_r5.title);
|
67
|
+
} }
|
12
68
|
export class AdminMenuComponent {
|
13
69
|
constructor(session) {
|
14
70
|
this.profile = session.profile;
|
@@ -16,12 +72,29 @@ export class AdminMenuComponent {
|
|
16
72
|
ngOnInit() {
|
17
73
|
}
|
18
74
|
}
|
19
|
-
AdminMenuComponent.ɵfac =
|
20
|
-
AdminMenuComponent.ɵcmp = i0.ɵɵ
|
21
|
-
i0.ɵɵ
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
75
|
+
AdminMenuComponent.ɵfac = function AdminMenuComponent_Factory(t) { return new (t || AdminMenuComponent)(i0.ɵɵdirectiveInject(i1.SessionService)); };
|
76
|
+
AdminMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AdminMenuComponent, selectors: [["bizdoc-admin-menu"]], inputs: { collapsed: "collapsed" }, decls: 6, vars: 4, consts: [["matSubheader", "", 4, "ngIf"], ["slotRouterLinkActive", "active", 3, "slotRouterLink", 4, "ngFor", "ngForOf"], ["matSubheader", ""], ["slotRouterLinkActive", "active", 3, "slotRouterLink"], ["matListIcon", "", "bizdocTooltipPosition", "end", 3, "bizdocTooltip", "bizdocTooltipDisabled"], ["matLine", ""]], template: function AdminMenuComponent_Template(rf, ctx) { if (rf & 1) {
|
77
|
+
i0.ɵɵelementStart(0, "mat-nav-list");
|
78
|
+
i0.ɵɵtemplate(1, AdminMenuComponent_h3_1_Template, 3, 3, "h3", 0);
|
79
|
+
i0.ɵɵtemplate(2, AdminMenuComponent_mat_list_item_2_Template, 5, 7, "mat-list-item", 1);
|
80
|
+
i0.ɵɵelement(3, "mat-divider");
|
81
|
+
i0.ɵɵtemplate(4, AdminMenuComponent_h3_4_Template, 3, 3, "h3", 0);
|
82
|
+
i0.ɵɵtemplate(5, AdminMenuComponent_mat_list_item_5_Template, 5, 7, "mat-list-item", 1);
|
83
|
+
i0.ɵɵelementEnd();
|
84
|
+
} if (rf & 2) {
|
85
|
+
i0.ɵɵadvance(1);
|
86
|
+
i0.ɵɵproperty("ngIf", !ctx.collapsed);
|
87
|
+
i0.ɵɵadvance(1);
|
88
|
+
i0.ɵɵproperty("ngForOf", ctx.profile.forms);
|
89
|
+
i0.ɵɵadvance(2);
|
90
|
+
i0.ɵɵproperty("ngIf", !ctx.collapsed);
|
91
|
+
i0.ɵɵadvance(1);
|
92
|
+
i0.ɵɵproperty("ngForOf", ctx.profile.utilities);
|
93
|
+
} }, dependencies: [i2.NgForOf, i2.NgIf, i3.MatLine, i4.MatNavList, i4.MatListItem, i4.MatListIconCssMatStyler, i4.MatListSubheaderCssMatStyler, i5.MatDivider, i6.MatIcon, i7.TooltipDirective, i8.SlotRouterDirective, i9.TranslatePipe], encapsulation: 2 });
|
94
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdminMenuComponent, [{
|
95
|
+
type: Component,
|
96
|
+
args: [{ selector: 'bizdoc-admin-menu', template: "<!--<span class=\"mat-subheader\">BizDoc</span>\r\n<h1 class=\"mat-display-1\">{{'System'|translate}}</h1>-->\r\n\r\n<mat-nav-list>\r\n <h3 matSubheader *ngIf=\"!collapsed\">{{'Workflow'|translate}}</h3>\r\n <mat-list-item *ngFor=\"let f of profile.forms\" [slotRouterLink]='[\"admin/forms\", f.name]' slotRouterLinkActive=\"active\">\r\n <mat-icon matListIcon [bizdocTooltip]=\"f.title\" bizdocTooltipPosition=\"end\" [bizdocTooltipDisabled]=\"!collapsed\">{{f.icon|| 'description'}}</mat-icon>\r\n <span matLine>{{f.title}}</span>\r\n </mat-list-item>\r\n <mat-divider></mat-divider>\r\n\r\n <h3 matSubheader *ngIf=\"!collapsed\">{{'Utilities'|translate}}</h3>\r\n\r\n <mat-list-item *ngFor=\"let u of profile.utilities\" [slotRouterLink]='[\"admin/utilities\", u.name]' slotRouterLinkActive=\"active\">\r\n <mat-icon matListIcon [bizdocTooltip]=\"u.title\" bizdocTooltipPosition=\"end\" [bizdocTooltipDisabled]=\"!collapsed\">{{u.icon || 'build'}}</mat-icon>\r\n <span matLine>{{u.title}}</span>\r\n </mat-list-item>\r\n</mat-nav-list>\r\n" }]
|
97
|
+
}], function () { return [{ type: i1.SessionService }]; }, { collapsed: [{
|
98
|
+
type: Input
|
99
|
+
}] }); })();
|
100
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tbWVudS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2FkbWluLW1lbnUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9hZG1pbi1tZW51LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDOzs7Ozs7Ozs7Ozs7SUNJdkQsNkJBQW9DO0lBQUEsWUFBd0I7O0lBQUEsaUJBQUs7O0lBQTdCLGVBQXdCO0lBQXhCLHNEQUF3Qjs7OztJQUM1RCx3Q0FBd0gsa0JBQUE7SUFDTCxZQUEwQjtJQUFBLGlCQUFXO0lBQ3RKLCtCQUFjO0lBQUEsWUFBVztJQUFBLGlCQUFPLEVBQUE7Ozs7SUFGYSxzRUFBMEM7SUFDakUsZUFBeUI7SUFBekIsMENBQXlCLDRDQUFBO0lBQWtFLGVBQTBCO0lBQTFCLGdEQUEwQjtJQUM3SCxlQUFXO0lBQVgsZ0NBQVc7OztJQUkzQiw2QkFBb0M7SUFBQSxZQUF5Qjs7SUFBQSxpQkFBSzs7SUFBOUIsZUFBeUI7SUFBekIsdURBQXlCOzs7O0lBRTdELHdDQUFnSSxrQkFBQTtJQUNiLFlBQXFCO0lBQUEsaUJBQVc7SUFDakosK0JBQWM7SUFBQSxZQUFXO0lBQUEsaUJBQU8sRUFBQTs7OztJQUZpQixzRUFBOEM7SUFDekUsZUFBeUI7SUFBekIsMENBQXlCLDRDQUFBO0lBQWtFLGVBQXFCO0lBQXJCLDBDQUFxQjtJQUN4SCxlQUFXO0lBQVgsZ0NBQVc7O0FEUDdCLE1BQU0sT0FBTyxrQkFBa0I7SUFJN0IsWUFBWSxPQUF1QjtRQUNqQyxJQUFJLENBQUMsT0FBTyxHQUFHLE9BQU8sQ0FBQyxPQUFPLENBQUM7SUFDakMsQ0FBQztJQUVELFFBQVE7SUFDUixDQUFDOztvRkFUVSxrQkFBa0I7cUVBQWxCLGtCQUFrQjtRQ0wvQixvQ0FBYztRQUNaLGlFQUFpRTtRQUNqRSx1RkFHZ0I7UUFDaEIsOEJBQTJCO1FBRTNCLGlFQUFrRTtRQUVsRSx1RkFHZ0I7UUFDbEIsaUJBQWU7O1FBYkssZUFBZ0I7UUFBaEIscUNBQWdCO1FBQ0wsZUFBZ0I7UUFBaEIsMkNBQWdCO1FBTTNCLGVBQWdCO1FBQWhCLHFDQUFnQjtRQUVMLGVBQW9CO1FBQXBCLCtDQUFvQjs7dUZETHRDLGtCQUFrQjtjQUo5QixTQUFTOzJCQUNFLG1CQUFtQjtpRUFJcEIsU0FBUztrQkFBakIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBQcm9maWxlIH0gZnJvbSAnLi4vY29yZS9tb2RlbHMnO1xyXG5pbXBvcnQgeyBTZXNzaW9uU2VydmljZSB9IGZyb20gJy4uL2NvcmUvc2Vzc2lvbi5zZXJ2aWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYml6ZG9jLWFkbWluLW1lbnUnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9hZG1pbi1tZW51LmNvbXBvbmVudC5odG1sJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgQWRtaW5NZW51Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBASW5wdXQoKSBjb2xsYXBzZWQ6IGJvb2xlYW47XHJcbiAgcHJvZmlsZTogUHJvZmlsZTtcclxuXHJcbiAgY29uc3RydWN0b3Ioc2Vzc2lvbjogU2Vzc2lvblNlcnZpY2UpIHtcclxuICAgIHRoaXMucHJvZmlsZSA9IHNlc3Npb24ucHJvZmlsZTtcclxuICB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIH1cclxuXHJcbn1cclxuIiwiPCEtLTxzcGFuIGNsYXNzPVwibWF0LXN1YmhlYWRlclwiPkJpekRvYzwvc3Bhbj5cclxuPGgxIGNsYXNzPVwibWF0LWRpc3BsYXktMVwiPnt7J1N5c3RlbSd8dHJhbnNsYXRlfX08L2gxPi0tPlxyXG5cclxuPG1hdC1uYXYtbGlzdD5cclxuICA8aDMgbWF0U3ViaGVhZGVyICpuZ0lmPVwiIWNvbGxhcHNlZFwiPnt7J1dvcmtmbG93J3x0cmFuc2xhdGV9fTwvaDM+XHJcbiAgPG1hdC1saXN0LWl0ZW0gKm5nRm9yPVwibGV0IGYgb2YgcHJvZmlsZS5mb3Jtc1wiIFtzbG90Um91dGVyTGlua109J1tcImFkbWluL2Zvcm1zXCIsIGYubmFtZV0nIHNsb3RSb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCI+XHJcbiAgICA8bWF0LWljb24gbWF0TGlzdEljb24gW2JpemRvY1Rvb2x0aXBdPVwiZi50aXRsZVwiIGJpemRvY1Rvb2x0aXBQb3NpdGlvbj1cImVuZFwiIFtiaXpkb2NUb29sdGlwRGlzYWJsZWRdPVwiIWNvbGxhcHNlZFwiPnt7Zi5pY29ufHwgJ2Rlc2NyaXB0aW9uJ319PC9tYXQtaWNvbj5cclxuICAgIDxzcGFuIG1hdExpbmU+e3tmLnRpdGxlfX08L3NwYW4+XHJcbiAgPC9tYXQtbGlzdC1pdGVtPlxyXG4gIDxtYXQtZGl2aWRlcj48L21hdC1kaXZpZGVyPlxyXG5cclxuICA8aDMgbWF0U3ViaGVhZGVyICpuZ0lmPVwiIWNvbGxhcHNlZFwiPnt7J1V0aWxpdGllcyd8dHJhbnNsYXRlfX08L2gzPlxyXG5cclxuICA8bWF0LWxpc3QtaXRlbSAqbmdGb3I9XCJsZXQgdSBvZiBwcm9maWxlLnV0aWxpdGllc1wiIFtzbG90Um91dGVyTGlua109J1tcImFkbWluL3V0aWxpdGllc1wiLCB1Lm5hbWVdJyBzbG90Um91dGVyTGlua0FjdGl2ZT1cImFjdGl2ZVwiPlxyXG4gICAgPG1hdC1pY29uIG1hdExpc3RJY29uIFtiaXpkb2NUb29sdGlwXT1cInUudGl0bGVcIiBiaXpkb2NUb29sdGlwUG9zaXRpb249XCJlbmRcIiBbYml6ZG9jVG9vbHRpcERpc2FibGVkXT1cIiFjb2xsYXBzZWRcIj57e3UuaWNvbiB8fCAnYnVpbGQnfX08L21hdC1pY29uPlxyXG4gICAgPHNwYW4gbWF0TGluZT57e3UudGl0bGV9fTwvc3Bhbj5cclxuICA8L21hdC1saXN0LWl0ZW0+XHJcbjwvbWF0LW5hdi1saXN0PlxyXG4iXX0=
|
@@ -0,0 +1,248 @@
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
2
|
+
import { Subject } from 'rxjs';
|
3
|
+
import { debounceTime, takeUntil, filter, map } from 'rxjs/operators';
|
4
|
+
import { isArray, mapToArray } from '../../core/functions';
|
5
|
+
import { AXIS_VALUE_PATTERN } from '../../cube/cube.service';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
import * as i1 from "../../cube/cube.service";
|
8
|
+
import * as i2 from "./designer.base";
|
9
|
+
import * as i3 from "@angular/forms";
|
10
|
+
import * as i4 from "@angular/common";
|
11
|
+
import * as i5 from "@angular/flex-layout/flex";
|
12
|
+
import * as i6 from "@angular/material/autocomplete";
|
13
|
+
import * as i7 from "@angular/material/core";
|
14
|
+
import * as i8 from "@angular/material/form-field";
|
15
|
+
import * as i9 from "@angular/material/select";
|
16
|
+
import * as i10 from "@angular/material/button";
|
17
|
+
import * as i11 from "@angular/material/input";
|
18
|
+
import * as i12 from "@angular/material/icon";
|
19
|
+
import * as i13 from "../../core/pipes/sort.pipe";
|
20
|
+
import * as i14 from "../../core/pipes/translate.pipe";
|
21
|
+
function DesignerCubeFilterComponent_mat_form_field_1_ng_container_1_mat_error_2_Template(rf, ctx) { if (rf & 1) {
|
22
|
+
i0.ɵɵelementStart(0, "mat-error");
|
23
|
+
i0.ɵɵtext(1);
|
24
|
+
i0.ɵɵpipe(2, "translate");
|
25
|
+
i0.ɵɵelementEnd();
|
26
|
+
} if (rf & 2) {
|
27
|
+
i0.ɵɵadvance(1);
|
28
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "SimplePatternErr"));
|
29
|
+
} }
|
30
|
+
function DesignerCubeFilterComponent_mat_form_field_1_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
31
|
+
i0.ɵɵelementContainerStart(0);
|
32
|
+
i0.ɵɵelement(1, "input", 5);
|
33
|
+
i0.ɵɵtemplate(2, DesignerCubeFilterComponent_mat_form_field_1_ng_container_1_mat_error_2_Template, 3, 3, "mat-error", 6);
|
34
|
+
i0.ɵɵelementContainerEnd();
|
35
|
+
} if (rf & 2) {
|
36
|
+
const a_r1 = i0.ɵɵnextContext().$implicit;
|
37
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
38
|
+
i0.ɵɵadvance(1);
|
39
|
+
i0.ɵɵproperty("pattern", ctx_r2.pattern)("formControlName", a_r1.name)("placeholder", a_r1.title || a_r1.name);
|
40
|
+
i0.ɵɵadvance(1);
|
41
|
+
i0.ɵɵproperty("ngIf", ctx_r2.form.controls[a_r1.name].invalid);
|
42
|
+
} }
|
43
|
+
function DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_mat_option_5_Template(rf, ctx) { if (rf & 1) {
|
44
|
+
i0.ɵɵelementStart(0, "mat-option", 13);
|
45
|
+
i0.ɵɵtext(1);
|
46
|
+
i0.ɵɵelementEnd();
|
47
|
+
} if (rf & 2) {
|
48
|
+
const r_r12 = ctx.$implicit;
|
49
|
+
i0.ɵɵproperty("value", r_r12);
|
50
|
+
i0.ɵɵadvance(1);
|
51
|
+
i0.ɵɵtextInterpolate(r_r12.value);
|
52
|
+
} }
|
53
|
+
function DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_button_9_Template(rf, ctx) { if (rf & 1) {
|
54
|
+
const _r14 = i0.ɵɵgetCurrentView();
|
55
|
+
i0.ɵɵelementStart(0, "button", 14);
|
56
|
+
i0.ɵɵlistener("click", function DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_button_9_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r14); i0.ɵɵnextContext(); const _r7 = i0.ɵɵreference(2); const a_r1 = i0.ɵɵnextContext().$implicit; const ctx_r13 = i0.ɵɵnextContext(); _r7.value = ""; return i0.ɵɵresetView(ctx_r13.form.controls[a_r1.name].setValue(null)); });
|
57
|
+
i0.ɵɵelementStart(1, "mat-icon");
|
58
|
+
i0.ɵɵtext(2, "close");
|
59
|
+
i0.ɵɵelementEnd()();
|
60
|
+
} }
|
61
|
+
function DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_mat_error_10_Template(rf, ctx) { if (rf & 1) {
|
62
|
+
i0.ɵɵelementStart(0, "mat-error");
|
63
|
+
i0.ɵɵtext(1);
|
64
|
+
i0.ɵɵpipe(2, "translate");
|
65
|
+
i0.ɵɵelementEnd();
|
66
|
+
} if (rf & 2) {
|
67
|
+
i0.ɵɵadvance(1);
|
68
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "SimplePatternErr"));
|
69
|
+
} }
|
70
|
+
function DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
71
|
+
const _r18 = i0.ɵɵgetCurrentView();
|
72
|
+
i0.ɵɵelementContainerStart(0);
|
73
|
+
i0.ɵɵelement(1, "input", 7, 8);
|
74
|
+
i0.ɵɵelementStart(3, "mat-autocomplete", 9, 10);
|
75
|
+
i0.ɵɵlistener("optionSelected", function DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_Template_mat_autocomplete_optionSelected_3_listener($event) { i0.ɵɵrestoreView(_r18); const a_r1 = i0.ɵɵnextContext().$implicit; const ctx_r16 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r16.change(a_r1.name, $event)); });
|
76
|
+
i0.ɵɵtemplate(5, DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_mat_option_5_Template, 2, 2, "mat-option", 11);
|
77
|
+
i0.ɵɵpipe(6, "slice");
|
78
|
+
i0.ɵɵpipe(7, "filter");
|
79
|
+
i0.ɵɵpipe(8, "async");
|
80
|
+
i0.ɵɵelementEnd();
|
81
|
+
i0.ɵɵtemplate(9, DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_button_9_Template, 3, 0, "button", 12);
|
82
|
+
i0.ɵɵtemplate(10, DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_mat_error_10_Template, 3, 3, "mat-error", 6);
|
83
|
+
i0.ɵɵelementContainerEnd();
|
84
|
+
} if (rf & 2) {
|
85
|
+
const _r7 = i0.ɵɵreference(2);
|
86
|
+
const _r8 = i0.ɵɵreference(4);
|
87
|
+
const a_r1 = i0.ɵɵnextContext().$implicit;
|
88
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
89
|
+
i0.ɵɵadvance(1);
|
90
|
+
i0.ɵɵproperty("matAutocomplete", _r8)("placeholder", a_r1.title || a_r1.name);
|
91
|
+
i0.ɵɵadvance(2);
|
92
|
+
i0.ɵɵproperty("displayWith", ctx_r3.display);
|
93
|
+
i0.ɵɵadvance(2);
|
94
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind3(6, 6, i0.ɵɵpipeBind3(7, 10, i0.ɵɵpipeBind1(8, 14, ctx_r3.sources[a_r1.name]), "value", _r7.value), 0, 50));
|
95
|
+
i0.ɵɵadvance(4);
|
96
|
+
i0.ɵɵproperty("ngIf", _r7.value);
|
97
|
+
i0.ɵɵadvance(1);
|
98
|
+
i0.ɵɵproperty("ngIf", ctx_r3.form.controls[a_r1.name].invalid);
|
99
|
+
} }
|
100
|
+
function DesignerCubeFilterComponent_mat_form_field_1_mat_select_3_mat_option_1_Template(rf, ctx) { if (rf & 1) {
|
101
|
+
i0.ɵɵelementStart(0, "mat-option");
|
102
|
+
i0.ɵɵtext(1);
|
103
|
+
i0.ɵɵpipe(2, "translate");
|
104
|
+
i0.ɵɵelementEnd();
|
105
|
+
} if (rf & 2) {
|
106
|
+
i0.ɵɵadvance(1);
|
107
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "All"));
|
108
|
+
} }
|
109
|
+
function DesignerCubeFilterComponent_mat_form_field_1_mat_select_3_mat_option_2_Template(rf, ctx) { if (rf & 1) {
|
110
|
+
i0.ɵɵelementStart(0, "mat-option", 13);
|
111
|
+
i0.ɵɵtext(1);
|
112
|
+
i0.ɵɵelementEnd();
|
113
|
+
} if (rf & 2) {
|
114
|
+
const r_r22 = ctx.$implicit;
|
115
|
+
i0.ɵɵproperty("value", r_r22.key);
|
116
|
+
i0.ɵɵadvance(1);
|
117
|
+
i0.ɵɵtextInterpolate(r_r22.value);
|
118
|
+
} }
|
119
|
+
function DesignerCubeFilterComponent_mat_form_field_1_mat_select_3_Template(rf, ctx) { if (rf & 1) {
|
120
|
+
i0.ɵɵelementStart(0, "mat-select", 15);
|
121
|
+
i0.ɵɵtemplate(1, DesignerCubeFilterComponent_mat_form_field_1_mat_select_3_mat_option_1_Template, 3, 3, "mat-option", 6);
|
122
|
+
i0.ɵɵtemplate(2, DesignerCubeFilterComponent_mat_form_field_1_mat_select_3_mat_option_2_Template, 2, 2, "mat-option", 11);
|
123
|
+
i0.ɵɵpipe(3, "async");
|
124
|
+
i0.ɵɵelementEnd();
|
125
|
+
} if (rf & 2) {
|
126
|
+
const a_r1 = i0.ɵɵnextContext().$implicit;
|
127
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
128
|
+
i0.ɵɵproperty("formControlName", a_r1.name)("placeholder", a_r1.title || a_r1.name)("multiple", a_r1.selectionMode === "Multiple");
|
129
|
+
i0.ɵɵadvance(1);
|
130
|
+
i0.ɵɵproperty("ngIf", a_r1.selectionMode !== "Multiple");
|
131
|
+
i0.ɵɵadvance(1);
|
132
|
+
i0.ɵɵproperty("ngForOf", i0.ɵɵpipeBind1(3, 5, ctx_r4.sources[a_r1.name]));
|
133
|
+
} }
|
134
|
+
function DesignerCubeFilterComponent_mat_form_field_1_Template(rf, ctx) { if (rf & 1) {
|
135
|
+
i0.ɵɵelementStart(0, "mat-form-field", 2);
|
136
|
+
i0.ɵɵtemplate(1, DesignerCubeFilterComponent_mat_form_field_1_ng_container_1_Template, 3, 4, "ng-container", 3);
|
137
|
+
i0.ɵɵtemplate(2, DesignerCubeFilterComponent_mat_form_field_1_ng_container_2_Template, 11, 16, "ng-container", 3);
|
138
|
+
i0.ɵɵtemplate(3, DesignerCubeFilterComponent_mat_form_field_1_mat_select_3_Template, 4, 7, "mat-select", 4);
|
139
|
+
i0.ɵɵelementEnd();
|
140
|
+
} if (rf & 2) {
|
141
|
+
const a_r1 = ctx.$implicit;
|
142
|
+
i0.ɵɵproperty("ngSwitch", a_r1.selectionMode);
|
143
|
+
i0.ɵɵattribute("data-help", "axis-" + a_r1.name);
|
144
|
+
i0.ɵɵadvance(1);
|
145
|
+
i0.ɵɵproperty("ngSwitchCase", "Pattern");
|
146
|
+
i0.ɵɵadvance(1);
|
147
|
+
i0.ɵɵproperty("ngSwitchCase", "Search");
|
148
|
+
} }
|
149
|
+
/** filter component*/
|
150
|
+
export class DesignerCubeFilterComponent {
|
151
|
+
/** filter ctor */
|
152
|
+
constructor(_service, _ref, _fb) {
|
153
|
+
this._service = _service;
|
154
|
+
this._ref = _ref;
|
155
|
+
this._fb = _fb;
|
156
|
+
this.pattern = AXIS_VALUE_PATTERN;
|
157
|
+
this.sources = {};
|
158
|
+
this._decendents = {};
|
159
|
+
this._ancestors = {};
|
160
|
+
this._destroy = new Subject();
|
161
|
+
}
|
162
|
+
ngOnInit() {
|
163
|
+
if (!this.model)
|
164
|
+
this.model = {};
|
165
|
+
this.cube.axes.forEach(a => {
|
166
|
+
if (a.hidden || a.selectionMode === 'None')
|
167
|
+
return;
|
168
|
+
let { descendentOf } = a;
|
169
|
+
if (descendentOf) {
|
170
|
+
let ancestors = this._ancestors[a.name] = [];
|
171
|
+
while (descendentOf) {
|
172
|
+
let axis = this.cube.axes.find(a => a.name === descendentOf);
|
173
|
+
ancestors.push(axis.name);
|
174
|
+
if (a.selectionMode !== 'Pattern') {
|
175
|
+
if (!this._decendents[descendentOf])
|
176
|
+
this._decendents[descendentOf] = [a.name];
|
177
|
+
else
|
178
|
+
this._decendents[descendentOf].push(a.name);
|
179
|
+
}
|
180
|
+
descendentOf = axis.descendentOf;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
const ctrl = this._fb.control(this.model[a.name]);
|
184
|
+
this.form.addControl(a.name, ctrl, { emitEvent: false });
|
185
|
+
ctrl.valueChanges.pipe(filter(() => ctrl.valid), debounceTime(200), takeUntil(this._destroy)).subscribe(v => {
|
186
|
+
if (v === null || v === undefined || (isArray(v) && !v.length))
|
187
|
+
delete this.model[a.name];
|
188
|
+
else
|
189
|
+
this.model[a.name] = v;
|
190
|
+
if (this._decendents[a.name])
|
191
|
+
for (let axis of this._decendents[a.name]) {
|
192
|
+
let deps = {};
|
193
|
+
for (let name of this._ancestors[axis])
|
194
|
+
if (this.model[name])
|
195
|
+
deps[name] = this.model[name];
|
196
|
+
this.sources[axis] = this._service.values(this.cube.name, axis, deps).
|
197
|
+
pipe(map(mapToArray));
|
198
|
+
}
|
199
|
+
});
|
200
|
+
});
|
201
|
+
this.form.updateValueAndValidity({ emitEvent: false });
|
202
|
+
this._initialize();
|
203
|
+
}
|
204
|
+
ngOnChanges(changes) {
|
205
|
+
changes['exclude'] && !changes['exclude'].firstChange && this._initialize();
|
206
|
+
}
|
207
|
+
_initialize() {
|
208
|
+
const values = {};
|
209
|
+
this.cube?.axes?.forEach(a => {
|
210
|
+
if (!this.sources[a.name] && a.selectionMode !== 'Pattern') {
|
211
|
+
this.sources[a.name] = this._service.values(this.cube.name, a.name).pipe(map(mapToArray));
|
212
|
+
}
|
213
|
+
values[a.name] = this.model[a.name] || null;
|
214
|
+
});
|
215
|
+
this.form && this.form.patchValue(values, { emitEvent: false });
|
216
|
+
}
|
217
|
+
display(keyValue) {
|
218
|
+
return keyValue ? keyValue.value : null;
|
219
|
+
}
|
220
|
+
change(axis, evt) {
|
221
|
+
this.form.controls[axis].setValue(evt.option.value.key);
|
222
|
+
}
|
223
|
+
ngOnDestroy() {
|
224
|
+
this._destroy.next();
|
225
|
+
this._destroy.complete();
|
226
|
+
}
|
227
|
+
}
|
228
|
+
DesignerCubeFilterComponent.ɵfac = function DesignerCubeFilterComponent_Factory(t) { return new (t || DesignerCubeFilterComponent)(i0.ɵɵdirectiveInject(i1.CubeService), i0.ɵɵdirectiveInject(i2.DesignerRef), i0.ɵɵdirectiveInject(i3.FormBuilder)); };
|
229
|
+
DesignerCubeFilterComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DesignerCubeFilterComponent, selectors: [["bizdoc-designer-cube-filter"]], inputs: { cube: "cube", model: "model", form: "form" }, features: [i0.ɵɵNgOnChangesFeature], decls: 2, vars: 2, consts: [["fxLayout", "column", 3, "formGroup"], [3, "ngSwitch", 4, "ngFor", "ngForOf"], [3, "ngSwitch"], [4, "ngSwitchCase"], [3, "formControlName", "placeholder", "multiple", 4, "ngSwitchDefault"], ["matInput", "", "autocomplete", "off", 3, "pattern", "autofocus", "formControlName", "placeholder"], [4, "ngIf"], ["matInput", "", "autocomplete", "off", "type", "search", 3, "matAutocomplete", "placeholder"], ["inp", ""], [3, "displayWith", "optionSelected"], ["segment", ""], [3, "value", 4, "ngFor", "ngForOf"], ["mat-icon-button", "", "matSuffix", "", "aria-label", "", 3, "click", 4, "ngIf"], [3, "value"], ["mat-icon-button", "", "matSuffix", "", "aria-label", "", 3, "click"], [3, "formControlName", "placeholder", "multiple"]], template: function DesignerCubeFilterComponent_Template(rf, ctx) { if (rf & 1) {
|
230
|
+
i0.ɵɵelementStart(0, "div", 0);
|
231
|
+
i0.ɵɵtemplate(1, DesignerCubeFilterComponent_mat_form_field_1_Template, 4, 4, "mat-form-field", 1);
|
232
|
+
i0.ɵɵelementEnd();
|
233
|
+
} if (rf & 2) {
|
234
|
+
i0.ɵɵproperty("formGroup", ctx.form);
|
235
|
+
i0.ɵɵadvance(1);
|
236
|
+
i0.ɵɵproperty("ngForOf", ctx.cube.axes);
|
237
|
+
} }, dependencies: [i4.NgForOf, i4.NgIf, i4.NgSwitch, i4.NgSwitchCase, i4.NgSwitchDefault, i3.DefaultValueAccessor, i3.NgControlStatus, i3.NgControlStatusGroup, i3.PatternValidator, i3.FormGroupDirective, i3.FormControlName, i5.DefaultLayoutDirective, i6.MatAutocomplete, i6.MatAutocompleteTrigger, i7.MatOption, i8.MatError, i8.MatFormField, i8.MatSuffix, i9.MatSelect, i10.MatButton, i11.MatInput, i12.MatIcon, i4.AsyncPipe, i4.SlicePipe, i13.FilterPipe, i14.TranslatePipe], styles: ["form[_ngcontent-%COMP%]{padding:8px}"] });
|
238
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DesignerCubeFilterComponent, [{
|
239
|
+
type: Component,
|
240
|
+
args: [{ selector: 'bizdoc-designer-cube-filter', template: "<div [formGroup]=\"form\" fxLayout=\"column\">\r\n <mat-form-field *ngFor=\"let a of cube.axes\" [ngSwitch]=\"a.selectionMode\" [attr.data-help]=\"'axis-'+a.name\">\r\n <ng-container *ngSwitchCase=\"'Pattern'\">\r\n <input matInput autocomplete=\"off\"\r\n [pattern]=\"pattern\" [autofocus]\r\n [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" />\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'SimplePatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'Search'\">\r\n <input matInput autocomplete=\"off\" type=\"search\"\r\n [matAutocomplete]=\"segment\" #inp\r\n [placeholder]=\"a.title||a.name\" />\r\n <mat-autocomplete #segment [displayWith]=\"display\"\r\n (optionSelected)=\"change(a.name, $event)\">\r\n <mat-option *ngFor=\"let r of sources[a.name] | async | filter : 'value' : inp.value | slice:0:50\" [value]=\"r\">{{r.value}}</mat-option>\r\n </mat-autocomplete>\r\n <button mat-icon-button *ngIf=\"inp.value\" matSuffix aria-label=\"\" (click)=\"inp.value = ''; form.controls[a.name].setValue(null)\"><mat-icon>close</mat-icon></button>\r\n <mat-error *ngIf=\"form.controls[a.name].invalid\">{{'SimplePatternErr' |translate}}</mat-error>\r\n </ng-container>\r\n <mat-select [formControlName]=\"a.name\" [placeholder]=\"a.title||a.name\" [multiple]=\"a.selectionMode === 'Multiple'\" *ngSwitchDefault>\r\n <mat-option *ngIf=\"a.selectionMode !== 'Multiple'\">{{'All' | translate}}</mat-option>\r\n <mat-option *ngFor=\"let r of sources[a.name] | async\" [value]=\"r.key\">{{r.value}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n</div>\r\n", styles: ["form{padding:8px}\n"] }]
|
241
|
+
}], function () { return [{ type: i1.CubeService }, { type: i2.DesignerRef }, { type: i3.FormBuilder }]; }, { cube: [{
|
242
|
+
type: Input
|
243
|
+
}], model: [{
|
244
|
+
type: Input
|
245
|
+
}], form: [{
|
246
|
+
type: Input
|
247
|
+
}] }); })();
|
248
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvY3ViZS1heGVzLWZpbHRlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLEtBQUssRUFBNkQsTUFBTSxlQUFlLENBQUM7QUFFcEgsT0FBTyxFQUFFLE9BQU8sRUFBYyxNQUFNLE1BQU0sQ0FBQztBQUMzQyxPQUFPLEVBQUUsWUFBWSxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDdEUsT0FBTyxFQUFFLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUczRCxPQUFPLEVBQUUsa0JBQWtCLEVBQWUsTUFBTSx5QkFBeUIsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7SUNEcEUsaUNBQWlEO0lBQUEsWUFBaUM7O0lBQUEsaUJBQVk7O0lBQTdDLGVBQWlDO0lBQWpDLDhEQUFpQzs7O0lBSnBGLDZCQUF3QztJQUN0QywyQkFFb0U7SUFDcEUsd0hBQThGO0lBQ2hHLDBCQUFlOzs7O0lBSE4sZUFBbUI7SUFBbkIsd0NBQW1CLDhCQUFBLHdDQUFBO0lBRWQsZUFBbUM7SUFBbkMsOERBQW1DOzs7SUFRN0Msc0NBQThHO0lBQUEsWUFBVztJQUFBLGlCQUFhOzs7SUFBcEMsNkJBQVc7SUFBQyxlQUFXO0lBQVgsaUNBQVc7Ozs7SUFFM0gsa0NBQWlJO0lBQS9ELGdUQUFxQixFQUFFLFNBQUUsZUFBQSwwQ0FBK0IsSUFBSSxDQUFDLENB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b250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0LCBJbnB1dCwgT3V0cHV0LCBPbkRlc3Ryb3ksIEV2ZW50RW1pdHRlciwgT25DaGFuZ2VzLCBTaW1wbGVDaGFuZ2VzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEZvcm1Hcm91cCwgRm9ybUJ1aWxkZXIgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IFN1YmplY3QsIE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgZGVib3VuY2VUaW1lLCB0YWtlVW50aWwsIGZpbHRlciwgbWFwIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xyXG5pbXBvcnQgeyBpc0FycmF5LCBtYXBUb0FycmF5IH0gZnJvbSAnLi4vLi4vY29yZS9mdW5jdGlvbnMnO1xyXG5pbXBvcnQgeyBBeGVzTWFwIH0gZnJvbSAnLi4vLi4vY29yZS9tb2RlbHMnO1xyXG5pbXBvcnQgeyBNYXRBdXRvY29tcGxldGVTZWxlY3RlZEV2ZW50IH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYXV0b2NvbXBsZXRlJztcclxuaW1wb3J0IHsgQVhJU19WQUxVRV9QQVRURVJOLCBDdWJlU2VydmljZSB9IGZyb20gJy4uLy4uL2N1YmUvY3ViZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRGVzaWduZXJSZWYsIEVsZW1lbnRNb2RlbCB9IGZyb20gJy4vZGVzaWduZXIuYmFzZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2JpemRvYy1kZXNpZ25lci1jdWJlLWZpbHRlcicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2N1YmUtYXhlcy1maWx0ZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2N1YmUtYXhlcy1maWx0ZXIuY29tcG9uZW50LnNjc3MnXVxyXG59KVxyXG4vKiogZmlsdGVyIGNvbXBvbmVudCovXHJcbmV4cG9ydCBjbGFzcyBEZXNpZ25lckN1YmVGaWx0ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcclxuICByZWFkb25seSBwYXR0ZXJuID0gQVhJU19WQUxVRV9QQVRURVJOO1xyXG4gIEBJbnB1dCgpIGN1YmUhOiBFbGVtZW50TW9kZWw7XHJcbiAgQElucHV0KCkgbW9kZWw6IEF4ZXNNYXA7XHJcbiAgQElucHV0KCkgZm9ybSE6IEZvcm1Hcm91cDtcclxuICByZWFkb25seSBzb3VyY2VzOiB7IFtheGlzOiBzdHJpbmddOiBPYnNlcnZhYmxlPHsgW2tleTogc3RyaW5nXTogYW55IH0+IH0gPSB7fTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9kZWNlbmRlbnRzID0ge30gYXMgeyBbbmFtZTogc3RyaW5nXTogc3RyaW5nW10gfTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9hbmNlc3RvcnMgPSB7fSBhcyB7IFtuYW1lOiBzdHJpbmddOiBzdHJpbmdbXSB9O1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgaWYgKCF0aGlzLm1vZGVsKSB0aGlzLm1vZGVsID0ge307XHJcbiAgICB0aGlzLmN1YmUuYXhlcy5mb3JFYWNoKGEgPT4ge1xyXG4gICAgICBpZiAoYS5oaWRkZW4gfHwgYS5zZWxlY3Rpb25Nb2RlID09PSAnTm9uZScpIHJldHVybjtcclxuICAgICAgbGV0IHsgZGVzY2VuZGVudE9mIH0gPSBhO1xyXG4gICAgICBpZiAoZGVzY2VuZGVudE9mKSB7XHJcbiAgICAgICAgbGV0IGFuY2VzdG9ycyA9IHRoaXMuX2FuY2VzdG9yc1thLm5hbWVdID0gW107XHJcbiAgICAgICAgd2hpbGUgKGRlc2NlbmRlbnRPZikge1xyXG4gICAgICAgICAgbGV0IGF4aXMgPSB0aGlzLmN1YmUuYXhlcy5maW5kKGEgPT4gYS5uYW1lID09PSBkZXNjZW5kZW50T2YpO1xyXG4gICAgICAgICAgYW5jZXN0b3JzLnB1c2goYXhpcy5uYW1lKTtcclxuICAgICAgICAgIGlmIChhLnNlbGVjdGlvbk1vZGUgIT09ICdQYXR0ZXJuJykge1xyXG4gICAgICAgICAgICBpZiAoIXRoaXMuX2RlY2VuZGVudHNbZGVzY2VuZGVudE9mXSkgdGhpcy5fZGVjZW5kZW50c1tkZXNjZW5kZW50T2ZdID0gW2EubmFtZV07XHJcbiAgICAgICAgICAgIGVsc2UgdGhpcy5fZGVjZW5kZW50c1tkZXNjZW5kZW50T2ZdLnB1c2goYS5uYW1lKTtcclxuICAgICAgICAgIH1cclxuICAgICAgICAgIGRlc2NlbmRlbnRPZiA9IGF4aXMuZGVzY2VuZGVudE9mO1xyXG4gICAgICAgIH1cclxuICAgICAgfVxyXG4gICAgICBjb25zdCBjdHJsID0gdGhpcy5fZmIuY29udHJvbCh0aGlzLm1vZGVsW2EubmFtZV0pO1xyXG4gICAgICB0aGlzLmZvcm0uYWRkQ29udHJvbChhLm5hbWUsIGN0cmwsIHsgZW1pdEV2ZW50OiBmYWxzZSB9KTtcclxuICAgICAgY3RybC52YWx1ZUNoYW5nZXMucGlwZShmaWx0ZXIoKCkgPT4gY3RybC52YWxpZCksIGRlYm91bmNlVGltZSgyMDApLFxyXG4gICAgICAgIHRha2VVbnRpbCh0aGlzLl9kZXN0cm95KSkuc3Vic2NyaWJlKHYgPT4ge1xyXG4gICAgICAgICAgaWYgKHYgPT09IG51bGwgfHwgdiA9PT0gdW5kZWZpbmVkIHx8IChpc0FycmF5KHYpICYmICF2Lmxlbmd0aCkpXHJcbiAgICAgICAgICAgIGRlbGV0ZSB0aGlzLm1vZGVsW2EubmFtZV07XHJcbiAgICAgICAgICBlbHNlXHJcbiAgICAgICAgICAgIHRoaXMubW9kZWxbYS5uYW1lXSA9IHY7XHJcbiAgICAgICAgICBpZiAodGhpcy5fZGVjZW5kZW50c1thLm5hbWVdKVxyXG4gICAgICAgICAgICBmb3IgKGxldCBheGlzIG9mIHRoaXMuX2RlY2VuZGVudHNbYS5uYW1lXSkge1xyXG4gICAgICAgICAgICAgIGxldCBkZXBzID0ge307XHJcbiAgICAgICAgICAgICAgZm9yIChsZXQgbmFtZSBvZiB0aGlzLl9hbmNlc3RvcnNbYXhpc10pXHJcbiAgICAgICAgICAgICAgICBpZiAodGhpcy5tb2RlbFtuYW1lXSkgZGVwc1tuYW1lXSA9IHRoaXMubW9kZWxbbmFtZV07XHJcbiAgICAgICAgICAgICAgdGhpcy5zb3VyY2VzW2F4aXNdID0gdGhpcy5fc2VydmljZS52YWx1ZXModGhpcy5jdWJlLm5hbWUsIGF4aXMsIGRlcHMpLlxyXG4gICAgICAgICAgICAgICAgcGlwZShtYXAobWFwVG9BcnJheSkpO1xyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgfSk7XHJcbiAgICB9KTtcclxuICAgIHRoaXMuZm9ybS51cGRhdGVWYWx1ZUFuZFZhbGlkaXR5KHsgZW1pdEV2ZW50OiBmYWxzZSB9KTtcclxuICAgIHRoaXMuX2luaXRpYWxpemUoKTtcclxuICB9XHJcbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xyXG4gICAgY2hhbmdlc1snZXhjbHVkZSddICYmICFjaGFuZ2VzWydleGNsdWRlJ10uZmlyc3RDaGFuZ2UgJiYgdGhpcy5faW5pdGlhbGl6ZSgpO1xyXG4gIH1cclxuICBwcml2YXRlIF9pbml0aWFsaXplKCkge1xyXG4gICAgY29uc3QgdmFsdWVzID0ge307XHJcbiAgICB0aGlzLmN1YmU/LmF4ZXM/LmZvckVhY2goYSA9PiB7XHJcbiAgICAgIGlmICghdGhpcy5zb3VyY2VzW2EubmFtZV0gJiYgYS5zZWxlY3Rpb25Nb2RlICE9PSAnUGF0dGVybicpIHtcclxuICAgICAgICB0aGlzLnNvdXJjZXNbYS5uYW1lXSA9IHRoaXMuX3NlcnZpY2UudmFsdWVzKHRoaXMuY3ViZS5uYW1lLCBhLm5hbWUpLnBpcGUobWFwKG1hcFRvQXJyYXkpKTtcclxuICAgICAgfVxyXG4gICAgICB2YWx1ZXNbYS5uYW1lXSA9IHRoaXMubW9kZWxbYS5uYW1lXSB8fCBudWxsO1xyXG4gICAgfSk7XHJcbiAgICB0aGlzLmZvcm0gJiYgdGhpcy5mb3JtLnBhdGNoVmFsdWUodmFsdWVzLCB7IGVtaXRFdmVudDogZmFsc2UgfSk7XHJcbiAgfVxyXG4gIC8qKiBmaWx0ZXIgY3RvciAqL1xyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgX3NlcnZpY2U6IEN1YmVTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfcmVmOiBEZXNpZ25lclJlZixcclxuICAgIHByaXZhdGUgcmVhZG9ubHkgX2ZiOiBGb3JtQnVpbGRlcikge1xyXG4gIH1cclxuICBkaXNwbGF5KGtleVZhbHVlKSB7XHJcbiAgICByZXR1cm4ga2V5VmFsdWUgPyBrZXlWYWx1ZS52YWx1ZSA6IG51bGw7XHJcbiAgfVxyXG4gIGNoYW5nZShheGlzOiBzdHJpbmcsIGV2dDogTWF0QXV0b2NvbXBsZXRlU2VsZWN0ZWRFdmVudCkge1xyXG4gICAgdGhpcy5mb3JtLmNvbnRyb2xzW2F4aXNdLnNldFZhbHVlKGV2dC5vcHRpb24udmFsdWUua2V5KTtcclxuICB9XHJcbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLl9kZXN0cm95Lm5leHQoKTtcclxuICAgIHRoaXMuX2Rlc3Ryb3kuY29tcGxldGUoKTtcclxuICB9XHJcbn1cclxuIiwiPGRpdiBbZm9ybUdyb3VwXT1cImZvcm1cIiBmeExheW91dD1cImNvbHVtblwiPlxyXG4gIDxtYXQtZm9ybS1maWVsZCAqbmdGb3I9XCJsZXQgYSBvZiBjdWJlLmF4ZXNcIiBbbmdTd2l0Y2hdPVwiYS5zZWxlY3Rpb25Nb2RlXCIgW2F0dHIuZGF0YS1oZWxwXT1cIidheGlzLScrYS5uYW1lXCI+XHJcbiAgICA8bmctY29udGFpbmVyICpuZ1N3aXRjaENhc2U9XCInUGF0dGVybidcIj5cclxuICAgICAgPGlucHV0IG1hdElucHV0IGF1dG9jb21wbGV0ZT1cIm9mZlwiXHJcbiAgICAgICAgICAgICBbcGF0dGVybl09XCJwYXR0ZXJuXCIgW2F1dG9mb2N1c11cclxuICAgICAgICAgICAgIFtmb3JtQ29udHJvbE5hbWVdPVwiYS5uYW1lXCIgW3BsYWNlaG9sZGVyXT1cImEudGl0bGV8fGEubmFtZVwiIC8+XHJcbiAgICAgIDxtYXQtZXJyb3IgKm5nSWY9XCJmb3JtLmNvbnRyb2xzW2EubmFtZV0uaW52YWxpZFwiPnt7J1NpbXBsZVBhdHRlcm5FcnInIHx0cmFuc2xhdGV9fTwvbWF0LWVycm9yPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8bmctY29udGFpbmVyICpuZ1N3aXRjaENhc2U9XCInU2VhcmNoJ1wiPlxyXG4gICAgICA8aW5wdXQgbWF0SW5wdXQgYXV0b2NvbXBsZXRlPVwib2ZmXCIgdHlwZT1cInNlYXJjaFwiXHJcbiAgICAgICAgICAgICBbbWF0QXV0b2NvbXBsZXRlXT1cInNlZ21lbnRcIiAjaW5wXHJcbiAgICAgICAgICAgICBbcGxhY2Vob2xkZXJdPVwiYS50aXRsZXx8YS5uYW1lXCIgLz5cclxuICAgICAgPG1hdC1hdXRvY29tcGxldGUgI3NlZ21lbnQgW2Rpc3BsYXlXaXRoXT1cImRpc3BsYXlcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAob3B0aW9uU2VsZWN0ZWQpPVwiY2hhbmdlKGEubmFtZSwgJGV2ZW50KVwiPlxyXG4gICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCByIG9mIHNvdXJjZXNbYS5uYW1lXSB8IGFzeW5jIHwgZmlsdGVyIDogJ3ZhbHVlJyA6IGlucC52YWx1ZSB8IHNsaWNlOjA6NTBcIiBbdmFsdWVdPVwiclwiPnt7ci52YWx1ZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICA8L21hdC1hdXRvY29tcGxldGU+XHJcbiAgICAgIDxidXR0b24gbWF0LWljb24tYnV0dG9uICpuZ0lmPVwiaW5wLnZhbHVlXCIgbWF0U3VmZml4IGFyaWEtbGFiZWw9XCJcIiAoY2xpY2spPVwiaW5wLnZhbHVlID0gJyc7IGZvcm0uY29udHJvbHNbYS5uYW1lXS5zZXRWYWx1ZShudWxsKVwiPjxtYXQtaWNvbj5jbG9zZTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgICAgIDxtYXQtZXJyb3IgKm5nSWY9XCJmb3JtLmNvbnRyb2xzW2EubmFtZV0uaW52YWxpZFwiPnt7J1NpbXBsZVBhdHRlcm5FcnInIHx0cmFuc2xhdGV9fTwvbWF0LWVycm9yPlxyXG4gICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8bWF0LXNlbGVjdCBbZm9ybUNvbnRyb2xOYW1lXT1cImEubmFtZVwiIFtwbGFjZWhvbGRlcl09XCJhLnRpdGxlfHxhLm5hbWVcIiBbbXVsdGlwbGVdPVwiYS5zZWxlY3Rpb25Nb2RlID09PSAnTXVsdGlwbGUnXCIgKm5nU3dpdGNoRGVmYXVsdD5cclxuICAgICAgPG1hdC1vcHRpb24gKm5nSWY9XCJhLnNlbGVjdGlvbk1vZGUgIT09ICdNdWx0aXBsZSdcIj57eydBbGwnIHwgdHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCByIG9mIHNvdXJjZXNbYS5uYW1lXSB8IGFzeW5jXCIgW3ZhbHVlXT1cInIua2V5XCI+e3tyLnZhbHVlfX08L21hdC1vcHRpb24+XHJcbiAgICA8L21hdC1zZWxlY3Q+XHJcbiAgPC9tYXQtZm9ybS1maWVsZD5cclxuPC9kaXY+XHJcbiJdfQ==
|