@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
@@ -7,20 +7,49 @@ import * as i4 from "@angular/material/list";
|
|
7
7
|
import * as i5 from "@angular/material/icon";
|
8
8
|
import * as i6 from "../core/popup/tooltip.directive";
|
9
9
|
import * as i7 from "../core/slots/router.directive";
|
10
|
+
const _c0 = function (a1) { return ["reports", a1]; };
|
11
|
+
function ReportsMenuComponent_mat_list_item_1_Template(rf, ctx) { if (rf & 1) {
|
12
|
+
const _r3 = i0.ɵɵgetCurrentView();
|
13
|
+
i0.ɵɵelementStart(0, "mat-list-item", 1);
|
14
|
+
i0.ɵɵlistener("click", function ReportsMenuComponent_mat_list_item_1_Template_mat_list_item_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.change.emit()); });
|
15
|
+
i0.ɵɵelementStart(1, "mat-icon", 2);
|
16
|
+
i0.ɵɵtext(2);
|
17
|
+
i0.ɵɵelementEnd();
|
18
|
+
i0.ɵɵelementStart(3, "span", 3);
|
19
|
+
i0.ɵɵtext(4);
|
20
|
+
i0.ɵɵelementEnd()();
|
21
|
+
} if (rf & 2) {
|
22
|
+
const r_r1 = ctx.$implicit;
|
23
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
24
|
+
i0.ɵɵproperty("slotRouterLink", i0.ɵɵpureFunction1(5, _c0, r_r1.name));
|
25
|
+
i0.ɵɵadvance(1);
|
26
|
+
i0.ɵɵproperty("bizdocTooltip", r_r1.title)("bizdocTooltipDisabled", !ctx_r0.collapsed);
|
27
|
+
i0.ɵɵadvance(1);
|
28
|
+
i0.ɵɵtextInterpolate(r_r1.icon);
|
29
|
+
i0.ɵɵadvance(2);
|
30
|
+
i0.ɵɵtextInterpolate(r_r1.title);
|
31
|
+
} }
|
10
32
|
export class ReportsMenuComponent {
|
11
33
|
constructor(session) {
|
12
34
|
this.change = new EventEmitter();
|
13
35
|
this.reports = session.profile.reports;
|
14
36
|
}
|
15
37
|
}
|
16
|
-
ReportsMenuComponent.ɵfac =
|
17
|
-
ReportsMenuComponent.ɵcmp = i0.ɵɵ
|
18
|
-
i0.ɵɵ
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
38
|
+
ReportsMenuComponent.ɵfac = function ReportsMenuComponent_Factory(t) { return new (t || ReportsMenuComponent)(i0.ɵɵdirectiveInject(i1.SessionService)); };
|
39
|
+
ReportsMenuComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReportsMenuComponent, selectors: [["bizdoc-reports-menu"]], inputs: { collapsed: "collapsed" }, outputs: { change: "change" }, decls: 2, vars: 1, consts: [["slotRouterLinkActive", "active", 3, "slotRouterLink", "click", 4, "ngFor", "ngForOf"], ["slotRouterLinkActive", "active", 3, "slotRouterLink", "click"], ["matListIcon", "", "bizdocTooltipPosition", "end", 3, "bizdocTooltip", "bizdocTooltipDisabled"], ["matLine", ""]], template: function ReportsMenuComponent_Template(rf, ctx) { if (rf & 1) {
|
40
|
+
i0.ɵɵelementStart(0, "mat-nav-list");
|
41
|
+
i0.ɵɵtemplate(1, ReportsMenuComponent_mat_list_item_1_Template, 5, 7, "mat-list-item", 0);
|
42
|
+
i0.ɵɵelementEnd();
|
43
|
+
} if (rf & 2) {
|
44
|
+
i0.ɵɵadvance(1);
|
45
|
+
i0.ɵɵproperty("ngForOf", ctx.reports);
|
46
|
+
} }, dependencies: [i2.NgForOf, i3.MatLine, i4.MatNavList, i4.MatListItem, i4.MatListIconCssMatStyler, i5.MatIcon, i6.TooltipDirective, i7.SlotRouterDirective], encapsulation: 2, data: { animation: [] } });
|
47
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReportsMenuComponent, [{
|
48
|
+
type: Component,
|
49
|
+
args: [{ selector: 'bizdoc-reports-menu', animations: [], template: "<!--<span class=\"mat-subheader\">BizDoc</span>\r\n<h1 class=\"mat-display-1\">{{'Reports' | translate}}</h1>-->\r\n\r\n<mat-nav-list>\r\n <mat-list-item *ngFor=\"let r of reports\" (click)=\"change.emit()\" [slotRouterLink]='[\"reports\", r.name]' slotRouterLinkActive=\"active\">\r\n <mat-icon matListIcon [bizdocTooltip]=\"r.title\" bizdocTooltipPosition=\"end\" [bizdocTooltipDisabled]=\"!collapsed\">{{r.icon}}</mat-icon>\r\n <span matLine>{{r.title}}</span>\r\n </mat-list-item>\r\n</mat-nav-list>\r\n" }]
|
50
|
+
}], function () { return [{ type: i1.SessionService }]; }, { collapsed: [{
|
51
|
+
type: Input
|
52
|
+
}], change: [{
|
53
|
+
type: Output
|
54
|
+
}] }); })();
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwb3J0cy1tZW51LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvcmVwb3J0cy9yZXBvcnRzLW1lbnUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9yZXBvcnRzL3JlcG9ydHMtbWVudS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7Ozs7Ozs7Ozs7SUNJckUsd0NBQXNJO0lBQTdGLGtMQUFTLGVBQUEsb0JBQWEsQ0FBQSxJQUFDO0lBQzlELG1DQUFpSDtJQUFBLFlBQVU7SUFBQSxpQkFBVztJQUN0SSwrQkFBYztJQUFBLFlBQVc7SUFBQSxpQkFBTyxFQUFBOzs7O0lBRitCLHNFQUFzQztJQUMvRSxlQUF5QjtJQUF6QiwwQ0FBeUIsNENBQUE7SUFBa0UsZUFBVTtJQUFWLCtCQUFVO0lBQzdHLGVBQVc7SUFBWCxnQ0FBVzs7QURJN0IsTUFBTSxPQUNFLG9CQUFvQjtJQUkxQixZQUFZLE9BQXVCO1FBRmhCLFdBQU0sR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO1FBRzdDLElBQUksQ0FBQyxPQUFPLEdBQUcsT0FBTyxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUM7SUFFekMsQ0FBQzs7d0ZBUEssb0JBQW9CO3VFQUFwQixvQkFBb0I7UUNSNUIsb0NBQWM7UUFDWix5RkFHZ0I7UUFDbEIsaUJBQWU7O1FBSmdCLGVBQVU7UUFBVixxQ0FBVTswTURJM0IsRUFBRTt1RkFHUixvQkFBb0I7Y0FOM0IsU0FBUzsyQkFDRSxxQkFBcUIsY0FFbkIsRUFBRTtpRUFJTCxTQUFTO2tCQUFqQixLQUFLO1lBQ2EsTUFBTTtrQkFBeEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFJlcG9ydCB9IGZyb20gJy4uL2NvcmUvbW9kZWxzJztcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tICcuLi9jb3JlL3Nlc3Npb24uc2VydmljZSc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdiaXpkb2MtcmVwb3J0cy1tZW51JyxcclxuICB0ZW1wbGF0ZVVybDogJy4vcmVwb3J0cy1tZW51LmNvbXBvbmVudC5odG1sJyxcclxuICBhbmltYXRpb25zOiBbXVxyXG59KVxyXG5leHBvcnRcclxuICBjbGFzcyBSZXBvcnRzTWVudUNvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgY29sbGFwc2VkOiBib29sZWFuO1xyXG4gIEBPdXRwdXQoKSByZWFkb25seSBjaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcbiAgcmVhZG9ubHkgcmVwb3J0czogUmVwb3J0W107XHJcbiAgY29uc3RydWN0b3Ioc2Vzc2lvbjogU2Vzc2lvblNlcnZpY2UpIHtcclxuICAgIHRoaXMucmVwb3J0cyA9IHNlc3Npb24ucHJvZmlsZS5yZXBvcnRzO1xyXG5cclxuICB9XHJcbn1cclxuIiwiPCEtLTxzcGFuIGNsYXNzPVwibWF0LXN1YmhlYWRlclwiPkJpekRvYzwvc3Bhbj5cclxuPGgxIGNsYXNzPVwibWF0LWRpc3BsYXktMVwiPnt7J1JlcG9ydHMnIHwgdHJhbnNsYXRlfX08L2gxPi0tPlxyXG5cclxuPG1hdC1uYXYtbGlzdD5cclxuICA8bWF0LWxpc3QtaXRlbSAqbmdGb3I9XCJsZXQgciBvZiByZXBvcnRzXCIgKGNsaWNrKT1cImNoYW5nZS5lbWl0KClcIiBbc2xvdFJvdXRlckxpbmtdPSdbXCJyZXBvcnRzXCIsIHIubmFtZV0nIHNsb3RSb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCI+XHJcbiAgICA8bWF0LWljb24gbWF0TGlzdEljb24gW2JpemRvY1Rvb2x0aXBdPVwici50aXRsZVwiIGJpemRvY1Rvb2x0aXBQb3NpdGlvbj1cImVuZFwiIFtiaXpkb2NUb29sdGlwRGlzYWJsZWRdPVwiIWNvbGxhcHNlZFwiPnt7ci5pY29ufX08L21hdC1pY29uPlxyXG4gICAgPHNwYW4gbWF0TGluZT57e3IudGl0bGV9fTwvc3Bhbj5cclxuICA8L21hdC1saXN0LWl0ZW0+XHJcbjwvbWF0LW5hdi1saXN0PlxyXG4iXX0=
|
@@ -13,6 +13,117 @@ import * as i5 from "../../core/pipes/time-ago.pipe";
|
|
13
13
|
import * as i6 from "../../core/pipes/translate.pipe";
|
14
14
|
import * as i7 from "../../core/pipes/state.pipe";
|
15
15
|
import * as i8 from "../../core/pipes/action.pipe";
|
16
|
+
function SubstitutionComponent_th_2_Template(rf, ctx) { if (rf & 1) {
|
17
|
+
i0.ɵɵelementStart(0, "th", 10);
|
18
|
+
i0.ɵɵtext(1);
|
19
|
+
i0.ɵɵpipe(2, "translate");
|
20
|
+
i0.ɵɵelementEnd();
|
21
|
+
} if (rf & 2) {
|
22
|
+
i0.ɵɵadvance(1);
|
23
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Number"));
|
24
|
+
} }
|
25
|
+
function SubstitutionComponent_td_3_Template(rf, ctx) { if (rf & 1) {
|
26
|
+
i0.ɵɵelementStart(0, "td", 11);
|
27
|
+
i0.ɵɵtext(1);
|
28
|
+
i0.ɵɵelementEnd();
|
29
|
+
} if (rf & 2) {
|
30
|
+
const element_r12 = ctx.$implicit;
|
31
|
+
i0.ɵɵadvance(1);
|
32
|
+
i0.ɵɵtextInterpolate1(" ", element_r12.number, " ");
|
33
|
+
} }
|
34
|
+
function SubstitutionComponent_th_5_Template(rf, ctx) { if (rf & 1) {
|
35
|
+
i0.ɵɵelementStart(0, "th", 10);
|
36
|
+
i0.ɵɵtext(1);
|
37
|
+
i0.ɵɵpipe(2, "translate");
|
38
|
+
i0.ɵɵelementEnd();
|
39
|
+
} if (rf & 2) {
|
40
|
+
i0.ɵɵadvance(1);
|
41
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Who"));
|
42
|
+
} }
|
43
|
+
function SubstitutionComponent_td_6_Template(rf, ctx) { if (rf & 1) {
|
44
|
+
i0.ɵɵelementStart(0, "td", 11);
|
45
|
+
i0.ɵɵelement(1, "bizdoc-identity-name", 12);
|
46
|
+
i0.ɵɵelementEnd();
|
47
|
+
} if (rf & 2) {
|
48
|
+
const element_r13 = ctx.$implicit;
|
49
|
+
i0.ɵɵadvance(1);
|
50
|
+
i0.ɵɵproperty("identity", element_r13.substituteId)("by", element_r13.byId);
|
51
|
+
} }
|
52
|
+
function SubstitutionComponent_th_8_Template(rf, ctx) { if (rf & 1) {
|
53
|
+
i0.ɵɵelementStart(0, "th", 10);
|
54
|
+
i0.ɵɵtext(1);
|
55
|
+
i0.ɵɵpipe(2, "translate");
|
56
|
+
i0.ɵɵelementEnd();
|
57
|
+
} if (rf & 2) {
|
58
|
+
i0.ɵɵadvance(1);
|
59
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Action"));
|
60
|
+
} }
|
61
|
+
function SubstitutionComponent_td_9_span_1_Template(rf, ctx) { if (rf & 1) {
|
62
|
+
i0.ɵɵelementStart(0, "span");
|
63
|
+
i0.ɵɵtext(1);
|
64
|
+
i0.ɵɵpipe(2, "action");
|
65
|
+
i0.ɵɵpipe(3, "amTimeAgo");
|
66
|
+
i0.ɵɵelementEnd();
|
67
|
+
} if (rf & 2) {
|
68
|
+
const element_r14 = i0.ɵɵnextContext().$implicit;
|
69
|
+
i0.ɵɵadvance(1);
|
70
|
+
i0.ɵɵtextInterpolate2("", i0.ɵɵpipeBind2(2, 2, element_r14.actionId, "past"), " ", i0.ɵɵpipeBind1(3, 5, element_r14.replied), "");
|
71
|
+
} }
|
72
|
+
function SubstitutionComponent_td_9_Template(rf, ctx) { if (rf & 1) {
|
73
|
+
i0.ɵɵelementStart(0, "td", 11);
|
74
|
+
i0.ɵɵtemplate(1, SubstitutionComponent_td_9_span_1_Template, 4, 7, "span", 13);
|
75
|
+
i0.ɵɵelementEnd();
|
76
|
+
} if (rf & 2) {
|
77
|
+
const element_r14 = ctx.$implicit;
|
78
|
+
i0.ɵɵadvance(1);
|
79
|
+
i0.ɵɵproperty("ngIf", element_r14.action);
|
80
|
+
} }
|
81
|
+
function SubstitutionComponent_th_11_Template(rf, ctx) { if (rf & 1) {
|
82
|
+
i0.ɵɵelementStart(0, "th", 10);
|
83
|
+
i0.ɵɵtext(1);
|
84
|
+
i0.ɵɵpipe(2, "translate");
|
85
|
+
i0.ɵɵelementEnd();
|
86
|
+
} if (rf & 2) {
|
87
|
+
i0.ɵɵadvance(1);
|
88
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(2, 1, "Status"));
|
89
|
+
} }
|
90
|
+
function SubstitutionComponent_td_12_Template(rf, ctx) { if (rf & 1) {
|
91
|
+
i0.ɵɵelementStart(0, "td", 11);
|
92
|
+
i0.ɵɵtext(1);
|
93
|
+
i0.ɵɵpipe(2, "state");
|
94
|
+
i0.ɵɵelementEnd();
|
95
|
+
} if (rf & 2) {
|
96
|
+
const element_r17 = ctx.$implicit;
|
97
|
+
i0.ɵɵadvance(1);
|
98
|
+
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind1(2, 1, element_r17.stateId), " ");
|
99
|
+
} }
|
100
|
+
function SubstitutionComponent_th_14_Template(rf, ctx) { if (rf & 1) {
|
101
|
+
i0.ɵɵelementStart(0, "th", 10);
|
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, "Value"));
|
108
|
+
} }
|
109
|
+
function SubstitutionComponent_td_15_Template(rf, ctx) { if (rf & 1) {
|
110
|
+
i0.ɵɵelementStart(0, "td", 11);
|
111
|
+
i0.ɵɵtext(1);
|
112
|
+
i0.ɵɵelementEnd();
|
113
|
+
} if (rf & 2) {
|
114
|
+
const element_r18 = ctx.$implicit;
|
115
|
+
i0.ɵɵadvance(1);
|
116
|
+
i0.ɵɵtextInterpolate1(" ", element_r18.value, " ");
|
117
|
+
} }
|
118
|
+
function SubstitutionComponent_tr_16_Template(rf, ctx) { if (rf & 1) {
|
119
|
+
i0.ɵɵelement(0, "tr", 14);
|
120
|
+
} }
|
121
|
+
function SubstitutionComponent_tr_17_Template(rf, ctx) { if (rf & 1) {
|
122
|
+
i0.ɵɵelement(0, "tr", 15);
|
123
|
+
} if (rf & 2) {
|
124
|
+
const ctx_r11 = i0.ɵɵnextContext();
|
125
|
+
i0.ɵɵproperty("@item", ctx_r11.dataSource.data.length);
|
126
|
+
} }
|
16
127
|
let SubstitutionComponent = class SubstitutionComponent {
|
17
128
|
constructor() {
|
18
129
|
this.displayColumns = ['number', 'substituteId', 'action', 'state'];
|
@@ -22,19 +133,55 @@ let SubstitutionComponent = class SubstitutionComponent {
|
|
22
133
|
this.dataSource.sort = this.sort;
|
23
134
|
}
|
24
135
|
};
|
25
|
-
SubstitutionComponent.ɵfac =
|
26
|
-
SubstitutionComponent.ɵcmp = i0.ɵɵ
|
136
|
+
SubstitutionComponent.ɵfac = function SubstitutionComponent_Factory(t) { return new (t || SubstitutionComponent)(); };
|
137
|
+
SubstitutionComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SubstitutionComponent, selectors: [["ng-component"]], viewQuery: function SubstitutionComponent_Query(rf, ctx) { if (rf & 1) {
|
138
|
+
i0.ɵɵviewQuery(MatSort, 7);
|
139
|
+
} if (rf & 2) {
|
140
|
+
let _t;
|
141
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sort = _t.first);
|
142
|
+
} }, decls: 18, vars: 4, consts: [["mat-table", "", "matSort", "", 2, "width", "100%", 3, "dataSource"], ["matColumnDef", "number"], ["mat-header-cell", "", "mat-sort-header", "", 4, "matHeaderCellDef"], ["mat-cell", "", 4, "matCellDef"], ["matColumnDef", "substituteId"], ["matColumnDef", "action"], ["matColumnDef", "state"], ["matColumnDef", "value"], ["mat-header-row", "", 4, "matHeaderRowDef"], ["mat-row", "", 4, "matRowDef", "matRowDefColumns"], ["mat-header-cell", "", "mat-sort-header", ""], ["mat-cell", ""], [3, "identity", "by"], [4, "ngIf"], ["mat-header-row", ""], ["mat-row", ""]], template: function SubstitutionComponent_Template(rf, ctx) { if (rf & 1) {
|
143
|
+
i0.ɵɵelementStart(0, "table", 0);
|
144
|
+
i0.ɵɵelementContainerStart(1, 1);
|
145
|
+
i0.ɵɵtemplate(2, SubstitutionComponent_th_2_Template, 3, 3, "th", 2);
|
146
|
+
i0.ɵɵtemplate(3, SubstitutionComponent_td_3_Template, 2, 1, "td", 3);
|
147
|
+
i0.ɵɵelementContainerEnd();
|
148
|
+
i0.ɵɵelementContainerStart(4, 4);
|
149
|
+
i0.ɵɵtemplate(5, SubstitutionComponent_th_5_Template, 3, 3, "th", 2);
|
150
|
+
i0.ɵɵtemplate(6, SubstitutionComponent_td_6_Template, 2, 2, "td", 3);
|
151
|
+
i0.ɵɵelementContainerEnd();
|
152
|
+
i0.ɵɵelementContainerStart(7, 5);
|
153
|
+
i0.ɵɵtemplate(8, SubstitutionComponent_th_8_Template, 3, 3, "th", 2);
|
154
|
+
i0.ɵɵtemplate(9, SubstitutionComponent_td_9_Template, 2, 1, "td", 3);
|
155
|
+
i0.ɵɵelementContainerEnd();
|
156
|
+
i0.ɵɵelementContainerStart(10, 6);
|
157
|
+
i0.ɵɵtemplate(11, SubstitutionComponent_th_11_Template, 3, 3, "th", 2);
|
158
|
+
i0.ɵɵtemplate(12, SubstitutionComponent_td_12_Template, 3, 3, "td", 3);
|
159
|
+
i0.ɵɵelementContainerEnd();
|
160
|
+
i0.ɵɵelementContainerStart(13, 7);
|
161
|
+
i0.ɵɵtemplate(14, SubstitutionComponent_th_14_Template, 3, 3, "th", 2);
|
162
|
+
i0.ɵɵtemplate(15, SubstitutionComponent_td_15_Template, 2, 1, "td", 3);
|
163
|
+
i0.ɵɵelementContainerEnd();
|
164
|
+
i0.ɵɵtemplate(16, SubstitutionComponent_tr_16_Template, 1, 0, "tr", 8);
|
165
|
+
i0.ɵɵtemplate(17, SubstitutionComponent_tr_17_Template, 1, 1, "tr", 9);
|
166
|
+
i0.ɵɵelementEnd();
|
167
|
+
} if (rf & 2) {
|
168
|
+
i0.ɵɵproperty("dataSource", ctx.dataSource)("@list", undefined);
|
169
|
+
i0.ɵɵadvance(16);
|
170
|
+
i0.ɵɵproperty("matHeaderRowDef", ctx.displayColumns);
|
171
|
+
i0.ɵɵadvance(1);
|
172
|
+
i0.ɵɵproperty("matRowDefColumns", ctx.displayColumns);
|
173
|
+
} }, dependencies: [i1.NgIf, i2.MatTable, i2.MatHeaderCellDef, i2.MatHeaderRowDef, i2.MatColumnDef, i2.MatCellDef, i2.MatRowDef, i2.MatHeaderCell, i2.MatCell, i2.MatHeaderRow, i2.MatRow, i3.MatSort, i3.MatSortHeader, i4.IdentityName, i5.TimeAgoPipe, i6.TranslatePipe, i7.StatePipe, i8.ActionPipe], encapsulation: 2, data: { animation: [listAnimation] } });
|
27
174
|
SubstitutionComponent = __decorate([
|
28
175
|
BizDoc({
|
29
176
|
selector: 'bizdoc-substitution'
|
30
177
|
})
|
31
178
|
], SubstitutionComponent);
|
32
179
|
export { SubstitutionComponent };
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
//# sourceMappingURL=data:application/json;base64,
|
180
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubstitutionComponent, [{
|
181
|
+
type: Component,
|
182
|
+
args: [{ animations: [listAnimation], template: "<table mat-table matSort [dataSource]=\"dataSource\" style=\"width: 100%\" @list>\r\n <ng-container matColumnDef=\"number\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Number' | translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element.number}} </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"substituteId\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{ 'Who' | translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\">\r\n <bizdoc-identity-name [identity]=\"element.substituteId\" [by]=\"element.byId\"></bizdoc-identity-name>\r\n </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"action\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Action' | translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> <span *ngIf=\"element.action\">{{element.actionId | action : 'past'}} {{element.replied | amTimeAgo}}</span></td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"state\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Status' | translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element.stateId | state}} </td>\r\n </ng-container>\r\n <ng-container matColumnDef=\"value\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{'Value' | translate}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element.value}} </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"displayColumns\"></tr>\r\n <tr mat-row [@item]=\"dataSource.data.length\" *matRowDef=\"let element; columns: displayColumns;\"></tr>\r\n</table>\r\n" }]
|
183
|
+
}], null, { sort: [{
|
184
|
+
type: ViewChild,
|
185
|
+
args: [MatSort, { static: true }]
|
186
|
+
}] }); })();
|
187
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Vic3RpdHV0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvcmVwb3J0cy9zdWJzdGl0dXRpb24vc3Vic3RpdHV0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvcmVwb3J0cy9zdWJzdGl0dXRpb24vc3Vic3RpdHV0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVyRCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDL0MsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzdELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7Ozs7Ozs7Ozs7SUNIbEQsOEJBQXNEO0lBQUEsWUFBd0I7O0lBQUEsaUJBQUs7O0lBQTdCLGVBQXdCO0lBQXhCLG9EQUF3Qjs7O0lBQzlFLDhCQUF1QztJQUFDLFlBQW1CO0lBQUEsaUJBQUs7OztJQUF4QixlQUFtQjtJQUFuQixtREFBbUI7OztJQUczRCw4QkFBc0Q7SUFBQSxZQUFzQjs7SUFBQSxpQkFBSzs7SUFBM0IsZUFBc0I7SUFBdEIsaURBQXNCOzs7SUFDNUUsOEJBQXVDO0lBQ25DLDJDQUFtRztJQUN2RyxpQkFBSzs7O0lBRHFCLGVBQWlDO0lBQWpDLG1EQUFpQyx3QkFBQTs7O0lBSTNELDhCQUFzRDtJQUFBLFlBQXdCOztJQUFBLGlCQUFLOztJQUE3QixlQUF3QjtJQUF4QixvREFBd0I7OztJQUN0Qyw0QkFBNkI7SUFBQSxZQUFzRTs7O0lBQUEsaUJBQU87OztJQUE3RSxlQUFzRTtJQUF0RSxpSUFBc0U7OztJQUEzSSw4QkFBdUM7SUFBQyw4RUFBMEc7SUFBQSxpQkFBSzs7O0lBQXhHLGVBQW9CO0lBQXBCLHlDQUFvQjs7O0lBR25FLDhCQUFzRDtJQUFBLFlBQXdCOztJQUFBLGlCQUFLOztJQUE3QixlQUF3QjtJQUF4QixvREFBd0I7OztJQUM5RSw4QkFBdUM7SUFBQyxZQUE0Qjs7SUFBQSxpQkFBSzs7O0lBQWpDLGVBQTRCO0lBQTVCLDBFQUE0Qjs7O0lBR3BFLDhCQUFzRDtJQUFBLFlBQXVCOztJQUFBLGlCQUFLOztJQUE1QixlQUF1QjtJQUF2QixtREFBdUI7OztJQUM3RSw4QkFBdUM7SUFBQyxZQUFrQjtJQUFBLGlCQUFLOzs7SUFBdkIsZUFBa0I7SUFBbEIsa0RBQWtCOzs7SUFFNUQseUJBQTBEOzs7SUFDMUQseUJBQXFHOzs7SUFBekYsc0RBQWdDOztJRFR0QyxxQkFBcUIsU0FBckIscUJBQXFCOztRQUNsQixtQkFBYyxHQUFHLENBQUMsUUFBUSxFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsT0FBTyxDQUFDLENBQUM7S0FPekU7SUFKQyxNQUFNLENBQUMsTUFBVztRQUNoQixJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksa0JBQWtCLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDakQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQztJQUNuQyxDQUFDO0NBQ0YsQ0FBQTswRkFSTyxxQkFBcUI7d0VBQXJCLHFCQUFxQjt1QkFFaEIsT0FBTzs7Ozs7UUNqQnBCLGdDQUE2RTtRQUMzRSxnQ0FBb0M7UUFDbEMsb0VBQW1GO1FBQ25GLG9FQUFnRTtRQUNsRSwwQkFBZTtRQUNmLGdDQUEwQztRQUN4QyxvRUFBaUY7UUFDakYsb0VBRUs7UUFDUCwwQkFBZTtRQUNmLGdDQUFvQztRQUNsQyxvRUFBbUY7UUFDbkYsb0VBQXVKO1FBQ3pKLDBCQUFlO1FBQ2YsaUNBQW1DO1FBQ2pDLHNFQUFtRjtRQUNuRixzRUFBeUU7UUFDM0UsMEJBQWU7UUFDZixpQ0FBbUM7UUFDakMsc0VBQWtGO1FBQ2xGLHNFQUErRDtRQUNqRSwwQkFBZTtRQUNmLHNFQUEwRDtRQUMxRCxzRUFBcUc7UUFDdkcsaUJBQVE7O1FBekJpQiwyQ0FBeUIsb0JBQUE7UUF1QjVCLGdCQUErQjtRQUEvQixvREFBK0I7UUFDbUIsZUFBd0I7UUFBeEIscURBQXdCO21WRGZsRixDQUFDLGFBQWEsQ0FBQztBQU1yQixxQkFBcUI7SUFKNUIsTUFBTSxDQUFDO1FBQ04sUUFBUSxFQUFFLHFCQUFxQjtLQUNoQyxDQUFDO0dBRU0scUJBQXFCLENBUTVCO1NBUk8scUJBQXFCO3VGQUFyQixxQkFBcUI7Y0FSNUIsU0FBUzs2QkFFSSxDQUFDLGFBQWEsQ0FBQztnQkFRVyxJQUFJO2tCQUF6QyxTQUFTO21CQUFDLE9BQU8sRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdDaGlsZCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IFJlcG9ydENvbXBvbmVudCB9IGZyb20gXCIuLi8uLi9jb3JlL2Jhc2VcIjtcclxuaW1wb3J0IHsgQml6RG9jIH0gZnJvbSBcIi4uLy4uL2NvcmUvZGVjb3JhdG9yc1wiO1xyXG5pbXBvcnQgeyBNYXRTb3J0IH0gZnJvbSBcIkBhbmd1bGFyL21hdGVyaWFsL3NvcnRcIjtcclxuaW1wb3J0IHsgTWF0VGFibGVEYXRhU291cmNlIH0gZnJvbSBcIkBhbmd1bGFyL21hdGVyaWFsL3RhYmxlXCI7XHJcbmltcG9ydCB7IGxpc3RBbmltYXRpb24gfSBmcm9tIFwiLi4vLi4vY29yZS9hbmltYXRpb25zXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZVVybDogJ3N1YnN0aXR1dGlvbi5jb21wb25lbnQuaHRtbCcsXHJcbiAgYW5pbWF0aW9uczogW2xpc3RBbmltYXRpb25dXHJcbn0pXHJcbkBCaXpEb2Moe1xyXG4gIHNlbGVjdG9yOiAnYml6ZG9jLXN1YnN0aXR1dGlvbidcclxufSlcclxuZXhwb3J0XHJcbiAgY2xhc3MgU3Vic3RpdHV0aW9uQ29tcG9uZW50IGltcGxlbWVudHMgUmVwb3J0Q29tcG9uZW50PEl0ZW0sIGFueT4ge1xyXG4gIHJlYWRvbmx5IGRpc3BsYXlDb2x1bW5zID0gWydudW1iZXInLCAnc3Vic3RpdHV0ZUlkJywgJ2FjdGlvbicsICdzdGF0ZSddO1xyXG4gIEBWaWV3Q2hpbGQoTWF0U29ydCwgeyBzdGF0aWM6IHRydWUgfSkgc29ydDogTWF0U29ydDtcclxuICBkYXRhU291cmNlOiBNYXRUYWJsZURhdGFTb3VyY2U8YW55PjtcclxuICBvbkJpbmQocmVzdWx0OiBhbnkpIHtcclxuICAgIHRoaXMuZGF0YVNvdXJjZSA9IG5ldyBNYXRUYWJsZURhdGFTb3VyY2UocmVzdWx0KTtcclxuICAgIHRoaXMuZGF0YVNvdXJjZS5zb3J0ID0gdGhpcy5zb3J0O1xyXG4gIH1cclxufVxyXG5pbnRlcmZhY2UgSXRlbSB7XHJcbiAgbnVtYmVyOiBzdHJpbmc7XHJcbiAgc3Vic3RpdHV0ZUlkOiBzdHJpbmc7XHJcbiAgdmFsdWU/OiBudW1iZXI7XHJcbiAgcmVwbGllZD86IERhdGU7XHJcbiAgc3ViamVjdD86IHN0cmluZztcclxuICBhY3Rpb24/OiBzdHJpbmc7XHJcbiAgc3RhdGU6IHN0cmluZztcclxuICBieUlkPzogc3RyaW5nO1xyXG59XHJcbiIsIjx0YWJsZSBtYXQtdGFibGUgbWF0U29ydCBbZGF0YVNvdXJjZV09XCJkYXRhU291cmNlXCIgc3R5bGU9XCJ3aWR0aDogMTAwJVwiIEBsaXN0PlxyXG4gIDxuZy1jb250YWluZXIgbWF0Q29sdW1uRGVmPVwibnVtYmVyXCI+XHJcbiAgICA8dGggbWF0LWhlYWRlci1jZWxsICptYXRIZWFkZXJDZWxsRGVmIG1hdC1zb3J0LWhlYWRlcj57eydOdW1iZXInIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj4ge3tlbGVtZW50Lm51bWJlcn19IDwvdGQ+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbiAgPG5nLWNvbnRhaW5lciBtYXRDb2x1bW5EZWY9XCJzdWJzdGl0dXRlSWRcIj5cclxuICAgIDx0aCBtYXQtaGVhZGVyLWNlbGwgKm1hdEhlYWRlckNlbGxEZWYgbWF0LXNvcnQtaGVhZGVyPnt7ICdXaG8nIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj5cclxuICAgICAgICA8Yml6ZG9jLWlkZW50aXR5LW5hbWUgW2lkZW50aXR5XT1cImVsZW1lbnQuc3Vic3RpdHV0ZUlkXCIgW2J5XT1cImVsZW1lbnQuYnlJZFwiPjwvYml6ZG9jLWlkZW50aXR5LW5hbWU+XHJcbiAgICA8L3RkPlxyXG4gIDwvbmctY29udGFpbmVyPlxyXG4gIDxuZy1jb250YWluZXIgbWF0Q29sdW1uRGVmPVwiYWN0aW9uXCI+XHJcbiAgICA8dGggbWF0LWhlYWRlci1jZWxsICptYXRIZWFkZXJDZWxsRGVmIG1hdC1zb3J0LWhlYWRlcj57eydBY3Rpb24nIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj4gPHNwYW4gKm5nSWY9XCJlbGVtZW50LmFjdGlvblwiPnt7ZWxlbWVudC5hY3Rpb25JZCB8IGFjdGlvbiA6ICdwYXN0J319IHt7ZWxlbWVudC5yZXBsaWVkIHwgYW1UaW1lQWdvfX08L3NwYW4+PC90ZD5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuICA8bmctY29udGFpbmVyIG1hdENvbHVtbkRlZj1cInN0YXRlXCI+XHJcbiAgICA8dGggbWF0LWhlYWRlci1jZWxsICptYXRIZWFkZXJDZWxsRGVmIG1hdC1zb3J0LWhlYWRlcj57eydTdGF0dXMnIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj4ge3tlbGVtZW50LnN0YXRlSWQgfCBzdGF0ZX19IDwvdGQ+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbiAgPG5nLWNvbnRhaW5lciBtYXRDb2x1bW5EZWY9XCJ2YWx1ZVwiPlxyXG4gICAgPHRoIG1hdC1oZWFkZXItY2VsbCAqbWF0SGVhZGVyQ2VsbERlZiBtYXQtc29ydC1oZWFkZXI+e3snVmFsdWUnIHwgdHJhbnNsYXRlfX08L3RoPlxyXG4gICAgPHRkIG1hdC1jZWxsICptYXRDZWxsRGVmPVwibGV0IGVsZW1lbnRcIj4ge3tlbGVtZW50LnZhbHVlfX0gPC90ZD5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuICA8dHIgbWF0LWhlYWRlci1yb3cgKm1hdEhlYWRlclJvd0RlZj1cImRpc3BsYXlDb2x1bW5zXCI+PC90cj5cclxuICA8dHIgbWF0LXJvdyBbQGl0ZW1dPVwiZGF0YVNvdXJjZS5kYXRhLmxlbmd0aFwiICptYXRSb3dEZWY9XCJsZXQgZWxlbWVudDsgY29sdW1uczogZGlzcGxheUNvbHVtbnM7XCI+PC90cj5cclxuPC90YWJsZT5cclxuIl19
|
@@ -6,6 +6,45 @@ import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@angular/common";
|
7
7
|
import * as i2 from "@angular/material/table";
|
8
8
|
import * as i3 from "@angular/material/sort";
|
9
|
+
function TableViewComponent_ng_container_1_th_1_Template(rf, ctx) { if (rf & 1) {
|
10
|
+
i0.ɵɵelementStart(0, "th", 7);
|
11
|
+
i0.ɵɵtext(1);
|
12
|
+
i0.ɵɵelementEnd();
|
13
|
+
} if (rf & 2) {
|
14
|
+
const c_r3 = i0.ɵɵnextContext().$implicit;
|
15
|
+
i0.ɵɵadvance(1);
|
16
|
+
i0.ɵɵtextInterpolate(c_r3.label || c_r3.name);
|
17
|
+
} }
|
18
|
+
function TableViewComponent_ng_container_1_td_2_Template(rf, ctx) { if (rf & 1) {
|
19
|
+
i0.ɵɵelementStart(0, "td", 8);
|
20
|
+
i0.ɵɵtext(1);
|
21
|
+
i0.ɵɵelementEnd();
|
22
|
+
} if (rf & 2) {
|
23
|
+
const element_r7 = ctx.$implicit;
|
24
|
+
const c_r3 = i0.ɵɵnextContext().$implicit;
|
25
|
+
i0.ɵɵadvance(1);
|
26
|
+
i0.ɵɵtextInterpolate1(" ", element_r7[c_r3.name], " ");
|
27
|
+
} }
|
28
|
+
function TableViewComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
29
|
+
i0.ɵɵelementContainerStart(0, 4);
|
30
|
+
i0.ɵɵtemplate(1, TableViewComponent_ng_container_1_th_1_Template, 2, 1, "th", 5);
|
31
|
+
i0.ɵɵtemplate(2, TableViewComponent_ng_container_1_td_2_Template, 2, 1, "td", 6);
|
32
|
+
i0.ɵɵelementContainerEnd();
|
33
|
+
} if (rf & 2) {
|
34
|
+
const c_r3 = ctx.$implicit;
|
35
|
+
i0.ɵɵproperty("matColumnDef", c_r3.name);
|
36
|
+
} }
|
37
|
+
function TableViewComponent_tr_2_Template(rf, ctx) { if (rf & 1) {
|
38
|
+
i0.ɵɵelement(0, "tr", 9);
|
39
|
+
} }
|
40
|
+
function TableViewComponent_tr_3_Template(rf, ctx) { if (rf & 1) {
|
41
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
42
|
+
i0.ɵɵelementStart(0, "tr", 10);
|
43
|
+
i0.ɵɵlistener("click", function TableViewComponent_tr_3_Template_tr_click_0_listener() { const restoredCtx = i0.ɵɵrestoreView(_r11); const element_r9 = restoredCtx.$implicit; const ctx_r10 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r10.rowClick(element_r9)); });
|
44
|
+
i0.ɵɵelementEnd();
|
45
|
+
} if (rf & 2) {
|
46
|
+
i0.ɵɵproperty("@item", undefined);
|
47
|
+
} }
|
9
48
|
/** table-view component*/
|
10
49
|
export class TableViewComponent {
|
11
50
|
constructor() {
|
@@ -23,19 +62,38 @@ export class TableViewComponent {
|
|
23
62
|
this.itemClick.emit(item);
|
24
63
|
}
|
25
64
|
}
|
26
|
-
TableViewComponent.ɵfac =
|
27
|
-
TableViewComponent.ɵcmp = i0.ɵɵ
|
28
|
-
i0.ɵɵ
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
65
|
+
TableViewComponent.ɵfac = function TableViewComponent_Factory(t) { return new (t || TableViewComponent)(); };
|
66
|
+
TableViewComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TableViewComponent, selectors: [["bizdoc-table-view"]], viewQuery: function TableViewComponent_Query(rf, ctx) { if (rf & 1) {
|
67
|
+
i0.ɵɵviewQuery(MatSort, 7);
|
68
|
+
} if (rf & 2) {
|
69
|
+
let _t;
|
70
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.sort = _t.first);
|
71
|
+
} }, inputs: { columns: "columns", selectable: "selectable" }, outputs: { itemClick: "itemClick" }, decls: 4, vars: 5, consts: [["mat-table", "", "matSort", "", 3, "dataSource"], [3, "matColumnDef", 4, "ngFor", "ngForOf"], ["mat-header-row", "", 4, "matHeaderRowDef"], ["mat-row", "", 3, "click", 4, "matRowDef", "matRowDefColumns"], [3, "matColumnDef"], ["mat-header-cell", "", "mat-sort-header", "", 4, "matHeaderCellDef"], ["mat-cell", "", 4, "matCellDef"], ["mat-header-cell", "", "mat-sort-header", ""], ["mat-cell", ""], ["mat-header-row", ""], ["mat-row", "", 3, "click"]], template: function TableViewComponent_Template(rf, ctx) { if (rf & 1) {
|
72
|
+
i0.ɵɵelementStart(0, "table", 0);
|
73
|
+
i0.ɵɵtemplate(1, TableViewComponent_ng_container_1_Template, 3, 1, "ng-container", 1);
|
74
|
+
i0.ɵɵtemplate(2, TableViewComponent_tr_2_Template, 1, 0, "tr", 2);
|
75
|
+
i0.ɵɵtemplate(3, TableViewComponent_tr_3_Template, 1, 1, "tr", 3);
|
76
|
+
i0.ɵɵelementEnd();
|
77
|
+
} if (rf & 2) {
|
78
|
+
i0.ɵɵproperty("dataSource", ctx.dataSource)("@list", undefined);
|
79
|
+
i0.ɵɵadvance(1);
|
80
|
+
i0.ɵɵproperty("ngForOf", ctx.columns);
|
81
|
+
i0.ɵɵadvance(1);
|
82
|
+
i0.ɵɵproperty("matHeaderRowDef", ctx.displayedColumns);
|
83
|
+
i0.ɵɵadvance(1);
|
84
|
+
i0.ɵɵproperty("matRowDefColumns", ctx.displayedColumns);
|
85
|
+
} }, dependencies: [i1.NgForOf, i2.MatTable, i2.MatHeaderCellDef, i2.MatHeaderRowDef, i2.MatColumnDef, i2.MatCellDef, i2.MatRowDef, i2.MatHeaderCell, i2.MatCell, i2.MatHeaderRow, i2.MatRow, i3.MatSort, i3.MatSortHeader], data: { animation: [listAnimation] } });
|
86
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableViewComponent, [{
|
87
|
+
type: Component,
|
88
|
+
args: [{ selector: 'bizdoc-table-view', animations: [listAnimation], template: "<table mat-table matSort [dataSource]=\"dataSource\" @list>\r\n <ng-container *ngFor=\"let c of columns\" [matColumnDef]=\"c.name\">\r\n <th mat-header-cell *matHeaderCellDef mat-sort-header>{{c.label || c.name}}</th>\r\n <td mat-cell *matCellDef=\"let element\"> {{element[c.name]}} </td>\r\n </ng-container>\r\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns\"></tr>\r\n <tr mat-row @item *matRowDef=\"let element; columns: displayedColumns;\" (click)=\"rowClick(element)\"></tr>\r\n</table>\r\n" }]
|
89
|
+
}], null, { columns: [{
|
90
|
+
type: Input
|
91
|
+
}], selectable: [{
|
92
|
+
type: Input
|
93
|
+
}], itemClick: [{
|
94
|
+
type: Output
|
95
|
+
}], sort: [{
|
96
|
+
type: ViewChild,
|
97
|
+
args: [MatSort, { static: true }]
|
98
|
+
}] }); })();
|
99
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL3JlcG9ydHMvdGFibGUvdGFibGUtdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL3JlcG9ydHMvdGFibGUvdGFibGUtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxTQUFTLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDakQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFHN0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHVCQUF1QixDQUFDOzs7Ozs7SUNIbEQsNkJBQXNEO0lBQUEsWUFBcUI7SUFBQSxpQkFBSzs7O0lBQTFCLGVBQXFCO0lBQXJCLDZDQUFxQjs7O0lBQzNFLDZCQUF1QztJQUFDLFlBQW9CO0lBQUEsaUJBQUs7Ozs7SUFBekIsZUFBb0I7SUFBcEIsc0RBQW9COzs7SUFGOUQsZ0NBQWdFO0lBQzlELGdGQUFnRjtJQUNoRixnRkFBaUU7SUFDbkUsMEJBQWU7OztJQUh5Qix3Q0FBdUI7OztJQUkvRCx3QkFBNEQ7Ozs7SUFDNUQsOEJBQW1HO0lBQTVCLDBOQUFTLGVBQUEsNEJBQWlCLENBQUEsSUFBQztJQUFDLGlCQUFLOztJQUE1RixpQ0FBSzs7QURPbkIsMEJBQTBCO0FBQzFCLE1BQU0sT0FBTyxrQkFBa0I7SUFQL0I7UUFVcUIsY0FBUyxHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7S0FlbkQ7SUFYQyxRQUFRO1FBQ04sSUFBSSxDQUFDLGdCQUFnQixHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQy9FLENBQUM7SUFDRCxNQUFNLENBQUMsTUFBVztRQUNoQixJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksa0JBQWtCLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDakQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQztJQUNuQyxDQUFDO0lBQ0QsUUFBUSxDQUFDLElBQVM7UUFDaEIsSUFBSSxJQUFJLENBQUMsVUFBVTtZQUNqQixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM5QixDQUFDOztvRkFqQlUsa0JBQWtCO3FFQUFsQixrQkFBa0I7dUJBSWxCLE9BQU87Ozs7O1FDbEJwQixnQ0FBeUQ7UUFDdkQscUZBR2U7UUFDZixpRUFBNEQ7UUFDNUQsaUVBQXdHO1FBQzFHLGlCQUFROztRQVBpQiwyQ0FBeUIsb0JBQUE7UUFDcEIsZUFBVTtRQUFWLHFDQUFVO1FBSWxCLGVBQWlDO1FBQWpDLHNEQUFpQztRQUNWLGVBQTBCO1FBQTFCLHVEQUEwQjtvUERLekQsQ0FBQyxhQUFhLENBQUM7dUZBR2hCLGtCQUFrQjtjQVA5QixTQUFTOzJCQUNFLG1CQUFtQixjQUdqQixDQUFDLGFBQWEsQ0FBQztnQkFJbEIsT0FBTztrQkFBZixLQUFLO1lBQ0csVUFBVTtrQkFBbEIsS0FBSztZQUNhLFNBQVM7a0JBQTNCLE1BQU07WUFDK0IsSUFBSTtrQkFBekMsU0FBUzttQkFBQyxPQUFPLEVBQUUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBWaWV3Q2hpbGQsIE91dHB1dCwgRXZlbnRFbWl0dGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE1hdFNvcnQgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zb3J0JztcclxuaW1wb3J0IHsgTWF0VGFibGVEYXRhU291cmNlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdGFibGUnO1xyXG5pbXBvcnQgeyBGaWVsZEluZm8gfSBmcm9tICcuLi8uLi9jb3JlL21vZGVscyc7XHJcbmltcG9ydCB7IFJlcG9ydENvbXBvbmVudCB9IGZyb20gJy4uLy4uL2NvcmUvYmFzZSc7XHJcbmltcG9ydCB7IGxpc3RBbmltYXRpb24gfSBmcm9tICcuLi8uLi9jb3JlL2FuaW1hdGlvbnMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdiaXpkb2MtdGFibGUtdmlldycsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3RhYmxlLXZpZXcuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL3RhYmxlLXZpZXcuY29tcG9uZW50LnNjc3MnXSxcclxuICBhbmltYXRpb25zOiBbbGlzdEFuaW1hdGlvbl1cclxufSlcclxuLyoqIHRhYmxlLXZpZXcgY29tcG9uZW50Ki9cclxuZXhwb3J0IGNsYXNzIFRhYmxlVmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIFJlcG9ydENvbXBvbmVudDxhbnksIGFueT4sIE9uSW5pdCB7XHJcbiAgQElucHV0KCkgY29sdW1ucyE6IEZpZWxkSW5mb1tdO1xyXG4gIEBJbnB1dCgpIHNlbGVjdGFibGU6IGJvb2xlYW47XHJcbiAgQE91dHB1dCgpIHJlYWRvbmx5IGl0ZW1DbGljayA9IG5ldyBFdmVudEVtaXR0ZXIoKTtcclxuICBAVmlld0NoaWxkKE1hdFNvcnQsIHsgc3RhdGljOiB0cnVlIH0pIHNvcnQ6IE1hdFNvcnQ7XHJcbiAgZGF0YVNvdXJjZTogTWF0VGFibGVEYXRhU291cmNlPGFueT47XHJcbiAgZGlzcGxheWVkQ29sdW1uczogc3RyaW5nW107XHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmRpc3BsYXllZENvbHVtbnMgPSB0aGlzLmNvbHVtbnMuZmlsdGVyKGMgPT4gIWMuaGlkZGVuKS5tYXAoYyA9PiBjLm5hbWUpO1xyXG4gIH1cclxuICBvbkJpbmQocmVzdWx0OiBhbnkpIHtcclxuICAgIHRoaXMuZGF0YVNvdXJjZSA9IG5ldyBNYXRUYWJsZURhdGFTb3VyY2UocmVzdWx0KTtcclxuICAgIHRoaXMuZGF0YVNvdXJjZS5zb3J0ID0gdGhpcy5zb3J0O1xyXG4gIH1cclxuICByb3dDbGljayhpdGVtOiBhbnkpIHtcclxuICAgIGlmICh0aGlzLnNlbGVjdGFibGUpXHJcbiAgICAgIHRoaXMuaXRlbUNsaWNrLmVtaXQoaXRlbSk7XHJcbiAgfVxyXG59XHJcbiIsIjx0YWJsZSBtYXQtdGFibGUgbWF0U29ydCBbZGF0YVNvdXJjZV09XCJkYXRhU291cmNlXCIgQGxpc3Q+XHJcbiAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgYyBvZiBjb2x1bW5zXCIgW21hdENvbHVtbkRlZl09XCJjLm5hbWVcIj5cclxuICAgIDx0aCBtYXQtaGVhZGVyLWNlbGwgKm1hdEhlYWRlckNlbGxEZWYgbWF0LXNvcnQtaGVhZGVyPnt7Yy5sYWJlbCB8fCBjLm5hbWV9fTwvdGg+XHJcbiAgICA8dGQgbWF0LWNlbGwgKm1hdENlbGxEZWY9XCJsZXQgZWxlbWVudFwiPiB7e2VsZW1lbnRbYy5uYW1lXX19IDwvdGQ+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbiAgPHRyIG1hdC1oZWFkZXItcm93ICptYXRIZWFkZXJSb3dEZWY9XCJkaXNwbGF5ZWRDb2x1bW5zXCI+PC90cj5cclxuICA8dHIgbWF0LXJvdyBAaXRlbSAqbWF0Um93RGVmPVwibGV0IGVsZW1lbnQ7IGNvbHVtbnM6IGRpc3BsYXllZENvbHVtbnM7XCIgKGNsaWNrKT1cInJvd0NsaWNrKGVsZW1lbnQpXCI+PC90cj5cclxuPC90YWJsZT5cclxuIl19
|
@@ -12,6 +12,22 @@ import * as i4 from "../../core/prompt.service";
|
|
12
12
|
import * as i5 from "../../core/info/document-info.service";
|
13
13
|
import * as i6 from "../../core/session.service";
|
14
14
|
import * as i7 from "@syncfusion/ej2-angular-kanban";
|
15
|
+
function TasksComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
16
|
+
const _r4 = i0.ɵɵgetCurrentView();
|
17
|
+
i0.ɵɵelementStart(0, "div", 2)(1, "div", 3)(2, "div", 4)(3, "div", 5)(4, "a", 6);
|
18
|
+
i0.ɵɵlistener("click", function TasksComponent_ng_template_1_Template_a_click_4_listener() { const restoredCtx = i0.ɵɵrestoreView(_r4); const data_r2 = restoredCtx.$implicit; const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.preview(data_r2.id)); });
|
19
|
+
i0.ɵɵtext(5);
|
20
|
+
i0.ɵɵelementEnd()()()();
|
21
|
+
i0.ɵɵelementStart(6, "div", 7)(7, "div", 8);
|
22
|
+
i0.ɵɵtext(8);
|
23
|
+
i0.ɵɵelementEnd()()();
|
24
|
+
} if (rf & 2) {
|
25
|
+
const data_r2 = ctx.$implicit;
|
26
|
+
i0.ɵɵadvance(5);
|
27
|
+
i0.ɵɵtextInterpolate1("#", data_r2.number, "");
|
28
|
+
i0.ɵɵadvance(3);
|
29
|
+
i0.ɵɵtextInterpolate(data_r2.subject);
|
30
|
+
} }
|
15
31
|
/** */
|
16
32
|
let TasksComponent = class TasksComponent {
|
17
33
|
constructor(_reportRef, _mailbox, _accounts, _sb, _info, _session) {
|
@@ -79,17 +95,29 @@ let TasksComponent = class TasksComponent {
|
|
79
95
|
this._destroy.complete();
|
80
96
|
}
|
81
97
|
};
|
82
|
-
TasksComponent.ɵfac =
|
83
|
-
TasksComponent.ɵcmp = i0.ɵɵ
|
98
|
+
TasksComponent.ɵfac = function TasksComponent_Factory(t) { return new (t || TasksComponent)(i0.ɵɵdirectiveInject(i1.ReportRef), i0.ɵɵdirectiveInject(i2.MailboxService), i0.ɵɵdirectiveInject(i3.AccountService), i0.ɵɵdirectiveInject(i4.PromptService), i0.ɵɵdirectiveInject(i5.DocumentInfo), i0.ɵɵdirectiveInject(i6.SessionService)); };
|
99
|
+
TasksComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TasksComponent, selectors: [["ng-component"]], viewQuery: function TasksComponent_Query(rf, ctx) { if (rf & 1) {
|
100
|
+
i0.ɵɵviewQuery(KanbanComponent, 5);
|
101
|
+
} if (rf & 2) {
|
102
|
+
let _t;
|
103
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.kanban = _t.first);
|
104
|
+
} }, decls: 3, vars: 5, consts: [["keyField", "stateId", "height", "auto", 3, "allowDragAndDrop", "swimlaneSettings", "cardSettings", "dataSource", "columns", "dragStop", "cardRendered"], ["cardTemplate", ""], [1, "card-template"], [1, "e-card-header"], [1, "e-card-header-caption"], [1, "e-card-header-title", "e-tooltip-text"], [3, "click"], [1, "e-card-content", "e-tooltip-text"], [1, "e-text"]], template: function TasksComponent_Template(rf, ctx) { if (rf & 1) {
|
105
|
+
i0.ɵɵelementStart(0, "ejs-kanban", 0);
|
106
|
+
i0.ɵɵlistener("dragStop", function TasksComponent_Template_ejs_kanban_dragStop_0_listener($event) { return ctx.drag($event); })("cardRendered", function TasksComponent_Template_ejs_kanban_cardRendered_0_listener($event) { return ctx.cardRendered($event); });
|
107
|
+
i0.ɵɵelementEnd();
|
108
|
+
i0.ɵɵtemplate(1, TasksComponent_ng_template_1_Template, 9, 2, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
109
|
+
} if (rf & 2) {
|
110
|
+
i0.ɵɵproperty("allowDragAndDrop", ctx.allowDragAndDrop)("swimlaneSettings", ctx.swimlaneSettings)("cardSettings", ctx.cardSettings)("dataSource", ctx.dataSource)("columns", ctx.columns);
|
111
|
+
} }, dependencies: [i7.KanbanComponent], encapsulation: 2 });
|
84
112
|
TasksComponent = __decorate([
|
85
113
|
BizDoc({ selector: 'bizdoc-tasks' })
|
86
114
|
], TasksComponent);
|
87
115
|
export { TasksComponent };
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFza3MuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9yZXBvcnRzL3Rhc2tzL3Rhc2tzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvcmVwb3J0cy90YXNrcy90YXNrcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQXFCLE1BQU0sZUFBZSxDQUFDO0FBQ3hFLE9BQU8sRUFBRSxlQUFlLEVBQWdHLE1BQU0sZ0NBQWdDLENBQUM7QUFDL0osT0FBTyxFQUFjLFFBQVEsRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDckQsT0FBTyxFQUFFLEdBQUcsRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNoRCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7Ozs7Ozs7OztBQVUvQyxNQUFNO0lBTUUsY0FBYyxTQUFkLGNBQWM7SUFVcEIsWUFBb0IsVUFBeUMsRUFDbkQsUUFBd0IsRUFDeEIsU0FBeUIsRUFDekIsR0FBa0IsRUFDbEIsS0FBbUIsRUFDbkIsUUFBd0I7UUFMZCxlQUFVLEdBQVYsVUFBVSxDQUErQjtRQUNuRCxhQUFRLEdBQVIsUUFBUSxDQUFnQjtRQUN4QixjQUFTLEdBQVQsU0FBUyxDQUFnQjtRQUN6QixRQUFHLEdBQUgsR0FBRyxDQUFlO1FBQ2xCLFVBQUssR0FBTCxLQUFLLENBQWM7UUFDbkIsYUFBUSxHQUFSLFFBQVEsQ0FBZ0I7UUFaekIsaUJBQVksR0FBc0IsRUFBRSxZQUFZLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxRQUFRLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBRSxDQUFDO1FBSy9GLFNBQUksR0FBaUMsRUFBRSxDQUFDO1FBQ3hDLGFBQVEsR0FBRyxJQUFJLE9BQU8sRUFBUSxDQUFDO1FBUTlDLE1BQU0sRUFBRSxNQUFNLEVBQUUsUUFBUSxFQUFFLFVBQVUsRUFBRSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDO1FBQ2pFLElBQUksUUFBUSxLQUFLLEtBQUs7WUFDcEIsSUFBSSxDQUFDLGdCQUFnQixHQUFHO2dCQUN0QixnQkFBZ0IsRUFBRSxVQUFVLEtBQUssS0FBSztnQkFDdEMsU0FBUyxFQUFFLFVBQVU7Z0JBQ3JCLFFBQVEsRUFBRSxRQUFRO2FBQ25CLENBQUM7UUFDSixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsVUFBVSxLQUFLLEtBQUssQ0FBQztRQUM3QyxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLE1BQU0sSUFBSSxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRTtZQUN0RyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDdEIsT0FBTyxFQUFFLFVBQVUsRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLFFBQVEsRUFBRSxDQUFDLENBQUMsSUFBSSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQWtCLENBQUM7UUFDdEYsQ0FBQyxDQUFDLENBQUM7UUFDSCxVQUFVLENBQUMsTUFBTTtZQUNmLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQzlCLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUNaLElBQUksQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBQ0Q7OztPQUdHO0lBQ0gsTUFBTSxDQUFDLElBQWE7UUFDbEIsSUFBSSxJQUFJLENBQUMsTUFBTTtZQUNiLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRSxDQUNsQyxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxDQUFDOztZQUN2QixJQUFJLENBQUMsVUFBVSxHQUFHLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBQ08sU0FBUyxDQUFDLElBQWE7UUFDN0IsTUFBTSxXQUFXLEdBQ2YsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFFBQVEsR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2xGLE9BQU8sUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQy9CLENBQUM7SUFDRDs7O09BR0c7SUFDSCxJQUFJLENBQUMsR0FBa0I7UUFDckIsTUFBTSxFQUFFLEVBQUUsRUFBRSxPQUFPLEVBQUUsTUFBTSxFQUFFLEdBQUcsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQVUsQ0FBQztRQUNyRCxJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxFQUFFLEVBQUUsT0FBTyxFQUFFLE1BQU0sQ0FBQztZQUM1QyxTQUFTLENBQUMsU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBQ0Q7OztPQUdHO0lBQ0gsT0FBTyxDQUFDLEVBQVU7UUFDaEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDdEIsQ0FBQztJQUNELFlBQVksQ0FBQyxHQUEwQjtRQUNyQyxNQUFNLEVBQUUsT0FBTyxFQUFFLEdBQUksR0FBRyxDQUFDLElBQXFCLEVBQUUsRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUM1RixnRkFBZ0Y7SUFDbEYsQ0FBQztJQUNELFdBQVc7UUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ3JCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDM0IsQ0FBQztDQUNGLENBQUE7MkdBekVPLGNBQWM7K0ZBQWQsY0FBYyw0RkFDVCxlQUFlLGdEQ3JCNUIsaytCQXFCQTtBRERRLGNBQWM7SUFGckIsTUFBTSxDQUFDLEVBQUUsUUFBUSxFQUFFLGNBQWMsRUFBRSxDQUFDO0dBRTdCLGNBQWMsQ0F5RXJCO1NBekVPLGNBQWM7MkZBQWQsY0FBYztrQkFMckIsU0FBUzs7OE9BTW9CLE1BQU07c0JBQWpDLFNBQVM7dUJBQUMsZUFBZSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgVmlld0NoaWxkLCBJbmplY3QsIE9uRGVzdHJveSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IEthbmJhbkNvbXBvbmVudCwgQ29sdW1uc01vZGVsLCBEcmFnRXZlbnRBcmdzLCBDYXJkU2V0dGluZ3NNb2RlbCwgU3dpbWxhbmVTZXR0aW5nc01vZGVsLCBDYXJkUmVuZGVyZWRFdmVudEFyZ3MgfSBmcm9tIFwiQHN5bmNmdXNpb24vZWoyLWFuZ3VsYXIta2FuYmFuXCI7XHJcbmltcG9ydCB7IE9ic2VydmFibGUsIGZvcmtKb2luLCBTdWJqZWN0IH0gZnJvbSBcInJ4anNcIjtcclxuaW1wb3J0IHsgdGFwLCB0YWtlVW50aWwgfSBmcm9tIFwicnhqcy9vcGVyYXRvcnNcIjtcclxuaW1wb3J0IHsgQml6RG9jIH0gZnJvbSBcIi4uLy4uL2NvcmUvZGVjb3JhdG9yc1wiO1xyXG5pbXBvcnQgeyBTdGF0ZSB9IGZyb20gXCIuLi8uLi9jb3JlL21vZGVsc1wiO1xyXG5pbXBvcnQgeyBSZXBvcnRDb21wb25lbnQgfSBmcm9tIFwiLi4vLi4vY29yZS9iYXNlXCI7XHJcbmltcG9ydCB7IFNlc3Npb25TZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL2NvcmUvc2Vzc2lvbi5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFJlcG9ydFJlZiB9IGZyb20gXCIuLi9yZXBvcnQtcmVmXCI7XHJcbmltcG9ydCB7IE1haWxib3hTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL2NvcmUvbWFpbGJveC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IEFjY291bnRTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL2NvcmUvYWNjb3VudC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFByb21wdFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9wcm9tcHQuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBEb2N1bWVudEluZm8gfSBmcm9tIFwiLi4vLi4vY29yZS9pbmZvL2RvY3VtZW50LWluZm8uc2VydmljZVwiO1xyXG5cclxuLyoqICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHRlbXBsYXRlVXJsOiAndGFza3MuY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbkBCaXpEb2MoeyBzZWxlY3RvcjogJ2JpemRvYy10YXNrcycgfSlcclxuZXhwb3J0XHJcbiAgY2xhc3MgVGFza3NDb21wb25lbnQgaW1wbGVtZW50cyBSZXBvcnRDb21wb25lbnQ8TW9kZWwsIEF4ZXM+LCBPbkRlc3Ryb3kge1xyXG4gIEBWaWV3Q2hpbGQoS2FuYmFuQ29tcG9uZW50KSBrYW5iYW46IEthbmJhbkNvbXBvbmVudDtcclxuICByZWFkb25seSBjb2x1bW5zOiBDb2x1bW5zTW9kZWxbXTtcclxuICByZWFkb25seSBjYXJkU2V0dGluZ3M6IENhcmRTZXR0aW5nc01vZGVsID0geyBjb250ZW50RmllbGQ6ICdzdWJqZWN0JywgaGVhZGVyRmllbGQ6ICdudW1iZXInLCBzaG93SGVhZGVyOiB0cnVlIH07XHJcbiAgcmVhZG9ubHkgc3dpbWxhbmVTZXR0aW5nczogU3dpbWxhbmVTZXR0aW5nc01vZGVsO1xyXG4gIHJlYWRvbmx5IGFsbG93RHJhZ0FuZERyb3A6IGJvb2xlYW47XHJcbiAgZGF0YVNvdXJjZTogTW9kZWxbXTtcclxuICBoZWlnaHQ6IG51bWJlcjtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9tYXA6IHsgW3N0YXRlSWQ6IHN0cmluZ106IFN0YXRlIH0gPSB7fTtcclxuICBwcml2YXRlIHJlYWRvbmx5IF9kZXN0cm95ID0gbmV3IFN1YmplY3Q8dm9pZD4oKTtcclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9yZXBvcnRSZWY6IFJlcG9ydFJlZjxUYXNrc1NldHRpbmdzTW9kZWw+LFxyXG4gICAgcHJpdmF0ZSBfbWFpbGJveDogTWFpbGJveFNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9hY2NvdW50czogQWNjb3VudFNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9zYjogUHJvbXB0U2VydmljZSxcclxuICAgIHByaXZhdGUgX2luZm86IERvY3VtZW50SW5mbyxcclxuICAgIHByaXZhdGUgX3Nlc3Npb246IFNlc3Npb25TZXJ2aWNlKSB7XHJcblxyXG4gICAgY29uc3QgeyBzdGF0ZXMsIHN3aW1sYW5lLCBhc3NpZ25hYmxlIH0gPSB0aGlzLl9yZXBvcnRSZWYub3B0aW9ucztcclxuICAgIGlmIChzd2ltbGFuZSAhPT0gZmFsc2UpXHJcbiAgICAgIHRoaXMuc3dpbWxhbmVTZXR0aW5ncyA9IHtcclxuICAgICAgICBhbGxvd0RyYWdBbmREcm9wOiBhc3NpZ25hYmxlICE9PSBmYWxzZSxcclxuICAgICAgICB0ZXh0RmllbGQ6ICd1c2VyTmFtZScsXHJcbiAgICAgICAga2V5RmllbGQ6ICd1c2VySWQnXHJcbiAgICAgIH07XHJcbiAgICB0aGlzLmFsbG93RHJhZ0FuZERyb3AgPSBhc3NpZ25hYmxlICE9PSBmYWxzZTtcclxuICAgIHRoaXMuY29sdW1ucyA9IHRoaXMuX3Nlc3Npb24ucHJvZmlsZS5zdGF0ZXMuZmlsdGVyKHMgPT4gIXN0YXRlcyB8fCBzdGF0ZXMuaW5kZXhPZihzLm5hbWUpID4gLTEpLm1hcChzID0+IHtcclxuICAgICAgdGhpcy5fbWFwW3MubmFtZV0gPSBzO1xyXG4gICAgICByZXR1cm4geyBoZWFkZXJUZXh0OiBzLnRpdGxlLCBrZXlGaWVsZDogcy5uYW1lLCBhbGxvd1RvZ2dsZTogdHJ1ZSB9IGFzIENvbHVtbnNNb2RlbDtcclxuICAgIH0pO1xyXG4gICAgX3JlcG9ydFJlZi5yZXNpemUuXHJcbiAgICAgIHBpcGUodGFrZVVudGlsKHRoaXMuX2Rlc3Ryb3kpKS5cclxuICAgICAgc3Vic2NyaWJlKGQgPT5cclxuICAgICAgICB0aGlzLmhlaWdodCA9IGQuaGVpZ2h0IC0gMzUpO1xyXG4gIH1cclxuICAvKipcclxuICAgKiBcclxuICAgKiBAcGFyYW0gZGF0YVxyXG4gICAqL1xyXG4gIG9uQmluZChkYXRhOiBNb2RlbFtdKSB7XHJcbiAgICBpZiAoZGF0YS5sZW5ndGgpXHJcbiAgICAgIHRoaXMuX2RlY29yYXRlKGRhdGEpLnN1YnNjcmliZSgoKSA9PlxyXG4gICAgICAgIHRoaXMuZGF0YVNvdXJjZSA9IGRhdGEpO1xyXG4gICAgZWxzZSB0aGlzLmRhdGFTb3VyY2UgPSBbXTtcclxuICB9XHJcbiAgcHJpdmF0ZSBfZGVjb3JhdGUoZGF0YTogTW9kZWxbXSk6IE9ic2VydmFibGU8YW55PiB7XHJcbiAgICBjb25zdCBvYnNlcnZhYmxlczogT2JzZXJ2YWJsZTxhbnk+W10gPVxyXG4gICAgICBkYXRhLm1hcChyID0+IHRoaXMuX2FjY291bnRzLmdldChyLnVzZXJJZCkucGlwZSh0YXAodSA9PiByLnVzZXJOYW1lID0gdS5uYW1lKSkpO1xyXG4gICAgcmV0dXJuIGZvcmtKb2luKG9ic2VydmFibGVzKTtcclxuICB9XHJcbiAgLyoqXHJcbiAgICogXHJcbiAgICogQHBhcmFtIGV2dFxyXG4gICAqL1xyXG4gIGRyYWcoZXZ0OiBEcmFnRXZlbnRBcmdzKSB7XHJcbiAgICBjb25zdCB7IGlkLCBzdGF0ZUlkLCB1c2VySWQgfSA9IGV2dC5kYXRhWzBdIGFzIE1vZGVsO1xyXG4gICAgdGhpcy5fbWFpbGJveC5jaGFuZ2VTdGF0ZShpZCwgc3RhdGVJZCwgdXNlcklkKS5cclxuICAgICAgc3Vic2NyaWJlKHVuZGVmaW5lZCwgKCkgPT4gdGhpcy5fc2IuZXJyb3IoKSk7XHJcbiAgfVxyXG4gIC8qKlxyXG4gICAqIFxyXG4gICAqIEBwYXJhbSBpZFxyXG4gICAqL1xyXG4gIHByZXZpZXcoaWQ6IG51bWJlcikge1xyXG4gICAgdGhpcy5faW5mby5vcGVuKGlkKTtcclxuICB9XHJcbiAgY2FyZFJlbmRlcmVkKGV2dDogQ2FyZFJlbmRlcmVkRXZlbnRBcmdzKSB7XHJcbiAgICBjb25zdCB7IHN0YXRlSWQgfSA9IChldnQuZGF0YSBhcyBhbnkgYXMgTW9kZWwpLCB7IGNvbG9yOiBib3JkZXJDb2xvciB9ID0gdGhpcy5fbWFwW3N0YXRlSWRdO1xyXG4gICAgLy9ib3JkZXJDb2xvciAmJiBzZXRTdHlsZUF0dHJpYnV0ZShldnQuZWxlbWVudCBhcyBIVE1MRWxlbWVudCwgeyBib3JkZXJDb2xvciB9KTtcclxuICB9XHJcbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLl9kZXN0cm95Lm5leHQoKTtcclxuICAgIHRoaXMuX2Rlc3Ryb3kuY29tcGxldGUoKTtcclxuICB9XHJcbn1cclxuXHJcblxyXG5pbnRlcmZhY2UgTW9kZWwge1xyXG4gIHVzZXJOYW1lOiBzdHJpbmc7XHJcbiAgaWQ6IG51bWJlcjtcclxuICBudW1iZXI6IHN0cmluZztcclxuICBzdWJqZWN0OiBzdHJpbmc7XHJcbiAgdXNlcklkOiBzdHJpbmc7XHJcbiAgdmFsdWU6IG51bWJlcjtcclxuICBjdXJyZW5jeUNvZGU6IHN0cmluZztcclxuICBzdGF0ZUlkOiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgVGFza3NTZXR0aW5nc01vZGVsIHtcclxuICBjdWJlOiBzdHJpbmc7XHJcbiAgYXhlczogc3RyaW5nW107XHJcbiAgc3dpbWxhbmU/OiBib29sZWFuO1xyXG4gIGFzc2lnbmFibGU/OiBib29sZWFuO1xyXG4gIHN0YXRlcz86IHN0cmluZ1tdO1xyXG59XHJcbmludGVyZmFjZSBBeGVzIHtcclxuICBbYXhpczogc3RyaW5nXTogKHN0cmluZyB8IG51bWJlcik7XHJcbn1cclxuIiwiPGVqcy1rYW5iYW4gKGRyYWdTdG9wKT1cImRyYWcoJGV2ZW50KVwiIFthbGxvd0RyYWdBbmREcm9wXT1cImFsbG93RHJhZ0FuZERyb3BcIiBbc3dpbWxhbmVTZXR0aW5nc109XCJzd2ltbGFuZVNldHRpbmdzXCJcclxuICAgICAgICAgICAgW2NhcmRTZXR0aW5nc109XCJjYXJkU2V0dGluZ3NcIiBbZGF0YVNvdXJjZV09XCJkYXRhU291cmNlXCIga2V5RmllbGQ9XCJzdGF0ZUlkXCIgW2NvbHVtbnNdPVwiY29sdW1uc1wiXHJcbiAgICAgICAgICAgIGhlaWdodD1cImF1dG9cIlxyXG4gICAgICAgICAgICAoY2FyZFJlbmRlcmVkKT0nY2FyZFJlbmRlcmVkKCRldmVudCknPlxyXG48L2Vqcy1rYW5iYW4+XHJcbjxuZy10ZW1wbGF0ZSAjY2FyZFRlbXBsYXRlIGxldC1kYXRhPlxyXG4gIDxkaXYgY2xhc3M9J2NhcmQtdGVtcGxhdGUnPlxyXG4gICAgPGRpdiBjbGFzcz0nZS1jYXJkLWhlYWRlcic+XHJcbiAgICAgIDxkaXYgY2xhc3M9J2UtY2FyZC1oZWFkZXItY2FwdGlvbic+XHJcbiAgICAgICAgPGRpdiBjbGFzcz0nZS1jYXJkLWhlYWRlci10aXRsZSBlLXRvb2x0aXAtdGV4dCc+PGEgKGNsaWNrKT1cInByZXZpZXcoZGF0YS5pZClcIj4je3tkYXRhLm51bWJlcn19PC9hPjwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz0nZS1jYXJkLWNvbnRlbnQgZS10b29sdGlwLXRleHQnPlxyXG4gICAgICA8ZGl2IGNsYXNzPSdlLXRleHQnPnt7ZGF0YS5zdWJqZWN0fX08L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgPCEtLTxkaXYgY2xhc3M9J2UtY2FyZC1jdXN0b20tZm9vdGVyJz5cclxuICAgICAgPGRpdiBjbGFzcz1cImUtY2FyZC10YWctZmllbGQgZS10b29sdGlwLXRleHRcIiAqbmdGb3I9XCJsZXQgdGFnIG9mIGRhdGEudGFnc1wiPjwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPSdlLWNhcmQtYXZhdGFyJz48L2Rpdj5cclxuICAgIDwvZGl2Pi0tPlxyXG4gIDwvZGl2PlxyXG48L25nLXRlbXBsYXRlPlxyXG4iXX0=
|
116
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TasksComponent, [{
|
117
|
+
type: Component,
|
118
|
+
args: [{ template: "<ejs-kanban (dragStop)=\"drag($event)\" [allowDragAndDrop]=\"allowDragAndDrop\" [swimlaneSettings]=\"swimlaneSettings\"\r\n [cardSettings]=\"cardSettings\" [dataSource]=\"dataSource\" keyField=\"stateId\" [columns]=\"columns\"\r\n height=\"auto\"\r\n (cardRendered)='cardRendered($event)'>\r\n</ejs-kanban>\r\n<ng-template #cardTemplate let-data>\r\n <div class='card-template'>\r\n <div class='e-card-header'>\r\n <div class='e-card-header-caption'>\r\n <div class='e-card-header-title e-tooltip-text'><a (click)=\"preview(data.id)\">#{{data.number}}</a></div>\r\n </div>\r\n </div>\r\n <div class='e-card-content e-tooltip-text'>\r\n <div class='e-text'>{{data.subject}}</div>\r\n </div>\r\n <!--<div class='e-card-custom-footer'>\r\n <div class=\"e-card-tag-field e-tooltip-text\" *ngFor=\"let tag of data.tags\"></div>\r\n <div class='e-card-avatar'></div>\r\n </div>-->\r\n </div>\r\n</ng-template>\r\n" }]
|
119
|
+
}], function () { return [{ type: i1.ReportRef }, { type: i2.MailboxService }, { type: i3.AccountService }, { type: i4.PromptService }, { type: i5.DocumentInfo }, { type: i6.SessionService }]; }, { kanban: [{
|
120
|
+
type: ViewChild,
|
121
|
+
args: [KanbanComponent]
|
122
|
+
}] }); })();
|
123
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFza3MuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9yZXBvcnRzL3Rhc2tzL3Rhc2tzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvcmVwb3J0cy90YXNrcy90YXNrcy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQXFCLE1BQU0sZUFBZSxDQUFDO0FBQ3hFLE9BQU8sRUFBRSxlQUFlLEVBQWdHLE1BQU0sZ0NBQWdDLENBQUM7QUFDL0osT0FBTyxFQUFjLFFBQVEsRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDckQsT0FBTyxFQUFFLEdBQUcsRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNoRCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7Ozs7Ozs7Ozs7O0lDRTdDLDhCQUEyQixhQUFBLGFBQUEsYUFBQSxXQUFBO0lBRzhCLHlOQUFTLGVBQUEsMEJBQWdCLENBQUEsSUFBQztJQUFDLFlBQWdCO0lBQUEsaUJBQUksRUFBQSxFQUFBLEVBQUE7SUFHdEcsOEJBQTJDLGFBQUE7SUFDckIsWUFBZ0I7SUFBQSxpQkFBTSxFQUFBLEVBQUE7OztJQUpzQyxlQUFnQjtJQUFoQiw4Q0FBZ0I7SUFJNUUsZUFBZ0I7SUFBaEIscUNBQWdCOztBREMxQyxNQUFNO0lBTUUsY0FBYyxTQUFkLGNBQWM7SUFVcEIsWUFBb0IsVUFBeUMsRUFDbkQsUUFBd0IsRUFDeEIsU0FBeUIsRUFDekIsR0FBa0IsRUFDbEIsS0FBbUIsRUFDbkIsUUFBd0I7UUFMZCxlQUFVLEdBQVYsVUFBVSxDQUErQjtRQUNuRCxhQUFRLEdBQVIsUUFBUSxDQUFnQjtRQUN4QixjQUFTLEdBQVQsU0FBUyxDQUFnQjtRQUN6QixRQUFHLEdBQUgsR0FBRyxDQUFlO1FBQ2xCLFVBQUssR0FBTCxLQUFLLENBQWM7UUFDbkIsYUFBUSxHQUFSLFFBQVEsQ0FBZ0I7UUFaekIsaUJBQVksR0FBc0IsRUFBRSxZQUFZLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxRQUFRLEVBQUUsVUFBVSxFQUFFLElBQUksRUFBRSxDQUFDO1FBSy9GLFNBQUksR0FBaUMsRUFBRSxDQUFDO1FBQ3hDLGFBQVEsR0FBRyxJQUFJLE9BQU8sRUFBUSxDQUFDO1FBUTlDLE1BQU0sRUFBRSxNQUFNLEVBQUUsUUFBUSxFQUFFLFVBQVUsRUFBRSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsT0FBTyxDQUFDO1FBQ2pFLElBQUksUUFBUSxLQUFLLEtBQUs7WUFDcEIsSUFBSSxDQUFDLGdCQUFnQixHQUFHO2dCQUN0QixnQkFBZ0IsRUFBRSxVQUFVLEtBQUssS0FBSztnQkFDdEMsU0FBUyxFQUFFLFVBQVU7Z0JBQ3JCLFFBQVEsRUFBRSxRQUFRO2FBQ25CLENBQUM7UUFDSixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsVUFBVSxLQUFLLEtBQUssQ0FBQztRQUM3QyxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLE1BQU0sSUFBSSxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRTtZQUN0RyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDdEIsT0FBTyxFQUFFLFVBQVUsRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLFFBQVEsRUFBRSxDQUFDLENBQUMsSUFBSSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQWtCLENBQUM7UUFDdEYsQ0FBQyxDQUFDLENBQUM7UUFDSCxVQUFVLENBQUMsTUFBTTtZQUNmLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQzlCLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUNaLElBQUksQ0FBQyxNQUFNLEdBQUcsQ0FBQyxDQUFDLE1BQU0sR0FBRyxFQUFFLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBQ0Q7OztPQUdHO0lBQ0gsTUFBTSxDQUFDLElBQWE7UUFDbEIsSUFBSSxJQUFJLENBQUMsTUFBTTtZQUNiLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRSxDQUNsQyxJQUFJLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQyxDQUFDOztZQUN2QixJQUFJLENBQUMsVUFBVSxHQUFHLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBQ08sU0FBUyxDQUFDLElBQWE7UUFDN0IsTUFBTSxXQUFXLEdBQ2YsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLFFBQVEsR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2xGLE9BQU8sUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQy9CLENBQUM7SUFDRDs7O09BR0c7SUFDSCxJQUFJLENBQUMsR0FBa0I7UUFDckIsTUFBTSxFQUFFLEVBQUUsRUFBRSxPQUFPLEVBQUUsTUFBTSxFQUFFLEdBQUcsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQVUsQ0FBQztRQUNyRCxJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxFQUFFLEVBQUUsT0FBTyxFQUFFLE1BQU0sQ0FBQztZQUM1QyxTQUFTLENBQUMsU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBQ0Q7OztPQUdHO0lBQ0gsT0FBTyxDQUFDLEVBQVU7UUFDaEIsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7SUFDdEIsQ0FBQztJQUNELFlBQVksQ0FBQyxHQUEwQjtRQUNyQyxNQUFNLEVBQUUsT0FBTyxFQUFFLEdBQUksR0FBRyxDQUFDLElBQXFCLEVBQUUsRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUM1RixnRkFBZ0Y7SUFDbEYsQ0FBQztJQUNELFdBQVc7UUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ3JCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDM0IsQ0FBQztDQUNGLENBQUE7NEVBekVPLGNBQWM7aUVBQWQsY0FBYzt1QkFDVCxlQUFlOzs7OztRQ3JCNUIscUNBR2tEO1FBSHRDLDJHQUFZLGdCQUFZLElBQUMsc0dBR1Qsd0JBQW9CLElBSFg7UUFJckMsaUJBQWE7UUFDYixnSEFlYzs7UUFwQndCLHVEQUFxQywwQ0FBQSxrQ0FBQSw4QkFBQSx3QkFBQTs7QURvQm5FLGNBQWM7SUFGckIsTUFBTSxDQUFDLEVBQUUsUUFBUSxFQUFFLGNBQWMsRUFBRSxDQUFDO0dBRTdCLGNBQWMsQ0F5RXJCO1NBekVPLGNBQWM7dUZBQWQsY0FBYztjQUxyQixTQUFTOzswTUFNb0IsTUFBTTtrQkFBakMsU0FBUzttQkFBQyxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBWaWV3Q2hpbGQsIEluamVjdCwgT25EZXN0cm95IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgS2FuYmFuQ29tcG9uZW50LCBDb2x1bW5zTW9kZWwsIERyYWdFdmVudEFyZ3MsIENhcmRTZXR0aW5nc01vZGVsLCBTd2ltbGFuZVNldHRpbmdzTW9kZWwsIENhcmRSZW5kZXJlZEV2ZW50QXJncyB9IGZyb20gXCJAc3luY2Z1c2lvbi9lajItYW5ndWxhci1rYW5iYW5cIjtcclxuaW1wb3J0IHsgT2JzZXJ2YWJsZSwgZm9ya0pvaW4sIFN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xyXG5pbXBvcnQgeyB0YXAsIHRha2VVbnRpbCB9IGZyb20gXCJyeGpzL29wZXJhdG9yc1wiO1xyXG5pbXBvcnQgeyBCaXpEb2MgfSBmcm9tIFwiLi4vLi4vY29yZS9kZWNvcmF0b3JzXCI7XHJcbmltcG9ydCB7IFN0YXRlIH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IFJlcG9ydENvbXBvbmVudCB9IGZyb20gXCIuLi8uLi9jb3JlL2Jhc2VcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgUmVwb3J0UmVmIH0gZnJvbSBcIi4uL3JlcG9ydC1yZWZcIjtcclxuaW1wb3J0IHsgTWFpbGJveFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9tYWlsYm94LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgQWNjb3VudFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9hY2NvdW50LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgUHJvbXB0U2VydmljZSB9IGZyb20gXCIuLi8uLi9jb3JlL3Byb21wdC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IERvY3VtZW50SW5mbyB9IGZyb20gXCIuLi8uLi9jb3JlL2luZm8vZG9jdW1lbnQtaW5mby5zZXJ2aWNlXCI7XHJcblxyXG4vKiogKi9cclxuQENvbXBvbmVudCh7XHJcbiAgdGVtcGxhdGVVcmw6ICd0YXNrcy5jb21wb25lbnQuaHRtbCdcclxufSlcclxuQEJpekRvYyh7IHNlbGVjdG9yOiAnYml6ZG9jLXRhc2tzJyB9KVxyXG5leHBvcnRcclxuICBjbGFzcyBUYXNrc0NvbXBvbmVudCBpbXBsZW1lbnRzIFJlcG9ydENvbXBvbmVudDxNb2RlbCwgQXhlcz4sIE9uRGVzdHJveSB7XHJcbiAgQFZpZXdDaGlsZChLYW5iYW5Db21wb25lbnQpIGthbmJhbjogS2FuYmFuQ29tcG9uZW50O1xyXG4gIHJlYWRvbmx5IGNvbHVtbnM6IENvbHVtbnNNb2RlbFtdO1xyXG4gIHJlYWRvbmx5IGNhcmRTZXR0aW5nczogQ2FyZFNldHRpbmdzTW9kZWwgPSB7IGNvbnRlbnRGaWVsZDogJ3N1YmplY3QnLCBoZWFkZXJGaWVsZDogJ251bWJlcicsIHNob3dIZWFkZXI6IHRydWUgfTtcclxuICByZWFkb25seSBzd2ltbGFuZVNldHRpbmdzOiBTd2ltbGFuZVNldHRpbmdzTW9kZWw7XHJcbiAgcmVhZG9ubHkgYWxsb3dEcmFnQW5kRHJvcDogYm9vbGVhbjtcclxuICBkYXRhU291cmNlOiBNb2RlbFtdO1xyXG4gIGhlaWdodDogbnVtYmVyO1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgX21hcDogeyBbc3RhdGVJZDogc3RyaW5nXTogU3RhdGUgfSA9IHt9O1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgX2Rlc3Ryb3kgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX3JlcG9ydFJlZjogUmVwb3J0UmVmPFRhc2tzU2V0dGluZ3NNb2RlbD4sXHJcbiAgICBwcml2YXRlIF9tYWlsYm94OiBNYWlsYm94U2VydmljZSxcclxuICAgIHByaXZhdGUgX2FjY291bnRzOiBBY2NvdW50U2VydmljZSxcclxuICAgIHByaXZhdGUgX3NiOiBQcm9tcHRTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfaW5mbzogRG9jdW1lbnRJbmZvLFxyXG4gICAgcHJpdmF0ZSBfc2Vzc2lvbjogU2Vzc2lvblNlcnZpY2UpIHtcclxuXHJcbiAgICBjb25zdCB7IHN0YXRlcywgc3dpbWxhbmUsIGFzc2lnbmFibGUgfSA9IHRoaXMuX3JlcG9ydFJlZi5vcHRpb25zO1xyXG4gICAgaWYgKHN3aW1sYW5lICE9PSBmYWxzZSlcclxuICAgICAgdGhpcy5zd2ltbGFuZVNldHRpbmdzID0ge1xyXG4gICAgICAgIGFsbG93RHJhZ0FuZERyb3A6IGFzc2lnbmFibGUgIT09IGZhbHNlLFxyXG4gICAgICAgIHRleHRGaWVsZDogJ3VzZXJOYW1lJyxcclxuICAgICAgICBrZXlGaWVsZDogJ3VzZXJJZCdcclxuICAgICAgfTtcclxuICAgIHRoaXMuYWxsb3dEcmFnQW5kRHJvcCA9IGFzc2lnbmFibGUgIT09IGZhbHNlO1xyXG4gICAgdGhpcy5jb2x1bW5zID0gdGhpcy5fc2Vzc2lvbi5wcm9maWxlLnN0YXRlcy5maWx0ZXIocyA9PiAhc3RhdGVzIHx8IHN0YXRlcy5pbmRleE9mKHMubmFtZSkgPiAtMSkubWFwKHMgPT4ge1xyXG4gICAgICB0aGlzLl9tYXBbcy5uYW1lXSA9IHM7XHJcbiAgICAgIHJldHVybiB7IGhlYWRlclRleHQ6IHMudGl0bGUsIGtleUZpZWxkOiBzLm5hbWUsIGFsbG93VG9nZ2xlOiB0cnVlIH0gYXMgQ29sdW1uc01vZGVsO1xyXG4gICAgfSk7XHJcbiAgICBfcmVwb3J0UmVmLnJlc2l6ZS5cclxuICAgICAgcGlwZSh0YWtlVW50aWwodGhpcy5fZGVzdHJveSkpLlxyXG4gICAgICBzdWJzY3JpYmUoZCA9PlxyXG4gICAgICAgIHRoaXMuaGVpZ2h0ID0gZC5oZWlnaHQgLSAzNSk7XHJcbiAgfVxyXG4gIC8qKlxyXG4gICAqIFxyXG4gICAqIEBwYXJhbSBkYXRhXHJcbiAgICovXHJcbiAgb25CaW5kKGRhdGE6IE1vZGVsW10pIHtcclxuICAgIGlmIChkYXRhLmxlbmd0aClcclxuICAgICAgdGhpcy5fZGVjb3JhdGUoZGF0YSkuc3Vic2NyaWJlKCgpID0+XHJcbiAgICAgICAgdGhpcy5kYXRhU291cmNlID0gZGF0YSk7XHJcbiAgICBlbHNlIHRoaXMuZGF0YVNvdXJjZSA9IFtdO1xyXG4gIH1cclxuICBwcml2YXRlIF9kZWNvcmF0ZShkYXRhOiBNb2RlbFtdKTogT2JzZXJ2YWJsZTxhbnk+IHtcclxuICAgIGNvbnN0IG9ic2VydmFibGVzOiBPYnNlcnZhYmxlPGFueT5bXSA9XHJcbiAgICAgIGRhdGEubWFwKHIgPT4gdGhpcy5fYWNjb3VudHMuZ2V0KHIudXNlcklkKS5waXBlKHRhcCh1ID0+IHIudXNlck5hbWUgPSB1Lm5hbWUpKSk7XHJcbiAgICByZXR1cm4gZm9ya0pvaW4ob2JzZXJ2YWJsZXMpO1xyXG4gIH1cclxuICAvKipcclxuICAgKiBcclxuICAgKiBAcGFyYW0gZXZ0XHJcbiAgICovXHJcbiAgZHJhZyhldnQ6IERyYWdFdmVudEFyZ3MpIHtcclxuICAgIGNvbnN0IHsgaWQsIHN0YXRlSWQsIHVzZXJJZCB9ID0gZXZ0LmRhdGFbMF0gYXMgTW9kZWw7XHJcbiAgICB0aGlzLl9tYWlsYm94LmNoYW5nZVN0YXRlKGlkLCBzdGF0ZUlkLCB1c2VySWQpLlxyXG4gICAgICBzdWJzY3JpYmUodW5kZWZpbmVkLCAoKSA9PiB0aGlzLl9zYi5lcnJvcigpKTtcclxuICB9XHJcbiAgLyoqXHJcbiAgICogXHJcbiAgICogQHBhcmFtIGlkXHJcbiAgICovXHJcbiAgcHJldmlldyhpZDogbnVtYmVyKSB7XHJcbiAgICB0aGlzLl9pbmZvLm9wZW4oaWQpO1xyXG4gIH1cclxuICBjYXJkUmVuZGVyZWQoZXZ0OiBDYXJkUmVuZGVyZWRFdmVudEFyZ3MpIHtcclxuICAgIGNvbnN0IHsgc3RhdGVJZCB9ID0gKGV2dC5kYXRhIGFzIGFueSBhcyBNb2RlbCksIHsgY29sb3I6IGJvcmRlckNvbG9yIH0gPSB0aGlzLl9tYXBbc3RhdGVJZF07XHJcbiAgICAvL2JvcmRlckNvbG9yICYmIHNldFN0eWxlQXR0cmlidXRlKGV2dC5lbGVtZW50IGFzIEhUTUxFbGVtZW50LCB7IGJvcmRlckNvbG9yIH0pO1xyXG4gIH1cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuX2Rlc3Ryb3kubmV4dCgpO1xyXG4gICAgdGhpcy5fZGVzdHJveS5jb21wbGV0ZSgpO1xyXG4gIH1cclxufVxyXG5cclxuXHJcbmludGVyZmFjZSBNb2RlbCB7XHJcbiAgdXNlck5hbWU6IHN0cmluZztcclxuICBpZDogbnVtYmVyO1xyXG4gIG51bWJlcjogc3RyaW5nO1xyXG4gIHN1YmplY3Q6IHN0cmluZztcclxuICB1c2VySWQ6IHN0cmluZztcclxuICB2YWx1ZTogbnVtYmVyO1xyXG4gIGN1cnJlbmN5Q29kZTogc3RyaW5nO1xyXG4gIHN0YXRlSWQ6IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBUYXNrc1NldHRpbmdzTW9kZWwge1xyXG4gIGN1YmU6IHN0cmluZztcclxuICBheGVzOiBzdHJpbmdbXTtcclxuICBzd2ltbGFuZT86IGJvb2xlYW47XHJcbiAgYXNzaWduYWJsZT86IGJvb2xlYW47XHJcbiAgc3RhdGVzPzogc3RyaW5nW107XHJcbn1cclxuaW50ZXJmYWNlIEF4ZXMge1xyXG4gIFtheGlzOiBzdHJpbmddOiAoc3RyaW5nIHwgbnVtYmVyKTtcclxufVxyXG4iLCI8ZWpzLWthbmJhbiAoZHJhZ1N0b3ApPVwiZHJhZygkZXZlbnQpXCIgW2FsbG93RHJhZ0FuZERyb3BdPVwiYWxsb3dEcmFnQW5kRHJvcFwiIFtzd2ltbGFuZVNldHRpbmdzXT1cInN3aW1sYW5lU2V0dGluZ3NcIlxyXG4gICAgICAgICAgICBbY2FyZFNldHRpbmdzXT1cImNhcmRTZXR0aW5nc1wiIFtkYXRhU291cmNlXT1cImRhdGFTb3VyY2VcIiBrZXlGaWVsZD1cInN0YXRlSWRcIiBbY29sdW1uc109XCJjb2x1bW5zXCJcclxuICAgICAgICAgICAgaGVpZ2h0PVwiYXV0b1wiXHJcbiAgICAgICAgICAgIChjYXJkUmVuZGVyZWQpPSdjYXJkUmVuZGVyZWQoJGV2ZW50KSc+XHJcbjwvZWpzLWthbmJhbj5cclxuPG5nLXRlbXBsYXRlICNjYXJkVGVtcGxhdGUgbGV0LWRhdGE+XHJcbiAgPGRpdiBjbGFzcz0nY2FyZC10ZW1wbGF0ZSc+XHJcbiAgICA8ZGl2IGNsYXNzPSdlLWNhcmQtaGVhZGVyJz5cclxuICAgICAgPGRpdiBjbGFzcz0nZS1jYXJkLWhlYWRlci1jYXB0aW9uJz5cclxuICAgICAgICA8ZGl2IGNsYXNzPSdlLWNhcmQtaGVhZGVyLXRpdGxlIGUtdG9vbHRpcC10ZXh0Jz48YSAoY2xpY2spPVwicHJldmlldyhkYXRhLmlkKVwiPiN7e2RhdGEubnVtYmVyfX08L2E+PC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPSdlLWNhcmQtY29udGVudCBlLXRvb2x0aXAtdGV4dCc+XHJcbiAgICAgIDxkaXYgY2xhc3M9J2UtdGV4dCc+e3tkYXRhLnN1YmplY3R9fTwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgICA8IS0tPGRpdiBjbGFzcz0nZS1jYXJkLWN1c3RvbS1mb290ZXInPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiZS1jYXJkLXRhZy1maWVsZCBlLXRvb2x0aXAtdGV4dFwiICpuZ0Zvcj1cImxldCB0YWcgb2YgZGF0YS50YWdzXCI+PC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9J2UtY2FyZC1hdmF0YXInPjwvZGl2PlxyXG4gICAgPC9kaXY+LS0+XHJcbiAgPC9kaXY+XHJcbjwvbmctdGVtcGxhdGU+XHJcbiJdfQ==
|