@progress/kendo-angular-grid 17.0.0-develop.9 → 17.0.0
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/README.md +46 -36
- package/aggregates/aggregate-types.d.ts +1 -1
- package/aggregates/status-bar.component.d.ts +1 -1
- package/column-menu/column-chooser-item-checked.directive.d.ts +5 -4
- package/column-menu/column-chooser.component.d.ts +1 -1
- package/column-menu/column-list.component.d.ts +2 -2
- package/column-menu/column-menu-autosize.component.d.ts +1 -1
- package/column-menu/column-menu-chooser.component.d.ts +1 -1
- package/column-menu/column-menu-filter.component.d.ts +1 -1
- package/column-menu/column-menu-item-base.d.ts +1 -1
- package/column-menu/column-menu-item.component.d.ts +1 -1
- package/column-menu/column-menu-item.directive.d.ts +1 -1
- package/column-menu/column-menu-position.component.d.ts +1 -1
- package/column-menu/column-menu.component.d.ts +1 -1
- package/column-resizing/column-handle.directive.d.ts +1 -1
- package/column-resizing/column-resize.interface.d.ts +3 -3
- package/column-resizing/table.directive.d.ts +1 -1
- package/columns/checkbox-column.component.d.ts +1 -1
- package/columns/column-base.d.ts +1 -1
- package/columns/column.component.d.ts +1 -1
- package/columns/reorder-column.component.d.ts +1 -1
- package/columns/sort-settings.d.ts +2 -2
- package/columns/span-column.component.d.ts +1 -1
- package/common/clipboard-types.d.ts +2 -2
- package/common/clipboard.directive.d.ts +1 -1
- package/common/create-form-group.d.ts +1 -1
- package/common/fetch-data-callback.d.ts +1 -1
- package/{pager → common}/pager-settings.d.ts +15 -2
- package/common/remove-confirmation.d.ts +1 -1
- package/common/size-options.d.ts +1 -1
- package/data/data.iterators.d.ts +1 -1
- package/data/grid-item.interface.d.ts +1 -1
- package/databinding.directive.d.ts +1 -1
- package/directives.d.ts +8 -21
- package/dragdrop/context-types.d.ts +1 -1
- package/dragdrop/draggable-column.directive.d.ts +1 -1
- package/dragdrop/drop-target.directive.d.ts +1 -1
- package/editing/add-command-tool.directive.d.ts +39 -0
- package/editing/edit.service.d.ts +3 -3
- package/editing-directives/editing-directive-base.d.ts +1 -1
- package/editing-directives/in-cell-editing.directive.d.ts +1 -1
- package/editing-directives/reactive-editing.directive.d.ts +1 -1
- package/editing-directives/template-editing.directive.d.ts +1 -1
- package/{esm2020 → esm2022}/aggregates/selection-aggregate.service.mjs +20 -17
- package/{esm2020 → esm2022}/aggregates/status-bar-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/aggregates/status-bar.component.mjs +10 -8
- package/esm2022/column-menu/column-chooser-item-checked.directive.mjs +45 -0
- package/{esm2020 → esm2022}/column-menu/column-chooser.component.mjs +35 -23
- package/{esm2020 → esm2022}/column-menu/column-list-kb-nav.service.mjs +6 -4
- package/{esm2020 → esm2022}/column-menu/column-list.component.mjs +108 -96
- package/{esm2020 → esm2022}/column-menu/column-locked-change-event.mjs +4 -0
- package/{esm2020 → esm2022}/column-menu/column-menu-autosize-all.component.mjs +6 -5
- package/{esm2020 → esm2022}/column-menu/column-menu-autosize.component.mjs +10 -5
- package/{esm2020 → esm2022}/column-menu/column-menu-chooser.component.mjs +33 -29
- package/{esm2020 → esm2022}/column-menu/column-menu-container.component.mjs +8 -5
- package/{esm2020 → esm2022}/column-menu/column-menu-filter.component.mjs +28 -26
- package/{esm2020 → esm2022}/column-menu/column-menu-item-base.mjs +9 -6
- package/{esm2020 → esm2022}/column-menu/column-menu-item-content-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/column-menu/column-menu-item.component.mjs +73 -42
- package/{esm2020 → esm2022}/column-menu/column-menu-item.directive.mjs +38 -28
- package/{esm2020 → esm2022}/column-menu/column-menu-lock.component.mjs +9 -6
- package/{esm2020 → esm2022}/column-menu/column-menu-position.component.mjs +38 -28
- package/{esm2020 → esm2022}/column-menu/column-menu-sort.component.mjs +9 -6
- package/{esm2020 → esm2022}/column-menu/column-menu-stick.component.mjs +9 -6
- package/{esm2020 → esm2022}/column-menu/column-menu-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/column-menu/column-menu.component.mjs +97 -63
- package/{esm2020 → esm2022}/column-menu/column-menu.service.mjs +34 -10
- package/{esm2020 → esm2022}/column-menu/column-sticky-change-event.mjs +4 -0
- package/{esm2020 → esm2022}/column-menu/column-visibility-change-event.mjs +4 -0
- package/{esm2020 → esm2022}/column-resizing/column-handle.directive.mjs +23 -15
- package/{esm2020 → esm2022}/column-resizing/column-resizing.service.mjs +8 -8
- package/{esm2020 → esm2022}/column-resizing/table.directive.mjs +17 -8
- package/{esm2020 → esm2022}/columns/checkbox-column.component.mjs +24 -16
- package/{esm2020 → esm2022}/columns/column-base.mjs +188 -84
- package/{esm2020 → esm2022}/columns/column-group.component.mjs +29 -20
- package/{esm2020 → esm2022}/columns/column-list.mjs +4 -3
- package/{esm2020 → esm2022}/columns/column.component.mjs +62 -46
- package/{esm2020 → esm2022}/columns/columns-container.mjs +16 -15
- package/{esm2020 → esm2022}/columns/command-column.component.mjs +10 -8
- package/{esm2020 → esm2022}/columns/reorder-column.component.mjs +23 -12
- package/{esm2020 → esm2022}/columns/span-column.component.mjs +49 -29
- package/esm2022/common/clipboard.directive.mjs +190 -0
- package/{esm2020 → esm2022}/common/clipboard.service.mjs +12 -9
- package/{esm2020 → esm2022}/common/column-info.service.mjs +10 -10
- package/esm2022/common/dom-events.service.mjs +26 -0
- package/{esm2020 → esm2022}/common/error-messages.mjs +4 -1
- package/{esm2020 → esm2022}/common/event-emitter.mjs +1 -0
- package/{esm2020 → esm2022}/common/id.service.mjs +4 -3
- package/{esm2020 → esm2022}/common/preventable-event.mjs +1 -3
- package/{esm2020 → esm2022}/common/provider.service.mjs +10 -3
- package/{esm2020 → esm2022}/common/single-popup.service.mjs +21 -10
- package/{esm2020 → esm2022}/common/sort.service.mjs +1 -3
- package/{esm2020 → esm2022}/data/change-notification.service.mjs +6 -4
- package/{esm2020 → esm2022}/data/data.collection.mjs +5 -0
- package/{esm2020 → esm2022}/data/data.iterators.mjs +16 -1
- package/{esm2020 → esm2022}/databinding.directive.mjs +24 -16
- package/{esm2020 → esm2022}/directives.mjs +8 -30
- package/{esm2020 → esm2022}/dragdrop/column-reorder-event.mjs +14 -0
- package/{esm2020 → esm2022}/dragdrop/column-reorder.service.mjs +4 -6
- package/{esm2020 → esm2022}/dragdrop/drag-and-drop.service.mjs +6 -8
- package/{esm2020 → esm2022}/dragdrop/drag-hint.service.mjs +7 -4
- package/{esm2020 → esm2022}/dragdrop/draggable-column.directive.mjs +22 -13
- package/{esm2020 → esm2022}/dragdrop/drop-cue.service.mjs +4 -3
- package/{esm2020 → esm2022}/dragdrop/drop-target.directive.mjs +10 -8
- package/esm2022/editing/add-command-tool.directive.mjs +64 -0
- package/{esm2020 → esm2022}/editing/add-command.directive.mjs +9 -8
- package/{esm2020 → esm2022}/editing/cancel-command.directive.mjs +17 -13
- package/{esm2020 → esm2022}/editing/cell-close-event.mjs +21 -4
- package/{esm2020 → esm2022}/editing/edit-command.directive.mjs +17 -13
- package/{esm2020 → esm2022}/editing/edit-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/editing/edit.service.mjs +13 -8
- package/{esm2020 → esm2022}/editing/local-data-changes.service.mjs +5 -6
- package/{esm2020 → esm2022}/editing/remove-command.directive.mjs +17 -13
- package/{esm2020 → esm2022}/editing/save-command.directive.mjs +17 -13
- package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +17 -9
- package/{esm2020 → esm2022}/editing-directives/in-cell-editing.directive.mjs +10 -3
- package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +2 -0
- package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +9 -3
- package/{esm2020 → esm2022}/editing-directives/row-editing-directive-base.mjs +4 -3
- package/{esm2020 → esm2022}/editing-directives/template-editing.directive.mjs +11 -3
- package/esm2022/excel/excel-command-tool.directive.mjs +66 -0
- package/{esm2020 → esm2022}/excel/excel-command.directive.mjs +11 -10
- package/{esm2020 → esm2022}/excel/excel-export-event.mjs +1 -0
- package/{esm2020 → esm2022}/excel/excel.component.mjs +66 -12
- package/{esm2020 → esm2022}/excel/excel.module.mjs +9 -7
- package/{esm2020 → esm2022}/excel/excel.service.mjs +5 -7
- package/{esm2020 → esm2022}/filtering/base-filter-cell.component.mjs +22 -11
- package/{esm2020 → esm2022}/filtering/boolean-filter.component.mjs +24 -32
- package/{esm2020 → esm2022}/filtering/cell/autocomplete-filter-cell.component.mjs +18 -15
- package/{esm2020 → esm2022}/filtering/cell/boolean-filter-cell.component.mjs +10 -8
- package/{esm2020 → esm2022}/filtering/cell/date-filter-cell.component.mjs +25 -23
- package/{esm2020 → esm2022}/filtering/cell/filter-cell-host.directive.mjs +3 -3
- package/{esm2020 → esm2022}/filtering/cell/filter-cell-operators.component.mjs +59 -38
- package/{esm2020 → esm2022}/filtering/cell/filter-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/filtering/cell/filter-cell-wrapper.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/cell/filter-cell.component.mjs +9 -9
- package/{esm2020 → esm2022}/filtering/cell/numeric-filter-cell.component.mjs +25 -18
- package/{esm2020 → esm2022}/filtering/cell/string-filter-cell.component.mjs +27 -19
- package/{esm2020 → esm2022}/filtering/date-filter.component.mjs +64 -38
- package/{esm2020 → esm2022}/filtering/filter-host.directive.mjs +8 -3
- package/{esm2020 → esm2022}/filtering/filter-input-wrapper.component.mjs +11 -8
- package/{esm2020 → esm2022}/filtering/filter-input.directive.mjs +20 -13
- package/{esm2020 → esm2022}/filtering/filter-row.component.mjs +17 -15
- package/{esm2020 → esm2022}/filtering/filter.service.mjs +14 -10
- package/{esm2020 → esm2022}/filtering/menu/boolean-filter-menu.component.mjs +33 -23
- package/{esm2020 → esm2022}/filtering/menu/date-filter-menu-input.component.mjs +24 -5
- package/{esm2020 → esm2022}/filtering/menu/date-filter-menu.component.mjs +26 -21
- package/{esm2020 → esm2022}/filtering/menu/filter-menu-container.component.mjs +46 -20
- package/{esm2020 → esm2022}/filtering/menu/filter-menu-dropdownlist.directive.mjs +11 -9
- package/{esm2020 → esm2022}/filtering/menu/filter-menu-host.directive.mjs +5 -3
- package/{esm2020 → esm2022}/filtering/menu/filter-menu-input-wrapper.component.mjs +14 -8
- package/{esm2020 → esm2022}/filtering/menu/filter-menu-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/filtering/menu/filter-menu.component.mjs +27 -6
- package/{esm2020 → esm2022}/filtering/menu/filter-radio-button.directive.mjs +7 -3
- package/{esm2020 → esm2022}/filtering/menu/menu-tabbing.service.mjs +9 -8
- package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu-input.component.mjs +51 -15
- package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu.component.mjs +42 -37
- package/{esm2020 → esm2022}/filtering/menu/string-filter-menu-input.component.mjs +25 -16
- package/{esm2020 → esm2022}/filtering/menu/string-filter-menu.component.mjs +36 -21
- package/{esm2020 → esm2022}/filtering/numeric-filter.component.mjs +51 -28
- package/{esm2020 → esm2022}/filtering/operators/after-eq-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/after-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/before-eq-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/before-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/contains-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/ends-with-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/eq-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/filter-operator.base.mjs +15 -10
- package/{esm2020 → esm2022}/filtering/operators/gt-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/gte-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/is-empty-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/is-not-empty-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/is-not-null-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/isnull-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/lt-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/lte-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/neq-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/not-contains-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/operators/starts-with-filter-operator.component.mjs +8 -8
- package/{esm2020 → esm2022}/filtering/string-filter.component.mjs +20 -15
- package/{esm2020 → esm2022}/grid.component.mjs +648 -396
- package/esm2022/grid.module.mjs +216 -0
- package/{esm2020 → esm2022}/grouping/group-footer-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/grouping/group-header-column-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/grouping/group-header-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/grouping/group-header.component.mjs +25 -16
- package/{esm2020 → esm2022}/grouping/group-info.service.mjs +1 -3
- package/{esm2020 → esm2022}/grouping/group-panel.component.mjs +71 -53
- package/{esm2020 → esm2022}/grouping/group-scroll-binding.directive.mjs +11 -9
- package/{esm2020 → esm2022}/grouping/groups.service.mjs +6 -7
- package/{esm2020 → esm2022}/index.mjs +6 -24
- package/{esm2020 → esm2022}/layout/browser-support.service.mjs +7 -4
- package/{esm2020 → esm2022}/layout/resizable.directive.mjs +16 -10
- package/{esm2020 → esm2022}/layout/resize.service.mjs +6 -8
- package/{esm2020 → esm2022}/layout/responsive.service.mjs +7 -9
- package/{esm2020 → esm2022}/layout/sizing-options.service.mjs +4 -6
- package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
- package/esm2022/localization/messages.mjs +591 -0
- package/{esm2020 → esm2022}/navigation/default-focusable-element.mjs +10 -6
- package/{esm2020 → esm2022}/navigation/focus-group.mjs +10 -9
- package/{esm2020 → esm2022}/navigation/focus-root.mjs +5 -4
- package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +23 -17
- package/{esm2020 → esm2022}/navigation/grid-focusable-element.mjs +1 -0
- package/{esm2020 → esm2022}/navigation/item-map.mjs +2 -4
- package/{esm2020 → esm2022}/navigation/logical-cell.directive.mjs +38 -23
- package/{esm2020 → esm2022}/navigation/logical-row.directive.mjs +18 -12
- package/{esm2020 → esm2022}/navigation/navigation-cursor.mjs +10 -8
- package/{esm2020 → esm2022}/navigation/navigation-metadata.mjs +12 -4
- package/{esm2020 → esm2022}/navigation/navigation-model.mjs +1 -3
- package/{esm2020 → esm2022}/navigation/navigation.service.mjs +49 -29
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{esm2020 → esm2022}/pdf/grid-query.mjs +4 -0
- package/esm2022/pdf/pdf-command-tool.directive.mjs +66 -0
- package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +10 -9
- package/{esm2020 → esm2022}/pdf/pdf-margin.component.mjs +3 -3
- package/{esm2020 → esm2022}/pdf/pdf-template.directive.mjs +3 -3
- package/{esm2020 → esm2022}/pdf/pdf.component.mjs +39 -12
- package/{esm2020 → esm2022}/pdf/pdf.module.mjs +5 -4
- package/{esm2020 → esm2022}/pdf/pdf.service.mjs +8 -9
- package/{esm2020 → esm2022}/rendering/cell-loading.template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/cell.component.mjs +64 -75
- package/{esm2020 → esm2022}/rendering/common/col-group.component.mjs +8 -9
- package/{esm2020 → esm2022}/rendering/common/field-accessor.pipe.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/common/loading.component.mjs +10 -8
- package/{esm2020 → esm2022}/rendering/common/spacer.component.mjs +12 -7
- package/{esm2020 → esm2022}/rendering/details/detail-collapse-event.mjs +8 -0
- package/{esm2020 → esm2022}/rendering/details/detail-expand-event.mjs +8 -0
- package/{esm2020 → esm2022}/rendering/details/detail-template.directive.mjs +8 -7
- package/{esm2020 → esm2022}/rendering/details/details.service.mjs +6 -7
- package/{esm2020 → esm2022}/rendering/details-expand.directive.mjs +28 -25
- package/{esm2020 → esm2022}/rendering/footer/footer-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/footer/footer.component.mjs +19 -15
- package/{esm2020 → esm2022}/rendering/grid-table.directive.mjs +9 -8
- package/{esm2020 → esm2022}/rendering/groups-expand.directive.mjs +21 -18
- package/{esm2020 → esm2022}/rendering/header/header-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/header/header.component.mjs +78 -55
- package/{esm2020 → esm2022}/rendering/list.component.mjs +99 -52
- package/{esm2020 → esm2022}/rendering/loading-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/no-records-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/rendering/table-body.component.mjs +60 -29
- package/{esm2020 → esm2022}/rendering/toolbar/toolbar-focusable.directive.mjs +9 -7
- package/{esm2020 → esm2022}/rendering/toolbar/toolbar-navigation.service.mjs +9 -8
- package/{esm2020 → esm2022}/rendering/toolbar/toolbar-template.directive.mjs +8 -7
- package/{esm2020 → esm2022}/rendering/toolbar/toolbar.component.mjs +17 -13
- package/{esm2020 → esm2022}/row-reordering/row-reorder.service.mjs +14 -10
- package/{esm2020 → esm2022}/scrolling/row-height.service.mjs +5 -2
- package/{esm2020 → esm2022}/scrolling/scroll-request.service.mjs +4 -6
- package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +10 -8
- package/{esm2020 → esm2022}/scrolling/scroller.service.mjs +12 -1
- package/{esm2020 → esm2022}/scrolling/suspend.service.mjs +4 -6
- package/{esm2020 → esm2022}/selection/cell-selection.service.mjs +31 -20
- package/{esm2020 → esm2022}/selection/marquee.directive.mjs +16 -4
- package/{esm2020 → esm2022}/selection/pair-set.mjs +16 -16
- package/esm2022/selection/selectall-checkbox.directive.mjs +144 -0
- package/{esm2020 → esm2022}/selection/selection-checkbox.directive.mjs +36 -15
- package/{esm2020 → esm2022}/selection/selection-default.mjs +46 -25
- package/{esm2020 → esm2022}/selection/selection.directive.mjs +4 -3
- package/{esm2020 → esm2022}/selection/selection.service.mjs +31 -18
- package/excel/excel-command-tool.directive.d.ts +41 -0
- package/excel/excel-command.directive.d.ts +1 -1
- package/excel/excel.component.d.ts +1 -1
- package/excel/excel.module.d.ts +3 -2
- package/{fesm2020 → fesm2022}/progress-kendo-angular-grid.mjs +5338 -5029
- package/filtering/base-filter-cell.component.d.ts +5 -1
- package/filtering/boolean-filter.component.d.ts +2 -17
- package/filtering/cell/autocomplete-filter-cell.component.d.ts +2 -7
- package/filtering/cell/date-filter-cell.component.d.ts +1 -1
- package/filtering/cell/filter-cell-operators.component.d.ts +1 -1
- package/filtering/cell/filter-cell-wrapper.component.d.ts +1 -1
- package/filtering/cell/filter-cell.component.d.ts +1 -1
- package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
- package/filtering/cell/string-filter-cell.component.d.ts +1 -1
- package/filtering/date-filter.component.d.ts +2 -11
- package/filtering/filter-host.directive.d.ts +2 -2
- package/filtering/filter-input-wrapper.component.d.ts +1 -2
- package/filtering/filter-input.directive.d.ts +1 -1
- package/filtering/filter-row.component.d.ts +1 -1
- package/filtering/filterable.d.ts +1 -1
- package/filtering/menu/boolean-filter-menu.component.d.ts +3 -2
- package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/date-filter-menu.component.d.ts +1 -7
- package/filtering/menu/filter-menu-container.component.d.ts +1 -1
- package/filtering/menu/filter-menu-dropdownlist.directive.d.ts +1 -1
- package/filtering/menu/filter-menu-host.directive.d.ts +1 -1
- package/filtering/menu/filter-menu-input-wrapper.component.d.ts +1 -1
- package/filtering/menu/filter-menu.component.d.ts +1 -1
- package/filtering/menu/filter-radio-button.directive.d.ts +1 -1
- package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/numeric-filter-menu.component.d.ts +1 -7
- package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
- package/filtering/menu/string-filter-menu.component.d.ts +1 -7
- package/filtering/numeric-filter.component.d.ts +2 -11
- package/filtering/operators/filter-operator.base.d.ts +1 -1
- package/filtering/string-filter.component.d.ts +2 -11
- package/grid.component.d.ts +5 -6
- package/grid.module.d.ts +94 -101
- package/grouping/group-header.component.d.ts +1 -1
- package/grouping/group-panel.component.d.ts +1 -1
- package/grouping/group-scroll-binding.directive.d.ts +1 -1
- package/index.d.ts +7 -27
- package/layout/resizable.directive.d.ts +1 -1
- package/localization/messages.d.ts +10 -6
- package/navigation/focusable.directive.d.ts +1 -1
- package/navigation/logical-cell.directive.d.ts +1 -1
- package/navigation/logical-row.directive.d.ts +1 -1
- package/navigation/navigable-settings.d.ts +2 -2
- package/navigation/navigation.service.d.ts +1 -1
- package/package.json +29 -33
- package/pdf/pdf-command-tool.directive.d.ts +41 -0
- package/pdf/pdf.component.d.ts +1 -1
- package/pdf/pdf.module.d.ts +2 -1
- package/rendering/cell.component.d.ts +1 -1
- package/rendering/common/cell-context.d.ts +1 -1
- package/rendering/common/col-group.component.d.ts +1 -1
- package/rendering/common/loading.component.d.ts +1 -1
- package/rendering/common/row-class.d.ts +4 -4
- package/rendering/common/spacer.component.d.ts +1 -1
- package/rendering/details/detail-template.directive.d.ts +2 -2
- package/rendering/details-expand.directive.d.ts +1 -1
- package/rendering/footer/footer.component.d.ts +1 -1
- package/rendering/grid-table.directive.d.ts +1 -1
- package/rendering/groups-expand.directive.d.ts +1 -1
- package/rendering/header/header.component.d.ts +1 -1
- package/rendering/list.component.d.ts +1 -1
- package/rendering/table-body.component.d.ts +1 -1
- package/rendering/toolbar/toolbar-position.d.ts +1 -1
- package/rendering/toolbar/toolbar-template.directive.d.ts +1 -1
- package/rendering/toolbar/toolbar.component.d.ts +1 -1
- package/row-reordering/types.d.ts +1 -1
- package/schematics/ngAdd/index.js +5 -5
- package/scrolling/scroll-sync.service.d.ts +1 -1
- package/scrolling/scroller.service.d.ts +1 -1
- package/scrolling/scrollmode.d.ts +1 -1
- package/selection/cell-selection.service.d.ts +1 -1
- package/selection/selectall-checkbox.directive.d.ts +9 -7
- package/selection/selection-checkbox.directive.d.ts +6 -5
- package/selection/selection-default.d.ts +1 -1
- package/selection/selection.service.d.ts +1 -1
- package/selection/types.d.ts +4 -4
- package/utils.d.ts +1 -1
- package/esm2020/column-menu/column-chooser-item-checked.directive.mjs +0 -39
- package/esm2020/common/clipboard.directive.mjs +0 -186
- package/esm2020/common/dom-events.service.mjs +0 -28
- package/esm2020/filtering/cell/row-filtering.module.mjs +0 -112
- package/esm2020/filtering/menu/filter-menu.module.mjs +0 -116
- package/esm2020/filtering/shared-filtering.module.mjs +0 -92
- package/esm2020/grid.module.mjs +0 -219
- package/esm2020/grouping/group.module.mjs +0 -53
- package/esm2020/localization/messages.mjs +0 -187
- package/esm2020/pager/pager-context.service.mjs +0 -41
- package/esm2020/pager/pager-dropdown.directive.mjs +0 -39
- package/esm2020/pager/pager-element.component.mjs +0 -109
- package/esm2020/pager/pager-info.component.mjs +0 -76
- package/esm2020/pager/pager-input.component.mjs +0 -142
- package/esm2020/pager/pager-input.directive.mjs +0 -30
- package/esm2020/pager/pager-next-buttons.component.mjs +0 -114
- package/esm2020/pager/pager-numeric-buttons.component.mjs +0 -257
- package/esm2020/pager/pager-page-sizes.component.mjs +0 -145
- package/esm2020/pager/pager-prev-buttons.component.mjs +0 -116
- package/esm2020/pager/pager-template.directive.mjs +0 -48
- package/esm2020/pager/pager.component.mjs +0 -457
- package/esm2020/pager/pager.module.mjs +0 -51
- package/esm2020/pager/pagesize-item.interface.mjs +0 -5
- package/esm2020/rendering/body.module.mjs +0 -88
- package/esm2020/rendering/footer/footer.module.mjs +0 -41
- package/esm2020/rendering/header/header.module.mjs +0 -152
- package/esm2020/selection/selectall-checkbox.directive.mjs +0 -115
- package/esm2020/shared.module.mjs +0 -41
- package/fesm2015/progress-kendo-angular-grid.mjs +0 -28474
- package/filtering/cell/row-filtering.module.d.ts +0 -59
- package/filtering/menu/filter-menu.module.d.ts +0 -63
- package/filtering/shared-filtering.module.d.ts +0 -49
- package/grouping/group.module.d.ts +0 -38
- package/pager/pager-context.service.d.ts +0 -30
- package/pager/pager-dropdown.directive.d.ts +0 -18
- package/pager/pager-element.component.d.ts +0 -79
- package/pager/pager-info.component.d.ts +0 -43
- package/pager/pager-input.component.d.ts +0 -45
- package/pager/pager-input.directive.d.ts +0 -18
- package/pager/pager-next-buttons.component.d.ts +0 -28
- package/pager/pager-numeric-buttons.component.d.ts +0 -52
- package/pager/pager-page-sizes.component.d.ts +0 -49
- package/pager/pager-prev-buttons.component.d.ts +0 -28
- package/pager/pager-template.directive.d.ts +0 -38
- package/pager/pager.component.d.ts +0 -80
- package/pager/pager.module.d.ts +0 -37
- package/pager/pagesize-item.interface.d.ts +0 -14
- package/rendering/body.module.d.ts +0 -50
- package/rendering/footer/footer.module.d.ts +0 -30
- package/rendering/header/header.module.d.ts +0 -101
- package/shared.module.d.ts +0 -29
- /package/{esm2020 → esm2022}/aggregates/aggregate-types.mjs +0 -0
- /package/{esm2020 → esm2022}/column-menu/column-menu-expandable-item.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/column-menu/column-menu-settings.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/column-menu/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/column-resizing/column-resize.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/columns/column-common.mjs +0 -0
- /package/{esm2020 → esm2022}/columns/sort-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/cell-click-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/common/clipboard-types.mjs +0 -0
- /package/{esm2020 → esm2022}/common/create-form-group.mjs +0 -0
- /package/{esm2020 → esm2022}/common/default-track-by.mjs +0 -0
- /package/{esm2020 → esm2022}/common/fetch-data-callback.mjs +0 -0
- /package/{esm2020 → esm2022}/common/filter-descriptor-differ.mjs +0 -0
- /package/{esm2020 → esm2022}/common/filter-operator.interface.mjs +0 -0
- /package/{esm2020/pager → esm2022/common}/pager-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/remove-confirmation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/size-options.mjs +0 -0
- /package/{esm2020 → esm2022}/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/data/change-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/data/data-item.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/data/grid-item.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/data/group-footer-item.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/data/group-item.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/dragdrop/column-reorder-config.mjs +0 -0
- /package/{esm2020 → esm2022}/dragdrop/common.mjs +0 -0
- /package/{esm2020 → esm2022}/dragdrop/context-types.mjs +0 -0
- /package/{esm2020 → esm2022}/editing/add-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing/cancel-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing/edit-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing/edit-row-options.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing/remove-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing/save-event-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing-directives/create-form-group-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/editing-directives/local-row-edit.service.mjs +0 -0
- /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/filtering/cell/filter-cell-component.factory.mjs +0 -0
- /package/{esm2020 → esm2022}/filtering/filter-component.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/filtering/filterable.mjs +0 -0
- /package/{esm2020 → esm2022}/filtering/menu/filter-menu-component.factory.mjs +0 -0
- /package/{esm2020 → esm2022}/grouping/group-key.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/grouping/group-rows-args.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/grouping/group-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/grouping/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/grouping/virtual-group-result.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/layout/row-sync.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/logical-cell.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/logical-row.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/navigable-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/navigation-cell.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/navigation-change.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/navigation-mode.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation/navigation-row.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/pdf/export-element.mjs +0 -0
- /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
- /package/{esm2020 → esm2022}/pdf/pdf-margin.interface.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-grid.mjs +0 -0
- /package/{esm2020 → esm2022}/rendering/common/cell-context.mjs +0 -0
- /package/{esm2020 → esm2022}/rendering/common/dom-queries.mjs +0 -0
- /package/{esm2020 → esm2022}/rendering/common/row-args.mjs +0 -0
- /package/{esm2020 → esm2022}/rendering/common/row-class.mjs +0 -0
- /package/{esm2020 → esm2022}/rendering/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/rendering/toolbar/toolbar-position.mjs +0 -0
- /package/{esm2020 → esm2022}/row-reordering/types.mjs +0 -0
- /package/{esm2020 → esm2022}/row-reordering/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/scrolling/content-scroll-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scrolling/scroll-bottom-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scrolling/scrollmode.mjs +0 -0
- /package/{esm2020 → esm2022}/selection/types.mjs +0 -0
- /package/{esm2020 → esm2022}/utils.mjs +0 -0
package/selection/types.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { RowArgs } from './../rendering/common/row-args';
|
|
|
9
9
|
* Represents the callback that is used by the
|
|
10
10
|
* [cellSelected]({% slug api_grid_gridcomponent %}#toc-cellselected) property ([see example](slug:grid_selection_custom#toc-setting-the-selected-cells)).
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
12
|
+
export type CellSelectedFn = (row: RowArgs, column: ColumnComponent, colIndex: number) => {
|
|
13
13
|
selected: boolean;
|
|
14
14
|
item: CellSelectionItem;
|
|
15
15
|
};
|
|
@@ -124,7 +124,7 @@ export interface SelectableSettings {
|
|
|
124
124
|
* <kendo-grid [selectable]="{mode: 'multiple'}"></kendo-grid>
|
|
125
125
|
* ```
|
|
126
126
|
*/
|
|
127
|
-
export
|
|
127
|
+
export type SelectableMode = "single" | "multiple";
|
|
128
128
|
/**
|
|
129
129
|
* Represents the possible states of the select-all checkbox.
|
|
130
130
|
*
|
|
@@ -141,7 +141,7 @@ export declare type SelectableMode = "single" | "multiple";
|
|
|
141
141
|
* <kendo-grid-column>
|
|
142
142
|
* ```
|
|
143
143
|
*/
|
|
144
|
-
export
|
|
144
|
+
export type SelectAllCheckboxState = "checked" | "unchecked" | "indeterminate";
|
|
145
145
|
/**
|
|
146
146
|
* The Grid `cell` selection items type.
|
|
147
147
|
*/
|
|
@@ -160,4 +160,4 @@ export interface CellSelectionItem {
|
|
|
160
160
|
*
|
|
161
161
|
* @hidden
|
|
162
162
|
*/
|
|
163
|
-
export
|
|
163
|
+
export type GridSelectionItem = number | RowArgs | CellSelectionItem;
|
package/utils.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ export declare const not: (fn: (...x: any[]) => boolean) => (...args: any[]) =>
|
|
|
53
53
|
* @hidden
|
|
54
54
|
* Represents a condition—a unary function which takes an argument and returns a Boolean.
|
|
55
55
|
*/
|
|
56
|
-
export
|
|
56
|
+
export type Condition<T> = (x: T) => boolean;
|
|
57
57
|
/**
|
|
58
58
|
* @hidden
|
|
59
59
|
*/
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Directive, ElementRef, HostBinding, Input, Renderer2 } from '@angular/core';
|
|
6
|
-
import { Subscription } from 'rxjs';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
export class ColumnMenuChooserItemCheckedDirective {
|
|
12
|
-
constructor(host, renderer) {
|
|
13
|
-
this.host = host;
|
|
14
|
-
this.renderer = renderer;
|
|
15
|
-
this.checkedChangeSub = new Subscription();
|
|
16
|
-
}
|
|
17
|
-
ngAfterViewInit() {
|
|
18
|
-
this.checkedChangeSub.add(this.renderer.listen(this.host.nativeElement.firstElementChild, 'change', (e) => {
|
|
19
|
-
this.kendoColumnMenuChooserItemChecked = e.target.checked;
|
|
20
|
-
}));
|
|
21
|
-
}
|
|
22
|
-
ngOnDestroy() {
|
|
23
|
-
this.checkedChangeSub.unsubscribe();
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
ColumnMenuChooserItemCheckedDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuChooserItemCheckedDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
27
|
-
ColumnMenuChooserItemCheckedDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ColumnMenuChooserItemCheckedDirective, isStandalone: true, selector: "[kendoColumnMenuChooserItemChecked]", inputs: { kendoColumnMenuChooserItemChecked: "kendoColumnMenuChooserItemChecked" }, host: { properties: { "attr.aria-checked": "this.kendoColumnMenuChooserItemChecked" } }, ngImport: i0 });
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColumnMenuChooserItemCheckedDirective, decorators: [{
|
|
29
|
-
type: Directive,
|
|
30
|
-
args: [{
|
|
31
|
-
selector: '[kendoColumnMenuChooserItemChecked]',
|
|
32
|
-
standalone: true
|
|
33
|
-
}]
|
|
34
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { kendoColumnMenuChooserItemChecked: [{
|
|
35
|
-
type: HostBinding,
|
|
36
|
-
args: ['attr.aria-checked']
|
|
37
|
-
}, {
|
|
38
|
-
type: Input
|
|
39
|
-
}] } });
|
|
@@ -1,186 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Directive, EventEmitter, Input, NgZone, Output, Renderer2, isDevMode } from '@angular/core';
|
|
6
|
-
import { ClipboardService } from './clipboard.service';
|
|
7
|
-
import { GridComponent } from '../grid.component';
|
|
8
|
-
import { hasObservers, isDocumentAvailable } from '@progress/kendo-angular-common';
|
|
9
|
-
import { Subscription } from 'rxjs';
|
|
10
|
-
import { take } from 'rxjs/operators';
|
|
11
|
-
import { closest, contains } from '../rendering/common/dom-queries';
|
|
12
|
-
import { recursiveFlatMap } from '../utils';
|
|
13
|
-
import { ClipboardErrorMessages } from './error-messages';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
import * as i1 from "../grid.component";
|
|
16
|
-
import * as i2 from "./clipboard.service";
|
|
17
|
-
/**
|
|
18
|
-
* The directive that enables the Grid built-in clipboard support. Allows copy, cut, and paste interactions
|
|
19
|
-
* with the Grid.
|
|
20
|
-
*/
|
|
21
|
-
export class GridClipboardDirective {
|
|
22
|
-
constructor(host, clipboardService, renderer, zone) {
|
|
23
|
-
this.host = host;
|
|
24
|
-
this.clipboardService = clipboardService;
|
|
25
|
-
this.renderer = renderer;
|
|
26
|
-
this.zone = zone;
|
|
27
|
-
/**
|
|
28
|
-
* Fires when the user performs `cut`, `copy` or `paste` action within the Grid content area.
|
|
29
|
-
*/
|
|
30
|
-
this.clipboard = new EventEmitter();
|
|
31
|
-
this._target = 'selection';
|
|
32
|
-
this._clipboardSettings = {
|
|
33
|
-
wholeRow: false,
|
|
34
|
-
copyHeaders: false,
|
|
35
|
-
copy: true,
|
|
36
|
-
cut: true,
|
|
37
|
-
paste: true
|
|
38
|
-
};
|
|
39
|
-
this.subs = new Subscription();
|
|
40
|
-
this.onClipboard = (operationType, args) => {
|
|
41
|
-
if (!this.clipboardSettings[operationType] || !this.inGrid(args)) {
|
|
42
|
-
return;
|
|
43
|
-
}
|
|
44
|
-
const gridData = Array.isArray(this.host.data) ? this.host.data : this.host.data.data;
|
|
45
|
-
const gridDataItems = gridData.flatMap(recursiveFlatMap);
|
|
46
|
-
const selection = this.host.selection;
|
|
47
|
-
const selectionDirective = this.host.selectionDirective;
|
|
48
|
-
const targetType = this.clipboardTarget;
|
|
49
|
-
const isCellSelection = (this.host.selectable?.cell || selectionDirective.isCellSelectionMode);
|
|
50
|
-
let clipboardData = [];
|
|
51
|
-
switch (targetType) {
|
|
52
|
-
case 'activeCell':
|
|
53
|
-
{
|
|
54
|
-
const targetCell = { ...this.host.activeCell };
|
|
55
|
-
clipboardData = targetCell && [{ dataItem: targetCell.dataItem, dataRowIndex: targetCell.dataRowIndex, colIndex: targetCell.colIndex }];
|
|
56
|
-
}
|
|
57
|
-
break;
|
|
58
|
-
case 'selection':
|
|
59
|
-
{
|
|
60
|
-
const identifier = selectionDirective.selectionKey;
|
|
61
|
-
clipboardData = gridDataItems.flatMap((item, index) => {
|
|
62
|
-
if (identifier) {
|
|
63
|
-
const key = typeof identifier === 'string' ? item[identifier] : identifier({ index: index + this.host.skip, dataItem: item });
|
|
64
|
-
return isCellSelection ?
|
|
65
|
-
selection.some(s => s.itemKey === key) ? [{ dataItem: item, dataRowIndex: index + this.host.skip }] : [] :
|
|
66
|
-
selection.indexOf(key) > -1 ? [{ dataItem: item, dataRowIndex: index + this.host.skip }] : [];
|
|
67
|
-
}
|
|
68
|
-
return isCellSelection ?
|
|
69
|
-
selection.some(s => s.itemKey === index + this.host.skip) ? [{ dataItem: item, dataRowIndex: index + this.host.skip }] : [] :
|
|
70
|
-
selection.indexOf(index + this.host.skip) > -1 ? [{ dataItem: item, dataRowIndex: index + this.host.skip }] : [];
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
break;
|
|
74
|
-
}
|
|
75
|
-
const isPaste = operationType === 'paste';
|
|
76
|
-
const pastedData = args.clipboardData.getData('text');
|
|
77
|
-
const visibleCols = this.host.columns.toArray().filter(c => c.isVisible);
|
|
78
|
-
const data = isPaste ?
|
|
79
|
-
{
|
|
80
|
-
dataString: pastedData,
|
|
81
|
-
gridItems: this.clipboardService.getGridData(pastedData, visibleCols, this.clipboardTarget, clipboardData[0]?.dataRowIndex, {
|
|
82
|
-
wholeRow: this.clipboardSettings.wholeRow,
|
|
83
|
-
isCellSelection
|
|
84
|
-
})
|
|
85
|
-
} :
|
|
86
|
-
this.clipboardService.createClipboardData(clipboardData || [], visibleCols, {
|
|
87
|
-
wholeRow: this.clipboardSettings.wholeRow || (this.clipboardTarget === 'selection' && !isCellSelection),
|
|
88
|
-
target: this.clipboardTarget,
|
|
89
|
-
copyHeaders: this.clipboardSettings.copyHeaders,
|
|
90
|
-
operationType
|
|
91
|
-
});
|
|
92
|
-
!isPaste && navigator.clipboard.writeText(data.dataString);
|
|
93
|
-
if (hasObservers(this.clipboard)) {
|
|
94
|
-
this.zone.run(() => {
|
|
95
|
-
this.clipboard.emit({
|
|
96
|
-
type: operationType,
|
|
97
|
-
originalEvent: args,
|
|
98
|
-
clipboardData: data.dataString,
|
|
99
|
-
gridData: data.gridItems,
|
|
100
|
-
target: {
|
|
101
|
-
dataRowIndex: this.clipboardService.targetRowIndex,
|
|
102
|
-
colField: this.clipboardService.targetColField,
|
|
103
|
-
dataItem: clipboardData.find(item => item.dataRowIndex === this.clipboardService.targetRowIndex)?.dataItem
|
|
104
|
-
}
|
|
105
|
-
});
|
|
106
|
-
});
|
|
107
|
-
}
|
|
108
|
-
this.clipboardService.targetColField = this.clipboardService.targetRowIndex = null;
|
|
109
|
-
};
|
|
110
|
-
this.inGrid = (args) => {
|
|
111
|
-
const target = document.activeElement.matches('.k-table-td') ? document.activeElement : args.target;
|
|
112
|
-
const inContentArea = closest(target, node => node.parentElement?.classList.contains('k-grid-container'));
|
|
113
|
-
const inHost = contains(this.host.wrapper.nativeElement, target);
|
|
114
|
-
return target && inHost && inContentArea;
|
|
115
|
-
};
|
|
116
|
-
}
|
|
117
|
-
/**
|
|
118
|
-
* Determines the target of the clipboard operation ([see example]({% slug clipboard_grid %}#toc-clipboard-target)). The possible options are:
|
|
119
|
-
* - `activeCell`
|
|
120
|
-
* - `selection`
|
|
121
|
-
*
|
|
122
|
-
* @default 'selection'
|
|
123
|
-
*/
|
|
124
|
-
set clipboardTarget(value) {
|
|
125
|
-
if (isDevMode()) {
|
|
126
|
-
this.zone.onStable.pipe(take(1)).subscribe(() => {
|
|
127
|
-
if (value === 'activeCell' && !(this.host.navigable.length)) {
|
|
128
|
-
console.warn(ClipboardErrorMessages.clipboardTarget.activeCellNavigable);
|
|
129
|
-
}
|
|
130
|
-
else if (value === 'selection' && !(this.host.selectable || this.host.selectionDirective)) {
|
|
131
|
-
console.warn(ClipboardErrorMessages.selectionSelectable);
|
|
132
|
-
}
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
this._target = value;
|
|
136
|
-
}
|
|
137
|
-
get clipboardTarget() {
|
|
138
|
-
return this._target;
|
|
139
|
-
}
|
|
140
|
-
/**
|
|
141
|
-
* The `GridClipboardDirective` settings.
|
|
142
|
-
*
|
|
143
|
-
* @default { wholeRow: false, copyHeaders: false copy: true, cut: true, paste: true }
|
|
144
|
-
*/
|
|
145
|
-
set clipboardSettings(value) {
|
|
146
|
-
this._clipboardSettings = Object.assign({}, this._clipboardSettings, value);
|
|
147
|
-
}
|
|
148
|
-
get clipboardSettings() {
|
|
149
|
-
return this._clipboardSettings;
|
|
150
|
-
}
|
|
151
|
-
ngAfterViewInit() {
|
|
152
|
-
if (!isDocumentAvailable()) {
|
|
153
|
-
return;
|
|
154
|
-
}
|
|
155
|
-
if (this.clipboardTarget === 'selection' && !(this.host.selectable || this.host.selectionDirective)) {
|
|
156
|
-
console.warn(ClipboardErrorMessages.selectionSelectable);
|
|
157
|
-
}
|
|
158
|
-
// needed due to the following issue in Chrome
|
|
159
|
-
// https://bugs.chromium.org/p/chromium/issues/detail?id=1156117&q=focus%20programmatically%20paste&can=2
|
|
160
|
-
this.zone.runOutsideAngular(() => {
|
|
161
|
-
this.subs.add(this.renderer.listen(document, 'copy', (args) => this.onClipboard('copy', args)));
|
|
162
|
-
this.subs.add(this.renderer.listen(document, 'cut', (args) => this.onClipboard('cut', args)));
|
|
163
|
-
this.subs.add(this.renderer.listen(document, 'paste', (args) => this.onClipboard('paste', args)));
|
|
164
|
-
});
|
|
165
|
-
}
|
|
166
|
-
ngOnDestroy() {
|
|
167
|
-
this.subs.unsubscribe();
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
GridClipboardDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GridClipboardDirective, deps: [{ token: i1.GridComponent }, { token: i2.ClipboardService }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
171
|
-
GridClipboardDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: GridClipboardDirective, isStandalone: true, selector: "[kendoGridClipboard]", inputs: { clipboardTarget: "clipboardTarget", clipboardSettings: "clipboardSettings" }, outputs: { clipboard: "clipboard" }, providers: [ClipboardService], exportAs: ["kendoGridClipboard"], ngImport: i0 });
|
|
172
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GridClipboardDirective, decorators: [{
|
|
173
|
-
type: Directive,
|
|
174
|
-
args: [{
|
|
175
|
-
selector: '[kendoGridClipboard]',
|
|
176
|
-
exportAs: 'kendoGridClipboard',
|
|
177
|
-
providers: [ClipboardService],
|
|
178
|
-
standalone: true
|
|
179
|
-
}]
|
|
180
|
-
}], ctorParameters: function () { return [{ type: i1.GridComponent }, { type: i2.ClipboardService }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { clipboardTarget: [{
|
|
181
|
-
type: Input
|
|
182
|
-
}], clipboardSettings: [{
|
|
183
|
-
type: Input
|
|
184
|
-
}], clipboard: [{
|
|
185
|
-
type: Output
|
|
186
|
-
}] } });
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Injectable, EventEmitter } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export class DomEventsService {
|
|
11
|
-
constructor() {
|
|
12
|
-
this.cellClick = new EventEmitter();
|
|
13
|
-
this.cellMousedown = new EventEmitter();
|
|
14
|
-
this.cellMouseup = new EventEmitter();
|
|
15
|
-
this.click = new EventEmitter();
|
|
16
|
-
this.keydown = new EventEmitter();
|
|
17
|
-
this.focus = new EventEmitter();
|
|
18
|
-
this.focusIn = new EventEmitter();
|
|
19
|
-
this.focusOut = new EventEmitter();
|
|
20
|
-
this.windowBlur = new EventEmitter();
|
|
21
|
-
this.paste = new EventEmitter();
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
DomEventsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DomEventsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25
|
-
DomEventsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DomEventsService });
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DomEventsService, decorators: [{
|
|
27
|
-
type: Injectable
|
|
28
|
-
}] });
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { NumericFilterCellComponent } from './numeric-filter-cell.component';
|
|
7
|
-
import { StringFilterCellComponent } from './string-filter-cell.component';
|
|
8
|
-
import { BooleanFilterCellComponent } from './boolean-filter-cell.component';
|
|
9
|
-
import { DateFilterCellComponent } from './date-filter-cell.component';
|
|
10
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
11
|
-
import { CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, YearViewService, NavigationService } from '@progress/kendo-angular-dateinputs';
|
|
12
|
-
import { DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
|
|
13
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
14
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
15
|
-
import { KENDO_GRID_FILTER_ROW } from '../../directives';
|
|
16
|
-
import * as i0 from "@angular/core";
|
|
17
|
-
import * as i1 from "../filter-row.component";
|
|
18
|
-
import * as i2 from "./filter-cell.component";
|
|
19
|
-
import * as i3 from "./filter-cell-template.directive";
|
|
20
|
-
import * as i4 from "./string-filter-cell.component";
|
|
21
|
-
import * as i5 from "./numeric-filter-cell.component";
|
|
22
|
-
import * as i6 from "./autocomplete-filter-cell.component";
|
|
23
|
-
import * as i7 from "./boolean-filter-cell.component";
|
|
24
|
-
import * as i8 from "./filter-cell-host.directive";
|
|
25
|
-
import * as i9 from "./filter-cell-wrapper.component";
|
|
26
|
-
import * as i10 from "./date-filter-cell.component";
|
|
27
|
-
import * as i11 from "../../columns/column.component";
|
|
28
|
-
import * as i12 from "../../columns/column-group.component";
|
|
29
|
-
import * as i13 from "../../navigation/logical-cell.directive";
|
|
30
|
-
import * as i14 from "../../navigation/logical-row.directive";
|
|
31
|
-
import * as i15 from "../../navigation/focusable.directive";
|
|
32
|
-
import * as i16 from "../../rendering/footer/footer-template.directive";
|
|
33
|
-
import * as i17 from "../../rendering/common/col-group.component";
|
|
34
|
-
import * as i18 from "../../layout/resizable.directive";
|
|
35
|
-
import * as i19 from "@progress/kendo-angular-common";
|
|
36
|
-
import * as i20 from "../../rendering/common/field-accessor.pipe";
|
|
37
|
-
import * as i21 from "../../rendering/details/detail-template.directive";
|
|
38
|
-
import * as i22 from "../../columns/span-column.component";
|
|
39
|
-
import * as i23 from "../../rendering/common/loading.component";
|
|
40
|
-
import * as i24 from "../../rendering/grid-table.directive";
|
|
41
|
-
import * as i25 from "./filter-cell-operators.component";
|
|
42
|
-
import * as i26 from "../operators/contains-filter-operator.component";
|
|
43
|
-
import * as i27 from "../operators/not-contains-filter-operator.component";
|
|
44
|
-
import * as i28 from "../operators/ends-with-filter-operator.component";
|
|
45
|
-
import * as i29 from "../operators/eq-filter-operator.component";
|
|
46
|
-
import * as i30 from "../operators/is-empty-filter-operator.component";
|
|
47
|
-
import * as i31 from "../operators/is-not-empty-filter-operator.component";
|
|
48
|
-
import * as i32 from "../operators/is-not-null-filter-operator.component";
|
|
49
|
-
import * as i33 from "../operators/isnull-filter-operator.component";
|
|
50
|
-
import * as i34 from "../operators/neq-filter-operator.component";
|
|
51
|
-
import * as i35 from "../operators/starts-with-filter-operator.component";
|
|
52
|
-
import * as i36 from "../operators/gt-filter-operator.component";
|
|
53
|
-
import * as i37 from "../operators/gte-filter-operator.component";
|
|
54
|
-
import * as i38 from "../operators/lt-filter-operator.component";
|
|
55
|
-
import * as i39 from "../operators/lte-filter-operator.component";
|
|
56
|
-
import * as i40 from "../operators/after-filter-operator.component";
|
|
57
|
-
import * as i41 from "../operators/after-eq-filter-operator.component";
|
|
58
|
-
import * as i42 from "../operators/before-eq-filter-operator.component";
|
|
59
|
-
import * as i43 from "../operators/before-filter-operator.component";
|
|
60
|
-
import * as i44 from "../filter-input.directive";
|
|
61
|
-
const ENTRY_COMPONENTS = [
|
|
62
|
-
StringFilterCellComponent,
|
|
63
|
-
NumericFilterCellComponent,
|
|
64
|
-
BooleanFilterCellComponent,
|
|
65
|
-
DateFilterCellComponent
|
|
66
|
-
];
|
|
67
|
-
/**
|
|
68
|
-
* @hidden
|
|
69
|
-
*
|
|
70
|
-
* This module is deprecated and will be removed in a future major version release.
|
|
71
|
-
*/
|
|
72
|
-
export class RowFilterModule {
|
|
73
|
-
}
|
|
74
|
-
RowFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
75
|
-
RowFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, imports: [i1.FilterRowComponent, i2.FilterCellComponent, i3.FilterCellTemplateDirective, i4.StringFilterCellComponent, i5.NumericFilterCellComponent, i6.AutoCompleteFilterCellComponent, i7.BooleanFilterCellComponent, i8.FilterCellHostDirective, i9.FilterCellWrapperComponent, i10.DateFilterCellComponent, i11.ColumnComponent, i12.ColumnGroupComponent, i13.LogicalCellDirective, i14.LogicalRowDirective, i15.FocusableDirective, i16.FooterTemplateDirective, i17.ColGroupComponent, i18.ResizableContainerDirective, i19.TemplateContextDirective, i20.FieldAccessorPipe, i21.DetailTemplateDirective, i22.SpanColumnComponent, i23.LoadingComponent, i24.GridTableDirective, i25.FilterCellOperatorsComponent, i26.ContainsFilterOperatorComponent, i27.DoesNotContainFilterOperatorComponent, i28.EndsWithFilterOperatorComponent, i29.EqualFilterOperatorComponent, i30.IsEmptyFilterOperatorComponent, i31.IsNotEmptyFilterOperatorComponent, i32.IsNotNullFilterOperatorComponent, i33.IsNullFilterOperatorComponent, i34.NotEqualFilterOperatorComponent, i35.StartsWithFilterOperatorComponent, i36.GreaterFilterOperatorComponent, i37.GreaterOrEqualToFilterOperatorComponent, i38.LessFilterOperatorComponent, i39.LessOrEqualToFilterOperatorComponent, i40.AfterFilterOperatorComponent, i41.AfterEqFilterOperatorComponent, i42.BeforeEqFilterOperatorComponent, i43.BeforeFilterOperatorComponent, i44.FilterInputDirective], exports: [i1.FilterRowComponent, i2.FilterCellComponent, i3.FilterCellTemplateDirective, i4.StringFilterCellComponent, i5.NumericFilterCellComponent, i6.AutoCompleteFilterCellComponent, i7.BooleanFilterCellComponent, i8.FilterCellHostDirective, i9.FilterCellWrapperComponent, i10.DateFilterCellComponent, i11.ColumnComponent, i12.ColumnGroupComponent, i13.LogicalCellDirective, i14.LogicalRowDirective, i15.FocusableDirective, i16.FooterTemplateDirective, i17.ColGroupComponent, i18.ResizableContainerDirective, i19.TemplateContextDirective, i20.FieldAccessorPipe, i21.DetailTemplateDirective, i22.SpanColumnComponent, i23.LoadingComponent, i24.GridTableDirective, i25.FilterCellOperatorsComponent, i26.ContainsFilterOperatorComponent, i27.DoesNotContainFilterOperatorComponent, i28.EndsWithFilterOperatorComponent, i29.EqualFilterOperatorComponent, i30.IsEmptyFilterOperatorComponent, i31.IsNotEmptyFilterOperatorComponent, i32.IsNotNullFilterOperatorComponent, i33.IsNullFilterOperatorComponent, i34.NotEqualFilterOperatorComponent, i35.StartsWithFilterOperatorComponent, i36.GreaterFilterOperatorComponent, i37.GreaterOrEqualToFilterOperatorComponent, i38.LessFilterOperatorComponent, i39.LessOrEqualToFilterOperatorComponent, i40.AfterFilterOperatorComponent, i41.AfterEqFilterOperatorComponent, i42.BeforeEqFilterOperatorComponent, i43.BeforeFilterOperatorComponent, i44.FilterInputDirective] });
|
|
76
|
-
RowFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, providers: [
|
|
77
|
-
PopupService,
|
|
78
|
-
ResizeBatchService,
|
|
79
|
-
IconsService,
|
|
80
|
-
DialogContainerService,
|
|
81
|
-
DialogService,
|
|
82
|
-
WindowService,
|
|
83
|
-
WindowContainerService,
|
|
84
|
-
CalendarDOMService,
|
|
85
|
-
CenturyViewService,
|
|
86
|
-
DecadeViewService,
|
|
87
|
-
MonthViewService,
|
|
88
|
-
YearViewService,
|
|
89
|
-
NavigationService
|
|
90
|
-
], imports: [i1.FilterRowComponent, i2.FilterCellComponent, i4.StringFilterCellComponent, i5.NumericFilterCellComponent, i6.AutoCompleteFilterCellComponent, i7.BooleanFilterCellComponent, i9.FilterCellWrapperComponent, i10.DateFilterCellComponent, i11.ColumnComponent, i12.ColumnGroupComponent, i17.ColGroupComponent, i22.SpanColumnComponent, i23.LoadingComponent, i25.FilterCellOperatorsComponent, i26.ContainsFilterOperatorComponent, i27.DoesNotContainFilterOperatorComponent, i28.EndsWithFilterOperatorComponent, i29.EqualFilterOperatorComponent, i30.IsEmptyFilterOperatorComponent, i31.IsNotEmptyFilterOperatorComponent, i32.IsNotNullFilterOperatorComponent, i33.IsNullFilterOperatorComponent, i34.NotEqualFilterOperatorComponent, i35.StartsWithFilterOperatorComponent, i36.GreaterFilterOperatorComponent, i37.GreaterOrEqualToFilterOperatorComponent, i38.LessFilterOperatorComponent, i39.LessOrEqualToFilterOperatorComponent, i40.AfterFilterOperatorComponent, i41.AfterEqFilterOperatorComponent, i42.BeforeEqFilterOperatorComponent, i43.BeforeFilterOperatorComponent] });
|
|
91
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RowFilterModule, decorators: [{
|
|
92
|
-
type: NgModule,
|
|
93
|
-
args: [{
|
|
94
|
-
exports: [...KENDO_GRID_FILTER_ROW],
|
|
95
|
-
imports: [...KENDO_GRID_FILTER_ROW],
|
|
96
|
-
providers: [
|
|
97
|
-
PopupService,
|
|
98
|
-
ResizeBatchService,
|
|
99
|
-
IconsService,
|
|
100
|
-
DialogContainerService,
|
|
101
|
-
DialogService,
|
|
102
|
-
WindowService,
|
|
103
|
-
WindowContainerService,
|
|
104
|
-
CalendarDOMService,
|
|
105
|
-
CenturyViewService,
|
|
106
|
-
DecadeViewService,
|
|
107
|
-
MonthViewService,
|
|
108
|
-
YearViewService,
|
|
109
|
-
NavigationService
|
|
110
|
-
]
|
|
111
|
-
}]
|
|
112
|
-
}] });
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { StringFilterMenuComponent } from './string-filter-menu.component';
|
|
7
|
-
import { NumericFilterMenuComponent } from './numeric-filter-menu.component';
|
|
8
|
-
import { DateFilterMenuComponent } from './date-filter-menu.component';
|
|
9
|
-
import { BooleanFilterMenuComponent } from './boolean-filter-menu.component';
|
|
10
|
-
import { KENDO_GRID_FILTER_MENU } from '../../directives';
|
|
11
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
12
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
13
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
14
|
-
import { DialogContainerService, DialogService, WindowContainerService, WindowService } from '@progress/kendo-angular-dialog';
|
|
15
|
-
import { CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, NavigationService, YearViewService } from '@progress/kendo-angular-dateinputs';
|
|
16
|
-
import * as i0 from "@angular/core";
|
|
17
|
-
import * as i1 from "../../columns/column.component";
|
|
18
|
-
import * as i2 from "../../columns/column-group.component";
|
|
19
|
-
import * as i3 from "../../navigation/logical-cell.directive";
|
|
20
|
-
import * as i4 from "../../navigation/logical-row.directive";
|
|
21
|
-
import * as i5 from "../../navigation/focusable.directive";
|
|
22
|
-
import * as i6 from "../../rendering/footer/footer-template.directive";
|
|
23
|
-
import * as i7 from "../../rendering/common/col-group.component";
|
|
24
|
-
import * as i8 from "../../layout/resizable.directive";
|
|
25
|
-
import * as i9 from "@progress/kendo-angular-common";
|
|
26
|
-
import * as i10 from "../../rendering/common/field-accessor.pipe";
|
|
27
|
-
import * as i11 from "../../rendering/details/detail-template.directive";
|
|
28
|
-
import * as i12 from "../../columns/span-column.component";
|
|
29
|
-
import * as i13 from "../../rendering/common/loading.component";
|
|
30
|
-
import * as i14 from "../../rendering/grid-table.directive";
|
|
31
|
-
import * as i15 from "../cell/filter-cell-operators.component";
|
|
32
|
-
import * as i16 from "../operators/contains-filter-operator.component";
|
|
33
|
-
import * as i17 from "../operators/not-contains-filter-operator.component";
|
|
34
|
-
import * as i18 from "../operators/ends-with-filter-operator.component";
|
|
35
|
-
import * as i19 from "../operators/eq-filter-operator.component";
|
|
36
|
-
import * as i20 from "../operators/is-empty-filter-operator.component";
|
|
37
|
-
import * as i21 from "../operators/is-not-empty-filter-operator.component";
|
|
38
|
-
import * as i22 from "../operators/is-not-null-filter-operator.component";
|
|
39
|
-
import * as i23 from "../operators/isnull-filter-operator.component";
|
|
40
|
-
import * as i24 from "../operators/neq-filter-operator.component";
|
|
41
|
-
import * as i25 from "../operators/starts-with-filter-operator.component";
|
|
42
|
-
import * as i26 from "../operators/gt-filter-operator.component";
|
|
43
|
-
import * as i27 from "../operators/gte-filter-operator.component";
|
|
44
|
-
import * as i28 from "../operators/lt-filter-operator.component";
|
|
45
|
-
import * as i29 from "../operators/lte-filter-operator.component";
|
|
46
|
-
import * as i30 from "../operators/after-filter-operator.component";
|
|
47
|
-
import * as i31 from "../operators/after-eq-filter-operator.component";
|
|
48
|
-
import * as i32 from "../operators/before-eq-filter-operator.component";
|
|
49
|
-
import * as i33 from "../operators/before-filter-operator.component";
|
|
50
|
-
import * as i34 from "../filter-input.directive";
|
|
51
|
-
import * as i35 from "./filter-menu.component";
|
|
52
|
-
import * as i36 from "./filter-menu-container.component";
|
|
53
|
-
import * as i37 from "./filter-menu-input-wrapper.component";
|
|
54
|
-
import * as i38 from "./string-filter-menu-input.component";
|
|
55
|
-
import * as i39 from "./string-filter-menu.component";
|
|
56
|
-
import * as i40 from "./filter-menu-template.directive";
|
|
57
|
-
import * as i41 from "./numeric-filter-menu.component";
|
|
58
|
-
import * as i42 from "./numeric-filter-menu-input.component";
|
|
59
|
-
import * as i43 from "./date-filter-menu-input.component";
|
|
60
|
-
import * as i44 from "./date-filter-menu.component";
|
|
61
|
-
import * as i45 from "./filter-menu-host.directive";
|
|
62
|
-
import * as i46 from "./boolean-filter-menu.component";
|
|
63
|
-
import * as i47 from "./filter-menu-dropdownlist.directive";
|
|
64
|
-
import * as i48 from "./filter-radio-button.directive";
|
|
65
|
-
const ENTRY_COMPONENTS = [
|
|
66
|
-
StringFilterMenuComponent,
|
|
67
|
-
NumericFilterMenuComponent,
|
|
68
|
-
DateFilterMenuComponent,
|
|
69
|
-
BooleanFilterMenuComponent
|
|
70
|
-
];
|
|
71
|
-
/**
|
|
72
|
-
* @hidden
|
|
73
|
-
*
|
|
74
|
-
* This module is deprecated and will be removed in a future major version release.
|
|
75
|
-
*/
|
|
76
|
-
export class FilterMenuModule {
|
|
77
|
-
}
|
|
78
|
-
FilterMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
79
|
-
FilterMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, imports: [i1.ColumnComponent, i2.ColumnGroupComponent, i3.LogicalCellDirective, i4.LogicalRowDirective, i5.FocusableDirective, i6.FooterTemplateDirective, i7.ColGroupComponent, i8.ResizableContainerDirective, i9.TemplateContextDirective, i10.FieldAccessorPipe, i11.DetailTemplateDirective, i12.SpanColumnComponent, i13.LoadingComponent, i14.GridTableDirective, i15.FilterCellOperatorsComponent, i16.ContainsFilterOperatorComponent, i17.DoesNotContainFilterOperatorComponent, i18.EndsWithFilterOperatorComponent, i19.EqualFilterOperatorComponent, i20.IsEmptyFilterOperatorComponent, i21.IsNotEmptyFilterOperatorComponent, i22.IsNotNullFilterOperatorComponent, i23.IsNullFilterOperatorComponent, i24.NotEqualFilterOperatorComponent, i25.StartsWithFilterOperatorComponent, i26.GreaterFilterOperatorComponent, i27.GreaterOrEqualToFilterOperatorComponent, i28.LessFilterOperatorComponent, i29.LessOrEqualToFilterOperatorComponent, i30.AfterFilterOperatorComponent, i31.AfterEqFilterOperatorComponent, i32.BeforeEqFilterOperatorComponent, i33.BeforeFilterOperatorComponent, i34.FilterInputDirective, i35.FilterMenuComponent, i36.FilterMenuContainerComponent, i37.FilterMenuInputWrapperComponent, i38.StringFilterMenuInputComponent, i39.StringFilterMenuComponent, i40.FilterMenuTemplateDirective, i41.NumericFilterMenuComponent, i42.NumericFilterMenuInputComponent, i43.DateFilterMenuInputComponent, i44.DateFilterMenuComponent, i45.FilterMenuHostDirective, i46.BooleanFilterMenuComponent, i47.FilterMenuDropDownListDirective, i48.BooleanFilterRadioButtonDirective], exports: [i1.ColumnComponent, i2.ColumnGroupComponent, i3.LogicalCellDirective, i4.LogicalRowDirective, i5.FocusableDirective, i6.FooterTemplateDirective, i7.ColGroupComponent, i8.ResizableContainerDirective, i9.TemplateContextDirective, i10.FieldAccessorPipe, i11.DetailTemplateDirective, i12.SpanColumnComponent, i13.LoadingComponent, i14.GridTableDirective, i15.FilterCellOperatorsComponent, i16.ContainsFilterOperatorComponent, i17.DoesNotContainFilterOperatorComponent, i18.EndsWithFilterOperatorComponent, i19.EqualFilterOperatorComponent, i20.IsEmptyFilterOperatorComponent, i21.IsNotEmptyFilterOperatorComponent, i22.IsNotNullFilterOperatorComponent, i23.IsNullFilterOperatorComponent, i24.NotEqualFilterOperatorComponent, i25.StartsWithFilterOperatorComponent, i26.GreaterFilterOperatorComponent, i27.GreaterOrEqualToFilterOperatorComponent, i28.LessFilterOperatorComponent, i29.LessOrEqualToFilterOperatorComponent, i30.AfterFilterOperatorComponent, i31.AfterEqFilterOperatorComponent, i32.BeforeEqFilterOperatorComponent, i33.BeforeFilterOperatorComponent, i34.FilterInputDirective, i35.FilterMenuComponent, i36.FilterMenuContainerComponent, i37.FilterMenuInputWrapperComponent, i38.StringFilterMenuInputComponent, i39.StringFilterMenuComponent, i40.FilterMenuTemplateDirective, i41.NumericFilterMenuComponent, i42.NumericFilterMenuInputComponent, i43.DateFilterMenuInputComponent, i44.DateFilterMenuComponent, i45.FilterMenuHostDirective, i46.BooleanFilterMenuComponent, i47.FilterMenuDropDownListDirective, i48.BooleanFilterRadioButtonDirective] });
|
|
80
|
-
FilterMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, providers: [
|
|
81
|
-
PopupService,
|
|
82
|
-
ResizeBatchService,
|
|
83
|
-
IconsService,
|
|
84
|
-
DialogContainerService,
|
|
85
|
-
DialogService,
|
|
86
|
-
WindowService,
|
|
87
|
-
WindowContainerService,
|
|
88
|
-
CalendarDOMService,
|
|
89
|
-
CenturyViewService,
|
|
90
|
-
DecadeViewService,
|
|
91
|
-
MonthViewService,
|
|
92
|
-
YearViewService,
|
|
93
|
-
NavigationService
|
|
94
|
-
], imports: [i1.ColumnComponent, i2.ColumnGroupComponent, i7.ColGroupComponent, i12.SpanColumnComponent, i13.LoadingComponent, i15.FilterCellOperatorsComponent, i16.ContainsFilterOperatorComponent, i17.DoesNotContainFilterOperatorComponent, i18.EndsWithFilterOperatorComponent, i19.EqualFilterOperatorComponent, i20.IsEmptyFilterOperatorComponent, i21.IsNotEmptyFilterOperatorComponent, i22.IsNotNullFilterOperatorComponent, i23.IsNullFilterOperatorComponent, i24.NotEqualFilterOperatorComponent, i25.StartsWithFilterOperatorComponent, i26.GreaterFilterOperatorComponent, i27.GreaterOrEqualToFilterOperatorComponent, i28.LessFilterOperatorComponent, i29.LessOrEqualToFilterOperatorComponent, i30.AfterFilterOperatorComponent, i31.AfterEqFilterOperatorComponent, i32.BeforeEqFilterOperatorComponent, i33.BeforeFilterOperatorComponent, i35.FilterMenuComponent, i36.FilterMenuContainerComponent, i37.FilterMenuInputWrapperComponent, i38.StringFilterMenuInputComponent, i39.StringFilterMenuComponent, i41.NumericFilterMenuComponent, i42.NumericFilterMenuInputComponent, i43.DateFilterMenuInputComponent, i44.DateFilterMenuComponent, i46.BooleanFilterMenuComponent] });
|
|
95
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterMenuModule, decorators: [{
|
|
96
|
-
type: NgModule,
|
|
97
|
-
args: [{
|
|
98
|
-
exports: [...KENDO_GRID_FILTER_MENU],
|
|
99
|
-
imports: [...KENDO_GRID_FILTER_MENU],
|
|
100
|
-
providers: [
|
|
101
|
-
PopupService,
|
|
102
|
-
ResizeBatchService,
|
|
103
|
-
IconsService,
|
|
104
|
-
DialogContainerService,
|
|
105
|
-
DialogService,
|
|
106
|
-
WindowService,
|
|
107
|
-
WindowContainerService,
|
|
108
|
-
CalendarDOMService,
|
|
109
|
-
CenturyViewService,
|
|
110
|
-
DecadeViewService,
|
|
111
|
-
MonthViewService,
|
|
112
|
-
YearViewService,
|
|
113
|
-
NavigationService
|
|
114
|
-
]
|
|
115
|
-
}]
|
|
116
|
-
}] });
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, NavigationService, YearViewService } from '@progress/kendo-angular-dateinputs';
|
|
7
|
-
import { PopupService } from "@progress/kendo-angular-popup";
|
|
8
|
-
import { KENDO_GRID_FILTER_SHARED } from '../directives';
|
|
9
|
-
import { ResizeBatchService } from '@progress/kendo-angular-common';
|
|
10
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
11
|
-
import { DialogContainerService, DialogService, WindowContainerService, WindowService } from '@progress/kendo-angular-dialog';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
import * as i1 from "../columns/column.component";
|
|
14
|
-
import * as i2 from "../columns/column-group.component";
|
|
15
|
-
import * as i3 from "../navigation/logical-cell.directive";
|
|
16
|
-
import * as i4 from "../navigation/logical-row.directive";
|
|
17
|
-
import * as i5 from "../navigation/focusable.directive";
|
|
18
|
-
import * as i6 from "../rendering/footer/footer-template.directive";
|
|
19
|
-
import * as i7 from "../rendering/common/col-group.component";
|
|
20
|
-
import * as i8 from "../layout/resizable.directive";
|
|
21
|
-
import * as i9 from "@progress/kendo-angular-common";
|
|
22
|
-
import * as i10 from "../rendering/common/field-accessor.pipe";
|
|
23
|
-
import * as i11 from "../rendering/details/detail-template.directive";
|
|
24
|
-
import * as i12 from "../columns/span-column.component";
|
|
25
|
-
import * as i13 from "../rendering/common/loading.component";
|
|
26
|
-
import * as i14 from "../rendering/grid-table.directive";
|
|
27
|
-
import * as i15 from "./cell/filter-cell-operators.component";
|
|
28
|
-
import * as i16 from "./operators/contains-filter-operator.component";
|
|
29
|
-
import * as i17 from "./operators/not-contains-filter-operator.component";
|
|
30
|
-
import * as i18 from "./operators/ends-with-filter-operator.component";
|
|
31
|
-
import * as i19 from "./operators/eq-filter-operator.component";
|
|
32
|
-
import * as i20 from "./operators/is-empty-filter-operator.component";
|
|
33
|
-
import * as i21 from "./operators/is-not-empty-filter-operator.component";
|
|
34
|
-
import * as i22 from "./operators/is-not-null-filter-operator.component";
|
|
35
|
-
import * as i23 from "./operators/isnull-filter-operator.component";
|
|
36
|
-
import * as i24 from "./operators/neq-filter-operator.component";
|
|
37
|
-
import * as i25 from "./operators/starts-with-filter-operator.component";
|
|
38
|
-
import * as i26 from "./operators/gt-filter-operator.component";
|
|
39
|
-
import * as i27 from "./operators/gte-filter-operator.component";
|
|
40
|
-
import * as i28 from "./operators/lt-filter-operator.component";
|
|
41
|
-
import * as i29 from "./operators/lte-filter-operator.component";
|
|
42
|
-
import * as i30 from "./operators/after-filter-operator.component";
|
|
43
|
-
import * as i31 from "./operators/after-eq-filter-operator.component";
|
|
44
|
-
import * as i32 from "./operators/before-eq-filter-operator.component";
|
|
45
|
-
import * as i33 from "./operators/before-filter-operator.component";
|
|
46
|
-
import * as i34 from "./filter-input.directive";
|
|
47
|
-
/**
|
|
48
|
-
* @hidden
|
|
49
|
-
*
|
|
50
|
-
* This module is deprecated and will be removed in a future major version release.
|
|
51
|
-
*/
|
|
52
|
-
export class SharedFilterModule {
|
|
53
|
-
}
|
|
54
|
-
SharedFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
55
|
-
SharedFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, imports: [i1.ColumnComponent, i2.ColumnGroupComponent, i3.LogicalCellDirective, i4.LogicalRowDirective, i5.FocusableDirective, i6.FooterTemplateDirective, i7.ColGroupComponent, i8.ResizableContainerDirective, i9.TemplateContextDirective, i10.FieldAccessorPipe, i11.DetailTemplateDirective, i12.SpanColumnComponent, i13.LoadingComponent, i14.GridTableDirective, i15.FilterCellOperatorsComponent, i16.ContainsFilterOperatorComponent, i17.DoesNotContainFilterOperatorComponent, i18.EndsWithFilterOperatorComponent, i19.EqualFilterOperatorComponent, i20.IsEmptyFilterOperatorComponent, i21.IsNotEmptyFilterOperatorComponent, i22.IsNotNullFilterOperatorComponent, i23.IsNullFilterOperatorComponent, i24.NotEqualFilterOperatorComponent, i25.StartsWithFilterOperatorComponent, i26.GreaterFilterOperatorComponent, i27.GreaterOrEqualToFilterOperatorComponent, i28.LessFilterOperatorComponent, i29.LessOrEqualToFilterOperatorComponent, i30.AfterFilterOperatorComponent, i31.AfterEqFilterOperatorComponent, i32.BeforeEqFilterOperatorComponent, i33.BeforeFilterOperatorComponent, i34.FilterInputDirective], exports: [i1.ColumnComponent, i2.ColumnGroupComponent, i3.LogicalCellDirective, i4.LogicalRowDirective, i5.FocusableDirective, i6.FooterTemplateDirective, i7.ColGroupComponent, i8.ResizableContainerDirective, i9.TemplateContextDirective, i10.FieldAccessorPipe, i11.DetailTemplateDirective, i12.SpanColumnComponent, i13.LoadingComponent, i14.GridTableDirective, i15.FilterCellOperatorsComponent, i16.ContainsFilterOperatorComponent, i17.DoesNotContainFilterOperatorComponent, i18.EndsWithFilterOperatorComponent, i19.EqualFilterOperatorComponent, i20.IsEmptyFilterOperatorComponent, i21.IsNotEmptyFilterOperatorComponent, i22.IsNotNullFilterOperatorComponent, i23.IsNullFilterOperatorComponent, i24.NotEqualFilterOperatorComponent, i25.StartsWithFilterOperatorComponent, i26.GreaterFilterOperatorComponent, i27.GreaterOrEqualToFilterOperatorComponent, i28.LessFilterOperatorComponent, i29.LessOrEqualToFilterOperatorComponent, i30.AfterFilterOperatorComponent, i31.AfterEqFilterOperatorComponent, i32.BeforeEqFilterOperatorComponent, i33.BeforeFilterOperatorComponent, i34.FilterInputDirective] });
|
|
56
|
-
SharedFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, providers: [
|
|
57
|
-
PopupService,
|
|
58
|
-
ResizeBatchService,
|
|
59
|
-
IconsService,
|
|
60
|
-
DialogContainerService,
|
|
61
|
-
DialogService,
|
|
62
|
-
WindowService,
|
|
63
|
-
WindowContainerService,
|
|
64
|
-
CalendarDOMService,
|
|
65
|
-
CenturyViewService,
|
|
66
|
-
DecadeViewService,
|
|
67
|
-
MonthViewService,
|
|
68
|
-
YearViewService,
|
|
69
|
-
NavigationService
|
|
70
|
-
], imports: [i1.ColumnComponent, i2.ColumnGroupComponent, i7.ColGroupComponent, i12.SpanColumnComponent, i13.LoadingComponent, i15.FilterCellOperatorsComponent, i16.ContainsFilterOperatorComponent, i17.DoesNotContainFilterOperatorComponent, i18.EndsWithFilterOperatorComponent, i19.EqualFilterOperatorComponent, i20.IsEmptyFilterOperatorComponent, i21.IsNotEmptyFilterOperatorComponent, i22.IsNotNullFilterOperatorComponent, i23.IsNullFilterOperatorComponent, i24.NotEqualFilterOperatorComponent, i25.StartsWithFilterOperatorComponent, i26.GreaterFilterOperatorComponent, i27.GreaterOrEqualToFilterOperatorComponent, i28.LessFilterOperatorComponent, i29.LessOrEqualToFilterOperatorComponent, i30.AfterFilterOperatorComponent, i31.AfterEqFilterOperatorComponent, i32.BeforeEqFilterOperatorComponent, i33.BeforeFilterOperatorComponent] });
|
|
71
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedFilterModule, decorators: [{
|
|
72
|
-
type: NgModule,
|
|
73
|
-
args: [{
|
|
74
|
-
exports: [...KENDO_GRID_FILTER_SHARED],
|
|
75
|
-
imports: [...KENDO_GRID_FILTER_SHARED],
|
|
76
|
-
providers: [
|
|
77
|
-
PopupService,
|
|
78
|
-
ResizeBatchService,
|
|
79
|
-
IconsService,
|
|
80
|
-
DialogContainerService,
|
|
81
|
-
DialogService,
|
|
82
|
-
WindowService,
|
|
83
|
-
WindowContainerService,
|
|
84
|
-
CalendarDOMService,
|
|
85
|
-
CenturyViewService,
|
|
86
|
-
DecadeViewService,
|
|
87
|
-
MonthViewService,
|
|
88
|
-
YearViewService,
|
|
89
|
-
NavigationService
|
|
90
|
-
]
|
|
91
|
-
}]
|
|
92
|
-
}] });
|