@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
@@ -30,7 +30,7 @@ export declare class PermissionsUtility implements OnInit, UtilityComponent<bool
|
|
30
30
|
change(item: Model, e: MatCheckboxChange): void;
|
31
31
|
save(): void;
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionsUtility, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PermissionsUtility, "ng-component", never, {}, {}, never, never>;
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PermissionsUtility, "ng-component", never, {}, {}, never, never, false>;
|
34
34
|
}
|
35
35
|
interface Model {
|
36
36
|
name: string;
|
@@ -15,7 +15,7 @@ export declare class PositionsPopup implements OnInit, AfterViewInit, OnDestroy
|
|
15
15
|
private _service;
|
16
16
|
readonly separatorKeysCodes: number[];
|
17
17
|
readonly valueChange: Subject<void>;
|
18
|
-
readonly control: FormControl
|
18
|
+
readonly control: FormControl<any>;
|
19
19
|
nameInput: ElementRef<HTMLInputElement>;
|
20
20
|
users$: Observable<UserInfo[]>;
|
21
21
|
private readonly _destroy;
|
@@ -35,5 +35,5 @@ export declare class PositionsPopup implements OnInit, AfterViewInit, OnDestroy
|
|
35
35
|
removed(id: string): void;
|
36
36
|
ngOnDestroy(): void;
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<PositionsPopup, never>;
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PositionsPopup, "ng-component", never, {}, {}, never, never>;
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PositionsPopup, "ng-component", never, {}, {}, never, never, false>;
|
39
39
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { OnInit, OnDestroy, TemplateRef, ElementRef } from '@angular/core';
|
2
2
|
import { MatDialog } from '@angular/material/dialog';
|
3
|
-
import { FormGroup } from '@angular/forms';
|
3
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
4
4
|
import { MatSort } from '@angular/material/sort';
|
5
5
|
import { MatTableDataSource } from '@angular/material/table';
|
6
6
|
import { Role, Type, UserInfo } from '../../core/models';
|
@@ -46,10 +46,18 @@ export declare class PositionsComponent implements OnInit, OnDestroy, UtilityCom
|
|
46
46
|
key: string;
|
47
47
|
value: any;
|
48
48
|
}[];
|
49
|
-
readonly form: FormGroup
|
50
|
-
readonly role: FormGroup
|
51
|
-
|
52
|
-
|
49
|
+
readonly form: FormGroup<{}>;
|
50
|
+
readonly role: FormGroup<{
|
51
|
+
title: FormControl<any>;
|
52
|
+
}>;
|
53
|
+
readonly pattern: FormGroup<{
|
54
|
+
title: FormControl<any>;
|
55
|
+
expression: FormControl<any>;
|
56
|
+
}>;
|
57
|
+
readonly group: FormGroup<{
|
58
|
+
title: FormControl<any>;
|
59
|
+
items: FormControl<any>;
|
60
|
+
}>;
|
53
61
|
private _everything;
|
54
62
|
positions: {
|
55
63
|
[role: string]: {
|
@@ -87,7 +95,7 @@ export declare class PositionsComponent implements OnInit, OnDestroy, UtilityCom
|
|
87
95
|
download(): Promise<void>;
|
88
96
|
ngOnDestroy(): void;
|
89
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<PositionsComponent, never>;
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PositionsComponent, "ng-component", never, {}, {}, never, never>;
|
98
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PositionsComponent, "ng-component", never, {}, {}, never, never, false>;
|
91
99
|
}
|
92
100
|
declare type TypeMap = {
|
93
101
|
[name: string]: DataTypeModel;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnInit } from "@angular/core";
|
2
|
-
import { FormBuilder
|
2
|
+
import { FormBuilder } from "@angular/forms";
|
3
3
|
import { MatAutocompleteSelectedEvent } from "@angular/material/autocomplete";
|
4
4
|
import { MatChipInput } from "@angular/material/chips";
|
5
5
|
import { MatDialogRef } from "@angular/material/dialog";
|
@@ -19,13 +19,32 @@ export declare class ProfileSettingsDialog implements OnInit {
|
|
19
19
|
private _fb;
|
20
20
|
model: OutOfOfficeData;
|
21
21
|
readonly separatorKeysCodes: number[];
|
22
|
-
readonly substitute: import("@angular/forms").FormControl
|
23
|
-
readonly grants: import("@angular/forms").FormControl
|
22
|
+
readonly substitute: import("@angular/forms").FormControl<string | UserInfo>;
|
23
|
+
readonly grants: import("@angular/forms").FormControl<any[]>;
|
24
24
|
substitueInput: MatInput;
|
25
25
|
grantInput: MatChipInput;
|
26
|
-
readonly outOfOffice: FormGroup
|
27
|
-
|
28
|
-
|
26
|
+
readonly outOfOffice: import("@angular/forms").FormGroup<{
|
27
|
+
active: import("@angular/forms").FormControl<boolean>;
|
28
|
+
substitueId: import("@angular/forms").FormControl<string>;
|
29
|
+
from: import("@angular/forms").FormControl<Date>;
|
30
|
+
to: import("@angular/forms").FormControl<Date>;
|
31
|
+
}>;
|
32
|
+
readonly grantAccess: import("@angular/forms").FormGroup<{
|
33
|
+
active: import("@angular/forms").FormControl<boolean>;
|
34
|
+
users: import("@angular/forms").FormControl<string[]>;
|
35
|
+
}>;
|
36
|
+
readonly form: import("@angular/forms").FormGroup<{
|
37
|
+
outOfOffice: import("@angular/forms").FormGroup<{
|
38
|
+
active: import("@angular/forms").FormControl<boolean>;
|
39
|
+
substitueId: import("@angular/forms").FormControl<string>;
|
40
|
+
from: import("@angular/forms").FormControl<Date>;
|
41
|
+
to: import("@angular/forms").FormControl<Date>;
|
42
|
+
}>;
|
43
|
+
grantAccess: import("@angular/forms").FormGroup<{
|
44
|
+
active: import("@angular/forms").FormControl<boolean>;
|
45
|
+
users: import("@angular/forms").FormControl<string[]>;
|
46
|
+
}>;
|
47
|
+
}>;
|
29
48
|
ousers$: Observable<UserInfo[]>;
|
30
49
|
gusers$: Observable<UserInfo[]>;
|
31
50
|
constructor(_accounts: AccountService, _dialogRef: MatDialogRef<ProfileSettingsDialog>, _fb: FormBuilder, model: OutOfOfficeData);
|
@@ -44,5 +63,5 @@ export declare class ProfileSettingsDialog implements OnInit {
|
|
44
63
|
*/
|
45
64
|
addGrant(inp: HTMLInputElement, event: MatAutocompleteSelectedEvent): void;
|
46
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileSettingsDialog, never>;
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileSettingsDialog, "ng-component", never, {}, {}, never, never>;
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileSettingsDialog, "ng-component", never, {}, {}, never, never, false>;
|
48
67
|
}
|
@@ -31,11 +31,11 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
|
|
31
31
|
private _translate;
|
32
32
|
private _accounts;
|
33
33
|
private _fb;
|
34
|
-
readonly search: import("@angular/forms").FormControl
|
34
|
+
readonly search: import("@angular/forms").FormControl<any>;
|
35
35
|
chart: ChartComponent;
|
36
36
|
chartElement: ElementRef;
|
37
37
|
assignTpl: TemplateRef<any>;
|
38
|
-
readonly who: import("@angular/forms").FormControl
|
38
|
+
readonly who: import("@angular/forms").FormControl<any>;
|
39
39
|
readonly primaryXAxis: AxisModel;
|
40
40
|
readonly primaryYAxis: AxisModel;
|
41
41
|
readonly zoomSettings: ZoomSettingsModel;
|
@@ -76,7 +76,7 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
|
|
76
76
|
tooltipRender(e: ITooltipRenderEventArgs): void;
|
77
77
|
ngOnDestroy(): void;
|
78
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProfilerComponent, never>;
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfilerComponent, "ng-component", never, {}, {}, never, never>;
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfilerComponent, "ng-component", never, {}, {}, never, never, false>;
|
80
80
|
}
|
81
81
|
interface ProfileInfo {
|
82
82
|
outOfOffice: OutOfOfficeSettings;
|
@@ -24,5 +24,5 @@ export declare class UtilityWrapperComponent implements OnInit, OnDestroy {
|
|
24
24
|
ngOnInit(): void;
|
25
25
|
ngOnDestroy(): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityWrapperComponent, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityWrapperComponent, "ng-component", never, {}, {}, never, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityWrapperComponent, "ng-component", never, {}, {}, never, never, false>;
|
28
28
|
}
|
@@ -20,5 +20,5 @@ export declare class UtilityPaneComponent implements OnInit {
|
|
20
20
|
constructor(_session: SessionService, _pane: PaneRef<UtilityPaneComponent>, _http: HttpClient, _sb: PromptService, _messaging: HubService, _cf: BizDocComponentFactoryResolver, _injector: Injector);
|
21
21
|
ngOnInit(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityPaneComponent, never>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityPaneComponent, "ng-component", never, {}, {}, never, never>;
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UtilityPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
24
24
|
}
|
package/lib/app.component.d.ts
CHANGED
@@ -5,7 +5,7 @@ import { HubService } from './core/hub.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class BrokenPage {
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrokenPage, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BrokenPage, "ng-component", never, {}, {}, never, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BrokenPage, "ng-component", never, {}, {}, never, never, false>;
|
9
9
|
}
|
10
10
|
export declare class BizDocApp implements OnInit {
|
11
11
|
private _vc;
|
@@ -18,5 +18,5 @@ export declare class BizDocApp implements OnInit {
|
|
18
18
|
private _initialize;
|
19
19
|
ngOnInit(): void;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizDocApp, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BizDocApp, "bizdoc", never, {}, {}, never, never>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BizDocApp, "bizdoc", never, {}, {}, never, never, false>;
|
22
22
|
}
|
@@ -99,5 +99,5 @@ export declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestro
|
|
99
99
|
private _actionAdjective;
|
100
100
|
ngOnDestroy(): void;
|
101
101
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrowseItemsComponent, never>;
|
102
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseItemsComponent, "bizdoc-browse-items", never, { "folderId": "folderId"; "filterType": "filterType"; "filters": "filters"; }, { "onopen": "open"; "onview": "view"; }, never, never>;
|
102
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseItemsComponent, "bizdoc-browse-items", never, { "folderId": "folderId"; "filterType": "filterType"; "filters": "filters"; }, { "onopen": "open"; "onview": "view"; }, never, never, false>;
|
103
103
|
}
|
@@ -35,5 +35,5 @@ export declare class BrowseComponent implements OnInit, OnDestroy {
|
|
35
35
|
sendAll(action: string): void;
|
36
36
|
ngOnDestroy(): void;
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrowseComponent, never>;
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseComponent, "ng-component", never, {}, {}, never, never>;
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseComponent, "ng-component", never, {}, {}, never, never, false>;
|
39
39
|
}
|
@@ -27,7 +27,7 @@ export declare class BrowsePaneComponent implements OnInit {
|
|
27
27
|
filters: BrowseFilterArgs;
|
28
28
|
searching: boolean;
|
29
29
|
pageSize: number;
|
30
|
-
readonly contains: FormControl
|
30
|
+
readonly contains: FormControl<any>;
|
31
31
|
private readonly _destroy;
|
32
32
|
/** browse ctor */
|
33
33
|
constructor(_pane: PaneRef<BrowsePaneComponent>, _session: SessionService, _popup: Popup, _router: PanesRouter, _directionality: Directionality, _translate: TranslateService, _dialog: MatDialog);
|
@@ -46,5 +46,5 @@ export declare class BrowsePaneComponent implements OnInit {
|
|
46
46
|
sendAll(action: string): void;
|
47
47
|
ngOnDestroy(): void;
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrowsePaneComponent, never>;
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BrowsePaneComponent, "bizdoc-browse.pane", never, {}, {}, never, never>;
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BrowsePaneComponent, "bizdoc-browse.pane", never, {}, {}, never, never, false>;
|
50
50
|
}
|
@@ -63,5 +63,5 @@ export declare class ExpandedItemComponent implements OnInit, OnDestroy {
|
|
63
63
|
private _handleResponse;
|
64
64
|
ngOnDestroy(): void;
|
65
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpandedItemComponent, never>;
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedItemComponent, "bizdoc-expanded-item", never, { "model": "model"; }, { "sent": "sent"; }, never, never>;
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpandedItemComponent, "bizdoc-expanded-item", never, { "model": "model"; }, { "sent": "sent"; }, never, never, false>;
|
67
67
|
}
|
@@ -22,8 +22,15 @@ export declare class BrowseFilterComponent implements OnInit, OnChanges, AfterVi
|
|
22
22
|
folderId?: string;
|
23
23
|
exclude?: string[];
|
24
24
|
readonly valuesChange: EventEmitter<BrowseFilterArgs>;
|
25
|
-
readonly senderId: import("@angular/forms").FormControl
|
26
|
-
readonly form: import("@angular/forms").FormGroup
|
25
|
+
readonly senderId: import("@angular/forms").FormControl<any>;
|
26
|
+
readonly form: import("@angular/forms").FormGroup<{
|
27
|
+
form?: import("@angular/forms").FormControl<string>;
|
28
|
+
flag?: import("@angular/forms").FormControl<boolean>;
|
29
|
+
state?: import("@angular/forms").FormControl<string>;
|
30
|
+
contains?: import("@angular/forms").FormControl<string>;
|
31
|
+
senderId?: import("@angular/forms").FormControl<string>;
|
32
|
+
tag?: import("@angular/forms").FormControl<string>;
|
33
|
+
}>;
|
27
34
|
forms: Form[];
|
28
35
|
states: State[];
|
29
36
|
senders$: Observable<UserInfo[]>;
|
@@ -59,7 +66,7 @@ export declare class BrowseFilterComponent implements OnInit, OnChanges, AfterVi
|
|
59
66
|
focus(): void;
|
60
67
|
ngOnDestroy(): void;
|
61
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<BrowseFilterComponent, never>;
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseFilterComponent, "bizdoc-browse-filter", never, { "values": "values"; "folderId": "folderId"; "exclude": "exclude"; }, { "valuesChange": "valuesChange"; }, never, never>;
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BrowseFilterComponent, "bizdoc-browse-filter", never, { "values": "values"; "folderId": "folderId"; "exclude": "exclude"; }, { "valuesChange": "valuesChange"; }, never, never, false>;
|
63
70
|
}
|
64
71
|
export interface BrowseFilterArgs {
|
65
72
|
form?: string;
|
@@ -18,5 +18,5 @@ export declare class FoldersMenuComponent {
|
|
18
18
|
*/
|
19
19
|
drop(evt: CdkDragDrop<HeaderModel>): void;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<FoldersMenuComponent, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FoldersMenuComponent, "bizdoc-folders-menu", never, { "collapsed": "collapsed"; }, { "change": "change"; }, never, never>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FoldersMenuComponent, "bizdoc-folders-menu", never, { "collapsed": "collapsed"; }, { "change": "change"; }, never, never, false>;
|
22
22
|
}
|
@@ -6,5 +6,5 @@ export declare class ChatComponent {
|
|
6
6
|
contactChange: EventEmitter<Contact>;
|
7
7
|
selected(contact: Contact): void;
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatComponent, never>;
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "bizdoc-chat", never, { "contact": "contact"; }, { "contactChange": "contactChange"; }, never, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "bizdoc-chat", never, { "contact": "contact"; }, { "contactChange": "contactChange"; }, never, never, false>;
|
10
10
|
}
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
12
12
|
export declare class HtmlSimplePipe implements PipeTransform {
|
13
13
|
transform(value: any, ...args: any[]): any;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlSimplePipe, never>;
|
15
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<HtmlSimplePipe, "htmlToText">;
|
15
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<HtmlSimplePipe, "htmlToText", false>;
|
16
16
|
}
|
17
17
|
export declare class ContactsComponent implements OnInit, OnDestroy {
|
18
18
|
private _service;
|
@@ -24,7 +24,7 @@ export declare class ContactsComponent implements OnInit, OnDestroy {
|
|
24
24
|
readonly selected: EventEmitter<Contact>;
|
25
25
|
contacts: Contact[];
|
26
26
|
users$: Observable<UserInfo[]>;
|
27
|
-
readonly searchControl: FormControl
|
27
|
+
readonly searchControl: FormControl<any>;
|
28
28
|
private readonly _destroy;
|
29
29
|
constructor(_service: ChatService, _sb: PromptService, _session: SessionService, _accounts: AccountService, _changeDetector: ChangeDetectorRef, _messaging: HubService);
|
30
30
|
private _prepare;
|
@@ -34,5 +34,5 @@ export declare class ContactsComponent implements OnInit, OnDestroy {
|
|
34
34
|
forget(item: Contact): void;
|
35
35
|
ngOnDestroy(): void;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactsComponent, never>;
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContactsComponent, "bizdoc-contacts", never, {}, { "selected": "selected"; }, never, never>;
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactsComponent, "bizdoc-contacts", never, {}, { "selected": "selected"; }, never, never, false>;
|
38
38
|
}
|
@@ -8,5 +8,5 @@ export declare class ContactsPaneComponent {
|
|
8
8
|
constructor(pane: PaneRef, translate: TranslateService, _router: PanesRouter);
|
9
9
|
selected(contact: Contact): void;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContactsPaneComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ContactsPaneComponent, "ng-component", never, {}, {}, never, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactsPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
12
12
|
}
|
@@ -52,5 +52,5 @@ export declare class ConversationComponent implements OnInit, OnChanges, OnDestr
|
|
52
52
|
ngOnDestroy(): void;
|
53
53
|
private _persist;
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConversationComponent, never>;
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConversationComponent, "bizdoc-chat-conversation", never, { "contact": "contact"; }, {}, never, never>;
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConversationComponent, "bizdoc-chat-conversation", never, { "contact": "contact"; }, {}, never, never, false>;
|
56
56
|
}
|
@@ -12,5 +12,5 @@ export declare class ConversationPaneComponent implements OnDestroy {
|
|
12
12
|
constructor(pane: PaneRef, translate: TranslateService, accounts: AccountService, chat: ChatService, session: SessionService);
|
13
13
|
ngOnDestroy(): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConversationPaneComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConversationPaneComponent, "ng-component", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConversationPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
16
16
|
}
|
@@ -21,5 +21,5 @@ export declare class ActionPicker extends ActionBase implements OnChanges, After
|
|
21
21
|
private _sortActions;
|
22
22
|
send(action: Action): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionPicker, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionPicker, "bizdoc-action-picker", never, { "working": "working"; }, { "workingChange": "workingChange"; }, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionPicker, "bizdoc-action-picker", never, { "working": "working"; }, { "workingChange": "workingChange"; }, never, never, false>;
|
25
25
|
}
|
@@ -20,7 +20,7 @@ export declare class ActionDialog implements OnInit, OnDestroy {
|
|
20
20
|
bind(instance: ArgumentsComponent): void;
|
21
21
|
ngOnDestroy(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionDialog, never>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionDialog, "ng-component", never, {}, {}, never, never>;
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionDialog, "ng-component", never, {}, {}, never, never, false>;
|
24
24
|
}
|
25
25
|
export interface ActionDialogData {
|
26
26
|
action: string;
|
@@ -27,5 +27,5 @@ export declare class ActionPaneComponent extends ActionBase implements OnInit, O
|
|
27
27
|
ngOnInit(): void;
|
28
28
|
ngOnDestroy(): void;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionPaneComponent, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionPaneComponent, "bizdoc-action-dialog.pane", never, {}, {}, never, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionPaneComponent, "bizdoc-action-dialog.pane", never, {}, {}, never, never, false>;
|
31
31
|
}
|
@@ -12,8 +12,13 @@ export declare class AssignActionComponent implements ArgumentsComponent, OnInit
|
|
12
12
|
private _session;
|
13
13
|
private _accounts;
|
14
14
|
nameInput: ElementRef<HTMLInputElement>;
|
15
|
-
readonly form: import("@angular/forms").FormGroup
|
16
|
-
|
15
|
+
readonly form: import("@angular/forms").FormGroup<{
|
16
|
+
userIds: import("@angular/forms").FormControl<any>;
|
17
|
+
fyi: import("@angular/forms").FormControl<boolean>;
|
18
|
+
roundtrip: import("@angular/forms").FormControl<boolean>;
|
19
|
+
note: import("@angular/forms").FormControl<any>;
|
20
|
+
}>;
|
21
|
+
readonly userId: import("@angular/forms").FormControl<any[]>;
|
17
22
|
users$: Observable<UserInfo[]>;
|
18
23
|
private _destroy;
|
19
24
|
constructor(_fb: FormBuilder, _session: SessionService, _accounts: AccountService);
|
@@ -26,5 +31,5 @@ export declare class AssignActionComponent implements ArgumentsComponent, OnInit
|
|
26
31
|
userSelected(event: MatAutocompleteSelectedEvent): void;
|
27
32
|
ngOnDestroy(): void;
|
28
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssignActionComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AssignActionComponent, "ng-component", never, {}, {}, never, never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AssignActionComponent, "ng-component", never, {}, {}, never, never, false>;
|
30
35
|
}
|
@@ -13,8 +13,11 @@ export declare class MoveToActionComponent implements ArgumentsComponent, OnInit
|
|
13
13
|
private _accounts;
|
14
14
|
readonly separatorKeysCodes: number[];
|
15
15
|
nameInput: ElementRef<HTMLInputElement>;
|
16
|
-
readonly form: import("@angular/forms").FormGroup
|
17
|
-
|
16
|
+
readonly form: import("@angular/forms").FormGroup<{
|
17
|
+
userIds: import("@angular/forms").FormControl<any>;
|
18
|
+
note: import("@angular/forms").FormControl<any>;
|
19
|
+
}>;
|
20
|
+
readonly userIds: import("@angular/forms").FormControl<any[]>;
|
18
21
|
users$: Observable<UserInfo[]>;
|
19
22
|
private _destroy;
|
20
23
|
constructor(_fb: FormBuilder, _session: SessionService, _accounts: AccountService);
|
@@ -32,5 +35,5 @@ export declare class MoveToActionComponent implements ArgumentsComponent, OnInit
|
|
32
35
|
removed(id: string): void;
|
33
36
|
ngOnDestroy(): void;
|
34
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoveToActionComponent, never>;
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MoveToActionComponent, "ng-component", never, {}, {}, never, never>;
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoveToActionComponent, "ng-component", never, {}, {}, never, never, false>;
|
36
39
|
}
|
@@ -10,9 +10,12 @@ export declare class ReturnActionComponent implements ArgumentsComponent, OnInit
|
|
10
10
|
readonly recipients: Recipient[];
|
11
11
|
constructor(_fb: FormBuilder, actionRef: ActionRef<Options>, session: SessionService);
|
12
12
|
ngOnInit(): void;
|
13
|
-
readonly form: import("@angular/forms").FormGroup
|
13
|
+
readonly form: import("@angular/forms").FormGroup<{
|
14
|
+
recipientId: import("@angular/forms").FormControl<any>;
|
15
|
+
note: import("@angular/forms").FormControl<any>;
|
16
|
+
}>;
|
14
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReturnActionComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ReturnActionComponent, "ng-component", never, {}, {}, never, never>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReturnActionComponent, "ng-component", never, {}, {}, never, never, false>;
|
16
19
|
}
|
17
20
|
interface Options {
|
18
21
|
}
|
@@ -31,5 +31,5 @@ export declare class AttachmentsComponent implements OnChanges {
|
|
31
31
|
cancel(item: Attachment): void;
|
32
32
|
discard(item: Attachment): void;
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentsComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentsComponent, "bizdoc-attachments", never, { "model": "model"; "viewedIndicator": "viewedIndicator"; "includeDeleted": "includeDeleted"; }, {}, never, never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentsComponent, "bizdoc-attachments", never, { "model": "model"; "viewedIndicator": "viewedIndicator"; "includeDeleted": "includeDeleted"; }, {}, never, never, false>;
|
35
35
|
}
|
@@ -41,7 +41,7 @@ export declare class AttachmentPreview implements OnInit, AfterViewInit {
|
|
41
41
|
onAnimationDone(event: AnimationEvent): void;
|
42
42
|
private startExitAnimation;
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<AttachmentPreview, never>;
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentPreview, "bizdoc-attachment-preview", never, {}, {}, never, never>;
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AttachmentPreview, "bizdoc-attachment-preview", never, {}, {}, never, never, false>;
|
45
45
|
}
|
46
46
|
export interface PreviewData {
|
47
47
|
documentId: number;
|
@@ -8,5 +8,5 @@ export declare class ProgressDirective implements AfterViewInit, OnChanges {
|
|
8
8
|
ngAfterViewInit(): void;
|
9
9
|
ngOnChanges(_changes: SimpleChanges): void;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressDirective, never>;
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressDirective, "[progressIndicator]", never, { "progressIndicator": "progressIndicator"; }, {}, never>;
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressDirective, "[progressIndicator]", never, { "progressIndicator": "progressIndicator"; }, {}, never, never, false>;
|
12
12
|
}
|
@@ -47,5 +47,5 @@ export declare class CommentComponent implements OnInit {
|
|
47
47
|
preview(): void;
|
48
48
|
votes(): void;
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentComponent, never>;
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentComponent, "bizdoc-comment", never, { "model": "model"; "item": "item"; }, { "deleted": "deleted"; "reply": "reply"; }, never, never>;
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentComponent, "bizdoc-comment", never, { "model": "model"; "item": "item"; }, { "deleted": "deleted"; "reply": "reply"; }, never, never, false>;
|
51
51
|
}
|
@@ -62,5 +62,5 @@ export declare class CommentsComponent implements OnInit, OnDestroy, OnChanges,
|
|
62
62
|
ngOnDestroy(): void;
|
63
63
|
private _persist;
|
64
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsComponent, never>;
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsComponent, "bizdoc-comments", never, { "model": "model"; }, { "change": "change"; }, never, never>;
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsComponent, "bizdoc-comments", never, { "model": "model"; }, { "change": "change"; }, never, never, false>;
|
66
66
|
}
|
@@ -14,5 +14,5 @@ export declare class CommentsPaneComponent implements OnInit, OnDestroy {
|
|
14
14
|
ngOnInit(): void;
|
15
15
|
ngOnDestroy(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentsPaneComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsPaneComponent, "ng-component", never, {}, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentsPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
18
18
|
}
|
@@ -12,7 +12,7 @@ export declare class EditCommentComponent {
|
|
12
12
|
constructor(_popupRef: PopupRef<EditCommentComponent>, data: CommentData, _sb: PromptService, _mailbox: MailboxService);
|
13
13
|
ok(evt: EditTextEvent): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditCommentComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditCommentComponent, "bizdoc-edit-comment", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditCommentComponent, "bizdoc-edit-comment", never, {}, {}, never, never, false>;
|
16
16
|
}
|
17
17
|
export interface CommentData {
|
18
18
|
documentId: any;
|
@@ -14,7 +14,7 @@ export declare class CommentEditsComponent implements OnInit {
|
|
14
14
|
constructor(_data: CommentVersionData, _mailbox: MailboxService);
|
15
15
|
ngOnInit(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentEditsComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentEditsComponent, "bizdoc-comment-edits", never, {}, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentEditsComponent, "bizdoc-comment-edits", never, {}, {}, never, never, false>;
|
18
18
|
}
|
19
19
|
export interface CommentVersionData {
|
20
20
|
id: number;
|
@@ -24,5 +24,5 @@ export declare class QuickCommentComponent implements OnInit, OnDestroy {
|
|
24
24
|
post(evt: EditTextEvent): void;
|
25
25
|
ngOnDestroy(): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<QuickCommentComponent, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<QuickCommentComponent, "bizdoc-quick-comment", never, {}, {}, never, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QuickCommentComponent, "bizdoc-quick-comment", never, {}, {}, never, never, false>;
|
28
28
|
}
|
@@ -14,7 +14,7 @@ export declare class CommentLikesComponent implements OnInit, OnDestroy {
|
|
14
14
|
ngOnInit(): void;
|
15
15
|
ngOnDestroy(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommentLikesComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommentLikesComponent, "bizdoc-comment-votes", never, {}, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CommentLikesComponent, "bizdoc-comment-votes", never, {}, {}, never, never, false>;
|
18
18
|
}
|
19
19
|
export interface CommentVoteData {
|
20
20
|
id: number;
|
@@ -38,5 +38,5 @@ export declare class ComposeComponent implements OnInit, OnDestroy {
|
|
38
38
|
private _close;
|
39
39
|
ngOnDestroy(): void;
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComposeComponent, never>;
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComposeComponent, "ng-component", never, {}, {}, never, never>;
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComposeComponent, "ng-component", never, {}, {}, never, never, false>;
|
42
42
|
}
|
@@ -54,5 +54,5 @@ export declare class ComposePaneComponent implements OnInit, OnDestroy {
|
|
54
54
|
ngOnDestroy(): void;
|
55
55
|
view(): void;
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComposePaneComponent, never>;
|
57
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComposePaneComponent, "bizdoc-compose.pane", never, {}, {}, never, never>;
|
57
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComposePaneComponent, "bizdoc-compose.pane", never, {}, {}, never, never, false>;
|
58
58
|
}
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
9
9
|
export declare class CopyDialog implements OnInit, OnDestroy {
|
10
10
|
private _service;
|
11
11
|
private _subscription;
|
12
|
-
readonly search: FormControl
|
12
|
+
readonly search: FormControl<any>;
|
13
13
|
results$: Observable<HeaderModel[]>;
|
14
14
|
selectedItem: HeaderModel;
|
15
15
|
/** copy ctor */
|
@@ -19,5 +19,5 @@ export declare class CopyDialog implements OnInit, OnDestroy {
|
|
19
19
|
select(evt: MatAutocompleteSelectedEvent): void;
|
20
20
|
ngOnDestroy(): void;
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<CopyDialog, never>;
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CopyDialog, "bizdoc-copy", never, {}, {}, never, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CopyDialog, "bizdoc-copy", never, {}, {}, never, never, false>;
|
23
23
|
}
|
@@ -14,5 +14,5 @@ export declare class DocumentInfoComponent implements OnChanges, OnDestroy {
|
|
14
14
|
model: DocumentModel<any>;
|
15
15
|
ngOnDestroy(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentInfoComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentInfoComponent, "bizdoc-document", never, { "model": "model"; }, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentInfoComponent, "bizdoc-document", never, { "model": "model"; }, {}, never, never, false>;
|
18
18
|
}
|
@@ -6,5 +6,5 @@ export declare class DocumentInfoPageComponent {
|
|
6
6
|
model: DocumentModel<any>;
|
7
7
|
constructor(route: ActivatedRoute, title: WindowTitleService);
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentInfoPageComponent, never>;
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentInfoPageComponent, "ng-component", never, {}, {}, never, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentInfoPageComponent, "ng-component", never, {}, {}, never, never, false>;
|
10
10
|
}
|
@@ -8,5 +8,5 @@ export declare class DocumentInfoPaneComponent {
|
|
8
8
|
model: DocumentModel<any>;
|
9
9
|
constructor(_pane: PaneRef, _session: SessionService);
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentInfoPaneComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentInfoPaneComponent, "ng-component", never, {}, {}, never, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentInfoPaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
12
12
|
}
|
@@ -9,5 +9,5 @@ export declare class DocumentEventsComponent {
|
|
9
9
|
constructor(_router: RouterImpl);
|
10
10
|
open(event: ScheduledEvent): void;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentEventsComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentEventsComponent, "bizdoc-events", never, { "model": "model"; }, {}, never, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentEventsComponent, "bizdoc-events", never, { "model": "model"; }, {}, never, never, false>;
|
13
13
|
}
|
@@ -24,5 +24,5 @@ export declare class FormSelectorSheet {
|
|
24
24
|
private _error;
|
25
25
|
private _route;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectorSheet, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectorSheet, "bizdoc-form-selector", never, {}, {}, never, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectorSheet, "bizdoc-form-selector", never, {}, {}, never, never, false>;
|
28
28
|
}
|
@@ -97,5 +97,5 @@ export declare class ComposeFormComponent implements OnDestroy, OnInit, OnChange
|
|
97
97
|
private _assign;
|
98
98
|
ngOnDestroy(): void;
|
99
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComposeFormComponent, never>;
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComposeFormComponent, "bizdoc-form", never, { "model": "model"; "working": "working"; "dirty": "dirty"; "valid": "valid"; "mode": "mode"; "contacts": "contacts"; }, { "modelChange": "modelChange"; "workingChange": "workingChange"; "dirtyChange": "dirtyChange"; "validChange": "validChange"; "saved": "saved"; }, never, never>;
|
100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComposeFormComponent, "bizdoc-form", never, { "model": "model"; "working": "working"; "dirty": "dirty"; "valid": "valid"; "mode": "mode"; "contacts": "contacts"; }, { "modelChange": "modelChange"; "workingChange": "workingChange"; "dirtyChange": "dirtyChange"; "validChange": "validChange"; "saved": "saved"; }, never, never, false>;
|
101
101
|
}
|
@@ -14,7 +14,7 @@ export declare class ComposeMenuComponent implements OnInit, OnDestroy {
|
|
14
14
|
private _router;
|
15
15
|
readonly change: EventEmitter<any>;
|
16
16
|
forms: Form[];
|
17
|
-
readonly search: FormControl
|
17
|
+
readonly search: FormControl<string>;
|
18
18
|
items: Observable<HeaderModel[]>;
|
19
19
|
private readonly _destroy;
|
20
20
|
private readonly _working;
|
@@ -32,5 +32,5 @@ export declare class ComposeMenuComponent implements OnInit, OnDestroy {
|
|
32
32
|
private _error;
|
33
33
|
ngOnDestroy(): void;
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComposeMenuComponent, never>;
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComposeMenuComponent, "bizdoc-new-menu", never, {}, { "change": "change"; }, never, never>;
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComposeMenuComponent, "bizdoc-new-menu", never, {}, { "change": "change"; }, never, never, false>;
|
36
36
|
}
|