@bizdoc/core 1.14.16 → 1.15.2
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/assets/themes/brown.min.css +5 -5
- package/assets/themes/dark.min.css +5 -5
- package/assets/themes/deep-purple-light-blue.min.css +6 -6
- package/assets/themes/deep-purple-teal.min.css +6 -6
- package/assets/themes/default.min.css +6 -6
- package/assets/themes/green.min.css +5 -5
- package/assets/themes/indigo.min.css +5 -5
- package/esm2020/lib/admin/admin-dismiss.service.mjs +3 -3
- package/esm2020/lib/admin/admin-menu.component.mjs +9 -9
- package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +77 -0
- package/esm2020/lib/admin/configuration-designer/designer.base.mjs +13 -0
- package/esm2020/lib/admin/configuration-designer/designer.component.mjs +102 -0
- package/esm2020/lib/admin/configuration-designer/elements/action.component.mjs +31 -0
- package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +73 -0
- package/esm2020/lib/admin/configuration-designer/elements/anomaly-rule.component.mjs +31 -0
- package/esm2020/lib/admin/configuration-designer/elements/box-form.component.mjs +31 -0
- package/esm2020/lib/admin/configuration-designer/elements/chart-view.component.mjs +76 -0
- package/esm2020/lib/admin/configuration-designer/elements/cube-view.component.mjs +44 -0
- package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +32 -0
- package/esm2020/lib/admin/configuration-designer/elements/documents-report.component.mjs +51 -0
- package/esm2020/lib/admin/configuration-designer/elements/documents-widget.component.mjs +50 -0
- package/esm2020/lib/admin/configuration-designer/elements/explore-view.component.mjs +43 -0
- package/esm2020/lib/admin/configuration-designer/elements/folder.component.mjs +32 -0
- package/esm2020/lib/admin/configuration-designer/elements/form.component.mjs +79 -0
- package/esm2020/lib/admin/configuration-designer/elements/guide.component.mjs +36 -0
- package/esm2020/lib/admin/configuration-designer/elements/matrix-view.component.mjs +65 -0
- package/esm2020/lib/admin/configuration-designer/elements/parallel-view.component.mjs +56 -0
- package/esm2020/lib/admin/configuration-designer/elements/performance-widget.component.mjs +47 -0
- package/esm2020/lib/admin/configuration-designer/elements/pivot-view.component.mjs +57 -0
- package/esm2020/lib/admin/configuration-designer/elements/report.component.mjs +32 -0
- package/esm2020/lib/admin/configuration-designer/elements/role.component.mjs +31 -0
- package/esm2020/lib/admin/configuration-designer/elements/rule.component.mjs +29 -0
- package/esm2020/lib/admin/configuration-designer/elements/sum-view.component.mjs +57 -0
- package/esm2020/lib/admin/configuration-designer/elements/tasks-report.component.mjs +60 -0
- package/esm2020/lib/admin/configuration-designer/elements/type.component.mjs +33 -0
- package/esm2020/lib/admin/configuration-designer/elements/usage-report.component.mjs +60 -0
- package/esm2020/lib/admin/configuration-designer/elements/utility.component.mjs +32 -0
- package/esm2020/lib/admin/configuration-designer/elements/view.component.mjs +32 -0
- package/esm2020/lib/admin/configuration-designer/elements/widget.component.mjs +31 -0
- package/esm2020/lib/admin/configuration-designer/privileges.component.mjs +35 -0
- package/esm2020/lib/admin/core/ace.input.mjs +5 -12
- package/esm2020/lib/admin/core/color-picker.input.mjs +7 -7
- package/esm2020/lib/admin/core/search.input.mjs +9 -16
- package/esm2020/lib/admin/diff/configuration-diff.component.mjs +17 -17
- package/esm2020/lib/admin/document-trace/document-trace.component.mjs +22 -22
- package/esm2020/lib/admin/document-trace/reassign.dialog.mjs +13 -13
- package/esm2020/lib/admin/document-trace/trace-element.component.mjs +12 -12
- package/esm2020/lib/admin/form/designer/designer.component.mjs +56 -0
- package/esm2020/lib/admin/form/form.resolve.service.mjs +3 -3
- package/esm2020/lib/admin/form/form.service.mjs +11 -6
- package/esm2020/lib/admin/form/workflow/node.component.mjs +11 -11
- package/esm2020/lib/admin/form/workflow/role-node.component.mjs +15 -15
- package/esm2020/lib/admin/form/workflow/workflow.component.mjs +12 -12
- package/esm2020/lib/admin/indices/manage-cube-index.component.mjs +13 -13
- package/esm2020/lib/admin/patterns/patterns.component.mjs +25 -25
- package/esm2020/lib/admin/permissions/permissions.component.mjs +12 -12
- package/esm2020/lib/admin/positions/positions-popup.component.mjs +13 -13
- package/esm2020/lib/admin/positions/positions.component.mjs +19 -19
- package/esm2020/lib/admin/profiler/outofoffice.component.mjs +21 -21
- package/esm2020/lib/admin/profiler/profiler.component.mjs +17 -17
- package/esm2020/lib/admin/utility-ref.mjs +2 -2
- package/esm2020/lib/admin/utility-wrapper.component.mjs +3 -3
- package/esm2020/lib/admin/utility.pane.component.mjs +3 -3
- package/esm2020/lib/app.component.mjs +6 -6
- package/esm2020/lib/bizdoc.module.mjs +11 -13
- package/esm2020/lib/browse/browse-items.component.mjs +25 -25
- package/esm2020/lib/browse/browse.mobile.component.mjs +17 -17
- package/esm2020/lib/browse/browse.pane.component.mjs +17 -17
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +13 -13
- package/esm2020/lib/browse/filter/filter.component.mjs +13 -13
- package/esm2020/lib/browse/folders-menu.component.mjs +12 -12
- package/esm2020/lib/chat/chat-info.mjs +3 -3
- package/esm2020/lib/chat/chat.mobile.component.mjs +7 -7
- package/esm2020/lib/chat/chat.service.mjs +3 -3
- package/esm2020/lib/chat/contacts.component.mjs +23 -23
- package/esm2020/lib/chat/contacts.pane.component.mjs +3 -3
- package/esm2020/lib/chat/conversation.component.mjs +11 -11
- package/esm2020/lib/chat/conversation.pane.component.mjs +6 -12
- package/esm2020/lib/compose/action/action-picker.component.mjs +9 -9
- package/esm2020/lib/compose/action/action.dialog.mjs +7 -7
- package/esm2020/lib/compose/action/action.pane.dialog.exp.mjs +5 -5
- package/esm2020/lib/compose/action/assign-action.component.mjs +13 -13
- package/esm2020/lib/compose/action/moveto-action.component.mjs +10 -10
- package/esm2020/lib/compose/action/return-action.component.mjs +12 -12
- package/esm2020/lib/compose/attachments/attachments.component.mjs +10 -10
- package/esm2020/lib/compose/attachments/preview/attachment-preview.component.mjs +8 -8
- package/esm2020/lib/compose/attachments/progress-button.directive.mjs +3 -3
- package/esm2020/lib/compose/can-deactivate-changes.service.mjs +3 -3
- package/esm2020/lib/compose/comments/comment.component.mjs +15 -15
- package/esm2020/lib/compose/comments/comments.component.mjs +7 -7
- package/esm2020/lib/compose/comments/{Comments.pane.component.mjs → comments.pane.component.mjs} +6 -14
- package/esm2020/lib/compose/comments/edit-comment.component.mjs +3 -3
- package/esm2020/lib/compose/comments/edits.component.mjs +10 -10
- package/esm2020/lib/compose/comments/quick-comment.component.exp.mjs +5 -5
- package/esm2020/lib/compose/comments/votes.component.mjs +10 -10
- package/esm2020/lib/compose/compose-resolve.service.mjs +6 -6
- package/esm2020/lib/compose/compose.mobile.component.mjs +17 -17
- package/esm2020/lib/compose/compose.pane.component.mjs +13 -13
- package/esm2020/lib/compose/copy/copy.dialog.mjs +8 -8
- package/esm2020/lib/compose/dismiss.service.mjs +3 -3
- package/esm2020/lib/compose/document-resolver.service.mjs +3 -3
- package/esm2020/lib/compose/document.component.mjs +3 -3
- package/esm2020/lib/compose/document.mobile.component.mjs +3 -3
- package/esm2020/lib/compose/document.pane.component.mjs +3 -3
- package/esm2020/lib/compose/events/events.component.mjs +8 -8
- package/esm2020/lib/compose/form-selector/form-selector.sheet.mjs +8 -8
- package/esm2020/lib/compose/form.component.mjs +7 -7
- package/esm2020/lib/compose/new-menu.component.mjs +10 -10
- package/esm2020/lib/compose/privilage.directive.mjs +6 -6
- package/esm2020/lib/compose/recipient-resolver.service.mjs +3 -3
- package/esm2020/lib/compose/state.component.mjs +3 -3
- package/esm2020/lib/compose/tag/tags.component.mjs +8 -8
- package/esm2020/lib/compose/trace/flow.component.mjs +63 -82
- package/esm2020/lib/compose/trace/people.component.mjs +5 -5
- package/esm2020/lib/compose/trace/trace.base.mjs +16 -7
- package/esm2020/lib/compose/trace/trace.component.mjs +16 -24
- package/esm2020/lib/compose/trace/trace.pane.component.mjs +3 -3
- package/esm2020/lib/compose/version-compare/version-compare.component.mjs +3 -3
- package/esm2020/lib/compose/version-compare/version-compare.directive.mjs +9 -9
- package/esm2020/lib/compose/version-compare/version.pane.component.mjs +11 -11
- package/esm2020/lib/core/NgComponentOutlet.mjs +3 -3
- package/esm2020/lib/core/account.service.mjs +3 -3
- package/esm2020/lib/core/animated-icon/animated-icon.directive.mjs +3 -3
- package/esm2020/lib/core/avatar/avatar.component.mjs +3 -3
- package/esm2020/lib/core/component-factory-resolver.mjs +4 -4
- package/esm2020/lib/core/controls/address.input.mjs +11 -17
- package/esm2020/lib/core/controls/auto-complete.input.mjs +11 -11
- package/esm2020/lib/core/controls/combination-picker-body.mjs +11 -11
- package/esm2020/lib/core/controls/combination-picker.mjs +3 -3
- package/esm2020/lib/core/controls/combination-pool.mjs +7 -7
- package/esm2020/lib/core/controls/file.input.mjs +10 -10
- package/esm2020/lib/core/controls/select.input.mjs +6 -6
- package/esm2020/lib/core/controls/time-picker.mjs +9 -9
- package/esm2020/lib/core/controls/timespan.input.mjs +8 -35
- package/esm2020/lib/core/datasource.service.mjs +3 -3
- package/esm2020/lib/core/guide/guide.component.mjs +10 -10
- package/esm2020/lib/core/guide/guide.service.mjs +3 -3
- package/esm2020/lib/core/guide/help-tip.component.mjs +11 -23
- package/esm2020/lib/core/http.interceptor.mjs +3 -3
- package/esm2020/lib/core/hub.service.mjs +3 -3
- package/esm2020/lib/core/identity/identity.component.mjs +5 -5
- package/esm2020/lib/core/info/attachment-info.service.mjs +3 -3
- package/esm2020/lib/core/info/document-info.service.mjs +3 -3
- package/esm2020/lib/core/info/location-info.component.mjs +3 -3
- package/esm2020/lib/core/info/map-info.mjs +3 -3
- package/esm2020/lib/core/layout/autocomplete.field.mjs +8 -8
- package/esm2020/lib/core/layout/checkbox.field.mjs +7 -7
- package/esm2020/lib/core/layout/checkbox.mjs +6 -6
- package/esm2020/lib/core/layout/date-range.field.mjs +6 -6
- package/esm2020/lib/core/layout/date.field.mjs +9 -9
- package/esm2020/lib/core/layout/expression.field.mjs +8 -8
- package/esm2020/lib/core/layout/file.field.mjs +11 -9
- package/esm2020/lib/core/layout/html.field.mjs +8 -8
- package/esm2020/lib/core/layout/input.base.mjs +4 -5
- package/esm2020/lib/core/layout/input.field.mjs +8 -8
- package/esm2020/lib/core/layout/layout.component.mjs +3 -3
- package/esm2020/lib/core/layout/numeric.field.mjs +8 -8
- package/esm2020/lib/core/layout/select.field.mjs +10 -10
- package/esm2020/lib/core/layout/switch.field.mjs +7 -7
- package/esm2020/lib/core/layout/textarea.field.mjs +8 -8
- package/esm2020/lib/core/layout/timespan.field.mjs +9 -9
- package/esm2020/lib/core/lottie-animation.mjs +3 -3
- package/esm2020/lib/core/mailbox.service.mjs +6 -4
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/none.component.mjs +7 -7
- package/esm2020/lib/core/pipes/action.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/calendar.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/date-format.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/daterange.pipe.mjs +6 -6
- package/esm2020/lib/core/pipes/difference.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/duration-format.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/duration.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/form.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/join.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/role.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/sanitize-html.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/sort.pipe.mjs +6 -6
- package/esm2020/lib/core/pipes/state.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/time-ago.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/translate.pipe.mjs +6 -6
- package/esm2020/lib/core/pipes/type-value.pipe.mjs +3 -3
- package/esm2020/lib/core/pipes/user-name.pipe.mjs +3 -3
- package/esm2020/lib/core/popup/popup.component.mjs +3 -3
- package/esm2020/lib/core/popup/popup.service.mjs +3 -3
- package/esm2020/lib/core/popup/tooltip.directive.mjs +6 -6
- package/esm2020/lib/core/prompt/ask/ask.dialog.mjs +5 -5
- package/esm2020/lib/core/prompt/mask/mask.component.mjs +3 -3
- package/esm2020/lib/core/prompt.service.mjs +3 -3
- package/esm2020/lib/core/router.mjs +6 -6
- package/esm2020/lib/core/save-changes.dialog.mjs +5 -5
- package/esm2020/lib/core/session.service.mjs +3 -3
- package/esm2020/lib/core/slots/router.directive.mjs +3 -3
- package/esm2020/lib/core/slots/router.service.mjs +3 -3
- package/esm2020/lib/core/slots/slots.component.mjs +14 -14
- package/esm2020/lib/core/tagging/documents.component.mjs +7 -7
- package/esm2020/lib/core/tagging/edit-input.component.mjs +10 -10
- package/esm2020/lib/core/tagging/emoji.component.mjs +4 -4
- package/esm2020/lib/core/tagging/tagging-item.directive.mjs +3 -3
- package/esm2020/lib/core/tagging/tagging.component-base.mjs +3 -3
- package/esm2020/lib/core/tagging/tagging.directive.mjs +3 -3
- package/esm2020/lib/core/tagging/tagging.pipe.mjs +3 -3
- package/esm2020/lib/core/tagging/users.component.mjs +7 -7
- package/esm2020/lib/core/translate.service.mjs +3 -3
- package/esm2020/lib/core/translations.mjs +11 -1
- package/esm2020/lib/core/window-title.service.mjs +3 -3
- package/esm2020/lib/cube/accum/accum.component.mjs +3 -3
- package/esm2020/lib/cube/chart/chart.component.mjs +3 -3
- package/esm2020/lib/cube/cube-info.service.mjs +3 -3
- package/esm2020/lib/cube/cube-menu.component.mjs +10 -10
- package/esm2020/lib/cube/cube-view.component.mjs +3 -3
- package/esm2020/lib/cube/cube.service.mjs +4 -4
- package/esm2020/lib/cube/explore/document-item.component.mjs +3 -3
- package/esm2020/lib/cube/explore/explore-item.component.mjs +3 -3
- package/esm2020/lib/cube/explore/explore-items.component.mjs +8 -8
- package/esm2020/lib/cube/explore/explore.pane.component.mjs +12 -15
- package/esm2020/lib/cube/explore/item-resolver.service.mjs +6 -6
- package/esm2020/lib/cube/explore/item.pane.component.mjs +3 -3
- package/esm2020/lib/cube/filter/filter-tags.component.exp.mjs +7 -7
- package/esm2020/lib/cube/filter/filter.component.mjs +11 -11
- package/esm2020/lib/cube/grid/grid.component.mjs +3 -3
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +5 -5
- package/esm2020/lib/cube/matrix/matrix.base.mjs +6 -10
- package/esm2020/lib/cube/matrix/matrix.mobile.component.mjs +20 -16
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +20 -16
- package/esm2020/lib/cube/matrix/popup.component.mjs +11 -11
- package/esm2020/lib/cube/matrix/table.component.mjs +4 -4
- package/esm2020/lib/cube/parallel/parallel.component.mjs +5 -5
- package/esm2020/lib/cube/pivot/pivot.component.mjs +6 -11
- package/esm2020/lib/cube/sum/sum.component.mjs +6 -6
- package/esm2020/lib/cube/view-base.mjs +6 -10
- package/esm2020/lib/cube/view.mobile.component.mjs +14 -14
- package/esm2020/lib/cube/view.pane.component.mjs +13 -13
- package/esm2020/lib/dashboard/actions/actions.widget.mjs +3 -3
- package/esm2020/lib/dashboard/cube/accum-cube.widget.mjs +4 -4
- package/esm2020/lib/dashboard/cube/compare.widget.mjs +12 -12
- package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +3 -3
- package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +3 -3
- package/esm2020/lib/dashboard/cube/cube-chart.widget.mjs +4 -4
- package/esm2020/lib/dashboard/cube/documents.widget.mjs +4 -4
- package/esm2020/lib/dashboard/cube/filter/filter.component.mjs +3 -3
- package/esm2020/lib/dashboard/dashboard.component.mjs +11 -11
- package/esm2020/lib/dashboard/dashboard.pane.component.mjs +5 -11
- package/esm2020/lib/dashboard/recents/recents.widget.mjs +9 -9
- package/esm2020/lib/dashboard/score/activity.widget.mjs +3 -3
- package/esm2020/lib/dashboard/score/compare-groups.widget.mjs +3 -3
- package/esm2020/lib/dashboard/score/peers-performance.widget.mjs +3 -3
- package/esm2020/lib/dashboard/score/pending-results.widget.mjs +12 -12
- package/esm2020/lib/dashboard/score/personal-score.widget.mjs +3 -3
- package/esm2020/lib/dashboard/widget-item.component.mjs +3 -3
- package/esm2020/lib/desktop.module.mjs +11 -13
- package/esm2020/lib/home/about/about.dialog.mjs +7 -7
- package/esm2020/lib/home/home-base.component.mjs +3 -3
- package/esm2020/lib/home/home.desktop.component.mjs +19 -19
- package/esm2020/lib/home/home.mobile.component.mjs +16 -16
- package/esm2020/lib/home/notifications/notifications.component.mjs +12 -12
- package/esm2020/lib/home/options/options.component.mjs +11 -11
- package/esm2020/lib/home/outofoffice/outofoffice.component.mjs +8 -8
- package/esm2020/lib/home/search.service.mjs +3 -3
- package/esm2020/lib/home/sign/sign.component.mjs +6 -6
- package/esm2020/lib/home/tools.component.mjs +13 -13
- package/esm2020/lib/impersonate/impersonate.component.mjs +10 -10
- package/esm2020/lib/mobile.module.mjs +11 -13
- package/esm2020/lib/modules/chart.module.mjs +6 -6
- package/esm2020/lib/modules/circular-gauge.module.mjs +5 -5
- package/esm2020/lib/modules/date.adapter.mjs +1 -1
- package/esm2020/lib/modules/datepicker.intl.mjs +4 -4
- package/esm2020/lib/modules/dayjs.module.mjs +5 -5
- package/esm2020/lib/modules/diagram.module.mjs +7 -9
- package/esm2020/lib/modules/gantt.module.mjs +5 -5
- package/esm2020/lib/modules/grid.module.mjs +6 -6
- package/esm2020/lib/modules/material.module.mjs +20 -22
- package/esm2020/lib/modules/paginator.intl.mjs +4 -4
- package/esm2020/lib/modules/pivot.module.mjs +5 -7
- package/esm2020/lib/modules/schedule.module.mjs +6 -6
- package/esm2020/lib/modules/spreadsheet.module.mjs +7 -9
- package/esm2020/lib/modules/stepper.intl.mjs +4 -4
- package/esm2020/lib/modules/texteditor.module.mjs +6 -8
- package/esm2020/lib/notifications/filter.component.mjs +8 -8
- package/esm2020/lib/notifications/notifications-table.component.mjs +16 -16
- package/esm2020/lib/notifications/notifications.mobile.component.mjs +3 -3
- package/esm2020/lib/notifications/notifications.pane.component.mjs +3 -3
- package/esm2020/lib/notifications/notifications.service.mjs +3 -3
- package/esm2020/lib/notifications/types/commented.notification.mjs +5 -5
- package/esm2020/lib/notifications/types/cube-anomaly.notification.mjs +5 -5
- package/esm2020/lib/notifications/types/escalated.notification.mjs +6 -6
- package/esm2020/lib/notifications/types/liked.notification.mjs +5 -5
- package/esm2020/lib/notifications/types/long-running-task.notification.mjs +3 -3
- package/esm2020/lib/notifications/types/notification-base.mjs +3 -3
- package/esm2020/lib/notifications/types/nudge.notification.mjs +6 -6
- package/esm2020/lib/notifications/types/state-changed.notification.mjs +6 -6
- package/esm2020/lib/notifications/types/tagged.notification.mjs +5 -5
- package/esm2020/lib/notifications/types/text.notification.mjs +3 -3
- package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +5 -5
- package/esm2020/lib/options/options.component.mjs +15 -15
- package/esm2020/lib/options/options.service.mjs +3 -3
- package/esm2020/lib/reports/arguments-component.mjs +3 -3
- package/esm2020/lib/reports/cube/documents.component.mjs +3 -3
- package/esm2020/lib/reports/cube/grid-documents.component.mjs +9 -9
- package/esm2020/lib/reports/cube/table-documents.component.mjs +10 -10
- package/esm2020/lib/reports/cube/usage-args.component.mjs +3 -3
- package/esm2020/lib/reports/cube/usage-base.mjs +3 -3
- package/esm2020/lib/reports/cube/usage-chart.component.mjs +4 -4
- package/esm2020/lib/reports/cube/usage-pivot.component.mjs +4 -4
- package/esm2020/lib/reports/cube/usage.component.mjs +3 -3
- package/esm2020/lib/reports/report-viewer.component.mjs +3 -3
- package/esm2020/lib/reports/report.mobile.component.mjs +12 -12
- package/esm2020/lib/reports/report.pane.component.mjs +11 -11
- package/esm2020/lib/reports/reports-menu.component.mjs +9 -9
- package/esm2020/lib/reports/substitution/substitution.component.mjs +12 -12
- package/esm2020/lib/reports/table/table-view.component.mjs +8 -8
- package/esm2020/lib/reports/tasks/tasks.component.mjs +3 -3
- package/esm2020/lib/routes.desktop.mjs +1 -1
- package/esm2020/lib/scheduler/schedule.component.mjs +13 -13
- package/esm2020/lib/scheduler/scheduler.mobile.component.mjs +3 -3
- package/esm2020/lib/scheduler/scheduler.pane.component.mjs +3 -3
- package/esm2020/lib/shared.module.mjs +30 -32
- package/esm2020/lib/system.module.mjs +61 -19
- package/esm2020/lib/views/cube/chart.component.mjs +7 -7
- package/esm2020/lib/views/cube/cube-base.mjs +3 -3
- package/esm2020/lib/views/cube/explore.component.mjs +9 -9
- package/esm2020/lib/views/cube/matrix.component.mjs +12 -12
- package/esm2020/lib/views/cube/parallel.component.mjs +5 -5
- package/esm2020/lib/views/cube/pivot.component.mjs +5 -5
- package/esm2020/lib/views/cube/sum.component.mjs +10 -10
- package/esm2020/lib/views/cube/view.component.mjs +9 -9
- package/esm2020/lib/views/timeline/timeline.component.exp.mjs +3 -3
- package/esm2020/lib/views/view-item.component.mjs +3 -3
- package/esm2020/lib/views/views.component.mjs +5 -5
- package/esm2020/lib/views/views.mobile.component.mjs +3 -3
- package/esm2020/lib/views/views.pane.component.mjs +5 -10
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs +2891 -1853
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +2888 -1855
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/{bizdoc-core.d.ts → index.d.ts} +0 -0
- package/lib/admin/admin-menu.component.d.ts +1 -1
- package/lib/admin/configuration-designer/designer-element.component.d.ts +23 -0
- package/lib/admin/configuration-designer/designer.base.d.ts +38 -0
- package/lib/admin/configuration-designer/designer.component.d.ts +47 -0
- package/lib/admin/configuration-designer/elements/action.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts +45 -0
- package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/box-form.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/chart-view.component.d.ts +45 -0
- package/lib/admin/configuration-designer/elements/cube-view.component.d.ts +37 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/documents-report.component.d.ts +37 -0
- package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts +36 -0
- package/lib/admin/configuration-designer/elements/explore-view.component.d.ts +35 -0
- package/lib/admin/configuration-designer/elements/folder.component.d.ts +19 -0
- package/lib/admin/configuration-designer/elements/form.component.d.ts +35 -0
- package/lib/admin/configuration-designer/elements/guide.component.d.ts +22 -0
- package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts +45 -0
- package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts +41 -0
- package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts +32 -0
- package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts +39 -0
- package/lib/admin/configuration-designer/elements/report.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/role.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/rule.component.d.ts +17 -0
- package/lib/admin/configuration-designer/elements/sum-view.component.d.ts +42 -0
- package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts +39 -0
- package/lib/admin/configuration-designer/elements/type.component.d.ts +21 -0
- package/lib/admin/configuration-designer/elements/usage-report.component.d.ts +39 -0
- package/lib/admin/configuration-designer/elements/utility.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/view.component.d.ts +20 -0
- package/lib/admin/configuration-designer/elements/widget.component.d.ts +20 -0
- package/lib/admin/configuration-designer/privileges.component.d.ts +20 -0
- package/lib/admin/core/ace.input.d.ts +1 -1
- package/lib/admin/core/color-picker.input.d.ts +1 -1
- package/lib/admin/core/search.input.d.ts +2 -2
- package/lib/admin/diff/configuration-diff.component.d.ts +1 -1
- package/lib/admin/document-trace/document-trace.component.d.ts +7 -4
- package/lib/admin/document-trace/reassign.dialog.d.ts +6 -3
- package/lib/admin/document-trace/trace-element.component.d.ts +1 -1
- package/lib/admin/form/designer/designer.component.d.ts +46 -0
- package/lib/admin/form/form.service.d.ts +6 -4
- package/lib/admin/form/workflow/node.component.d.ts +5 -2
- package/lib/admin/form/workflow/role-node.component.d.ts +14 -2
- package/lib/admin/form/workflow/workflow.component.d.ts +1 -1
- package/lib/admin/indices/manage-cube-index.component.d.ts +1 -1
- package/lib/admin/patterns/patterns.component.d.ts +10 -6
- package/lib/admin/permissions/permissions.component.d.ts +1 -1
- package/lib/admin/positions/positions-popup.component.d.ts +2 -2
- package/lib/admin/positions/positions.component.d.ts +14 -6
- package/lib/admin/profiler/outofoffice.component.d.ts +26 -7
- package/lib/admin/profiler/profiler.component.d.ts +3 -3
- package/lib/admin/utility-wrapper.component.d.ts +1 -1
- package/lib/admin/utility.pane.component.d.ts +1 -1
- package/lib/app.component.d.ts +2 -2
- package/lib/browse/browse-items.component.d.ts +1 -1
- package/lib/browse/browse.mobile.component.d.ts +1 -1
- package/lib/browse/browse.pane.component.d.ts +2 -2
- package/lib/browse/expanded-item/expanded-item.component.d.ts +1 -1
- package/lib/browse/filter/filter.component.d.ts +10 -3
- package/lib/browse/folders-menu.component.d.ts +1 -1
- package/lib/chat/chat.mobile.component.d.ts +1 -1
- package/lib/chat/contacts.component.d.ts +3 -3
- package/lib/chat/contacts.pane.component.d.ts +1 -1
- package/lib/chat/conversation.component.d.ts +1 -1
- package/lib/chat/conversation.pane.component.d.ts +1 -1
- package/lib/compose/action/action-picker.component.d.ts +1 -1
- package/lib/compose/action/action.dialog.d.ts +1 -1
- package/lib/compose/action/action.pane.dialog.exp.d.ts +1 -1
- package/lib/compose/action/assign-action.component.d.ts +8 -3
- package/lib/compose/action/moveto-action.component.d.ts +6 -3
- package/lib/compose/action/return-action.component.d.ts +5 -2
- package/lib/compose/attachments/attachments.component.d.ts +1 -1
- package/lib/compose/attachments/preview/attachment-preview.component.d.ts +1 -1
- package/lib/compose/attachments/progress-button.directive.d.ts +1 -1
- package/lib/compose/comments/comment.component.d.ts +1 -1
- package/lib/compose/comments/comments.component.d.ts +1 -1
- package/lib/compose/comments/{Comments.pane.component.d.ts → comments.pane.component.d.ts} +1 -1
- package/lib/compose/comments/edit-comment.component.d.ts +1 -1
- package/lib/compose/comments/edits.component.d.ts +1 -1
- package/lib/compose/comments/quick-comment.component.exp.d.ts +1 -1
- package/lib/compose/comments/votes.component.d.ts +1 -1
- package/lib/compose/compose.mobile.component.d.ts +1 -1
- package/lib/compose/compose.pane.component.d.ts +1 -1
- package/lib/compose/copy/copy.dialog.d.ts +2 -2
- package/lib/compose/document.component.d.ts +1 -1
- package/lib/compose/document.mobile.component.d.ts +1 -1
- package/lib/compose/document.pane.component.d.ts +1 -1
- package/lib/compose/events/events.component.d.ts +1 -1
- package/lib/compose/form-selector/form-selector.sheet.d.ts +1 -1
- package/lib/compose/form.component.d.ts +1 -1
- package/lib/compose/new-menu.component.d.ts +2 -2
- package/lib/compose/privilage.directive.d.ts +2 -2
- package/lib/compose/state.component.d.ts +1 -1
- package/lib/compose/tag/tags.component.d.ts +2 -2
- package/lib/compose/trace/flow.component.d.ts +11 -8
- package/lib/compose/trace/people.component.d.ts +1 -1
- package/lib/compose/trace/trace.base.d.ts +8 -3
- package/lib/compose/trace/trace.component.d.ts +5 -8
- package/lib/compose/trace/trace.pane.component.d.ts +1 -1
- package/lib/compose/version-compare/version-compare.component.d.ts +1 -1
- package/lib/compose/version-compare/version-compare.directive.d.ts +3 -3
- package/lib/compose/version-compare/version.pane.component.d.ts +1 -1
- package/lib/core/NgComponentOutlet.d.ts +1 -1
- package/lib/core/animated-icon/animated-icon.directive.d.ts +1 -1
- package/lib/core/avatar/avatar.component.d.ts +1 -1
- package/lib/core/component-factory-resolver.d.ts +1 -1
- package/lib/core/controls/address.input.d.ts +2 -2
- package/lib/core/controls/auto-complete.input.d.ts +2 -2
- package/lib/core/controls/combination-picker-body.d.ts +2 -2
- package/lib/core/controls/combination-picker.d.ts +1 -1
- package/lib/core/controls/combination-pool.d.ts +1 -1
- package/lib/core/controls/file.input.d.ts +1 -1
- package/lib/core/controls/select.input.d.ts +2 -2
- package/lib/core/controls/time-picker.d.ts +2 -2
- package/lib/core/controls/timespan.input.d.ts +6 -2
- package/lib/core/guide/guide.component.d.ts +1 -1
- package/lib/core/guide/help-tip.component.d.ts +1 -1
- package/lib/core/identity/identity.component.d.ts +1 -1
- package/lib/core/info/location-info.component.d.ts +1 -1
- package/lib/core/layout/autocomplete.field.d.ts +2 -2
- package/lib/core/layout/checkbox.d.ts +1 -1
- package/lib/core/layout/checkbox.field.d.ts +2 -2
- package/lib/core/layout/date-range.field.d.ts +5 -2
- package/lib/core/layout/date.field.d.ts +2 -2
- package/lib/core/layout/expression.field.d.ts +2 -2
- package/lib/core/layout/file.field.d.ts +3 -2
- package/lib/core/layout/html.field.d.ts +2 -2
- package/lib/core/layout/input.base.d.ts +2 -2
- package/lib/core/layout/input.field.d.ts +2 -2
- package/lib/core/layout/layout.component.d.ts +1 -1
- package/lib/core/layout/numeric.field.d.ts +2 -2
- package/lib/core/layout/select.field.d.ts +2 -2
- package/lib/core/layout/switch.field.d.ts +2 -2
- package/lib/core/layout/textarea.field.d.ts +2 -2
- package/lib/core/layout/timespan.field.d.ts +2 -2
- package/lib/core/lottie-animation.d.ts +1 -1
- package/lib/core/mailbox.service.d.ts +7 -0
- package/lib/core/none.component.d.ts +1 -1
- package/lib/core/pipes/action.pipe.d.ts +1 -1
- package/lib/core/pipes/calendar.pipe.d.ts +1 -1
- package/lib/core/pipes/date-format.pipe.d.ts +1 -1
- package/lib/core/pipes/daterange.pipe.d.ts +2 -2
- package/lib/core/pipes/difference.pipe.d.ts +1 -1
- package/lib/core/pipes/duration-format.pipe.d.ts +1 -1
- package/lib/core/pipes/duration.pipe.d.ts +1 -1
- package/lib/core/pipes/form.pipe.d.ts +1 -1
- package/lib/core/pipes/join.pipe.d.ts +1 -1
- package/lib/core/pipes/role.pipe.d.ts +1 -1
- package/lib/core/pipes/sanitize-html.pipe.d.ts +1 -1
- package/lib/core/pipes/sort.pipe.d.ts +2 -2
- package/lib/core/pipes/state.pipe.d.ts +1 -1
- package/lib/core/pipes/time-ago.pipe.d.ts +1 -1
- package/lib/core/pipes/translate.pipe.d.ts +2 -2
- package/lib/core/pipes/type-value.pipe.d.ts +1 -1
- package/lib/core/pipes/user-name.pipe.d.ts +1 -1
- package/lib/core/popup/popup.component.d.ts +1 -1
- package/lib/core/popup/tooltip.directive.d.ts +2 -2
- package/lib/core/prompt/ask/ask.dialog.d.ts +1 -1
- package/lib/core/prompt/mask/mask.component.d.ts +1 -1
- package/lib/core/save-changes.dialog.d.ts +1 -1
- package/lib/core/slots/router.directive.d.ts +1 -1
- package/lib/core/slots/slots.component.d.ts +2 -2
- package/lib/core/tagging/documents.component.d.ts +1 -1
- package/lib/core/tagging/edit-input.component.d.ts +1 -1
- package/lib/core/tagging/emoji.component.d.ts +1 -1
- package/lib/core/tagging/tagging-item.directive.d.ts +1 -1
- package/lib/core/tagging/tagging.component-base.d.ts +1 -1
- package/lib/core/tagging/tagging.directive.d.ts +1 -1
- package/lib/core/tagging/tagging.pipe.d.ts +1 -1
- package/lib/core/tagging/users.component.d.ts +1 -1
- package/lib/core/translations.d.ts +10 -0
- package/lib/cube/accum/accum.component.d.ts +1 -1
- package/lib/cube/chart/chart.component.d.ts +1 -1
- package/lib/cube/cube-menu.component.d.ts +1 -1
- package/lib/cube/cube-view.component.d.ts +1 -1
- package/lib/cube/explore/document-item.component.d.ts +1 -1
- package/lib/cube/explore/explore-item.component.d.ts +1 -1
- package/lib/cube/explore/explore-items.component.d.ts +1 -1
- package/lib/cube/explore/explore.pane.component.d.ts +1 -1
- package/lib/cube/explore/item.pane.component.d.ts +1 -1
- package/lib/cube/filter/filter-tags.component.exp.d.ts +1 -1
- package/lib/cube/filter/filter.component.d.ts +1 -1
- package/lib/cube/grid/grid.component.d.ts +1 -1
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -1
- package/lib/cube/matrix/matrix.base.d.ts +2 -2
- package/lib/cube/matrix/matrix.mobile.component.d.ts +3 -1
- package/lib/cube/matrix/matrix.pane.component.d.ts +3 -2
- package/lib/cube/matrix/popup.component.d.ts +1 -1
- package/lib/cube/matrix/table.component.d.ts +1 -1
- package/lib/cube/parallel/parallel.component.d.ts +1 -1
- package/lib/cube/pivot/pivot.component.d.ts +1 -1
- package/lib/cube/sum/sum.component.d.ts +1 -1
- package/lib/cube/view-base.d.ts +2 -2
- package/lib/cube/view.mobile.component.d.ts +1 -2
- package/lib/cube/view.pane.component.d.ts +1 -1
- package/lib/dashboard/actions/actions.widget.d.ts +1 -1
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -1
- package/lib/dashboard/cube/compare.widget.d.ts +3 -3
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -1
- package/lib/dashboard/cube/cube-analysis.widget.d.ts +1 -1
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -1
- package/lib/dashboard/cube/documents.widget.d.ts +1 -1
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -1
- package/lib/dashboard/dashboard.component.d.ts +1 -1
- package/lib/dashboard/dashboard.pane.component.d.ts +1 -1
- package/lib/dashboard/recents/recents.widget.d.ts +2 -2
- package/lib/dashboard/score/activity.widget.d.ts +1 -1
- package/lib/dashboard/score/compare-groups.widget.d.ts +1 -1
- package/lib/dashboard/score/peers-performance.widget.d.ts +1 -1
- package/lib/dashboard/score/pending-results.widget.d.ts +1 -1
- package/lib/dashboard/score/personal-score.widget.d.ts +1 -1
- package/lib/dashboard/widget-item.component.d.ts +1 -1
- package/lib/desktop.module.d.ts +1 -1
- package/lib/home/about/about.dialog.d.ts +1 -1
- package/lib/home/home-base.component.d.ts +1 -1
- package/lib/home/home.desktop.component.d.ts +1 -1
- package/lib/home/home.mobile.component.d.ts +1 -1
- package/lib/home/notifications/notifications.component.d.ts +1 -1
- package/lib/home/options/options.component.d.ts +1 -1
- package/lib/home/outofoffice/outofoffice.component.d.ts +1 -1
- package/lib/home/sign/sign.component.d.ts +1 -1
- package/lib/home/tools.component.d.ts +2 -2
- package/lib/impersonate/impersonate.component.d.ts +2 -2
- package/lib/notifications/filter.component.d.ts +5 -2
- package/lib/notifications/notifications-table.component.d.ts +1 -1
- package/lib/notifications/notifications.mobile.component.d.ts +1 -1
- package/lib/notifications/notifications.pane.component.d.ts +1 -1
- package/lib/notifications/types/commented.notification.d.ts +1 -1
- package/lib/notifications/types/cube-anomaly.notification.d.ts +1 -1
- package/lib/notifications/types/escalated.notification.d.ts +1 -1
- package/lib/notifications/types/liked.notification.d.ts +1 -1
- package/lib/notifications/types/long-running-task.notification.d.ts +1 -1
- package/lib/notifications/types/notification-base.d.ts +1 -1
- package/lib/notifications/types/nudge.notification.d.ts +1 -1
- package/lib/notifications/types/state-changed.notification.d.ts +1 -1
- package/lib/notifications/types/tagged.notification.d.ts +1 -1
- package/lib/notifications/types/text.notification.d.ts +1 -1
- package/lib/notifications/types/upcoming-event.notification.d.ts +1 -1
- package/lib/options/options.component.d.ts +37 -6
- package/lib/reports/arguments-component.d.ts +1 -1
- package/lib/reports/cube/documents.component.d.ts +1 -1
- package/lib/reports/cube/grid-documents.component.d.ts +1 -1
- package/lib/reports/cube/table-documents.component.d.ts +1 -1
- package/lib/reports/cube/usage-args.component.d.ts +1 -1
- package/lib/reports/cube/usage-base.d.ts +1 -1
- package/lib/reports/cube/usage-chart.component.d.ts +1 -1
- package/lib/reports/cube/usage-pivot.component.d.ts +1 -1
- package/lib/reports/cube/usage.component.d.ts +1 -1
- package/lib/reports/report-viewer.component.d.ts +1 -1
- package/lib/reports/report.mobile.component.d.ts +1 -1
- package/lib/reports/report.pane.component.d.ts +1 -1
- package/lib/reports/reports-menu.component.d.ts +1 -1
- package/lib/reports/substitution/substitution.component.d.ts +1 -1
- package/lib/reports/table/table-view.component.d.ts +1 -1
- package/lib/reports/tasks/tasks.component.d.ts +1 -1
- package/lib/scheduler/schedule.component.d.ts +1 -1
- package/lib/scheduler/scheduler.mobile.component.d.ts +1 -1
- package/lib/scheduler/scheduler.pane.component.d.ts +1 -1
- package/lib/shared.module.d.ts +1 -1
- package/lib/system.module.d.ts +57 -27
- package/lib/views/cube/chart.component.d.ts +1 -1
- package/lib/views/cube/cube-base.d.ts +1 -1
- package/lib/views/cube/explore.component.d.ts +1 -1
- package/lib/views/cube/matrix.component.d.ts +1 -1
- package/lib/views/cube/parallel.component.d.ts +1 -1
- package/lib/views/cube/pivot.component.d.ts +1 -1
- package/lib/views/cube/sum.component.d.ts +1 -2
- package/lib/views/cube/view.component.d.ts +1 -1
- package/lib/views/timeline/timeline.component.exp.d.ts +1 -1
- package/lib/views/view-item.component.d.ts +1 -1
- package/lib/views/views.component.d.ts +1 -1
- package/lib/views/views.mobile.component.d.ts +1 -1
- package/lib/views/views.pane.component.d.ts +1 -1
- package/package.json +33 -33
- package/public-api.d.ts +1 -1
- package/assets/.gitkeep +0 -0
@@ -8,19 +8,20 @@ import { AxesMap } from '../../core/models';
|
|
8
8
|
import { CubeMatrixBase } from './matrix.base';
|
9
9
|
import { TranslateService } from '../../core/translate.service';
|
10
10
|
import { AxisClickEvent } from '../declarations';
|
11
|
-
import { SumSettings } from './table.component';
|
11
|
+
import { CubeMatrixComponent, SumSettings } from './table.component';
|
12
12
|
import * as i0 from "@angular/core";
|
13
13
|
export declare class CubeMatrixPaneComponent extends CubeMatrixBase implements OnInit {
|
14
14
|
private _pane;
|
15
15
|
private _router;
|
16
16
|
private _translate;
|
17
|
+
table: CubeMatrixComponent;
|
17
18
|
/** cube-info ctor */
|
18
19
|
constructor(_pane: PaneRef<CubeMatrixPaneComponent, Data>, _router: PanesRouter, _translate: TranslateService, service: CubeService, ds: DatasourceService, session: SessionService);
|
19
20
|
ngOnInit(): void;
|
20
21
|
onFilter(queryParams: AxesMap): void;
|
21
22
|
explore(evt: AxisClickEvent): void;
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixPaneComponent, never>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixPaneComponent, "ng-component", never, {}, {}, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
24
25
|
}
|
25
26
|
interface Data {
|
26
27
|
indices: string | string[];
|
@@ -17,5 +17,5 @@ export declare class CubeMatrixPopupComponent extends CubeMatrixBase implements
|
|
17
17
|
constructor(_ref: PopupRef, data: CubeData, service: CubeService, ds: DatasourceService, session: SessionService);
|
18
18
|
ngOnInit(): void;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixPopupComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixPopupComponent, "ng-component", never, {}, {}, never, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixPopupComponent, "ng-component", never, {}, {}, never, never, false>;
|
21
21
|
}
|
@@ -69,7 +69,7 @@ export declare class CubeMatrixComponent implements OnChanges {
|
|
69
69
|
export(): void;
|
70
70
|
_move(x: any, y: any): void;
|
71
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixComponent, never>;
|
72
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixComponent, "bizdoc-cube-matrix", never, { "seriesTotalLabel": "seriesTotalLabel"; "xAxisTotalLabel": "xAxisTotalLabel"; "_cube": "cube"; "_xAxis": "xAxis"; "_series": "series"; "_indices": "indices"; "indexAt": "indexAt"; "placeAt": "placeAt"; "scope": "scope"; "sum": "sum"; "filters": "filters"; "loading": "loading"; "interactive": "interactive"; }, { "onExplore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixComponent, "bizdoc-cube-matrix", never, { "seriesTotalLabel": "seriesTotalLabel"; "xAxisTotalLabel": "xAxisTotalLabel"; "_cube": "cube"; "_xAxis": "xAxis"; "_series": "series"; "_indices": "indices"; "indexAt": "indexAt"; "placeAt": "placeAt"; "scope": "scope"; "sum": "sum"; "filters": "filters"; "loading": "loading"; "interactive": "interactive"; }, { "onExplore": "explore"; "loadingChange": "loadingChange"; }, never, never, false>;
|
73
73
|
}
|
74
74
|
export declare type SumSettings = {
|
75
75
|
value?: string | number;
|
@@ -44,7 +44,7 @@ export declare class CubeParallelComponent implements OnInit, OnChanges, OnDestr
|
|
44
44
|
sprklineClick(item: Item, evt: IPointRegionEventArgs): void;
|
45
45
|
ngOnDestroy(): void;
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeParallelComponent, never>;
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeParallelComponent, "bizdoc-cube-parallel", never, { "filters": "filters"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "cube": "cube"; "size": "size"; "chartType": "chartType"; "scope": "scope"; "palettes": "palettes"; }, { "onExplore": "explore"; }, never, never>;
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeParallelComponent, "bizdoc-cube-parallel", never, { "filters": "filters"; "xAxis": "xAxis"; "series": "series"; "indices": "indices"; "cube": "cube"; "size": "size"; "chartType": "chartType"; "scope": "scope"; "palettes": "palettes"; }, { "onExplore": "explore"; }, never, never, false>;
|
48
48
|
}
|
49
49
|
export interface ExploreEvent {
|
50
50
|
axes: AxesMap;
|
@@ -101,5 +101,5 @@ export declare class CubePivotComponent implements CubeViewerComponent, OnInit,
|
|
101
101
|
resize(): void;
|
102
102
|
ngOnDestroy(): void;
|
103
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubePivotComponent, never>;
|
104
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubePivotComponent, "bizdoc-cube-pivot", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "yAxis": "yAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "chartType": "chartType"; "indicesChartType": "indicesChartType"; "palettes": "palettes"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
104
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubePivotComponent, "bizdoc-cube-pivot", never, { "width": "width"; "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "yAxis": "yAxis"; "series": "series"; "indices": "indices"; "filters": "filters"; "chartType": "chartType"; "indicesChartType": "indicesChartType"; "palettes": "palettes"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never, false>;
|
105
105
|
}
|
@@ -53,7 +53,7 @@ export declare class CubeSumComponent implements OnChanges {
|
|
53
53
|
*/
|
54
54
|
explore(level: Level, index?: string): void;
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeSumComponent, never>;
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeSumComponent, "bizdoc-cube-sum", never, { "xAxis": "xAxis"; "periodPolicy": "periodPolicy"; "parentAxis": "parentAxis"; "filters": "filters"; "cube": "cube"; "indices": "indices"; "scope": "scope"; }, { "onExplore": "explore"; }, never, never>;
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeSumComponent, "bizdoc-cube-sum", never, { "xAxis": "xAxis"; "periodPolicy": "periodPolicy"; "parentAxis": "parentAxis"; "filters": "filters"; "cube": "cube"; "indices": "indices"; "scope": "scope"; }, { "onExplore": "explore"; }, never, never, false>;
|
57
57
|
}
|
58
58
|
export interface ExploreEvent {
|
59
59
|
axes: AxesMap;
|
package/lib/cube/view-base.d.ts
CHANGED
@@ -10,7 +10,7 @@ export declare abstract class ViewBase {
|
|
10
10
|
protected _router: RouterImpl;
|
11
11
|
protected _service: CubeService;
|
12
12
|
private _guide;
|
13
|
-
viewPane: CubeViewComponent;
|
13
|
+
abstract viewPane: CubeViewComponent;
|
14
14
|
patterns: Pattern[];
|
15
15
|
pattern: Pattern;
|
16
16
|
private _cube;
|
@@ -35,5 +35,5 @@ export declare abstract class ViewBase {
|
|
35
35
|
navigate(queryParams: any): void;
|
36
36
|
guide(evt?: Event): void;
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewBase, never>;
|
38
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewBase, never, never, {}, {}, never>;
|
38
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewBase, never, never, {}, {}, never, never, false>;
|
39
39
|
}
|
@@ -22,7 +22,6 @@ export declare class CubeMobileViewComponent extends ViewBase implements OnInit,
|
|
22
22
|
drawer: MatSidenav;
|
23
23
|
explorePane: ExploreItemsComponent;
|
24
24
|
index: string;
|
25
|
-
loading: boolean;
|
26
25
|
template: string;
|
27
26
|
item: any;
|
28
27
|
private _navigating;
|
@@ -42,5 +41,5 @@ export declare class CubeMobileViewComponent extends ViewBase implements OnInit,
|
|
42
41
|
filterChange(axes: AxesMap): void;
|
43
42
|
ngOnDestroy(): void;
|
44
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMobileViewComponent, never>;
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMobileViewComponent, "ng-component", never, {}, {}, never, never>;
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMobileViewComponent, "ng-component", never, {}, {}, never, never, false>;
|
46
45
|
}
|
@@ -23,5 +23,5 @@ export declare class CubeViewPaneComponent extends ViewBase implements OnInit {
|
|
23
23
|
filterToggle(evt: Event): void;
|
24
24
|
guide(evt?: Event): void;
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeViewPaneComponent, never>;
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewPaneComponent, "ng-component", never, {}, {}, never, never>;
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
27
27
|
}
|
@@ -27,7 +27,7 @@ export declare class ActionsWidget implements WidgetComponent<PerformanceData[]>
|
|
27
27
|
tooltipRender(e: IAccTooltipRenderEventArgs): void;
|
28
28
|
ngOnDestroy(): void;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionsWidget, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsWidget, "ng-component", never, {}, {}, never, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsWidget, "ng-component", never, {}, {}, never, never, false>;
|
31
31
|
}
|
32
32
|
interface PerformanceData {
|
33
33
|
text: string;
|
@@ -29,5 +29,5 @@ export declare class CubeAccumAnalysisWidget extends CubeAnalysisBase implements
|
|
29
29
|
pointClick(evt: IPointEventArgs): void;
|
30
30
|
ngOnDestroy(): void;
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAccumAnalysisWidget, never>;
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAccumAnalysisWidget, "bizdoc-accum-cube-analysis", never, {}, {}, never, never>;
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAccumAnalysisWidget, "bizdoc-accum-cube-analysis", never, {}, {}, never, never, false>;
|
33
33
|
}
|
@@ -7,7 +7,7 @@ import { DatasourceService } from "../../core/datasource.service";
|
|
7
7
|
import { WidgetRef } from "../widget-ref";
|
8
8
|
import * as i0 from "@angular/core";
|
9
9
|
/** */
|
10
|
-
export declare class
|
10
|
+
export declare class CubePerformanceWidget implements WidgetComponent<Model[]>, OnDestroy {
|
11
11
|
private _translate;
|
12
12
|
private _widgetRef;
|
13
13
|
private _elementRef;
|
@@ -38,8 +38,8 @@ export declare class CubeCompareWidget implements WidgetComponent<Model[]>, OnDe
|
|
38
38
|
sharedTooltipRender(evt: ISharedTooltipRenderEventArgs): void;
|
39
39
|
private _prepare;
|
40
40
|
ngOnDestroy(): void;
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubePerformanceWidget, never>;
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubePerformanceWidget, "ng-component", never, {}, {}, never, never, false>;
|
43
43
|
}
|
44
44
|
interface Model {
|
45
45
|
points: Point[];
|
@@ -45,7 +45,7 @@ export declare abstract class CubeAnalysisBase implements WidgetComponent<Series
|
|
45
45
|
abstract onThemeChange(): any;
|
46
46
|
ngOnDestroy(): void;
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAnalysisBase, never>;
|
48
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CubeAnalysisBase, never, never, {}, {}, never>;
|
48
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CubeAnalysisBase, never, never, {}, {}, never, never, false>;
|
49
49
|
}
|
50
50
|
export interface Options {
|
51
51
|
scope?: ScopeType;
|
@@ -13,5 +13,5 @@ export declare class CubeAnalysisWidget implements WidgetComponent<any>, OnInit
|
|
13
13
|
ngOnInit(): void;
|
14
14
|
onBind(data: any, args?: any): void;
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAnalysisWidget, never>;
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnalysisWidget, "ng-component", never, {}, {}, never, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnalysisWidget, "ng-component", never, {}, {}, never, never, false>;
|
17
17
|
}
|
@@ -28,5 +28,5 @@ export declare class CubeChartAnalysisWidget extends CubeAnalysisBase {
|
|
28
28
|
tooltipRender(e: ITooltipRenderEventArgs): void;
|
29
29
|
ngOnDestroy(): void;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeChartAnalysisWidget, never>;
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartAnalysisWidget, "bizdoc-cube-chart-analysis", never, {}, {}, never, never>;
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeChartAnalysisWidget, "bizdoc-cube-chart-analysis", never, {}, {}, never, never, false>;
|
32
32
|
}
|
@@ -19,7 +19,7 @@ export declare class CubeDocumentsWidget implements WidgetComponent<MailInfo[]>
|
|
19
19
|
onBind(data: MailInfo[]): void;
|
20
20
|
open(item: MailInfo): void;
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeDocumentsWidget, never>;
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDocumentsWidget, "ng-component", never, {}, {}, never, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDocumentsWidget, "ng-component", never, {}, {}, never, never, false>;
|
23
23
|
}
|
24
24
|
interface MailInfo {
|
25
25
|
id: number;
|
@@ -18,5 +18,5 @@ export declare class CubeWidgetFilterComponent implements OnInit, ArgumentsCompo
|
|
18
18
|
ngOnInit(): void;
|
19
19
|
valuesChange(axes: any): void;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeWidgetFilterComponent, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeWidgetFilterComponent, "ng-component", never, {}, {}, never, never>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeWidgetFilterComponent, "ng-component", never, {}, {}, never, never, false>;
|
22
22
|
}
|
@@ -20,5 +20,5 @@ export declare class DashboardComponent implements OnDestroy {
|
|
20
20
|
guide(name: string): void;
|
21
21
|
ngOnDestroy(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, [null, null, null, { optional: true; }, null, null]>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "bizdoc-dashboard", never, {}, {}, never, never>;
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "bizdoc-dashboard", never, {}, {}, never, never, false>;
|
24
24
|
}
|
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DashboardPaneComponent {
|
5
5
|
constructor(pane: PaneRef, translate: TranslateService);
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardPaneComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardPaneComponent, "ng-component", never, {}, {}, never, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
8
8
|
}
|
@@ -15,7 +15,7 @@ export declare class RecentsWidget implements WidgetComponent<RecipientInfo[]>,
|
|
15
15
|
private _ps;
|
16
16
|
dataSource: MatTableDataSource<RecipientInfo>;
|
17
17
|
height: string;
|
18
|
-
readonly search: FormControl
|
18
|
+
readonly search: FormControl<any>;
|
19
19
|
readonly enableAnalysis: boolean;
|
20
20
|
readonly columns: string[];
|
21
21
|
private readonly _destroy;
|
@@ -27,7 +27,7 @@ export declare class RecentsWidget implements WidgetComponent<RecipientInfo[]>,
|
|
27
27
|
view(item: RecipientInfo, evt: Event): void;
|
28
28
|
ngOnDestroy(): void;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecentsWidget, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RecentsWidget, "ng-component", never, {}, {}, never, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RecentsWidget, "ng-component", never, {}, {}, never, never, false>;
|
31
31
|
}
|
32
32
|
interface RecipientInfo {
|
33
33
|
id: number;
|
@@ -36,7 +36,7 @@ export declare class PersonalActivityWidget implements WidgetComponent<Model>, O
|
|
36
36
|
private _draw;
|
37
37
|
ngOnDestroy(): void;
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<PersonalActivityWidget, never>;
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PersonalActivityWidget, "ng-component", never, {}, {}, never, never>;
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PersonalActivityWidget, "ng-component", never, {}, {}, never, never, false>;
|
40
40
|
}
|
41
41
|
interface Model {
|
42
42
|
timeline: Point[];
|
@@ -37,7 +37,7 @@ export declare class CompareGroupsWidget implements WidgetComponent<Department[]
|
|
37
37
|
private _prepare;
|
38
38
|
ngOnDestroy(): void;
|
39
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompareGroupsWidget, never>;
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CompareGroupsWidget, "ng-component", never, {}, {}, never, never>;
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CompareGroupsWidget, "ng-component", never, {}, {}, never, never, false>;
|
41
41
|
}
|
42
42
|
interface Department {
|
43
43
|
points: Point[];
|
@@ -53,7 +53,7 @@ export declare class PeersPerformanceWidget implements WidgetComponent<PeerModel
|
|
53
53
|
tooltipRender(e: ITooltipRenderEventArgs): void;
|
54
54
|
ngOnDestroy(): void;
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<PeersPerformanceWidget, never>;
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PeersPerformanceWidget, "ng-component", never, {}, {}, never, never>;
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PeersPerformanceWidget, "ng-component", never, {}, {}, never, never, false>;
|
57
57
|
}
|
58
58
|
interface PeerModel {
|
59
59
|
name: string;
|
@@ -14,7 +14,7 @@ export declare class PendingResultsWidget implements WidgetComponent<DataModel[]
|
|
14
14
|
onBind(data: DataModel[]): void;
|
15
15
|
ngOnDestroy(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PendingResultsWidget, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PendingResultsWidget, "bizdoc-pending-results", never, {}, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PendingResultsWidget, "bizdoc-pending-results", never, {}, {}, never, never, false>;
|
18
18
|
}
|
19
19
|
interface DataModel {
|
20
20
|
name: string;
|
@@ -41,7 +41,7 @@ export declare class PersonalScoreWidget implements WidgetComponent<Model>, OnDe
|
|
41
41
|
private _refresh;
|
42
42
|
ngOnDestroy(): void;
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<PersonalScoreWidget, never>;
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PersonalScoreWidget, "ng-component", never, {}, {}, never, never>;
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PersonalScoreWidget, "ng-component", never, {}, {}, never, never, false>;
|
45
45
|
}
|
46
46
|
interface Model {
|
47
47
|
you: Range;
|
@@ -29,5 +29,5 @@ export declare class WidgetItemComponent implements OnInit, AfterViewInit, OnDes
|
|
29
29
|
resize(): void;
|
30
30
|
ngOnDestroy(): void;
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetItemComponent, never>;
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetItemComponent, "bizdoc-widget", never, { "model": "model"; }, {}, never, never>;
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetItemComponent, "bizdoc-widget", never, { "model": "model"; }, {}, never, never, false>;
|
33
33
|
}
|
package/lib/desktop.module.d.ts
CHANGED
@@ -20,7 +20,7 @@ import * as i16 from "./notifications/notifications.pane.component";
|
|
20
20
|
import * as i17 from "./compose/trace/trace.pane.component";
|
21
21
|
import * as i18 from "./compose/version-compare/version.pane.component";
|
22
22
|
import * as i19 from "./compose/action/action.pane.dialog.exp";
|
23
|
-
import * as i20 from "./compose/comments/
|
23
|
+
import * as i20 from "./compose/comments/comments.pane.component";
|
24
24
|
import * as i21 from "./reports/reports-menu.component";
|
25
25
|
import * as i22 from "./reports/report.pane.component";
|
26
26
|
import * as i23 from "./browse/folders-menu.component";
|
@@ -10,5 +10,5 @@ export declare class AboutDialog {
|
|
10
10
|
/** about ctor */
|
11
11
|
constructor(_session: SessionService);
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AboutDialog, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AboutDialog, "bizdoc-about", never, {}, {}, never, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AboutDialog, "bizdoc-about", never, {}, {}, never, never, false>;
|
14
14
|
}
|
@@ -30,5 +30,5 @@ export declare abstract class HomeBase implements OnInit {
|
|
30
30
|
mails(): void;
|
31
31
|
notifs(): void;
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomeBase, never>;
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HomeBase, never, never, {}, {}, never>;
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HomeBase, never, never, {}, {}, never, never, false>;
|
34
34
|
}
|
@@ -56,5 +56,5 @@ export declare class HomeComponent extends HomeBase {
|
|
56
56
|
*/
|
57
57
|
handleKeyboardEvent(event: KeyboardEvent): void;
|
58
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomeComponent, never>;
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "bizdoc-home", never, {}, {}, never, never>;
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomeComponent, "bizdoc-home", never, {}, {}, never, never, false>;
|
60
60
|
}
|
@@ -34,5 +34,5 @@ export declare class HomeMobileComponent extends HomeBase implements OnInit {
|
|
34
34
|
getAnimation(outlet: RouterOutlet): string;
|
35
35
|
notifs(): void;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomeMobileComponent, never>;
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HomeMobileComponent, "bizdoc-mobile-home", never, {}, {}, never, never>;
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomeMobileComponent, "bizdoc-mobile-home", never, {}, {}, never, never, false>;
|
38
38
|
}
|
@@ -24,5 +24,5 @@ export declare class QuickNotificationsComponent extends NotificationsComponentB
|
|
24
24
|
isMuted(item: Notification): Observable<boolean>;
|
25
25
|
mute(item: Notification, mute: boolean): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuickNotificationsComponent, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QuickNotificationsComponent, "bizdoc-notifications", never, {}, {}, never, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickNotificationsComponent, "bizdoc-notifications", never, {}, {}, never, never, false>;
|
28
28
|
}
|
@@ -42,5 +42,5 @@ export declare class QuickOptionsComponent implements OnInit, OnDestroy {
|
|
42
42
|
options(): void;
|
43
43
|
ngOnDestroy(): void;
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuickOptionsComponent, never>;
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QuickOptionsComponent, "bizdoc-quick-options", never, {}, {}, never, never>;
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickOptionsComponent, "bizdoc-quick-options", never, {}, {}, never, never, false>;
|
46
46
|
}
|
@@ -12,7 +12,7 @@ export declare class OutOfOfficeToast {
|
|
12
12
|
options(): void;
|
13
13
|
dismiss(): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<OutOfOfficeToast, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OutOfOfficeToast, "bizdoc-outofoffice", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OutOfOfficeToast, "bizdoc-outofoffice", never, {}, {}, never, never, false>;
|
16
16
|
}
|
17
17
|
export interface OutOfOfficeData {
|
18
18
|
substituteId: string;
|
@@ -13,5 +13,5 @@ export declare class QuickSignComponent {
|
|
13
13
|
signOut(): void;
|
14
14
|
impersonate(): void;
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuickSignComponent, never>;
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QuickSignComponent, "ng-component", never, {}, {}, never, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickSignComponent, "ng-component", never, {}, {}, never, never, false>;
|
17
17
|
}
|
@@ -21,7 +21,7 @@ export declare class QuickToolsComponent implements OnInit {
|
|
21
21
|
input: ElementRef<HTMLInputElement>;
|
22
22
|
trigger: MatAutocompleteTrigger;
|
23
23
|
profile: Profile;
|
24
|
-
readonly search: FormControl
|
24
|
+
readonly search: FormControl<any>;
|
25
25
|
results: Observable<Index[]>;
|
26
26
|
constructor(_popup: Popup, _session: SessionService, _service: SearchService, _router: PanesRouter, _guide: GuideService);
|
27
27
|
ngOnInit(): void;
|
@@ -33,5 +33,5 @@ export declare class QuickToolsComponent implements OnInit {
|
|
33
33
|
displayWith: (_: any) => any;
|
34
34
|
goto(evt: MatAutocompleteSelectedEvent): void;
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuickToolsComponent, never>;
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QuickToolsComponent, "bizdoc-quicktools", never, {}, {}, never, never>;
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickToolsComponent, "bizdoc-quicktools", never, {}, {}, never, never, false>;
|
37
37
|
}
|
@@ -10,7 +10,7 @@ export declare class ImpersonateDialog implements OnDestroy {
|
|
10
10
|
private _sb;
|
11
11
|
private _session;
|
12
12
|
private _dialogRef;
|
13
|
-
readonly username: FormControl
|
13
|
+
readonly username: FormControl<any>;
|
14
14
|
private readonly _destroy;
|
15
15
|
private readonly _me;
|
16
16
|
readonly users$: import("rxjs").Observable<any[]>;
|
@@ -23,5 +23,5 @@ export declare class ImpersonateDialog implements OnDestroy {
|
|
23
23
|
change(evt: MatAutocompleteSelectedEvent): void;
|
24
24
|
ngOnDestroy(): void;
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImpersonateDialog, never>;
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImpersonateDialog, "bizdoc-impersonate", never, {}, {}, never, never>;
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImpersonateDialog, "bizdoc-impersonate", never, {}, {}, never, never, false>;
|
27
27
|
}
|
@@ -3,7 +3,10 @@ import * as i0 from "@angular/core";
|
|
3
3
|
export declare class NotificationsFilterComponent {
|
4
4
|
private _fb;
|
5
5
|
constructor(_fb: FormBuilder);
|
6
|
-
readonly form: import("@angular/forms").FormGroup
|
6
|
+
readonly form: import("@angular/forms").FormGroup<{
|
7
|
+
text: import("@angular/forms").FormControl<any>;
|
8
|
+
showDeleted: import("@angular/forms").FormControl<boolean>;
|
9
|
+
}>;
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsFilterComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsFilterComponent, "ng-component", never, {}, {}, never, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsFilterComponent, "ng-component", never, {}, {}, never, never, false>;
|
9
12
|
}
|
@@ -28,5 +28,5 @@ export declare class NotificationsTableComponent extends NotificationsComponentB
|
|
28
28
|
masterToggle(): void;
|
29
29
|
openFilter(evt: Event): void;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsTableComponent, never>;
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsTableComponent, "bizdoc-notifications-table", never, {}, {}, never, never>;
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsTableComponent, "bizdoc-notifications-table", never, {}, {}, never, never, false>;
|
32
32
|
}
|
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare class NotificationsComponent {
|
5
5
|
constructor(title: WindowTitleService, translate: TranslateService);
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "ng-component", never, {}, {}, never, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "ng-component", never, {}, {}, never, never, false>;
|
8
8
|
}
|
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare class NotificationsPaneComponent {
|
5
5
|
constructor(pane: PaneRef, translate: TranslateService);
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsPaneComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsPaneComponent, "ng-component", never, {}, {}, never, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
8
8
|
}
|
@@ -16,7 +16,7 @@ export declare class CommentedNotification extends NotificationBase implements O
|
|
16
16
|
ngOnInit(): void;
|
17
17
|
constructor(notification: Commented, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentedNotification, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentedNotification, "ng-component", never, {}, {}, never, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentedNotification, "ng-component", never, {}, {}, never, never, false>;
|
20
20
|
}
|
21
21
|
interface Commented extends Notification {
|
22
22
|
userIds: string[];
|
@@ -17,7 +17,7 @@ export declare class CubeAnomalyNotification implements OnInit {
|
|
17
17
|
open(e: MouseEvent): void;
|
18
18
|
constructor(notification: CubeAnomaly, _ds: DatasourceService, _session: SessionService, _router: RouterImpl, _translate: TranslateService);
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAnomalyNotification, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnomalyNotification, "ng-component", never, {}, {}, never, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnomalyNotification, "ng-component", never, {}, {}, never, never, false>;
|
21
21
|
}
|
22
22
|
interface CubeAnomaly extends Notification {
|
23
23
|
cube: string;
|
@@ -14,7 +14,7 @@ export declare class EscalatedNotification extends NotificationBase implements O
|
|
14
14
|
ngOnInit(): void;
|
15
15
|
constructor(router: RouterImpl, notification: Escalated, _accounts: AccountService, translate: TranslateService, session: SessionService, chat: ChatInfo);
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<EscalatedNotification, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EscalatedNotification, "ng-component", never, {}, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EscalatedNotification, "ng-component", never, {}, {}, never, never, false>;
|
18
18
|
}
|
19
19
|
interface Escalated extends Notification {
|
20
20
|
substituteId: string;
|
@@ -15,7 +15,7 @@ export declare class LikedNotification extends NotificationBase implements OnIni
|
|
15
15
|
ngOnInit(): void;
|
16
16
|
constructor(notification: Liked, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<LikedNotification, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LikedNotification, "ng-component", never, {}, {}, never, never>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LikedNotification, "ng-component", never, {}, {}, never, never, false>;
|
19
19
|
}
|
20
20
|
interface Liked extends Notification {
|
21
21
|
userIds: string[];
|
@@ -12,7 +12,7 @@ export declare class LongRunningTaskNotification implements OnInit {
|
|
12
12
|
open(e: MouseEvent): void;
|
13
13
|
constructor(notification: ReportTask, _session: SessionService, _router: RouterImpl);
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<LongRunningTaskNotification, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LongRunningTaskNotification, "ng-component", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LongRunningTaskNotification, "ng-component", never, {}, {}, never, never, false>;
|
16
16
|
}
|
17
17
|
interface ReportTask extends Notification {
|
18
18
|
report: string;
|
@@ -16,5 +16,5 @@ export declare abstract class NotificationBase {
|
|
16
16
|
protected _formatUserElement(person: UserInfo): string;
|
17
17
|
open(e: MouseEvent): void;
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBase, never>;
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NotificationBase, never, never, {}, {}, never>;
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NotificationBase, never, never, {}, {}, never, never, false>;
|
20
20
|
}
|
@@ -14,7 +14,7 @@ export declare class NudgeNotification extends NotificationBase implements OnIni
|
|
14
14
|
ngOnInit(): void;
|
15
15
|
constructor(router: RouterImpl, translate: TranslateService, session: SessionService, chat: ChatInfo, notification: Nudge);
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<NudgeNotification, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NudgeNotification, "ng-component", never, {}, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NudgeNotification, "ng-component", never, {}, {}, never, never, false>;
|
18
18
|
}
|
19
19
|
interface Nudge extends Notification {
|
20
20
|
expire: Date;
|
@@ -12,7 +12,7 @@ export declare class StateChangedNotification extends NotificationBase implement
|
|
12
12
|
ngOnInit(): void;
|
13
13
|
constructor(notification: StateChanged, session: SessionService, router: RouterImpl, translate: TranslateService, chat: ChatInfo);
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<StateChangedNotification, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StateChangedNotification, "ng-component", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StateChangedNotification, "ng-component", never, {}, {}, never, never, false>;
|
16
16
|
}
|
17
17
|
interface StateChanged extends Notification {
|
18
18
|
number: string;
|
@@ -16,7 +16,7 @@ export declare class TaggedNotification extends NotificationBase implements OnIn
|
|
16
16
|
ngOnInit(): void;
|
17
17
|
constructor(notification: Tagged, _accounts: AccountService, translate: TranslateService, router: RouterImpl, session: SessionService, chat: ChatInfo);
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TaggedNotification, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TaggedNotification, "ng-component", never, {}, {}, never, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TaggedNotification, "ng-component", never, {}, {}, never, never, false>;
|
20
20
|
}
|
21
21
|
interface Tagged extends Notification {
|
22
22
|
who: string;
|
@@ -5,7 +5,7 @@ export declare class TextNotification implements OnInit {
|
|
5
5
|
ngOnInit(): void;
|
6
6
|
constructor(notification: Text);
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextNotification, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextNotification, "ng-component", never, {}, {}, never, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextNotification, "ng-component", never, {}, {}, never, never, false>;
|
9
9
|
}
|
10
10
|
interface Text {
|
11
11
|
text: string;
|
@@ -11,7 +11,7 @@ export declare class UpcomingEventNotification implements OnInit {
|
|
11
11
|
open(e: MouseEvent): void;
|
12
12
|
constructor(notification: UpcommingEvent, _router: RouterImpl);
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpcomingEventNotification, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UpcomingEventNotification, "ng-component", never, {}, {}, never, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UpcomingEventNotification, "ng-component", never, {}, {}, never, never, false>;
|
15
15
|
}
|
16
16
|
interface UpcommingEvent extends Notification {
|
17
17
|
number: string;
|