@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
@@ -5,20 +5,33 @@ import { DesignerTypeElementComponent } from "../designer.base";
|
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
import * as i1 from "@angular/common";
|
7
7
|
import * as i2 from "@angular/forms";
|
8
|
+
function RuleDesignComponent_form_0_Template(rf, ctx) { if (rf & 1) {
|
9
|
+
i0.ɵɵelement(0, "form", 2);
|
10
|
+
} if (rf & 2) {
|
11
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
12
|
+
i0.ɵɵproperty("formGroup", ctx_r0.form);
|
13
|
+
} }
|
14
|
+
function RuleDesignComponent_ng_template_1_Template(rf, ctx) { }
|
8
15
|
let RuleDesignComponent = class RuleDesignComponent extends DesignerTypeElementComponent {
|
9
16
|
constructor() {
|
10
17
|
super(...arguments);
|
11
18
|
this.form = this._fb.group({});
|
12
19
|
}
|
13
20
|
};
|
14
|
-
RuleDesignComponent.ɵfac =
|
15
|
-
RuleDesignComponent.ɵcmp = i0.ɵɵ
|
21
|
+
RuleDesignComponent.ɵfac = /*@__PURE__*/ function () { let ɵRuleDesignComponent_BaseFactory; return function RuleDesignComponent_Factory(t) { return (ɵRuleDesignComponent_BaseFactory || (ɵRuleDesignComponent_BaseFactory = i0.ɵɵgetInheritedFactory(RuleDesignComponent)))(t || RuleDesignComponent); }; }();
|
22
|
+
RuleDesignComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RuleDesignComponent, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [["autocomplete", "off", 3, "formGroup", 4, "ngIf", "ngIfElse"], ["info", ""], ["autocomplete", "off", 3, "formGroup"]], template: function RuleDesignComponent_Template(rf, ctx) { if (rf & 1) {
|
23
|
+
i0.ɵɵtemplate(0, RuleDesignComponent_form_0_Template, 1, 1, "form", 0);
|
24
|
+
i0.ɵɵtemplate(1, RuleDesignComponent_ng_template_1_Template, 0, 0, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
25
|
+
} if (rf & 2) {
|
26
|
+
const _r1 = i0.ɵɵreference(2);
|
27
|
+
i0.ɵɵproperty("ngIf", ctx.mode === "edit")("ngIfElse", _r1);
|
28
|
+
} }, dependencies: [i1.NgIf, i2.ɵNgNoValidate, i2.NgControlStatusGroup, i2.FormGroupDirective], encapsulation: 2 });
|
16
29
|
RuleDesignComponent = __decorate([
|
17
30
|
BizDoc({ selector: 'rule-designer' })
|
18
31
|
], RuleDesignComponent);
|
19
32
|
export { RuleDesignComponent };
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
//# sourceMappingURL=data:application/json;base64,
|
33
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RuleDesignComponent, [{
|
34
|
+
type: Component,
|
35
|
+
args: [{ template: "<form autocomplete=\"off\" [formGroup]=\"form\" *ngIf=\"mode === 'edit'; else info\">\r\n</form>\r\n<ng-template #info>\r\n</ng-template>\r\n" }]
|
36
|
+
}], null, null); })();
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicnVsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvcnVsZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvcnVsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUxQyxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDbEQsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7O0lDSGhFLDBCQUNPOzs7SUFEa0IsdUNBQWtCOzs7SURPOUIsbUJBQW1CLFNBQW5CLG1CQUFvQixTQUFRLDRCQUE0Qjs7O1FBQ25FLFNBQUksR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztLQUMzQjtDQUFBLENBQUE7dVBBRlksbUJBQW1CLFNBQW5CLG1CQUFtQjtzRUFBbkIsbUJBQW1CO1FDUGhDLHNFQUNPO1FBQ1AscUhBQ2M7OztRQUgrQiwwQ0FBdUIsaUJBQUE7O0FET3ZELG1CQUFtQjtJQUQvQixNQUFNLENBQUMsRUFBRSxRQUFRLEVBQUUsZUFBZSxFQUFFLENBQUM7R0FDekIsbUJBQW1CLENBRS9CO1NBRlksbUJBQW1CO3VGQUFuQixtQkFBbUI7Y0FGL0IsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IEZvcm1Hcm91cCwgVmFsaWRhdG9ycyB9IGZyb20gXCJAYW5ndWxhci9mb3Jtc1wiO1xyXG5pbXBvcnQgeyBCaXpEb2MgfSBmcm9tIFwiLi4vLi4vLi4vY29yZS9kZWNvcmF0b3JzXCI7XHJcbmltcG9ydCB7IERlc2lnbmVyVHlwZUVsZW1lbnRDb21wb25lbnQgfSBmcm9tIFwiLi4vZGVzaWduZXIuYmFzZVwiO1xyXG5cclxuQENvbXBvbmVudCh7IHRlbXBsYXRlVXJsOiAncnVsZS5jb21wb25lbnQuaHRtbCcgfSlcclxuQEJpekRvYyh7IHNlbGVjdG9yOiAncnVsZS1kZXNpZ25lcicgfSlcclxuZXhwb3J0IGNsYXNzIFJ1bGVEZXNpZ25Db21wb25lbnQgZXh0ZW5kcyBEZXNpZ25lclR5cGVFbGVtZW50Q29tcG9uZW50IHtcclxuICBmb3JtID0gdGhpcy5fZmIuZ3JvdXAoe30pO1xyXG59XHJcbiIsIjxmb3JtIGF1dG9jb21wbGV0ZT1cIm9mZlwiIFtmb3JtR3JvdXBdPVwiZm9ybVwiICpuZ0lmPVwibW9kZSA9PT0gJ2VkaXQnOyBlbHNlIGluZm9cIj5cclxuPC9mb3JtPlxyXG48bmctdGVtcGxhdGUgI2luZm8+XHJcbjwvbmctdGVtcGxhdGU+XHJcbiJdfQ==
|
@@ -1,3 +1,4 @@
|
|
1
|
+
var StateDesignComponent_1;
|
1
2
|
import { __decorate } from "tslib";
|
2
3
|
import { Component } from "@angular/core";
|
3
4
|
import { BizDoc } from "../../../core/decorators";
|
@@ -5,25 +6,76 @@ import { DesignerTypeElementComponent } from "../designer.base";
|
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
import * as i1 from "@angular/common";
|
7
8
|
import * as i2 from "@angular/forms";
|
8
|
-
import * as i3 from "
|
9
|
-
import * as i4 from "
|
10
|
-
|
9
|
+
import * as i3 from "@angular/material/form-field";
|
10
|
+
import * as i4 from "@angular/material/input";
|
11
|
+
import * as i5 from "../../core/color-picker.input";
|
12
|
+
import * as i6 from "../../../core/pipes/translate.pipe";
|
13
|
+
function StateDesignComponent_form_0_Template(rf, ctx) { if (rf & 1) {
|
14
|
+
i0.ɵɵelementStart(0, "form", 2)(1, "div", 3);
|
15
|
+
i0.ɵɵelement(2, "bizdoc-color-picker", 4);
|
16
|
+
i0.ɵɵpipe(3, "translate");
|
17
|
+
i0.ɵɵelement(4, "bizdoc-color-picker", 5);
|
18
|
+
i0.ɵɵpipe(5, "translate");
|
19
|
+
i0.ɵɵelementEnd();
|
20
|
+
i0.ɵɵelementStart(6, "mat-form-field", 6)(7, "mat-label");
|
21
|
+
i0.ɵɵtext(8);
|
22
|
+
i0.ɵɵpipe(9, "translate");
|
23
|
+
i0.ɵɵelementEnd();
|
24
|
+
i0.ɵɵelement(10, "input", 7);
|
25
|
+
i0.ɵɵelementEnd();
|
26
|
+
i0.ɵɵelementStart(11, "mat-form-field", 6)(12, "mat-label");
|
27
|
+
i0.ɵɵtext(13);
|
28
|
+
i0.ɵɵpipe(14, "translate");
|
29
|
+
i0.ɵɵelementEnd();
|
30
|
+
i0.ɵɵelement(15, "input", 8);
|
31
|
+
i0.ɵɵelementEnd()();
|
32
|
+
} if (rf & 2) {
|
33
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
34
|
+
i0.ɵɵproperty("formGroup", ctx_r0.form);
|
35
|
+
i0.ɵɵadvance(2);
|
36
|
+
i0.ɵɵproperty("label", i0.ɵɵpipeBind1(3, 5, "Color"));
|
37
|
+
i0.ɵɵadvance(2);
|
38
|
+
i0.ɵɵproperty("label", i0.ɵɵpipeBind1(5, 7, "BackgroundColor"));
|
39
|
+
i0.ɵɵadvance(4);
|
40
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(9, 9, "Past"));
|
41
|
+
i0.ɵɵadvance(5);
|
42
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(14, 11, "Future"));
|
43
|
+
} }
|
44
|
+
function StateDesignComponent_ng_template_1_Template(rf, ctx) { if (rf & 1) {
|
45
|
+
i0.ɵɵelement(0, "div");
|
46
|
+
} }
|
47
|
+
let StateDesignComponent = StateDesignComponent_1 = class StateDesignComponent extends DesignerTypeElementComponent {
|
11
48
|
constructor() {
|
12
49
|
super(...arguments);
|
13
50
|
this.form = this._fb.group({
|
51
|
+
past: null,
|
52
|
+
future: null,
|
14
53
|
color: null,
|
15
54
|
backgroundColor: null
|
16
55
|
});
|
17
56
|
}
|
57
|
+
ngOnInit() {
|
58
|
+
if (this.mode === 'edit') {
|
59
|
+
this.model.resource && this.lockResource(StateDesignComponent_1.resources);
|
60
|
+
this._ref.lockChange.subscribe(() => this.lockResource(StateDesignComponent_1.resources));
|
61
|
+
}
|
62
|
+
}
|
18
63
|
};
|
19
|
-
StateDesignComponent
|
20
|
-
StateDesignComponent.ɵ
|
21
|
-
StateDesignComponent =
|
64
|
+
StateDesignComponent.resources = ['past', 'future'];
|
65
|
+
StateDesignComponent.ɵfac = /*@__PURE__*/ function () { let ɵStateDesignComponent_BaseFactory; return function StateDesignComponent_Factory(t) { return (ɵStateDesignComponent_BaseFactory || (ɵStateDesignComponent_BaseFactory = i0.ɵɵgetInheritedFactory(StateDesignComponent)))(t || StateDesignComponent); }; }();
|
66
|
+
StateDesignComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StateDesignComponent, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [["autocomplete", "off", "class", "column", 3, "formGroup", 4, "ngIf", "ngIfElse"], ["info", ""], ["autocomplete", "off", 1, "column", 3, "formGroup"], [1, "row"], ["formControlName", "color", 1, "flex", 3, "label"], ["formControlName", "backgroundColor", 1, "flex", 3, "label"], [1, "flex"], ["matInput", "", "formControlName", "past"], ["matInput", "", "formControlName", "future"]], template: function StateDesignComponent_Template(rf, ctx) { if (rf & 1) {
|
67
|
+
i0.ɵɵtemplate(0, StateDesignComponent_form_0_Template, 16, 13, "form", 0);
|
68
|
+
i0.ɵɵtemplate(1, StateDesignComponent_ng_template_1_Template, 1, 0, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
69
|
+
} if (rf & 2) {
|
70
|
+
const _r1 = i0.ɵɵreference(2);
|
71
|
+
i0.ɵɵproperty("ngIf", ctx.mode === "edit")("ngIfElse", _r1);
|
72
|
+
} }, dependencies: [i1.NgIf, i2.ɵNgNoValidate, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i3.MatFormField, i3.MatLabel, i4.MatInput, i5.ColorPicker, i6.TranslatePipe], encapsulation: 2 });
|
73
|
+
StateDesignComponent = StateDesignComponent_1 = __decorate([
|
22
74
|
BizDoc({ selector: 'state-designer' })
|
23
75
|
], StateDesignComponent);
|
24
76
|
export { StateDesignComponent };
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
//# sourceMappingURL=data:application/json;base64,
|
77
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StateDesignComponent, [{
|
78
|
+
type: Component,
|
79
|
+
args: [{ template: "<form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\" *ngIf=\"mode === 'edit'; else info\">\r\n <div class=\"row\">\r\n <bizdoc-color-picker formControlName=\"color\" [label]=\"'Color'|translate\" class=\"flex\"></bizdoc-color-picker>\r\n <bizdoc-color-picker formControlName=\"backgroundColor\" [label]=\"'BackgroundColor'|translate\" class=\"flex\"></bizdoc-color-picker>\r\n </div>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Past'|translate}}</mat-label>\r\n <input matInput formControlName=\"past\" />\r\n </mat-form-field>\r\n <mat-form-field class=\"flex\">\r\n <mat-label>{{'Future'|translate}}</mat-label>\r\n <input matInput formControlName=\"future\" />\r\n </mat-form-field>\r\n</form>\r\n<!---->\r\n<ng-template #info>\r\n <div>\r\n </div>\r\n</ng-template>\r\n" }]
|
80
|
+
}], null, null); })();
|
81
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RhdGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9jb25maWd1cmF0aW9uLWRlc2lnbmVyL2VsZW1lbnRzL3N0YXRlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvYWRtaW4vY29uZmlndXJhdGlvbi1kZXNpZ25lci9lbGVtZW50cy9zdGF0ZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFFbEQsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2xELE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7Ozs7Ozs7SUNIaEUsK0JBQThGLGFBQUE7SUFFMUYseUNBQTRHOztJQUM1Ryx5Q0FBZ0k7O0lBQ2xJLGlCQUFNO0lBQ04seUNBQTZCLGdCQUFBO0lBQ2hCLFlBQW9COztJQUFBLGlCQUFZO0lBQzNDLDRCQUF5QztJQUMzQyxpQkFBaUI7SUFDakIsMENBQTZCLGlCQUFBO0lBQ2hCLGFBQXNCOztJQUFBLGlCQUFZO0lBQzdDLDRCQUE0QztJQUM5QyxpQkFBaUIsRUFBQTs7O0lBWk0sdUNBQWtCO0lBRU0sZUFBMkI7SUFBM0IscURBQTJCO0lBQ2pCLGVBQXFDO0lBQXJDLCtEQUFxQztJQUdqRixlQUFvQjtJQUFwQixrREFBb0I7SUFJcEIsZUFBc0I7SUFBdEIsc0RBQXNCOzs7SUFNbkMsc0JBQ007O0lEVkssb0JBQW9CLGtDQUFwQixvQkFBcUIsU0FBUSw0QkFBNEI7OztRQUUzRCxTQUFJLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUM7WUFDN0IsSUFBSSxFQUFFLElBQUk7WUFDVixNQUFNLEVBQUUsSUFBSTtZQUNaLEtBQUssRUFBRSxJQUFJO1lBQ1gsZUFBZSxFQUFFLElBQUk7U0FDdEIsQ0FBQyxDQUFDO0tBT0o7SUFOQyxRQUFRO1FBQ04sSUFBSSxJQUFJLENBQUMsSUFBSSxLQUFLLE1BQU0sRUFBRTtZQUN4QixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsWUFBWSxDQUFDLHNCQUFvQixDQUFDLFNBQVMsQ0FBQyxDQUFDO1lBQ3pFLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLHNCQUFvQixDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7U0FDekY7SUFDSCxDQUFDO0NBQ0YsQ0FBQTtBQWJnQiw4QkFBUyxHQUFHLENBQUMsTUFBTSxFQUFFLFFBQVEsQ0FBRSxDQUFBOzRQQURuQyxvQkFBb0IsU0FBcEIsb0JBQW9CO3VFQUFwQixvQkFBb0I7UUNQakMseUVBYU87UUFFUCxzSEFHYzs7O1FBbEI4QywwQ0FBdUIsaUJBQUE7O0FET3RFLG9CQUFvQjtJQUQ5QixNQUFNLENBQUMsRUFBRSxRQUFRLEVBQUUsZ0JBQWdCLEVBQUUsQ0FBQztHQUM1QixvQkFBb0IsQ0FjaEM7U0FkWSxvQkFBb0I7dUZBQXBCLG9CQUFvQjtjQUZoQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBWYWxpZGF0b3JzIH0gZnJvbSBcIkBhbmd1bGFyL2Zvcm1zXCI7XHJcbmltcG9ydCB7IEJpekRvYyB9IGZyb20gXCIuLi8uLi8uLi9jb3JlL2RlY29yYXRvcnNcIjtcclxuaW1wb3J0IHsgRGVzaWduZXJUeXBlRWxlbWVudENvbXBvbmVudCB9IGZyb20gXCIuLi9kZXNpZ25lci5iYXNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHsgdGVtcGxhdGVVcmw6ICdzdGF0ZS5jb21wb25lbnQuaHRtbCcgfSlcclxuICBAQml6RG9jKHsgc2VsZWN0b3I6ICdzdGF0ZS1kZXNpZ25lcicgfSlcclxuZXhwb3J0IGNsYXNzIFN0YXRlRGVzaWduQ29tcG9uZW50IGV4dGVuZHMgRGVzaWduZXJUeXBlRWxlbWVudENvbXBvbmVudCB7XHJcbiAgcHJpdmF0ZSBzdGF0aWMgcmVzb3VyY2VzID0gWydwYXN0JywgJ2Z1dHVyZSddO1xyXG4gIHJlYWRvbmx5IGZvcm0gPSB0aGlzLl9mYi5ncm91cCh7XHJcbiAgICBwYXN0OiBudWxsLFxyXG4gICAgZnV0dXJlOiBudWxsLFxyXG4gICAgY29sb3I6IG51bGwsXHJcbiAgICBiYWNrZ3JvdW5kQ29sb3I6IG51bGxcclxuICB9KTtcclxuICBuZ09uSW5pdCgpIHtcclxuICAgIGlmICh0aGlzLm1vZGUgPT09ICdlZGl0Jykge1xyXG4gICAgICB0aGlzLm1vZGVsLnJlc291cmNlICYmIHRoaXMubG9ja1Jlc291cmNlKFN0YXRlRGVzaWduQ29tcG9uZW50LnJlc291cmNlcyk7XHJcbiAgICAgIHRoaXMuX3JlZi5sb2NrQ2hhbmdlLnN1YnNjcmliZSgoKSA9PiB0aGlzLmxvY2tSZXNvdXJjZShTdGF0ZURlc2lnbkNvbXBvbmVudC5yZXNvdXJjZXMpKTtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiPGZvcm0gYXV0b2NvbXBsZXRlPVwib2ZmXCIgW2Zvcm1Hcm91cF09XCJmb3JtXCIgY2xhc3M9XCJjb2x1bW5cIiAqbmdJZj1cIm1vZGUgPT09ICdlZGl0JzsgZWxzZSBpbmZvXCI+XHJcbiAgPGRpdiBjbGFzcz1cInJvd1wiPlxyXG4gICAgPGJpemRvYy1jb2xvci1waWNrZXIgZm9ybUNvbnRyb2xOYW1lPVwiY29sb3JcIiBbbGFiZWxdPVwiJ0NvbG9yJ3x0cmFuc2xhdGVcIiBjbGFzcz1cImZsZXhcIj48L2JpemRvYy1jb2xvci1waWNrZXI+XHJcbiAgICA8Yml6ZG9jLWNvbG9yLXBpY2tlciBmb3JtQ29udHJvbE5hbWU9XCJiYWNrZ3JvdW5kQ29sb3JcIiBbbGFiZWxdPVwiJ0JhY2tncm91bmRDb2xvcid8dHJhbnNsYXRlXCIgY2xhc3M9XCJmbGV4XCI+PC9iaXpkb2MtY29sb3ItcGlja2VyPlxyXG4gIDwvZGl2PlxyXG4gIDxtYXQtZm9ybS1maWVsZCBjbGFzcz1cImZsZXhcIj5cclxuICAgIDxtYXQtbGFiZWw+e3snUGFzdCd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgIDxpbnB1dCBtYXRJbnB1dCBmb3JtQ29udHJvbE5hbWU9XCJwYXN0XCIgLz5cclxuICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gIDxtYXQtZm9ybS1maWVsZCBjbGFzcz1cImZsZXhcIj5cclxuICAgIDxtYXQtbGFiZWw+e3snRnV0dXJlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgPGlucHV0IG1hdElucHV0IGZvcm1Db250cm9sTmFtZT1cImZ1dHVyZVwiICAvPlxyXG4gIDwvbWF0LWZvcm0tZmllbGQ+XHJcbjwvZm9ybT5cclxuPCEtLS0tPlxyXG48bmctdGVtcGxhdGUgI2luZm8+XHJcbiAgPGRpdj5cclxuICA8L2Rpdj5cclxuPC9uZy10ZW1wbGF0ZT5cclxuIl19
|
@@ -9,8 +9,126 @@ import * as i2 from "@angular/forms";
|
|
9
9
|
import * as i3 from "@angular/material/core";
|
10
10
|
import * as i4 from "@angular/material/form-field";
|
11
11
|
import * as i5 from "@angular/material/select";
|
12
|
-
import * as i6 from "
|
12
|
+
import * as i6 from "../cube-axes-filter.component";
|
13
13
|
import * as i7 from "../../../core/pipes/translate.pipe";
|
14
|
+
function SumViewDesignComponent_ng_container_0_mat_option_7_Template(rf, ctx) { if (rf & 1) {
|
15
|
+
i0.ɵɵelementStart(0, "mat-option", 9);
|
16
|
+
i0.ɵɵtext(1);
|
17
|
+
i0.ɵɵelementEnd();
|
18
|
+
} if (rf & 2) {
|
19
|
+
const x_r8 = ctx.$implicit;
|
20
|
+
i0.ɵɵproperty("value", x_r8.name);
|
21
|
+
i0.ɵɵadvance(1);
|
22
|
+
i0.ɵɵtextInterpolate(x_r8.title || x_r8.name);
|
23
|
+
} }
|
24
|
+
function SumViewDesignComponent_ng_container_0_mat_option_13_Template(rf, ctx) { if (rf & 1) {
|
25
|
+
i0.ɵɵelementStart(0, "mat-option", 9);
|
26
|
+
i0.ɵɵtext(1);
|
27
|
+
i0.ɵɵelementEnd();
|
28
|
+
} if (rf & 2) {
|
29
|
+
const x_r9 = ctx.$implicit;
|
30
|
+
i0.ɵɵproperty("value", x_r9.name);
|
31
|
+
i0.ɵɵadvance(1);
|
32
|
+
i0.ɵɵtextInterpolate(x_r9.title || x_r9.name);
|
33
|
+
} }
|
34
|
+
function SumViewDesignComponent_ng_container_0_mat_option_19_Template(rf, ctx) { if (rf & 1) {
|
35
|
+
i0.ɵɵelementStart(0, "mat-option", 9);
|
36
|
+
i0.ɵɵtext(1);
|
37
|
+
i0.ɵɵelementEnd();
|
38
|
+
} if (rf & 2) {
|
39
|
+
const x_r10 = ctx.$implicit;
|
40
|
+
i0.ɵɵproperty("value", x_r10.name);
|
41
|
+
i0.ɵɵadvance(1);
|
42
|
+
i0.ɵɵtextInterpolate(x_r10.title);
|
43
|
+
} }
|
44
|
+
function SumViewDesignComponent_ng_container_0_mat_option_25_Template(rf, ctx) { if (rf & 1) {
|
45
|
+
i0.ɵɵelementStart(0, "mat-option", 9);
|
46
|
+
i0.ɵɵtext(1);
|
47
|
+
i0.ɵɵelementEnd();
|
48
|
+
} if (rf & 2) {
|
49
|
+
const x_r11 = ctx.$implicit;
|
50
|
+
i0.ɵɵproperty("value", x_r11.name);
|
51
|
+
i0.ɵɵadvance(1);
|
52
|
+
i0.ɵɵtextInterpolate(x_r11.title || x_r11.name);
|
53
|
+
} }
|
54
|
+
function SumViewDesignComponent_ng_container_0_ng_container_26_Template(rf, ctx) { if (rf & 1) {
|
55
|
+
i0.ɵɵelementContainerStart(0);
|
56
|
+
i0.ɵɵelementStart(1, "h2", 10);
|
57
|
+
i0.ɵɵtext(2);
|
58
|
+
i0.ɵɵpipe(3, "translate");
|
59
|
+
i0.ɵɵelementEnd();
|
60
|
+
i0.ɵɵelement(4, "bizdoc-designer-cube-filter", 11);
|
61
|
+
i0.ɵɵelementContainerEnd();
|
62
|
+
} if (rf & 2) {
|
63
|
+
const ctx_r7 = i0.ɵɵnextContext(2);
|
64
|
+
i0.ɵɵadvance(2);
|
65
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 4, "Filters"));
|
66
|
+
i0.ɵɵadvance(2);
|
67
|
+
i0.ɵɵproperty("cube", ctx_r7.cube)("form", ctx_r7.form.get("filters"))("model", ctx_r7.options.filters);
|
68
|
+
} }
|
69
|
+
function SumViewDesignComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
70
|
+
const _r13 = i0.ɵɵgetCurrentView();
|
71
|
+
i0.ɵɵelementContainerStart(0);
|
72
|
+
i0.ɵɵelementStart(1, "form", 2)(2, "mat-form-field")(3, "mat-label");
|
73
|
+
i0.ɵɵtext(4);
|
74
|
+
i0.ɵɵpipe(5, "translate");
|
75
|
+
i0.ɵɵelementEnd();
|
76
|
+
i0.ɵɵelementStart(6, "mat-select", 3);
|
77
|
+
i0.ɵɵlistener("selectionChange", function SumViewDesignComponent_ng_container_0_Template_mat_select_selectionChange_6_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r12 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r12.xAxisSelected($event)); });
|
78
|
+
i0.ɵɵtemplate(7, SumViewDesignComponent_ng_container_0_mat_option_7_Template, 2, 2, "mat-option", 4);
|
79
|
+
i0.ɵɵelementEnd()();
|
80
|
+
i0.ɵɵelementStart(8, "mat-form-field")(9, "mat-label");
|
81
|
+
i0.ɵɵtext(10);
|
82
|
+
i0.ɵɵpipe(11, "translate");
|
83
|
+
i0.ɵɵelementEnd();
|
84
|
+
i0.ɵɵelementStart(12, "mat-select", 5);
|
85
|
+
i0.ɵɵlistener("selectionChange", function SumViewDesignComponent_ng_container_0_Template_mat_select_selectionChange_12_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r14 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r14.seriesSelected($event)); });
|
86
|
+
i0.ɵɵtemplate(13, SumViewDesignComponent_ng_container_0_mat_option_13_Template, 2, 2, "mat-option", 4);
|
87
|
+
i0.ɵɵelementEnd()();
|
88
|
+
i0.ɵɵelementStart(14, "mat-form-field")(15, "mat-label");
|
89
|
+
i0.ɵɵtext(16);
|
90
|
+
i0.ɵɵpipe(17, "translate");
|
91
|
+
i0.ɵɵelementEnd();
|
92
|
+
i0.ɵɵelementStart(18, "mat-select", 6);
|
93
|
+
i0.ɵɵtemplate(19, SumViewDesignComponent_ng_container_0_mat_option_19_Template, 2, 2, "mat-option", 4);
|
94
|
+
i0.ɵɵelementEnd()();
|
95
|
+
i0.ɵɵelementStart(20, "mat-form-field")(21, "mat-label");
|
96
|
+
i0.ɵɵtext(22);
|
97
|
+
i0.ɵɵpipe(23, "translate");
|
98
|
+
i0.ɵɵelementEnd();
|
99
|
+
i0.ɵɵelementStart(24, "mat-select", 7);
|
100
|
+
i0.ɵɵtemplate(25, SumViewDesignComponent_ng_container_0_mat_option_25_Template, 2, 2, "mat-option", 4);
|
101
|
+
i0.ɵɵelementEnd()();
|
102
|
+
i0.ɵɵtemplate(26, SumViewDesignComponent_ng_container_0_ng_container_26_Template, 5, 6, "ng-container", 8);
|
103
|
+
i0.ɵɵelementEnd();
|
104
|
+
i0.ɵɵelement(27, "div");
|
105
|
+
i0.ɵɵelementContainerEnd();
|
106
|
+
} if (rf & 2) {
|
107
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
108
|
+
i0.ɵɵadvance(1);
|
109
|
+
i0.ɵɵproperty("formGroup", ctx_r0.form);
|
110
|
+
i0.ɵɵadvance(3);
|
111
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 11, "Series"));
|
112
|
+
i0.ɵɵadvance(3);
|
113
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.cube.axes);
|
114
|
+
i0.ɵɵadvance(3);
|
115
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(11, 13, "XAxis"));
|
116
|
+
i0.ɵɵadvance(3);
|
117
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.secondaryAxes);
|
118
|
+
i0.ɵɵadvance(3);
|
119
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(17, 15, "Indices"));
|
120
|
+
i0.ɵɵadvance(3);
|
121
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.cube.indices);
|
122
|
+
i0.ɵɵadvance(3);
|
123
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(23, 17, "Aggregate"));
|
124
|
+
i0.ɵɵadvance(2);
|
125
|
+
i0.ɵɵproperty("disabled", !ctx_r0.thirdAxes || !ctx_r0.thirdAxes.length);
|
126
|
+
i0.ɵɵadvance(1);
|
127
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.thirdAxes);
|
128
|
+
i0.ɵɵadvance(1);
|
129
|
+
i0.ɵɵproperty("ngIf", ctx_r0.cube);
|
130
|
+
} }
|
131
|
+
function SumViewDesignComponent_ng_template_1_Template(rf, ctx) { }
|
14
132
|
let SumViewDesignComponent = class SumViewDesignComponent extends DesignerCubeElementComponent {
|
15
133
|
constructor() {
|
16
134
|
super(...arguments);
|
@@ -25,14 +143,20 @@ let SumViewDesignComponent = class SumViewDesignComponent extends DesignerCubeEl
|
|
25
143
|
});
|
26
144
|
}
|
27
145
|
};
|
28
|
-
SumViewDesignComponent.ɵfac =
|
29
|
-
SumViewDesignComponent.ɵcmp = i0.ɵɵ
|
146
|
+
SumViewDesignComponent.ɵfac = /*@__PURE__*/ function () { let ɵSumViewDesignComponent_BaseFactory; return function SumViewDesignComponent_Factory(t) { return (ɵSumViewDesignComponent_BaseFactory || (ɵSumViewDesignComponent_BaseFactory = i0.ɵɵgetInheritedFactory(SumViewDesignComponent)))(t || SumViewDesignComponent); }; }();
|
147
|
+
SumViewDesignComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SumViewDesignComponent, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [[4, "ngIf", "ngIfElse"], ["info", ""], ["autocomplete", "off", 1, "column", 3, "formGroup"], ["formControlName", "series", "required", "", 3, "selectionChange"], [3, "value", 4, "ngFor", "ngForOf"], ["formControlName", "xAxis", "required", "", 3, "selectionChange"], ["formControlName", "indices", "multiple", ""], ["formControlName", "aggregate", "multiple", "", 3, "disabled"], [4, "ngIf"], [3, "value"], [1, "mat-title"], [3, "cube", "form", "model"]], template: function SumViewDesignComponent_Template(rf, ctx) { if (rf & 1) {
|
148
|
+
i0.ɵɵtemplate(0, SumViewDesignComponent_ng_container_0_Template, 28, 19, "ng-container", 0);
|
149
|
+
i0.ɵɵtemplate(1, SumViewDesignComponent_ng_template_1_Template, 0, 0, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
150
|
+
} if (rf & 2) {
|
151
|
+
const _r1 = i0.ɵɵreference(2);
|
152
|
+
i0.ɵɵproperty("ngIf", ctx.mode === "edit")("ngIfElse", _r1);
|
153
|
+
} }, dependencies: [i1.NgForOf, i1.NgIf, i2.ɵNgNoValidate, i2.NgControlStatus, i2.NgControlStatusGroup, i2.RequiredValidator, i2.FormGroupDirective, i2.FormControlName, i3.MatOption, i4.MatFormField, i4.MatLabel, i5.MatSelect, i6.DesignerCubeFilterComponent, i7.TranslatePipe], encapsulation: 2 });
|
30
154
|
SumViewDesignComponent = __decorate([
|
31
155
|
BizDoc({ selector: 'period-view-designer' })
|
32
156
|
], SumViewDesignComponent);
|
33
157
|
export { SumViewDesignComponent };
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
//# sourceMappingURL=data:application/json;base64,
|
158
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SumViewDesignComponent, [{
|
159
|
+
type: Component,
|
160
|
+
args: [{ template: "<ng-container *ngIf=\"mode === 'edit'; else info\">\r\n <form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\">\r\n <mat-form-field>\r\n <mat-label>{{'Series'|translate}}</mat-label>\r\n <mat-select formControlName=\"series\" required (selectionChange)=\"xAxisSelected($event)\">\r\n <mat-option *ngFor=\"let x of cube.axes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field>\r\n <mat-label>{{'XAxis'|translate}}</mat-label>\r\n <mat-select formControlName=\"xAxis\" required (selectionChange)=\"seriesSelected($event)\">\r\n <mat-option *ngFor=\"let x of secondaryAxes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field>\r\n <mat-label>{{'Indices'|translate}}</mat-label>\r\n <mat-select formControlName=\"indices\" multiple>\r\n <mat-option *ngFor=\"let x of cube.indices\" [value]=\"x.name\">{{x.title}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field>\r\n <mat-label>{{'Aggregate'|translate}}</mat-label>\r\n <mat-select formControlName=\"aggregate\" multiple [disabled]=\"!thirdAxes || !thirdAxes.length\">\r\n <mat-option *ngFor=\"let x of thirdAxes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <ng-container *ngIf=\"cube\">\r\n <h2 class=\"mat-title\">{{'Filters'|translate}}</h2>\r\n <bizdoc-designer-cube-filter [cube]=\"cube\" [form]=\"form.get('filters')\" [model]=\"options.filters\"></bizdoc-designer-cube-filter>\r\n </ng-container>\r\n </form>\r\n <div>\r\n <!--<bizdoc-cube-sum *ngIf=\"options.xAxis\" [xAxis]=\"options.xAxis\"\r\n [filters]=\"options.filters || {}\"\r\n [parentAxis]=\"options.series\"\r\n [scope]=\"options.scope\"\r\n [periodPolicy]=\"options.periodPolicy\"\r\n [indices]=\"options.indices\"\r\n [cube]=\"cube.name\"></bizdoc-cube-sum>-->\r\n </div>\r\n</ng-container>\r\n<ng-template #info></ng-template>\r\n" }]
|
161
|
+
}], null, null); })();
|
162
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3VtLXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9jb25maWd1cmF0aW9uLWRlc2lnbmVyL2VsZW1lbnRzL3N1bS12aWV3LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvYWRtaW4vY29uZmlndXJhdGlvbi1kZXNpZ25lci9lbGVtZW50cy9zdW0tdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDNUMsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBRWxELE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7Ozs7Ozs7O0lDQ3hELHFDQUF5RDtJQUFBLFlBQXFCO0lBQUEsaUJBQWE7OztJQUFuRCxpQ0FBZ0I7SUFBQyxlQUFxQjtJQUFyQiw2Q0FBcUI7OztJQU05RSxxQ0FBNkQ7SUFBQSxZQUFxQjtJQUFBLGlCQUFhOzs7SUFBbkQsaUNBQWdCO0lBQUMsZUFBcUI7SUFBckIsNkNBQXFCOzs7SUFNbEYscUNBQTREO0lBQUEsWUFBVztJQUFBLGlCQUFhOzs7SUFBekMsa0NBQWdCO0lBQUMsZUFBVztJQUFYLGlDQUFXOzs7SUFNdkUscUNBQXlEO0lBQUEsWUFBcUI7SUFBQSxpQkFBYTs7O0lBQW5ELGtDQUFnQjtJQUFDLGVBQXFCO0lBQXJCLCtDQUFxQjs7O0lBR2xGLDZCQUEyQjtJQUN6Qiw4QkFBc0I7SUFBQSxZQUF1Qjs7SUFBQSxpQkFBSztJQUNsRCxrREFBZ0k7SUFDbEksMEJBQWU7OztJQUZTLGVBQXVCO0lBQXZCLHFEQUF1QjtJQUNoQixlQUFhO0lBQWIsa0NBQWEsb0NBQUEsaUNBQUE7Ozs7SUE1QmhELDZCQUFpRDtJQUMvQywrQkFBMkQscUJBQUEsZ0JBQUE7SUFFNUMsWUFBc0I7O0lBQUEsaUJBQVk7SUFDN0MscUNBQXdGO0lBQTFDLDRNQUFtQixlQUFBLDZCQUFxQixDQUFBLElBQUM7SUFDckYsb0dBQTJGO0lBQzdGLGlCQUFhLEVBQUE7SUFFZixzQ0FBZ0IsZ0JBQUE7SUFDSCxhQUFxQjs7SUFBQSxpQkFBWTtJQUM1QyxzQ0FBd0Y7SUFBM0MsNk1BQW1CLGVBQUEsOEJBQXNCLENBQUEsSUFBQztJQUNyRixzR0FBK0Y7SUFDakcsaUJBQWEsRUFBQTtJQUVmLHVDQUFnQixpQkFBQTtJQUNILGFBQXVCOztJQUFBLGlCQUFZO0lBQzlDLHNDQUErQztJQUM3QyxzR0FBb0Y7SUFDdEYsaUJBQWEsRUFBQTtJQUVmLHVDQUFnQixpQkFBQTtJQUNILGFBQXlCOztJQUFBLGlCQUFZO0lBQ2hELHNDQUE4RjtJQUM1RixzR0FBMkY7SUFDN0YsaUJBQWEsRUFBQTtJQUVmLDBHQUdlO0lBQ2pCLGlCQUFPO0lBQ1AsdUJBUU07SUFDUiwwQkFBZTs7O0lBdkNZLGVBQWtCO0lBQWxCLHVDQUFrQjtJQUU1QixlQUFzQjtJQUF0QixxREFBc0I7SUFFTCxlQUFZO0lBQVosMENBQVk7SUFJN0IsZUFBcUI7SUFBckIscURBQXFCO0lBRUosZUFBZ0I7SUFBaEIsOENBQWdCO0lBSWpDLGVBQXVCO0lBQXZCLHVEQUF1QjtJQUVOLGVBQWU7SUFBZiw2Q0FBZTtJQUloQyxlQUF5QjtJQUF6Qix5REFBeUI7SUFDYSxlQUE0QztJQUE1Qyx3RUFBNEM7SUFDakUsZUFBWTtJQUFaLDBDQUFZO0lBRzNCLGVBQVU7SUFBVixrQ0FBVTs7O0lEbEJoQixzQkFBc0IsU0FBdEIsc0JBQXVCLFNBQVEsNEJBQThDOzs7UUFDL0UsU0FBSSxHQUFHLElBQUksQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDO1lBQzdCLElBQUksRUFBRSxJQUFJO1lBQ1YsS0FBSyxFQUFFLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRSxVQUFVLENBQUMsUUFBUSxDQUFDO1lBQ2xELE1BQU0sRUFBRSxJQUFJO1lBQ1osT0FBTyxFQUFFLElBQUk7WUFDYixPQUFPLEVBQUUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDO1lBQzNCLFlBQVksRUFBRSxJQUFJO1lBQ2xCLFNBQVMsRUFBRSxJQUFJO1NBQ2hCLENBQUMsQ0FBQztLQUNKO0NBQUEsQ0FBQTtzUUFWWSxzQkFBc0IsU0FBdEIsc0JBQXNCO3lFQUF0QixzQkFBc0I7UUNSbkMsMkZBd0NlO1FBQ2Ysd0hBQWlDOzs7UUF6Q2xCLDBDQUF1QixpQkFBQTs7QURRekIsc0JBQXNCO0lBRGxDLE1BQU0sQ0FBQyxFQUFFLFFBQVEsRUFBRSxzQkFBc0IsRUFBRSxDQUFDO0dBQ2hDLHNCQUFzQixDQVVsQztTQVZZLHNCQUFzQjt1RkFBdEIsc0JBQXNCO2NBRmxDLFNBQVMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IFZhbGlkYXRvcnMgfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcclxuaW1wb3J0IHsgQml6RG9jIH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvZGVjb3JhdG9yc1wiO1xyXG5pbXBvcnQgeyBTdW1TZXR0aW5nc01vZGVsIH0gZnJvbSBcIi4uLy4uLy4uL3ZpZXdzL2N1YmUvc3VtLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBEZXNpZ25lckN1YmVFbGVtZW50Q29tcG9uZW50IH0gZnJvbSBcIi4uL2Rlc2lnbmVyLmJhc2VcIjtcclxuXHJcbkBDb21wb25lbnQoeyB0ZW1wbGF0ZVVybDogJ3N1bS12aWV3LmNvbXBvbmVudC5odG1sJyB9KVxyXG5AQml6RG9jKHsgc2VsZWN0b3I6ICdwZXJpb2Qtdmlldy1kZXNpZ25lcicgfSlcclxuZXhwb3J0IGNsYXNzIFN1bVZpZXdEZXNpZ25Db21wb25lbnQgZXh0ZW5kcyBEZXNpZ25lckN1YmVFbGVtZW50Q29tcG9uZW50PFN1bVNldHRpbmdzTW9kZWw+IGltcGxlbWVudHMgT25Jbml0IHtcclxuICByZWFkb25seSBmb3JtID0gdGhpcy5fZmIuZ3JvdXAoe1xyXG4gICAgY3ViZTogbnVsbCxcclxuICAgIHhBeGlzOiB0aGlzLl9mYi5jb250cm9sKG51bGwsIFZhbGlkYXRvcnMucmVxdWlyZWQpLFxyXG4gICAgc2VyaWVzOiBudWxsLFxyXG4gICAgaW5kaWNlczogbnVsbCxcclxuICAgIGZpbHRlcnM6IHRoaXMuX2ZiLmdyb3VwKHt9KSxcclxuICAgIHBlcmlvZFBvbGljeTogbnVsbCxcclxuICAgIGFnZ3JlZ2F0ZTogbnVsbCxcclxuICB9KTtcclxufVxyXG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwibW9kZSA9PT0gJ2VkaXQnOyBlbHNlIGluZm9cIj5cclxuICA8Zm9ybSBhdXRvY29tcGxldGU9XCJvZmZcIiBbZm9ybUdyb3VwXT1cImZvcm1cIiBjbGFzcz1cImNvbHVtblwiPlxyXG4gICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8bWF0LWxhYmVsPnt7J1Nlcmllcyd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwic2VyaWVzXCIgcmVxdWlyZWQgKHNlbGVjdGlvbkNoYW5nZSk9XCJ4QXhpc1NlbGVjdGVkKCRldmVudClcIj5cclxuICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgeCBvZiBjdWJlLmF4ZXNcIiBbdmFsdWVdPVwieC5uYW1lXCI+e3t4LnRpdGxlIHx8IHgubmFtZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8bWF0LWxhYmVsPnt7J1hBeGlzJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJ4QXhpc1wiIHJlcXVpcmVkIChzZWxlY3Rpb25DaGFuZ2UpPVwic2VyaWVzU2VsZWN0ZWQoJGV2ZW50KVwiPlxyXG4gICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCB4IG9mIHNlY29uZGFyeUF4ZXNcIiBbdmFsdWVdPVwieC5uYW1lXCI+e3t4LnRpdGxlIHx8IHgubmFtZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8bWF0LWxhYmVsPnt7J0luZGljZXMnfHRyYW5zbGF0ZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgIDxtYXQtc2VsZWN0IGZvcm1Db250cm9sTmFtZT1cImluZGljZXNcIiBtdWx0aXBsZT5cclxuICAgICAgICA8bWF0LW9wdGlvbiAqbmdGb3I9XCJsZXQgeCBvZiBjdWJlLmluZGljZXNcIiBbdmFsdWVdPVwieC5uYW1lXCI+e3t4LnRpdGxlfX08L21hdC1vcHRpb24+XHJcbiAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICA8bWF0LWZvcm0tZmllbGQ+XHJcbiAgICAgIDxtYXQtbGFiZWw+e3snQWdncmVnYXRlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJhZ2dyZWdhdGVcIiBtdWx0aXBsZSBbZGlzYWJsZWRdPVwiIXRoaXJkQXhlcyB8fCAhdGhpcmRBeGVzLmxlbmd0aFwiPlxyXG4gICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCB4IG9mIHRoaXJkQXhlc1wiIFt2YWx1ZV09XCJ4Lm5hbWVcIj57e3gudGl0bGUgfHwgeC5uYW1lfX08L21hdC1vcHRpb24+XHJcbiAgICAgIDwvbWF0LXNlbGVjdD5cclxuICAgIDwvbWF0LWZvcm0tZmllbGQ+XHJcbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiY3ViZVwiPlxyXG4gICAgICA8aDIgY2xhc3M9XCJtYXQtdGl0bGVcIj57eydGaWx0ZXJzJ3x0cmFuc2xhdGV9fTwvaDI+XHJcbiAgICAgIDxiaXpkb2MtZGVzaWduZXItY3ViZS1maWx0ZXIgW2N1YmVdPVwiY3ViZVwiIFtmb3JtXT1cImZvcm0uZ2V0KCdmaWx0ZXJzJylcIiBbbW9kZWxdPVwib3B0aW9ucy5maWx0ZXJzXCI+PC9iaXpkb2MtZGVzaWduZXItY3ViZS1maWx0ZXI+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICA8L2Zvcm0+XHJcbiAgPGRpdj5cclxuICAgIDwhLS08Yml6ZG9jLWN1YmUtc3VtICpuZ0lmPVwib3B0aW9ucy54QXhpc1wiIFt4QXhpc109XCJvcHRpb25zLnhBeGlzXCJcclxuICAgICAgICAgICAgICAgICAgICAgW2ZpbHRlcnNdPVwib3B0aW9ucy5maWx0ZXJzIHx8IHt9XCJcclxuICAgICAgICAgICAgICAgICAgICAgW3BhcmVudEF4aXNdPVwib3B0aW9ucy5zZXJpZXNcIlxyXG4gICAgICAgICAgICAgICAgICAgICBbc2NvcGVdPVwib3B0aW9ucy5zY29wZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgIFtwZXJpb2RQb2xpY3ldPVwib3B0aW9ucy5wZXJpb2RQb2xpY3lcIlxyXG4gICAgICAgICAgICAgICAgICAgICBbaW5kaWNlc109XCJvcHRpb25zLmluZGljZXNcIlxyXG4gICAgICAgICAgICAgICAgICAgICBbY3ViZV09XCJjdWJlLm5hbWVcIj48L2JpemRvYy1jdWJlLXN1bT4tLT5cclxuICA8L2Rpdj5cclxuPC9uZy1jb250YWluZXI+XHJcbjxuZy10ZW1wbGF0ZSAjaW5mbz48L25nLXRlbXBsYXRlPlxyXG4iXX0=
|
@@ -9,6 +9,94 @@ import * as i3 from "@angular/material/core";
|
|
9
9
|
import * as i4 from "@angular/material/form-field";
|
10
10
|
import * as i5 from "@angular/material/select";
|
11
11
|
import * as i6 from "../../../core/pipes/translate.pipe";
|
12
|
+
function TasksReportDesignComponent_ng_container_0_mat_form_field_2_mat_option_8_Template(rf, ctx) { if (rf & 1) {
|
13
|
+
i0.ɵɵelementStart(0, "mat-option", 9);
|
14
|
+
i0.ɵɵtext(1);
|
15
|
+
i0.ɵɵelementEnd();
|
16
|
+
} if (rf & 2) {
|
17
|
+
const c_r7 = ctx.$implicit;
|
18
|
+
i0.ɵɵproperty("value", c_r7);
|
19
|
+
i0.ɵɵadvance(1);
|
20
|
+
i0.ɵɵtextInterpolate(c_r7.title);
|
21
|
+
} }
|
22
|
+
function TasksReportDesignComponent_ng_container_0_mat_form_field_2_Template(rf, ctx) { if (rf & 1) {
|
23
|
+
const _r9 = i0.ɵɵgetCurrentView();
|
24
|
+
i0.ɵɵelementStart(0, "mat-form-field")(1, "mat-label");
|
25
|
+
i0.ɵɵtext(2);
|
26
|
+
i0.ɵɵpipe(3, "translate");
|
27
|
+
i0.ɵɵelementEnd();
|
28
|
+
i0.ɵɵelementStart(4, "mat-select", 8);
|
29
|
+
i0.ɵɵlistener("selectionChange", function TasksReportDesignComponent_ng_container_0_mat_form_field_2_Template_mat_select_selectionChange_4_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r8 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r8.cubeSelected($event)); });
|
30
|
+
i0.ɵɵelementStart(5, "mat-option");
|
31
|
+
i0.ɵɵtext(6);
|
32
|
+
i0.ɵɵpipe(7, "translate");
|
33
|
+
i0.ɵɵelementEnd();
|
34
|
+
i0.ɵɵtemplate(8, TasksReportDesignComponent_ng_container_0_mat_form_field_2_mat_option_8_Template, 2, 2, "mat-option", 5);
|
35
|
+
i0.ɵɵelementEnd()();
|
36
|
+
} if (rf & 2) {
|
37
|
+
const ctx_r3 = i0.ɵɵnextContext(2);
|
38
|
+
i0.ɵɵadvance(2);
|
39
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 3, "Cube"));
|
40
|
+
i0.ɵɵadvance(4);
|
41
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(7, 5, "Default"));
|
42
|
+
i0.ɵɵadvance(2);
|
43
|
+
i0.ɵɵproperty("ngForOf", ctx_r3.cubes);
|
44
|
+
} }
|
45
|
+
function TasksReportDesignComponent_ng_container_0_mat_option_8_Template(rf, ctx) { if (rf & 1) {
|
46
|
+
i0.ɵɵelementStart(0, "mat-option", 9);
|
47
|
+
i0.ɵɵtext(1);
|
48
|
+
i0.ɵɵelementEnd();
|
49
|
+
} if (rf & 2) {
|
50
|
+
const x_r10 = ctx.$implicit;
|
51
|
+
i0.ɵɵproperty("value", x_r10.name);
|
52
|
+
i0.ɵɵadvance(1);
|
53
|
+
i0.ɵɵtextInterpolate(x_r10.title || x_r10.name);
|
54
|
+
} }
|
55
|
+
function TasksReportDesignComponent_ng_container_0_mat_option_14_Template(rf, ctx) { if (rf & 1) {
|
56
|
+
i0.ɵɵelementStart(0, "mat-option", 10);
|
57
|
+
i0.ɵɵtext(1);
|
58
|
+
i0.ɵɵelementEnd();
|
59
|
+
} if (rf & 2) {
|
60
|
+
const x_r11 = ctx.$implicit;
|
61
|
+
i0.ɵɵproperty("value", x_r11.name);
|
62
|
+
i0.ɵɵadvance(1);
|
63
|
+
i0.ɵɵtextInterpolate(x_r11.title || x_r11.name);
|
64
|
+
} }
|
65
|
+
function TasksReportDesignComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
66
|
+
i0.ɵɵelementContainerStart(0);
|
67
|
+
i0.ɵɵelementStart(1, "form", 2);
|
68
|
+
i0.ɵɵtemplate(2, TasksReportDesignComponent_ng_container_0_mat_form_field_2_Template, 9, 7, "mat-form-field", 3);
|
69
|
+
i0.ɵɵelementStart(3, "mat-form-field")(4, "mat-label");
|
70
|
+
i0.ɵɵtext(5);
|
71
|
+
i0.ɵɵpipe(6, "translate");
|
72
|
+
i0.ɵɵelementEnd();
|
73
|
+
i0.ɵɵelementStart(7, "mat-select", 4);
|
74
|
+
i0.ɵɵtemplate(8, TasksReportDesignComponent_ng_container_0_mat_option_8_Template, 2, 2, "mat-option", 5);
|
75
|
+
i0.ɵɵelementEnd()();
|
76
|
+
i0.ɵɵelementStart(9, "mat-form-field")(10, "mat-label");
|
77
|
+
i0.ɵɵtext(11);
|
78
|
+
i0.ɵɵpipe(12, "translate");
|
79
|
+
i0.ɵɵelementEnd();
|
80
|
+
i0.ɵɵelementStart(13, "mat-select", 6);
|
81
|
+
i0.ɵɵtemplate(14, TasksReportDesignComponent_ng_container_0_mat_option_14_Template, 2, 2, "mat-option", 7);
|
82
|
+
i0.ɵɵelementEnd()()();
|
83
|
+
i0.ɵɵelementContainerEnd();
|
84
|
+
} if (rf & 2) {
|
85
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
86
|
+
i0.ɵɵadvance(1);
|
87
|
+
i0.ɵɵproperty("formGroup", ctx_r0.form);
|
88
|
+
i0.ɵɵadvance(1);
|
89
|
+
i0.ɵɵproperty("ngIf", ctx_r0.cubes.length > 1);
|
90
|
+
i0.ɵɵadvance(3);
|
91
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(6, 6, "XAxis"));
|
92
|
+
i0.ɵɵadvance(3);
|
93
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.cube == null ? null : ctx_r0.cube.axes);
|
94
|
+
i0.ɵɵadvance(3);
|
95
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(12, 8, "States"));
|
96
|
+
i0.ɵɵadvance(3);
|
97
|
+
i0.ɵɵproperty("ngForOf", ctx_r0.states);
|
98
|
+
} }
|
99
|
+
function TasksReportDesignComponent_ng_template_1_Template(rf, ctx) { }
|
12
100
|
let TasksReportDesignComponent = class TasksReportDesignComponent extends DesignerCubeElementComponent {
|
13
101
|
constructor() {
|
14
102
|
super(...arguments);
|
@@ -24,14 +112,20 @@ let TasksReportDesignComponent = class TasksReportDesignComponent extends Design
|
|
24
112
|
this.states = this._ref.designer.states;
|
25
113
|
}
|
26
114
|
};
|
27
|
-
TasksReportDesignComponent.ɵfac =
|
28
|
-
TasksReportDesignComponent.ɵcmp = i0.ɵɵ
|
115
|
+
TasksReportDesignComponent.ɵfac = /*@__PURE__*/ function () { let ɵTasksReportDesignComponent_BaseFactory; return function TasksReportDesignComponent_Factory(t) { return (ɵTasksReportDesignComponent_BaseFactory || (ɵTasksReportDesignComponent_BaseFactory = i0.ɵɵgetInheritedFactory(TasksReportDesignComponent)))(t || TasksReportDesignComponent); }; }();
|
116
|
+
TasksReportDesignComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TasksReportDesignComponent, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [[4, "ngIf", "ngIfElse"], ["info", ""], ["autocomplete", "off", 1, "column", 3, "formGroup"], [4, "ngIf"], ["formControlName", "axes", "required", "", "multiple", ""], [3, "value", 4, "ngFor", "ngForOf"], ["formControlName", "states", "multiple", ""], ["multiple", "", 3, "value", 4, "ngFor", "ngForOf"], ["required", "", 3, "selectionChange"], [3, "value"], ["multiple", "", 3, "value"]], template: function TasksReportDesignComponent_Template(rf, ctx) { if (rf & 1) {
|
117
|
+
i0.ɵɵtemplate(0, TasksReportDesignComponent_ng_container_0_Template, 15, 10, "ng-container", 0);
|
118
|
+
i0.ɵɵtemplate(1, TasksReportDesignComponent_ng_template_1_Template, 0, 0, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
119
|
+
} if (rf & 2) {
|
120
|
+
const _r1 = i0.ɵɵreference(2);
|
121
|
+
i0.ɵɵproperty("ngIf", ctx.mode === "edit")("ngIfElse", _r1);
|
122
|
+
} }, dependencies: [i1.NgForOf, i1.NgIf, i2.ɵNgNoValidate, i2.NgControlStatus, i2.NgControlStatusGroup, i2.RequiredValidator, i2.FormGroupDirective, i2.FormControlName, i3.MatOption, i4.MatFormField, i4.MatLabel, i5.MatSelect, i6.TranslatePipe], encapsulation: 2 });
|
29
123
|
TasksReportDesignComponent = __decorate([
|
30
124
|
BizDoc({ selector: 'tasks-report-designer' })
|
31
125
|
], TasksReportDesignComponent);
|
32
126
|
export { TasksReportDesignComponent };
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
//# sourceMappingURL=data:application/json;base64,
|
127
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TasksReportDesignComponent, [{
|
128
|
+
type: Component,
|
129
|
+
args: [{ template: "<ng-container *ngIf=\"mode === 'edit'; else info\">\r\n <form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\">\r\n <mat-form-field *ngIf=\"cubes.length>1\">\r\n <mat-label>{{'Cube'|translate}}</mat-label>\r\n <mat-select required (selectionChange)=\"cubeSelected($event)\">\r\n <mat-option>{{'Default'|translate}}</mat-option>\r\n <mat-option *ngFor=\"let c of cubes\" [value]=\"c\">{{c.title}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field>\r\n <mat-label>{{'XAxis'|translate}}</mat-label>\r\n <mat-select formControlName=\"axes\" required multiple >\r\n <mat-option *ngFor=\"let x of cube?.axes\" [value]=\"x.name\">{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n <mat-form-field>\r\n <mat-label>{{'States'|translate}}</mat-label>\r\n <mat-select formControlName=\"states\" multiple>\r\n <mat-option *ngFor=\"let x of states\" [value]=\"x.name\" multiple>{{x.title || x.name}}</mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n </form>\r\n</ng-container>\r\n<!---->\r\n<ng-template #info></ng-template>\r\n" }]
|
130
|
+
}], null, null); })();
|
131
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFza3MtcmVwb3J0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvYWRtaW4vY29uZmlndXJhdGlvbi1kZXNpZ25lci9lbGVtZW50cy90YXNrcy1yZXBvcnQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9hZG1pbi9jb25maWd1cmF0aW9uLWRlc2lnbmVyL2VsZW1lbnRzL3Rhc2tzLXJlcG9ydC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFbEQsT0FBTyxFQUFFLDRCQUE0QixFQUE2QixNQUFNLGtCQUFrQixDQUFDOzs7Ozs7Ozs7SUNHbkYscUNBQWdEO0lBQUEsWUFBVztJQUFBLGlCQUFhOzs7SUFBcEMsNEJBQVc7SUFBQyxlQUFXO0lBQVgsZ0NBQVc7Ozs7SUFKL0Qsc0NBQXVDLGdCQUFBO0lBQzFCLFlBQW9COztJQUFBLGlCQUFZO0lBQzNDLHFDQUE4RDtJQUF6QyxnT0FBbUIsZUFBQSwyQkFBb0IsQ0FBQSxJQUFDO0lBQzNELGtDQUFZO0lBQUEsWUFBdUI7O0lBQUEsaUJBQWE7SUFDaEQseUhBQXdFO0lBQzFFLGlCQUFhLEVBQUE7OztJQUpGLGVBQW9CO0lBQXBCLGtEQUFvQjtJQUVqQixlQUF1QjtJQUF2QixxREFBdUI7SUFDVCxlQUFRO0lBQVIsc0NBQVE7OztJQU1sQyxxQ0FBMEQ7SUFBQSxZQUFxQjtJQUFBLGlCQUFhOzs7SUFBbkQsa0NBQWdCO0lBQUMsZUFBcUI7SUFBckIsK0NBQXFCOzs7SUFNL0Usc0NBQStEO0lBQUEsWUFBcUI7SUFBQSxpQkFBYTs7O0lBQTVELGtDQUFnQjtJQUFVLGVBQXFCO0lBQXJCLCtDQUFxQjs7O0lBbEI1Riw2QkFBaUQ7SUFDL0MsK0JBQTJEO0lBQ3pELGdIQU1pQjtJQUNqQixzQ0FBZ0IsZ0JBQUE7SUFDSCxZQUFxQjs7SUFBQSxpQkFBWTtJQUM1QyxxQ0FBc0Q7SUFDcEQsd0dBQTRGO0lBQzlGLGlCQUFhLEVBQUE7SUFFZixzQ0FBZ0IsaUJBQUE7SUFDSCxhQUFzQjs7SUFBQSxpQkFBWTtJQUM3QyxzQ0FBOEM7SUFDNUMsMEdBQWlHO0lBQ25HLGlCQUFhLEVBQUEsRUFBQTtJQUduQiwwQkFBZTs7O0lBckJZLGVBQWtCO0lBQWxCLHVDQUFrQjtJQUN4QixlQUFvQjtJQUFwQiw4Q0FBb0I7SUFReEIsZUFBcUI7SUFBckIsbURBQXFCO0lBRUosZUFBYTtJQUFiLHVFQUFhO0lBSTlCLGVBQXNCO0lBQXRCLHFEQUFzQjtJQUVMLGVBQVM7SUFBVCx1Q0FBUzs7O0lEWDlCLDBCQUEwQixTQUExQiwwQkFBMkIsU0FBUSw0QkFBZ0Q7OztRQUNyRixTQUFJLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUM7WUFDN0IsSUFBSSxFQUFFLElBQUk7WUFDVixJQUFJLEVBQUUsSUFBSTtZQUNWLE1BQU0sRUFBRSxJQUFJO1lBQ1osS0FBSyxFQUFFLElBQUk7U0FDWixDQUFDLENBQUM7S0FNSjtJQUpDLFFBQVE7UUFDTixLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7UUFDakIsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUM7SUFDMUMsQ0FBQztDQUNGLENBQUE7MFJBWlksMEJBQTBCLFNBQTFCLDBCQUEwQjs2RUFBMUIsMEJBQTBCO1FDUHZDLCtGQXNCZTtRQUVmLDRIQUFpQzs7O1FBeEJsQiwwQ0FBdUIsaUJBQUE7O0FET3pCLDBCQUEwQjtJQURwQyxNQUFNLENBQUMsRUFBRSxRQUFRLEVBQUUsdUJBQXVCLEVBQUUsQ0FBQztHQUNuQywwQkFBMEIsQ0FZdEM7U0FaWSwwQkFBMEI7dUZBQTFCLDBCQUEwQjtjQUZ0QyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBCaXpEb2MgfSBmcm9tIFwiLi4vLi4vLi4vY29yZS9kZWNvcmF0b3JzXCI7XHJcbmltcG9ydCB7IFRhc2tzU2V0dGluZ3NNb2RlbCB9IGZyb20gXCIuLi8uLi8uLi9yZXBvcnRzL3Rhc2tzL3Rhc2tzLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQgeyBEZXNpZ25lckN1YmVFbGVtZW50Q29tcG9uZW50LCBFbGVtZW50SW5mbywgRWxlbWVudE1vZGVsIH0gZnJvbSBcIi4uL2Rlc2lnbmVyLmJhc2VcIjtcclxuXHJcbkBDb21wb25lbnQoeyB0ZW1wbGF0ZVVybDogJ3Rhc2tzLXJlcG9ydC5jb21wb25lbnQuaHRtbCcgfSlcclxuICBAQml6RG9jKHsgc2VsZWN0b3I6ICd0YXNrcy1yZXBvcnQtZGVzaWduZXInIH0pXHJcbmV4cG9ydCBjbGFzcyBUYXNrc1JlcG9ydERlc2lnbkNvbXBvbmVudCBleHRlbmRzIERlc2lnbmVyQ3ViZUVsZW1lbnRDb21wb25lbnQ8VGFza3NTZXR0aW5nc01vZGVsPiBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgcmVhZG9ubHkgZm9ybSA9IHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgIGN1YmU6IG51bGwsXHJcbiAgICBheGVzOiBudWxsLFxyXG4gICAgc3RhdGVzOiBudWxsLFxyXG4gICAgc2NvcGU6IG51bGxcclxuICB9KTtcclxuICBzdGF0ZXM6IEVsZW1lbnRJbmZvW107XHJcbiAgbmdPbkluaXQoKSB7XHJcbiAgICBzdXBlci5uZ09uSW5pdCgpO1xyXG4gICAgdGhpcy5zdGF0ZXMgPSB0aGlzLl9yZWYuZGVzaWduZXIuc3RhdGVzO1xyXG4gIH1cclxufVxyXG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwibW9kZSA9PT0gJ2VkaXQnOyBlbHNlIGluZm9cIj5cclxuICA8Zm9ybSBhdXRvY29tcGxldGU9XCJvZmZcIiBbZm9ybUdyb3VwXT1cImZvcm1cIiBjbGFzcz1cImNvbHVtblwiPlxyXG4gICAgPG1hdC1mb3JtLWZpZWxkICpuZ0lmPVwiY3ViZXMubGVuZ3RoPjFcIj5cclxuICAgICAgPG1hdC1sYWJlbD57eydDdWJlJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICA8bWF0LXNlbGVjdCByZXF1aXJlZCAoc2VsZWN0aW9uQ2hhbmdlKT1cImN1YmVTZWxlY3RlZCgkZXZlbnQpXCI+XHJcbiAgICAgICAgPG1hdC1vcHRpb24+e3snRGVmYXVsdCd8dHJhbnNsYXRlfX08L21hdC1vcHRpb24+XHJcbiAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IGMgb2YgY3ViZXNcIiBbdmFsdWVdPVwiY1wiPnt7Yy50aXRsZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8bWF0LWxhYmVsPnt7J1hBeGlzJ3x0cmFuc2xhdGV9fTwvbWF0LWxhYmVsPlxyXG4gICAgICA8bWF0LXNlbGVjdCBmb3JtQ29udHJvbE5hbWU9XCJheGVzXCIgcmVxdWlyZWQgbXVsdGlwbGUgPlxyXG4gICAgICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCB4IG9mIGN1YmU/LmF4ZXNcIiBbdmFsdWVdPVwieC5uYW1lXCI+e3t4LnRpdGxlIHx8IHgubmFtZX19PC9tYXQtb3B0aW9uPlxyXG4gICAgICA8L21hdC1zZWxlY3Q+XHJcbiAgICA8L21hdC1mb3JtLWZpZWxkPlxyXG4gICAgPG1hdC1mb3JtLWZpZWxkPlxyXG4gICAgICA8bWF0LWxhYmVsPnt7J1N0YXRlcyd8dHJhbnNsYXRlfX08L21hdC1sYWJlbD5cclxuICAgICAgPG1hdC1zZWxlY3QgZm9ybUNvbnRyb2xOYW1lPVwic3RhdGVzXCIgbXVsdGlwbGU+XHJcbiAgICAgICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IHggb2Ygc3RhdGVzXCIgW3ZhbHVlXT1cIngubmFtZVwiIG11bHRpcGxlPnt7eC50aXRsZSB8fCB4Lm5hbWV9fTwvbWF0LW9wdGlvbj5cclxuICAgICAgPC9tYXQtc2VsZWN0PlxyXG4gICAgPC9tYXQtZm9ybS1maWVsZD5cclxuICA8L2Zvcm0+XHJcbjwvbmctY29udGFpbmVyPlxyXG48IS0tLS0+XHJcbjxuZy10ZW1wbGF0ZSAjaW5mbz48L25nLXRlbXBsYXRlPlxyXG4iXX0=
|
@@ -7,6 +7,18 @@ import * as i1 from "@angular/common";
|
|
7
7
|
import * as i2 from "@angular/forms";
|
8
8
|
import * as i3 from "@angular/material/slide-toggle";
|
9
9
|
import * as i4 from "../../../core/pipes/translate.pipe";
|
10
|
+
function TypeDesignComponent_form_0_Template(rf, ctx) { if (rf & 1) {
|
11
|
+
i0.ɵɵelementStart(0, "form", 2)(1, "mat-slide-toggle", 3);
|
12
|
+
i0.ɵɵtext(2);
|
13
|
+
i0.ɵɵpipe(3, "translate");
|
14
|
+
i0.ɵɵelementEnd()();
|
15
|
+
} if (rf & 2) {
|
16
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
17
|
+
i0.ɵɵproperty("formGroup", ctx_r0.form);
|
18
|
+
i0.ɵɵadvance(2);
|
19
|
+
i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(3, 2, "Assignable"));
|
20
|
+
} }
|
21
|
+
function TypeDesignComponent_ng_template_1_Template(rf, ctx) { }
|
10
22
|
let TypeDesignComponent = class TypeDesignComponent extends DesignerTypeElementComponent {
|
11
23
|
constructor() {
|
12
24
|
super(...arguments);
|
@@ -15,14 +27,20 @@ let TypeDesignComponent = class TypeDesignComponent extends DesignerTypeElementC
|
|
15
27
|
});
|
16
28
|
}
|
17
29
|
};
|
18
|
-
TypeDesignComponent.ɵfac =
|
19
|
-
TypeDesignComponent.ɵcmp = i0.ɵɵ
|
30
|
+
TypeDesignComponent.ɵfac = /*@__PURE__*/ function () { let ɵTypeDesignComponent_BaseFactory; return function TypeDesignComponent_Factory(t) { return (ɵTypeDesignComponent_BaseFactory || (ɵTypeDesignComponent_BaseFactory = i0.ɵɵgetInheritedFactory(TypeDesignComponent)))(t || TypeDesignComponent); }; }();
|
31
|
+
TypeDesignComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TypeDesignComponent, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [["autocomplete", "off", "class", "column", 3, "formGroup", 4, "ngIf", "ngIfElse"], ["info", ""], ["autocomplete", "off", 1, "column", 3, "formGroup"], ["formControlName", "assignable"]], template: function TypeDesignComponent_Template(rf, ctx) { if (rf & 1) {
|
32
|
+
i0.ɵɵtemplate(0, TypeDesignComponent_form_0_Template, 4, 4, "form", 0);
|
33
|
+
i0.ɵɵtemplate(1, TypeDesignComponent_ng_template_1_Template, 0, 0, "ng-template", null, 1, i0.ɵɵtemplateRefExtractor);
|
34
|
+
} if (rf & 2) {
|
35
|
+
const _r1 = i0.ɵɵreference(2);
|
36
|
+
i0.ɵɵproperty("ngIf", ctx.mode === "edit")("ngIfElse", _r1);
|
37
|
+
} }, dependencies: [i1.NgIf, i2.ɵNgNoValidate, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i3.MatSlideToggle, i4.TranslatePipe], encapsulation: 2 });
|
20
38
|
TypeDesignComponent = __decorate([
|
21
39
|
BizDoc({ selector: 'type-designer' })
|
22
40
|
], TypeDesignComponent);
|
23
41
|
export { TypeDesignComponent };
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
//# sourceMappingURL=data:application/json;base64,
|
42
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TypeDesignComponent, [{
|
43
|
+
type: Component,
|
44
|
+
args: [{ template: "<form autocomplete=\"off\" [formGroup]=\"form\" class=\"column\" *ngIf=\"mode === 'edit'; else info\">\r\n <mat-slide-toggle formControlName=\"assignable\">{{'Assignable'|translate}}</mat-slide-toggle>\r\n</form>\r\n<!---->\r\n<ng-template #info>\r\n</ng-template>\r\n" }]
|
45
|
+
}], null, null); })();
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvdHlwZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2FkbWluL2NvbmZpZ3VyYXRpb24tZGVzaWduZXIvZWxlbWVudHMvdHlwZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUxQyxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDbEQsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7Ozs7SUNIaEUsK0JBQThGLDBCQUFBO0lBQzdDLFlBQTBCOztJQUFBLGlCQUFtQixFQUFBOzs7SUFEckUsdUNBQWtCO0lBQ00sZUFBMEI7SUFBMUIsd0RBQTBCOzs7SURNOUQsbUJBQW1CLFNBQW5CLG1CQUFvQixTQUFRLDRCQUE0Qjs7O1FBQzFELFNBQUksR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQztZQUM3QixVQUFVLEVBQUUsSUFBSTtTQUNqQixDQUFDLENBQUM7S0FDSjtDQUFBLENBQUE7dVBBSlksbUJBQW1CLFNBQW5CLG1CQUFtQjtzRUFBbkIsbUJBQW1CO1FDUGhDLHNFQUVPO1FBRVAscUhBQ2M7OztRQUw4QywwQ0FBdUIsaUJBQUE7O0FET3RFLG1CQUFtQjtJQUQvQixNQUFNLENBQUMsRUFBRSxRQUFRLEVBQUUsZUFBZSxFQUFFLENBQUM7R0FDekIsbUJBQW1CLENBSS9CO1NBSlksbUJBQW1CO3VGQUFuQixtQkFBbUI7Y0FGL0IsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IFZhbGlkYXRvcnMgfSBmcm9tIFwiQGFuZ3VsYXIvZm9ybXNcIjtcclxuaW1wb3J0IHsgQml6RG9jIH0gZnJvbSBcIi4uLy4uLy4uL2NvcmUvZGVjb3JhdG9yc1wiO1xyXG5pbXBvcnQgeyBEZXNpZ25lclR5cGVFbGVtZW50Q29tcG9uZW50IH0gZnJvbSBcIi4uL2Rlc2lnbmVyLmJhc2VcIjtcclxuXHJcbkBDb21wb25lbnQoeyB0ZW1wbGF0ZVVybDogJ3R5cGUuY29tcG9uZW50Lmh0bWwnIH0pXHJcbkBCaXpEb2MoeyBzZWxlY3RvcjogJ3R5cGUtZGVzaWduZXInIH0pXHJcbmV4cG9ydCBjbGFzcyBUeXBlRGVzaWduQ29tcG9uZW50IGV4dGVuZHMgRGVzaWduZXJUeXBlRWxlbWVudENvbXBvbmVudCB7XHJcbiAgcmVhZG9ubHkgZm9ybSA9IHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgIGFzc2lnbmFibGU6IG51bGxcclxuICB9KTtcclxufVxyXG4iLCI8Zm9ybSBhdXRvY29tcGxldGU9XCJvZmZcIiBbZm9ybUdyb3VwXT1cImZvcm1cIiBjbGFzcz1cImNvbHVtblwiICpuZ0lmPVwibW9kZSA9PT0gJ2VkaXQnOyBlbHNlIGluZm9cIj5cclxuICA8bWF0LXNsaWRlLXRvZ2dsZSBmb3JtQ29udHJvbE5hbWU9XCJhc3NpZ25hYmxlXCI+e3snQXNzaWduYWJsZSd8dHJhbnNsYXRlfX08L21hdC1zbGlkZS10b2dnbGU+XHJcbjwvZm9ybT5cclxuPCEtLS0tPlxyXG48bmctdGVtcGxhdGUgI2luZm8+XHJcbjwvbmctdGVtcGxhdGU+XHJcbiJdfQ==
|