@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
@@ -41,18 +41,28 @@ export class CubeAnomalyNotification {
|
|
41
41
|
}
|
42
42
|
}
|
43
43
|
}
|
44
|
-
CubeAnomalyNotification.ɵfac =
|
45
|
-
CubeAnomalyNotification.ɵcmp = i0.ɵɵ
|
46
|
-
i0.ɵɵ
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
44
|
+
CubeAnomalyNotification.ɵfac = function CubeAnomalyNotification_Factory(t) { return new (t || CubeAnomalyNotification)(i0.ɵɵdirectiveInject(NOTIFICATION_DATA), i0.ɵɵdirectiveInject(i1.DatasourceService), i0.ɵɵdirectiveInject(i2.SessionService), i0.ɵɵdirectiveInject(i3.RouterImpl), i0.ɵɵdirectiveInject(i4.TranslateService)); };
|
45
|
+
CubeAnomalyNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CubeAnomalyNotification, selectors: [["ng-component"]], hostBindings: function CubeAnomalyNotification_HostBindings(rf, ctx) { if (rf & 1) {
|
46
|
+
i0.ɵɵlistener("click", function CubeAnomalyNotification_click_HostBindingHandler($event) { return ctx.open($event); });
|
47
|
+
} }, decls: 5, vars: 14, consts: [[3, "innerHTML"]], template: function CubeAnomalyNotification_Template(rf, ctx) { if (rf & 1) {
|
48
|
+
i0.ɵɵelement(0, "span", 0);
|
49
|
+
i0.ɵɵpipe(1, "sanitizeHtml");
|
50
|
+
i0.ɵɵpipe(2, "translate");
|
51
|
+
i0.ɵɵpipe(3, "lowercase");
|
52
|
+
i0.ɵɵpipe(4, "currency");
|
53
|
+
} if (rf & 2) {
|
54
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind4(2, 3, "CubeAnomalyNotify", i0.ɵɵpipeBind1(3, 8, ctx.cube.title), i0.ɵɵpipeBind3(4, 10, ctx.notification.value, ctx.cube.currencyCode, "symbol"), ctx.axes)), i0.ɵɵsanitizeHtml);
|
55
|
+
} }, dependencies: [i5.LowerCasePipe, i5.CurrencyPipe, i6.TranslatePipe, i7.SanitizeHtmlPipe], encapsulation: 2 });
|
56
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CubeAnomalyNotification, [{
|
57
|
+
type: Component,
|
58
|
+
args: [{
|
59
|
+
template: `<span [innerHTML]=" 'CubeAnomalyNotify' | translate : (cube.title | lowercase) : (notification.value | currency : cube.currencyCode : 'symbol') : axes | sanitizeHtml"></span>`
|
60
|
+
}]
|
61
|
+
}], function () { return [{ type: undefined, decorators: [{
|
62
|
+
type: Inject,
|
63
|
+
args: [NOTIFICATION_DATA]
|
64
|
+
}] }, { type: i1.DatasourceService }, { type: i2.SessionService }, { type: i3.RouterImpl }, { type: i4.TranslateService }]; }, { open: [{
|
65
|
+
type: HostListener,
|
66
|
+
args: ['click', ['$event']]
|
67
|
+
}] }); })();
|
68
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3ViZS1hbm9tYWx5Lm5vdGlmaWNhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvbm90aWZpY2F0aW9ucy90eXBlcy9jdWJlLWFub21hbHkubm90aWZpY2F0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFVLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUd4RCxPQUFPLEVBQWMsUUFBUSxFQUFFLE1BQU0sTUFBTSxDQUFDOzs7Ozs7Ozs7QUFRNUMsTUFBTSxPQUNFLHVCQUF1QjtJQTJCN0IsWUFDb0MsWUFBeUIsRUFDbkQsR0FBc0IsRUFBVSxRQUF3QixFQUFVLE9BQW1CLEVBQVUsVUFBNEI7UUFEakcsaUJBQVksR0FBWixZQUFZLENBQWE7UUFDbkQsUUFBRyxHQUFILEdBQUcsQ0FBbUI7UUFBVSxhQUFRLEdBQVIsUUFBUSxDQUFnQjtRQUFVLFlBQU8sR0FBUCxPQUFPLENBQVk7UUFBVSxlQUFVLEdBQVYsVUFBVSxDQUFrQjtRQTNCckksU0FBSSxHQUFHLEVBQUUsQ0FBQztJQTJCK0gsQ0FBQztJQTFCMUksUUFBUTtRQUNOLElBQUksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLEtBQUssSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNyRixNQUFNLFdBQVcsR0FBeUIsRUFBRSxDQUFDO1FBQzdDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsRUFBRTtZQUM5QixJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRTtnQkFDcEUsV0FBVyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQzthQUN2RTtRQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0gsUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUNsQyxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDdkYsQ0FBQztJQUVELElBQUksQ0FBQyxDQUFhO1FBQ2hCLE1BQU0sRUFBRSxHQUFJLENBQUMsQ0FBQyxVQUEwQixDQUFDLFlBQVksQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUNuRSxJQUFJLEVBQUUsRUFBRTtZQUNOLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsV0FBVyxFQUFFLFFBQVEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFDLENBQUM7U0FDL0Q7YUFDSTtZQUNILE1BQU0sTUFBTSxHQUFHLEVBQUUsQ0FBQztZQUNsQixJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSTtnQkFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FDbEUsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDN0MsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLEVBQUUsR0FBRyxFQUFFLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxDQUFDLENBQUM7U0FDaEg7SUFDSCxDQUFDOzs4RkExQkssdUJBQXVCLHVCQTRCbkIsaUJBQWlCOzBFQTVCckIsdUJBQXVCOzBHQUF2QixnQkFBWTs7UUFIUCwwQkFBOEs7Ozs7OztRQUF4Syw4T0FBZ0s7O3VGQUczSyx1QkFBdUI7Y0FKOUIsU0FBUztlQUFDO2dCQUNULFFBQVEsRUFBRSxnTEFBZ0w7YUFDM0w7O3NCQThCSSxNQUFNO3VCQUFDLGlCQUFpQjs2SUFiM0IsSUFBSTtrQkFESCxZQUFZO21CQUFDLE9BQU8sRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5qZWN0LCBPbkluaXQsIEhvc3RMaXN0ZW5lciB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IE5PVElGSUNBVElPTl9EQVRBIH0gZnJvbSBcIi4vbm90aWZpY2F0aW9uLWJhc2VcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgQ3ViZSB9IGZyb20gXCIuLi8uLi9jb3JlL21vZGVsc1wiO1xyXG5pbXBvcnQgeyBPYnNlcnZhYmxlLCBmb3JrSm9pbiB9IGZyb20gXCJyeGpzXCI7XHJcbmltcG9ydCB7IERhdGFzb3VyY2VTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL2NvcmUvZGF0YXNvdXJjZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS90cmFuc2xhdGUuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBSb3V0ZXJJbXBsIH0gZnJvbSBcIi4uLy4uL2NvcmUvcm91dGVyXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZTogYDxzcGFuIFtpbm5lckhUTUxdPVwiICdDdWJlQW5vbWFseU5vdGlmeScgfCB0cmFuc2xhdGUgOiAoY3ViZS50aXRsZSB8IGxvd2VyY2FzZSkgOiAobm90aWZpY2F0aW9uLnZhbHVlIHwgY3VycmVuY3kgOiBjdWJlLmN1cnJlbmN5Q29kZSA6ICdzeW1ib2wnKSA6IGF4ZXMgfCBzYW5pdGl6ZUh0bWxcIj48L3NwYW4+YFxyXG59KVxyXG5leHBvcnRcclxuICBjbGFzcyBDdWJlQW5vbWFseU5vdGlmaWNhdGlvbiBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgY3ViZTogQ3ViZTtcclxuICBheGVzID0gJyc7XHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmN1YmUgPSB0aGlzLl9zZXNzaW9uLnByb2ZpbGUuY3ViZXMuZmluZChjID0+IGMubmFtZSA9PT0gdGhpcy5ub3RpZmljYXRpb24uY3ViZSk7XHJcbiAgICBjb25zdCBvYnNlcnZhYmxlczogT2JzZXJ2YWJsZTxzdHJpbmc+W10gPSBbXTtcclxuICAgIHRoaXMuY3ViZS5heGVzLmZvckVhY2goKGEsIGkpID0+IHtcclxuICAgICAgaWYgKCFhLmhpZGRlbiAmJiB0aGlzLm5vdGlmaWNhdGlvbi5heGVzICYmIHRoaXMubm90aWZpY2F0aW9uLmF4ZXNbaV0pIHtcclxuICAgICAgICBvYnNlcnZhYmxlcy5wdXNoKHRoaXMuX2RzLmdldChhLmRhdGFUeXBlLCB0aGlzLm5vdGlmaWNhdGlvbi5heGVzW2ldKSk7XHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG4gICAgZm9ya0pvaW4ob2JzZXJ2YWJsZXMpLnN1YnNjcmliZShhID0+XHJcbiAgICAgIHRoaXMuYXhlcyA9IHRoaXMuX3RyYW5zbGF0ZS5qb2luKGEubWFwKChlLCBpKSA9PiBlIHx8IHRoaXMubm90aWZpY2F0aW9uLmF4ZXNbaV0pKSk7XHJcbiAgfVxyXG4gIEBIb3N0TGlzdGVuZXIoJ2NsaWNrJywgWyckZXZlbnQnXSlcclxuICBvcGVuKGU6IE1vdXNlRXZlbnQpIHtcclxuICAgIGNvbnN0IGlkID0gKGUuc3JjRWxlbWVudCBhcyBIVE1MRWxlbWVudCkuZ2V0QXR0cmlidXRlKCdkYXRhLWluZm8nKTtcclxuICAgIGlmIChpZCkge1xyXG4gICAgICB0aGlzLl9yb3V0ZXIubmF2aWdhdGUoWydtYWlsYm94L2knLCBwYXJzZUludChpZCkuZW5jb2RlSWQoKV0pO1xyXG4gICAgfVxyXG4gICAgZWxzZSB7XHJcbiAgICAgIGNvbnN0IHBhcmFtcyA9IHt9O1xyXG4gICAgICBpZiAodGhpcy5ub3RpZmljYXRpb24uYXhlcykgdGhpcy5ub3RpZmljYXRpb24uYXhlcy5mb3JFYWNoKChhLCBpKSA9PlxyXG4gICAgICAgIGEgJiYgKHBhcmFtc1t0aGlzLmN1YmUuYXhlc1tpXS5uYW1lXSA9IGEpKTtcclxuICAgICAgdGhpcy5fcm91dGVyLm5hdmlnYXRlKFsnY3ViZScsIHRoaXMubm90aWZpY2F0aW9uLmN1YmUsICd2JywgdGhpcy5jdWJlLnZpZXdzWzBdLm5hbWVdLCB7IHF1ZXJ5UGFyYW1zOiBwYXJhbXMgfSk7XHJcbiAgICB9XHJcbiAgfVxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgQEluamVjdChOT1RJRklDQVRJT05fREFUQSkgcHVibGljIG5vdGlmaWNhdGlvbjogQ3ViZUFub21hbHksXHJcbiAgICBwcml2YXRlIF9kczogRGF0YXNvdXJjZVNlcnZpY2UsIHByaXZhdGUgX3Nlc3Npb246IFNlc3Npb25TZXJ2aWNlLCBwcml2YXRlIF9yb3V0ZXI6IFJvdXRlckltcGwsIHByaXZhdGUgX3RyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSkgeyB9XHJcbn1cclxuaW50ZXJmYWNlIEN1YmVBbm9tYWx5IGV4dGVuZHMgTm90aWZpY2F0aW9uIHtcclxuICBjdWJlOiBzdHJpbmc7XHJcbiAgYXhlczogc3RyaW5nW107XHJcbiAgdmFsdWU6IG51bWJlcjtcclxuICBudW1iZXJzOiBzdHJpbmdbXTtcclxuICBkb2N1bWVudElkczogbnVtYmVyW107XHJcbn1cclxuIl19
|
@@ -9,6 +9,14 @@ import * as i5 from "../../chat/chat-info";
|
|
9
9
|
import * as i6 from "@angular/common";
|
10
10
|
import * as i7 from "../../core/pipes/translate.pipe";
|
11
11
|
import * as i8 from "../../core/pipes/sanitize-html.pipe";
|
12
|
+
function EscalatedNotification_span_0_Template(rf, ctx) { if (rf & 1) {
|
13
|
+
i0.ɵɵelement(0, "span", 1);
|
14
|
+
i0.ɵɵpipe(1, "sanitizeHtml");
|
15
|
+
i0.ɵɵpipe(2, "translate");
|
16
|
+
} if (rf & 2) {
|
17
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
18
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind3(2, 3, "EscalatedNotify", ctx_r0.notification.number, ctx_r0.name)), i0.ɵɵsanitizeHtml);
|
19
|
+
} }
|
12
20
|
export class EscalatedNotification extends NotificationBase {
|
13
21
|
constructor(router, notification, _accounts, translate, session, chat) {
|
14
22
|
super(notification, router, session, translate, chat);
|
@@ -19,15 +27,19 @@ export class EscalatedNotification extends NotificationBase {
|
|
19
27
|
this._accounts.get(this.notification.substituteId).subscribe(u => this.name = this._formatUserElement(u));
|
20
28
|
}
|
21
29
|
}
|
22
|
-
EscalatedNotification.ɵfac =
|
23
|
-
EscalatedNotification.ɵcmp = i0.ɵɵ
|
24
|
-
i0.ɵɵ
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
EscalatedNotification.ɵfac = function EscalatedNotification_Factory(t) { return new (t || EscalatedNotification)(i0.ɵɵdirectiveInject(i1.RouterImpl), i0.ɵɵdirectiveInject(NOTIFICATION_DATA), i0.ɵɵdirectiveInject(i2.AccountService), i0.ɵɵdirectiveInject(i3.TranslateService), i0.ɵɵdirectiveInject(i4.SessionService), i0.ɵɵdirectiveInject(i5.ChatInfo)); };
|
31
|
+
EscalatedNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EscalatedNotification, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[3, "innerHTML", 4, "ngIf"], [3, "innerHTML"]], template: function EscalatedNotification_Template(rf, ctx) { if (rf & 1) {
|
32
|
+
i0.ɵɵtemplate(0, EscalatedNotification_span_0_Template, 3, 7, "span", 0);
|
33
|
+
} if (rf & 2) {
|
34
|
+
i0.ɵɵproperty("ngIf", ctx.name);
|
35
|
+
} }, dependencies: [i6.NgIf, i7.TranslatePipe, i8.SanitizeHtmlPipe], encapsulation: 2 });
|
36
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EscalatedNotification, [{
|
37
|
+
type: Component,
|
38
|
+
args: [{
|
39
|
+
template: `<span *ngIf='name' [innerHTML]="'EscalatedNotify' | translate : notification.number : name | sanitizeHtml"></span>`
|
40
|
+
}]
|
41
|
+
}], function () { return [{ type: i1.RouterImpl }, { type: undefined, decorators: [{
|
42
|
+
type: Inject,
|
43
|
+
args: [NOTIFICATION_DATA]
|
44
|
+
}] }, { type: i2.AccountService }, { type: i3.TranslateService }, { type: i4.SessionService }, { type: i5.ChatInfo }]; }, null); })();
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNjYWxhdGVkLm5vdGlmaWNhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvbm90aWZpY2F0aW9ucy90eXBlcy9lc2NhbGF0ZWQubm90aWZpY2F0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRzFELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7Ozs7Ozs7OztJQU83RCwwQkFBa0g7Ozs7O0lBQS9GLHFKQUF1Rjs7QUFFdkgsTUFBTSxPQUNFLHFCQUFzQixTQUFRLGdCQUFnQjtJQU9wRCxZQUNFLE1BQWtCLEVBQ3lCLFlBQXVCLEVBQzFELFNBQXlCLEVBQ2pDLFNBQTJCLEVBQzNCLE9BQXVCLEVBQ3ZCLElBQWM7UUFDZCxLQUFLLENBQUMsWUFBWSxFQUFFLE1BQU0sRUFBRSxPQUFPLEVBQUUsU0FBUyxFQUFFLElBQUksQ0FBQyxDQUFDO1FBTFgsaUJBQVksR0FBWixZQUFZLENBQVc7UUFDMUQsY0FBUyxHQUFULFNBQVMsQ0FBZ0I7SUFLbkMsQ0FBQztJQWJELFFBQVE7UUFDTixJQUFJLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLFlBQVksQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUMvRCxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLENBQUMsQ0FDdkMsQ0FBQztJQUNKLENBQUM7OzBGQU5LLHFCQUFxQiw0REFTakIsaUJBQWlCO3dFQVRyQixxQkFBcUI7UUFIaEIsd0VBQWtIOztRQUEzRywrQkFBVTs7dUZBR3RCLHFCQUFxQjtjQUo1QixTQUFTO2VBQUM7Z0JBQ1QsUUFBUSxFQUFFLG9IQUFvSDthQUMvSDs7c0JBV0ksTUFBTTt1QkFBQyxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCwgSW5qZWN0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgQWNjb3VudFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9hY2NvdW50LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gXCIuLi8uLi9jb3JlL3RyYW5zbGF0ZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IE5PVElGSUNBVElPTl9EQVRBLCBOb3RpZmljYXRpb25CYXNlIH0gZnJvbSBcIi4vbm90aWZpY2F0aW9uLWJhc2VcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgTm90aWZpY2F0aW9uIH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IENoYXRJbmZvIH0gZnJvbSBcIi4uLy4uL2NoYXQvY2hhdC1pbmZvXCI7XHJcbmltcG9ydCB7IFJvdXRlckltcGwgfSBmcm9tIFwiLi4vLi4vY29yZS9yb3V0ZXJcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHRlbXBsYXRlOiBgPHNwYW4gKm5nSWY9J25hbWUnIFtpbm5lckhUTUxdPVwiJ0VzY2FsYXRlZE5vdGlmeScgfCB0cmFuc2xhdGUgOiBub3RpZmljYXRpb24ubnVtYmVyIDogbmFtZSB8IHNhbml0aXplSHRtbFwiPjwvc3Bhbj5gXHJcbn0pXHJcbmV4cG9ydFxyXG4gIGNsYXNzIEVzY2FsYXRlZE5vdGlmaWNhdGlvbiBleHRlbmRzIE5vdGlmaWNhdGlvbkJhc2UgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIG5hbWU6IHN0cmluZztcclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuX2FjY291bnRzLmdldCh0aGlzLm5vdGlmaWNhdGlvbi5zdWJzdGl0dXRlSWQpLnN1YnNjcmliZSh1ID0+XHJcbiAgICAgIHRoaXMubmFtZSA9IHRoaXMuX2Zvcm1hdFVzZXJFbGVtZW50KHUpXHJcbiAgICApO1xyXG4gIH1cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHJvdXRlcjogUm91dGVySW1wbCxcclxuICAgIEBJbmplY3QoTk9USUZJQ0FUSU9OX0RBVEEpIHB1YmxpYyBvdmVycmlkZSBub3RpZmljYXRpb246IEVzY2FsYXRlZCxcclxuICAgIHByaXZhdGUgX2FjY291bnRzOiBBY2NvdW50U2VydmljZSxcclxuICAgIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSxcclxuICAgIHNlc3Npb246IFNlc3Npb25TZXJ2aWNlLFxyXG4gICAgY2hhdDogQ2hhdEluZm8pIHtcclxuICAgIHN1cGVyKG5vdGlmaWNhdGlvbiwgcm91dGVyLCBzZXNzaW9uLCB0cmFuc2xhdGUsIGNoYXQpO1xyXG4gIH1cclxufVxyXG5pbnRlcmZhY2UgRXNjYWxhdGVkIGV4dGVuZHMgTm90aWZpY2F0aW9uIHtcclxuICBzdWJzdGl0dXRlSWQ6IHN0cmluZztcclxuICByb2xlPzogc3RyaW5nO1xyXG4gIGR1cmF0aW9uOiBudW1iZXI7XHJcbiAgbnVtYmVyOiBzdHJpbmc7XHJcbn1cclxuIl19
|
@@ -9,6 +9,32 @@ import * as i5 from "../../chat/chat-info";
|
|
9
9
|
import * as i6 from "@angular/common";
|
10
10
|
import * as i7 from "../../core/popup/tooltip.directive";
|
11
11
|
import * as i8 from "../../core/pipes/sanitize-html.pipe";
|
12
|
+
function LikedNotification_ng_container_0_span_1_Template(rf, ctx) { if (rf & 1) {
|
13
|
+
i0.ɵɵelement(0, "span", 3);
|
14
|
+
i0.ɵɵpipe(1, "sanitizeHtml");
|
15
|
+
} if (rf & 2) {
|
16
|
+
const ctx_r1 = i0.ɵɵnextContext(2);
|
17
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, ctx_r1.message), i0.ɵɵsanitizeHtml);
|
18
|
+
} }
|
19
|
+
function LikedNotification_ng_container_0_span_2_Template(rf, ctx) { if (rf & 1) {
|
20
|
+
i0.ɵɵelement(0, "span", 4);
|
21
|
+
i0.ɵɵpipe(1, "sanitizeHtml");
|
22
|
+
} if (rf & 2) {
|
23
|
+
const ctx_r2 = i0.ɵɵnextContext(2);
|
24
|
+
i0.ɵɵproperty("bizdocTooltip", ctx_r2.names)("innerHTML", i0.ɵɵpipeBind1(1, 2, ctx_r2.message), i0.ɵɵsanitizeHtml);
|
25
|
+
} }
|
26
|
+
function LikedNotification_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
27
|
+
i0.ɵɵelementContainerStart(0);
|
28
|
+
i0.ɵɵtemplate(1, LikedNotification_ng_container_0_span_1_Template, 2, 3, "span", 1);
|
29
|
+
i0.ɵɵtemplate(2, LikedNotification_ng_container_0_span_2_Template, 2, 4, "span", 2);
|
30
|
+
i0.ɵɵelementContainerEnd();
|
31
|
+
} if (rf & 2) {
|
32
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
33
|
+
i0.ɵɵadvance(1);
|
34
|
+
i0.ɵɵproperty("ngIf", ctx_r0.notification.userIds.length < 3);
|
35
|
+
i0.ɵɵadvance(1);
|
36
|
+
i0.ɵɵproperty("ngIf", ctx_r0.notification.userIds.length >= 3);
|
37
|
+
} }
|
12
38
|
export class LikedNotification extends NotificationBase {
|
13
39
|
constructor(notification, _accounts, translate, router, session, chat) {
|
14
40
|
super(notification, router, session, translate, chat);
|
@@ -30,21 +56,22 @@ export class LikedNotification extends NotificationBase {
|
|
30
56
|
});
|
31
57
|
}
|
32
58
|
}
|
33
|
-
LikedNotification.ɵfac =
|
34
|
-
LikedNotification.ɵcmp = i0.ɵɵ
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
59
|
+
LikedNotification.ɵfac = function LikedNotification_Factory(t) { return new (t || LikedNotification)(i0.ɵɵdirectiveInject(NOTIFICATION_DATA), i0.ɵɵdirectiveInject(i1.AccountService), i0.ɵɵdirectiveInject(i2.TranslateService), i0.ɵɵdirectiveInject(i3.RouterImpl), i0.ɵɵdirectiveInject(i4.SessionService), i0.ɵɵdirectiveInject(i5.ChatInfo)); };
|
60
|
+
LikedNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LikedNotification, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[4, "ngIf"], [3, "innerHTML", 4, "ngIf"], [3, "bizdocTooltip", "innerHTML", 4, "ngIf"], [3, "innerHTML"], [3, "bizdocTooltip", "innerHTML"]], template: function LikedNotification_Template(rf, ctx) { if (rf & 1) {
|
61
|
+
i0.ɵɵtemplate(0, LikedNotification_ng_container_0_Template, 3, 2, "ng-container", 0);
|
62
|
+
} if (rf & 2) {
|
63
|
+
i0.ɵɵproperty("ngIf", ctx.message);
|
64
|
+
} }, dependencies: [i6.NgIf, i7.TooltipDirective, i8.SanitizeHtmlPipe], encapsulation: 2 });
|
65
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LikedNotification, [{
|
66
|
+
type: Component,
|
67
|
+
args: [{
|
68
|
+
template: `<ng-container *ngIf='message'>
|
42
69
|
<span *ngIf='notification.userIds.length < 3' [innerHTML]='message | sanitizeHtml'></span>
|
43
70
|
<span *ngIf='notification.userIds.length >= 3' [bizdocTooltip]='names' [innerHTML]='message | sanitizeHtml'></span>
|
44
71
|
</ng-container>`
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
//# sourceMappingURL=data:application/json;base64,
|
72
|
+
}]
|
73
|
+
}], function () { return [{ type: undefined, decorators: [{
|
74
|
+
type: Inject,
|
75
|
+
args: [NOTIFICATION_DATA]
|
76
|
+
}] }, { type: i1.AccountService }, { type: i2.TranslateService }, { type: i3.RouterImpl }, { type: i4.SessionService }, { type: i5.ChatInfo }]; }, null); })();
|
77
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlrZWQubm90aWZpY2F0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9ub3RpZmljYXRpb25zL3R5cGVzL2xpa2VkLm5vdGlmaWNhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUcxRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7Ozs7Ozs7Ozs7SUFReEUsMEJBQTBGOzs7O0lBQTVDLG1GQUFvQzs7O0lBQ2xGLDBCQUFtSDs7OztJQUFwRSw0Q0FBdUIsc0VBQUE7OztJQUYzRCw2QkFBOEI7SUFDekMsbUZBQTBGO0lBQzFGLG1GQUFtSDtJQUNySCwwQkFBZTs7O0lBRk4sZUFBcUM7SUFBckMsNkRBQXFDO0lBQ3JDLGVBQXNDO0lBQXRDLDhEQUFzQzs7QUFFL0MsTUFBTSxPQUNFLGlCQUFrQixTQUFRLGdCQUFnQjtJQXFCaEQsWUFBdUQsWUFBbUIsRUFDaEUsU0FBeUIsRUFDakMsU0FBMkIsRUFDM0IsTUFBa0IsRUFDbEIsT0FBdUIsRUFBRSxJQUFjO1FBQ3ZDLEtBQUssQ0FBQyxZQUFZLEVBQUUsTUFBTSxFQUFFLE9BQU8sRUFBRSxTQUFTLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFMRCxpQkFBWSxHQUFaLFlBQVksQ0FBTztRQUNoRSxjQUFTLEdBQVQsU0FBUyxDQUFnQjtJQUtuQyxDQUFDO0lBeEJELFFBQVE7UUFDTixJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDLE1BQU0sS0FBSyxDQUFDO1lBQ3hDLElBQUksQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQzdELElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLENBQUMsbUJBQW1CLEVBQUUsQ0FBQyxDQUFDLE1BQU0sRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsQ0FDbkwsQ0FBQzs7WUFFRixJQUFJLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLE9BQU8sQ0FBQyxDQUFDLFNBQVMsQ0FBQyxFQUFFLENBQUMsRUFBRTtnQkFDOUQsSUFBSSxFQUFFLENBQUMsTUFBTSxHQUFHLENBQUM7b0JBQ2YsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsb0JBQW9CLENBQUMsQ0FBQyxDQUFDLHFCQUFxQixFQUNsSyxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxDQUFDO3FCQUN4RjtvQkFDSCxNQUFNLEtBQUssR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQztvQkFDcEMsSUFBSSxDQUFDLEtBQUssR0FBRyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztvQkFDN0MsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLHFCQUFxQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsd0JBQXdCLENBQUMsQ0FBQyxDQUFDLHlCQUF5QixFQUM5SyxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEVBQUUsRUFBRSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsQ0FBQztpQkFDN0c7WUFDSCxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7O2tGQXBCSyxpQkFBaUIsdUJBcUJILGlCQUFpQjtvRUFyQi9CLGlCQUFpQjtRQUxaLG9GQUdFOztRQUhhLGtDQUFhOzt1RkFLakMsaUJBQWlCO2NBTnhCLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUU7OztnQkFHSTthQUFFOztzQkF1QkgsTUFBTTt1QkFBQyxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCwgSW5qZWN0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgQWNjb3VudFNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9hY2NvdW50LnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gXCIuLi8uLi9jb3JlL3RyYW5zbGF0ZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IE5PVElGSUNBVElPTl9EQVRBLCBOb3RpZmljYXRpb25CYXNlIH0gZnJvbSBcIi4vbm90aWZpY2F0aW9uLWJhc2VcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgTm90aWZpY2F0aW9uIH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IENoYXRJbmZvIH0gZnJvbSBcIi4uLy4uL2NoYXQvY2hhdC1pbmZvXCI7XHJcbmltcG9ydCB7IFJvdXRlckltcGwgfSBmcm9tIFwiLi4vLi4vY29yZS9yb3V0ZXJcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHRlbXBsYXRlOiBgPG5nLWNvbnRhaW5lciAqbmdJZj0nbWVzc2FnZSc+XHJcbiAgPHNwYW4gKm5nSWY9J25vdGlmaWNhdGlvbi51c2VySWRzLmxlbmd0aCA8IDMnIFtpbm5lckhUTUxdPSdtZXNzYWdlIHwgc2FuaXRpemVIdG1sJz48L3NwYW4+XHJcbiAgPHNwYW4gKm5nSWY9J25vdGlmaWNhdGlvbi51c2VySWRzLmxlbmd0aCA+PSAzJyBbYml6ZG9jVG9vbHRpcF09J25hbWVzJyBbaW5uZXJIVE1MXT0nbWVzc2FnZSB8IHNhbml0aXplSHRtbCc+PC9zcGFuPlxyXG48L25nLWNvbnRhaW5lcj5gIH0pXHJcbmV4cG9ydFxyXG4gIGNsYXNzIExpa2VkTm90aWZpY2F0aW9uIGV4dGVuZHMgTm90aWZpY2F0aW9uQmFzZSBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgbmFtZXM/OiBzdHJpbmc7XHJcbiAgbWVzc2FnZTogc3RyaW5nO1xyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMubm90aWZpY2F0aW9uLnVzZXJJZHMubGVuZ3RoID09PSAxKVxyXG4gICAgICB0aGlzLl9hY2NvdW50cy5nZXQodGhpcy5ub3RpZmljYXRpb24udXNlcklkc1swXSkuc3Vic2NyaWJlKHUgPT4gXHJcbiAgICAgICAgdGhpcy5tZXNzYWdlID0gdGhpcy5fdHJhbnNsYXRlLnBlcnNvbmFsaXplKHRoaXMubm90aWZpY2F0aW9uLnZvdGVkID09PSAxID8gJ0xpa2VkT25lTm90aWZ5JyA6ICdEaXNsaWtlZE9uZU5vdGlmeScsIHUuZ2VuZGVyLCB0aGlzLl9mb3JtYXRVc2VyRWxlbWVudCh1KSwgdGhpcy5ub3RpZmljYXRpb24ubnVtYmVyKVxyXG4gICAgICApO1xyXG4gICAgZWxzZVxyXG4gICAgICB0aGlzLl9hY2NvdW50cy5nZXRBbGwodGhpcy5ub3RpZmljYXRpb24udXNlcklkcykuc3Vic2NyaWJlKHVzID0+IHtcclxuICAgICAgICBpZiAodXMubGVuZ3RoIDwgMylcclxuICAgICAgICAgIHRoaXMubWVzc2FnZSA9IHRoaXMuX3RyYW5zbGF0ZS5nZXQodGhpcy5ub3RpZmljYXRpb24udm90ZWQgPT09IDEgPyAnTGlrZWRNYW55Tm90aWZ5JyA6IHRoaXMubm90aWZpY2F0aW9uLnZvdGVkID09PSAtMSA/ICdEaXNsaWtlZE1hbnlOb3RpZnknIDogJ01peGVkTGlrZU1hbnlOb3RpZnknLFxyXG4gICAgICAgICAgICB0aGlzLl90cmFuc2xhdGUuam9pbih1cy5tYXAodSA9PiB0aGlzLl9mb3JtYXRVc2VyRWxlbWVudCh1KSkpLCB0aGlzLm5vdGlmaWNhdGlvbi5udW1iZXIpO1xyXG4gICAgICAgIGVsc2Uge1xyXG4gICAgICAgICAgY29uc3QgY29tbWEgPSB0aGlzLl90cmFuc2xhdGUuY29tbWE7XHJcbiAgICAgICAgICB0aGlzLm5hbWVzID0gdXMubWFwKHUgPT4gdS5uYW1lKS5qb2luKGNvbW1hKTtcclxuICAgICAgICAgIHRoaXMubWVzc2FnZSA9IHRoaXMuX3RyYW5zbGF0ZS5nZXQodGhpcy5ub3RpZmljYXRpb24udm90ZWQgPT09IDEgPyAnTGlrZWRNYW55TW9yZU5vdGlmeScgOiB0aGlzLm5vdGlmaWNhdGlvbi52b3RlZCA9PT0gLTEgPyAnRGlzbGlrZWRNYW55TW9yZU5vdGlmeScgOiAnTWl4ZWRMaWtlTWFueU1vcmVOb3RpZnknLFxyXG4gICAgICAgICAgICB1cy5zbGljZSgwLCAyKS5tYXAodSA9PiB0aGlzLl9mb3JtYXRVc2VyRWxlbWVudCh1KSkuam9pbihjb21tYSksIHVzLmxlbmd0aCAtIDIsIHRoaXMubm90aWZpY2F0aW9uLm51bWJlcik7XHJcbiAgICAgICAgfVxyXG4gICAgICB9KTtcclxuICB9XHJcbiAgY29uc3RydWN0b3IoQEluamVjdChOT1RJRklDQVRJT05fREFUQSkgcHVibGljIG92ZXJyaWRlIG5vdGlmaWNhdGlvbjogTGlrZWQsXHJcbiAgICBwcml2YXRlIF9hY2NvdW50czogQWNjb3VudFNlcnZpY2UsXHJcbiAgICB0cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2UsXHJcbiAgICByb3V0ZXI6IFJvdXRlckltcGwsXHJcbiAgICBzZXNzaW9uOiBTZXNzaW9uU2VydmljZSwgY2hhdDogQ2hhdEluZm8pIHtcclxuICAgIHN1cGVyKG5vdGlmaWNhdGlvbiwgcm91dGVyLCBzZXNzaW9uLCB0cmFuc2xhdGUsIGNoYXQpO1xyXG4gIH1cclxufVxyXG5pbnRlcmZhY2UgTGlrZWQgZXh0ZW5kcyBOb3RpZmljYXRpb24ge1xyXG4gIHVzZXJJZHM6IHN0cmluZ1tdO1xyXG4gIHZvdGVkPzogbnVtYmVyO1xyXG4gIG51bWJlcjogc3RyaW5nO1xyXG59XHJcbiJdfQ==
|
@@ -16,16 +16,20 @@ export class LongRunningTaskNotification {
|
|
16
16
|
this._router.navigate(['reports', this.notification.report]);
|
17
17
|
}
|
18
18
|
}
|
19
|
-
LongRunningTaskNotification.ɵfac =
|
20
|
-
LongRunningTaskNotification.ɵcmp = i0.ɵɵ
|
21
|
-
i0.ɵɵ
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
19
|
+
LongRunningTaskNotification.ɵfac = function LongRunningTaskNotification_Factory(t) { return new (t || LongRunningTaskNotification)(i0.ɵɵdirectiveInject(NOTIFICATION_DATA), i0.ɵɵdirectiveInject(i1.SessionService), i0.ɵɵdirectiveInject(i2.RouterImpl)); };
|
20
|
+
LongRunningTaskNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: LongRunningTaskNotification, selectors: [["ng-component"]], hostBindings: function LongRunningTaskNotification_HostBindings(rf, ctx) { if (rf & 1) {
|
21
|
+
i0.ɵɵlistener("click", function LongRunningTaskNotification_click_HostBindingHandler($event) { return ctx.open($event); });
|
22
|
+
} }, decls: 1, vars: 0, template: function LongRunningTaskNotification_Template(rf, ctx) { if (rf & 1) {
|
23
|
+
i0.ɵɵelement(0, "span");
|
24
|
+
} }, encapsulation: 2 });
|
25
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LongRunningTaskNotification, [{
|
26
|
+
type: Component,
|
27
|
+
args: [{ template: `<span></span>` }]
|
28
|
+
}], function () { return [{ type: undefined, decorators: [{
|
29
|
+
type: Inject,
|
30
|
+
args: [NOTIFICATION_DATA]
|
31
|
+
}] }, { type: i1.SessionService }, { type: i2.RouterImpl }]; }, { open: [{
|
32
|
+
type: HostListener,
|
33
|
+
args: ['click', ['$event']]
|
34
|
+
}] }); })();
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9uZy1ydW5uaW5nLXRhc2subm90aWZpY2F0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9ub3RpZmljYXRpb25zL3R5cGVzL2xvbmctcnVubmluZy10YXNrLm5vdGlmaWNhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBVSxZQUFZLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDeEUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7QUFNeEQsTUFBTSxPQUNFLDJCQUEyQjtJQVNqQyxZQUE4QyxZQUF3QixFQUFVLFFBQXdCLEVBQVUsT0FBbUI7UUFBdkYsaUJBQVksR0FBWixZQUFZLENBQVk7UUFBVSxhQUFRLEdBQVIsUUFBUSxDQUFnQjtRQUFVLFlBQU8sR0FBUCxPQUFPLENBQVk7SUFBSSxDQUFDO0lBUDFJLFFBQVE7UUFDTixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxLQUFLLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDN0YsQ0FBQztJQUVELElBQUksQ0FBQyxDQUFhO1FBQ2hCLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQztJQUMvRCxDQUFDOztzR0FSSywyQkFBMkIsdUJBU2IsaUJBQWlCOzhFQVQvQiwyQkFBMkI7OEdBQTNCLGdCQUFZOztRQUZJLHVCQUFhOzt1RkFFN0IsMkJBQTJCO2NBRmxDLFNBQVM7ZUFBQyxFQUFFLFFBQVEsRUFBRSxlQUFlLEVBQUU7O3NCQVd6QixNQUFNO3VCQUFDLGlCQUFpQjs4RUFIckMsSUFBSTtrQkFESCxZQUFZO21CQUFDLE9BQU8sRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5qZWN0LCBPbkluaXQsIEhvc3RMaXN0ZW5lciB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IE5PVElGSUNBVElPTl9EQVRBIH0gZnJvbSBcIi4vbm90aWZpY2F0aW9uLWJhc2VcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgUmVwb3J0IH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IFJvdXRlckltcGwgfSBmcm9tIFwiLi4vLi4vY29yZS9yb3V0ZXJcIjtcclxuXHJcbkBDb21wb25lbnQoeyB0ZW1wbGF0ZTogYDxzcGFuPjwvc3Bhbj5gIH0pXHJcbmV4cG9ydFxyXG4gIGNsYXNzIExvbmdSdW5uaW5nVGFza05vdGlmaWNhdGlvbiBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgcmVwb3J0OiBSZXBvcnQ7XHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLnJlcG9ydCA9IHRoaXMuX3Nlc3Npb24ucHJvZmlsZS5yZXBvcnRzLmZpbmQociA9PiByLm5hbWUgPT09IHRoaXMubm90aWZpY2F0aW9uLnJlcG9ydCk7XHJcbiAgfVxyXG4gIEBIb3N0TGlzdGVuZXIoJ2NsaWNrJywgWyckZXZlbnQnXSlcclxuICBvcGVuKGU6IE1vdXNlRXZlbnQpIHtcclxuICAgIHRoaXMuX3JvdXRlci5uYXZpZ2F0ZShbJ3JlcG9ydHMnLCB0aGlzLm5vdGlmaWNhdGlvbi5yZXBvcnRdKTtcclxuICB9XHJcbiAgY29uc3RydWN0b3IoQEluamVjdChOT1RJRklDQVRJT05fREFUQSkgcHVibGljIG5vdGlmaWNhdGlvbjogUmVwb3J0VGFzaywgcHJpdmF0ZSBfc2Vzc2lvbjogU2Vzc2lvblNlcnZpY2UsIHByaXZhdGUgX3JvdXRlcjogUm91dGVySW1wbCkgeyB9XHJcbn1cclxuaW50ZXJmYWNlIFJlcG9ydFRhc2sgZXh0ZW5kcyBOb3RpZmljYXRpb24ge1xyXG4gIHJlcG9ydDogc3RyaW5nO1xyXG4gIHZhbHVlOiBudW1iZXI7XHJcbn1cclxuIl19
|
@@ -29,12 +29,14 @@ export class NotificationBase {
|
|
29
29
|
});
|
30
30
|
}
|
31
31
|
}
|
32
|
-
NotificationBase.ɵfac =
|
33
|
-
NotificationBase.ɵdir = i0.ɵɵ
|
34
|
-
i0.ɵɵ
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
32
|
+
NotificationBase.ɵfac = function NotificationBase_Factory(t) { i0.ɵɵinvalidFactory(); };
|
33
|
+
NotificationBase.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: NotificationBase, hostBindings: function NotificationBase_HostBindings(rf, ctx) { if (rf & 1) {
|
34
|
+
i0.ɵɵlistener("click", function NotificationBase_click_HostBindingHandler($event) { return ctx.open($event); });
|
35
|
+
} } });
|
36
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NotificationBase, [{
|
37
|
+
type: Directive
|
38
|
+
}], function () { return [{ type: undefined }, { type: i1.RouterImpl }, { type: i2.SessionService }, { type: i3.TranslateService }, { type: i4.ChatInfo }]; }, { open: [{
|
39
|
+
type: HostListener,
|
40
|
+
args: ['click', ['$event']]
|
41
|
+
}] }); })();
|
42
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLWJhc2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL25vdGlmaWNhdGlvbnMvdHlwZXMvbm90aWZpY2F0aW9uLWJhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxZQUFZLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBS3hFLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQzs7Ozs7O0FBR3RELE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUFHLElBQUksY0FBYyxDQUFlLGNBQWMsQ0FBQyxDQUFDO0FBR2xGLE1BQU0sT0FBZ0IsZ0JBQWdCO0lBQ3BDLFlBQW1CLFlBQTBCLEVBQ25DLE9BQW1CLEVBQ2pCLFFBQXdCLEVBQ3hCLFVBQTRCLEVBQzlCLEtBQWU7UUFKTixpQkFBWSxHQUFaLFlBQVksQ0FBYztRQUNuQyxZQUFPLEdBQVAsT0FBTyxDQUFZO1FBQ2pCLGFBQVEsR0FBUixRQUFRLENBQWdCO1FBQ3hCLGVBQVUsR0FBVixVQUFVLENBQWtCO1FBQzlCLFVBQUssR0FBTCxLQUFLLENBQVU7SUFDekIsQ0FBQztJQUNTLGtCQUFrQixDQUFDLE1BQWdCO1FBQzNDLElBQUksTUFBTSxDQUFDLEVBQUUsS0FBSyxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU07WUFDcEMsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNwQyxPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ25DLENBQUM7SUFFRCxJQUFJLENBQUMsQ0FBYTtRQUNoQixNQUFNLE1BQU0sR0FBSSxDQUFDLENBQUMsVUFBMEIsQ0FBQyxZQUFZLENBQUMsV0FBVyxDQUFDLENBQUM7UUFDdkUsSUFBSSxNQUFNO1lBQ1IsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUM7YUFDckIsSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLFdBQVc7WUFDbEMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxXQUFXLEVBQUUsSUFBSSxDQUFDLFlBQVksQ0FBQyxXQUFXLENBQUMsUUFBUSxFQUFFLENBQUMsRUFDM0U7Z0JBQ0UsTUFBTSxFQUFFLFVBQVUsQ0FBQyxHQUFHLEdBQUcsVUFBVSxDQUFDLFVBQVU7YUFDL0MsQ0FBQyxDQUFDO0lBQ1gsQ0FBQzs7O21FQXRCbUIsZ0JBQWdCO21HQUFoQixnQkFBWTs7dUZBQVosZ0JBQWdCO2NBRHJDLFNBQVM7cUtBY1IsSUFBSTtrQkFESCxZQUFZO21CQUFDLE9BQU8sRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGlvblRva2VuLCBIb3N0TGlzdGVuZXIsIERpcmVjdGl2ZSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IE5vdGlmaWNhdGlvbiwgVXNlckluZm8gfSBmcm9tIFwiLi4vLi4vY29yZS9tb2RlbHNcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gXCIuLi8uLi9jb3JlL3RyYW5zbGF0ZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IENoYXRJbmZvIH0gZnJvbSBcIi4uLy4uL2NoYXQvY2hhdC1pbmZvXCI7XHJcbmltcG9ydCB7IE9wZW5Qb2xpY3kgfSBmcm9tIFwiLi4vLi4vY29yZS9jb25maWd1cmF0aW9uXCI7XHJcbmltcG9ydCB7IFJvdXRlckltcGwgfSBmcm9tIFwiLi4vLi4vY29yZS9yb3V0ZXJcIjtcclxuXHJcbmV4cG9ydCBjb25zdCBOT1RJRklDQVRJT05fREFUQSA9IG5ldyBJbmplY3Rpb25Ub2tlbjxOb3RpZmljYXRpb24+KCdub3RpZmljYXRpb24nKTtcclxuXHJcbkBEaXJlY3RpdmUoKVxyXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgTm90aWZpY2F0aW9uQmFzZSB7XHJcbiAgY29uc3RydWN0b3IocHVibGljIG5vdGlmaWNhdGlvbjogTm90aWZpY2F0aW9uLFxyXG4gICAgcHJpdmF0ZSBfcm91dGVyOiBSb3V0ZXJJbXBsLFxyXG4gICAgcHJvdGVjdGVkIF9zZXNzaW9uOiBTZXNzaW9uU2VydmljZSxcclxuICAgIHByb3RlY3RlZCBfdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlLFxyXG4gICAgcHJpdmF0ZSBfY2hhdDogQ2hhdEluZm8pIHtcclxuICB9XHJcbiAgcHJvdGVjdGVkIF9mb3JtYXRVc2VyRWxlbWVudChwZXJzb246IFVzZXJJbmZvKSB7XHJcbiAgICBpZiAocGVyc29uLmlkID09PSB0aGlzLl9zZXNzaW9uLnVzZXJJZClcclxuICAgICAgcmV0dXJuIHRoaXMuX3RyYW5zbGF0ZS5nZXQoJ1lvdScpO1xyXG4gICAgcmV0dXJuIHRoaXMuX2NoYXQuZm9ybWF0KHBlcnNvbik7XHJcbiAgfVxyXG4gIEBIb3N0TGlzdGVuZXIoJ2NsaWNrJywgWyckZXZlbnQnXSlcclxuICBvcGVuKGU6IE1vdXNlRXZlbnQpIHtcclxuICAgIGNvbnN0IHVzZXJJZCA9IChlLnNyY0VsZW1lbnQgYXMgSFRNTEVsZW1lbnQpLmdldEF0dHJpYnV0ZSgnZGF0YS1pbmZvJyk7XHJcbiAgICBpZiAodXNlcklkKVxyXG4gICAgICB0aGlzLl9jaGF0Lm9wZW4odXNlcklkKTtcclxuICAgIGVsc2UgaWYgKHRoaXMubm90aWZpY2F0aW9uLnJlY2lwaWVudElkKSBcclxuICAgICAgICB0aGlzLl9yb3V0ZXIubmF2aWdhdGUoWydtYWlsYm94L2knLCB0aGlzLm5vdGlmaWNhdGlvbi5yZWNpcGllbnRJZC5lbmNvZGVJZCgpXSxcclxuICAgICAgICAgIHtcclxuICAgICAgICAgICAgcG9saWN5OiBPcGVuUG9saWN5LlRhYiB8IE9wZW5Qb2xpY3kuRXhwYW5kYWJsZVxyXG4gICAgICAgICAgfSk7XHJcbiAgfVxyXG5cclxufVxyXG5cclxuIl19
|
@@ -17,15 +17,21 @@ export class NudgeNotification extends NotificationBase {
|
|
17
17
|
this.expire = dayjs(this.notification.expire);
|
18
18
|
}
|
19
19
|
}
|
20
|
-
NudgeNotification.ɵfac =
|
21
|
-
NudgeNotification.ɵcmp = i0.ɵɵ
|
22
|
-
i0.ɵɵ
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
20
|
+
NudgeNotification.ɵfac = function NudgeNotification_Factory(t) { return new (t || NudgeNotification)(i0.ɵɵdirectiveInject(i1.RouterImpl), i0.ɵɵdirectiveInject(i2.TranslateService), i0.ɵɵdirectiveInject(i3.SessionService), i0.ɵɵdirectiveInject(i4.ChatInfo), i0.ɵɵdirectiveInject(NOTIFICATION_DATA)); };
|
21
|
+
NudgeNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NudgeNotification, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 7, consts: [[3, "innerHTML"]], template: function NudgeNotification_Template(rf, ctx) { if (rf & 1) {
|
22
|
+
i0.ɵɵelement(0, "span", 0);
|
23
|
+
i0.ɵɵpipe(1, "sanitizeHtml");
|
24
|
+
i0.ɵɵpipe(2, "translate");
|
25
|
+
} if (rf & 2) {
|
26
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind3(2, 3, "NudgeNotify", ctx.notification.number, ctx.expire.toNow())), i0.ɵɵsanitizeHtml);
|
27
|
+
} }, dependencies: [i5.TranslatePipe, i6.SanitizeHtmlPipe], encapsulation: 2 });
|
28
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NudgeNotification, [{
|
29
|
+
type: Component,
|
30
|
+
args: [{
|
31
|
+
template: `<span [innerHTML]='"NudgeNotify" | translate : notification.number : expire.toNow() | sanitizeHtml'></span>`
|
32
|
+
}]
|
33
|
+
}], function () { return [{ type: i1.RouterImpl }, { type: i2.TranslateService }, { type: i3.SessionService }, { type: i4.ChatInfo }, { type: undefined, decorators: [{
|
34
|
+
type: Inject,
|
35
|
+
args: [NOTIFICATION_DATA]
|
36
|
+
}] }]; }, null); })();
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVkZ2Uubm90aWZpY2F0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9ub3RpZmljYXRpb25zL3R5cGVzL251ZGdlLm5vdGlmaWNhdGlvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEtBQUssTUFBTSxPQUFPLENBQUM7QUFNMUIsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGlCQUFpQixFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7Ozs7O0FBSzFFLE1BQU0sT0FDRSxpQkFBa0IsU0FBUSxnQkFBZ0I7SUFNaEQsWUFDRSxNQUFrQixFQUNsQixTQUEyQixFQUMzQixPQUF1QixFQUN2QixJQUFjLEVBQzZCLFlBQW1CO1FBQzlELEtBQUssQ0FBQyxZQUFZLEVBQUUsTUFBTSxFQUFFLE9BQU8sRUFBRSxTQUFTLEVBQUUsSUFBSSxDQUFDLENBQUE7UUFEVixpQkFBWSxHQUFaLFlBQVksQ0FBTztJQUVoRSxDQUFDO0lBVkQsUUFBUTtRQUNOLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDaEQsQ0FBQzs7a0ZBTEssaUJBQWlCLG1MQVdiLGlCQUFpQjtvRUFYckIsaUJBQWlCO1FBSFosMEJBQTJHOzs7O1FBQXJHLHFKQUE2Rjs7dUZBR3hHLGlCQUFpQjtjQUp4QixTQUFTO2VBQUM7Z0JBQ1QsUUFBUSxFQUFFLDZHQUE2RzthQUN4SDs7c0JBYUksTUFBTTt1QkFBQyxpQkFBaUIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCwgSW5qZWN0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IGRheWpzIGZyb20gJ2RheWpzJztcclxuaW1wb3J0IHsgQ2hhdEluZm8gfSBmcm9tIFwiLi4vLi4vY2hhdC9jaGF0LWluZm9cIjtcclxuaW1wb3J0IHsgTm90aWZpY2F0aW9uIH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IFJvdXRlckltcGwgfSBmcm9tIFwiLi4vLi4vY29yZS9yb3V0ZXJcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gXCIuLi8uLi9jb3JlL3RyYW5zbGF0ZS5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IE5vdGlmaWNhdGlvbkJhc2UsIE5PVElGSUNBVElPTl9EQVRBIH0gZnJvbSBcIi4vbm90aWZpY2F0aW9uLWJhc2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHRlbXBsYXRlOiBgPHNwYW4gW2lubmVySFRNTF09J1wiTnVkZ2VOb3RpZnlcIiB8IHRyYW5zbGF0ZSA6IG5vdGlmaWNhdGlvbi5udW1iZXIgOiBleHBpcmUudG9Ob3coKSB8IHNhbml0aXplSHRtbCc+PC9zcGFuPmBcclxufSlcclxuZXhwb3J0XHJcbiAgY2xhc3MgTnVkZ2VOb3RpZmljYXRpb24gZXh0ZW5kcyBOb3RpZmljYXRpb25CYXNlIGltcGxlbWVudHMgT25Jbml0IHtcclxuICBtZXNzYWdlOiBzdHJpbmc7XHJcbiAgZXhwaXJlOiBkYXlqcy5EYXlqcztcclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICAgIHRoaXMuZXhwaXJlID0gZGF5anModGhpcy5ub3RpZmljYXRpb24uZXhwaXJlKTtcclxuICB9XHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICByb3V0ZXI6IFJvdXRlckltcGwsXHJcbiAgICB0cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2UsXHJcbiAgICBzZXNzaW9uOiBTZXNzaW9uU2VydmljZSxcclxuICAgIGNoYXQ6IENoYXRJbmZvLFxyXG4gICAgQEluamVjdChOT1RJRklDQVRJT05fREFUQSkgcHVibGljIG92ZXJyaWRlIG5vdGlmaWNhdGlvbjogTnVkZ2UpIHtcclxuICAgIHN1cGVyKG5vdGlmaWNhdGlvbiwgcm91dGVyLCBzZXNzaW9uLCB0cmFuc2xhdGUsIGNoYXQpXHJcbiAgfVxyXG59XHJcbmludGVyZmFjZSBOdWRnZSBleHRlbmRzIE5vdGlmaWNhdGlvbiB7XHJcbiAgZXhwaXJlOiBEYXRlO1xyXG4gIG51bWJlcjogc3RyaW5nO1xyXG59XHJcbiJdfQ==
|
@@ -18,13 +18,21 @@ export class StateChangedNotification extends NotificationBase {
|
|
18
18
|
this.form = this._session.profile.forms.find(f => f.name === this.notification.form);
|
19
19
|
}
|
20
20
|
}
|
21
|
-
StateChangedNotification.ɵfac =
|
22
|
-
StateChangedNotification.ɵcmp = i0.ɵɵ
|
23
|
-
i0.ɵɵ
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
21
|
+
StateChangedNotification.ɵfac = function StateChangedNotification_Factory(t) { return new (t || StateChangedNotification)(i0.ɵɵdirectiveInject(NOTIFICATION_DATA), i0.ɵɵdirectiveInject(i1.SessionService), i0.ɵɵdirectiveInject(i2.RouterImpl), i0.ɵɵdirectiveInject(i3.TranslateService), i0.ɵɵdirectiveInject(i4.ChatInfo)); };
|
22
|
+
StateChangedNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StateChangedNotification, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 5, vars: 13, consts: [[3, "innerHTML"]], template: function StateChangedNotification_Template(rf, ctx) { if (rf & 1) {
|
23
|
+
i0.ɵɵelement(0, "span", 0);
|
24
|
+
i0.ɵɵpipe(1, "sanitizeHtml");
|
25
|
+
i0.ɵɵpipe(2, "translate");
|
26
|
+
i0.ɵɵpipe(3, "lowercase");
|
27
|
+
i0.ɵɵpipe(4, "state");
|
28
|
+
} if (rf & 2) {
|
29
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(1, 1, i0.ɵɵpipeBind4(2, 3, "StateChangedNotify", ctx.form.title, ctx.notification.number, i0.ɵɵpipeBind1(3, 8, i0.ɵɵpipeBind2(4, 10, ctx.notification.state, "past")))), i0.ɵɵsanitizeHtml);
|
30
|
+
} }, dependencies: [i5.LowerCasePipe, i6.TranslatePipe, i7.SanitizeHtmlPipe, i8.StatePipe], encapsulation: 2 });
|
31
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StateChangedNotification, [{
|
32
|
+
type: Component,
|
33
|
+
args: [{ template: `<span [innerHTML]="'StateChangedNotify' | translate : form.title : notification.number : (notification.state | state : 'past' | lowercase) | sanitizeHtml"></span>` }]
|
34
|
+
}], function () { return [{ type: undefined, decorators: [{
|
35
|
+
type: Inject,
|
36
|
+
args: [NOTIFICATION_DATA]
|
37
|
+
}] }, { type: i1.SessionService }, { type: i2.RouterImpl }, { type: i3.TranslateService }, { type: i4.ChatInfo }]; }, null); })();
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RhdGUtY2hhbmdlZC5ub3RpZmljYXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL25vdGlmaWNhdGlvbnMvdHlwZXMvc3RhdGUtY2hhbmdlZC5ub3RpZmljYXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHMUQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLGlCQUFpQixFQUFFLE1BQU0scUJBQXFCLENBQUM7Ozs7Ozs7Ozs7QUFNMUUsTUFBTSxPQUNFLHdCQUF5QixTQUFRLGdCQUFnQjtJQUt2RCxZQUF1RCxZQUEwQixFQUMvRSxPQUF1QixFQUN2QixNQUFrQixFQUNsQixTQUEyQixFQUFFLElBQWM7UUFDM0MsS0FBSyxDQUFDLFlBQVksRUFBRSxNQUFNLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxJQUFJLENBQUMsQ0FBQTtRQUpBLGlCQUFZLEdBQVosWUFBWSxDQUFjO0lBS2pGLENBQUM7SUFSRCxRQUFRO1FBQ04sSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksS0FBSyxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3ZGLENBQUM7O2dHQUpLLHdCQUF3Qix1QkFLVixpQkFBaUI7MkVBTC9CLHdCQUF3QjtRQUZSLDBCQUFrSzs7Ozs7O1FBQTVKLHFPQUFvSjs7dUZBRTFLLHdCQUF3QjtjQUYvQixTQUFTO2VBQUMsRUFBRSxRQUFRLEVBQUUsb0tBQW9LLEVBQUU7O3NCQU85SyxNQUFNO3VCQUFDLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0LCBJbmplY3QgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBSb3V0ZXJJbXBsIH0gZnJvbSBcIi4uLy4uL2NvcmUvcm91dGVyXCI7XHJcbmltcG9ydCB7IFNlc3Npb25TZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL2NvcmUvc2Vzc2lvbi5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7IE5vdGlmaWNhdGlvbkJhc2UsIE5PVElGSUNBVElPTl9EQVRBIH0gZnJvbSBcIi4vbm90aWZpY2F0aW9uLWJhc2VcIjtcclxuaW1wb3J0IHsgTm90aWZpY2F0aW9uLCBGb3JtIH0gZnJvbSBcIi4uLy4uL2NvcmUvbW9kZWxzXCI7XHJcbmltcG9ydCB7IFRyYW5zbGF0ZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS90cmFuc2xhdGUuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBDaGF0SW5mbyB9IGZyb20gXCIuLi8uLi9jaGF0L2NoYXQtaW5mb1wiO1xyXG5cclxuQENvbXBvbmVudCh7IHRlbXBsYXRlOiBgPHNwYW4gW2lubmVySFRNTF09XCInU3RhdGVDaGFuZ2VkTm90aWZ5JyB8IHRyYW5zbGF0ZSA6IGZvcm0udGl0bGUgOiBub3RpZmljYXRpb24ubnVtYmVyIDogKG5vdGlmaWNhdGlvbi5zdGF0ZSB8IHN0YXRlIDogJ3Bhc3QnIHwgbG93ZXJjYXNlKSB8IHNhbml0aXplSHRtbFwiPjwvc3Bhbj5gIH0pXHJcbmV4cG9ydFxyXG4gIGNsYXNzIFN0YXRlQ2hhbmdlZE5vdGlmaWNhdGlvbiBleHRlbmRzIE5vdGlmaWNhdGlvbkJhc2UgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIGZvcm06IEZvcm07XHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICB0aGlzLmZvcm0gPSB0aGlzLl9zZXNzaW9uLnByb2ZpbGUuZm9ybXMuZmluZChmID0+IGYubmFtZSA9PT0gdGhpcy5ub3RpZmljYXRpb24uZm9ybSk7XHJcbiAgfVxyXG4gIGNvbnN0cnVjdG9yKEBJbmplY3QoTk9USUZJQ0FUSU9OX0RBVEEpIHB1YmxpYyBvdmVycmlkZSBub3RpZmljYXRpb246IFN0YXRlQ2hhbmdlZCxcclxuICAgIHNlc3Npb246IFNlc3Npb25TZXJ2aWNlLFxyXG4gICAgcm91dGVyOiBSb3V0ZXJJbXBsLFxyXG4gICAgdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlLCBjaGF0OiBDaGF0SW5mbykge1xyXG4gICAgc3VwZXIobm90aWZpY2F0aW9uLCByb3V0ZXIsIHNlc3Npb24sIHRyYW5zbGF0ZSwgY2hhdClcclxuICB9XHJcbn1cclxuaW50ZXJmYWNlIFN0YXRlQ2hhbmdlZCBleHRlbmRzIE5vdGlmaWNhdGlvbiB7XHJcbiAgbnVtYmVyOiBzdHJpbmc7XHJcbiAgZm9ybTogc3RyaW5nO1xyXG4gIHN0YXRlOiBzdHJpbmc7XHJcbn1cclxuIl19
|
@@ -8,6 +8,16 @@ import * as i4 from "../../core/session.service";
|
|
8
8
|
import * as i5 from "../../chat/chat-info";
|
9
9
|
import * as i6 from "@angular/common";
|
10
10
|
import * as i7 from "../../core/pipes/sanitize-html.pipe";
|
11
|
+
function TaggedNotification_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
12
|
+
i0.ɵɵelementContainerStart(0);
|
13
|
+
i0.ɵɵelement(1, "span", 1);
|
14
|
+
i0.ɵɵpipe(2, "sanitizeHtml");
|
15
|
+
i0.ɵɵelementContainerEnd();
|
16
|
+
} if (rf & 2) {
|
17
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
18
|
+
i0.ɵɵadvance(1);
|
19
|
+
i0.ɵɵproperty("innerHTML", i0.ɵɵpipeBind1(2, 1, ctx_r0.message), i0.ɵɵsanitizeHtml);
|
20
|
+
} }
|
11
21
|
/** */
|
12
22
|
export class TaggedNotification extends NotificationBase {
|
13
23
|
constructor(notification, _accounts, translate, router, session, chat) {
|
@@ -25,19 +35,21 @@ export class TaggedNotification extends NotificationBase {
|
|
25
35
|
});
|
26
36
|
}
|
27
37
|
}
|
28
|
-
TaggedNotification.ɵfac =
|
29
|
-
TaggedNotification.ɵcmp = i0.ɵɵ
|
30
|
-
|
31
|
-
|
32
|
-
i0.ɵɵ
|
33
|
-
|
34
|
-
|
35
|
-
|
38
|
+
TaggedNotification.ɵfac = function TaggedNotification_Factory(t) { return new (t || TaggedNotification)(i0.ɵɵdirectiveInject(NOTIFICATION_DATA), i0.ɵɵdirectiveInject(i1.AccountService), i0.ɵɵdirectiveInject(i2.TranslateService), i0.ɵɵdirectiveInject(i3.RouterImpl), i0.ɵɵdirectiveInject(i4.SessionService), i0.ɵɵdirectiveInject(i5.ChatInfo)); };
|
39
|
+
TaggedNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TaggedNotification, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[4, "ngIf"], [3, "innerHTML"]], template: function TaggedNotification_Template(rf, ctx) { if (rf & 1) {
|
40
|
+
i0.ɵɵtemplate(0, TaggedNotification_ng_container_0_Template, 3, 3, "ng-container", 0);
|
41
|
+
} if (rf & 2) {
|
42
|
+
i0.ɵɵproperty("ngIf", ctx.message);
|
43
|
+
} }, dependencies: [i6.NgIf, i7.SanitizeHtmlPipe], encapsulation: 2 });
|
44
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TaggedNotification, [{
|
45
|
+
type: Component,
|
46
|
+
args: [{
|
47
|
+
template: `<ng-container *ngIf='message'>
|
36
48
|
<span [innerHTML]='message | sanitizeHtml'></span>
|
37
49
|
</ng-container>`
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
//# sourceMappingURL=data:application/json;base64,
|
50
|
+
}]
|
51
|
+
}], function () { return [{ type: undefined, decorators: [{
|
52
|
+
type: Inject,
|
53
|
+
args: [NOTIFICATION_DATA]
|
54
|
+
}] }, { type: i1.AccountService }, { type: i2.TranslateService }, { type: i3.RouterImpl }, { type: i4.SessionService }, { type: i5.ChatInfo }]; }, null); })();
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFnZ2VkLm5vdGlmaWNhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvbm90aWZpY2F0aW9ucy90eXBlcy90YWdnZWQubm90aWZpY2F0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7Ozs7Ozs7O0lBVTdELDZCQUE4QjtJQUN6QywwQkFBa0Q7O0lBQ3BELDBCQUFlOzs7SUFEUCxlQUFvQztJQUFwQyxtRkFBb0M7O0FBSDVDLE1BQU07QUFNTixNQUFNLE9BQ0Usa0JBQW1CLFNBQVEsZ0JBQWdCO0lBZ0JqRCxZQUF1RCxZQUFvQixFQUNqRSxTQUF5QixFQUNqQyxTQUEyQixFQUMzQixNQUFrQixFQUNsQixPQUF1QixFQUN2QixJQUFjO1FBQ2QsS0FBSyxDQUFDLFlBQVksRUFBRSxNQUFNLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxJQUFJLENBQUMsQ0FBQztRQU5ELGlCQUFZLEdBQVosWUFBWSxDQUFRO1FBQ2pFLGNBQVMsR0FBVCxTQUFTLENBQWdCO0lBTW5DLENBQUM7SUFwQkQsUUFBUTtRQUNOLE1BQU0sSUFBSSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDckYsSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsS0FBSyxJQUFJLENBQUMsUUFBUSxDQUFDLE1BQU07WUFDaEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsRUFDdkQsSUFBSSxDQUFDLEtBQUssRUFDVixNQUFNLElBQUksQ0FBQyxZQUFZLENBQUMsTUFBTSxNQUFNLENBQUMsQ0FBQzs7WUFDckMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUU7Z0JBQzNELElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLENBQUMsTUFBTSxJQUFJLEVBQUUsUUFBUSxFQUNoRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLEVBQzFCLElBQUksQ0FBQyxLQUFLLEVBQ1YsTUFBTSxJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sTUFBTSxDQUFDLENBQUM7WUFDMUMsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDOztvRkFmSyxrQkFBa0IsdUJBZ0JKLGlCQUFpQjtxRUFoQi9CLGtCQUFrQjtRQUxiLHFGQUVFOztRQUZhLGtDQUFhOzt1RkFLakMsa0JBQWtCO2NBTnpCLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUU7O2dCQUVJO2FBQ2Y7O3NCQWtCYyxNQUFNO3VCQUFDLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0LCBJbmplY3QgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBOT1RJRklDQVRJT05fREFUQSwgTm90aWZpY2F0aW9uQmFzZSB9IGZyb20gXCIuL25vdGlmaWNhdGlvbi1iYXNlXCI7XHJcbmltcG9ydCB7IE5vdGlmaWNhdGlvbiB9IGZyb20gXCIuLi8uLi9jb3JlL21vZGVsc1wiO1xyXG5pbXBvcnQgeyBBY2NvdW50U2VydmljZSB9IGZyb20gXCIuLi8uLi9jb3JlL2FjY291bnQuc2VydmljZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL2NvcmUvdHJhbnNsYXRlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgU2Vzc2lvblNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vY29yZS9zZXNzaW9uLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgQ2hhdEluZm8gfSBmcm9tIFwiLi4vLi4vY2hhdC9jaGF0LWluZm9cIjtcclxuaW1wb3J0IHsgUm91dGVySW1wbCB9IGZyb20gXCIuLi8uLi9jb3JlL3JvdXRlclwiO1xyXG5cclxuLyoqICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHRlbXBsYXRlOiBgPG5nLWNvbnRhaW5lciAqbmdJZj0nbWVzc2FnZSc+XHJcbiAgPHNwYW4gW2lubmVySFRNTF09J21lc3NhZ2UgfCBzYW5pdGl6ZUh0bWwnPjwvc3Bhbj5cclxuPC9uZy1jb250YWluZXI+YFxyXG59KVxyXG5leHBvcnRcclxuICBjbGFzcyBUYWdnZWROb3RpZmljYXRpb24gZXh0ZW5kcyBOb3RpZmljYXRpb25CYXNlIGltcGxlbWVudHMgT25Jbml0IHtcclxuICBuYW1lcz86IHN0cmluZztcclxuICBtZXNzYWdlOiBzdHJpbmc7XHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICBjb25zdCBmb3JtID0gdGhpcy5fc2Vzc2lvbi5wcm9maWxlLmZvcm1zLmZpbmQoZiA9PiBmLm5hbWUgPT0gdGhpcy5ub3RpZmljYXRpb24uZm9ybSk7XHJcbiAgICBpZiAodGhpcy5ub3RpZmljYXRpb24ud2hvID09PSB0aGlzLl9zZXNzaW9uLnVzZXJJZClcclxuICAgICAgdGhpcy5tZXNzYWdlID0gdGhpcy5fdHJhbnNsYXRlLmdldCgnVGFnZ2VkWW91cnNlbGZOb3RpZnknLFxyXG4gICAgICAgIGZvcm0udGl0bGUsXHJcbiAgICAgICAgYDxhPiR7dGhpcy5ub3RpZmljYXRpb24ubnVtYmVyfTwvYT5gKTtcclxuICAgIGVsc2UgdGhpcy5fYWNjb3VudHMuZ2V0KHRoaXMubm90aWZpY2F0aW9uLndobykuc3Vic2NyaWJlKHUgPT4ge1xyXG4gICAgICB0aGlzLm1lc3NhZ2UgPSB0aGlzLl90cmFuc2xhdGUuZ2V0KGBUYWdnZWQke3UuZ2VuZGVyIHx8ICcnfU5vdGlmeWAsXHJcbiAgICAgICAgdGhpcy5fZm9ybWF0VXNlckVsZW1lbnQodSksXHJcbiAgICAgICAgZm9ybS50aXRsZSxcclxuICAgICAgICBgPGE+JHt0aGlzLm5vdGlmaWNhdGlvbi5udW1iZXJ9PC9hPmApO1xyXG4gICAgfSk7XHJcbiAgfVxyXG4gIGNvbnN0cnVjdG9yKEBJbmplY3QoTk9USUZJQ0FUSU9OX0RBVEEpIHB1YmxpYyBvdmVycmlkZSBub3RpZmljYXRpb246IFRhZ2dlZCxcclxuICAgIHByaXZhdGUgX2FjY291bnRzOiBBY2NvdW50U2VydmljZSxcclxuICAgIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSxcclxuICAgIHJvdXRlcjogUm91dGVySW1wbCxcclxuICAgIHNlc3Npb246IFNlc3Npb25TZXJ2aWNlLFxyXG4gICAgY2hhdDogQ2hhdEluZm8pIHtcclxuICAgIHN1cGVyKG5vdGlmaWNhdGlvbiwgcm91dGVyLCBzZXNzaW9uLCB0cmFuc2xhdGUsIGNoYXQpO1xyXG4gIH1cclxufVxyXG5pbnRlcmZhY2UgVGFnZ2VkIGV4dGVuZHMgTm90aWZpY2F0aW9uIHtcclxuICB3aG86IHN0cmluZztcclxuICBmb3JtOiBzdHJpbmc7XHJcbiAgbnVtYmVyOiBzdHJpbmc7XHJcbn1cclxuIl19
|
@@ -8,13 +8,17 @@ export class TextNotification {
|
|
8
8
|
ngOnInit() {
|
9
9
|
}
|
10
10
|
}
|
11
|
-
TextNotification.ɵfac =
|
12
|
-
TextNotification.ɵcmp = i0.ɵɵ
|
13
|
-
i0.ɵɵ
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
11
|
+
TextNotification.ɵfac = function TextNotification_Factory(t) { return new (t || TextNotification)(i0.ɵɵdirectiveInject(NOTIFICATION_DATA)); };
|
12
|
+
TextNotification.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TextNotification, selectors: [["ng-component"]], decls: 1, vars: 1, consts: [[3, "innerHTML"]], template: function TextNotification_Template(rf, ctx) { if (rf & 1) {
|
13
|
+
i0.ɵɵelement(0, "span", 0);
|
14
|
+
} if (rf & 2) {
|
15
|
+
i0.ɵɵproperty("innerHTML", ctx.notification.text, i0.ɵɵsanitizeHtml);
|
16
|
+
} }, encapsulation: 2 });
|
17
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TextNotification, [{
|
18
|
+
type: Component,
|
19
|
+
args: [{ template: `<span [innerHTML]="notification.text"></span>` }]
|
20
|
+
}], function () { return [{ type: undefined, decorators: [{
|
21
|
+
type: Inject,
|
22
|
+
args: [NOTIFICATION_DATA]
|
23
|
+
}] }]; }, null); })();
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC5ub3RpZmljYXRpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL25vdGlmaWNhdGlvbnMvdHlwZXMvdGV4dC5ub3RpZmljYXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0scUJBQXFCLENBQUM7O0FBR3hELE1BQU0sT0FDRSxnQkFBZ0I7SUFHdEIsWUFBOEMsWUFBa0I7UUFBbEIsaUJBQVksR0FBWixZQUFZLENBQU07SUFBSSxDQUFDO0lBRnJFLFFBQVE7SUFDUixDQUFDOztnRkFGSyxnQkFBZ0IsdUJBR0YsaUJBQWlCO21FQUgvQixnQkFBZ0I7UUFGQSwwQkFBNkM7O1FBQXZDLG9FQUErQjs7dUZBRXJELGdCQUFnQjtjQUZ2QixTQUFTO2VBQUMsRUFBRSxRQUFRLEVBQUUsK0NBQStDLEVBQUU7O3NCQUt6RCxNQUFNO3VCQUFDLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0LCBJbmplY3QgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBOT1RJRklDQVRJT05fREFUQSB9IGZyb20gXCIuL25vdGlmaWNhdGlvbi1iYXNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHsgdGVtcGxhdGU6IGA8c3BhbiBbaW5uZXJIVE1MXT1cIm5vdGlmaWNhdGlvbi50ZXh0XCI+PC9zcGFuPmAgfSlcclxuZXhwb3J0XHJcbiAgY2xhc3MgVGV4dE5vdGlmaWNhdGlvbiBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgfVxyXG4gIGNvbnN0cnVjdG9yKEBJbmplY3QoTk9USUZJQ0FUSU9OX0RBVEEpIHB1YmxpYyBub3RpZmljYXRpb246IFRleHQpIHsgfVxyXG59XHJcbmludGVyZmFjZSBUZXh0IHtcclxuICB0ZXh0OiBzdHJpbmc7XHJcbn1cclxuIl19
|