@bizdoc/core 1.16.3 → 1.16.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bizdoc-core.d.ts.map +1 -0
- package/esm2020/lib/admin/admin-dismiss.service.mjs +6 -6
- package/esm2020/lib/admin/admin-menu.component.mjs +82 -9
- package/esm2020/lib/admin/configuration-designer/cube-axes-filter.component.mjs +248 -0
- package/esm2020/lib/admin/configuration-designer/designer-element.component.mjs +192 -29
- package/esm2020/lib/admin/configuration-designer/designer.base.mjs +37 -25
- package/esm2020/lib/admin/configuration-designer/designer.component.mjs +152 -10
- package/esm2020/lib/admin/configuration-designer/elements/action.component.mjs +107 -10
- package/esm2020/lib/admin/configuration-designer/elements/analysis-view.component.mjs +447 -7
- package/esm2020/lib/admin/configuration-designer/elements/analysis-widget.component.mjs +441 -7
- package/esm2020/lib/admin/configuration-designer/elements/anomaly-rule.component.mjs +25 -7
- package/esm2020/lib/admin/configuration-designer/elements/box-form.component.mjs +25 -7
- package/esm2020/lib/admin/configuration-designer/elements/configuration-datasource.component.mjs +79 -7
- package/esm2020/lib/admin/configuration-designer/elements/cube-index-utility.component.mjs +71 -7
- package/esm2020/lib/admin/configuration-designer/elements/cube-view.component.mjs +98 -7
- package/esm2020/lib/admin/configuration-designer/elements/cube.component.mjs +793 -10
- package/esm2020/lib/admin/configuration-designer/elements/documents-report.component.mjs +52 -7
- package/esm2020/lib/admin/configuration-designer/elements/documents-widget.component.mjs +55 -10
- package/esm2020/lib/admin/configuration-designer/elements/explore-view.component.mjs +73 -7
- package/esm2020/lib/admin/configuration-designer/elements/folder.component.mjs +275 -9
- package/esm2020/lib/admin/configuration-designer/elements/form.component.mjs +96 -10
- package/esm2020/lib/admin/configuration-designer/elements/guide.component.mjs +78 -7
- package/esm2020/lib/admin/configuration-designer/elements/matrix-view.component.mjs +293 -8
- package/esm2020/lib/admin/configuration-designer/elements/parallel-view.component.mjs +210 -8
- package/esm2020/lib/admin/configuration-designer/elements/performance-widget.component.mjs +74 -7
- package/esm2020/lib/admin/configuration-designer/elements/pivot-view.component.mjs +162 -8
- package/esm2020/lib/admin/configuration-designer/elements/report.component.mjs +58 -7
- package/esm2020/lib/admin/configuration-designer/elements/return-to-role-action.component.mjs +40 -7
- package/esm2020/lib/admin/configuration-designer/elements/role.component.mjs +70 -8
- package/esm2020/lib/admin/configuration-designer/elements/rule.component.mjs +20 -7
- package/esm2020/lib/admin/configuration-designer/elements/state.component.mjs +63 -11
- package/esm2020/lib/admin/configuration-designer/elements/sum-view.component.mjs +132 -8
- package/esm2020/lib/admin/configuration-designer/elements/tasks-report.component.mjs +101 -7
- package/esm2020/lib/admin/configuration-designer/elements/type.component.mjs +25 -7
- package/esm2020/lib/admin/configuration-designer/elements/usage-report.component.mjs +205 -8
- package/esm2020/lib/admin/configuration-designer/elements/utility.component.mjs +24 -7
- package/esm2020/lib/admin/configuration-designer/elements/view.component.mjs +22 -7
- package/esm2020/lib/admin/configuration-designer/elements/widget.component.mjs +54 -7
- package/esm2020/lib/admin/configuration-designer/icon-picker.component.mjs +79 -30
- package/esm2020/lib/admin/core/ace.input.mjs +35 -29
- package/esm2020/lib/admin/core/color-picker.input.mjs +89 -36
- package/esm2020/lib/admin/core/search.input.mjs +23 -13
- package/esm2020/lib/admin/diff/configuration-diff.component.mjs +90 -15
- package/esm2020/lib/admin/document-trace/document-trace.component.mjs +296 -30
- package/esm2020/lib/admin/document-trace/reassign.dialog.mjs +63 -10
- package/esm2020/lib/admin/document-trace/trace-element.component.mjs +238 -7
- package/esm2020/lib/admin/form/designer/designer.component.mjs +492 -10
- package/esm2020/lib/admin/form/form.resolve.service.mjs +6 -6
- package/esm2020/lib/admin/form/workflow/node.component.mjs +86 -15
- package/esm2020/lib/admin/form/workflow/role-node.component.mjs +152 -13
- package/esm2020/lib/admin/form/workflow/workflow.component.mjs +219 -18
- package/esm2020/lib/admin/indices/manage-cube-index.component.mjs +160 -13
- package/esm2020/lib/admin/patterns/patterns.component.mjs +280 -19
- package/esm2020/lib/admin/permissions/permissions.component.mjs +129 -13
- package/esm2020/lib/admin/positions/positions-popup.component.mjs +77 -13
- package/esm2020/lib/admin/positions/positions.component.mjs +605 -31
- package/esm2020/lib/admin/profiler/outofoffice.component.mjs +184 -16
- package/esm2020/lib/admin/profiler/profiler.component.mjs +268 -21
- package/esm2020/lib/admin/system.service.mjs +6 -6
- package/esm2020/lib/admin/utility-wrapper.component.mjs +9 -9
- package/esm2020/lib/admin/utility.pane.component.mjs +23 -15
- package/esm2020/lib/app.component.mjs +19 -19
- package/esm2020/lib/bizdoc.module.mjs +30 -29
- package/esm2020/lib/browse/browse-items.component.mjs +629 -40
- package/esm2020/lib/browse/browse.mobile.component.mjs +218 -13
- package/esm2020/lib/browse/browse.pane.component.mjs +214 -18
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +161 -11
- package/esm2020/lib/browse/filter/filter.component.mjs +184 -27
- package/esm2020/lib/browse/folders-menu.component.mjs +74 -11
- package/esm2020/lib/chat/chat-info.mjs +10 -10
- package/esm2020/lib/chat/chat.mobile.component.mjs +32 -11
- package/esm2020/lib/chat/chat.service.mjs +7 -7
- package/esm2020/lib/chat/contacts.component.mjs +134 -15
- package/esm2020/lib/chat/contacts.pane.component.mjs +16 -12
- package/esm2020/lib/chat/conversation.component.mjs +128 -21
- package/esm2020/lib/chat/conversation.pane.component.mjs +13 -9
- package/esm2020/lib/compose/action/action-picker.component.mjs +107 -14
- package/esm2020/lib/compose/action/action.dialog.mjs +78 -13
- package/esm2020/lib/compose/action/action.pane.dialog.exp.mjs +58 -12
- package/esm2020/lib/compose/action/assign-action.component.mjs +93 -10
- package/esm2020/lib/compose/action/moveto-action.component.mjs +110 -10
- package/esm2020/lib/compose/action/return-action.component.mjs +55 -7
- package/esm2020/lib/compose/attachments/attachments.component.mjs +140 -13
- package/esm2020/lib/compose/attachments/preview/attachment-preview.component.mjs +147 -58
- package/esm2020/lib/compose/attachments/progress-button.directive.mjs +9 -9
- package/esm2020/lib/compose/box/box.component.mjs +160 -7
- package/esm2020/lib/compose/can-deactivate-changes.service.mjs +6 -6
- package/esm2020/lib/compose/comments/comment.component.mjs +189 -26
- package/esm2020/lib/compose/comments/comments.component.mjs +111 -22
- package/esm2020/lib/compose/comments/comments.pane.component.mjs +21 -12
- package/esm2020/lib/compose/comments/edit-comment.component.mjs +16 -10
- package/esm2020/lib/compose/comments/edits.component.mjs +47 -10
- package/esm2020/lib/compose/comments/quick-comment.component.exp.mjs +37 -10
- package/esm2020/lib/compose/comments/votes.component.mjs +45 -10
- package/esm2020/lib/compose/compose-resolve.service.mjs +11 -11
- package/esm2020/lib/compose/compose.mobile.component.mjs +297 -19
- package/esm2020/lib/compose/compose.pane.component.mjs +336 -36
- package/esm2020/lib/compose/copy/copy.dialog.mjs +58 -7
- package/esm2020/lib/compose/dismiss.service.mjs +6 -6
- package/esm2020/lib/compose/document-resolver.service.mjs +6 -6
- package/esm2020/lib/compose/document.component.mjs +28 -12
- package/esm2020/lib/compose/document.mobile.component.mjs +13 -9
- package/esm2020/lib/compose/document.pane.component.mjs +13 -9
- package/esm2020/lib/compose/events/events.component.mjs +33 -9
- package/esm2020/lib/compose/form-selector/form-selector.sheet.mjs +40 -7
- package/esm2020/lib/compose/form.component.mjs +119 -40
- package/esm2020/lib/compose/new-menu.component.mjs +45 -9
- package/esm2020/lib/compose/privilage.directive.mjs +31 -31
- package/esm2020/lib/compose/recipient-resolver.service.mjs +6 -6
- package/esm2020/lib/compose/state.component.mjs +9 -9
- package/esm2020/lib/compose/tag/tags.component.mjs +73 -16
- package/esm2020/lib/compose/trace/flow.component.mjs +13 -13
- package/esm2020/lib/compose/trace/people.component.mjs +23 -13
- package/esm2020/lib/compose/trace/trace.base.mjs +6 -6
- package/esm2020/lib/compose/trace/trace.component.mjs +306 -11
- package/esm2020/lib/compose/trace/trace.pane.component.mjs +31 -15
- package/esm2020/lib/compose/version-compare/version-compare.component.mjs +14 -14
- package/esm2020/lib/compose/version-compare/version-compare.directive.mjs +64 -64
- package/esm2020/lib/compose/version-compare/version.pane.component.mjs +66 -9
- package/esm2020/lib/core/NgComponentOutlet.mjs +18 -18
- package/esm2020/lib/core/account.service.mjs +7 -7
- package/esm2020/lib/core/animated-icon/animated-icon.directive.mjs +7 -7
- package/esm2020/lib/core/avatar/avatar.component.mjs +43 -16
- package/esm2020/lib/core/component-factory-resolver.mjs +6 -6
- package/esm2020/lib/core/controls/address.input.mjs +74 -45
- package/esm2020/lib/core/controls/auto-complete.input.mjs +129 -65
- package/esm2020/lib/core/controls/combination-picker-body.mjs +156 -20
- package/esm2020/lib/core/controls/combination-picker.mjs +71 -52
- package/esm2020/lib/core/controls/combination-pool.mjs +76 -20
- package/esm2020/lib/core/controls/file.input.mjs +316 -51
- package/esm2020/lib/core/controls/select.input.mjs +115 -59
- package/esm2020/lib/core/controls/time-picker.mjs +49 -25
- package/esm2020/lib/core/controls/timespan.input.mjs +59 -37
- package/esm2020/lib/core/datasource.service.mjs +7 -7
- package/esm2020/lib/core/guide/guide.component.mjs +88 -19
- package/esm2020/lib/core/guide/guide.service.mjs +10 -10
- package/esm2020/lib/core/guide/help-tip.component.mjs +36 -14
- package/esm2020/lib/core/http.interceptor.mjs +12 -12
- package/esm2020/lib/core/hub.service.mjs +9 -9
- package/esm2020/lib/core/identity/identity.component.mjs +38 -16
- package/esm2020/lib/core/info/attachment-info.service.mjs +6 -6
- package/esm2020/lib/core/info/document-info.service.mjs +6 -6
- package/esm2020/lib/core/info/location-info.component.mjs +12 -12
- package/esm2020/lib/core/info/map-info.mjs +6 -6
- package/esm2020/lib/core/layout/autocomplete.field.mjs +66 -22
- package/esm2020/lib/core/layout/checkbox.field.mjs +56 -18
- package/esm2020/lib/core/layout/checkbox.mjs +33 -19
- package/esm2020/lib/core/layout/date-range.field.mjs +47 -22
- package/esm2020/lib/core/layout/date.field.mjs +67 -23
- package/esm2020/lib/core/layout/expression.field.mjs +66 -24
- package/esm2020/lib/core/layout/file.field.mjs +64 -20
- package/esm2020/lib/core/layout/html.field.mjs +60 -18
- package/esm2020/lib/core/layout/input.base.mjs +6 -6
- package/esm2020/lib/core/layout/input.field.mjs +64 -20
- package/esm2020/lib/core/layout/layout.component.mjs +34 -26
- package/esm2020/lib/core/layout/numeric.field.mjs +72 -21
- package/esm2020/lib/core/layout/select.field.mjs +100 -33
- package/esm2020/lib/core/layout/switch.field.mjs +56 -18
- package/esm2020/lib/core/layout/textarea.field.mjs +60 -18
- package/esm2020/lib/core/layout/timespan.field.mjs +67 -22
- package/esm2020/lib/core/lottie-animation.mjs +22 -20
- package/esm2020/lib/core/mailbox.service.mjs +7 -7
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/none.component.mjs +39 -17
- package/esm2020/lib/core/pipes/action.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/calendar.pipe.mjs +10 -10
- package/esm2020/lib/core/pipes/date-format.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/daterange.pipe.mjs +13 -13
- package/esm2020/lib/core/pipes/difference.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/duration-format.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/duration.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/form.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/join.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/role.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/sort.pipe.mjs +17 -17
- package/esm2020/lib/core/pipes/state.pipe.mjs +7 -7
- package/esm2020/lib/core/pipes/time-ago.pipe.mjs +10 -10
- package/esm2020/lib/core/pipes/type-value.pipe.mjs +9 -9
- package/esm2020/lib/core/pipes/user-name.pipe.mjs +7 -7
- package/esm2020/lib/core/popup/popup.component.mjs +26 -13
- package/esm2020/lib/core/popup/popup.service.mjs +7 -7
- package/esm2020/lib/core/popup/tooltip.directive.mjs +34 -34
- package/esm2020/lib/core/prompt/ask/ask.dialog.mjs +34 -10
- package/esm2020/lib/core/prompt/mask/mask.component.mjs +18 -10
- package/esm2020/lib/core/prompt.service.mjs +7 -7
- package/esm2020/lib/core/router.mjs +11 -11
- package/esm2020/lib/core/save-changes.dialog.mjs +43 -7
- package/esm2020/lib/core/session.service.mjs +10 -10
- package/esm2020/lib/core/slots/router.directive.mjs +29 -27
- package/esm2020/lib/core/slots/router.service.mjs +7 -7
- package/esm2020/lib/core/slots/slots.component.mjs +296 -41
- package/esm2020/lib/core/tagging/documents.component.mjs +33 -7
- package/esm2020/lib/core/tagging/edit-input.component.mjs +141 -38
- package/esm2020/lib/core/tagging/emoji.component.mjs +15 -12
- package/esm2020/lib/core/tagging/tagging-item.directive.mjs +31 -23
- package/esm2020/lib/core/tagging/tagging.component-base.mjs +14 -9
- package/esm2020/lib/core/tagging/tagging.directive.mjs +23 -21
- package/esm2020/lib/core/tagging/tagging.pipe.mjs +7 -7
- package/esm2020/lib/core/tagging/users.component.mjs +37 -7
- package/esm2020/lib/core/translate.service.mjs +7 -7
- package/esm2020/lib/core/translations.mjs +4 -1
- package/esm2020/lib/core/window-title.service.mjs +10 -10
- package/esm2020/lib/cube/accum/accum.component.mjs +41 -39
- package/esm2020/lib/cube/chart/chart.component.mjs +47 -45
- package/esm2020/lib/cube/cube-info.service.mjs +6 -6
- package/esm2020/lib/cube/cube-menu.component.mjs +70 -11
- package/esm2020/lib/cube/cube-view.component.mjs +34 -32
- package/esm2020/lib/cube/cube.service.mjs +10 -10
- package/esm2020/lib/cube/explore/document-item.component.mjs +15 -11
- package/esm2020/lib/cube/explore/explore-item.component.mjs +11 -11
- package/esm2020/lib/cube/explore/explore-items.component.mjs +167 -37
- package/esm2020/lib/cube/explore/explore.pane.component.mjs +65 -12
- package/esm2020/lib/cube/explore/item-resolver.service.mjs +11 -11
- package/esm2020/lib/cube/explore/item.pane.component.mjs +13 -9
- package/esm2020/lib/cube/filter/filter-tags.component.exp.mjs +59 -15
- package/esm2020/lib/cube/filter/filter.component.mjs +153 -17
- package/esm2020/lib/cube/grid/grid.component.mjs +33 -31
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +39 -37
- package/esm2020/lib/cube/matrix/matrix.base.mjs +6 -6
- package/esm2020/lib/cube/matrix/matrix.mobile.component.mjs +112 -10
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +123 -12
- package/esm2020/lib/cube/matrix/popup.component.mjs +120 -16
- package/esm2020/lib/cube/matrix/table.component.mjs +178 -45
- package/esm2020/lib/cube/parallel/parallel.component.mjs +57 -28
- package/esm2020/lib/cube/pivot/pivot.component.mjs +43 -40
- package/esm2020/lib/cube/sum/sum.component.mjs +238 -32
- package/esm2020/lib/cube/view-base.mjs +6 -6
- package/esm2020/lib/cube/view.mobile.component.mjs +177 -19
- package/esm2020/lib/cube/view.pane.component.mjs +109 -15
- package/esm2020/lib/dashboard/actions/actions.widget.mjs +28 -21
- package/esm2020/lib/dashboard/cube/accum-cube.widget.mjs +17 -15
- package/esm2020/lib/dashboard/cube/compare.widget.mjs +25 -18
- package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +6 -6
- package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +10 -10
- package/esm2020/lib/dashboard/cube/cube-chart.widget.mjs +17 -15
- package/esm2020/lib/dashboard/cube/documents.widget.mjs +114 -19
- package/esm2020/lib/dashboard/cube/filter/filter.component.mjs +13 -7
- package/esm2020/lib/dashboard/dashboard.component.mjs +90 -12
- package/esm2020/lib/dashboard/dashboard.pane.component.mjs +9 -7
- package/esm2020/lib/dashboard/recents/recents.widget.mjs +164 -19
- package/esm2020/lib/dashboard/score/activity.widget.mjs +18 -13
- package/esm2020/lib/dashboard/score/compare-groups.widget.mjs +25 -18
- package/esm2020/lib/dashboard/score/peers-performance.widget.mjs +26 -19
- package/esm2020/lib/dashboard/score/pending-results.widget.mjs +143 -19
- package/esm2020/lib/dashboard/score/personal-score.widget.mjs +23 -18
- package/esm2020/lib/dashboard/widget-item.component.mjs +17 -15
- package/esm2020/lib/desktop.module.mjs +58 -57
- package/esm2020/lib/home/about/about.dialog.mjs +97 -7
- package/esm2020/lib/home/home-base.component.mjs +6 -6
- package/esm2020/lib/home/home.desktop.component.mjs +336 -16
- package/esm2020/lib/home/home.mobile.component.mjs +310 -16
- package/esm2020/lib/home/notifications/notifications.component.mjs +78 -7
- package/esm2020/lib/home/options/options.component.mjs +171 -7
- package/esm2020/lib/home/outofoffice/outofoffice.component.mjs +40 -10
- package/esm2020/lib/home/search.service.mjs +6 -6
- package/esm2020/lib/home/sign/sign.component.mjs +32 -7
- package/esm2020/lib/home/tools.component.mjs +87 -13
- package/esm2020/lib/impersonate/impersonate.component.mjs +61 -7
- package/esm2020/lib/mobile.module.mjs +34 -33
- package/esm2020/lib/modules/chart.module.mjs +22 -21
- package/esm2020/lib/modules/circular-gauge.module.mjs +13 -12
- package/esm2020/lib/modules/datepicker.intl.mjs +6 -6
- package/esm2020/lib/modules/dayjs.module.mjs +11 -11
- package/esm2020/lib/modules/diagram.module.mjs +24 -23
- package/esm2020/lib/modules/gantt.module.mjs +13 -12
- package/esm2020/lib/modules/grid.module.mjs +16 -15
- package/esm2020/lib/modules/material.module.mjs +87 -86
- package/esm2020/lib/modules/paginator.intl.mjs +6 -6
- package/esm2020/lib/modules/pivot.module.mjs +17 -16
- package/esm2020/lib/modules/schedule.module.mjs +15 -14
- package/esm2020/lib/modules/spreadsheet.module.mjs +21 -20
- package/esm2020/lib/modules/stepper.intl.mjs +6 -6
- package/esm2020/lib/modules/texteditor.module.mjs +19 -18
- package/esm2020/lib/notifications/filter.component.mjs +22 -7
- package/esm2020/lib/notifications/notifications-table.component.mjs +214 -10
- package/esm2020/lib/notifications/notifications.mobile.component.mjs +11 -9
- package/esm2020/lib/notifications/notifications.pane.component.mjs +14 -12
- package/esm2020/lib/notifications/notifications.service.mjs +6 -6
- package/esm2020/lib/notifications/types/commented.notification.mjs +42 -15
- package/esm2020/lib/notifications/types/cube-anomaly.notification.mjs +25 -15
- package/esm2020/lib/notifications/types/escalated.notification.mjs +24 -12
- package/esm2020/lib/notifications/types/liked.notification.mjs +42 -15
- package/esm2020/lib/notifications/types/long-running-task.notification.mjs +17 -13
- package/esm2020/lib/notifications/types/notification-base.mjs +11 -9
- package/esm2020/lib/notifications/types/nudge.notification.mjs +18 -12
- package/esm2020/lib/notifications/types/state-changed.notification.mjs +18 -10
- package/esm2020/lib/notifications/types/tagged.notification.mjs +26 -14
- package/esm2020/lib/notifications/types/text.notification.mjs +14 -10
- package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +24 -15
- package/esm2020/lib/options/options.component.mjs +350 -25
- package/esm2020/lib/options/options.service.mjs +6 -6
- package/esm2020/lib/reports/arguments-component.mjs +20 -20
- package/esm2020/lib/reports/cube/documents.component.mjs +9 -9
- package/esm2020/lib/reports/cube/grid-documents.component.mjs +77 -10
- package/esm2020/lib/reports/cube/table-documents.component.mjs +175 -13
- package/esm2020/lib/reports/cube/usage-args.component.mjs +13 -7
- package/esm2020/lib/reports/cube/usage-base.mjs +6 -6
- package/esm2020/lib/reports/cube/usage-chart.component.mjs +15 -13
- package/esm2020/lib/reports/cube/usage-pivot.component.mjs +21 -14
- package/esm2020/lib/reports/cube/usage.component.mjs +9 -9
- package/esm2020/lib/reports/report-viewer.component.mjs +36 -20
- package/esm2020/lib/reports/report.mobile.component.mjs +105 -13
- package/esm2020/lib/reports/report.pane.component.mjs +92 -15
- package/esm2020/lib/reports/reports-menu.component.mjs +40 -11
- package/esm2020/lib/reports/substitution/substitution.component.mjs +157 -10
- package/esm2020/lib/reports/table/table-view.component.mjs +74 -16
- package/esm2020/lib/reports/tasks/tasks.component.mjs +38 -10
- package/esm2020/lib/scheduler/schedule.component.mjs +110 -14
- package/esm2020/lib/scheduler/scheduler.mobile.component.mjs +15 -9
- package/esm2020/lib/scheduler/scheduler.pane.component.mjs +19 -12
- package/esm2020/lib/shared.module.mjs +197 -196
- package/esm2020/lib/system.module.mjs +64 -62
- package/esm2020/lib/views/cube/chart.component.mjs +45 -7
- package/esm2020/lib/views/cube/cube-base.mjs +6 -6
- package/esm2020/lib/views/cube/explore.component.mjs +128 -7
- package/esm2020/lib/views/cube/matrix.component.mjs +164 -10
- package/esm2020/lib/views/cube/parallel.component.mjs +20 -7
- package/esm2020/lib/views/cube/pivot.component.mjs +20 -7
- package/esm2020/lib/views/cube/sum.component.mjs +116 -7
- package/esm2020/lib/views/cube/view.component.mjs +137 -10
- package/esm2020/lib/views/timeline/timeline.component.exp.mjs +14 -12
- package/esm2020/lib/views/view-item.component.mjs +20 -18
- package/esm2020/lib/views/views.component.mjs +31 -12
- package/esm2020/lib/views/views.mobile.component.mjs +11 -7
- package/esm2020/lib/views/views.pane.component.mjs +19 -10
- package/fesm2015/bizdoc-core.mjs +25737 -2457
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +24051 -5129
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/admin/admin-dismiss.service.d.ts +1 -0
- package/lib/admin/admin-dismiss.service.d.ts.map +1 -0
- package/lib/admin/admin-menu.component.d.ts +1 -0
- package/lib/admin/admin-menu.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts +36 -0
- package/lib/admin/configuration-designer/cube-axes-filter.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/designer-element.component.d.ts +6 -2
- package/lib/admin/configuration-designer/designer-element.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/designer.base.d.ts +25 -3
- package/lib/admin/configuration-designer/designer.base.d.ts.map +1 -0
- package/lib/admin/configuration-designer/designer.component.d.ts +1 -0
- package/lib/admin/configuration-designer/designer.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/action.component.d.ts +16 -1
- package/lib/admin/configuration-designer/elements/action.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/analysis-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/analysis-widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/anomaly-rule.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/box-form.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/box-form.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/configuration-datasource.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/cube-index-utility.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/cube-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/cube-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/cube.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/documents-report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/documents-report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/documents-widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/explore-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/explore-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/folder.component.d.ts +13 -1
- package/lib/admin/configuration-designer/elements/folder.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/form.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/form.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/guide.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/guide.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/matrix-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/parallel-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/performance-widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/pivot-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/return-to-role-action.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/role.component.d.ts +3 -0
- package/lib/admin/configuration-designer/elements/role.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/rule.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/rule.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/state.component.d.ts +5 -0
- package/lib/admin/configuration-designer/elements/state.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/sum-view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/sum-view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/tasks-report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/type.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/type.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/usage-report.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/usage-report.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/utility.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/utility.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/view.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/view.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/elements/widget.component.d.ts +1 -0
- package/lib/admin/configuration-designer/elements/widget.component.d.ts.map +1 -0
- package/lib/admin/configuration-designer/icon-picker.component.d.ts +1 -0
- package/lib/admin/configuration-designer/icon-picker.component.d.ts.map +1 -0
- package/lib/admin/core/ace.input.d.ts +1 -0
- package/lib/admin/core/ace.input.d.ts.map +1 -0
- package/lib/admin/core/color-picker.input.d.ts +1 -0
- package/lib/admin/core/color-picker.input.d.ts.map +1 -0
- package/lib/admin/core/search.input.d.ts +1 -0
- package/lib/admin/core/search.input.d.ts.map +1 -0
- package/lib/admin/diff/configuration-diff.component.d.ts +1 -0
- package/lib/admin/diff/configuration-diff.component.d.ts.map +1 -0
- package/lib/admin/document-trace/document-trace.component.d.ts +1 -0
- package/lib/admin/document-trace/document-trace.component.d.ts.map +1 -0
- package/lib/admin/document-trace/reassign.dialog.d.ts +1 -0
- package/lib/admin/document-trace/reassign.dialog.d.ts.map +1 -0
- package/lib/admin/document-trace/timeline.d.ts +1 -0
- package/lib/admin/document-trace/timeline.d.ts.map +1 -0
- package/lib/admin/document-trace/trace-element.component.d.ts +1 -0
- package/lib/admin/document-trace/trace-element.component.d.ts.map +1 -0
- package/lib/admin/form/designer/designer.component.d.ts +1 -0
- package/lib/admin/form/designer/designer.component.d.ts.map +1 -0
- package/lib/admin/form/form.resolve.service.d.ts +1 -0
- package/lib/admin/form/form.resolve.service.d.ts.map +1 -0
- package/lib/admin/form/workflow/node-ref.d.ts +1 -0
- package/lib/admin/form/workflow/node-ref.d.ts.map +1 -0
- package/lib/admin/form/workflow/node.component.d.ts +1 -0
- package/lib/admin/form/workflow/node.component.d.ts.map +1 -0
- package/lib/admin/form/workflow/role-node.component.d.ts +1 -0
- package/lib/admin/form/workflow/role-node.component.d.ts.map +1 -0
- package/lib/admin/form/workflow/workflow.component.d.ts +1 -0
- package/lib/admin/form/workflow/workflow.component.d.ts.map +1 -0
- package/lib/admin/indices/manage-cube-index.component.d.ts +1 -0
- package/lib/admin/indices/manage-cube-index.component.d.ts.map +1 -0
- package/lib/admin/patterns/patterns.component.d.ts +1 -0
- package/lib/admin/patterns/patterns.component.d.ts.map +1 -0
- package/lib/admin/permissions/permissions.component.d.ts +1 -0
- package/lib/admin/permissions/permissions.component.d.ts.map +1 -0
- package/lib/admin/positions/positions-popup.component.d.ts +1 -0
- package/lib/admin/positions/positions-popup.component.d.ts.map +1 -0
- package/lib/admin/positions/positions.component.d.ts +1 -0
- package/lib/admin/positions/positions.component.d.ts.map +1 -0
- package/lib/admin/profiler/outofoffice.component.d.ts +1 -0
- package/lib/admin/profiler/outofoffice.component.d.ts.map +1 -0
- package/lib/admin/profiler/profiler.component.d.ts +1 -0
- package/lib/admin/profiler/profiler.component.d.ts.map +1 -0
- package/lib/admin/system.service.d.ts +1 -0
- package/lib/admin/system.service.d.ts.map +1 -0
- package/lib/admin/utility-ref.d.ts +1 -0
- package/lib/admin/utility-ref.d.ts.map +1 -0
- package/lib/admin/utility-wrapper.component.d.ts +1 -0
- package/lib/admin/utility-wrapper.component.d.ts.map +1 -0
- package/lib/admin/utility.pane.component.d.ts +1 -0
- package/lib/admin/utility.pane.component.d.ts.map +1 -0
- package/lib/app.component.d.ts +1 -0
- package/lib/app.component.d.ts.map +1 -0
- package/lib/bizdoc.module.d.ts +1 -0
- package/lib/bizdoc.module.d.ts.map +1 -0
- package/lib/browse/browse-items.component.d.ts +1 -0
- package/lib/browse/browse-items.component.d.ts.map +1 -0
- package/lib/browse/browse.mobile.component.d.ts +1 -0
- package/lib/browse/browse.mobile.component.d.ts.map +1 -0
- package/lib/browse/browse.pane.component.d.ts +1 -0
- package/lib/browse/browse.pane.component.d.ts.map +1 -0
- package/lib/browse/expanded-item/expanded-item.component.d.ts +1 -0
- package/lib/browse/expanded-item/expanded-item.component.d.ts.map +1 -0
- package/lib/browse/filter/filter.component.d.ts +1 -0
- package/lib/browse/filter/filter.component.d.ts.map +1 -0
- package/lib/browse/folders-menu.component.d.ts +1 -0
- package/lib/browse/folders-menu.component.d.ts.map +1 -0
- package/lib/chat/chat-info.d.ts +1 -0
- package/lib/chat/chat-info.d.ts.map +1 -0
- package/lib/chat/chat.mobile.component.d.ts +1 -0
- package/lib/chat/chat.mobile.component.d.ts.map +1 -0
- package/lib/chat/chat.service.d.ts +1 -0
- package/lib/chat/chat.service.d.ts.map +1 -0
- package/lib/chat/contacts.component.d.ts +1 -0
- package/lib/chat/contacts.component.d.ts.map +1 -0
- package/lib/chat/contacts.pane.component.d.ts +1 -0
- package/lib/chat/contacts.pane.component.d.ts.map +1 -0
- package/lib/chat/conversation.component.d.ts +1 -0
- package/lib/chat/conversation.component.d.ts.map +1 -0
- package/lib/chat/conversation.pane.component.d.ts +1 -0
- package/lib/chat/conversation.pane.component.d.ts.map +1 -0
- package/lib/compose/action/action-picker.component.d.ts +1 -0
- package/lib/compose/action/action-picker.component.d.ts.map +1 -0
- package/lib/compose/action/action-ref.d.ts +1 -0
- package/lib/compose/action/action-ref.d.ts.map +1 -0
- package/lib/compose/action/action.base.d.ts +1 -0
- package/lib/compose/action/action.base.d.ts.map +1 -0
- package/lib/compose/action/action.dialog.d.ts +1 -0
- package/lib/compose/action/action.dialog.d.ts.map +1 -0
- package/lib/compose/action/action.pane.dialog.exp.d.ts +1 -0
- package/lib/compose/action/action.pane.dialog.exp.d.ts.map +1 -0
- package/lib/compose/action/assign-action.component.d.ts +1 -0
- package/lib/compose/action/assign-action.component.d.ts.map +1 -0
- package/lib/compose/action/moveto-action.component.d.ts +1 -0
- package/lib/compose/action/moveto-action.component.d.ts.map +1 -0
- package/lib/compose/action/return-action.component.d.ts +1 -0
- package/lib/compose/action/return-action.component.d.ts.map +1 -0
- package/lib/compose/attachments/attachments.component.d.ts +1 -0
- package/lib/compose/attachments/attachments.component.d.ts.map +1 -0
- package/lib/compose/attachments/preview/attachment-preview.component.d.ts +1 -0
- package/lib/compose/attachments/preview/attachment-preview.component.d.ts.map +1 -0
- package/lib/compose/attachments/progress-button.directive.d.ts +1 -0
- package/lib/compose/attachments/progress-button.directive.d.ts.map +1 -0
- package/lib/compose/box/box.component.d.ts +1 -0
- package/lib/compose/box/box.component.d.ts.map +1 -0
- package/lib/compose/can-deactivate-changes.service.d.ts +1 -0
- package/lib/compose/can-deactivate-changes.service.d.ts.map +1 -0
- package/lib/compose/comments/comment.component.d.ts +1 -0
- package/lib/compose/comments/comment.component.d.ts.map +1 -0
- package/lib/compose/comments/comments.component.d.ts +1 -0
- package/lib/compose/comments/comments.component.d.ts.map +1 -0
- package/lib/compose/comments/comments.pane.component.d.ts +1 -0
- package/lib/compose/comments/comments.pane.component.d.ts.map +1 -0
- package/lib/compose/comments/edit-comment.component.d.ts +1 -0
- package/lib/compose/comments/edit-comment.component.d.ts.map +1 -0
- package/lib/compose/comments/edits.component.d.ts +1 -0
- package/lib/compose/comments/edits.component.d.ts.map +1 -0
- package/lib/compose/comments/quick-comment.component.exp.d.ts +1 -0
- package/lib/compose/comments/quick-comment.component.exp.d.ts.map +1 -0
- package/lib/compose/comments/votes.component.d.ts +1 -0
- package/lib/compose/comments/votes.component.d.ts.map +1 -0
- package/lib/compose/compose-resolve.service.d.ts +1 -0
- package/lib/compose/compose-resolve.service.d.ts.map +1 -0
- package/lib/compose/compose.mobile.component.d.ts +1 -0
- package/lib/compose/compose.mobile.component.d.ts.map +1 -0
- package/lib/compose/compose.pane.component.d.ts +1 -0
- package/lib/compose/compose.pane.component.d.ts.map +1 -0
- package/lib/compose/copy/copy.dialog.d.ts +1 -0
- package/lib/compose/copy/copy.dialog.d.ts.map +1 -0
- package/lib/compose/dismiss.service.d.ts +1 -0
- package/lib/compose/dismiss.service.d.ts.map +1 -0
- package/lib/compose/document-resolver.service.d.ts +1 -0
- package/lib/compose/document-resolver.service.d.ts.map +1 -0
- package/lib/compose/document.component.d.ts +1 -0
- package/lib/compose/document.component.d.ts.map +1 -0
- package/lib/compose/document.mobile.component.d.ts +1 -0
- package/lib/compose/document.mobile.component.d.ts.map +1 -0
- package/lib/compose/document.pane.component.d.ts +1 -0
- package/lib/compose/document.pane.component.d.ts.map +1 -0
- package/lib/compose/events/events.component.d.ts +1 -0
- package/lib/compose/events/events.component.d.ts.map +1 -0
- package/lib/compose/form-ref.d.ts +1 -0
- package/lib/compose/form-ref.d.ts.map +1 -0
- package/lib/compose/form-selector/form-selector.sheet.d.ts +1 -0
- package/lib/compose/form-selector/form-selector.sheet.d.ts.map +1 -0
- package/lib/compose/form.component.d.ts +1 -0
- package/lib/compose/form.component.d.ts.map +1 -0
- package/lib/compose/new-menu.component.d.ts +1 -0
- package/lib/compose/new-menu.component.d.ts.map +1 -0
- package/lib/compose/privilage.directive.d.ts +1 -0
- package/lib/compose/privilage.directive.d.ts.map +1 -0
- package/lib/compose/recipient-resolver.service.d.ts +1 -0
- package/lib/compose/recipient-resolver.service.d.ts.map +1 -0
- package/lib/compose/state.component.d.ts +1 -0
- package/lib/compose/state.component.d.ts.map +1 -0
- package/lib/compose/tag/tags.component.d.ts +1 -0
- package/lib/compose/tag/tags.component.d.ts.map +1 -0
- package/lib/compose/trace/flow.component.d.ts +1 -0
- package/lib/compose/trace/flow.component.d.ts.map +1 -0
- package/lib/compose/trace/people.component.d.ts +1 -0
- package/lib/compose/trace/people.component.d.ts.map +1 -0
- package/lib/compose/trace/trace.base.d.ts +1 -0
- package/lib/compose/trace/trace.base.d.ts.map +1 -0
- package/lib/compose/trace/trace.component.d.ts +1 -0
- package/lib/compose/trace/trace.component.d.ts.map +1 -0
- package/lib/compose/trace/trace.pane.component.d.ts +1 -0
- package/lib/compose/trace/trace.pane.component.d.ts.map +1 -0
- package/lib/compose/version-compare/version-compare.component.d.ts +1 -0
- package/lib/compose/version-compare/version-compare.component.d.ts.map +1 -0
- package/lib/compose/version-compare/version-compare.directive.d.ts +1 -0
- package/lib/compose/version-compare/version-compare.directive.d.ts.map +1 -0
- package/lib/compose/version-compare/version.pane.component.d.ts +1 -0
- package/lib/compose/version-compare/version.pane.component.d.ts.map +1 -0
- package/lib/core/NgComponentOutlet.d.ts +1 -0
- package/lib/core/NgComponentOutlet.d.ts.map +1 -0
- package/lib/core/account.service.d.ts +1 -0
- package/lib/core/account.service.d.ts.map +1 -0
- package/lib/core/animated-icon/animated-icon.directive.d.ts +1 -0
- package/lib/core/animated-icon/animated-icon.directive.d.ts.map +1 -0
- package/lib/core/animations.d.ts +1 -0
- package/lib/core/animations.d.ts.map +1 -0
- package/lib/core/authentication.d.ts +1 -0
- package/lib/core/authentication.d.ts.map +1 -0
- package/lib/core/avatar/avatar.component.d.ts +1 -0
- package/lib/core/avatar/avatar.component.d.ts.map +1 -0
- package/lib/core/base.d.ts +1 -0
- package/lib/core/base.d.ts.map +1 -0
- package/lib/core/colors.d.ts +1 -0
- package/lib/core/colors.d.ts.map +1 -0
- package/lib/core/component-factory-resolver.d.ts +1 -0
- package/lib/core/component-factory-resolver.d.ts.map +1 -0
- package/lib/core/configuration.d.ts +1 -0
- package/lib/core/configuration.d.ts.map +1 -0
- package/lib/core/controls/address.input.d.ts +1 -0
- package/lib/core/controls/address.input.d.ts.map +1 -0
- package/lib/core/controls/auto-complete.input.d.ts +1 -0
- package/lib/core/controls/auto-complete.input.d.ts.map +1 -0
- package/lib/core/controls/combination-picker-body.d.ts +1 -0
- package/lib/core/controls/combination-picker-body.d.ts.map +1 -0
- package/lib/core/controls/combination-picker.d.ts +1 -0
- package/lib/core/controls/combination-picker.d.ts.map +1 -0
- package/lib/core/controls/combination-pool.d.ts +1 -0
- package/lib/core/controls/combination-pool.d.ts.map +1 -0
- package/lib/core/controls/file.input.d.ts +1 -0
- package/lib/core/controls/file.input.d.ts.map +1 -0
- package/lib/core/controls/select.input.d.ts +1 -0
- package/lib/core/controls/select.input.d.ts.map +1 -0
- package/lib/core/controls/time-picker.d.ts +1 -0
- package/lib/core/controls/time-picker.d.ts.map +1 -0
- package/lib/core/controls/timespan.input.d.ts +1 -0
- package/lib/core/controls/timespan.input.d.ts.map +1 -0
- package/lib/core/datasource.service.d.ts +1 -0
- package/lib/core/datasource.service.d.ts.map +1 -0
- package/lib/core/decorators.d.ts +1 -0
- package/lib/core/decorators.d.ts.map +1 -0
- package/lib/core/firebase.service.d.ts +1 -0
- package/lib/core/firebase.service.d.ts.map +1 -0
- package/lib/core/functions.d.ts +1 -0
- package/lib/core/functions.d.ts.map +1 -0
- package/lib/core/guide/guide.component.d.ts +1 -0
- package/lib/core/guide/guide.component.d.ts.map +1 -0
- package/lib/core/guide/guide.service.d.ts +1 -0
- package/lib/core/guide/guide.service.d.ts.map +1 -0
- package/lib/core/guide/help-tip.component.d.ts +1 -0
- package/lib/core/guide/help-tip.component.d.ts.map +1 -0
- package/lib/core/http.interceptor.d.ts +1 -0
- package/lib/core/http.interceptor.d.ts.map +1 -0
- package/lib/core/hub.service.d.ts +1 -0
- package/lib/core/hub.service.d.ts.map +1 -0
- package/lib/core/identity/identity.component.d.ts +1 -0
- package/lib/core/identity/identity.component.d.ts.map +1 -0
- package/lib/core/info/attachment-info.service.d.ts +1 -0
- package/lib/core/info/attachment-info.service.d.ts.map +1 -0
- package/lib/core/info/document-info.service.d.ts +1 -0
- package/lib/core/info/document-info.service.d.ts.map +1 -0
- package/lib/core/info/location-info.component.d.ts +1 -0
- package/lib/core/info/location-info.component.d.ts.map +1 -0
- package/lib/core/info/map-info.d.ts +1 -0
- package/lib/core/info/map-info.d.ts.map +1 -0
- package/lib/core/layout/autocomplete.field.d.ts +1 -0
- package/lib/core/layout/autocomplete.field.d.ts.map +1 -0
- package/lib/core/layout/checkbox.d.ts +1 -0
- package/lib/core/layout/checkbox.d.ts.map +1 -0
- package/lib/core/layout/checkbox.field.d.ts +1 -0
- package/lib/core/layout/checkbox.field.d.ts.map +1 -0
- package/lib/core/layout/date-range.field.d.ts +1 -0
- package/lib/core/layout/date-range.field.d.ts.map +1 -0
- package/lib/core/layout/date.field.d.ts +1 -0
- package/lib/core/layout/date.field.d.ts.map +1 -0
- package/lib/core/layout/expression.field.d.ts +1 -0
- package/lib/core/layout/expression.field.d.ts.map +1 -0
- package/lib/core/layout/file.field.d.ts +1 -0
- package/lib/core/layout/file.field.d.ts.map +1 -0
- package/lib/core/layout/html.field.d.ts +1 -0
- package/lib/core/layout/html.field.d.ts.map +1 -0
- package/lib/core/layout/input.base.d.ts +1 -0
- package/lib/core/layout/input.base.d.ts.map +1 -0
- package/lib/core/layout/input.field.d.ts +1 -0
- package/lib/core/layout/input.field.d.ts.map +1 -0
- package/lib/core/layout/layout.component.d.ts +1 -0
- package/lib/core/layout/layout.component.d.ts.map +1 -0
- package/lib/core/layout/numeric.field.d.ts +1 -0
- package/lib/core/layout/numeric.field.d.ts.map +1 -0
- package/lib/core/layout/select.field.d.ts +1 -0
- package/lib/core/layout/select.field.d.ts.map +1 -0
- package/lib/core/layout/switch.field.d.ts +1 -0
- package/lib/core/layout/switch.field.d.ts.map +1 -0
- package/lib/core/layout/textarea.field.d.ts +1 -0
- package/lib/core/layout/textarea.field.d.ts.map +1 -0
- package/lib/core/layout/timespan.field.d.ts +1 -0
- package/lib/core/layout/timespan.field.d.ts.map +1 -0
- package/lib/core/lottie-animation.d.ts +1 -0
- package/lib/core/lottie-animation.d.ts.map +1 -0
- package/lib/core/mailbox.service.d.ts +1 -0
- package/lib/core/mailbox.service.d.ts.map +1 -0
- package/lib/core/models.d.ts +6 -4
- package/lib/core/models.d.ts.map +1 -0
- package/lib/core/none.component.d.ts +1 -0
- package/lib/core/none.component.d.ts.map +1 -0
- package/lib/core/pipes/action.pipe.d.ts +1 -0
- package/lib/core/pipes/action.pipe.d.ts.map +1 -0
- package/lib/core/pipes/calendar.pipe.d.ts +1 -0
- package/lib/core/pipes/calendar.pipe.d.ts.map +1 -0
- package/lib/core/pipes/date-format.pipe.d.ts +1 -0
- package/lib/core/pipes/date-format.pipe.d.ts.map +1 -0
- package/lib/core/pipes/daterange.pipe.d.ts +1 -0
- package/lib/core/pipes/daterange.pipe.d.ts.map +1 -0
- package/lib/core/pipes/difference.pipe.d.ts +1 -0
- package/lib/core/pipes/difference.pipe.d.ts.map +1 -0
- package/lib/core/pipes/duration-format.pipe.d.ts +1 -0
- package/lib/core/pipes/duration-format.pipe.d.ts.map +1 -0
- package/lib/core/pipes/duration.pipe.d.ts +1 -0
- package/lib/core/pipes/duration.pipe.d.ts.map +1 -0
- package/lib/core/pipes/form.pipe.d.ts +1 -0
- package/lib/core/pipes/form.pipe.d.ts.map +1 -0
- package/lib/core/pipes/join.pipe.d.ts +1 -0
- package/lib/core/pipes/join.pipe.d.ts.map +1 -0
- package/lib/core/pipes/role.pipe.d.ts +1 -0
- package/lib/core/pipes/role.pipe.d.ts.map +1 -0
- package/lib/core/pipes/sanitize-html.pipe.d.ts.map +1 -0
- package/lib/core/pipes/sort.pipe.d.ts +1 -0
- package/lib/core/pipes/sort.pipe.d.ts.map +1 -0
- package/lib/core/pipes/state.pipe.d.ts +1 -0
- package/lib/core/pipes/state.pipe.d.ts.map +1 -0
- package/lib/core/pipes/time-ago.pipe.d.ts +1 -0
- package/lib/core/pipes/time-ago.pipe.d.ts.map +1 -0
- package/lib/core/pipes/translate.pipe.d.ts.map +1 -0
- package/lib/core/pipes/type-value.pipe.d.ts +1 -0
- package/lib/core/pipes/type-value.pipe.d.ts.map +1 -0
- package/lib/core/pipes/user-name.pipe.d.ts +1 -0
- package/lib/core/pipes/user-name.pipe.d.ts.map +1 -0
- package/lib/core/popup/popup-ref.d.ts +1 -0
- package/lib/core/popup/popup-ref.d.ts.map +1 -0
- package/lib/core/popup/popup.component.d.ts +1 -0
- package/lib/core/popup/popup.component.d.ts.map +1 -0
- package/lib/core/popup/popup.service.d.ts +1 -0
- package/lib/core/popup/popup.service.d.ts.map +1 -0
- package/lib/core/popup/tooltip.directive.d.ts +1 -0
- package/lib/core/popup/tooltip.directive.d.ts.map +1 -0
- package/lib/core/prompt/ask/ask.dialog.d.ts +1 -0
- package/lib/core/prompt/ask/ask.dialog.d.ts.map +1 -0
- package/lib/core/prompt/mask/mask.component.d.ts +1 -0
- package/lib/core/prompt/mask/mask.component.d.ts.map +1 -0
- package/lib/core/prompt.service.d.ts +1 -0
- package/lib/core/prompt.service.d.ts.map +1 -0
- package/lib/core/router.d.ts +1 -0
- package/lib/core/router.d.ts.map +1 -0
- package/lib/core/save-changes.dialog.d.ts +1 -0
- package/lib/core/save-changes.dialog.d.ts.map +1 -0
- package/lib/core/session.service.d.ts +1 -0
- package/lib/core/session.service.d.ts.map +1 -0
- package/lib/core/slots/pane-ref.d.ts +1 -0
- package/lib/core/slots/pane-ref.d.ts.map +1 -0
- package/lib/core/slots/router.directive.d.ts +1 -0
- package/lib/core/slots/router.directive.d.ts.map +1 -0
- package/lib/core/slots/router.service.d.ts +1 -0
- package/lib/core/slots/router.service.d.ts.map +1 -0
- package/lib/core/slots/slots.component.d.ts +1 -0
- package/lib/core/slots/slots.component.d.ts.map +1 -0
- package/lib/core/tagging/documents.component.d.ts +1 -0
- package/lib/core/tagging/documents.component.d.ts.map +1 -0
- package/lib/core/tagging/edit-input.component.d.ts +1 -0
- package/lib/core/tagging/edit-input.component.d.ts.map +1 -0
- package/lib/core/tagging/emoji.component.d.ts +1 -0
- package/lib/core/tagging/emoji.component.d.ts.map +1 -0
- package/lib/core/tagging/tagging-item.directive.d.ts +1 -0
- package/lib/core/tagging/tagging-item.directive.d.ts.map +1 -0
- package/lib/core/tagging/tagging.component-base.d.ts +1 -0
- package/lib/core/tagging/tagging.component-base.d.ts.map +1 -0
- package/lib/core/tagging/tagging.directive.d.ts +1 -0
- package/lib/core/tagging/tagging.directive.d.ts.map +1 -0
- package/lib/core/tagging/tagging.pipe.d.ts +1 -0
- package/lib/core/tagging/tagging.pipe.d.ts.map +1 -0
- package/lib/core/tagging/users.component.d.ts +1 -0
- package/lib/core/tagging/users.component.d.ts.map +1 -0
- package/lib/core/translate.service.d.ts +1 -0
- package/lib/core/translate.service.d.ts.map +1 -0
- package/lib/core/translations.d.ts +4 -0
- package/lib/core/translations.d.ts.map +1 -0
- package/lib/core/window-title.service.d.ts +1 -0
- package/lib/core/window-title.service.d.ts.map +1 -0
- package/lib/cube/accum/accum.component.d.ts +1 -0
- package/lib/cube/accum/accum.component.d.ts.map +1 -0
- package/lib/cube/chart/chart.component.d.ts +1 -0
- package/lib/cube/chart/chart.component.d.ts.map +1 -0
- package/lib/cube/cube-info.service.d.ts +1 -0
- package/lib/cube/cube-info.service.d.ts.map +1 -0
- package/lib/cube/cube-menu.component.d.ts +1 -0
- package/lib/cube/cube-menu.component.d.ts.map +1 -0
- package/lib/cube/cube-view.component.d.ts +1 -0
- package/lib/cube/cube-view.component.d.ts.map +1 -0
- package/lib/cube/cube.service.d.ts +1 -0
- package/lib/cube/cube.service.d.ts.map +1 -0
- package/lib/cube/declarations.d.ts +1 -0
- package/lib/cube/declarations.d.ts.map +1 -0
- package/lib/cube/explore/document-item.component.d.ts +1 -0
- package/lib/cube/explore/document-item.component.d.ts.map +1 -0
- package/lib/cube/explore/explore-item.component.d.ts +1 -0
- package/lib/cube/explore/explore-item.component.d.ts.map +1 -0
- package/lib/cube/explore/explore-items.component.d.ts +1 -0
- package/lib/cube/explore/explore-items.component.d.ts.map +1 -0
- package/lib/cube/explore/explore.pane.component.d.ts +1 -0
- package/lib/cube/explore/explore.pane.component.d.ts.map +1 -0
- package/lib/cube/explore/item-resolver.service.d.ts +1 -0
- package/lib/cube/explore/item-resolver.service.d.ts.map +1 -0
- package/lib/cube/explore/item.pane.component.d.ts +1 -0
- package/lib/cube/explore/item.pane.component.d.ts.map +1 -0
- package/lib/cube/filter/filter-tags.component.exp.d.ts +1 -0
- package/lib/cube/filter/filter-tags.component.exp.d.ts.map +1 -0
- package/lib/cube/filter/filter.component.d.ts +1 -0
- package/lib/cube/filter/filter.component.d.ts.map +1 -0
- package/lib/cube/grid/grid.component.d.ts +1 -0
- package/lib/cube/grid/grid.component.d.ts.map +1 -0
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -0
- package/lib/cube/grid/spreadsheet.component.d.ts.map +1 -0
- package/lib/cube/matrix/matrix.base.d.ts +1 -0
- package/lib/cube/matrix/matrix.base.d.ts.map +1 -0
- package/lib/cube/matrix/matrix.mobile.component.d.ts +1 -0
- package/lib/cube/matrix/matrix.mobile.component.d.ts.map +1 -0
- package/lib/cube/matrix/matrix.pane.component.d.ts +1 -0
- package/lib/cube/matrix/matrix.pane.component.d.ts.map +1 -0
- package/lib/cube/matrix/popup.component.d.ts +1 -0
- package/lib/cube/matrix/popup.component.d.ts.map +1 -0
- package/lib/cube/matrix/table.component.d.ts +1 -0
- package/lib/cube/matrix/table.component.d.ts.map +1 -0
- package/lib/cube/parallel/item.d.ts +1 -0
- package/lib/cube/parallel/item.d.ts.map +1 -0
- package/lib/cube/parallel/parallel.component.d.ts +1 -0
- package/lib/cube/parallel/parallel.component.d.ts.map +1 -0
- package/lib/cube/pivot/pivot.component.d.ts +1 -0
- package/lib/cube/pivot/pivot.component.d.ts.map +1 -0
- package/lib/cube/sum/sum.component.d.ts +1 -0
- package/lib/cube/sum/sum.component.d.ts.map +1 -0
- package/lib/cube/view-base.d.ts +1 -0
- package/lib/cube/view-base.d.ts.map +1 -0
- package/lib/cube/view.mobile.component.d.ts +1 -0
- package/lib/cube/view.mobile.component.d.ts.map +1 -0
- package/lib/cube/view.pane.component.d.ts +1 -0
- package/lib/cube/view.pane.component.d.ts.map +1 -0
- package/lib/dashboard/actions/actions.widget.d.ts +1 -0
- package/lib/dashboard/actions/actions.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -0
- package/lib/dashboard/cube/accum-cube.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/compare.widget.d.ts +1 -0
- package/lib/dashboard/cube/compare.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -0
- package/lib/dashboard/cube/cube-analysis.base.d.ts.map +1 -0
- package/lib/dashboard/cube/cube-analysis.widget.d.ts +1 -0
- package/lib/dashboard/cube/cube-analysis.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -0
- package/lib/dashboard/cube/cube-chart.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/documents.widget.d.ts +1 -0
- package/lib/dashboard/cube/documents.widget.d.ts.map +1 -0
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -0
- package/lib/dashboard/cube/filter/filter.component.d.ts.map +1 -0
- package/lib/dashboard/dashboard.component.d.ts +1 -0
- package/lib/dashboard/dashboard.component.d.ts.map +1 -0
- package/lib/dashboard/dashboard.pane.component.d.ts +1 -0
- package/lib/dashboard/dashboard.pane.component.d.ts.map +1 -0
- package/lib/dashboard/recents/recents.widget.d.ts +1 -0
- package/lib/dashboard/recents/recents.widget.d.ts.map +1 -0
- package/lib/dashboard/score/activity.widget.d.ts +1 -0
- package/lib/dashboard/score/activity.widget.d.ts.map +1 -0
- package/lib/dashboard/score/compare-groups.widget.d.ts +1 -0
- package/lib/dashboard/score/compare-groups.widget.d.ts.map +1 -0
- package/lib/dashboard/score/peers-performance.widget.d.ts +1 -0
- package/lib/dashboard/score/peers-performance.widget.d.ts.map +1 -0
- package/lib/dashboard/score/pending-results.widget.d.ts +1 -0
- package/lib/dashboard/score/pending-results.widget.d.ts.map +1 -0
- package/lib/dashboard/score/personal-score.widget.d.ts +1 -0
- package/lib/dashboard/score/personal-score.widget.d.ts.map +1 -0
- package/lib/dashboard/widget-item.component.d.ts +1 -0
- package/lib/dashboard/widget-item.component.d.ts.map +1 -0
- package/lib/dashboard/widget-ref.d.ts +1 -0
- package/lib/dashboard/widget-ref.d.ts.map +1 -0
- package/lib/desktop.module.d.ts +1 -0
- package/lib/desktop.module.d.ts.map +1 -0
- package/lib/home/about/about.dialog.d.ts +1 -0
- package/lib/home/about/about.dialog.d.ts.map +1 -0
- package/lib/home/home-base.component.d.ts +1 -0
- package/lib/home/home-base.component.d.ts.map +1 -0
- package/lib/home/home.desktop.component.d.ts +1 -0
- package/lib/home/home.desktop.component.d.ts.map +1 -0
- package/lib/home/home.mobile.component.d.ts +1 -0
- package/lib/home/home.mobile.component.d.ts.map +1 -0
- package/lib/home/notifications/notifications.component.d.ts +1 -0
- package/lib/home/notifications/notifications.component.d.ts.map +1 -0
- package/lib/home/options/options.component.d.ts +1 -0
- package/lib/home/options/options.component.d.ts.map +1 -0
- package/lib/home/outofoffice/outofoffice.component.d.ts +1 -0
- package/lib/home/outofoffice/outofoffice.component.d.ts.map +1 -0
- package/lib/home/search.service.d.ts +1 -0
- package/lib/home/search.service.d.ts.map +1 -0
- package/lib/home/sign/sign.component.d.ts +1 -0
- package/lib/home/sign/sign.component.d.ts.map +1 -0
- package/lib/home/tools.component.d.ts +1 -0
- package/lib/home/tools.component.d.ts.map +1 -0
- package/lib/impersonate/impersonate.component.d.ts +1 -0
- package/lib/impersonate/impersonate.component.d.ts.map +1 -0
- package/lib/mobile.module.d.ts +1 -0
- package/lib/mobile.module.d.ts.map +1 -0
- package/lib/modules/chart.module.d.ts +1 -0
- package/lib/modules/chart.module.d.ts.map +1 -0
- package/lib/modules/circular-gauge.module.d.ts +1 -0
- package/lib/modules/circular-gauge.module.d.ts.map +1 -0
- package/lib/modules/date.adapter.d.ts +1 -0
- package/lib/modules/date.adapter.d.ts.map +1 -0
- package/lib/modules/datepicker.intl.d.ts +1 -0
- package/lib/modules/datepicker.intl.d.ts.map +1 -0
- package/lib/modules/dayjs.module.d.ts +1 -0
- package/lib/modules/dayjs.module.d.ts.map +1 -0
- package/lib/modules/diagram.module.d.ts +1 -0
- package/lib/modules/diagram.module.d.ts.map +1 -0
- package/lib/modules/gantt.module.d.ts +1 -0
- package/lib/modules/gantt.module.d.ts.map +1 -0
- package/lib/modules/grid.module.d.ts +1 -0
- package/lib/modules/grid.module.d.ts.map +1 -0
- package/lib/modules/material.module.d.ts +1 -0
- package/lib/modules/material.module.d.ts.map +1 -0
- package/lib/modules/paginator.intl.d.ts +1 -0
- package/lib/modules/paginator.intl.d.ts.map +1 -0
- package/lib/modules/pivot.module.d.ts +1 -0
- package/lib/modules/pivot.module.d.ts.map +1 -0
- package/lib/modules/schedule.module.d.ts +1 -0
- package/lib/modules/schedule.module.d.ts.map +1 -0
- package/lib/modules/spreadsheet.module.d.ts +1 -0
- package/lib/modules/spreadsheet.module.d.ts.map +1 -0
- package/lib/modules/stepper.intl.d.ts +1 -0
- package/lib/modules/stepper.intl.d.ts.map +1 -0
- package/lib/modules/texteditor.module.d.ts +1 -0
- package/lib/modules/texteditor.module.d.ts.map +1 -0
- package/lib/notifications/filter.component.d.ts +1 -0
- package/lib/notifications/filter.component.d.ts.map +1 -0
- package/lib/notifications/notifications-table.component.d.ts +1 -0
- package/lib/notifications/notifications-table.component.d.ts.map +1 -0
- package/lib/notifications/notifications.component-base.d.ts +1 -0
- package/lib/notifications/notifications.component-base.d.ts.map +1 -0
- package/lib/notifications/notifications.mobile.component.d.ts +1 -0
- package/lib/notifications/notifications.mobile.component.d.ts.map +1 -0
- package/lib/notifications/notifications.pane.component.d.ts +1 -0
- package/lib/notifications/notifications.pane.component.d.ts.map +1 -0
- package/lib/notifications/notifications.service.d.ts +1 -0
- package/lib/notifications/notifications.service.d.ts.map +1 -0
- package/lib/notifications/types/commented.notification.d.ts +1 -0
- package/lib/notifications/types/commented.notification.d.ts.map +1 -0
- package/lib/notifications/types/cube-anomaly.notification.d.ts +1 -0
- package/lib/notifications/types/cube-anomaly.notification.d.ts.map +1 -0
- package/lib/notifications/types/escalated.notification.d.ts +1 -0
- package/lib/notifications/types/escalated.notification.d.ts.map +1 -0
- package/lib/notifications/types/liked.notification.d.ts +1 -0
- package/lib/notifications/types/liked.notification.d.ts.map +1 -0
- package/lib/notifications/types/long-running-task.notification.d.ts +1 -0
- package/lib/notifications/types/long-running-task.notification.d.ts.map +1 -0
- package/lib/notifications/types/notification-base.d.ts +1 -0
- package/lib/notifications/types/notification-base.d.ts.map +1 -0
- package/lib/notifications/types/nudge.notification.d.ts +1 -0
- package/lib/notifications/types/nudge.notification.d.ts.map +1 -0
- package/lib/notifications/types/state-changed.notification.d.ts +1 -0
- package/lib/notifications/types/state-changed.notification.d.ts.map +1 -0
- package/lib/notifications/types/tagged.notification.d.ts +1 -0
- package/lib/notifications/types/tagged.notification.d.ts.map +1 -0
- package/lib/notifications/types/text.notification.d.ts +1 -0
- package/lib/notifications/types/text.notification.d.ts.map +1 -0
- package/lib/notifications/types/upcoming-event.notification.d.ts +1 -0
- package/lib/notifications/types/upcoming-event.notification.d.ts.map +1 -0
- package/lib/options/options.component.d.ts +1 -0
- package/lib/options/options.component.d.ts.map +1 -0
- package/lib/options/options.service.d.ts +1 -0
- package/lib/options/options.service.d.ts.map +1 -0
- package/lib/reports/arguments-component.d.ts +1 -0
- package/lib/reports/arguments-component.d.ts.map +1 -0
- package/lib/reports/cube/documents.component.d.ts +1 -0
- package/lib/reports/cube/documents.component.d.ts.map +1 -0
- package/lib/reports/cube/grid-documents.component.d.ts +1 -0
- package/lib/reports/cube/grid-documents.component.d.ts.map +1 -0
- package/lib/reports/cube/table-documents.component.d.ts +1 -0
- package/lib/reports/cube/table-documents.component.d.ts.map +1 -0
- package/lib/reports/cube/usage-args.component.d.ts +1 -0
- package/lib/reports/cube/usage-args.component.d.ts.map +1 -0
- package/lib/reports/cube/usage-base.d.ts +1 -0
- package/lib/reports/cube/usage-base.d.ts.map +1 -0
- package/lib/reports/cube/usage-chart.component.d.ts +1 -0
- package/lib/reports/cube/usage-chart.component.d.ts.map +1 -0
- package/lib/reports/cube/usage-pivot.component.d.ts +1 -0
- package/lib/reports/cube/usage-pivot.component.d.ts.map +1 -0
- package/lib/reports/cube/usage.component.d.ts +1 -0
- package/lib/reports/cube/usage.component.d.ts.map +1 -0
- package/lib/reports/report-ref.d.ts +1 -0
- package/lib/reports/report-ref.d.ts.map +1 -0
- package/lib/reports/report-viewer.component.d.ts +1 -0
- package/lib/reports/report-viewer.component.d.ts.map +1 -0
- package/lib/reports/report.mobile.component.d.ts +1 -0
- package/lib/reports/report.mobile.component.d.ts.map +1 -0
- package/lib/reports/report.pane.component.d.ts +1 -0
- package/lib/reports/report.pane.component.d.ts.map +1 -0
- package/lib/reports/reports-menu.component.d.ts +1 -0
- package/lib/reports/reports-menu.component.d.ts.map +1 -0
- package/lib/reports/substitution/substitution.component.d.ts +1 -0
- package/lib/reports/substitution/substitution.component.d.ts.map +1 -0
- package/lib/reports/table/table-view.component.d.ts +1 -0
- package/lib/reports/table/table-view.component.d.ts.map +1 -0
- package/lib/reports/tasks/tasks.component.d.ts +1 -0
- package/lib/reports/tasks/tasks.component.d.ts.map +1 -0
- package/lib/routes.desktop.d.ts +1 -0
- package/lib/routes.desktop.d.ts.map +1 -0
- package/lib/routes.mobile.d.ts +1 -0
- package/lib/routes.mobile.d.ts.map +1 -0
- package/lib/scheduler/schedule.component.d.ts +1 -0
- package/lib/scheduler/schedule.component.d.ts.map +1 -0
- package/lib/scheduler/scheduler.mobile.component.d.ts +1 -0
- package/lib/scheduler/scheduler.mobile.component.d.ts.map +1 -0
- package/lib/scheduler/scheduler.pane.component.d.ts +1 -0
- package/lib/scheduler/scheduler.pane.component.d.ts.map +1 -0
- package/lib/shared.module.d.ts +1 -0
- package/lib/shared.module.d.ts.map +1 -0
- package/lib/system.module.d.ts +51 -49
- package/lib/system.module.d.ts.map +1 -0
- package/lib/views/cube/chart.component.d.ts +1 -0
- package/lib/views/cube/chart.component.d.ts.map +1 -0
- package/lib/views/cube/cube-base.d.ts +1 -0
- package/lib/views/cube/cube-base.d.ts.map +1 -0
- package/lib/views/cube/explore.component.d.ts +1 -0
- package/lib/views/cube/explore.component.d.ts.map +1 -0
- package/lib/views/cube/matrix.component.d.ts +1 -0
- package/lib/views/cube/matrix.component.d.ts.map +1 -0
- package/lib/views/cube/parallel.component.d.ts +1 -0
- package/lib/views/cube/parallel.component.d.ts.map +1 -0
- package/lib/views/cube/pivot.component.d.ts +1 -0
- package/lib/views/cube/pivot.component.d.ts.map +1 -0
- package/lib/views/cube/sum.component.d.ts +4 -3
- package/lib/views/cube/sum.component.d.ts.map +1 -0
- package/lib/views/cube/view.component.d.ts +1 -0
- package/lib/views/cube/view.component.d.ts.map +1 -0
- package/lib/views/document-view-ref.d.ts +1 -0
- package/lib/views/document-view-ref.d.ts.map +1 -0
- package/lib/views/timeline/timeline.component.exp.d.ts +1 -0
- package/lib/views/timeline/timeline.component.exp.d.ts.map +1 -0
- package/lib/views/view-item.component.d.ts +1 -0
- package/lib/views/view-item.component.d.ts.map +1 -0
- package/lib/views/views.component.d.ts +1 -0
- package/lib/views/views.component.d.ts.map +1 -0
- package/lib/views/views.mobile.component.d.ts +1 -0
- package/lib/views/views.mobile.component.d.ts.map +1 -0
- package/lib/views/views.pane.component.d.ts +1 -0
- package/lib/views/views.pane.component.d.ts.map +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -0
@@ -30,6 +30,174 @@ import * as i20 from "../notifications/notifications-table.component";
|
|
30
30
|
import * as i21 from "../core/popup/tooltip.directive";
|
31
31
|
import * as i22 from "../chat/chat.mobile.component";
|
32
32
|
import * as i23 from "../core/pipes/translate.pipe";
|
33
|
+
const _c0 = ["secondaryDrawer"];
|
34
|
+
function HomeMobileComponent_button_14_Template(rf, ctx) { if (rf & 1) {
|
35
|
+
const _r11 = i0.ɵɵgetCurrentView();
|
36
|
+
i0.ɵɵelementStart(0, "button", 27);
|
37
|
+
i0.ɵɵlistener("click", function HomeMobileComponent_button_14_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r10 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r10.chat()); });
|
38
|
+
i0.ɵɵpipe(1, "translate");
|
39
|
+
i0.ɵɵpipe(2, "translate");
|
40
|
+
i0.ɵɵelementStart(3, "mat-icon", 6);
|
41
|
+
i0.ɵɵtext(4, "chat");
|
42
|
+
i0.ɵɵelementEnd()();
|
43
|
+
} if (rf & 2) {
|
44
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
45
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(2, 6, "Chat"));
|
46
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(1, 4, "Chat"));
|
47
|
+
i0.ɵɵadvance(3);
|
48
|
+
i0.ɵɵproperty("matBadge", ctx_r0.profile.conversationsCount)("matBadgeHidden", !ctx_r0.profile.conversationsCount);
|
49
|
+
} }
|
50
|
+
const _c1 = function (a1) { return ["/mailbox/f", a1]; };
|
51
|
+
function HomeMobileComponent_mat_list_item_35_Template(rf, ctx) { if (rf & 1) {
|
52
|
+
i0.ɵɵelementStart(0, "mat-list-item", 28)(1, "mat-icon", 12);
|
53
|
+
i0.ɵɵtext(2);
|
54
|
+
i0.ɵɵelementEnd();
|
55
|
+
i0.ɵɵelementStart(3, "span");
|
56
|
+
i0.ɵɵtext(4);
|
57
|
+
i0.ɵɵelementEnd()();
|
58
|
+
} if (rf & 2) {
|
59
|
+
const f_r12 = ctx.$implicit;
|
60
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction1(5, _c1, f_r12.name));
|
61
|
+
i0.ɵɵattribute("data-help", "folder-" + f_r12.name)("aria-label", f_r12.title);
|
62
|
+
i0.ɵɵadvance(2);
|
63
|
+
i0.ɵɵtextInterpolate(f_r12.icon);
|
64
|
+
i0.ɵɵadvance(2);
|
65
|
+
i0.ɵɵtextInterpolate(f_r12.title);
|
66
|
+
} }
|
67
|
+
const _c2 = function () { return ["/schedule"]; };
|
68
|
+
function HomeMobileComponent_mat_list_item_36_Template(rf, ctx) { if (rf & 1) {
|
69
|
+
i0.ɵɵelementStart(0, "mat-list-item", 28);
|
70
|
+
i0.ɵɵpipe(1, "translate");
|
71
|
+
i0.ɵɵelementStart(2, "mat-icon", 29);
|
72
|
+
i0.ɵɵtext(3, "date_range");
|
73
|
+
i0.ɵɵelementEnd();
|
74
|
+
i0.ɵɵelementStart(4, "span");
|
75
|
+
i0.ɵɵtext(5);
|
76
|
+
i0.ɵɵpipe(6, "translate");
|
77
|
+
i0.ɵɵelementEnd()();
|
78
|
+
} if (rf & 2) {
|
79
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction0(7, _c2));
|
80
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(1, 3, "Scheduler"));
|
81
|
+
i0.ɵɵadvance(5);
|
82
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 5, "Schedule"));
|
83
|
+
} }
|
84
|
+
const _c3 = function (a1, a3) { return ["/cube", a1, "v", a3]; };
|
85
|
+
function HomeMobileComponent_ng_container_38_ng_container_1_mat_expansion_panel_1_mat_list_item_7_Template(rf, ctx) { if (rf & 1) {
|
86
|
+
i0.ɵɵelementStart(0, "mat-list-item", 28)(1, "mat-icon", 12);
|
87
|
+
i0.ɵɵtext(2);
|
88
|
+
i0.ɵɵelementEnd();
|
89
|
+
i0.ɵɵelementStart(3, "span");
|
90
|
+
i0.ɵɵtext(4);
|
91
|
+
i0.ɵɵelementEnd()();
|
92
|
+
} if (rf & 2) {
|
93
|
+
const v_r17 = ctx.$implicit;
|
94
|
+
const c_r14 = i0.ɵɵnextContext(2).$implicit;
|
95
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction2(4, _c3, c_r14.name, v_r17.name));
|
96
|
+
i0.ɵɵattribute("data-help", "cube-view-" + v_r17.name);
|
97
|
+
i0.ɵɵadvance(2);
|
98
|
+
i0.ɵɵtextInterpolate(v_r17.icon || "insights");
|
99
|
+
i0.ɵɵadvance(2);
|
100
|
+
i0.ɵɵtextInterpolate(v_r17.title);
|
101
|
+
} }
|
102
|
+
function HomeMobileComponent_ng_container_38_ng_container_1_mat_expansion_panel_1_Template(rf, ctx) { if (rf & 1) {
|
103
|
+
i0.ɵɵelementStart(0, "mat-expansion-panel", 31)(1, "mat-expansion-panel-header")(2, "mat-panel-title")(3, "mat-icon");
|
104
|
+
i0.ɵɵtext(4);
|
105
|
+
i0.ɵɵelementEnd();
|
106
|
+
i0.ɵɵelementStart(5, "span");
|
107
|
+
i0.ɵɵtext(6);
|
108
|
+
i0.ɵɵelementEnd()()();
|
109
|
+
i0.ɵɵtemplate(7, HomeMobileComponent_ng_container_38_ng_container_1_mat_expansion_panel_1_mat_list_item_7_Template, 5, 7, "mat-list-item", 14);
|
110
|
+
i0.ɵɵelementEnd();
|
111
|
+
} if (rf & 2) {
|
112
|
+
const c_r14 = i0.ɵɵnextContext().$implicit;
|
113
|
+
i0.ɵɵadvance(4);
|
114
|
+
i0.ɵɵtextInterpolate(c_r14.icon || "insert_chart_outlined");
|
115
|
+
i0.ɵɵadvance(2);
|
116
|
+
i0.ɵɵtextInterpolate(c_r14.title);
|
117
|
+
i0.ɵɵadvance(1);
|
118
|
+
i0.ɵɵproperty("ngForOf", c_r14.views);
|
119
|
+
} }
|
120
|
+
function HomeMobileComponent_ng_container_38_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
121
|
+
i0.ɵɵelementContainerStart(0);
|
122
|
+
i0.ɵɵtemplate(1, HomeMobileComponent_ng_container_38_ng_container_1_mat_expansion_panel_1_Template, 8, 3, "mat-expansion-panel", 17);
|
123
|
+
i0.ɵɵelementContainerEnd();
|
124
|
+
} if (rf & 2) {
|
125
|
+
const c_r14 = ctx.$implicit;
|
126
|
+
i0.ɵɵadvance(1);
|
127
|
+
i0.ɵɵproperty("ngIf", c_r14.views.length);
|
128
|
+
} }
|
129
|
+
function HomeMobileComponent_ng_container_38_Template(rf, ctx) { if (rf & 1) {
|
130
|
+
i0.ɵɵelementContainerStart(0);
|
131
|
+
i0.ɵɵtemplate(1, HomeMobileComponent_ng_container_38_ng_container_1_Template, 2, 1, "ng-container", 30);
|
132
|
+
i0.ɵɵelementContainerEnd();
|
133
|
+
} if (rf & 2) {
|
134
|
+
const ctx_r4 = i0.ɵɵnextContext();
|
135
|
+
i0.ɵɵadvance(1);
|
136
|
+
i0.ɵɵproperty("ngForOf", ctx_r4.profile.cubes);
|
137
|
+
} }
|
138
|
+
const _c4 = function (a1) { return ["/reports", a1]; };
|
139
|
+
function HomeMobileComponent_mat_expansion_panel_39_mat_list_item_9_Template(rf, ctx) { if (rf & 1) {
|
140
|
+
i0.ɵɵelementStart(0, "mat-list-item", 28)(1, "mat-icon", 12);
|
141
|
+
i0.ɵɵtext(2);
|
142
|
+
i0.ɵɵelementEnd();
|
143
|
+
i0.ɵɵelementStart(3, "span");
|
144
|
+
i0.ɵɵtext(4);
|
145
|
+
i0.ɵɵelementEnd()();
|
146
|
+
} if (rf & 2) {
|
147
|
+
const r_r21 = ctx.$implicit;
|
148
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction1(5, _c4, r_r21.name));
|
149
|
+
i0.ɵɵattribute("aria-label", r_r21.title)("data-help", "report-" + r_r21.name);
|
150
|
+
i0.ɵɵadvance(2);
|
151
|
+
i0.ɵɵtextInterpolate(r_r21.icon);
|
152
|
+
i0.ɵɵadvance(2);
|
153
|
+
i0.ɵɵtextInterpolate(r_r21.title);
|
154
|
+
} }
|
155
|
+
function HomeMobileComponent_mat_expansion_panel_39_Template(rf, ctx) { if (rf & 1) {
|
156
|
+
i0.ɵɵelementStart(0, "mat-expansion-panel", 31);
|
157
|
+
i0.ɵɵpipe(1, "translate");
|
158
|
+
i0.ɵɵelementStart(2, "mat-expansion-panel-header")(3, "mat-panel-title")(4, "mat-icon");
|
159
|
+
i0.ɵɵtext(5, "list_alt");
|
160
|
+
i0.ɵɵelementEnd();
|
161
|
+
i0.ɵɵelementStart(6, "span");
|
162
|
+
i0.ɵɵtext(7);
|
163
|
+
i0.ɵɵpipe(8, "translate");
|
164
|
+
i0.ɵɵelementEnd()()();
|
165
|
+
i0.ɵɵtemplate(9, HomeMobileComponent_mat_expansion_panel_39_mat_list_item_9_Template, 5, 7, "mat-list-item", 14);
|
166
|
+
i0.ɵɵelementEnd();
|
167
|
+
} if (rf & 2) {
|
168
|
+
const ctx_r5 = i0.ɵɵnextContext();
|
169
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(1, 3, "Reports"));
|
170
|
+
i0.ɵɵadvance(7);
|
171
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(8, 5, "Reports"));
|
172
|
+
i0.ɵɵadvance(2);
|
173
|
+
i0.ɵɵproperty("ngForOf", ctx_r5.profile.reports);
|
174
|
+
} }
|
175
|
+
function HomeMobileComponent_bizdoc_chat_57_Template(rf, ctx) { if (rf & 1) {
|
176
|
+
const _r23 = i0.ɵɵgetCurrentView();
|
177
|
+
i0.ɵɵelementStart(0, "bizdoc-chat", 32);
|
178
|
+
i0.ɵɵlistener("contactChange", function HomeMobileComponent_bizdoc_chat_57_Template_bizdoc_chat_contactChange_0_listener($event) { i0.ɵɵrestoreView(_r23); const ctx_r22 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r22.contact = $event); });
|
179
|
+
i0.ɵɵelementEnd();
|
180
|
+
} if (rf & 2) {
|
181
|
+
const ctx_r7 = i0.ɵɵnextContext();
|
182
|
+
i0.ɵɵproperty("contact", ctx_r7.contact);
|
183
|
+
} }
|
184
|
+
function HomeMobileComponent_bizdoc_notifications_table_58_Template(rf, ctx) { if (rf & 1) {
|
185
|
+
i0.ɵɵelement(0, "bizdoc-notifications-table");
|
186
|
+
} }
|
187
|
+
function HomeMobileComponent_button_61_Template(rf, ctx) { if (rf & 1) {
|
188
|
+
const _r25 = i0.ɵɵgetCurrentView();
|
189
|
+
i0.ɵɵelementStart(0, "button", 33);
|
190
|
+
i0.ɵɵlistener("click", function HomeMobileComponent_button_61_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r25); const ctx_r24 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r24.compose()); });
|
191
|
+
i0.ɵɵpipe(1, "translate");
|
192
|
+
i0.ɵɵelementStart(2, "mat-icon");
|
193
|
+
i0.ɵɵtext(3, "add");
|
194
|
+
i0.ɵɵelementEnd()();
|
195
|
+
} if (rf & 2) {
|
196
|
+
const ctx_r9 = i0.ɵɵnextContext();
|
197
|
+
i0.ɵɵproperty("@fabFull", ctx_r9.composeState);
|
198
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(1, 2, "Compose"));
|
199
|
+
} }
|
200
|
+
const _c5 = function () { return ["/dashboard"]; };
|
33
201
|
/** home comp */
|
34
202
|
export class HomeMobileComponent extends HomeBase {
|
35
203
|
constructor(injector, _router, _bs, _dir, session, popup, messaging, translate, snackBar, chat, config) {
|
@@ -98,19 +266,145 @@ export class HomeMobileComponent extends HomeBase {
|
|
98
266
|
this.secondaryDrawer.toggle().then(this.resize);
|
99
267
|
}
|
100
268
|
}
|
101
|
-
HomeMobileComponent.ɵfac =
|
102
|
-
HomeMobileComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.3", type: HomeMobileComponent, selector: "bizdoc-mobile-home", viewQueries: [{ propertyName: "menuDrawer", first: true, predicate: MatSidenav, descendants: true, static: true }, { propertyName: "secondaryDrawer", first: true, predicate: ["secondaryDrawer"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<mat-toolbar color=\"primary\" [class.loading]=\"loading\">\r\n <button mat-icon-button (click)='menuDrawer.toggle()' [bizdocTooltip]=\"'Menu' | translate\" [attr.aria-label]=\"'Menu' | translate\"><mat-icon>menu</mat-icon></button>\r\n <div [routerLink]='[\"/dashboard\"]' matRipple [matRippleUnbounded]=\"true\" [matRippleRadius]=\"100\" [matRippleCentered]=\"true\" style=\"outline: none\">\r\n <img id=\"logo\" src=\"logo.svg\" alt=\"\" />\r\n </div>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"notifs()\" data-help=\"notifications\" [attr.aria-label]=\"'Notifications' | translate\" [bizdocTooltip]=\"'Notifications' | translate\"><mat-icon [matBadge]=\"profile.notificationsCount\" [matBadgeHidden]=\"!profile.notificationsCount\" matBadgeColor=\"accent\">notifications</mat-icon></button>\r\n <button mat-icon-button *ngIf='chatEnabled' (click)=\"chat()\" data-help=\"chat\" [attr.aria-label]=\"'Chat' | translate\" [bizdocTooltip]=\"'Chat' | translate\"><mat-icon [matBadge]=\"profile.conversationsCount\" [matBadgeHidden]=\"!profile.conversationsCount\" matBadgeColor=\"accent\">chat</mat-icon></button>\r\n</mat-toolbar>\r\n<mat-sidenav-container autosize>\r\n <mat-sidenav #menuDrawer data-help=\"menu\" mode=\"over\" closed class=\"mat-elevation-z5\">\r\n <mat-nav-list>\r\n <mat-list-item [routerLink]='[\"/dashboard\"]' [attr.aria-label]=\"'Dashboard' | translate\" routerLinkActive=\"active\" data-help=\"dashboard\">\r\n <mat-icon matListIcon>apps</mat-icon><span>{{'Dashboard' | translate}}</span>\r\n </mat-list-item>\r\n <mat-expansion-panel class=\"mat-elevation-z0\" [attr.aria-label]=\"'Mailbox' | translate\" data-help=\"folders\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title>\r\n <mat-icon>inbox</mat-icon>\r\n <span>{{'Mailbox' | translate}}</span>\r\n </mat-panel-title>\r\n </mat-expansion-panel-header>\r\n <mat-list-item *ngFor=\"let f of profile.folders\" [routerLink]='[\"/mailbox/f\", f.name]' routerLinkActive=\"active\" [attr.data-help]=\"'folder-'+f.name\" [attr.aria-label]=\"f.title\">\r\n <mat-icon matListIcon>{{f.icon}}</mat-icon><span>{{f.title}}</span>\r\n </mat-list-item>\r\n </mat-expansion-panel>\r\n <mat-list-item [routerLink]='[\"/schedule\"]' routerLinkActive=\"active\" *ngIf=\"schedulerEnabled\" [attr.aria-label]=\"'Scheduler' | translate\">\r\n <mat-icon matListIcon class=\"mat-icon-rtl-mirror\">date_range</mat-icon><span>{{ 'Schedule' | translate}}</span>\r\n </mat-list-item>\r\n <mat-divider></mat-divider>\r\n <ng-container *ngIf=\"enableAnalysis\">\r\n <ng-container *ngFor=\"let c of profile.cubes\">\r\n <mat-expansion-panel class=\"mat-elevation-z0\" *ngIf=\"c.views.length\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title>\r\n <mat-icon>{{ c.icon || 'insert_chart_outlined'}}</mat-icon>\r\n <span>{{c.title}}</span>\r\n </mat-panel-title>\r\n </mat-expansion-panel-header>\r\n <mat-list-item *ngFor=\"let v of c.views\" [routerLink]='[\"/cube\", c.name, \"v\", v.name]' routerLinkActive=\"active\" [attr.data-help]=\"'cube-view-'+v.name\">\r\n <mat-icon matListIcon>{{v.icon || 'insights'}}</mat-icon><span>{{v.title}}</span>\r\n </mat-list-item>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n </ng-container>\r\n <mat-expansion-panel *ngIf=\"profile.reports.length\" class=\"mat-elevation-z0\" [attr.aria-label]=\"'Reports' | translate\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title>\r\n <mat-icon>list_alt</mat-icon>\r\n <span>{{'Reports' | translate}}</span>\r\n </mat-panel-title>\r\n </mat-expansion-panel-header>\r\n <mat-list-item *ngFor=\"let r of profile.reports\" [routerLink]='[\"/reports\", r.name]' routerLinkActive=\"active\"\r\n [attr.aria-label]=\"r.title\" [attr.data-help]=\"'report-'+r.name\">\r\n <mat-icon matListIcon>{{r.icon}}</mat-icon><span>{{r.title}}</span>\r\n </mat-list-item>\r\n </mat-expansion-panel>\r\n <mat-divider></mat-divider>\r\n <mat-list-item role=\"listitem\" data-help=\"options\"\r\n (click)=\"options($event)\">\r\n <mat-icon matListIcon>settingson</mat-icon>\r\n <span>{{'Settings' | translate}}</span>\r\n </mat-list-item>\r\n <mat-divider></mat-divider>\r\n <mat-list-item role=\"listitem\" (click)=\"signout($event)\">\r\n <mat-icon matListIcon>logout</mat-icon>\r\n <span>{{'Power' | translate}}</span>\r\n </mat-list-item>\r\n </mat-nav-list>\r\n </mat-sidenav>\r\n <mat-sidenav #secondaryDrawer position=\"end\" closed mode=\"over\" autoFocus=\"false\" class=\"mat-elevation-z3\">\r\n <ng-container [ngSwitch]=\"mode\">\r\n <bizdoc-chat [(contact)]=\"contact\" *ngSwitchCase=\"'chat'\"></bizdoc-chat>\r\n <bizdoc-notifications-table *ngSwitchCase=\"'notifications'\"></bizdoc-notifications-table>\r\n </ng-container>\r\n </mat-sidenav>\r\n <mat-sidenav-content data-help=\"main\">\r\n <router-outlet></router-outlet>\r\n </mat-sidenav-content>\r\n</mat-sidenav-container>\r\n<button mat-fab [attr.aria-label]=\"'Compose'| translate\" [@fabFull]=\"composeState\" *ngIf=\"composeEnabled\" color=\"accent\" (click)=\"compose()\" data-help=\"compose\"><mat-icon>add</mat-icon></button>\r\n", styles: ["#logo{padding-left:12px;padding-right:12px;vertical-align:middle;width:120px;filter:invert(1)}:host ::ng-deep .mat-sidenav-container{height:calc(100% - 58px)}:host ::ng-deep .mat-sidenav-container .home-content{padding:unset}::ng-deep .mat-drawer-inner-container{height:auto}router-outlet~*{position:absolute;height:100%;width:100%}::ng-deep [dir=rtl] .mat-fab{left:30px;right:unset}.mat-fab{z-index:1;position:absolute;bottom:30px;right:30px}:host ::ng-deep .mat-expansion-panel-header{padding:0 18px}:host ::ng-deep .mat-expansion-panel-header .mat-expansion-panel-header-title .mat-icon{padding:0 3px}\n"], dependencies: [{ kind: "directive", type: i10.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i10.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i10.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "directive", type: i1.RouterLink, selector: ":not(a):not(area)[routerLink]", inputs: ["queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo", "routerLink"] }, { kind: "directive", type: i1.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "directive", type: i11.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "component", type: i12.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["disabled", "expanded", "hideToggle", "togglePosition"], outputs: ["opened", "closed", "expandedChange", "afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i12.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["tabIndex", "expandedHeight", "collapsedHeight"] }, { kind: "directive", type: i12.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i13.MatBadge, selector: "[matBadge]", inputs: ["matBadgeDisabled", "matBadgeColor", "matBadgeOverlap", "matBadgePosition", "matBadge", "matBadgeDescription", "matBadgeSize", "matBadgeHidden"] }, { kind: "component", type: i14.MatNavList, selector: "mat-nav-list", inputs: ["disableRipple", "disabled"], exportAs: ["matNavList"] }, { kind: "component", type: i14.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["disableRipple", "disabled"], exportAs: ["matListItem"] }, { kind: "directive", type: i14.MatListIconCssMatStyler, selector: "[mat-list-icon], [matListIcon]" }, { kind: "component", type: i15.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "component", type: i16.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i16.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i16.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "component", type: i17.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "component", type: i18.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i19.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i20.NotificationsTableComponent, selector: "bizdoc-notifications-table" }, { kind: "directive", type: i21.TooltipDirective, selector: "[bizdocTooltip]", inputs: ["bizdocTooltip", "bizdocTooltipTemplate", "bizdocTooltipContext", "bizdocTooltipPosition", "bizdocTooltipDuration", "bizdocTooltipDisabled"] }, { kind: "component", type: i22.ChatComponent, selector: "bizdoc-chat", inputs: ["contact"], outputs: ["contactChange"] }, { kind: "pipe", type: i23.TranslatePipe, name: "translate" }], animations: [fabAnimation] });
|
103
|
-
i0.ɵɵ
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaG9tZS5tb2JpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9ob21lL2hvbWUubW9iaWxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvaG9tZS9ob21lLm1vYmlsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQW9CLE1BQU0sZUFBZSxDQUFDO0FBQy9FLE9BQU8sRUFBZ0IsZUFBZSxFQUFFLGFBQWEsRUFBVSxNQUFNLGlCQUFpQixDQUFDO0FBQ3ZGLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUl2RCxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDdkMsT0FBTyxFQUFnQixhQUFhLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFLbEQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFFakYsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHVCQUF1QixDQUFDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRWpELGdCQUFnQjtBQU9oQixNQUFNLE9BQU8sbUJBQW9CLFNBQVEsUUFBUTtJQU8vQyxZQUNFLFFBQWtCLEVBQ1YsT0FBZSxFQUNmLEdBQW1CLEVBQ25CLElBQW9CLEVBQzVCLE9BQXVCLEVBQ3ZCLEtBQVksRUFDWixTQUFxQixFQUNyQixTQUEyQixFQUMzQixRQUFxQixFQUNyQixJQUFjLEVBQ1MsTUFBb0I7UUFDM0MsS0FBSyxDQUFDLEtBQUssRUFBRSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsUUFBUSxFQUFFLE1BQU0sQ0FB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QUFDLFdBQVcsQ0FBQyxDQUFDO0lBQ3ZGLENBQUM7SUFFUSxNQUFNO1FBQ2IsS0FBSyxDQUFDLE1BQU0sRUFBRSxDQUFDO1FBQ2YsSUFBSSxDQUFDLElBQUksR0FBRyxlQUFlLENBQUM7UUFDNUIsSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUFNLEVBQUUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ2xELENBQUM7O2dIQS9FVSxtQkFBbUIsNFJBa0JwQixhQUFhO29HQWxCWixtQkFBbUIsc0dBS25CLFVBQVUsd01DN0J2Qix3NktBaUZBLG9qSkQzRGMsQ0FBQyxZQUFZLENBQUM7MkZBRWYsbUJBQW1CO2tCQU4vQixTQUFTOytCQUNFLG9CQUFvQixjQUdsQixDQUFDLFlBQVksQ0FBQzs7MEJBb0J2QixNQUFNOzJCQUFDLGFBQWE7NENBYmtCLFVBQVU7c0JBQWxELFNBQVM7dUJBQUMsVUFBVSxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFDUyxlQUFlO3NCQUE5RCxTQUFTO3VCQUFDLGlCQUFpQixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgVmlld0NoaWxkLCBJbmplY3QsIE9uSW5pdCwgSW5qZWN0b3IgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUm91dGVyT3V0bGV0LCBOYXZpZ2F0aW9uU3RhcnQsIEFjdGl2YXRpb25FbmQsIFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmltcG9ydCB7IE1hdFNpZGVuYXYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zaWRlbmF2JztcclxuaW1wb3J0IHsgTWF0Qm90dG9tU2hlZXQgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9ib3R0b20tc2hlZXQnO1xyXG5pbXBvcnQgeyBNYXRTbmFja0JhciB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NuYWNrLWJhcic7XHJcbmltcG9ydCB7IERpcmVjdGlvbmFsaXR5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2JpZGknO1xyXG5pbXBvcnQgeyBmaXJzdCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcclxuaW1wb3J0IHsgQml6RG9jQ29uZmlnLCBCSVpET0NfQ09ORklHIH0gZnJvbSAnLi4vY29yZS9jb25maWd1cmF0aW9uJztcclxuaW1wb3J0IHsgZmFiQW5pbWF0aW9uIH0gZnJvbSAnLi4vY29yZS9hbmltYXRpb25zJztcclxuaW1wb3J0IHsgQ29udGFjdCwgUmVjaXBpZW50TW9kZWwgfSBmcm9tICcuLi9jb3JlL21vZGVscyc7XHJcbmltcG9ydCB7IFNlc3Npb25TZXJ2aWNlIH0gZnJvbSAnLi4vY29yZS9zZXNzaW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBIdWJTZXJ2aWNlIH0gZnJvbSAnLi4vY29yZS9odWIuc2VydmljZSc7XHJcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICcuLi9jb3JlL3RyYW5zbGF0ZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRm9ybVNlbGVjdG9yU2hlZXQgfSBmcm9tICcuLi9jb21wb3NlL2Zvcm0tc2VsZWN0b3IvZm9ybS1zZWxlY3Rvci5zaGVldCc7XHJcbmltcG9ydCB7IFBvcHVwIH0gZnJvbSAnLi4vY29yZS9wb3B1cC9wb3B1cC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgSG9tZUJhc2UgfSBmcm9tICcuL2hvbWUtYmFzZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDaGF0SW5mbyB9IGZyb20gJy4uL2NoYXQvY2hhdC1pbmZvJztcclxuLyoqIGhvbWUgY29tcCAqL1xyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2JpemRvYy1tb2JpbGUtaG9tZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2hvbWUubW9iaWxlLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9ob21lLm1vYmlsZS5jb21wb25lbnQuc2NzcyddLFxyXG4gIGFuaW1hdGlvbnM6IFtmYWJBbmltYXRpb25dXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBIb21lTW9iaWxlQ29tcG9uZW50IGV4dGVuZHMgSG9tZUJhc2UgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIG1vZGU6ICdjaGF0JyB8ICdub3RpZmljYXRpb25zJztcclxuICBjb21wb3NlU3RhdGU6ICd3b3JraW5nJyB8ICdkb25lJztcclxuICBjb250YWN0OiBDb250YWN0O1xyXG4gIGNvbXBvc2VFbmFibGVkOiBib29sZWFuO1xyXG4gIEBWaWV3Q2hpbGQoTWF0U2lkZW5hdiwgeyBzdGF0aWM6IHRydWUgfSkgbWVudURyYXdlcjogTWF0U2lkZW5hdjtcclxuICBAVmlld0NoaWxkKCdzZWNvbmRhcnlEcmF3ZXInLCB7IHN0YXRpYzogdHJ1ZSB9KSBzZWNvbmRhcnlEcmF3ZXI6IE1hdFNpZGVuYXY7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBpbmplY3RvcjogSW5qZWN0b3IsXHJcbiAgICBwcml2YXRlIF9yb3V0ZXI6IFJvdXRlcixcclxuICAgIHByaXZhdGUgX2JzOiBNYXRCb3R0b21TaGVldCxcclxuICAgIHByaXZhdGUgX2RpcjogRGlyZWN0aW9uYWxpdHksXHJcbiAgICBzZXNzaW9uOiBTZXNzaW9uU2VydmljZSxcclxuICAgIHBvcHVwOiBQb3B1cCxcclxuICAgIG1lc3NhZ2luZzogSHViU2VydmljZSxcclxuICAgIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSxcclxuICAgIHNuYWNrQmFyOiBNYXRTbmFja0JhcixcclxuICAgIGNoYXQ6IENoYXRJbmZvLFxyXG4gICAgQEluamVjdChCSVpET0NfQ09ORklHKSBjb25maWc6IEJpekRvY0NvbmZpZykge1xyXG4gICAgc3VwZXIocG9wdXAsIHNlc3Npb24sIG1lc3NhZ2luZywgdHJhbnNsYXRlLCBzbmFja0JhciwgaW5qZWN0b3IsIGNvbmZpZyk7XHJcbiAgICBfcm91dGVyLmluaXRpYWxOYXZpZ2F0aW9uKCk7XHJcbiAgICBjaGF0Ll9vcGVuJC5zdWJzY3JpYmUoZSA9PiB7XHJcbiAgICAgIHRoaXMubW9kZSA9ICdjaGF0JztcclxuICAgICAgdGhpcy5jb250YWN0ID0gdGhpcy5fc2Vzc2lvbi5wcm9maWxlLmNvbnRhY3RzLmZpbmQoYyA9PiBjLmlkID09IGUpO1xyXG4gICAgfSk7XHJcbiAgfVxyXG4gIG92ZXJyaWRlIG5nT25Jbml0KCkge1xyXG4gICAgc3VwZXIubmdPbkluaXQoKTtcclxuICAgIHRoaXMuX3JvdXRlci5ldmVudHMuc3Vic2NyaWJlKGUgPT4ge1xyXG4gICAgICAvLyBjbG9zZSBtZW51IHdoZW4geHNcclxuICAgICAgaWYgKGUgaW5zdGFuY2VvZiBOYXZpZ2F0aW9uU3RhcnQpIHtcclxuICAgICAgICB0aGlzLm1lbnVEcmF3ZXIuY2xvc2UoKTtcclxuICAgICAgfVxyXG4gICAgICAvLyBlbmFibGUgY29tcG9zZSBvbiBtb2JpbGUgcGVyIHJvdXRlXHJcbiAgICAgIGVsc2UgaWYgKGUgaW5zdGFuY2VvZiBBY3RpdmF0aW9uRW5kKSB7XHJcbiAgICAgICAgaWYgKGUuc25hcHNob3QuY2hpbGRyZW4ubGVuZ3RoID09PSAwKVxyXG4gICAgICAgICAgdGhpcy5jb21wb3NlRW5hYmxlZCA9IChlIGFzIEFjdGl2YXRpb25FbmQpLnNuYXBzaG90LmRhdGFbJ2NvbXBvc2UnXTtcclxuICAgICAgfVxyXG4gICAgfSk7XHJcbiAgfVxyXG4gIGNvbXBvc2UoKSB7XHJcbiAgICB0aGlzLl9icy5vcGVuKEZvcm1TZWxlY3RvclNoZWV0LCB7XHJcbiAgICAgIGF1dG9Gb2N1czogdHJ1ZSxcclxuICAgICAgZGlyZWN0aW9uOiB0aGlzLl9kaXIudmFsdWVcclxuICAgIH0pLmluc3RhbmNlLmRvbmUuXHJcbiAgICAgIHBpcGUoZmlyc3QoKSkuc3Vic2NyaWJlKCgpID0+IHtcclxuICAgICAgICB0aGlzLmNvbXBvc2VTdGF0ZSA9ICd3b3JraW5nJztcclxuICAgICAgICBzZXRUaW1lb3V0KCgpID0+IHRoaXMuY29tcG9zZVN0YXRlID0gJ2RvbmUnLCA1MDApXHJcbiAgICAgIH0pO1xyXG4gIH1cclxuICBvbk5ld01lc3NhZ2UobW9kZWw6IFJlY2lwaWVudE1vZGVsPGFueT4pIHtcclxuICAgIHRoaXMuX3JvdXRlci5uYXZpZ2F0ZShbJ21haWxib3gvaScsIG1vZGVsLmlkLmVuY29kZUlkKCldLFxyXG4gICAgICB7XHJcbiAgICAgICAgc3RhdGU6IHsgaXRlbTogbW9kZWwgfVxyXG4gICAgICB9KTtcclxuICB9XHJcbiAgY2hhdCgpIHtcclxuICAgIHRoaXMubW9kZSA9ICdjaGF0JztcclxuICAgIGlmICh0aGlzLnNlY29uZGFyeURyYXdlci5vcGVuZWQpIHtcclxuICAgICAgaWYgKHRoaXMuY29udGFjdCkgdGhpcy5jb250YWN0ID0gbnVsbDtcclxuICAgICAgZWxzZSB0aGlzLmNsb3NlKCk7XHJcbiAgICB9XHJcbiAgICBlbHNlIHRoaXMub3BlbigpO1xyXG4gIH1cclxuICBwcml2YXRlIG9wZW4oKSB7XHJcbiAgICB0aGlzLnNlY29uZGFyeURyYXdlci5vcGVuKCkudGhlbih0aGlzLnJlc2l6ZSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIGNsb3NlKCkge1xyXG4gICAgdGhpcy5zZWNvbmRhcnlEcmF3ZXIuY2xvc2UoKS50aGVuKHRoaXMucmVzaXplKTtcclxuICB9XHJcbiAgZ2V0QW5pbWF0aW9uKG91dGxldDogUm91dGVyT3V0bGV0KTogc3RyaW5nIHtcclxuICAgIHJldHVybiBvdXRsZXQgJiYgb3V0bGV0LmFjdGl2YXRlZFJvdXRlRGF0YSAmJiBvdXRsZXQuYWN0aXZhdGVkUm91dGVEYXRhWydhbmltYXRpb24nXTtcclxuICB9XHJcblxyXG4gIG92ZXJyaWRlIG5vdGlmcygpIHtcclxuICAgIHN1cGVyLm5vdGlmcygpO1xyXG4gICAgdGhpcy5tb2RlID0gJ25vdGlmaWNhdGlvbnMnO1xyXG4gICAgdGhpcy5zZWNvbmRhcnlEcmF3ZXIudG9nZ2xlKCkudGhlbih0aGlzLnJlc2l6ZSk7XHJcbiAgfVxyXG59XHJcbiIsIjxtYXQtdG9vbGJhciBjb2xvcj1cInByaW1hcnlcIiBbY2xhc3MubG9hZGluZ109XCJsb2FkaW5nXCI+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT0nbWVudURyYXdlci50b2dnbGUoKScgW2JpemRvY1Rvb2x0aXBdPVwiJ01lbnUnIHwgdHJhbnNsYXRlXCIgW2F0dHIuYXJpYS1sYWJlbF09XCInTWVudScgfCB0cmFuc2xhdGVcIj48bWF0LWljb24+bWVudTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgPGRpdiBbcm91dGVyTGlua109J1tcIi9kYXNoYm9hcmRcIl0nIG1hdFJpcHBsZSBbbWF0UmlwcGxlVW5ib3VuZGVkXT1cInRydWVcIiBbbWF0UmlwcGxlUmFkaXVzXT1cIjEwMFwiIFttYXRSaXBwbGVDZW50ZXJlZF09XCJ0cnVlXCIgc3R5bGU9XCJvdXRsaW5lOiBub25lXCI+XHJcbiAgICA8aW1nIGlkPVwibG9nb1wiIHNyYz1cImxvZ28uc3ZnXCIgYWx0PVwiXCIgLz5cclxuICA8L2Rpdj5cclxuICA8c3BhbiBjbGFzcz1cImRpdmlkZXJcIj48L3NwYW4+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cIm5vdGlmcygpXCIgZGF0YS1oZWxwPVwibm90aWZpY2F0aW9uc1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ05vdGlmaWNhdGlvbnMnIHwgdHJhbnNsYXRlXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ05vdGlmaWNhdGlvbnMnIHwgdHJhbnNsYXRlXCI+PG1hdC1pY29uIFttYXRCYWRnZV09XCJwcm9maWxlLm5vdGlmaWNhdGlvbnNDb3VudFwiIFttYXRCYWRnZUhpZGRlbl09XCIhcHJvZmlsZS5ub3RpZmljYXRpb25zQ291bnRcIiBtYXRCYWRnZUNvbG9yPVwiYWNjZW50XCI+bm90aWZpY2F0aW9uczwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKm5nSWY9J2NoYXRFbmFibGVkJyAoY2xpY2spPVwiY2hhdCgpXCIgZGF0YS1oZWxwPVwiY2hhdFwiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ0NoYXQnIHwgdHJhbnNsYXRlXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ0NoYXQnIHwgdHJhbnNsYXRlXCI+PG1hdC1pY29uIFttYXRCYWRnZV09XCJwcm9maWxlLmNvbnZlcnNhdGlvbnNDb3VudFwiIFttYXRCYWRnZUhpZGRlbl09XCIhcHJvZmlsZS5jb252ZXJzYXRpb25zQ291bnRcIiBtYXRCYWRnZUNvbG9yPVwiYWNjZW50XCI+Y2hhdDwvbWF0LWljb24+PC9idXR0b24+XHJcbjwvbWF0LXRvb2xiYXI+XHJcbjxtYXQtc2lkZW5hdi1jb250YWluZXIgYXV0b3NpemU+XHJcbiAgPG1hdC1zaWRlbmF2ICNtZW51RHJhd2VyIGRhdGEtaGVscD1cIm1lbnVcIiBtb2RlPVwib3ZlclwiIGNsb3NlZCBjbGFzcz1cIm1hdC1lbGV2YXRpb24tejVcIj5cclxuICAgIDxtYXQtbmF2LWxpc3Q+XHJcbiAgICAgIDxtYXQtbGlzdC1pdGVtIFtyb3V0ZXJMaW5rXT0nW1wiL2Rhc2hib2FyZFwiXScgW2F0dHIuYXJpYS1sYWJlbF09XCInRGFzaGJvYXJkJyB8IHRyYW5zbGF0ZVwiIHJvdXRlckxpbmtBY3RpdmU9XCJhY3RpdmVcIiBkYXRhLWhlbHA9XCJkYXNoYm9hcmRcIj5cclxuICAgICAgICA8bWF0LWljb24gbWF0TGlzdEljb24+YXBwczwvbWF0LWljb24+PHNwYW4+e3snRGFzaGJvYXJkJyB8IHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICA8L21hdC1saXN0LWl0ZW0+XHJcbiAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16MFwiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ01haWxib3gnIHwgdHJhbnNsYXRlXCIgZGF0YS1oZWxwPVwiZm9sZGVyc1wiPlxyXG4gICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cclxuICAgICAgICAgIDxtYXQtcGFuZWwtdGl0bGU+XHJcbiAgICAgICAgICAgIDxtYXQtaWNvbj5pbmJveDwvbWF0LWljb24+XHJcbiAgICAgICAgICAgIDxzcGFuPnt7J01haWxib3gnIHwgdHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgICAgICA8L21hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICA8L21hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyPlxyXG4gICAgICAgIDxtYXQtbGlzdC1pdGVtICpuZ0Zvcj1cImxldCBmIG9mIHByb2ZpbGUuZm9sZGVyc1wiIFtyb3V0ZXJMaW5rXT0nW1wiL21haWxib3gvZlwiLCBmLm5hbWVdJyByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCIgW2F0dHIuZGF0YS1oZWxwXT1cIidmb2xkZXItJytmLm5hbWVcIiBbYXR0ci5hcmlhLWxhYmVsXT1cImYudGl0bGVcIj5cclxuICAgICAgICAgIDxtYXQtaWNvbiBtYXRMaXN0SWNvbj57e2YuaWNvbn19PC9tYXQtaWNvbj48c3Bhbj57e2YudGl0bGV9fTwvc3Bhbj5cclxuICAgICAgICA8L21hdC1saXN0LWl0ZW0+XHJcbiAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbD5cclxuICAgICAgPG1hdC1saXN0LWl0ZW0gW3JvdXRlckxpbmtdPSdbXCIvc2NoZWR1bGVcIl0nIHJvdXRlckxpbmtBY3RpdmU9XCJhY3RpdmVcIiAqbmdJZj1cInNjaGVkdWxlckVuYWJsZWRcIiBbYXR0ci5hcmlhLWxhYmVsXT1cIidTY2hlZHVsZXInIHwgdHJhbnNsYXRlXCI+XHJcbiAgICAgICAgPG1hdC1pY29uIG1hdExpc3RJY29uIGNsYXNzPVwibWF0LWljb24tcnRsLW1pcnJvclwiPmRhdGVfcmFuZ2U8L21hdC1pY29uPjxzcGFuPnt7ICdTY2hlZHVsZScgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgPC9tYXQtbGlzdC1pdGVtPlxyXG4gICAgICA8bWF0LWRpdmlkZXI+PC9tYXQtZGl2aWRlcj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImVuYWJsZUFuYWx5c2lzXCI+XHJcbiAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGMgb2YgcHJvZmlsZS5jdWJlc1wiPlxyXG4gICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16MFwiICpuZ0lmPVwiYy52aWV3cy5sZW5ndGhcIj5cclxuICAgICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cclxuICAgICAgICAgICAgPG1hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICAgICAgICA8bWF0LWljb24+e3sgYy5pY29uIHx8ICdpbnNlcnRfY2hhcnRfb3V0bGluZWQnfX08L21hdC1pY29uPlxyXG4gICAgICAgICAgICAgIDxzcGFuPnt7Yy50aXRsZX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8L21hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbC1oZWFkZXI+XHJcbiAgICAgICAgICA8bWF0LWxpc3QtaXRlbSAqbmdGb3I9XCJsZXQgdiBvZiBjLnZpZXdzXCIgW3JvdXRlckxpbmtdPSdbXCIvY3ViZVwiLCBjLm5hbWUsIFwidlwiLCB2Lm5hbWVdJyByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCIgW2F0dHIuZGF0YS1oZWxwXT1cIidjdWJlLXZpZXctJyt2Lm5hbWVcIj5cclxuICAgICAgICAgICAgPG1hdC1pY29uIG1hdExpc3RJY29uPnt7di5pY29uIHx8ICdpbnNpZ2h0cyd9fTwvbWF0LWljb24+PHNwYW4+e3t2LnRpdGxlfX08L3NwYW4+XHJcbiAgICAgICAgICA8L21hdC1saXN0LWl0ZW0+XHJcbiAgICAgICAgPC9tYXQtZXhwYW5zaW9uLXBhbmVsPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsICpuZ0lmPVwicHJvZmlsZS5yZXBvcnRzLmxlbmd0aFwiIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16MFwiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ1JlcG9ydHMnIHwgdHJhbnNsYXRlXCI+XHJcbiAgICAgICAgPG1hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyPlxyXG4gICAgICAgICAgPG1hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICAgICAgPG1hdC1pY29uPmxpc3RfYWx0PC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgPHNwYW4+e3snUmVwb3J0cycgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgICAgIDwvbWF0LXBhbmVsLXRpdGxlPlxyXG4gICAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbC1oZWFkZXI+XHJcbiAgICAgICAgPG1hdC1saXN0LWl0ZW0gKm5nRm9yPVwibGV0IHIgb2YgcHJvZmlsZS5yZXBvcnRzXCIgW3JvdXRlckxpbmtdPSdbXCIvcmVwb3J0c1wiLCByLm5hbWVdJyByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsXT1cInIudGl0bGVcIiBbYXR0ci5kYXRhLWhlbHBdPVwiJ3JlcG9ydC0nK3IubmFtZVwiPlxyXG4gICAgICAgICAgPG1hdC1pY29uIG1hdExpc3RJY29uPnt7ci5pY29ufX08L21hdC1pY29uPjxzcGFuPnt7ci50aXRsZX19PC9zcGFuPlxyXG4gICAgICAgIDwvbWF0LWxpc3QtaXRlbT5cclxuICAgICAgPC9tYXQtZXhwYW5zaW9uLXBhbmVsPlxyXG4gICAgICA8bWF0LWRpdmlkZXI+PC9tYXQtZGl2aWRlcj5cclxuICAgICAgPG1hdC1saXN0LWl0ZW0gcm9sZT1cImxpc3RpdGVtXCIgZGF0YS1oZWxwPVwib3B0aW9uc1wiXHJcbiAgICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJvcHRpb25zKCRldmVudClcIj5cclxuICAgICAgICA8bWF0LWljb24gbWF0TGlzdEljb24+c2V0dGluZ3NvbjwvbWF0LWljb24+XHJcbiAgICAgICAgPHNwYW4+e3snU2V0dGluZ3MnIHwgdHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgIDwvbWF0LWxpc3QtaXRlbT5cclxuICAgICAgPG1hdC1kaXZpZGVyPjwvbWF0LWRpdmlkZXI+XHJcbiAgICAgIDxtYXQtbGlzdC1pdGVtIHJvbGU9XCJsaXN0aXRlbVwiIChjbGljayk9XCJzaWdub3V0KCRldmVudClcIj5cclxuICAgICAgICA8bWF0LWljb24gbWF0TGlzdEljb24+bG9nb3V0PC9tYXQtaWNvbj5cclxuICAgICAgICA8c3Bhbj57eydQb3dlcicgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgPC9tYXQtbGlzdC1pdGVtPlxyXG4gICAgPC9tYXQtbmF2LWxpc3Q+XHJcbiAgPC9tYXQtc2lkZW5hdj5cclxuICA8bWF0LXNpZGVuYXYgI3NlY29uZGFyeURyYXdlciBwb3NpdGlvbj1cImVuZFwiIGNsb3NlZCBtb2RlPVwib3ZlclwiIGF1dG9Gb2N1cz1cImZhbHNlXCIgY2xhc3M9XCJtYXQtZWxldmF0aW9uLXozXCI+XHJcbiAgICA8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJtb2RlXCI+XHJcbiAgICA8Yml6ZG9jLWNoYXQgWyhjb250YWN0KV09XCJjb250YWN0XCIgKm5nU3dpdGNoQ2FzZT1cIidjaGF0J1wiPjwvYml6ZG9jLWNoYXQ+XHJcbiAgICA8Yml6ZG9jLW5vdGlmaWNhdGlvbnMtdGFibGUgKm5nU3dpdGNoQ2FzZT1cIidub3RpZmljYXRpb25zJ1wiPjwvYml6ZG9jLW5vdGlmaWNhdGlvbnMtdGFibGU+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICA8L21hdC1zaWRlbmF2PlxyXG4gIDxtYXQtc2lkZW5hdi1jb250ZW50IGRhdGEtaGVscD1cIm1haW5cIj5cclxuICAgIDxyb3V0ZXItb3V0bGV0Pjwvcm91dGVyLW91dGxldD5cclxuICA8L21hdC1zaWRlbmF2LWNvbnRlbnQ+XHJcbjwvbWF0LXNpZGVuYXYtY29udGFpbmVyPlxyXG48YnV0dG9uIG1hdC1mYWIgW2F0dHIuYXJpYS1sYWJlbF09XCInQ29tcG9zZSd8IHRyYW5zbGF0ZVwiIFtAZmFiRnVsbF09XCJjb21wb3NlU3RhdGVcIiAqbmdJZj1cImNvbXBvc2VFbmFibGVkXCIgY29sb3I9XCJhY2NlbnRcIiAoY2xpY2spPVwiY29tcG9zZSgpXCIgZGF0YS1oZWxwPVwiY29tcG9zZVwiPjxtYXQtaWNvbj5hZGQ8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4iXX0=
|
269
|
+
HomeMobileComponent.ɵfac = function HomeMobileComponent_Factory(t) { return new (t || HomeMobileComponent)(i0.ɵɵdirectiveInject(i0.Injector), i0.ɵɵdirectiveInject(i1.Router), i0.ɵɵdirectiveInject(i2.MatBottomSheet), i0.ɵɵdirectiveInject(i3.Directionality), i0.ɵɵdirectiveInject(i4.SessionService), i0.ɵɵdirectiveInject(i5.Popup), i0.ɵɵdirectiveInject(i6.HubService), i0.ɵɵdirectiveInject(i7.TranslateService), i0.ɵɵdirectiveInject(i8.MatSnackBar), i0.ɵɵdirectiveInject(i9.ChatInfo), i0.ɵɵdirectiveInject(BIZDOC_CONFIG)); };
|
270
|
+
HomeMobileComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: HomeMobileComponent, selectors: [["bizdoc-mobile-home"]], viewQuery: function HomeMobileComponent_Query(rf, ctx) { if (rf & 1) {
|
271
|
+
i0.ɵɵviewQuery(MatSidenav, 7);
|
272
|
+
i0.ɵɵviewQuery(_c0, 7);
|
273
|
+
} if (rf & 2) {
|
274
|
+
let _t;
|
275
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.menuDrawer = _t.first);
|
276
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.secondaryDrawer = _t.first);
|
277
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 62, vars: 50, consts: [["color", "primary"], ["mat-icon-button", "", 3, "bizdocTooltip", "click"], ["matRipple", "", 2, "outline", "none", 3, "routerLink", "matRippleUnbounded", "matRippleRadius", "matRippleCentered"], ["id", "logo", "src", "logo.svg", "alt", ""], [1, "divider"], ["mat-icon-button", "", "data-help", "notifications", 3, "bizdocTooltip", "click"], ["matBadgeColor", "accent", 3, "matBadge", "matBadgeHidden"], ["mat-icon-button", "", "data-help", "chat", 3, "bizdocTooltip", "click", 4, "ngIf"], ["autosize", ""], ["data-help", "menu", "mode", "over", "closed", "", 1, "mat-elevation-z5"], ["menuDrawer", ""], ["routerLinkActive", "active", "data-help", "dashboard", 3, "routerLink"], ["matListIcon", ""], ["data-help", "folders", 1, "mat-elevation-z0"], ["routerLinkActive", "active", 3, "routerLink", 4, "ngFor", "ngForOf"], ["routerLinkActive", "active", 3, "routerLink", 4, "ngIf"], [4, "ngIf"], ["class", "mat-elevation-z0", 4, "ngIf"], ["role", "listitem", "data-help", "options", 3, "click"], ["role", "listitem", 3, "click"], ["position", "end", "closed", "", "mode", "over", "autoFocus", "false", 1, "mat-elevation-z3"], ["secondaryDrawer", ""], [3, "ngSwitch"], [3, "contact", "contactChange", 4, "ngSwitchCase"], [4, "ngSwitchCase"], ["data-help", "main"], ["mat-fab", "", "color", "accent", "data-help", "compose", 3, "click", 4, "ngIf"], ["mat-icon-button", "", "data-help", "chat", 3, "bizdocTooltip", "click"], ["routerLinkActive", "active", 3, "routerLink"], ["matListIcon", "", 1, "mat-icon-rtl-mirror"], [4, "ngFor", "ngForOf"], [1, "mat-elevation-z0"], [3, "contact", "contactChange"], ["mat-fab", "", "color", "accent", "data-help", "compose", 3, "click"]], template: function HomeMobileComponent_Template(rf, ctx) { if (rf & 1) {
|
278
|
+
const _r26 = i0.ɵɵgetCurrentView();
|
279
|
+
i0.ɵɵelementStart(0, "mat-toolbar", 0)(1, "button", 1);
|
280
|
+
i0.ɵɵlistener("click", function HomeMobileComponent_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r26); const _r1 = i0.ɵɵreference(17); return i0.ɵɵresetView(_r1.toggle()); });
|
281
|
+
i0.ɵɵpipe(2, "translate");
|
282
|
+
i0.ɵɵpipe(3, "translate");
|
283
|
+
i0.ɵɵelementStart(4, "mat-icon");
|
284
|
+
i0.ɵɵtext(5, "menu");
|
285
|
+
i0.ɵɵelementEnd()();
|
286
|
+
i0.ɵɵelementStart(6, "div", 2);
|
287
|
+
i0.ɵɵelement(7, "img", 3);
|
288
|
+
i0.ɵɵelementEnd();
|
289
|
+
i0.ɵɵelement(8, "span", 4);
|
290
|
+
i0.ɵɵelementStart(9, "button", 5);
|
291
|
+
i0.ɵɵlistener("click", function HomeMobileComponent_Template_button_click_9_listener() { return ctx.notifs(); });
|
292
|
+
i0.ɵɵpipe(10, "translate");
|
293
|
+
i0.ɵɵpipe(11, "translate");
|
294
|
+
i0.ɵɵelementStart(12, "mat-icon", 6);
|
295
|
+
i0.ɵɵtext(13, "notifications");
|
296
|
+
i0.ɵɵelementEnd()();
|
297
|
+
i0.ɵɵtemplate(14, HomeMobileComponent_button_14_Template, 5, 8, "button", 7);
|
298
|
+
i0.ɵɵelementEnd();
|
299
|
+
i0.ɵɵelementStart(15, "mat-sidenav-container", 8)(16, "mat-sidenav", 9, 10)(18, "mat-nav-list")(19, "mat-list-item", 11);
|
300
|
+
i0.ɵɵpipe(20, "translate");
|
301
|
+
i0.ɵɵelementStart(21, "mat-icon", 12);
|
302
|
+
i0.ɵɵtext(22, "apps");
|
303
|
+
i0.ɵɵelementEnd();
|
304
|
+
i0.ɵɵelementStart(23, "span");
|
305
|
+
i0.ɵɵtext(24);
|
306
|
+
i0.ɵɵpipe(25, "translate");
|
307
|
+
i0.ɵɵelementEnd()();
|
308
|
+
i0.ɵɵelementStart(26, "mat-expansion-panel", 13);
|
309
|
+
i0.ɵɵpipe(27, "translate");
|
310
|
+
i0.ɵɵelementStart(28, "mat-expansion-panel-header")(29, "mat-panel-title")(30, "mat-icon");
|
311
|
+
i0.ɵɵtext(31, "inbox");
|
312
|
+
i0.ɵɵelementEnd();
|
313
|
+
i0.ɵɵelementStart(32, "span");
|
314
|
+
i0.ɵɵtext(33);
|
315
|
+
i0.ɵɵpipe(34, "translate");
|
316
|
+
i0.ɵɵelementEnd()()();
|
317
|
+
i0.ɵɵtemplate(35, HomeMobileComponent_mat_list_item_35_Template, 5, 7, "mat-list-item", 14);
|
318
|
+
i0.ɵɵelementEnd();
|
319
|
+
i0.ɵɵtemplate(36, HomeMobileComponent_mat_list_item_36_Template, 7, 8, "mat-list-item", 15);
|
320
|
+
i0.ɵɵelement(37, "mat-divider");
|
321
|
+
i0.ɵɵtemplate(38, HomeMobileComponent_ng_container_38_Template, 2, 1, "ng-container", 16);
|
322
|
+
i0.ɵɵtemplate(39, HomeMobileComponent_mat_expansion_panel_39_Template, 10, 7, "mat-expansion-panel", 17);
|
323
|
+
i0.ɵɵelement(40, "mat-divider");
|
324
|
+
i0.ɵɵelementStart(41, "mat-list-item", 18);
|
325
|
+
i0.ɵɵlistener("click", function HomeMobileComponent_Template_mat_list_item_click_41_listener($event) { return ctx.options($event); });
|
326
|
+
i0.ɵɵelementStart(42, "mat-icon", 12);
|
327
|
+
i0.ɵɵtext(43, "settingson");
|
328
|
+
i0.ɵɵelementEnd();
|
329
|
+
i0.ɵɵelementStart(44, "span");
|
330
|
+
i0.ɵɵtext(45);
|
331
|
+
i0.ɵɵpipe(46, "translate");
|
332
|
+
i0.ɵɵelementEnd()();
|
333
|
+
i0.ɵɵelement(47, "mat-divider");
|
334
|
+
i0.ɵɵelementStart(48, "mat-list-item", 19);
|
335
|
+
i0.ɵɵlistener("click", function HomeMobileComponent_Template_mat_list_item_click_48_listener($event) { return ctx.signout($event); });
|
336
|
+
i0.ɵɵelementStart(49, "mat-icon", 12);
|
337
|
+
i0.ɵɵtext(50, "logout");
|
338
|
+
i0.ɵɵelementEnd();
|
339
|
+
i0.ɵɵelementStart(51, "span");
|
340
|
+
i0.ɵɵtext(52);
|
341
|
+
i0.ɵɵpipe(53, "translate");
|
342
|
+
i0.ɵɵelementEnd()()()();
|
343
|
+
i0.ɵɵelementStart(54, "mat-sidenav", 20, 21);
|
344
|
+
i0.ɵɵelementContainerStart(56, 22);
|
345
|
+
i0.ɵɵtemplate(57, HomeMobileComponent_bizdoc_chat_57_Template, 1, 1, "bizdoc-chat", 23);
|
346
|
+
i0.ɵɵtemplate(58, HomeMobileComponent_bizdoc_notifications_table_58_Template, 1, 0, "bizdoc-notifications-table", 24);
|
347
|
+
i0.ɵɵelementContainerEnd();
|
348
|
+
i0.ɵɵelementEnd();
|
349
|
+
i0.ɵɵelementStart(59, "mat-sidenav-content", 25);
|
350
|
+
i0.ɵɵelement(60, "router-outlet");
|
351
|
+
i0.ɵɵelementEnd()();
|
352
|
+
i0.ɵɵtemplate(61, HomeMobileComponent_button_61_Template, 4, 4, "button", 26);
|
353
|
+
} if (rf & 2) {
|
354
|
+
i0.ɵɵclassProp("loading", ctx.loading);
|
355
|
+
i0.ɵɵadvance(1);
|
356
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(2, 28, "Menu"));
|
357
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(3, 30, "Menu"));
|
358
|
+
i0.ɵɵadvance(5);
|
359
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction0(48, _c5))("matRippleUnbounded", true)("matRippleRadius", 100)("matRippleCentered", true);
|
360
|
+
i0.ɵɵadvance(3);
|
361
|
+
i0.ɵɵproperty("bizdocTooltip", i0.ɵɵpipeBind1(11, 34, "Notifications"));
|
362
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(10, 32, "Notifications"));
|
363
|
+
i0.ɵɵadvance(3);
|
364
|
+
i0.ɵɵproperty("matBadge", ctx.profile.notificationsCount)("matBadgeHidden", !ctx.profile.notificationsCount);
|
365
|
+
i0.ɵɵadvance(2);
|
366
|
+
i0.ɵɵproperty("ngIf", ctx.chatEnabled);
|
367
|
+
i0.ɵɵadvance(5);
|
368
|
+
i0.ɵɵproperty("routerLink", i0.ɵɵpureFunction0(49, _c5));
|
369
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(20, 36, "Dashboard"));
|
370
|
+
i0.ɵɵadvance(5);
|
371
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(25, 38, "Dashboard"));
|
372
|
+
i0.ɵɵadvance(2);
|
373
|
+
i0.ɵɵattribute("aria-label", i0.ɵɵpipeBind1(27, 40, "Mailbox"));
|
374
|
+
i0.ɵɵadvance(7);
|
375
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(34, 42, "Mailbox"));
|
376
|
+
i0.ɵɵadvance(2);
|
377
|
+
i0.ɵɵproperty("ngForOf", ctx.profile.folders);
|
378
|
+
i0.ɵɵadvance(1);
|
379
|
+
i0.ɵɵproperty("ngIf", ctx.schedulerEnabled);
|
380
|
+
i0.ɵɵadvance(2);
|
381
|
+
i0.ɵɵproperty("ngIf", ctx.enableAnalysis);
|
382
|
+
i0.ɵɵadvance(1);
|
383
|
+
i0.ɵɵproperty("ngIf", ctx.profile.reports.length);
|
384
|
+
i0.ɵɵadvance(6);
|
385
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(46, 44, "Settings"));
|
386
|
+
i0.ɵɵadvance(7);
|
387
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(53, 46, "Power"));
|
388
|
+
i0.ɵɵadvance(4);
|
389
|
+
i0.ɵɵproperty("ngSwitch", ctx.mode);
|
390
|
+
i0.ɵɵadvance(1);
|
391
|
+
i0.ɵɵproperty("ngSwitchCase", "chat");
|
392
|
+
i0.ɵɵadvance(1);
|
393
|
+
i0.ɵɵproperty("ngSwitchCase", "notifications");
|
394
|
+
i0.ɵɵadvance(3);
|
395
|
+
i0.ɵɵproperty("ngIf", ctx.composeEnabled);
|
396
|
+
} }, dependencies: [i10.NgForOf, i10.NgIf, i10.NgSwitch, i10.NgSwitchCase, i1.RouterOutlet, i1.RouterLink, i1.RouterLinkActive, i11.MatRipple, i12.MatExpansionPanel, i12.MatExpansionPanelHeader, i12.MatExpansionPanelTitle, i13.MatBadge, i14.MatNavList, i14.MatListItem, i14.MatListIconCssMatStyler, i15.MatDivider, i16.MatSidenav, i16.MatSidenavContainer, i16.MatSidenavContent, i17.MatToolbar, i18.MatButton, i19.MatIcon, i20.NotificationsTableComponent, i21.TooltipDirective, i22.ChatComponent, i23.TranslatePipe], styles: ["#logo[_ngcontent-%COMP%]{padding-left:12px;padding-right:12px;vertical-align:middle;width:120px;filter:invert(1)}[_nghost-%COMP%] .mat-sidenav-container{height:calc(100% - 58px)}[_nghost-%COMP%] .mat-sidenav-container .home-content{padding:unset} .mat-drawer-inner-container{height:auto}router-outlet[_ngcontent-%COMP%] ~ *[_ngcontent-%COMP%]{position:absolute;height:100%;width:100%} [dir=rtl] .mat-fab{left:30px;right:unset}.mat-fab[_ngcontent-%COMP%]{z-index:1;position:absolute;bottom:30px;right:30px}[_nghost-%COMP%] .mat-expansion-panel-header{padding:0 18px}[_nghost-%COMP%] .mat-expansion-panel-header .mat-expansion-panel-header-title .mat-icon{padding:0 3px}"], data: { animation: [fabAnimation] } });
|
397
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HomeMobileComponent, [{
|
398
|
+
type: Component,
|
399
|
+
args: [{ selector: 'bizdoc-mobile-home', animations: [fabAnimation], template: "<mat-toolbar color=\"primary\" [class.loading]=\"loading\">\r\n <button mat-icon-button (click)='menuDrawer.toggle()' [bizdocTooltip]=\"'Menu' | translate\" [attr.aria-label]=\"'Menu' | translate\"><mat-icon>menu</mat-icon></button>\r\n <div [routerLink]='[\"/dashboard\"]' matRipple [matRippleUnbounded]=\"true\" [matRippleRadius]=\"100\" [matRippleCentered]=\"true\" style=\"outline: none\">\r\n <img id=\"logo\" src=\"logo.svg\" alt=\"\" />\r\n </div>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"notifs()\" data-help=\"notifications\" [attr.aria-label]=\"'Notifications' | translate\" [bizdocTooltip]=\"'Notifications' | translate\"><mat-icon [matBadge]=\"profile.notificationsCount\" [matBadgeHidden]=\"!profile.notificationsCount\" matBadgeColor=\"accent\">notifications</mat-icon></button>\r\n <button mat-icon-button *ngIf='chatEnabled' (click)=\"chat()\" data-help=\"chat\" [attr.aria-label]=\"'Chat' | translate\" [bizdocTooltip]=\"'Chat' | translate\"><mat-icon [matBadge]=\"profile.conversationsCount\" [matBadgeHidden]=\"!profile.conversationsCount\" matBadgeColor=\"accent\">chat</mat-icon></button>\r\n</mat-toolbar>\r\n<mat-sidenav-container autosize>\r\n <mat-sidenav #menuDrawer data-help=\"menu\" mode=\"over\" closed class=\"mat-elevation-z5\">\r\n <mat-nav-list>\r\n <mat-list-item [routerLink]='[\"/dashboard\"]' [attr.aria-label]=\"'Dashboard' | translate\" routerLinkActive=\"active\" data-help=\"dashboard\">\r\n <mat-icon matListIcon>apps</mat-icon><span>{{'Dashboard' | translate}}</span>\r\n </mat-list-item>\r\n <mat-expansion-panel class=\"mat-elevation-z0\" [attr.aria-label]=\"'Mailbox' | translate\" data-help=\"folders\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title>\r\n <mat-icon>inbox</mat-icon>\r\n <span>{{'Mailbox' | translate}}</span>\r\n </mat-panel-title>\r\n </mat-expansion-panel-header>\r\n <mat-list-item *ngFor=\"let f of profile.folders\" [routerLink]='[\"/mailbox/f\", f.name]' routerLinkActive=\"active\" [attr.data-help]=\"'folder-'+f.name\" [attr.aria-label]=\"f.title\">\r\n <mat-icon matListIcon>{{f.icon}}</mat-icon><span>{{f.title}}</span>\r\n </mat-list-item>\r\n </mat-expansion-panel>\r\n <mat-list-item [routerLink]='[\"/schedule\"]' routerLinkActive=\"active\" *ngIf=\"schedulerEnabled\" [attr.aria-label]=\"'Scheduler' | translate\">\r\n <mat-icon matListIcon class=\"mat-icon-rtl-mirror\">date_range</mat-icon><span>{{ 'Schedule' | translate}}</span>\r\n </mat-list-item>\r\n <mat-divider></mat-divider>\r\n <ng-container *ngIf=\"enableAnalysis\">\r\n <ng-container *ngFor=\"let c of profile.cubes\">\r\n <mat-expansion-panel class=\"mat-elevation-z0\" *ngIf=\"c.views.length\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title>\r\n <mat-icon>{{ c.icon || 'insert_chart_outlined'}}</mat-icon>\r\n <span>{{c.title}}</span>\r\n </mat-panel-title>\r\n </mat-expansion-panel-header>\r\n <mat-list-item *ngFor=\"let v of c.views\" [routerLink]='[\"/cube\", c.name, \"v\", v.name]' routerLinkActive=\"active\" [attr.data-help]=\"'cube-view-'+v.name\">\r\n <mat-icon matListIcon>{{v.icon || 'insights'}}</mat-icon><span>{{v.title}}</span>\r\n </mat-list-item>\r\n </mat-expansion-panel>\r\n </ng-container>\r\n </ng-container>\r\n <mat-expansion-panel *ngIf=\"profile.reports.length\" class=\"mat-elevation-z0\" [attr.aria-label]=\"'Reports' | translate\">\r\n <mat-expansion-panel-header>\r\n <mat-panel-title>\r\n <mat-icon>list_alt</mat-icon>\r\n <span>{{'Reports' | translate}}</span>\r\n </mat-panel-title>\r\n </mat-expansion-panel-header>\r\n <mat-list-item *ngFor=\"let r of profile.reports\" [routerLink]='[\"/reports\", r.name]' routerLinkActive=\"active\"\r\n [attr.aria-label]=\"r.title\" [attr.data-help]=\"'report-'+r.name\">\r\n <mat-icon matListIcon>{{r.icon}}</mat-icon><span>{{r.title}}</span>\r\n </mat-list-item>\r\n </mat-expansion-panel>\r\n <mat-divider></mat-divider>\r\n <mat-list-item role=\"listitem\" data-help=\"options\"\r\n (click)=\"options($event)\">\r\n <mat-icon matListIcon>settingson</mat-icon>\r\n <span>{{'Settings' | translate}}</span>\r\n </mat-list-item>\r\n <mat-divider></mat-divider>\r\n <mat-list-item role=\"listitem\" (click)=\"signout($event)\">\r\n <mat-icon matListIcon>logout</mat-icon>\r\n <span>{{'Power' | translate}}</span>\r\n </mat-list-item>\r\n </mat-nav-list>\r\n </mat-sidenav>\r\n <mat-sidenav #secondaryDrawer position=\"end\" closed mode=\"over\" autoFocus=\"false\" class=\"mat-elevation-z3\">\r\n <ng-container [ngSwitch]=\"mode\">\r\n <bizdoc-chat [(contact)]=\"contact\" *ngSwitchCase=\"'chat'\"></bizdoc-chat>\r\n <bizdoc-notifications-table *ngSwitchCase=\"'notifications'\"></bizdoc-notifications-table>\r\n </ng-container>\r\n </mat-sidenav>\r\n <mat-sidenav-content data-help=\"main\">\r\n <router-outlet></router-outlet>\r\n </mat-sidenav-content>\r\n</mat-sidenav-container>\r\n<button mat-fab [attr.aria-label]=\"'Compose'| translate\" [@fabFull]=\"composeState\" *ngIf=\"composeEnabled\" color=\"accent\" (click)=\"compose()\" data-help=\"compose\"><mat-icon>add</mat-icon></button>\r\n", styles: ["#logo{padding-left:12px;padding-right:12px;vertical-align:middle;width:120px;filter:invert(1)}:host ::ng-deep .mat-sidenav-container{height:calc(100% - 58px)}:host ::ng-deep .mat-sidenav-container .home-content{padding:unset}::ng-deep .mat-drawer-inner-container{height:auto}router-outlet~*{position:absolute;height:100%;width:100%}::ng-deep [dir=rtl] .mat-fab{left:30px;right:unset}.mat-fab{z-index:1;position:absolute;bottom:30px;right:30px}:host ::ng-deep .mat-expansion-panel-header{padding:0 18px}:host ::ng-deep .mat-expansion-panel-header .mat-expansion-panel-header-title .mat-icon{padding:0 3px}\n"] }]
|
400
|
+
}], function () { return [{ type: i0.Injector }, { type: i1.Router }, { type: i2.MatBottomSheet }, { type: i3.Directionality }, { type: i4.SessionService }, { type: i5.Popup }, { type: i6.HubService }, { type: i7.TranslateService }, { type: i8.MatSnackBar }, { type: i9.ChatInfo }, { type: undefined, decorators: [{
|
401
|
+
type: Inject,
|
402
|
+
args: [BIZDOC_CONFIG]
|
403
|
+
}] }]; }, { menuDrawer: [{
|
404
|
+
type: ViewChild,
|
405
|
+
args: [MatSidenav, { static: true }]
|
406
|
+
}], secondaryDrawer: [{
|
407
|
+
type: ViewChild,
|
408
|
+
args: ['secondaryDrawer', { static: true }]
|
409
|
+
}] }); })();
|
410
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaG9tZS5tb2JpbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9ob21lL2hvbWUubW9iaWxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvaG9tZS9ob21lLm1vYmlsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQW9CLE1BQU0sZUFBZSxDQUFDO0FBQy9FLE9BQU8sRUFBZ0IsZUFBZSxFQUFFLGFBQWEsRUFBVSxNQUFNLGlCQUFpQixDQUFDO0FBQ3ZGLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUl2RCxPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDdkMsT0FBTyxFQUFnQixhQUFhLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFLbEQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFFakYsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHVCQUF1QixDQUFDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0lDUi9DLGtDQUEwSjtJQUE5RyxzS0FBUyxlQUFBLGNBQU0sQ0FBQSxJQUFDOzs7SUFBOEYsbUNBQXdIO0lBQUEsb0JBQUk7SUFBQSxpQkFBVyxFQUFBOzs7SUFBNUssNERBQW9DO0lBQTNFLDBEQUFzQztJQUFnRCxlQUF1QztJQUF2Qyw0REFBdUMsc0RBQUE7Ozs7SUFlck0seUNBQWlMLG1CQUFBO0lBQ3pKLFlBQVU7SUFBQSxpQkFBVztJQUFBLDRCQUFNO0lBQUEsWUFBVztJQUFBLGlCQUFPLEVBQUE7OztJQURwQixtRUFBcUM7SUFBMkIsbURBQW1DLDJC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QywyREFBc0M7UUFDNUgsZUFBNkI7UUFBN0Isd0RBQTZCLDRCQUFBLHdCQUFBLDJCQUFBO1FBSW1GLGVBQTZDO1FBQTdDLHVFQUE2QztRQUE3RixxRUFBK0M7UUFBeUQsZUFBdUM7UUFBdkMseURBQXVDLG1EQUFBO1FBQzNMLGVBQWlCO1FBQWpCLHNDQUFpQjtRQUt2QixlQUE2QjtRQUE3Qix3REFBNkI7UUFBQyxpRUFBMkM7UUFDM0MsZUFBMkI7UUFBM0IseURBQTJCO1FBRTFCLGVBQXlDO1FBQXpDLCtEQUF5QztRQUkzRSxlQUF5QjtRQUF6Qix1REFBeUI7UUFHTixlQUFrQjtRQUFsQiw2Q0FBa0I7UUFJc0IsZUFBc0I7UUFBdEIsMkNBQXNCO1FBSTlFLGVBQW9CO1FBQXBCLHlDQUFvQjtRQWViLGVBQTRCO1FBQTVCLGlEQUE0QjtRQWdCMUMsZUFBMEI7UUFBMUIsd0RBQTBCO1FBSzFCLGVBQXVCO1FBQXZCLHFEQUF1QjtRQUtuQixlQUFpQjtRQUFqQixtQ0FBaUI7UUFDSyxlQUFvQjtRQUFwQixxQ0FBb0I7UUFDM0IsZUFBNkI7UUFBN0IsOENBQTZCO1FBT3NCLGVBQW9CO1FBQXBCLHlDQUFvQjt3dENEMUQxRixDQUFDLFlBQVksQ0FBQzt1RkFFZixtQkFBbUI7Y0FOL0IsU0FBUzsyQkFDRSxvQkFBb0IsY0FHbEIsQ0FBQyxZQUFZLENBQUM7O3NCQW9CdkIsTUFBTTt1QkFBQyxhQUFhO3dCQWJrQixVQUFVO2tCQUFsRCxTQUFTO21CQUFDLFVBQVUsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUU7WUFDUyxlQUFlO2tCQUE5RCxTQUFTO21CQUFDLGlCQUFpQixFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgVmlld0NoaWxkLCBJbmplY3QsIE9uSW5pdCwgSW5qZWN0b3IgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUm91dGVyT3V0bGV0LCBOYXZpZ2F0aW9uU3RhcnQsIEFjdGl2YXRpb25FbmQsIFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmltcG9ydCB7IE1hdFNpZGVuYXYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zaWRlbmF2JztcclxuaW1wb3J0IHsgTWF0Qm90dG9tU2hlZXQgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9ib3R0b20tc2hlZXQnO1xyXG5pbXBvcnQgeyBNYXRTbmFja0JhciB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NuYWNrLWJhcic7XHJcbmltcG9ydCB7IERpcmVjdGlvbmFsaXR5IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2JpZGknO1xyXG5pbXBvcnQgeyBmaXJzdCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcclxuaW1wb3J0IHsgQml6RG9jQ29uZmlnLCBCSVpET0NfQ09ORklHIH0gZnJvbSAnLi4vY29yZS9jb25maWd1cmF0aW9uJztcclxuaW1wb3J0IHsgZmFiQW5pbWF0aW9uIH0gZnJvbSAnLi4vY29yZS9hbmltYXRpb25zJztcclxuaW1wb3J0IHsgQ29udGFjdCwgUmVjaXBpZW50TW9kZWwgfSBmcm9tICcuLi9jb3JlL21vZGVscyc7XHJcbmltcG9ydCB7IFNlc3Npb25TZXJ2aWNlIH0gZnJvbSAnLi4vY29yZS9zZXNzaW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBIdWJTZXJ2aWNlIH0gZnJvbSAnLi4vY29yZS9odWIuc2VydmljZSc7XHJcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tICcuLi9jb3JlL3RyYW5zbGF0ZS5zZXJ2aWNlJztcclxuaW1wb3J0IHsgRm9ybVNlbGVjdG9yU2hlZXQgfSBmcm9tICcuLi9jb21wb3NlL2Zvcm0tc2VsZWN0b3IvZm9ybS1zZWxlY3Rvci5zaGVldCc7XHJcbmltcG9ydCB7IFBvcHVwIH0gZnJvbSAnLi4vY29yZS9wb3B1cC9wb3B1cC5zZXJ2aWNlJztcclxuaW1wb3J0IHsgSG9tZUJhc2UgfSBmcm9tICcuL2hvbWUtYmFzZS5jb21wb25lbnQnO1xyXG5pbXBvcnQgeyBDaGF0SW5mbyB9IGZyb20gJy4uL2NoYXQvY2hhdC1pbmZvJztcclxuLyoqIGhvbWUgY29tcCAqL1xyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2JpemRvYy1tb2JpbGUtaG9tZScsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2hvbWUubW9iaWxlLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9ob21lLm1vYmlsZS5jb21wb25lbnQuc2NzcyddLFxyXG4gIGFuaW1hdGlvbnM6IFtmYWJBbmltYXRpb25dXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBIb21lTW9iaWxlQ29tcG9uZW50IGV4dGVuZHMgSG9tZUJhc2UgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIG1vZGU6ICdjaGF0JyB8ICdub3RpZmljYXRpb25zJztcclxuICBjb21wb3NlU3RhdGU6ICd3b3JraW5nJyB8ICdkb25lJztcclxuICBjb250YWN0OiBDb250YWN0O1xyXG4gIGNvbXBvc2VFbmFibGVkOiBib29sZWFuO1xyXG4gIEBWaWV3Q2hpbGQoTWF0U2lkZW5hdiwgeyBzdGF0aWM6IHRydWUgfSkgbWVudURyYXdlcjogTWF0U2lkZW5hdjtcclxuICBAVmlld0NoaWxkKCdzZWNvbmRhcnlEcmF3ZXInLCB7IHN0YXRpYzogdHJ1ZSB9KSBzZWNvbmRhcnlEcmF3ZXI6IE1hdFNpZGVuYXY7XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBpbmplY3RvcjogSW5qZWN0b3IsXHJcbiAgICBwcml2YXRlIF9yb3V0ZXI6IFJvdXRlcixcclxuICAgIHByaXZhdGUgX2JzOiBNYXRCb3R0b21TaGVldCxcclxuICAgIHByaXZhdGUgX2RpcjogRGlyZWN0aW9uYWxpdHksXHJcbiAgICBzZXNzaW9uOiBTZXNzaW9uU2VydmljZSxcclxuICAgIHBvcHVwOiBQb3B1cCxcclxuICAgIG1lc3NhZ2luZzogSHViU2VydmljZSxcclxuICAgIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSxcclxuICAgIHNuYWNrQmFyOiBNYXRTbmFja0JhcixcclxuICAgIGNoYXQ6IENoYXRJbmZvLFxyXG4gICAgQEluamVjdChCSVpET0NfQ09ORklHKSBjb25maWc6IEJpekRvY0NvbmZpZykge1xyXG4gICAgc3VwZXIocG9wdXAsIHNlc3Npb24sIG1lc3NhZ2luZywgdHJhbnNsYXRlLCBzbmFja0JhciwgaW5qZWN0b3IsIGNvbmZpZyk7XHJcbiAgICBfcm91dGVyLmluaXRpYWxOYXZpZ2F0aW9uKCk7XHJcbiAgICBjaGF0Ll9vcGVuJC5zdWJzY3JpYmUoZSA9PiB7XHJcbiAgICAgIHRoaXMubW9kZSA9ICdjaGF0JztcclxuICAgICAgdGhpcy5jb250YWN0ID0gdGhpcy5fc2Vzc2lvbi5wcm9maWxlLmNvbnRhY3RzLmZpbmQoYyA9PiBjLmlkID09IGUpO1xyXG4gICAgfSk7XHJcbiAgfVxyXG4gIG92ZXJyaWRlIG5nT25Jbml0KCkge1xyXG4gICAgc3VwZXIubmdPbkluaXQoKTtcclxuICAgIHRoaXMuX3JvdXRlci5ldmVudHMuc3Vic2NyaWJlKGUgPT4ge1xyXG4gICAgICAvLyBjbG9zZSBtZW51IHdoZW4geHNcclxuICAgICAgaWYgKGUgaW5zdGFuY2VvZiBOYXZpZ2F0aW9uU3RhcnQpIHtcclxuICAgICAgICB0aGlzLm1lbnVEcmF3ZXIuY2xvc2UoKTtcclxuICAgICAgfVxyXG4gICAgICAvLyBlbmFibGUgY29tcG9zZSBvbiBtb2JpbGUgcGVyIHJvdXRlXHJcbiAgICAgIGVsc2UgaWYgKGUgaW5zdGFuY2VvZiBBY3RpdmF0aW9uRW5kKSB7XHJcbiAgICAgICAgaWYgKGUuc25hcHNob3QuY2hpbGRyZW4ubGVuZ3RoID09PSAwKVxyXG4gICAgICAgICAgdGhpcy5jb21wb3NlRW5hYmxlZCA9IChlIGFzIEFjdGl2YXRpb25FbmQpLnNuYXBzaG90LmRhdGFbJ2NvbXBvc2UnXTtcclxuICAgICAgfVxyXG4gICAgfSk7XHJcbiAgfVxyXG4gIGNvbXBvc2UoKSB7XHJcbiAgICB0aGlzLl9icy5vcGVuKEZvcm1TZWxlY3RvclNoZWV0LCB7XHJcbiAgICAgIGF1dG9Gb2N1czogdHJ1ZSxcclxuICAgICAgZGlyZWN0aW9uOiB0aGlzLl9kaXIudmFsdWVcclxuICAgIH0pLmluc3RhbmNlLmRvbmUuXHJcbiAgICAgIHBpcGUoZmlyc3QoKSkuc3Vic2NyaWJlKCgpID0+IHtcclxuICAgICAgICB0aGlzLmNvbXBvc2VTdGF0ZSA9ICd3b3JraW5nJztcclxuICAgICAgICBzZXRUaW1lb3V0KCgpID0+IHRoaXMuY29tcG9zZVN0YXRlID0gJ2RvbmUnLCA1MDApXHJcbiAgICAgIH0pO1xyXG4gIH1cclxuICBvbk5ld01lc3NhZ2UobW9kZWw6IFJlY2lwaWVudE1vZGVsPGFueT4pIHtcclxuICAgIHRoaXMuX3JvdXRlci5uYXZpZ2F0ZShbJ21haWxib3gvaScsIG1vZGVsLmlkLmVuY29kZUlkKCldLFxyXG4gICAgICB7XHJcbiAgICAgICAgc3RhdGU6IHsgaXRlbTogbW9kZWwgfVxyXG4gICAgICB9KTtcclxuICB9XHJcbiAgY2hhdCgpIHtcclxuICAgIHRoaXMubW9kZSA9ICdjaGF0JztcclxuICAgIGlmICh0aGlzLnNlY29uZGFyeURyYXdlci5vcGVuZWQpIHtcclxuICAgICAgaWYgKHRoaXMuY29udGFjdCkgdGhpcy5jb250YWN0ID0gbnVsbDtcclxuICAgICAgZWxzZSB0aGlzLmNsb3NlKCk7XHJcbiAgICB9XHJcbiAgICBlbHNlIHRoaXMub3BlbigpO1xyXG4gIH1cclxuICBwcml2YXRlIG9wZW4oKSB7XHJcbiAgICB0aGlzLnNlY29uZGFyeURyYXdlci5vcGVuKCkudGhlbih0aGlzLnJlc2l6ZSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIGNsb3NlKCkge1xyXG4gICAgdGhpcy5zZWNvbmRhcnlEcmF3ZXIuY2xvc2UoKS50aGVuKHRoaXMucmVzaXplKTtcclxuICB9XHJcbiAgZ2V0QW5pbWF0aW9uKG91dGxldDogUm91dGVyT3V0bGV0KTogc3RyaW5nIHtcclxuICAgIHJldHVybiBvdXRsZXQgJiYgb3V0bGV0LmFjdGl2YXRlZFJvdXRlRGF0YSAmJiBvdXRsZXQuYWN0aXZhdGVkUm91dGVEYXRhWydhbmltYXRpb24nXTtcclxuICB9XHJcblxyXG4gIG92ZXJyaWRlIG5vdGlmcygpIHtcclxuICAgIHN1cGVyLm5vdGlmcygpO1xyXG4gICAgdGhpcy5tb2RlID0gJ25vdGlmaWNhdGlvbnMnO1xyXG4gICAgdGhpcy5zZWNvbmRhcnlEcmF3ZXIudG9nZ2xlKCkudGhlbih0aGlzLnJlc2l6ZSk7XHJcbiAgfVxyXG59XHJcbiIsIjxtYXQtdG9vbGJhciBjb2xvcj1cInByaW1hcnlcIiBbY2xhc3MubG9hZGluZ109XCJsb2FkaW5nXCI+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT0nbWVudURyYXdlci50b2dnbGUoKScgW2JpemRvY1Rvb2x0aXBdPVwiJ01lbnUnIHwgdHJhbnNsYXRlXCIgW2F0dHIuYXJpYS1sYWJlbF09XCInTWVudScgfCB0cmFuc2xhdGVcIj48bWF0LWljb24+bWVudTwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgPGRpdiBbcm91dGVyTGlua109J1tcIi9kYXNoYm9hcmRcIl0nIG1hdFJpcHBsZSBbbWF0UmlwcGxlVW5ib3VuZGVkXT1cInRydWVcIiBbbWF0UmlwcGxlUmFkaXVzXT1cIjEwMFwiIFttYXRSaXBwbGVDZW50ZXJlZF09XCJ0cnVlXCIgc3R5bGU9XCJvdXRsaW5lOiBub25lXCI+XHJcbiAgICA8aW1nIGlkPVwibG9nb1wiIHNyYz1cImxvZ28uc3ZnXCIgYWx0PVwiXCIgLz5cclxuICA8L2Rpdj5cclxuICA8c3BhbiBjbGFzcz1cImRpdmlkZXJcIj48L3NwYW4+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cIm5vdGlmcygpXCIgZGF0YS1oZWxwPVwibm90aWZpY2F0aW9uc1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ05vdGlmaWNhdGlvbnMnIHwgdHJhbnNsYXRlXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ05vdGlmaWNhdGlvbnMnIHwgdHJhbnNsYXRlXCI+PG1hdC1pY29uIFttYXRCYWRnZV09XCJwcm9maWxlLm5vdGlmaWNhdGlvbnNDb3VudFwiIFttYXRCYWRnZUhpZGRlbl09XCIhcHJvZmlsZS5ub3RpZmljYXRpb25zQ291bnRcIiBtYXRCYWRnZUNvbG9yPVwiYWNjZW50XCI+bm90aWZpY2F0aW9uczwvbWF0LWljb24+PC9idXR0b24+XHJcbiAgPGJ1dHRvbiBtYXQtaWNvbi1idXR0b24gKm5nSWY9J2NoYXRFbmFibGVkJyAoY2xpY2spPVwiY2hhdCgpXCIgZGF0YS1oZWxwPVwiY2hhdFwiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ0NoYXQnIHwgdHJhbnNsYXRlXCIgW2JpemRvY1Rvb2x0aXBdPVwiJ0NoYXQnIHwgdHJhbnNsYXRlXCI+PG1hdC1pY29uIFttYXRCYWRnZV09XCJwcm9maWxlLmNvbnZlcnNhdGlvbnNDb3VudFwiIFttYXRCYWRnZUhpZGRlbl09XCIhcHJvZmlsZS5jb252ZXJzYXRpb25zQ291bnRcIiBtYXRCYWRnZUNvbG9yPVwiYWNjZW50XCI+Y2hhdDwvbWF0LWljb24+PC9idXR0b24+XHJcbjwvbWF0LXRvb2xiYXI+XHJcbjxtYXQtc2lkZW5hdi1jb250YWluZXIgYXV0b3NpemU+XHJcbiAgPG1hdC1zaWRlbmF2ICNtZW51RHJhd2VyIGRhdGEtaGVscD1cIm1lbnVcIiBtb2RlPVwib3ZlclwiIGNsb3NlZCBjbGFzcz1cIm1hdC1lbGV2YXRpb24tejVcIj5cclxuICAgIDxtYXQtbmF2LWxpc3Q+XHJcbiAgICAgIDxtYXQtbGlzdC1pdGVtIFtyb3V0ZXJMaW5rXT0nW1wiL2Rhc2hib2FyZFwiXScgW2F0dHIuYXJpYS1sYWJlbF09XCInRGFzaGJvYXJkJyB8IHRyYW5zbGF0ZVwiIHJvdXRlckxpbmtBY3RpdmU9XCJhY3RpdmVcIiBkYXRhLWhlbHA9XCJkYXNoYm9hcmRcIj5cclxuICAgICAgICA8bWF0LWljb24gbWF0TGlzdEljb24+YXBwczwvbWF0LWljb24+PHNwYW4+e3snRGFzaGJvYXJkJyB8IHRyYW5zbGF0ZX19PC9zcGFuPlxyXG4gICAgICA8L21hdC1saXN0LWl0ZW0+XHJcbiAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16MFwiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ01haWxib3gnIHwgdHJhbnNsYXRlXCIgZGF0YS1oZWxwPVwiZm9sZGVyc1wiPlxyXG4gICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cclxuICAgICAgICAgIDxtYXQtcGFuZWwtdGl0bGU+XHJcbiAgICAgICAgICAgIDxtYXQtaWNvbj5pbmJveDwvbWF0LWljb24+XHJcbiAgICAgICAgICAgIDxzcGFuPnt7J01haWxib3gnIHwgdHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgICAgICA8L21hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICA8L21hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyPlxyXG4gICAgICAgIDxtYXQtbGlzdC1pdGVtICpuZ0Zvcj1cImxldCBmIG9mIHByb2ZpbGUuZm9sZGVyc1wiIFtyb3V0ZXJMaW5rXT0nW1wiL21haWxib3gvZlwiLCBmLm5hbWVdJyByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCIgW2F0dHIuZGF0YS1oZWxwXT1cIidmb2xkZXItJytmLm5hbWVcIiBbYXR0ci5hcmlhLWxhYmVsXT1cImYudGl0bGVcIj5cclxuICAgICAgICAgIDxtYXQtaWNvbiBtYXRMaXN0SWNvbj57e2YuaWNvbn19PC9tYXQtaWNvbj48c3Bhbj57e2YudGl0bGV9fTwvc3Bhbj5cclxuICAgICAgICA8L21hdC1saXN0LWl0ZW0+XHJcbiAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbD5cclxuICAgICAgPG1hdC1saXN0LWl0ZW0gW3JvdXRlckxpbmtdPSdbXCIvc2NoZWR1bGVcIl0nIHJvdXRlckxpbmtBY3RpdmU9XCJhY3RpdmVcIiAqbmdJZj1cInNjaGVkdWxlckVuYWJsZWRcIiBbYXR0ci5hcmlhLWxhYmVsXT1cIidTY2hlZHVsZXInIHwgdHJhbnNsYXRlXCI+XHJcbiAgICAgICAgPG1hdC1pY29uIG1hdExpc3RJY29uIGNsYXNzPVwibWF0LWljb24tcnRsLW1pcnJvclwiPmRhdGVfcmFuZ2U8L21hdC1pY29uPjxzcGFuPnt7ICdTY2hlZHVsZScgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgPC9tYXQtbGlzdC1pdGVtPlxyXG4gICAgICA8bWF0LWRpdmlkZXI+PC9tYXQtZGl2aWRlcj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImVuYWJsZUFuYWx5c2lzXCI+XHJcbiAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGMgb2YgcHJvZmlsZS5jdWJlc1wiPlxyXG4gICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16MFwiICpuZ0lmPVwiYy52aWV3cy5sZW5ndGhcIj5cclxuICAgICAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsLWhlYWRlcj5cclxuICAgICAgICAgICAgPG1hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICAgICAgICA8bWF0LWljb24+e3sgYy5pY29uIHx8ICdpbnNlcnRfY2hhcnRfb3V0bGluZWQnfX08L21hdC1pY29uPlxyXG4gICAgICAgICAgICAgIDxzcGFuPnt7Yy50aXRsZX19PC9zcGFuPlxyXG4gICAgICAgICAgICA8L21hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbC1oZWFkZXI+XHJcbiAgICAgICAgICA8bWF0LWxpc3QtaXRlbSAqbmdGb3I9XCJsZXQgdiBvZiBjLnZpZXdzXCIgW3JvdXRlckxpbmtdPSdbXCIvY3ViZVwiLCBjLm5hbWUsIFwidlwiLCB2Lm5hbWVdJyByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCIgW2F0dHIuZGF0YS1oZWxwXT1cIidjdWJlLXZpZXctJyt2Lm5hbWVcIj5cclxuICAgICAgICAgICAgPG1hdC1pY29uIG1hdExpc3RJY29uPnt7di5pY29uIHx8ICdpbnNpZ2h0cyd9fTwvbWF0LWljb24+PHNwYW4+e3t2LnRpdGxlfX08L3NwYW4+XHJcbiAgICAgICAgICA8L21hdC1saXN0LWl0ZW0+XHJcbiAgICAgICAgPC9tYXQtZXhwYW5zaW9uLXBhbmVsPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICAgIDxtYXQtZXhwYW5zaW9uLXBhbmVsICpuZ0lmPVwicHJvZmlsZS5yZXBvcnRzLmxlbmd0aFwiIGNsYXNzPVwibWF0LWVsZXZhdGlvbi16MFwiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ1JlcG9ydHMnIHwgdHJhbnNsYXRlXCI+XHJcbiAgICAgICAgPG1hdC1leHBhbnNpb24tcGFuZWwtaGVhZGVyPlxyXG4gICAgICAgICAgPG1hdC1wYW5lbC10aXRsZT5cclxuICAgICAgICAgICAgPG1hdC1pY29uPmxpc3RfYWx0PC9tYXQtaWNvbj5cclxuICAgICAgICAgICAgPHNwYW4+e3snUmVwb3J0cycgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgICAgIDwvbWF0LXBhbmVsLXRpdGxlPlxyXG4gICAgICAgIDwvbWF0LWV4cGFuc2lvbi1wYW5lbC1oZWFkZXI+XHJcbiAgICAgICAgPG1hdC1saXN0LWl0ZW0gKm5nRm9yPVwibGV0IHIgb2YgcHJvZmlsZS5yZXBvcnRzXCIgW3JvdXRlckxpbmtdPSdbXCIvcmVwb3J0c1wiLCByLm5hbWVdJyByb3V0ZXJMaW5rQWN0aXZlPVwiYWN0aXZlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbYXR0ci5hcmlhLWxhYmVsXT1cInIudGl0bGVcIiBbYXR0ci5kYXRhLWhlbHBdPVwiJ3JlcG9ydC0nK3IubmFtZVwiPlxyXG4gICAgICAgICAgPG1hdC1pY29uIG1hdExpc3RJY29uPnt7ci5pY29ufX08L21hdC1pY29uPjxzcGFuPnt7ci50aXRsZX19PC9zcGFuPlxyXG4gICAgICAgIDwvbWF0LWxpc3QtaXRlbT5cclxuICAgICAgPC9tYXQtZXhwYW5zaW9uLXBhbmVsPlxyXG4gICAgICA8bWF0LWRpdmlkZXI+PC9tYXQtZGl2aWRlcj5cclxuICAgICAgPG1hdC1saXN0LWl0ZW0gcm9sZT1cImxpc3RpdGVtXCIgZGF0YS1oZWxwPVwib3B0aW9uc1wiXHJcbiAgICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJvcHRpb25zKCRldmVudClcIj5cclxuICAgICAgICA8bWF0LWljb24gbWF0TGlzdEljb24+c2V0dGluZ3NvbjwvbWF0LWljb24+XHJcbiAgICAgICAgPHNwYW4+e3snU2V0dGluZ3MnIHwgdHJhbnNsYXRlfX08L3NwYW4+XHJcbiAgICAgIDwvbWF0LWxpc3QtaXRlbT5cclxuICAgICAgPG1hdC1kaXZpZGVyPjwvbWF0LWRpdmlkZXI+XHJcbiAgICAgIDxtYXQtbGlzdC1pdGVtIHJvbGU9XCJsaXN0aXRlbVwiIChjbGljayk9XCJzaWdub3V0KCRldmVudClcIj5cclxuICAgICAgICA8bWF0LWljb24gbWF0TGlzdEljb24+bG9nb3V0PC9tYXQtaWNvbj5cclxuICAgICAgICA8c3Bhbj57eydQb3dlcicgfCB0cmFuc2xhdGV9fTwvc3Bhbj5cclxuICAgICAgPC9tYXQtbGlzdC1pdGVtPlxyXG4gICAgPC9tYXQtbmF2LWxpc3Q+XHJcbiAgPC9tYXQtc2lkZW5hdj5cclxuICA8bWF0LXNpZGVuYXYgI3NlY29uZGFyeURyYXdlciBwb3NpdGlvbj1cImVuZFwiIGNsb3NlZCBtb2RlPVwib3ZlclwiIGF1dG9Gb2N1cz1cImZhbHNlXCIgY2xhc3M9XCJtYXQtZWxldmF0aW9uLXozXCI+XHJcbiAgICA8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJtb2RlXCI+XHJcbiAgICA8Yml6ZG9jLWNoYXQgWyhjb250YWN0KV09XCJjb250YWN0XCIgKm5nU3dpdGNoQ2FzZT1cIidjaGF0J1wiPjwvYml6ZG9jLWNoYXQ+XHJcbiAgICA8Yml6ZG9jLW5vdGlmaWNhdGlvbnMtdGFibGUgKm5nU3dpdGNoQ2FzZT1cIidub3RpZmljYXRpb25zJ1wiPjwvYml6ZG9jLW5vdGlmaWNhdGlvbnMtdGFibGU+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICA8L21hdC1zaWRlbmF2PlxyXG4gIDxtYXQtc2lkZW5hdi1jb250ZW50IGRhdGEtaGVscD1cIm1haW5cIj5cclxuICAgIDxyb3V0ZXItb3V0bGV0Pjwvcm91dGVyLW91dGxldD5cclxuICA8L21hdC1zaWRlbmF2LWNvbnRlbnQ+XHJcbjwvbWF0LXNpZGVuYXYtY29udGFpbmVyPlxyXG48YnV0dG9uIG1hdC1mYWIgW2F0dHIuYXJpYS1sYWJlbF09XCInQ29tcG9zZSd8IHRyYW5zbGF0ZVwiIFtAZmFiRnVsbF09XCJjb21wb3NlU3RhdGVcIiAqbmdJZj1cImNvbXBvc2VFbmFibGVkXCIgY29sb3I9XCJhY2NlbnRcIiAoY2xpY2spPVwiY29tcG9zZSgpXCIgZGF0YS1oZWxwPVwiY29tcG9zZVwiPjxtYXQtaWNvbj5hZGQ8L21hdC1pY29uPjwvYnV0dG9uPlxyXG4iXX0=
|