@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
@@ -10,6 +10,35 @@ import * as i2 from "@angular/common";
|
|
10
10
|
import * as i3 from "@angular/forms";
|
11
11
|
import * as i4 from "@angular/material/form-field";
|
12
12
|
import * as i5 from "../controls/auto-complete.input";
|
13
|
+
function AutocompleteField_mat_label_1_Template(rf, ctx) { if (rf & 1) {
|
14
|
+
i0.ɵɵelementStart(0, "mat-label");
|
15
|
+
i0.ɵɵtext(1);
|
16
|
+
i0.ɵɵelementEnd();
|
17
|
+
} if (rf & 2) {
|
18
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
19
|
+
i0.ɵɵadvance(1);
|
20
|
+
i0.ɵɵtextInterpolate(ctx_r0.field.label || ctx_r0.field.name);
|
21
|
+
} }
|
22
|
+
function AutocompleteField_mat_hint_3_Template(rf, ctx) { if (rf & 1) {
|
23
|
+
i0.ɵɵelementStart(0, "mat-hint");
|
24
|
+
i0.ɵɵtext(1);
|
25
|
+
i0.ɵɵelementEnd();
|
26
|
+
} if (rf & 2) {
|
27
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
28
|
+
i0.ɵɵadvance(1);
|
29
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r1.field.hint, "");
|
30
|
+
} }
|
31
|
+
function AutocompleteField_mat_error_5_Template(rf, ctx) { if (rf & 1) {
|
32
|
+
i0.ɵɵelementStart(0, "mat-error");
|
33
|
+
i0.ɵɵtext(1);
|
34
|
+
i0.ɵɵelementEnd();
|
35
|
+
} if (rf & 2) {
|
36
|
+
const v_r3 = ctx.$implicit;
|
37
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
38
|
+
i0.ɵɵstyleProp("display", ctx_r2.control.hasError(v_r3.type) ? "" : "none");
|
39
|
+
i0.ɵɵadvance(1);
|
40
|
+
i0.ɵɵtextInterpolate1(" ", v_r3.message, " ");
|
41
|
+
} }
|
13
42
|
/** layout component*/
|
14
43
|
export class AutocompleteField extends FieldBase {
|
15
44
|
constructor(_ds) {
|
@@ -28,20 +57,35 @@ export class AutocompleteField extends FieldBase {
|
|
28
57
|
this._destroy.complete();
|
29
58
|
}
|
30
59
|
}
|
31
|
-
AutocompleteField.ɵfac =
|
32
|
-
AutocompleteField.ɵcmp = i0.ɵɵ
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
i0.ɵɵ
|
42
|
-
|
43
|
-
|
44
|
-
|
60
|
+
AutocompleteField.ɵfac = function AutocompleteField_Factory(t) { return new (t || AutocompleteField)(i0.ɵɵdirectiveInject(i1.DatasourceService)); };
|
61
|
+
AutocompleteField.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AutocompleteField, selectors: [["ng-component"]], viewQuery: function AutocompleteField_Query(rf, ctx) { if (rf & 1) {
|
62
|
+
i0.ɵɵviewQuery(TypeAutocomplete, 5);
|
63
|
+
} if (rf & 2) {
|
64
|
+
let _t;
|
65
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.input = _t.first);
|
66
|
+
} }, inputs: { params: "params" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 6, vars: 6, consts: [[4, "ngIf"], [3, "placeholder", "formControl", "required"], [3, "display", 4, "ngFor", "ngForOf"]], template: function AutocompleteField_Template(rf, ctx) { if (rf & 1) {
|
67
|
+
i0.ɵɵelementStart(0, "mat-form-field");
|
68
|
+
i0.ɵɵtemplate(1, AutocompleteField_mat_label_1_Template, 2, 1, "mat-label", 0);
|
69
|
+
i0.ɵɵelement(2, "bizdoc-autocomplete", 1);
|
70
|
+
i0.ɵɵtemplate(3, AutocompleteField_mat_hint_3_Template, 2, 1, "mat-hint", 0);
|
71
|
+
i0.ɵɵelementContainerStart(4);
|
72
|
+
i0.ɵɵtemplate(5, AutocompleteField_mat_error_5_Template, 2, 3, "mat-error", 2);
|
73
|
+
i0.ɵɵelementContainerEnd();
|
74
|
+
i0.ɵɵelementEnd();
|
75
|
+
} if (rf & 2) {
|
76
|
+
i0.ɵɵadvance(1);
|
77
|
+
i0.ɵɵproperty("ngIf", ctx.field.placeholder);
|
78
|
+
i0.ɵɵadvance(1);
|
79
|
+
i0.ɵɵproperty("placeholder", ctx.field.placeholder || ctx.field.label || ctx.field.name)("formControl", ctx.control)("required", ctx.field.required);
|
80
|
+
i0.ɵɵadvance(1);
|
81
|
+
i0.ɵɵproperty("ngIf", ctx.field.hint);
|
82
|
+
i0.ɵɵadvance(2);
|
83
|
+
i0.ɵɵproperty("ngForOf", ctx.field.validations);
|
84
|
+
} }, dependencies: [i2.NgForOf, i2.NgIf, i3.NgControlStatus, i3.RequiredValidator, i3.FormControlDirective, i4.MatError, i4.MatFormField, i4.MatHint, i4.MatLabel, i5.TypeAutocomplete], encapsulation: 2 });
|
85
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AutocompleteField, [{
|
86
|
+
type: Component,
|
87
|
+
args: [{
|
88
|
+
template: `<mat-form-field>
|
45
89
|
<mat-label *ngIf="field.placeholder">{{field.label || field.name}}</mat-label>
|
46
90
|
<bizdoc-autocomplete [placeholder]="field.placeholder || field.label || field.name" [formControl]=control
|
47
91
|
[required]="field.required" ></bizdoc-autocomplete>
|
@@ -50,11 +94,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.3", ngImpor
|
|
50
94
|
<mat-error *ngFor="let v of field.validations" [style.display]="control.hasError(v.type) ? '': 'none'"> {{ v.message }} </mat-error>
|
51
95
|
</ng-container>
|
52
96
|
</mat-form-field>`
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
//# sourceMappingURL=data:application/json;base64,
|
97
|
+
}]
|
98
|
+
}], function () { return [{ type: i1.DatasourceService }]; }, { params: [{
|
99
|
+
type: Input
|
100
|
+
}], input: [{
|
101
|
+
type: ViewChild,
|
102
|
+
args: [TypeAutocomplete]
|
103
|
+
}] }); })();
|
104
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b2NvbXBsZXRlLmZpZWxkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicmFyaWVzL2NvcmUvc3JjL2xpYi9jb3JlL2xheW91dC9hdXRvY29tcGxldGUuZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQXFCLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMvRSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFjLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMzQyxPQUFPLEVBQUUsWUFBWSxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNwRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUVuRSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sY0FBYyxDQUFDOzs7Ozs7OztJQUt2QyxpQ0FBcUM7SUFBQSxZQUE2QjtJQUFBLGlCQUFZOzs7SUFBekMsZUFBNkI7SUFBN0IsNkRBQTZCOzs7SUFHbEUsZ0NBQTZCO0lBQUMsWUFBZ0I7SUFBQSxpQkFBVzs7O0lBQTNCLGVBQWdCO0lBQWhCLGlEQUFnQjs7O0lBRTVDLGlDQUF1RztJQUFDLFlBQWdCO0lBQUEsaUJBQVk7Ozs7SUFBckYsMkVBQXVEO0lBQUUsZUFBZ0I7SUFBaEIsNkNBQWdCOztBQUk1SCxzQkFBc0I7QUFDdEIsTUFBTSxPQUFPLGlCQUFrQixTQUFRLFNBQVM7SUFNNUMsWUFBb0IsR0FBc0I7UUFDdEMsS0FBSyxFQUFFLENBQUM7UUFEUSxRQUFHLEdBQUgsR0FBRyxDQUFtQjtRQUxqQyxZQUFPLEdBQUcsSUFBSSxXQUFXLEVBQUUsQ0FBQztRQUlwQixhQUFRLEdBQUcsSUFBSSxPQUFPLEVBQVEsQ0FBQztJQUdoRCxDQUFDO0lBQ0QsUUFBUTtRQUNKLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU87WUFDbkIsSUFBSSxDQUFDLE1BQU0sR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsQ0FBQyxFQUFFLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQ3RGLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUM5RCxDQUFDO0lBQ0gsS0FBSyxLQUFLLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQzdCLFdBQVc7UUFDUCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ3JCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDN0IsQ0FBQzs7a0ZBbEJRLGlCQUFpQjtvRUFBakIsaUJBQWlCO3VCQUdqQixnQkFBZ0I7Ozs7O1FBZGQsc0NBQWdCO1FBQzdCLDhFQUE4RTtRQUMvRSx5Q0FDb0Q7UUFDbkQsNEVBQXlEO1FBQ3pELDZCQUFjO1FBQ1osOEVBQW9JO1FBQ3RJLDBCQUFlO1FBQ2pCLGlCQUFpQjs7UUFQSCxlQUF1QjtRQUF2Qiw0Q0FBdUI7UUFDZixlQUE4RDtRQUE5RCx3RkFBOEQsNEJBQUEsZ0NBQUE7UUFFdkUsZUFBZ0I7UUFBaEIscUNBQWdCO1FBRUEsZUFBb0I7UUFBcEIsK0NBQW9COzt1RkFLcEMsaUJBQWlCO2NBWjdCLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUU7Ozs7Ozs7O2tCQVFJO2FBQ2pCO29FQUlZLE1BQU07a0JBQWQsS0FBSztZQUNxQixLQUFLO2tCQUFqQyxTQUFTO21CQUFDLGdCQUFnQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uRGVzdHJveSwgT25Jbml0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IE9ic2VydmFibGUsIFN1YmplY3QgfSBmcm9tICdyeGpzJztcclxuaW1wb3J0IHsgZGVib3VuY2VUaW1lLCBzd2l0Y2hNYXAsIHRha2VVbnRpbCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcclxuaW1wb3J0IHsgVHlwZUF1dG9jb21wbGV0ZSB9IGZyb20gJy4uL2NvbnRyb2xzL2F1dG8tY29tcGxldGUuaW5wdXQnO1xyXG5pbXBvcnQgeyBEYXRhc291cmNlU2VydmljZSB9IGZyb20gJy4uL2RhdGFzb3VyY2Uuc2VydmljZSc7XHJcbmltcG9ydCB7IEZpZWxkQmFzZSB9IGZyb20gJy4vaW5wdXQuYmFzZSc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgICB0ZW1wbGF0ZTogYDxtYXQtZm9ybS1maWVsZD5cclxuICA8bWF0LWxhYmVsICpuZ0lmPVwiZmllbGQucGxhY2Vob2xkZXJcIj57e2ZpZWxkLmxhYmVsIHx8IGZpZWxkLm5hbWV9fTwvbWF0LWxhYmVsPiAgICAgICAgICBcclxuIDxiaXpkb2MtYXV0b2NvbXBsZXRlIFtwbGFjZWhvbGRlcl09XCJmaWVsZC5wbGFjZWhvbGRlciB8fCBmaWVsZC5sYWJlbCB8fCBmaWVsZC5uYW1lXCIgW2Zvcm1Db250cm9sXT1jb250cm9sXHJcbiAgW3JlcXVpcmVkXT1cImZpZWxkLnJlcXVpcmVkXCIgPjwvYml6ZG9jLWF1dG9jb21wbGV0ZT5cclxuICA8bWF0LWhpbnQgKm5nSWY9XCJmaWVsZC5oaW50XCI+IHt7IGZpZWxkLmhpbnQgfX08L21hdC1oaW50PlxyXG4gIDxuZy1jb250YWluZXI+XHJcbiAgICA8bWF0LWVycm9yICpuZ0Zvcj1cImxldCB2IG9mIGZpZWxkLnZhbGlkYXRpb25zXCIgW3N0eWxlLmRpc3BsYXldPVwiY29udHJvbC5oYXNFcnJvcih2LnR5cGUpID8gJyc6ICdub25lJ1wiPiB7eyB2Lm1lc3NhZ2UgfX0gPC9tYXQtZXJyb3I+XHJcbiAgPC9uZy1jb250YWluZXI+XHJcbjwvbWF0LWZvcm0tZmllbGQ+YFxyXG59KVxyXG4vKiogbGF5b3V0IGNvbXBvbmVudCovXHJcbmV4cG9ydCBjbGFzcyBBdXRvY29tcGxldGVGaWVsZCBleHRlbmRzIEZpZWxkQmFzZSBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcclxuICAgIHJlYWRvbmx5IGNvbnRyb2wgPSBuZXcgRm9ybUNvbnRyb2woKTtcclxuICAgIEBJbnB1dCgpIHBhcmFtczogYW55O1xyXG4gIEBWaWV3Q2hpbGQoVHlwZUF1dG9jb21wbGV0ZSkgaW5wdXQ6IFR5cGVBdXRvY29tcGxldGU7XHJcbiAgICBzb3VyY2U6IE9ic2VydmFibGU8YW55W10+O1xyXG4gICAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveSA9IG5ldyBTdWJqZWN0PHZvaWQ+KCk7XHJcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9kczogRGF0YXNvdXJjZVNlcnZpY2UpIHtcclxuICAgICAgICBzdXBlcigpO1xyXG4gICAgfVxyXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICAgICAgaWYgKCF0aGlzLmZpZWxkLm9wdGlvbnMpXHJcbiAgICAgICAgICAgIHRoaXMuc291cmNlID0gdGhpcy5jb250cm9sLnZhbHVlQ2hhbmdlcy5waXBlKGRlYm91bmNlVGltZSgyNTApLCB0YWtlVW50aWwodGhpcy5fZGVzdHJveSksXHJcbiAgICAgICAgICAgICAgc3dpdGNoTWFwKHYgPT4gdGhpcy5fZHMuYWxsKHRoaXMuZmllbGQuc291cmNlLCB2KSkpO1xyXG4gICAgfVxyXG4gIGZvY3VzKCkgeyB0aGlzLmlucHV0LmZvY3VzKCk7IH1cclxuICAgIG5nT25EZXN0cm95KCk6IHZvaWQge1xyXG4gICAgICAgIHRoaXMuX2Rlc3Ryb3kubmV4dCgpO1xyXG4gICAgICAgIHRoaXMuX2Rlc3Ryb3kuY29tcGxldGUoKTtcclxuICAgIH1cclxufVxyXG4iXX0=
|
@@ -7,6 +7,26 @@ import * as i1 from "@angular/common";
|
|
7
7
|
import * as i2 from "@angular/forms";
|
8
8
|
import * as i3 from "@angular/material/form-field";
|
9
9
|
import * as i4 from "@angular/material/checkbox";
|
10
|
+
function CheckField_mat_hint_1_Template(rf, ctx) { if (rf & 1) {
|
11
|
+
i0.ɵɵelementStart(0, "mat-hint");
|
12
|
+
i0.ɵɵtext(1);
|
13
|
+
i0.ɵɵelementEnd();
|
14
|
+
} if (rf & 2) {
|
15
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
16
|
+
i0.ɵɵadvance(1);
|
17
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.field.hint, "");
|
18
|
+
} }
|
19
|
+
function CheckField_mat_error_5_Template(rf, ctx) { if (rf & 1) {
|
20
|
+
i0.ɵɵelementStart(0, "mat-error");
|
21
|
+
i0.ɵɵtext(1);
|
22
|
+
i0.ɵɵelementEnd();
|
23
|
+
} if (rf & 2) {
|
24
|
+
const v_r2 = ctx.$implicit;
|
25
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
26
|
+
i0.ɵɵstyleProp("display", ctx_r1.control.hasError(v_r2.type) ? "" : "none");
|
27
|
+
i0.ɵɵadvance(1);
|
28
|
+
i0.ɵɵtextInterpolate1(" ", v_r2.message, " ");
|
29
|
+
} }
|
10
30
|
/** layout component*/
|
11
31
|
export class CheckField extends FieldBase {
|
12
32
|
constructor() {
|
@@ -15,27 +35,45 @@ export class CheckField extends FieldBase {
|
|
15
35
|
}
|
16
36
|
focus() { this.input.focus(); }
|
17
37
|
}
|
18
|
-
CheckField.ɵfac =
|
19
|
-
CheckField.ɵcmp = i0.ɵɵ
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
i0.ɵɵ
|
27
|
-
|
28
|
-
|
29
|
-
|
38
|
+
CheckField.ɵfac = /*@__PURE__*/ function () { let ɵCheckField_BaseFactory; return function CheckField_Factory(t) { return (ɵCheckField_BaseFactory || (ɵCheckField_BaseFactory = i0.ɵɵgetInheritedFactory(CheckField)))(t || CheckField); }; }();
|
39
|
+
CheckField.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CheckField, selectors: [["ng-component"]], viewQuery: function CheckField_Query(rf, ctx) { if (rf & 1) {
|
40
|
+
i0.ɵɵviewQuery(MatCheckbox, 5);
|
41
|
+
} if (rf & 2) {
|
42
|
+
let _t;
|
43
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.input = _t.first);
|
44
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 6, vars: 4, consts: [[4, "ngIf"], [3, "formControl"], [3, "display", 4, "ngFor", "ngForOf"]], template: function CheckField_Template(rf, ctx) { if (rf & 1) {
|
45
|
+
i0.ɵɵelementStart(0, "div");
|
46
|
+
i0.ɵɵtemplate(1, CheckField_mat_hint_1_Template, 2, 1, "mat-hint", 0);
|
47
|
+
i0.ɵɵelementStart(2, "mat-checkbox", 1);
|
48
|
+
i0.ɵɵtext(3);
|
49
|
+
i0.ɵɵelementEnd();
|
50
|
+
i0.ɵɵelementContainerStart(4);
|
51
|
+
i0.ɵɵtemplate(5, CheckField_mat_error_5_Template, 2, 3, "mat-error", 2);
|
52
|
+
i0.ɵɵelementContainerEnd();
|
53
|
+
i0.ɵɵelementEnd();
|
54
|
+
} if (rf & 2) {
|
55
|
+
i0.ɵɵadvance(1);
|
56
|
+
i0.ɵɵproperty("ngIf", ctx.field.hint);
|
57
|
+
i0.ɵɵadvance(1);
|
58
|
+
i0.ɵɵproperty("formControl", ctx.control);
|
59
|
+
i0.ɵɵadvance(1);
|
60
|
+
i0.ɵɵtextInterpolate1(" ", ctx.field.label || ctx.field.name, "");
|
61
|
+
i0.ɵɵadvance(2);
|
62
|
+
i0.ɵɵproperty("ngForOf", ctx.field.validations);
|
63
|
+
} }, dependencies: [i1.NgForOf, i1.NgIf, i2.NgControlStatus, i2.FormControlDirective, i3.MatError, i3.MatHint, i4.MatCheckbox], encapsulation: 2 });
|
64
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckField, [{
|
65
|
+
type: Component,
|
66
|
+
args: [{
|
67
|
+
template: `<div>
|
30
68
|
<mat-hint *ngIf="field.hint"> {{ field.hint }}</mat-hint>
|
31
69
|
<mat-checkbox [formControl]=control> {{ field.label || field.name }}</mat-checkbox>
|
32
70
|
<ng-container>
|
33
71
|
<mat-error *ngFor="let v of field.validations" [style.display]="control.hasError(v.type) ? '': 'none'"> {{ v.message }} </mat-error>
|
34
72
|
</ng-container>
|
35
73
|
</div>`
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
//# sourceMappingURL=data:application/json;base64,
|
74
|
+
}]
|
75
|
+
}], null, { input: [{
|
76
|
+
type: ViewChild,
|
77
|
+
args: [MatCheckbox]
|
78
|
+
}] }); })();
|
79
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3guZmllbGQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2NvcmUvbGF5b3V0L2NoZWNrYm94LmZpZWxkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDekQsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGNBQWMsQ0FBQzs7Ozs7OztJQUt2QyxnQ0FBNkI7SUFBQyxZQUFnQjtJQUFBLGlCQUFXOzs7SUFBM0IsZUFBZ0I7SUFBaEIsaURBQWdCOzs7SUFHNUMsaUNBQXVHO0lBQUMsWUFBZ0I7SUFBQSxpQkFBWTs7OztJQUFyRiwyRUFBdUQ7SUFBRSxlQUFnQjtJQUFoQiw2Q0FBZ0I7O0FBSTVILHNCQUFzQjtBQUN0QixNQUFNLE9BQU8sVUFBVyxTQUFRLFNBQVM7SUFWekM7O1FBWVcsWUFBTyxHQUFHLElBQUksV0FBVyxDQUFDLEtBQUssQ0FBQyxDQUFDO0tBRTNDO0lBREMsS0FBSyxLQUFLLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDOzswTUFIcEIsVUFBVSxTQUFWLFVBQVU7NkRBQVYsVUFBVTt1QkFDVixXQUFXOzs7OztRQVZULDJCQUFLO1FBQ2xCLHFFQUF5RDtRQUN6RCx1Q0FBb0M7UUFBQyxZQUErQjtRQUFBLGlCQUFlO1FBQ25GLDZCQUFjO1FBQ1osdUVBQW9JO1FBQ3RJLDBCQUFlO1FBQ2pCLGlCQUFNOztRQUxPLGVBQWdCO1FBQWhCLHFDQUFnQjtRQUNiLGVBQXFCO1FBQXJCLHlDQUFxQjtRQUFFLGVBQStCO1FBQS9CLGlFQUErQjtRQUV6QyxlQUFvQjtRQUFwQiwrQ0FBb0I7O3VGQUtwQyxVQUFVO2NBVnRCLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUU7Ozs7OztPQU1QO2FBQ047Z0JBR3lCLEtBQUs7a0JBQTVCLFNBQVM7bUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgVmlld0NoaWxkIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBNYXRDaGVja2JveCB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NoZWNrYm94JztcclxuaW1wb3J0IHsgRmllbGRCYXNlIH0gZnJvbSAnLi9pbnB1dC5iYXNlJztcclxuXHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHRlbXBsYXRlOiBgPGRpdj5cclxuICA8bWF0LWhpbnQgKm5nSWY9XCJmaWVsZC5oaW50XCI+IHt7IGZpZWxkLmhpbnQgfX08L21hdC1oaW50PlxyXG4gIDxtYXQtY2hlY2tib3ggW2Zvcm1Db250cm9sXT1jb250cm9sPiB7eyBmaWVsZC5sYWJlbCB8fCBmaWVsZC5uYW1lIH19PC9tYXQtY2hlY2tib3g+XHJcbiAgPG5nLWNvbnRhaW5lcj5cclxuICAgIDxtYXQtZXJyb3IgKm5nRm9yPVwibGV0IHYgb2YgZmllbGQudmFsaWRhdGlvbnNcIiBbc3R5bGUuZGlzcGxheV09XCJjb250cm9sLmhhc0Vycm9yKHYudHlwZSkgPyAnJzogJ25vbmUnXCI+IHt7IHYubWVzc2FnZSB9fSA8L21hdC1lcnJvcj5cclxuICA8L25nLWNvbnRhaW5lcj5cclxuPC9kaXY+YFxyXG59KVxyXG4vKiogbGF5b3V0IGNvbXBvbmVudCovXHJcbmV4cG9ydCBjbGFzcyBDaGVja0ZpZWxkIGV4dGVuZHMgRmllbGRCYXNlIHtcclxuICBAVmlld0NoaWxkKE1hdENoZWNrYm94KSBpbnB1dDogTWF0Q2hlY2tib3g7XHJcbiAgcmVhZG9ubHkgY29udHJvbCA9IG5ldyBGb3JtQ29udHJvbChmYWxzZSk7XHJcbiAgZm9jdXMoKSB7IHRoaXMuaW5wdXQuZm9jdXMoKTsgfVxyXG59XHJcbiJdfQ==
|
@@ -2,34 +2,48 @@ import { Component, Input } from "@angular/core";
|
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
import * as i1 from "@angular/common";
|
4
4
|
import * as i2 from "@angular/material/icon";
|
5
|
+
function CheckboxComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
6
|
+
i0.ɵɵelementStart(0, "div", 1)(1, "mat-icon", 2);
|
7
|
+
i0.ɵɵtext(2);
|
8
|
+
i0.ɵɵelementEnd();
|
9
|
+
i0.ɵɵelementStart(3, "span", 3);
|
10
|
+
i0.ɵɵprojection(4);
|
11
|
+
i0.ɵɵelementEnd()();
|
12
|
+
} if (rf & 2) {
|
13
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
14
|
+
i0.ɵɵadvance(1);
|
15
|
+
i0.ɵɵproperty("color", ctx_r0.color);
|
16
|
+
i0.ɵɵadvance(1);
|
17
|
+
i0.ɵɵtextInterpolate(ctx_r0.icon == "checkbox" ? "check_box" : "toggle_on");
|
18
|
+
} }
|
19
|
+
const _c0 = ["*"];
|
5
20
|
/** */
|
6
21
|
export class CheckboxComponent {
|
7
22
|
constructor() {
|
8
23
|
this.icon = 'checkbox';
|
9
24
|
}
|
10
25
|
}
|
11
|
-
CheckboxComponent.ɵfac =
|
12
|
-
CheckboxComponent.ɵcmp = i0.ɵɵ
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
args: [{ selector: 'bizdoc-checkbox', template: `
|
26
|
+
CheckboxComponent.ɵfac = function CheckboxComponent_Factory(t) { return new (t || CheckboxComponent)(); };
|
27
|
+
CheckboxComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CheckboxComponent, selectors: [["bizdoc-checkbox"]], inputs: { value: "value", color: "color", icon: "icon" }, ngContentSelectors: _c0, decls: 1, vars: 1, consts: [["class", "container", 4, "ngIf"], [1, "container"], [3, "color"], [1, "mat-body-1"]], template: function CheckboxComponent_Template(rf, ctx) { if (rf & 1) {
|
28
|
+
i0.ɵɵprojectionDef();
|
29
|
+
i0.ɵɵtemplate(0, CheckboxComponent_div_0_Template, 5, 2, "div", 0);
|
30
|
+
} if (rf & 2) {
|
31
|
+
i0.ɵɵproperty("ngIf", ctx.value);
|
32
|
+
} }, dependencies: [i1.NgIf, i2.MatIcon], styles: [".container[_ngcontent-%COMP%]{display:flex;align-items:center}.container[_ngcontent-%COMP%] *[_ngcontent-%COMP%]{align-self:center}.container[_ngcontent-%COMP%] [_ngcontent-%COMP%]:last-child{padding-left:5px;padding-right:5px}"] });
|
33
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckboxComponent, [{
|
34
|
+
type: Component,
|
35
|
+
args: [{ selector: 'bizdoc-checkbox', template: `
|
22
36
|
<div *ngIf="value" class="container">
|
23
37
|
<mat-icon [color]="color">{{icon == 'checkbox' ? 'check_box' : 'toggle_on'}}</mat-icon>
|
24
38
|
<span class="mat-body-1">
|
25
39
|
<ng-content></ng-content>
|
26
40
|
</span>
|
27
41
|
</div>`, styles: [".container{display:flex;align-items:center}.container *{align-self:center}.container :last-child{padding-left:5px;padding-right:5px}\n"] }]
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
//# sourceMappingURL=data:application/json;base64,
|
42
|
+
}], null, { value: [{
|
43
|
+
type: Input
|
44
|
+
}], color: [{
|
45
|
+
type: Input
|
46
|
+
}], icon: [{
|
47
|
+
type: Input
|
48
|
+
}] }); })();
|
49
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3guanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJyYXJpZXMvY29yZS9zcmMvbGliL2NvcmUvbGF5b3V0L2NoZWNrYm94LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7OztJQU0zQyw4QkFBcUMsa0JBQUE7SUFDVCxZQUFrRDtJQUFBLGlCQUFXO0lBQ3ZGLCtCQUF5QjtJQUN2QixrQkFBeUI7SUFDM0IsaUJBQU8sRUFBQTs7O0lBSEcsZUFBZTtJQUFmLG9DQUFlO0lBQUMsZUFBa0Q7SUFBbEQsMkVBQWtEOzs7QUFMcEYsTUFBTTtBQVlOLE1BQU0sT0FBTyxpQkFBaUI7SUFYOUI7UUFnQkUsU0FBSSxHQUEwQixVQUFVLENBQUM7S0FDMUM7O2tGQU5ZLGlCQUFpQjtvRUFBakIsaUJBQWlCOztRQVJ4QixrRUFLTTs7UUFMQSxnQ0FBVzs7dUZBUVYsaUJBQWlCO2NBWDdCLFNBQVM7MkJBQ0UsaUJBQWlCLFlBQ2pCOzs7Ozs7YUFNQztnQkFLWCxLQUFLO2tCQURKLEtBQUs7WUFFRyxLQUFLO2tCQUFiLEtBQUs7WUFFTixJQUFJO2tCQURILEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgVGhlbWVQYWxldHRlIH0gZnJvbSBcIkBhbmd1bGFyL21hdGVyaWFsL2NvcmVcIjtcclxuLyoqICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYml6ZG9jLWNoZWNrYm94JyxcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgICA8ZGl2ICpuZ0lmPVwidmFsdWVcIiBjbGFzcz1cImNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxtYXQtaWNvbiBbY29sb3JdPVwiY29sb3JcIj57e2ljb24gPT0gJ2NoZWNrYm94JyA/ICdjaGVja19ib3gnIDogJ3RvZ2dsZV9vbid9fTwvbWF0LWljb24+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJtYXQtYm9keS0xXCI+XHJcbiAgICAgICAgICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XHJcbiAgICAgICAgPC9zcGFuPlxyXG4gICAgICA8L2Rpdj5gLFxyXG4gIHN0eWxlVXJsczogWydjaGVja2JveC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIENoZWNrYm94Q29tcG9uZW50IHtcclxuICBASW5wdXQoKVxyXG4gIHZhbHVlOiBib29sZWFuO1xyXG4gIEBJbnB1dCgpIGNvbG9yOiBUaGVtZVBhbGV0dGU7XHJcbiAgQElucHV0KClcclxuICBpY29uOiAnc3dpdGNoJyB8ICdjaGVja2JveCcgPSAnY2hlY2tib3gnO1xyXG59XHJcbiJdfQ==
|
@@ -5,6 +5,16 @@ import * as i1 from "@angular/forms";
|
|
5
5
|
import * as i2 from "@angular/common";
|
6
6
|
import * as i3 from "@angular/material/datepicker";
|
7
7
|
import * as i4 from "@angular/material/form-field";
|
8
|
+
const _c0 = ["inp"];
|
9
|
+
function DateRangeField_mat_hint_10_Template(rf, ctx) { if (rf & 1) {
|
10
|
+
i0.ɵɵelementStart(0, "mat-hint");
|
11
|
+
i0.ɵɵtext(1);
|
12
|
+
i0.ɵɵelementEnd();
|
13
|
+
} if (rf & 2) {
|
14
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
15
|
+
i0.ɵɵadvance(1);
|
16
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r2.field.hint, "");
|
17
|
+
} }
|
8
18
|
/** layout component*/
|
9
19
|
export class DateRangeField extends FieldBase {
|
10
20
|
constructor(_fb) {
|
@@ -19,22 +29,37 @@ export class DateRangeField extends FieldBase {
|
|
19
29
|
this.inp.nativeElement.focus();
|
20
30
|
}
|
21
31
|
}
|
22
|
-
DateRangeField.ɵfac =
|
23
|
-
DateRangeField.ɵcmp = i0.ɵɵ
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
i0.ɵɵ
|
35
|
-
|
36
|
-
|
37
|
-
|
32
|
+
DateRangeField.ɵfac = function DateRangeField_Factory(t) { return new (t || DateRangeField)(i0.ɵɵdirectiveInject(i1.FormBuilder)); };
|
33
|
+
DateRangeField.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DateRangeField, selectors: [["ng-component"]], viewQuery: function DateRangeField_Query(rf, ctx) { if (rf & 1) {
|
34
|
+
i0.ɵɵviewQuery(_c0, 5);
|
35
|
+
} if (rf & 2) {
|
36
|
+
let _t;
|
37
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.inp = _t.first);
|
38
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 11, vars: 8, consts: [[3, "formGroup", "rangePicker", "required", "min", "max"], ["matStartDate", "", "formControlName", "start"], ["inp", ""], ["matEndDate", "", "formControlName", "end", "placeholder", ""], ["matSuffix", "", 3, "for"], ["picker", ""], [4, "ngIf"]], template: function DateRangeField_Template(rf, ctx) { if (rf & 1) {
|
39
|
+
i0.ɵɵelementStart(0, "mat-form-field")(1, "mat-label");
|
40
|
+
i0.ɵɵtext(2);
|
41
|
+
i0.ɵɵelementEnd();
|
42
|
+
i0.ɵɵelementStart(3, "mat-date-range-input", 0);
|
43
|
+
i0.ɵɵelement(4, "input", 1, 2)(6, "input", 3);
|
44
|
+
i0.ɵɵelementEnd();
|
45
|
+
i0.ɵɵelement(7, "mat-datepicker-toggle", 4)(8, "mat-date-range-picker", null, 5);
|
46
|
+
i0.ɵɵtemplate(10, DateRangeField_mat_hint_10_Template, 2, 1, "mat-hint", 6);
|
47
|
+
i0.ɵɵelementEnd();
|
48
|
+
} if (rf & 2) {
|
49
|
+
const _r1 = i0.ɵɵreference(9);
|
50
|
+
i0.ɵɵadvance(2);
|
51
|
+
i0.ɵɵtextInterpolate(ctx.field.label || ctx.field.name);
|
52
|
+
i0.ɵɵadvance(1);
|
53
|
+
i0.ɵɵproperty("formGroup", ctx.control)("rangePicker", _r1)("required", ctx.field.required)("min", ctx.field.min)("max", ctx.field.max);
|
54
|
+
i0.ɵɵadvance(4);
|
55
|
+
i0.ɵɵproperty("for", _r1);
|
56
|
+
i0.ɵɵadvance(3);
|
57
|
+
i0.ɵɵproperty("ngIf", ctx.field.hint);
|
58
|
+
} }, dependencies: [i2.NgIf, i1.DefaultValueAccessor, i1.NgControlStatus, i1.NgControlStatusGroup, i1.FormGroupDirective, i1.FormControlName, i3.MatDatepickerToggle, i3.MatDateRangeInput, i3.MatStartDate, i3.MatEndDate, i3.MatDateRangePicker, i4.MatFormField, i4.MatHint, i4.MatLabel, i4.MatSuffix], encapsulation: 2 });
|
59
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DateRangeField, [{
|
60
|
+
type: Component,
|
61
|
+
args: [{
|
62
|
+
template: `<mat-form-field>
|
38
63
|
<mat-label>{{field.label || field.name}}</mat-label>
|
39
64
|
<mat-date-range-input [formGroup]="control" [rangePicker]="picker"
|
40
65
|
[required]="field.required" [min]="field.min" [max]="field.max">
|
@@ -45,9 +70,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.3", ngImpor
|
|
45
70
|
<mat-date-range-picker #picker></mat-date-range-picker>
|
46
71
|
<mat-hint *ngIf="field.hint"> {{ field.hint }}</mat-hint>
|
47
72
|
</mat-form-field>`
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
//# sourceMappingURL=data:application/json;base64,
|
73
|
+
}]
|
74
|
+
}], function () { return [{ type: i1.FormBuilder }]; }, { inp: [{
|
75
|
+
type: ViewChild,
|
76
|
+
args: ['inp']
|
77
|
+
}] }); })();
|
78
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1yYW5nZS5maWVsZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvY29yZS9sYXlvdXQvZGF0ZS1yYW5nZS5maWVsZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUVqRSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sY0FBYyxDQUFDOzs7Ozs7OztJQWF2QyxnQ0FBNkI7SUFBQyxZQUFnQjtJQUFBLGlCQUFXOzs7SUFBM0IsZUFBZ0I7SUFBaEIsaURBQWdCOztBQUdoRCxzQkFBc0I7QUFDdEIsTUFBTSxPQUFPLGNBQWUsU0FBUSxTQUFTO0lBTXpDLFlBQW9CLEdBQWdCO1FBQ2xDLEtBQUssRUFBRSxDQUFDO1FBRFUsUUFBRyxHQUFILEdBQUcsQ0FBYTtRQUozQixZQUFPLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxLQUFLLENBQUM7WUFDOUIsS0FBSyxFQUFFLElBQUksQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQztZQUM3QixHQUFHLEVBQUUsSUFBSSxDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDO1NBQzlCLENBQUMsQ0FBQztJQUdMLENBQUM7SUFDRCxLQUFLO1FBQ0gsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDakMsQ0FBQzs7NEVBWFUsY0FBYztpRUFBZCxjQUFjOzs7Ozs7UUFiWixzQ0FBZ0IsZ0JBQUE7UUFDcEIsWUFBNkI7UUFBQSxpQkFBWTtRQUNwQywrQ0FDa0Q7UUFDaEQsOEJBQWlELGVBQUE7UUFFbkQsaUJBQXVCO1FBQ3ZCLDJDQUF3RSxxQ0FBQTtRQUV0RiwyRUFBeUQ7UUFDM0QsaUJBQWlCOzs7UUFUTixlQUE2QjtRQUE3Qix1REFBNkI7UUFDRixlQUFxQjtRQUFyQix1Q0FBcUIsb0JBQUEsZ0NBQUEsc0JBQUEsc0JBQUE7UUFLVixlQUFjO1FBQWQseUJBQWM7UUFFbEQsZUFBZ0I7UUFBaEIscUNBQWdCOzt1RkFJaEIsY0FBYztjQWQxQixTQUFTO2VBQUM7Z0JBQ1AsUUFBUSxFQUFFOzs7Ozs7Ozs7O2tCQVVJO2FBQ2pCOzhEQUdtQixHQUFHO2tCQUFwQixTQUFTO21CQUFDLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEVsZW1lbnRSZWYsIFZpZXdDaGlsZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQnVpbGRlciB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgRmllbGRCYXNlIH0gZnJvbSAnLi9pbnB1dC5iYXNlJztcclxuXHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHRlbXBsYXRlOiBgPG1hdC1mb3JtLWZpZWxkPlxyXG48bWF0LWxhYmVsPnt7ZmllbGQubGFiZWwgfHwgZmllbGQubmFtZX19PC9tYXQtbGFiZWw+XHJcbiAgICAgICAgICAgICAgICA8bWF0LWRhdGUtcmFuZ2UtaW5wdXQgW2Zvcm1Hcm91cF09XCJjb250cm9sXCIgW3JhbmdlUGlja2VyXT1cInBpY2tlclwiXHJcbiAgW3JlcXVpcmVkXT1cImZpZWxkLnJlcXVpcmVkXCIgW21pbl09XCJmaWVsZC5taW5cIiBbbWF4XT1cImZpZWxkLm1heFwiPlxyXG4gICAgICAgICAgICAgICAgICA8aW5wdXQgbWF0U3RhcnREYXRlIGZvcm1Db250cm9sTmFtZT1cInN0YXJ0XCIgI2lucD5cclxuICAgICAgICAgICAgICAgICAgPGlucHV0IG1hdEVuZERhdGUgZm9ybUNvbnRyb2xOYW1lPVwiZW5kXCIgcGxhY2Vob2xkZXI9XCJcIj5cclxuICAgICAgICAgICAgICAgIDwvbWF0LWRhdGUtcmFuZ2UtaW5wdXQ+XHJcbiAgICAgICAgICAgICAgICA8bWF0LWRhdGVwaWNrZXItdG9nZ2xlIG1hdFN1ZmZpeCBbZm9yXT1cInBpY2tlclwiPjwvbWF0LWRhdGVwaWNrZXItdG9nZ2xlPlxyXG4gICAgICAgICAgICAgICAgPG1hdC1kYXRlLXJhbmdlLXBpY2tlciAjcGlja2VyPjwvbWF0LWRhdGUtcmFuZ2UtcGlja2VyPlxyXG4gIDxtYXQtaGludCAqbmdJZj1cImZpZWxkLmhpbnRcIj4ge3sgZmllbGQuaGludCB9fTwvbWF0LWhpbnQ+XHJcbjwvbWF0LWZvcm0tZmllbGQ+YFxyXG59KVxyXG4vKiogbGF5b3V0IGNvbXBvbmVudCovXHJcbmV4cG9ydCBjbGFzcyBEYXRlUmFuZ2VGaWVsZCBleHRlbmRzIEZpZWxkQmFzZSB7XHJcbiAgQFZpZXdDaGlsZCgnaW5wJykgaW5wOiBFbGVtZW50UmVmPEhUTUxJbnB1dEVsZW1lbnQ+O1xyXG4gICAgcmVhZG9ubHkgY29udHJvbCA9IHRoaXMuX2ZiLmdyb3VwKHtcclxuICAgICAgICBzdGFydDogdGhpcy5fZmIuY29udHJvbChudWxsKSxcclxuICAgICAgICBlbmQ6IHRoaXMuX2ZiLmNvbnRyb2wobnVsbClcclxuICAgIH0pO1xyXG4gICAgY29uc3RydWN0b3IocHJpdmF0ZSBfZmI6IEZvcm1CdWlsZGVyKSB7XHJcbiAgICAgIHN1cGVyKCk7XHJcbiAgfVxyXG4gIGZvY3VzKCkge1xyXG4gICAgdGhpcy5pbnAubmF0aXZlRWxlbWVudC5mb2N1cygpO1xyXG4gIH1cclxufVxyXG4iXX0=
|
@@ -8,6 +8,35 @@ import * as i2 from "@angular/forms";
|
|
8
8
|
import * as i3 from "@angular/material/datepicker";
|
9
9
|
import * as i4 from "@angular/material/form-field";
|
10
10
|
import * as i5 from "@angular/material/input";
|
11
|
+
function DateField_mat_label_1_Template(rf, ctx) { if (rf & 1) {
|
12
|
+
i0.ɵɵelementStart(0, "mat-label");
|
13
|
+
i0.ɵɵtext(1);
|
14
|
+
i0.ɵɵelementEnd();
|
15
|
+
} if (rf & 2) {
|
16
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
17
|
+
i0.ɵɵadvance(1);
|
18
|
+
i0.ɵɵtextInterpolate(ctx_r0.field.label || ctx_r0.field.name);
|
19
|
+
} }
|
20
|
+
function DateField_mat_hint_6_Template(rf, ctx) { if (rf & 1) {
|
21
|
+
i0.ɵɵelementStart(0, "mat-hint");
|
22
|
+
i0.ɵɵtext(1);
|
23
|
+
i0.ɵɵelementEnd();
|
24
|
+
} if (rf & 2) {
|
25
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
26
|
+
i0.ɵɵadvance(1);
|
27
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r2.field.hint, "");
|
28
|
+
} }
|
29
|
+
function DateField_mat_error_8_Template(rf, ctx) { if (rf & 1) {
|
30
|
+
i0.ɵɵelementStart(0, "mat-error");
|
31
|
+
i0.ɵɵtext(1);
|
32
|
+
i0.ɵɵelementEnd();
|
33
|
+
} if (rf & 2) {
|
34
|
+
const v_r4 = ctx.$implicit;
|
35
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
36
|
+
i0.ɵɵstyleProp("display", ctx_r3.control.hasError(v_r4.type) ? "" : "none");
|
37
|
+
i0.ɵɵadvance(1);
|
38
|
+
i0.ɵɵtextInterpolate1(" ", v_r4.message, " ");
|
39
|
+
} }
|
11
40
|
/** layout component*/
|
12
41
|
export class DateField extends FieldBase {
|
13
42
|
constructor() {
|
@@ -16,23 +45,38 @@ export class DateField extends FieldBase {
|
|
16
45
|
}
|
17
46
|
focus() { this.input.focus(); }
|
18
47
|
}
|
19
|
-
DateField.ɵfac =
|
20
|
-
DateField.ɵcmp = i0.ɵɵ
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
i0.ɵɵ
|
33
|
-
|
34
|
-
|
35
|
-
|
48
|
+
DateField.ɵfac = /*@__PURE__*/ function () { let ɵDateField_BaseFactory; return function DateField_Factory(t) { return (ɵDateField_BaseFactory || (ɵDateField_BaseFactory = i0.ɵɵgetInheritedFactory(DateField)))(t || DateField); }; }();
|
49
|
+
DateField.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DateField, selectors: [["ng-component"]], viewQuery: function DateField_Query(rf, ctx) { if (rf & 1) {
|
50
|
+
i0.ɵɵviewQuery(MatInput, 5);
|
51
|
+
} if (rf & 2) {
|
52
|
+
let _t;
|
53
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.input = _t.first);
|
54
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 9, vars: 10, consts: [[4, "ngIf"], ["matInput", "", 3, "placeholder", "formControl", "required", "min", "max", "matDatepicker"], ["matSuffix", "", 3, "for"], ["picker", ""], [3, "display", 4, "ngFor", "ngForOf"]], template: function DateField_Template(rf, ctx) { if (rf & 1) {
|
55
|
+
i0.ɵɵelementStart(0, "mat-form-field");
|
56
|
+
i0.ɵɵtemplate(1, DateField_mat_label_1_Template, 2, 1, "mat-label", 0);
|
57
|
+
i0.ɵɵelement(2, "input", 1)(3, "mat-datepicker-toggle", 2)(4, "mat-datepicker", null, 3);
|
58
|
+
i0.ɵɵtemplate(6, DateField_mat_hint_6_Template, 2, 1, "mat-hint", 0);
|
59
|
+
i0.ɵɵelementContainerStart(7);
|
60
|
+
i0.ɵɵtemplate(8, DateField_mat_error_8_Template, 2, 3, "mat-error", 4);
|
61
|
+
i0.ɵɵelementContainerEnd();
|
62
|
+
i0.ɵɵelementEnd();
|
63
|
+
} if (rf & 2) {
|
64
|
+
const _r1 = i0.ɵɵreference(5);
|
65
|
+
i0.ɵɵadvance(1);
|
66
|
+
i0.ɵɵproperty("ngIf", ctx.field.placeholder);
|
67
|
+
i0.ɵɵadvance(1);
|
68
|
+
i0.ɵɵproperty("placeholder", ctx.field.placeholder || ctx.field.label || ctx.field.name)("formControl", ctx.control)("required", ctx.field.required)("min", ctx.field.min)("max", ctx.field.max)("matDatepicker", _r1);
|
69
|
+
i0.ɵɵadvance(1);
|
70
|
+
i0.ɵɵproperty("for", _r1);
|
71
|
+
i0.ɵɵadvance(3);
|
72
|
+
i0.ɵɵproperty("ngIf", ctx.field.hint);
|
73
|
+
i0.ɵɵadvance(2);
|
74
|
+
i0.ɵɵproperty("ngForOf", ctx.field.validations);
|
75
|
+
} }, dependencies: [i1.NgForOf, i1.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.RequiredValidator, i2.FormControlDirective, i3.MatDatepicker, i3.MatDatepickerInput, i3.MatDatepickerToggle, i4.MatError, i4.MatFormField, i4.MatHint, i4.MatLabel, i4.MatSuffix, i5.MatInput], encapsulation: 2 });
|
76
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DateField, [{
|
77
|
+
type: Component,
|
78
|
+
args: [{
|
79
|
+
template: `<mat-form-field>
|
36
80
|
<mat-label *ngIf="field.placeholder">{{field.label || field.name}}</mat-label>
|
37
81
|
<input matInput [placeholder]="field.placeholder || field.label || field.name" [formControl]=control
|
38
82
|
[required]="field.required" [min]="field.min" [max]="field.max"
|
@@ -44,9 +88,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.3", ngImpor
|
|
44
88
|
<mat-error *ngFor="let v of field.validations" [style.display]="control.hasError(v.type) ? '': 'none'"> {{ v.message }} </mat-error>
|
45
89
|
</ng-container>
|
46
90
|
</mat-form-field>`
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
//# sourceMappingURL=data:application/json;base64,
|
91
|
+
}]
|
92
|
+
}], null, { input: [{
|
93
|
+
type: ViewChild,
|
94
|
+
args: [MatInput]
|
95
|
+
}] }); })();
|
96
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS5maWVsZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnJhcmllcy9jb3JlL3NyYy9saWIvY29yZS9sYXlvdXQvZGF0ZS5maWVsZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNyRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ25ELE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxjQUFjLENBQUM7Ozs7Ozs7O0lBS3ZDLGlDQUFxQztJQUFBLFlBQTZCO0lBQUEsaUJBQVk7OztJQUF6QyxlQUE2QjtJQUE3Qiw2REFBNkI7OztJQU1sRSxnQ0FBNkI7SUFBQyxZQUFnQjtJQUFBLGlCQUFXOzs7SUFBM0IsZUFBZ0I7SUFBaEIsaURBQWdCOzs7SUFFNUMsaUNBQXVHO0lBQUMsWUFBZ0I7SUFBQSxpQkFBWTs7OztJQUFyRiwyRUFBdUQ7SUFBRSxlQUFnQjtJQUFoQiw2Q0FBZ0I7O0FBSTVILHNCQUFzQjtBQUN0QixNQUFNLE9BQU8sU0FBVSxTQUFRLFNBQVM7SUFmeEM7O1FBZ0JhLFlBQU8sR0FBRyxJQUFJLFdBQVcsRUFBRSxDQUFDO0tBR3hDO0lBREMsS0FBSyxLQUFLLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDOztxTUFIcEIsU0FBUyxTQUFULFNBQVM7NERBQVQsU0FBUzt1QkFFVCxRQUFROzs7OztRQWhCTixzQ0FBZ0I7UUFDN0Isc0VBQThFO1FBQy9FLDJCQUU0QiwrQkFBQSw4QkFBQTtRQUczQixvRUFBeUQ7UUFDekQsNkJBQWM7UUFDWixzRUFBb0k7UUFDdEksMEJBQWU7UUFDakIsaUJBQWlCOzs7UUFWSCxlQUF1QjtRQUF2Qiw0Q0FBdUI7UUFDcEIsZUFBOEQ7UUFBOUQsd0ZBQThELDRCQUFBLGdDQUFBLHNCQUFBLHNCQUFBLHNCQUFBO1FBR3hDLGVBQWM7UUFBZCx5QkFBYztRQUV4QyxlQUFnQjtRQUFoQixxQ0FBZ0I7UUFFQSxlQUFvQjtRQUFwQiwrQ0FBb0I7O3VGQUtwQyxTQUFTO2NBZnJCLFNBQVM7ZUFBQztnQkFDUCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7O2tCQVdJO2FBQ2pCO2dCQUlzQixLQUFLO2tCQUF6QixTQUFTO21CQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdDaGlsZCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgTWF0SW5wdXQgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pbnB1dCc7XHJcbmltcG9ydCB7IEZpZWxkQmFzZSB9IGZyb20gJy4vaW5wdXQuYmFzZSc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgICB0ZW1wbGF0ZTogYDxtYXQtZm9ybS1maWVsZD5cclxuICA8bWF0LWxhYmVsICpuZ0lmPVwiZmllbGQucGxhY2Vob2xkZXJcIj57e2ZpZWxkLmxhYmVsIHx8IGZpZWxkLm5hbWV9fTwvbWF0LWxhYmVsPiAgICAgICAgICBcclxuIDxpbnB1dCBtYXRJbnB1dCBbcGxhY2Vob2xkZXJdPVwiZmllbGQucGxhY2Vob2xkZXIgfHwgZmllbGQubGFiZWwgfHwgZmllbGQubmFtZVwiIFtmb3JtQ29udHJvbF09Y29udHJvbFxyXG4gIFtyZXF1aXJlZF09XCJmaWVsZC5yZXF1aXJlZFwiIFttaW5dPVwiZmllbGQubWluXCIgW21heF09XCJmaWVsZC5tYXhcIiBcclxuICBbbWF0RGF0ZXBpY2tlcl09XCJwaWNrZXJcIiAvPlxyXG4gICAgICAgICAgICAgICAgPG1hdC1kYXRlcGlja2VyLXRvZ2dsZSBbZm9yXT1cInBpY2tlclwiIG1hdFN1ZmZpeD48L21hdC1kYXRlcGlja2VyLXRvZ2dsZT5cclxuICAgICAgICAgICAgICAgIDxtYXQtZGF0ZXBpY2tlciAjcGlja2VyPjwvbWF0LWRhdGVwaWNrZXI+XHJcbiAgPG1hdC1oaW50ICpuZ0lmPVwiZmllbGQuaGludFwiPiB7eyBmaWVsZC5oaW50IH19PC9tYXQtaGludD5cclxuICA8bmctY29udGFpbmVyPlxyXG4gICAgPG1hdC1lcnJvciAqbmdGb3I9XCJsZXQgdiBvZiBmaWVsZC52YWxpZGF0aW9uc1wiIFtzdHlsZS5kaXNwbGF5XT1cImNvbnRyb2wuaGFzRXJyb3Iodi50eXBlKSA/ICcnOiAnbm9uZSdcIj4ge3sgdi5tZXNzYWdlIH19IDwvbWF0LWVycm9yPlxyXG4gIDwvbmctY29udGFpbmVyPlxyXG48L21hdC1mb3JtLWZpZWxkPmBcclxufSlcclxuLyoqIGxheW91dCBjb21wb25lbnQqL1xyXG5leHBvcnQgY2xhc3MgRGF0ZUZpZWxkIGV4dGVuZHMgRmllbGRCYXNlIHtcclxuICAgIHJlYWRvbmx5IGNvbnRyb2wgPSBuZXcgRm9ybUNvbnRyb2woKTtcclxuICBAVmlld0NoaWxkKE1hdElucHV0KSBpbnB1dDogTWF0SW5wdXQ7XHJcbiAgZm9jdXMoKSB7IHRoaXMuaW5wdXQuZm9jdXMoKTsgfVxyXG59XHJcbiJdfQ==
|