@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
@@ -14,7 +14,7 @@ export declare class PrivilegeHiddenDirective extends PrivilegeDirectiveBase imp
|
|
14
14
|
constructor(model: DocumentModel<any>, _element: ElementRef);
|
15
15
|
ngOnInit(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrivilegeHiddenDirective, never>;
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PrivilegeHiddenDirective, "[bizdocHidden]", never, { "name": "bizdocHidden"; }, {}, never>;
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PrivilegeHiddenDirective, "[bizdocHidden]", never, { "name": "bizdocHidden"; }, {}, never, never, false>;
|
18
18
|
}
|
19
19
|
export declare class PrivilegeDisabledDirective extends PrivilegeDirectiveBase implements OnInit {
|
20
20
|
ngControl: NgControl;
|
@@ -22,5 +22,5 @@ export declare class PrivilegeDisabledDirective extends PrivilegeDirectiveBase i
|
|
22
22
|
constructor(model: DocumentModel<any>, ngControl: NgControl);
|
23
23
|
ngOnInit(): void;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrivilegeDisabledDirective, [null, { self: true; }]>;
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PrivilegeDisabledDirective, "[bizdocDisabled]", never, { "name": "bizdocDisabled"; }, {}, never>;
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PrivilegeDisabledDirective, "[bizdocDisabled]", never, { "name": "bizdocDisabled"; }, {}, never, never, false>;
|
26
26
|
}
|
@@ -8,5 +8,5 @@ export declare class StateDirective implements OnChanges {
|
|
8
8
|
constructor(session: SessionService, _element: ElementRef<HTMLDivElement>);
|
9
9
|
ngOnChanges(_: SimpleChanges): void;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<StateDirective, never>;
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StateDirective, "bizdoc-status", never, { "stateId": "stateId"; }, {}, never>;
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StateDirective, "bizdoc-status", never, { "stateId": "stateId"; }, {}, never, never, false>;
|
12
12
|
}
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
9
9
|
export declare class TagsComponent implements OnInit, OnDestroy, AfterViewInit {
|
10
10
|
private data;
|
11
11
|
private _mailbox;
|
12
|
-
readonly control: FormControl
|
12
|
+
readonly control: FormControl<any>;
|
13
13
|
tags: string[];
|
14
14
|
inputElement: ElementRef<HTMLInputElement>;
|
15
15
|
auto: MatAutocomplete;
|
@@ -26,7 +26,7 @@ export declare class TagsComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
26
26
|
remove(tag: string): void;
|
27
27
|
ngOnDestroy(): void;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "ng-component", never, {}, {}, never, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "ng-component", never, {}, {}, never, never, false>;
|
30
30
|
}
|
31
31
|
interface TagsData {
|
32
32
|
id: number;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ElementRef, OnDestroy
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
2
2
|
import { NodeModel, ConnectorModel, LayoutModel, DiagramTools, Diagram, DiagramConstraints, ScrollSettingsModel, SnapSettingsModel, Segments } from '@syncfusion/ej2-angular-diagrams';
|
3
3
|
import { DocumentModel } from "../../core/models";
|
4
4
|
import { TraceBase } from './trace.base';
|
@@ -8,9 +8,8 @@ import { TranslateService } from '../../core/translate.service';
|
|
8
8
|
import { HubService } from '../../core/hub.service';
|
9
9
|
import { DurationFormatPipe } from '../../core/pipes/duration-format.pipe';
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
-
export declare class FlowViewComponent extends TraceBase implements
|
11
|
+
export declare class FlowViewComponent extends TraceBase implements OnDestroy {
|
12
12
|
private _accounts;
|
13
|
-
private _session;
|
14
13
|
private _translate;
|
15
14
|
private _duration;
|
16
15
|
private _elementRef;
|
@@ -25,9 +24,8 @@ export declare class FlowViewComponent extends TraceBase implements OnChanges, O
|
|
25
24
|
private readonly _configuration;
|
26
25
|
private _accentColor;
|
27
26
|
/** workflow-view ctor */
|
28
|
-
constructor(_accounts: AccountService,
|
29
|
-
|
30
|
-
private _initialize;
|
27
|
+
constructor(_accounts: AccountService, session: SessionService, _translate: TranslateService, _duration: DurationFormatPipe, _elementRef: ElementRef<HTMLDivElement>, hub: HubService);
|
28
|
+
protected _initialize(): Promise<void>;
|
31
29
|
private _refresh;
|
32
30
|
/**
|
33
31
|
*
|
@@ -49,11 +47,16 @@ export declare class FlowViewComponent extends TraceBase implements OnChanges, O
|
|
49
47
|
resize(): void;
|
50
48
|
private _timeEstimate;
|
51
49
|
private _tooltip;
|
50
|
+
/** */
|
52
51
|
private _startNode;
|
52
|
+
/**
|
53
|
+
*
|
54
|
+
* @param node
|
55
|
+
* @param recipient
|
56
|
+
*/
|
53
57
|
private _note;
|
54
58
|
private _action;
|
55
|
-
private _fromNow;
|
56
59
|
ngOnDestroy(): void;
|
57
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowViewComponent, never>;
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlowViewComponent, "bizdoc-flow", never, { "model": "model"; "connectorType": "connectorType"; }, {}, never, never>;
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlowViewComponent, "bizdoc-flow", never, { "model": "model"; "connectorType": "connectorType"; }, {}, never, never, false>;
|
59
62
|
}
|
@@ -14,5 +14,5 @@ export declare class PeopleComponent implements OnChanges {
|
|
14
14
|
ngOnChanges(changes: SimpleChanges): void;
|
15
15
|
private _push;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PeopleComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PeopleComponent, "bizdoc-people", never, { "model": "model"; }, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PeopleComponent, "bizdoc-people", never, { "model": "model"; }, {}, never, never, false>;
|
18
18
|
}
|
@@ -1,18 +1,23 @@
|
|
1
|
+
import { SimpleChanges } from "@angular/core";
|
1
2
|
import { Observable, Subject } from "rxjs";
|
2
3
|
import { NodeInfo, DocumentModel } from "../../core/models";
|
3
4
|
import { HubService } from "../../core/hub.service";
|
4
5
|
import { OnChanges } from "@angular/core";
|
6
|
+
import { SessionService } from "../../core/session.service";
|
5
7
|
import * as i0 from "@angular/core";
|
6
8
|
export declare const START_NODE = "start";
|
7
9
|
export declare const You = "you";
|
8
10
|
export declare abstract class TraceBase implements OnChanges {
|
11
|
+
protected _session: SessionService;
|
9
12
|
abstract model: DocumentModel<any>;
|
10
13
|
private _standardTime;
|
11
14
|
protected _destroy: Subject<void>;
|
12
|
-
constructor(hub: HubService);
|
15
|
+
constructor(_session: SessionService, hub: HubService);
|
13
16
|
onLoad(): Observable<any> | null;
|
14
17
|
refresh(): void;
|
15
|
-
|
18
|
+
protected _roleName(name: string): string;
|
19
|
+
ngOnChanges(_: SimpleChanges): void;
|
20
|
+
protected abstract _initialize(): any;
|
16
21
|
protected resetEstimateTime(): void;
|
17
22
|
/**
|
18
23
|
*
|
@@ -24,5 +29,5 @@ export declare abstract class TraceBase implements OnChanges {
|
|
24
29
|
};
|
25
30
|
ngOnDestroy(): void;
|
26
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<TraceBase, never>;
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TraceBase, never, never, {}, {}, never>;
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TraceBase, never, never, {}, {}, never, never, false>;
|
28
33
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { EventEmitter
|
1
|
+
import { EventEmitter } from "@angular/core";
|
2
2
|
import { CalendarSpec } from "../../core/pipes/calendar.pipe";
|
3
3
|
import { LogType, DocumentModel } from "../../core/models";
|
4
4
|
import { SessionService } from "../../core/session.service";
|
@@ -9,8 +9,7 @@ import { HubService } from "../../core/hub.service";
|
|
9
9
|
import { ChatInfo } from "../../chat/chat-info";
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
/** component showing trace table */
|
12
|
-
export declare class TraceViewComponent extends TraceBase
|
13
|
-
private _session;
|
12
|
+
export declare class TraceViewComponent extends TraceBase {
|
14
13
|
private _translate;
|
15
14
|
private _accounts;
|
16
15
|
private _chat;
|
@@ -19,14 +18,12 @@ export declare class TraceViewComponent extends TraceBase implements OnChanges {
|
|
19
18
|
data: Trace[];
|
20
19
|
private _data;
|
21
20
|
readonly CALENDAR_SPEC: CalendarSpec;
|
22
|
-
constructor(
|
23
|
-
|
24
|
-
private _initialize;
|
21
|
+
constructor(session: SessionService, _translate: TranslateService, _accounts: AccountService, _chat: ChatInfo, hub: HubService);
|
22
|
+
protected _initialize(): Promise<void>;
|
25
23
|
private _filter;
|
26
24
|
private _showMode;
|
27
25
|
get showMode(): ShowMode;
|
28
26
|
set showMode(value: ShowMode);
|
29
|
-
private _roleName;
|
30
27
|
chat(e: MouseEvent): void;
|
31
28
|
/**
|
32
29
|
* model version compare
|
@@ -34,7 +31,7 @@ export declare class TraceViewComponent extends TraceBase implements OnChanges {
|
|
34
31
|
*/
|
35
32
|
compare(log: Trace): void;
|
36
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<TraceViewComponent, never>;
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TraceViewComponent, "bizdoc-trace", never, { "model": "model"; }, { "versionSelected": "versionSelected"; }, never, never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TraceViewComponent, "bizdoc-trace", never, { "model": "model"; }, { "versionSelected": "versionSelected"; }, never, never, false>;
|
38
35
|
}
|
39
36
|
interface Trace {
|
40
37
|
fyi?: boolean;
|
@@ -16,5 +16,5 @@ export declare class TracePaneComponent implements OnInit {
|
|
16
16
|
ngOnInit(): void;
|
17
17
|
version(time: Date): void;
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TracePaneComponent, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TracePaneComponent, "ng-component", never, {}, {}, never, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TracePaneComponent, "ng-component", never, {}, {}, never, never, false>;
|
20
20
|
}
|
@@ -20,5 +20,5 @@ export declare class VersionCompareComponent implements OnChanges {
|
|
20
20
|
constructor(_session: SessionService, _cf: BizDocComponentFactoryResolver, _container: ViewContainerRef, _injector: Injector);
|
21
21
|
ngOnChanges(_: SimpleChanges): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionCompareComponent, never>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VersionCompareComponent, "bizdoc-version-compare", never, { "model": "model"; "version": "version"; }, {}, never, never>;
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VersionCompareComponent, "bizdoc-version-compare", never, { "model": "model"; "version": "version"; }, {}, never, never, false>;
|
24
24
|
}
|
@@ -33,7 +33,7 @@ export declare class CompareGroupDirective extends CompareDirectiveBase implemen
|
|
33
33
|
ngOnInit(): void;
|
34
34
|
private _normalize;
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompareGroupDirective, [{ optional: true; }, { optional: true; host: true; }, { optional: true; host: true; skipSelf: true; }]>;
|
36
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CompareGroupDirective, "[bizdocCompareGroup],[bizdocCompareArray]", never, { "name": "bizdocCompareGroup"; }, {}, never>;
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CompareGroupDirective, "[bizdocCompareGroup],[bizdocCompareArray]", never, { "name": "bizdocCompareGroup"; }, {}, never, never, false>;
|
37
37
|
}
|
38
38
|
/** */
|
39
39
|
export declare class CompareNameDirective extends CompareDirectiveBase implements OnInit, AfterViewInit {
|
@@ -59,7 +59,7 @@ export declare class CompareNameDirective extends CompareDirectiveBase implement
|
|
59
59
|
ngAfterViewInit(): void;
|
60
60
|
private _decorate;
|
61
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompareNameDirective, [{ optional: true; }, { optional: true; host: true; }, { optional: true; host: true; }, null, null, null, null]>;
|
62
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CompareNameDirective, "[bizdocCompareName]", never, { "name": "bizdocCompareName"; }, {}, never>;
|
62
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CompareNameDirective, "[bizdocCompareName]", never, { "name": "bizdocCompareName"; }, {}, never, never, false>;
|
63
63
|
}
|
64
64
|
/** */
|
65
65
|
export declare class CompareContextDirective extends CompareDirectiveBase implements OnInit, AfterViewInit {
|
@@ -84,6 +84,6 @@ export declare class CompareContextDirective extends CompareDirectiveBase implem
|
|
84
84
|
/** removes repeated added and removed tags */
|
85
85
|
private _collapse;
|
86
86
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompareContextDirective, [{ optional: true; }, { optional: true; host: true; }, null, { optional: true; }, null]>;
|
87
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CompareContextDirective, "[bizdocCompareContext],[bizdocCompare]", ["bizdocCompare"], { "compareOf": "bizdocCompareOf"; "context": "bizdocCompareContext"; "decorate": "bizdocCompareDecorate"; }, {}, never>;
|
87
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CompareContextDirective, "[bizdocCompareContext],[bizdocCompare]", ["bizdocCompare"], { "compareOf": "bizdocCompareOf"; "context": "bizdocCompareContext"; "decorate": "bizdocCompareDecorate"; }, {}, never, never, false>;
|
88
88
|
}
|
89
89
|
export {};
|
@@ -17,5 +17,5 @@ export declare class VersionPaneComponent implements OnInit {
|
|
17
17
|
ngOnInit(): void;
|
18
18
|
switch(time: Date): void;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<VersionPaneComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VersionPaneComponent, "bizdoc-version.pane", never, {}, {}, never, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VersionPaneComponent, "bizdoc-version.pane", never, {}, {}, never, never, false>;
|
21
21
|
}
|
@@ -11,5 +11,5 @@ export declare class NgxComponentOutlet implements OnInit {
|
|
11
11
|
constructor(_viewContainerRef: ViewContainerRef, _componentFactoryResolver: ComponentFactoryResolver);
|
12
12
|
ngOnInit(): void;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxComponentOutlet, never>;
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxComponentOutlet, "ngx-component-outlet", never, { "ngxComponentOutlet": "type"; "ngxComponentOutletInjector": "injector"; "ngxComponentOutletContent": "ngxComponentOutletContent"; }, { "createEvents": "create"; }, never>;
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxComponentOutlet, "ngx-component-outlet", never, { "ngxComponentOutlet": "type"; "ngxComponentOutletInjector": "injector"; "ngxComponentOutletContent": "ngxComponentOutletContent"; }, { "createEvents": "create"; }, never, never, false>;
|
15
15
|
}
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
3
3
|
export declare class MatIconAnimate {
|
4
4
|
constructor(element: ElementRef<HTMLElement>);
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatIconAnimate, never>;
|
6
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatIconAnimate, "[matAnimate]", never, {}, {}, never>;
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatIconAnimate, "[matAnimate]", never, {}, {}, never, never, false>;
|
7
7
|
}
|
@@ -30,5 +30,5 @@ export declare class AvatarComponent implements OnChanges, OnDestroy {
|
|
30
30
|
private _initials;
|
31
31
|
ngOnDestroy(): void;
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "bizdoc-avatar", never, { "person": "person"; "interactive": "interactive"; "dense": "dense"; }, {}, never, never>;
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "bizdoc-avatar", never, { "person": "person"; "interactive": "interactive"; "dense": "dense"; }, {}, never, never, false>;
|
34
34
|
}
|
@@ -6,7 +6,7 @@ export declare class BizDocComponentFactoryResolver {
|
|
6
6
|
private _factories;
|
7
7
|
constructor(_componentFactoryResolver: ComponentFactoryResolver);
|
8
8
|
component(componentSelector: string): any;
|
9
|
-
resolve(componentSelector: string): import("@angular/core").ComponentFactory<
|
9
|
+
resolve(componentSelector: string): import("@angular/core").ComponentFactory<any>;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizDocComponentFactoryResolver, never>;
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<BizDocComponentFactoryResolver>;
|
12
12
|
}
|
@@ -18,7 +18,7 @@ export declare class AddressInput implements MatFormFieldControl<string>, Contro
|
|
18
18
|
private _onChange;
|
19
19
|
private _onTouched;
|
20
20
|
_addresses: google.maps.places.QueryAutocompletePrediction[];
|
21
|
-
readonly control: FormControl
|
21
|
+
readonly control: FormControl<any>;
|
22
22
|
readonly stateChanges: Subject<void>;
|
23
23
|
readonly id: string;
|
24
24
|
inputElement: ElementRef;
|
@@ -57,7 +57,7 @@ export declare class AddressInput implements MatFormFieldControl<string>, Contro
|
|
57
57
|
ngOnInit(): void;
|
58
58
|
ngOnDestroy(): void;
|
59
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddressInput, [{ optional: true; self: true; }, null, null]>;
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AddressInput, "bizdoc-address", never, { "debounce": "debounce"; "location": "location"; "country": "country"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, { "optionSelected": "optionSelected"; }, never, never>;
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddressInput, "bizdoc-address", never, { "debounce": "debounce"; "location": "location"; "country": "country"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, { "optionSelected": "optionSelected"; }, never, never, false>;
|
61
61
|
}
|
62
62
|
export interface AddressChangeEvent {
|
63
63
|
address: string;
|
@@ -22,7 +22,7 @@ export declare class TypeAutocomplete implements MatFormFieldControl<string>, Do
|
|
22
22
|
private _value?;
|
23
23
|
private _onChange;
|
24
24
|
private _onTouched;
|
25
|
-
readonly _control: FormControl
|
25
|
+
readonly _control: FormControl<any>;
|
26
26
|
readonly stateChanges: Subject<void>;
|
27
27
|
_items$: Observable<KeyValue[]>;
|
28
28
|
_column: FieldInfo;
|
@@ -73,7 +73,7 @@ export declare class TypeAutocomplete implements MatFormFieldControl<string>, Do
|
|
73
73
|
ngOnInit(): void;
|
74
74
|
ngOnDestroy(): void;
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<TypeAutocomplete, [{ optional: true; self: true; }, null, null, null, null]>;
|
76
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TypeAutocomplete, "bizdoc-autocomplete", never, { "_type": "type"; "placeholder": "placeholder"; "text": "text"; "required": "required"; "disabled": "disabled"; "value": "value"; "minimumChars": "minimumChars"; "textFormControlName": "textFormControlName"; "textFormControl": "textFormControl"; }, { "textChange": "textChange"; "optionSelected": "optionSelected"; }, never, never>;
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypeAutocomplete, "bizdoc-autocomplete", never, { "_type": "type"; "placeholder": "placeholder"; "text": "text"; "required": "required"; "disabled": "disabled"; "value": "value"; "minimumChars": "minimumChars"; "textFormControlName": "textFormControlName"; "textFormControl": "textFormControl"; }, { "textChange": "textChange"; "optionSelected": "optionSelected"; }, never, never, false>;
|
77
77
|
}
|
78
78
|
interface KeyValue {
|
79
79
|
key: any;
|
@@ -53,7 +53,7 @@ export declare class CombinationPickerBody implements OnInit, OnDestroy {
|
|
53
53
|
readonly _explorable: boolean;
|
54
54
|
_working: boolean;
|
55
55
|
readonly _axes: CubeAxis[];
|
56
|
-
readonly _form: import("@angular/forms").FormGroup
|
56
|
+
readonly _form: import("@angular/forms").FormGroup<{}>;
|
57
57
|
readonly _keys: {
|
58
58
|
[type: string]: (string | number)[];
|
59
59
|
};
|
@@ -105,7 +105,7 @@ export declare class CombinationPickerBody implements OnInit, OnDestroy {
|
|
105
105
|
_info(codes: string[], evt: Event): void;
|
106
106
|
ngOnDestroy(): void;
|
107
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<CombinationPickerBody, [{ optional: true; }, { optional: true; }, null, null, null, null, null, null, null]>;
|
108
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CombinationPickerBody, "bizdoc-combination-picker-body", never, {}, {}, never, never>;
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CombinationPickerBody, "bizdoc-combination-picker-body", never, {}, {}, never, never, false>;
|
109
109
|
}
|
110
110
|
export interface CombinationSelectedEvent {
|
111
111
|
readonly value: string;
|
@@ -78,5 +78,5 @@ export declare class CombinationPicker implements MatFormFieldControl<string>, C
|
|
78
78
|
close(): void;
|
79
79
|
ngOnDestroy(): void;
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<CombinationPicker, [{ optional: true; self: true; }, { optional: true; }, null, null, null, null, null, null, null]>;
|
81
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CombinationPicker, "bizdoc-combination-picker", never, { "_divider": "divider"; "_displayDivider": "displayDivider"; "limit": "limit"; "cube": "cube"; "exploreSettings": "exploreSettings"; "description": "description"; "touchUi": "touchUi"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, { "optionSelected": "optionSelected"; "descriptionChange": "descriptionChange"; }, never, never>;
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CombinationPicker, "bizdoc-combination-picker", never, { "_divider": "divider"; "_displayDivider": "displayDivider"; "limit": "limit"; "cube": "cube"; "exploreSettings": "exploreSettings"; "description": "description"; "touchUi": "touchUi"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, { "optionSelected": "optionSelected"; "descriptionChange": "descriptionChange"; }, never, never, false>;
|
82
82
|
}
|
@@ -38,5 +38,5 @@ export declare class CombinationPool implements OnInit, OnDestroy {
|
|
38
38
|
clearAll(): void;
|
39
39
|
ngOnDestroy(): void;
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<CombinationPool, never>;
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CombinationPool, "bizdoc-combination-pool", never, { "form": "formGroup"; "appearance": "appearance"; "cube": "cube"; "model": "model"; "source": "source"; }, { "modelChange": "modelChange"; }, never, never>;
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CombinationPool, "bizdoc-combination-pool", never, { "form": "formGroup"; "appearance": "appearance"; "cube": "cube"; "model": "model"; "source": "source"; }, { "modelChange": "modelChange"; }, never, never, false>;
|
42
42
|
}
|
@@ -95,5 +95,5 @@ export declare class FileInput implements MatFormFieldControl<number | number[]>
|
|
95
95
|
private _upload;
|
96
96
|
ngOnDestroy(): void;
|
97
97
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileInput, [null, null, null, null, null, null, null, { optional: true; self: true; }, null]>;
|
98
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileInput, "bizdoc-file-upload", never, { "multiple": "multiple"; "accept": "accept"; "icon": "icon"; "value": "value"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; }, {}, never, never>;
|
98
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileInput, "bizdoc-file-upload", never, { "multiple": "multiple"; "accept": "accept"; "icon": "icon"; "value": "value"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; }, {}, never, never, false>;
|
99
99
|
}
|
@@ -23,7 +23,7 @@ export declare class TypeSelect implements MatFormFieldControl<string | string[]
|
|
23
23
|
private _onChange;
|
24
24
|
private _onTouched;
|
25
25
|
private _multiple;
|
26
|
-
readonly _control: FormControl
|
26
|
+
readonly _control: FormControl<any>;
|
27
27
|
_items$: Observable<KeyValue[]>;
|
28
28
|
_column: FieldInfo;
|
29
29
|
private _configuration;
|
@@ -68,7 +68,7 @@ export declare class TypeSelect implements MatFormFieldControl<string | string[]
|
|
68
68
|
ngOnInit(): void;
|
69
69
|
ngOnDestroy(): void;
|
70
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<TypeSelect, [{ optional: true; self: true; }, null, null, null, null]>;
|
71
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TypeSelect, "bizdoc-select", never, { "type": "type"; "scope": "scope"; "multiple": "multiple"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "text": "text"; "value": "value"; }, { "selectionChange": "selectionChange"; "textChange": "textChange"; }, never, never>;
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TypeSelect, "bizdoc-select", never, { "type": "type"; "scope": "scope"; "multiple": "multiple"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "text": "text"; "value": "value"; }, { "selectionChange": "selectionChange"; "textChange": "textChange"; }, never, never, false>;
|
72
72
|
}
|
73
73
|
interface KeyValue {
|
74
74
|
key: any;
|
@@ -29,7 +29,7 @@ export declare class TimePicker implements ControlValueAccessor, MatFormFieldCon
|
|
29
29
|
get disabled(): boolean;
|
30
30
|
set disabled(value: boolean);
|
31
31
|
private _disabled;
|
32
|
-
readonly control: FormControl
|
32
|
+
readonly control: FormControl<any>;
|
33
33
|
readonly stateChanges: Subject<void>;
|
34
34
|
readonly options: string[];
|
35
35
|
get value(): string | null;
|
@@ -48,5 +48,5 @@ export declare class TimePicker implements ControlValueAccessor, MatFormFieldCon
|
|
48
48
|
private _validate;
|
49
49
|
ngOnDestroy(): void;
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimePicker, [null, null, { optional: true; self: true; }]>;
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimePicker, "mat-time-picker", never, { "dateControlName": "dateControlName"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, {}, never, never>;
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimePicker, "mat-time-picker", never, { "dateControlName": "dateControlName"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, {}, never, never, false>;
|
52
52
|
}
|
@@ -22,7 +22,11 @@ export declare class TimespanInput implements MatFormFieldControl<string>, Contr
|
|
22
22
|
private _disabled;
|
23
23
|
private _onChange;
|
24
24
|
private _onTouched;
|
25
|
-
readonly parts: import("@angular/forms").FormGroup
|
25
|
+
readonly parts: import("@angular/forms").FormGroup<{
|
26
|
+
days: import("@angular/forms").FormControl<string>;
|
27
|
+
hours: import("@angular/forms").FormControl<string>;
|
28
|
+
minutes: import("@angular/forms").FormControl<string>;
|
29
|
+
}>;
|
26
30
|
readonly stateChanges: Subject<void>;
|
27
31
|
readonly id: string;
|
28
32
|
get placeholder(): string;
|
@@ -51,5 +55,5 @@ export declare class TimespanInput implements MatFormFieldControl<string>, Contr
|
|
51
55
|
ngOnInit(): void;
|
52
56
|
ngOnDestroy(): void;
|
53
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimespanInput, [{ optional: true; self: true; }, null, null, null]>;
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimespanInput, "bizdoc-timespan-input", never, { "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, {}, never, never>;
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimespanInput, "bizdoc-timespan-input", never, { "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "value": "value"; }, {}, never, never, false>;
|
55
59
|
}
|
@@ -28,5 +28,5 @@ export declare class GuideComponent implements OnInit {
|
|
28
28
|
prev(): void;
|
29
29
|
close(dismiss?: boolean): void;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<GuideComponent, never>;
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GuideComponent, "ng-component", never, {}, {}, never, never>;
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GuideComponent, "ng-component", never, {}, {}, never, never, false>;
|
32
32
|
}
|
@@ -12,5 +12,5 @@ export declare class HelpTipComponent implements OnInit {
|
|
12
12
|
open(evt: MouseEvent): void;
|
13
13
|
dismiss(): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<HelpTipComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HelpTipComponent, "bizdoc-help-tip", never, { "name": "name"; }, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HelpTipComponent, "bizdoc-help-tip", never, { "name": "name"; }, {}, never, never, false>;
|
16
16
|
}
|
@@ -25,5 +25,5 @@ export declare class IdentityName implements OnChanges {
|
|
25
25
|
*/
|
26
26
|
chat(e: MouseEvent): void;
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<IdentityName, never>;
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IdentityName, "bizdoc-identity-name", never, { "identity": "identity"; "by": "by"; "chating": "chating"; }, {}, never, never>;
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IdentityName, "bizdoc-identity-name", never, { "identity": "identity"; "by": "by"; "chating": "chating"; }, {}, never, never, false>;
|
29
29
|
}
|
@@ -16,7 +16,7 @@ export declare class MapComponent implements OnInit {
|
|
16
16
|
constructor(_ref: OverlayRef, _data: Location, _elementRef: ElementRef<HTMLDivElement>);
|
17
17
|
ngOnInit(): void;
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapComponent, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "bizdoc-map", never, {}, {}, never, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapComponent, "bizdoc-map", never, {}, {}, never, never, false>;
|
20
20
|
}
|
21
21
|
export interface Location {
|
22
22
|
location: LatLng;
|
@@ -7,7 +7,7 @@ import { FieldBase } from './input.base';
|
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export declare class AutocompleteField extends FieldBase implements OnInit, OnDestroy {
|
9
9
|
private _ds;
|
10
|
-
readonly control: FormControl
|
10
|
+
readonly control: FormControl<any>;
|
11
11
|
params: any;
|
12
12
|
input: TypeAutocomplete;
|
13
13
|
source: Observable<any[]>;
|
@@ -17,5 +17,5 @@ export declare class AutocompleteField extends FieldBase implements OnInit, OnDe
|
|
17
17
|
focus(): void;
|
18
18
|
ngOnDestroy(): void;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteField, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteField, "ng-component", never, { "params": "params"; }, {}, never, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteField, "ng-component", never, { "params": "params"; }, {}, never, never, false>;
|
21
21
|
}
|
@@ -6,5 +6,5 @@ export declare class CheckboxComponent {
|
|
6
6
|
color: ThemePalette;
|
7
7
|
icon: 'switch' | 'checkbox';
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "bizdoc-checkbox", never, { "value": "value"; "color": "color"; "icon": "icon"; }, {}, never, ["*"]>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "bizdoc-checkbox", never, { "value": "value"; "color": "color"; "icon": "icon"; }, {}, never, ["*"], false>;
|
10
10
|
}
|
@@ -4,8 +4,8 @@ import { FieldBase } from './input.base';
|
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class CheckField extends FieldBase {
|
6
6
|
input: MatCheckbox;
|
7
|
-
readonly control: FormControl
|
7
|
+
readonly control: FormControl<boolean>;
|
8
8
|
focus(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckField, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckField, "ng-component", never, {}, {}, never, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckField, "ng-component", never, {}, {}, never, never, false>;
|
11
11
|
}
|
@@ -5,9 +5,12 @@ import * as i0 from "@angular/core";
|
|
5
5
|
export declare class DateRangeField extends FieldBase {
|
6
6
|
private _fb;
|
7
7
|
inp: ElementRef<HTMLInputElement>;
|
8
|
-
readonly control: import("@angular/forms").FormGroup
|
8
|
+
readonly control: import("@angular/forms").FormGroup<{
|
9
|
+
start: import("@angular/forms").FormControl<any>;
|
10
|
+
end: import("@angular/forms").FormControl<any>;
|
11
|
+
}>;
|
9
12
|
constructor(_fb: FormBuilder);
|
10
13
|
focus(): void;
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeField, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeField, "ng-component", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeField, "ng-component", never, {}, {}, never, never, false>;
|
13
16
|
}
|
@@ -3,9 +3,9 @@ import { MatInput } from '@angular/material/input';
|
|
3
3
|
import { FieldBase } from './input.base';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class DateField extends FieldBase {
|
6
|
-
readonly control: FormControl
|
6
|
+
readonly control: FormControl<any>;
|
7
7
|
input: MatInput;
|
8
8
|
focus(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateField, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateField, "ng-component", never, {}, {}, never, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateField, "ng-component", never, {}, {}, never, never, false>;
|
11
11
|
}
|
@@ -3,10 +3,10 @@ import { AceInput } from '../../admin/core/ace.input';
|
|
3
3
|
import { FieldBase } from './input.base';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class ExpressionField extends FieldBase {
|
6
|
-
readonly control: FormControl
|
6
|
+
readonly control: FormControl<any>;
|
7
7
|
input: AceInput;
|
8
8
|
params: any;
|
9
9
|
focus(): void;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExpressionField, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExpressionField, "ng-component", never, { "params": "params"; }, {}, never, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpressionField, "ng-component", never, { "params": "params"; }, {}, never, never, false>;
|
12
12
|
}
|
@@ -4,11 +4,12 @@ import { FileInput } from '../controls/file.input';
|
|
4
4
|
import { FieldBase } from './input.base';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class FileField extends FieldBase implements OnInit {
|
7
|
-
|
7
|
+
focus(): void;
|
8
|
+
readonly control: FormControl<any>;
|
8
9
|
multiple: boolean;
|
9
10
|
input: FileInput;
|
10
11
|
type: string;
|
11
12
|
ngOnInit(): void;
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileField, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileField, "ng-component", never, {}, {}, never, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileField, "ng-component", never, {}, {}, never, never, false>;
|
14
15
|
}
|
@@ -6,7 +6,7 @@ export declare class HtmlField extends FieldBase {
|
|
6
6
|
input: RichTextEditorComponent;
|
7
7
|
readonly toolbarSettings: ToolbarSettingsModel;
|
8
8
|
focus(): void;
|
9
|
-
readonly control: FormControl
|
9
|
+
readonly control: FormControl<any>;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlField, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlField, "ng-component", never, {}, {}, never, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HtmlField, "ng-component", never, {}, {}, never, never, false>;
|
12
12
|
}
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare abstract class FieldBase {
|
5
5
|
abstract control: AbstractControl;
|
6
6
|
field: FieldInfo;
|
7
|
-
focus():
|
7
|
+
abstract focus(): any;
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldBase, never>;
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldBase, never, never, {}, {}, never>;
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldBase, never, never, {}, {}, never, never, false>;
|
10
10
|
}
|
@@ -4,11 +4,11 @@ import { MatInput } from '@angular/material/input';
|
|
4
4
|
import { FieldBase } from './input.base';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class InputField extends FieldBase implements OnInit {
|
7
|
-
readonly control: FormControl
|
7
|
+
readonly control: FormControl<any>;
|
8
8
|
input: MatInput;
|
9
9
|
type: string;
|
10
10
|
ngOnInit(): void;
|
11
11
|
focus(): void;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputField, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputField, "ng-component", never, {}, {}, never, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputField, "ng-component", never, {}, {}, never, never, false>;
|
14
14
|
}
|
@@ -29,5 +29,5 @@ export declare class LayoutComponent implements OnChanges, AfterViewInit, OnDest
|
|
29
29
|
focus(): void;
|
30
30
|
ngOnDestroy(): void;
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "bizdoc-layout", never, { "fields": "fields"; "model": "model"; "dirty": "dirty"; "params": "params"; "valid": "valid"; }, { "modelChange": "modelChange"; "dirtyChange": "dirtyChange"; "validChange": "validChange"; }, never, never>;
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "bizdoc-layout", never, { "fields": "fields"; "model": "model"; "dirty": "dirty"; "params": "params"; "valid": "valid"; }, { "modelChange": "modelChange"; "dirtyChange": "dirtyChange"; "validChange": "validChange"; }, never, never, false>;
|
33
33
|
}
|
@@ -4,8 +4,8 @@ import { FieldBase } from './input.base';
|
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class NumericField extends FieldBase {
|
6
6
|
input: MatInput;
|
7
|
-
readonly control: FormControl
|
7
|
+
readonly control: FormControl<any>;
|
8
8
|
focus(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumericField, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NumericField, "ng-component", never, {}, {}, never, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericField, "ng-component", never, {}, {}, never, never, false>;
|
11
11
|
}
|