@progress/kendo-angular-grid 17.0.0-develop.3 → 17.0.0-develop.30
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 +1 -1
- package/column-menu/column-chooser.component.d.ts +1 -1
- package/column-menu/column-list.component.d.ts +1 -1
- 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/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 -5
- 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/{esm2020 → esm2022}/column-menu/column-chooser-item-checked.directive.mjs +7 -4
- package/{esm2020 → esm2022}/column-menu/column-chooser.component.mjs +36 -24
- package/{esm2020 → esm2022}/column-menu/column-list-kb-nav.service.mjs +6 -4
- package/{esm2020 → esm2022}/column-menu/column-list.component.mjs +51 -32
- 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 -2
- 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 +5 -4
- 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 +25 -24
- 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 +60 -39
- 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/row-filtering.module.mjs +18 -18
- package/{esm2020 → esm2022}/filtering/cell/string-filter-cell.component.mjs +23 -17
- 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 +13 -7
- package/{esm2020 → esm2022}/filtering/filter.service.mjs +14 -10
- package/{esm2020 → esm2022}/filtering/menu/boolean-filter-menu.component.mjs +25 -13
- 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-menu.module.mjs +18 -18
- 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 +14 -5
- 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/shared-filtering.module.mjs +18 -18
- package/{esm2020 → esm2022}/filtering/string-filter.component.mjs +20 -15
- package/{esm2020 → esm2022}/grid.component.mjs +480 -365
- package/esm2022/grid.module.mjs +221 -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 +23 -14
- 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/group.module.mjs +4 -4
- package/{esm2020 → esm2022}/grouping/groups.service.mjs +6 -7
- package/{esm2020 → esm2022}/index.mjs +6 -3
- 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 +585 -0
- package/{esm2020 → esm2022}/navigation/default-focusable-element.mjs +8 -5
- 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 +47 -27
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{esm2020 → esm2022}/pager/pager-context.service.mjs +5 -4
- package/{esm2020 → esm2022}/pager/pager-dropdown.directive.mjs +10 -9
- package/{esm2020 → esm2022}/pager/pager-element.component.mjs +27 -20
- package/{esm2020 → esm2022}/pager/pager-info.component.mjs +8 -7
- package/{esm2020 → esm2022}/pager/pager-input.component.mjs +43 -39
- package/{esm2020 → esm2022}/pager/pager-input.directive.mjs +5 -3
- package/{esm2020 → esm2022}/pager/pager-next-buttons.component.mjs +10 -9
- package/{esm2020 → esm2022}/pager/pager-numeric-buttons.component.mjs +19 -9
- package/{esm2020 → esm2022}/pager/pager-page-sizes.component.mjs +12 -10
- package/{esm2020 → esm2022}/pager/pager-prev-buttons.component.mjs +6 -5
- package/{esm2020 → esm2022}/pager/pager-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/pager/pager.component.mjs +82 -68
- package/{esm2020 → esm2022}/pager/pager.module.mjs +4 -4
- 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/body.module.mjs +18 -17
- 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 +25 -16
- 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 +11 -6
- 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 +17 -13
- package/{esm2020 → esm2022}/rendering/footer/footer.module.mjs +4 -4
- 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 +61 -35
- package/{esm2020 → esm2022}/rendering/header/header.module.mjs +18 -18
- package/{esm2020 → esm2022}/rendering/list.component.mjs +95 -48
- 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 +50 -17
- 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 +26 -12
- 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/{esm2020 → esm2022}/selection/selectall-checkbox.directive.mjs +26 -16
- package/{esm2020 → esm2022}/selection/selection-checkbox.directive.mjs +19 -7
- 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/{esm2020 → esm2022}/shared.module.mjs +4 -4
- 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 +5040 -3031
- package/filtering/base-filter-cell.component.d.ts +5 -1
- package/filtering/boolean-filter.component.d.ts +2 -13
- 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 +1 -1
- 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 +1 -1
- package/grid.module.d.ts +103 -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 +6 -3
- package/layout/resizable.directive.d.ts +1 -1
- package/localization/messages.d.ts +1 -1
- 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/package.json +27 -32
- package/pager/pager-context.service.d.ts +1 -1
- package/pager/pager-element.component.d.ts +1 -1
- package/pager/pager-numeric-buttons.component.d.ts +1 -1
- package/pager/pager-page-sizes.component.d.ts +1 -1
- package/pager/pager-settings.d.ts +2 -2
- package/pager/pager.component.d.ts +1 -1
- 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/body.module.d.ts +5 -4
- 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 +2 -1
- package/row-reordering/types.d.ts +1 -1
- package/schematics/ngAdd/index.js +4 -4
- 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 +1 -1
- package/selection/selection-checkbox.directive.d.ts +1 -1
- 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/common/clipboard.directive.mjs +0 -186
- package/esm2020/common/dom-events.service.mjs +0 -28
- package/esm2020/grid.module.mjs +0 -219
- package/esm2020/localization/messages.mjs +0 -187
- package/fesm2015/progress-kendo-angular-grid.mjs +0 -28466
- /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 → 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}/pager/pager-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/pager/pagesize-item.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/grid.module.d.ts
CHANGED
|
@@ -35,106 +35,108 @@ import * as i29 from "./editing/cancel-command.directive";
|
|
|
35
35
|
import * as i30 from "./editing/save-command.directive";
|
|
36
36
|
import * as i31 from "./editing/remove-command.directive";
|
|
37
37
|
import * as i32 from "./editing/add-command.directive";
|
|
38
|
-
import * as i33 from "./
|
|
39
|
-
import * as i34 from "./rendering/loading
|
|
40
|
-
import * as i35 from "./
|
|
41
|
-
import * as i36 from "./
|
|
42
|
-
import * as i37 from "./rendering/header/header
|
|
43
|
-
import * as i38 from "./
|
|
44
|
-
import * as i39 from "./
|
|
45
|
-
import * as i40 from "./
|
|
46
|
-
import * as i41 from "./
|
|
47
|
-
import * as i42 from "./pager/pager
|
|
48
|
-
import * as i43 from "./pager/pager-
|
|
49
|
-
import * as i44 from "./pager/pager-
|
|
50
|
-
import * as i45 from "./pager/pager-
|
|
51
|
-
import * as i46 from "./pager/pager-
|
|
52
|
-
import * as i47 from "./pager/pager-
|
|
53
|
-
import * as i48 from "./pager/pager-
|
|
54
|
-
import * as i49 from "./pager/pager-
|
|
55
|
-
import * as i50 from "./pager/pager-
|
|
56
|
-
import * as i51 from "./
|
|
57
|
-
import * as i52 from "./filtering/
|
|
58
|
-
import * as i53 from "./filtering/cell/filter-cell
|
|
59
|
-
import * as i54 from "./filtering/cell/
|
|
60
|
-
import * as i55 from "./filtering/cell/
|
|
61
|
-
import * as i56 from "./filtering/cell/
|
|
62
|
-
import * as i57 from "./filtering/cell/
|
|
63
|
-
import * as i58 from "./filtering/cell/filter-cell
|
|
64
|
-
import * as i59 from "./filtering/cell/filter-cell-
|
|
65
|
-
import * as i60 from "./filtering/cell/
|
|
66
|
-
import * as i61 from "./filtering/cell/filter-cell
|
|
67
|
-
import * as i62 from "./filtering/
|
|
68
|
-
import * as i63 from "./filtering/operators/
|
|
69
|
-
import * as i64 from "./filtering/operators/
|
|
70
|
-
import * as i65 from "./filtering/operators/
|
|
71
|
-
import * as i66 from "./filtering/operators/
|
|
72
|
-
import * as i67 from "./filtering/operators/is-
|
|
73
|
-
import * as i68 from "./filtering/operators/is-not-
|
|
74
|
-
import * as i69 from "./filtering/operators/
|
|
75
|
-
import * as i70 from "./filtering/operators/
|
|
76
|
-
import * as i71 from "./filtering/operators/
|
|
77
|
-
import * as i72 from "./filtering/operators/
|
|
78
|
-
import * as i73 from "./filtering/operators/
|
|
79
|
-
import * as i74 from "./filtering/operators/
|
|
80
|
-
import * as i75 from "./filtering/operators/
|
|
81
|
-
import * as i76 from "./filtering/operators/
|
|
82
|
-
import * as i77 from "./filtering/operators/after-
|
|
83
|
-
import * as i78 from "./filtering/operators/
|
|
84
|
-
import * as i79 from "./filtering/operators/before-filter-operator.component";
|
|
85
|
-
import * as i80 from "./filtering/filter-
|
|
86
|
-
import * as i81 from "./filtering/
|
|
87
|
-
import * as i82 from "./filtering/menu/filter-menu
|
|
88
|
-
import * as i83 from "./filtering/menu/filter-menu-
|
|
89
|
-
import * as i84 from "./filtering/menu/
|
|
90
|
-
import * as i85 from "./filtering/menu/string-filter-menu.component";
|
|
91
|
-
import * as i86 from "./filtering/menu/filter-menu
|
|
92
|
-
import * as i87 from "./filtering/menu/
|
|
93
|
-
import * as i88 from "./filtering/menu/numeric-filter-menu
|
|
94
|
-
import * as i89 from "./filtering/menu/
|
|
95
|
-
import * as i90 from "./filtering/menu/date-filter-menu.component";
|
|
96
|
-
import * as i91 from "./filtering/menu/filter-menu
|
|
97
|
-
import * as i92 from "./filtering/menu/
|
|
98
|
-
import * as i93 from "./filtering/menu/filter-menu
|
|
99
|
-
import * as i94 from "./filtering/menu/filter-
|
|
100
|
-
import * as i95 from "./
|
|
101
|
-
import * as i96 from "./column-menu/column-
|
|
102
|
-
import * as i97 from "./column-menu/column-
|
|
103
|
-
import * as i98 from "./column-menu/column-
|
|
104
|
-
import * as i99 from "./column-menu/column-menu-
|
|
105
|
-
import * as i100 from "./column-menu/column-menu-
|
|
106
|
-
import * as i101 from "./column-menu/column-menu-item
|
|
107
|
-
import * as i102 from "./column-menu/column-menu-
|
|
108
|
-
import * as i103 from "./column-menu/column-menu.component";
|
|
109
|
-
import * as i104 from "./column-menu/column-menu
|
|
110
|
-
import * as i105 from "./column-menu/column-menu-
|
|
111
|
-
import * as i106 from "./column-menu/column-menu-
|
|
112
|
-
import * as i107 from "./column-menu/column-menu-
|
|
113
|
-
import * as i108 from "./column-menu/column-menu-
|
|
114
|
-
import * as i109 from "./column-menu/column-menu-
|
|
115
|
-
import * as i110 from "./column-menu/column-menu-
|
|
116
|
-
import * as i111 from "./column-menu/column-menu-autosize
|
|
117
|
-
import * as i112 from "./
|
|
118
|
-
import * as i113 from "./
|
|
119
|
-
import * as i114 from "./rendering/
|
|
120
|
-
import * as i115 from "./
|
|
121
|
-
import * as i116 from "./localization/
|
|
122
|
-
import * as i117 from "./
|
|
123
|
-
import * as i118 from "./
|
|
124
|
-
import * as i119 from "./
|
|
125
|
-
import * as i120 from "./
|
|
126
|
-
import * as i121 from "./editing-directives/
|
|
127
|
-
import * as i122 from "./editing-directives/
|
|
128
|
-
import * as i123 from "./
|
|
129
|
-
import * as i124 from "./rendering/
|
|
130
|
-
import * as i125 from "./
|
|
131
|
-
import * as i126 from "./
|
|
132
|
-
import * as i127 from "./
|
|
133
|
-
import * as i128 from "./rendering/
|
|
134
|
-
import * as i129 from "./
|
|
135
|
-
import * as i130 from "./aggregates/status-bar
|
|
136
|
-
import * as i131 from "./
|
|
137
|
-
import * as i132 from "./
|
|
38
|
+
import * as i33 from "./editing/add-command-tool.directive";
|
|
39
|
+
import * as i34 from "./rendering/cell-loading.template.directive";
|
|
40
|
+
import * as i35 from "./rendering/loading-template.directive";
|
|
41
|
+
import * as i36 from "./columns/reorder-column.component";
|
|
42
|
+
import * as i37 from "./rendering/header/header.component";
|
|
43
|
+
import * as i38 from "./rendering/header/header-template.directive";
|
|
44
|
+
import * as i39 from "./column-resizing/column-handle.directive";
|
|
45
|
+
import * as i40 from "./selection/selectall-checkbox.directive";
|
|
46
|
+
import * as i41 from "./rendering/footer/footer.component";
|
|
47
|
+
import * as i42 from "./pager/pager.component";
|
|
48
|
+
import * as i43 from "./pager/pager-prev-buttons.component";
|
|
49
|
+
import * as i44 from "./pager/pager-next-buttons.component";
|
|
50
|
+
import * as i45 from "./pager/pager-numeric-buttons.component";
|
|
51
|
+
import * as i46 from "./pager/pager-input.component";
|
|
52
|
+
import * as i47 from "./pager/pager-info.component";
|
|
53
|
+
import * as i48 from "./pager/pager-page-sizes.component";
|
|
54
|
+
import * as i49 from "./pager/pager-template.directive";
|
|
55
|
+
import * as i50 from "./pager/pager-dropdown.directive";
|
|
56
|
+
import * as i51 from "./pager/pager-input.directive";
|
|
57
|
+
import * as i52 from "./filtering/filter-row.component";
|
|
58
|
+
import * as i53 from "./filtering/cell/filter-cell.component";
|
|
59
|
+
import * as i54 from "./filtering/cell/filter-cell-template.directive";
|
|
60
|
+
import * as i55 from "./filtering/cell/string-filter-cell.component";
|
|
61
|
+
import * as i56 from "./filtering/cell/numeric-filter-cell.component";
|
|
62
|
+
import * as i57 from "./filtering/cell/autocomplete-filter-cell.component";
|
|
63
|
+
import * as i58 from "./filtering/cell/boolean-filter-cell.component";
|
|
64
|
+
import * as i59 from "./filtering/cell/filter-cell-host.directive";
|
|
65
|
+
import * as i60 from "./filtering/cell/filter-cell-wrapper.component";
|
|
66
|
+
import * as i61 from "./filtering/cell/date-filter-cell.component";
|
|
67
|
+
import * as i62 from "./filtering/cell/filter-cell-operators.component";
|
|
68
|
+
import * as i63 from "./filtering/operators/contains-filter-operator.component";
|
|
69
|
+
import * as i64 from "./filtering/operators/not-contains-filter-operator.component";
|
|
70
|
+
import * as i65 from "./filtering/operators/ends-with-filter-operator.component";
|
|
71
|
+
import * as i66 from "./filtering/operators/eq-filter-operator.component";
|
|
72
|
+
import * as i67 from "./filtering/operators/is-empty-filter-operator.component";
|
|
73
|
+
import * as i68 from "./filtering/operators/is-not-empty-filter-operator.component";
|
|
74
|
+
import * as i69 from "./filtering/operators/is-not-null-filter-operator.component";
|
|
75
|
+
import * as i70 from "./filtering/operators/isnull-filter-operator.component";
|
|
76
|
+
import * as i71 from "./filtering/operators/neq-filter-operator.component";
|
|
77
|
+
import * as i72 from "./filtering/operators/starts-with-filter-operator.component";
|
|
78
|
+
import * as i73 from "./filtering/operators/gt-filter-operator.component";
|
|
79
|
+
import * as i74 from "./filtering/operators/gte-filter-operator.component";
|
|
80
|
+
import * as i75 from "./filtering/operators/lt-filter-operator.component";
|
|
81
|
+
import * as i76 from "./filtering/operators/lte-filter-operator.component";
|
|
82
|
+
import * as i77 from "./filtering/operators/after-filter-operator.component";
|
|
83
|
+
import * as i78 from "./filtering/operators/after-eq-filter-operator.component";
|
|
84
|
+
import * as i79 from "./filtering/operators/before-eq-filter-operator.component";
|
|
85
|
+
import * as i80 from "./filtering/operators/before-filter-operator.component";
|
|
86
|
+
import * as i81 from "./filtering/filter-input.directive";
|
|
87
|
+
import * as i82 from "./filtering/menu/filter-menu.component";
|
|
88
|
+
import * as i83 from "./filtering/menu/filter-menu-container.component";
|
|
89
|
+
import * as i84 from "./filtering/menu/filter-menu-input-wrapper.component";
|
|
90
|
+
import * as i85 from "./filtering/menu/string-filter-menu-input.component";
|
|
91
|
+
import * as i86 from "./filtering/menu/string-filter-menu.component";
|
|
92
|
+
import * as i87 from "./filtering/menu/filter-menu-template.directive";
|
|
93
|
+
import * as i88 from "./filtering/menu/numeric-filter-menu.component";
|
|
94
|
+
import * as i89 from "./filtering/menu/numeric-filter-menu-input.component";
|
|
95
|
+
import * as i90 from "./filtering/menu/date-filter-menu-input.component";
|
|
96
|
+
import * as i91 from "./filtering/menu/date-filter-menu.component";
|
|
97
|
+
import * as i92 from "./filtering/menu/filter-menu-host.directive";
|
|
98
|
+
import * as i93 from "./filtering/menu/boolean-filter-menu.component";
|
|
99
|
+
import * as i94 from "./filtering/menu/filter-menu-dropdownlist.directive";
|
|
100
|
+
import * as i95 from "./filtering/menu/filter-radio-button.directive";
|
|
101
|
+
import * as i96 from "./column-menu/column-chooser-item-checked.directive";
|
|
102
|
+
import * as i97 from "./column-menu/column-list.component";
|
|
103
|
+
import * as i98 from "./column-menu/column-chooser.component";
|
|
104
|
+
import * as i99 from "./column-menu/column-menu-chooser.component";
|
|
105
|
+
import * as i100 from "./column-menu/column-menu-filter.component";
|
|
106
|
+
import * as i101 from "./column-menu/column-menu-item.component";
|
|
107
|
+
import * as i102 from "./column-menu/column-menu-item-content-template.directive";
|
|
108
|
+
import * as i103 from "./column-menu/column-menu-sort.component";
|
|
109
|
+
import * as i104 from "./column-menu/column-menu.component";
|
|
110
|
+
import * as i105 from "./column-menu/column-menu-lock.component";
|
|
111
|
+
import * as i106 from "./column-menu/column-menu-template.directive";
|
|
112
|
+
import * as i107 from "./column-menu/column-menu-container.component";
|
|
113
|
+
import * as i108 from "./column-menu/column-menu-item.directive";
|
|
114
|
+
import * as i109 from "./column-menu/column-menu-stick.component";
|
|
115
|
+
import * as i110 from "./column-menu/column-menu-position.component";
|
|
116
|
+
import * as i111 from "./column-menu/column-menu-autosize.component";
|
|
117
|
+
import * as i112 from "./column-menu/column-menu-autosize-all.component";
|
|
118
|
+
import * as i113 from "./grid.component";
|
|
119
|
+
import * as i114 from "./rendering/list.component";
|
|
120
|
+
import * as i115 from "./rendering/toolbar/toolbar.component";
|
|
121
|
+
import * as i116 from "./localization/localized-messages.directive";
|
|
122
|
+
import * as i117 from "./localization/custom-messages.component";
|
|
123
|
+
import * as i118 from "./databinding.directive";
|
|
124
|
+
import * as i119 from "./rendering/toolbar/toolbar-template.directive";
|
|
125
|
+
import * as i120 from "./selection/selection.directive";
|
|
126
|
+
import * as i121 from "./editing-directives/template-editing.directive";
|
|
127
|
+
import * as i122 from "./editing-directives/reactive-editing.directive";
|
|
128
|
+
import * as i123 from "./editing-directives/in-cell-editing.directive";
|
|
129
|
+
import * as i124 from "./rendering/details-expand.directive";
|
|
130
|
+
import * as i125 from "./rendering/groups-expand.directive";
|
|
131
|
+
import * as i126 from "./grouping/group-scroll-binding.directive";
|
|
132
|
+
import * as i127 from "./selection/marquee.directive";
|
|
133
|
+
import * as i128 from "./rendering/common/spacer.component";
|
|
134
|
+
import * as i129 from "./rendering/toolbar/toolbar-focusable.directive";
|
|
135
|
+
import * as i130 from "./aggregates/status-bar.component";
|
|
136
|
+
import * as i131 from "./aggregates/status-bar-template.directive";
|
|
137
|
+
import * as i132 from "./common/clipboard.directive";
|
|
138
|
+
import * as i133 from "./column-resizing/table.directive";
|
|
139
|
+
import * as i134 from "@progress/kendo-angular-toolbar";
|
|
138
140
|
/**
|
|
139
141
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
140
142
|
* definition for the Grid component.
|
|
@@ -158,6 +160,6 @@ import * as i132 from "./column-resizing/table.directive";
|
|
|
158
160
|
*/
|
|
159
161
|
export declare class GridModule {
|
|
160
162
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridModule, never>;
|
|
161
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.CellLoadingTemplateDirective, typeof i34.LoadingTemplateDirective, typeof i35.RowReorderColumnComponent, typeof i36.HeaderComponent, typeof i37.HeaderTemplateDirective, typeof i38.ColumnHandleDirective, typeof i39.SelectAllCheckboxDirective, typeof i40.FooterComponent, typeof i41.PagerComponent, typeof i42.PagerPrevButtonsComponent, typeof i43.PagerNextButtonsComponent, typeof i44.PagerNumericButtonsComponent, typeof i45.PagerInputComponent, typeof i46.PagerInfoComponent, typeof i47.PagerPageSizesComponent, typeof i48.PagerTemplateDirective, typeof i49.PagerDropDownListDirective, typeof i50.PagerInputDirective, typeof i51.FilterRowComponent, typeof i52.FilterCellComponent, typeof i53.FilterCellTemplateDirective, typeof i54.StringFilterCellComponent, typeof i55.NumericFilterCellComponent, typeof i56.AutoCompleteFilterCellComponent, typeof i57.BooleanFilterCellComponent, typeof i58.FilterCellHostDirective, typeof i59.FilterCellWrapperComponent, typeof i60.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i61.FilterCellOperatorsComponent, typeof i62.ContainsFilterOperatorComponent, typeof i63.DoesNotContainFilterOperatorComponent, typeof i64.EndsWithFilterOperatorComponent, typeof i65.EqualFilterOperatorComponent, typeof i66.IsEmptyFilterOperatorComponent, typeof i67.IsNotEmptyFilterOperatorComponent, typeof i68.IsNotNullFilterOperatorComponent, typeof i69.IsNullFilterOperatorComponent, typeof i70.NotEqualFilterOperatorComponent, typeof i71.StartsWithFilterOperatorComponent, typeof i72.GreaterFilterOperatorComponent, typeof i73.GreaterOrEqualToFilterOperatorComponent, typeof i74.LessFilterOperatorComponent, typeof i75.LessOrEqualToFilterOperatorComponent, typeof i76.AfterFilterOperatorComponent, typeof i77.AfterEqFilterOperatorComponent, typeof i78.BeforeEqFilterOperatorComponent, typeof i79.BeforeFilterOperatorComponent, typeof i80.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i61.FilterCellOperatorsComponent, typeof i62.ContainsFilterOperatorComponent, typeof i63.DoesNotContainFilterOperatorComponent, typeof i64.EndsWithFilterOperatorComponent, typeof i65.EqualFilterOperatorComponent, typeof i66.IsEmptyFilterOperatorComponent, typeof i67.IsNotEmptyFilterOperatorComponent, typeof i68.IsNotNullFilterOperatorComponent, typeof i69.IsNullFilterOperatorComponent, typeof i70.NotEqualFilterOperatorComponent, typeof i71.StartsWithFilterOperatorComponent, typeof i72.GreaterFilterOperatorComponent, typeof i73.GreaterOrEqualToFilterOperatorComponent, typeof i74.LessFilterOperatorComponent, typeof i75.LessOrEqualToFilterOperatorComponent, typeof i76.AfterFilterOperatorComponent, typeof i77.AfterEqFilterOperatorComponent, typeof i78.BeforeEqFilterOperatorComponent, typeof i79.BeforeFilterOperatorComponent, typeof i80.FilterInputDirective, typeof i81.FilterMenuComponent, typeof i82.FilterMenuContainerComponent, typeof i83.FilterMenuInputWrapperComponent, typeof i84.StringFilterMenuInputComponent, typeof i85.StringFilterMenuComponent, typeof i86.FilterMenuTemplateDirective, typeof i87.NumericFilterMenuComponent, typeof i88.NumericFilterMenuInputComponent, typeof i89.DateFilterMenuInputComponent, typeof i90.DateFilterMenuComponent, typeof i91.FilterMenuHostDirective, typeof i92.BooleanFilterMenuComponent, typeof i93.FilterMenuDropDownListDirective, typeof i94.BooleanFilterRadioButtonDirective, typeof i95.ColumnMenuChooserItemCheckedDirective, typeof i96.ColumnListComponent, typeof i97.ColumnChooserComponent, typeof i98.ColumnMenuChooserComponent, typeof i99.ColumnMenuFilterComponent, typeof i100.ColumnMenuItemComponent, typeof i101.ColumnMenuItemContentTemplateDirective, typeof i102.ColumnMenuSortComponent, typeof i103.ColumnMenuComponent, typeof i104.ColumnMenuLockComponent, typeof i105.ColumnMenuTemplateDirective, typeof i106.ColumnMenuContainerComponent, typeof i107.ColumnMenuItemDirective, typeof i108.ColumnMenuStickComponent, typeof i109.ColumnMenuPositionComponent, typeof i110.ColumnMenuAutoSizeColumnComponent, typeof i111.ColumnMenuAutoSizeAllColumnsComponent, typeof i112.GridComponent, typeof i113.ListComponent, typeof i114.ToolbarComponent, typeof i115.LocalizedMessagesDirective, typeof i116.CustomMessagesComponent, typeof i117.DataBindingDirective, typeof i118.ToolbarTemplateDirective, typeof i119.SelectionDirective, typeof i120.TemplateEditingDirective, typeof i121.ReactiveEditingDirective, typeof i122.InCellEditingDirective, typeof i123.ExpandDetailsDirective, typeof i124.ExpandGroupDirective, typeof i125.GroupBindingDirective, typeof i126.GridMarqueeDirective, typeof i127.GridSpacerComponent, typeof i128.GridToolbarFocusableDirective, typeof i129.StatusBarComponent, typeof i130.StatusBarTemplateDirective, typeof i131.GridClipboardDirective, typeof i132.TableDirective], [typeof i112.GridComponent, typeof i118.ToolbarTemplateDirective, typeof i114.ToolbarComponent, typeof i127.GridSpacerComponent, typeof i130.StatusBarTemplateDirective, typeof i117.DataBindingDirective, typeof i119.SelectionDirective, typeof i116.CustomMessagesComponent, typeof i125.GroupBindingDirective, typeof i120.TemplateEditingDirective, typeof i121.ReactiveEditingDirective, typeof i122.InCellEditingDirective, typeof i123.ExpandDetailsDirective, typeof i124.ExpandGroupDirective, typeof i128.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.CellLoadingTemplateDirective, typeof i34.LoadingTemplateDirective, typeof i35.RowReorderColumnComponent, typeof i36.HeaderComponent, typeof i37.HeaderTemplateDirective, typeof i38.ColumnHandleDirective, typeof i39.SelectAllCheckboxDirective, typeof i41.PagerComponent, typeof i42.PagerPrevButtonsComponent, typeof i43.PagerNextButtonsComponent, typeof i44.PagerNumericButtonsComponent, typeof i45.PagerInputComponent, typeof i46.PagerInfoComponent, typeof i47.PagerPageSizesComponent, typeof i48.PagerTemplateDirective, typeof i49.PagerDropDownListDirective, typeof i50.PagerInputDirective, typeof i51.FilterRowComponent, typeof i52.FilterCellComponent, typeof i53.FilterCellTemplateDirective, typeof i54.StringFilterCellComponent, typeof i55.NumericFilterCellComponent, typeof i56.AutoCompleteFilterCellComponent, typeof i57.BooleanFilterCellComponent, typeof i58.FilterCellHostDirective, typeof i59.FilterCellWrapperComponent, typeof i60.DateFilterCellComponent, typeof i61.FilterCellOperatorsComponent, typeof i62.ContainsFilterOperatorComponent, typeof i63.DoesNotContainFilterOperatorComponent, typeof i64.EndsWithFilterOperatorComponent, typeof i65.EqualFilterOperatorComponent, typeof i66.IsEmptyFilterOperatorComponent, typeof i67.IsNotEmptyFilterOperatorComponent, typeof i68.IsNotNullFilterOperatorComponent, typeof i69.IsNullFilterOperatorComponent, typeof i70.NotEqualFilterOperatorComponent, typeof i71.StartsWithFilterOperatorComponent, typeof i72.GreaterFilterOperatorComponent, typeof i73.GreaterOrEqualToFilterOperatorComponent, typeof i74.LessFilterOperatorComponent, typeof i75.LessOrEqualToFilterOperatorComponent, typeof i76.AfterFilterOperatorComponent, typeof i77.AfterEqFilterOperatorComponent, typeof i78.BeforeEqFilterOperatorComponent, typeof i79.BeforeFilterOperatorComponent, typeof i81.FilterMenuComponent, typeof i82.FilterMenuContainerComponent, typeof i83.FilterMenuInputWrapperComponent, typeof i84.StringFilterMenuInputComponent, typeof i85.StringFilterMenuComponent, typeof i86.FilterMenuTemplateDirective, typeof i87.NumericFilterMenuComponent, typeof i88.NumericFilterMenuInputComponent, typeof i89.DateFilterMenuInputComponent, typeof i90.DateFilterMenuComponent, typeof i91.FilterMenuHostDirective, typeof i92.BooleanFilterMenuComponent, typeof i93.FilterMenuDropDownListDirective, typeof i94.BooleanFilterRadioButtonDirective, typeof i97.ColumnChooserComponent, typeof i99.ColumnMenuFilterComponent, typeof i100.ColumnMenuItemComponent, typeof i101.ColumnMenuItemContentTemplateDirective, typeof i102.ColumnMenuSortComponent, typeof i104.ColumnMenuLockComponent, typeof i108.ColumnMenuStickComponent, typeof i109.ColumnMenuPositionComponent, typeof i98.ColumnMenuChooserComponent, typeof i105.ColumnMenuTemplateDirective, typeof i106.ColumnMenuContainerComponent, typeof i107.ColumnMenuItemDirective, typeof i103.ColumnMenuComponent, typeof i110.ColumnMenuAutoSizeColumnComponent, typeof i111.ColumnMenuAutoSizeAllColumnsComponent, typeof i131.GridClipboardDirective]>;
|
|
163
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GridModule, never, [typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.AddCommandToolbarDirective, typeof i34.CellLoadingTemplateDirective, typeof i35.LoadingTemplateDirective, typeof i36.RowReorderColumnComponent, typeof i37.HeaderComponent, typeof i38.HeaderTemplateDirective, typeof i39.ColumnHandleDirective, typeof i40.SelectAllCheckboxDirective, typeof i41.FooterComponent, typeof i42.PagerComponent, typeof i43.PagerPrevButtonsComponent, typeof i44.PagerNextButtonsComponent, typeof i45.PagerNumericButtonsComponent, typeof i46.PagerInputComponent, typeof i47.PagerInfoComponent, typeof i48.PagerPageSizesComponent, typeof i49.PagerTemplateDirective, typeof i50.PagerDropDownListDirective, typeof i51.PagerInputDirective, typeof i52.FilterRowComponent, typeof i53.FilterCellComponent, typeof i54.FilterCellTemplateDirective, typeof i55.StringFilterCellComponent, typeof i56.NumericFilterCellComponent, typeof i57.AutoCompleteFilterCellComponent, typeof i58.BooleanFilterCellComponent, typeof i59.FilterCellHostDirective, typeof i60.FilterCellWrapperComponent, typeof i61.DateFilterCellComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i62.FilterCellOperatorsComponent, typeof i63.ContainsFilterOperatorComponent, typeof i64.DoesNotContainFilterOperatorComponent, typeof i65.EndsWithFilterOperatorComponent, typeof i66.EqualFilterOperatorComponent, typeof i67.IsEmptyFilterOperatorComponent, typeof i68.IsNotEmptyFilterOperatorComponent, typeof i69.IsNotNullFilterOperatorComponent, typeof i70.IsNullFilterOperatorComponent, typeof i71.NotEqualFilterOperatorComponent, typeof i72.StartsWithFilterOperatorComponent, typeof i73.GreaterFilterOperatorComponent, typeof i74.GreaterOrEqualToFilterOperatorComponent, typeof i75.LessFilterOperatorComponent, typeof i76.LessOrEqualToFilterOperatorComponent, typeof i77.AfterFilterOperatorComponent, typeof i78.AfterEqFilterOperatorComponent, typeof i79.BeforeEqFilterOperatorComponent, typeof i80.BeforeFilterOperatorComponent, typeof i81.FilterInputDirective, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i62.FilterCellOperatorsComponent, typeof i63.ContainsFilterOperatorComponent, typeof i64.DoesNotContainFilterOperatorComponent, typeof i65.EndsWithFilterOperatorComponent, typeof i66.EqualFilterOperatorComponent, typeof i67.IsEmptyFilterOperatorComponent, typeof i68.IsNotEmptyFilterOperatorComponent, typeof i69.IsNotNullFilterOperatorComponent, typeof i70.IsNullFilterOperatorComponent, typeof i71.NotEqualFilterOperatorComponent, typeof i72.StartsWithFilterOperatorComponent, typeof i73.GreaterFilterOperatorComponent, typeof i74.GreaterOrEqualToFilterOperatorComponent, typeof i75.LessFilterOperatorComponent, typeof i76.LessOrEqualToFilterOperatorComponent, typeof i77.AfterFilterOperatorComponent, typeof i78.AfterEqFilterOperatorComponent, typeof i79.BeforeEqFilterOperatorComponent, typeof i80.BeforeFilterOperatorComponent, typeof i81.FilterInputDirective, typeof i82.FilterMenuComponent, typeof i83.FilterMenuContainerComponent, typeof i84.FilterMenuInputWrapperComponent, typeof i85.StringFilterMenuInputComponent, typeof i86.StringFilterMenuComponent, typeof i87.FilterMenuTemplateDirective, typeof i88.NumericFilterMenuComponent, typeof i89.NumericFilterMenuInputComponent, typeof i90.DateFilterMenuInputComponent, typeof i91.DateFilterMenuComponent, typeof i92.FilterMenuHostDirective, typeof i93.BooleanFilterMenuComponent, typeof i94.FilterMenuDropDownListDirective, typeof i95.BooleanFilterRadioButtonDirective, typeof i96.ColumnMenuChooserItemCheckedDirective, typeof i97.ColumnListComponent, typeof i98.ColumnChooserComponent, typeof i99.ColumnMenuChooserComponent, typeof i100.ColumnMenuFilterComponent, typeof i101.ColumnMenuItemComponent, typeof i102.ColumnMenuItemContentTemplateDirective, typeof i103.ColumnMenuSortComponent, typeof i104.ColumnMenuComponent, typeof i105.ColumnMenuLockComponent, typeof i106.ColumnMenuTemplateDirective, typeof i107.ColumnMenuContainerComponent, typeof i108.ColumnMenuItemDirective, typeof i109.ColumnMenuStickComponent, typeof i110.ColumnMenuPositionComponent, typeof i111.ColumnMenuAutoSizeColumnComponent, typeof i112.ColumnMenuAutoSizeAllColumnsComponent, typeof i113.GridComponent, typeof i114.ListComponent, typeof i115.ToolbarComponent, typeof i116.LocalizedMessagesDirective, typeof i117.CustomMessagesComponent, typeof i118.DataBindingDirective, typeof i119.ToolbarTemplateDirective, typeof i120.SelectionDirective, typeof i121.TemplateEditingDirective, typeof i122.ReactiveEditingDirective, typeof i123.InCellEditingDirective, typeof i124.ExpandDetailsDirective, typeof i125.ExpandGroupDirective, typeof i126.GroupBindingDirective, typeof i127.GridMarqueeDirective, typeof i128.GridSpacerComponent, typeof i129.GridToolbarFocusableDirective, typeof i130.StatusBarComponent, typeof i131.StatusBarTemplateDirective, typeof i132.GridClipboardDirective, typeof i133.TableDirective], [typeof i113.GridComponent, typeof i119.ToolbarTemplateDirective, typeof i115.ToolbarComponent, typeof i128.GridSpacerComponent, typeof i131.StatusBarTemplateDirective, typeof i118.DataBindingDirective, typeof i120.SelectionDirective, typeof i117.CustomMessagesComponent, typeof i126.GroupBindingDirective, typeof i121.TemplateEditingDirective, typeof i122.ReactiveEditingDirective, typeof i123.InCellEditingDirective, typeof i124.ExpandDetailsDirective, typeof i125.ExpandGroupDirective, typeof i129.GridToolbarFocusableDirective, typeof i1.GroupHeaderTemplateDirective, typeof i2.GroupHeaderColumnTemplateDirective, typeof i3.GroupFooterTemplateDirective, typeof i4.GroupHeaderComponent, typeof i5.GroupPanelComponent, typeof i6.ColumnComponent, typeof i7.ColumnGroupComponent, typeof i8.LogicalCellDirective, typeof i9.LogicalRowDirective, typeof i10.FocusableDirective, typeof i11.FooterTemplateDirective, typeof i12.ColGroupComponent, typeof i13.ResizableContainerDirective, typeof i14.TemplateContextDirective, typeof i15.FieldAccessorPipe, typeof i16.DetailTemplateDirective, typeof i17.SpanColumnComponent, typeof i18.LoadingComponent, typeof i19.GridTableDirective, typeof i20.CommandColumnComponent, typeof i21.CheckboxColumnComponent, typeof i22.SelectionCheckboxDirective, typeof i23.CellTemplateDirective, typeof i24.EditTemplateDirective, typeof i25.TableBodyComponent, typeof i26.NoRecordsTemplateDirective, typeof i27.CellComponent, typeof i28.EditCommandDirective, typeof i29.CancelCommandDirective, typeof i30.SaveCommandDirective, typeof i31.RemoveCommandDirective, typeof i32.AddCommandDirective, typeof i33.AddCommandToolbarDirective, typeof i34.CellLoadingTemplateDirective, typeof i35.LoadingTemplateDirective, typeof i36.RowReorderColumnComponent, typeof i37.HeaderComponent, typeof i38.HeaderTemplateDirective, typeof i39.ColumnHandleDirective, typeof i40.SelectAllCheckboxDirective, typeof i42.PagerComponent, typeof i43.PagerPrevButtonsComponent, typeof i44.PagerNextButtonsComponent, typeof i45.PagerNumericButtonsComponent, typeof i46.PagerInputComponent, typeof i47.PagerInfoComponent, typeof i48.PagerPageSizesComponent, typeof i49.PagerTemplateDirective, typeof i50.PagerDropDownListDirective, typeof i51.PagerInputDirective, typeof i52.FilterRowComponent, typeof i53.FilterCellComponent, typeof i54.FilterCellTemplateDirective, typeof i55.StringFilterCellComponent, typeof i56.NumericFilterCellComponent, typeof i57.AutoCompleteFilterCellComponent, typeof i58.BooleanFilterCellComponent, typeof i59.FilterCellHostDirective, typeof i60.FilterCellWrapperComponent, typeof i61.DateFilterCellComponent, typeof i62.FilterCellOperatorsComponent, typeof i63.ContainsFilterOperatorComponent, typeof i64.DoesNotContainFilterOperatorComponent, typeof i65.EndsWithFilterOperatorComponent, typeof i66.EqualFilterOperatorComponent, typeof i67.IsEmptyFilterOperatorComponent, typeof i68.IsNotEmptyFilterOperatorComponent, typeof i69.IsNotNullFilterOperatorComponent, typeof i70.IsNullFilterOperatorComponent, typeof i71.NotEqualFilterOperatorComponent, typeof i72.StartsWithFilterOperatorComponent, typeof i73.GreaterFilterOperatorComponent, typeof i74.GreaterOrEqualToFilterOperatorComponent, typeof i75.LessFilterOperatorComponent, typeof i76.LessOrEqualToFilterOperatorComponent, typeof i77.AfterFilterOperatorComponent, typeof i78.AfterEqFilterOperatorComponent, typeof i79.BeforeEqFilterOperatorComponent, typeof i80.BeforeFilterOperatorComponent, typeof i82.FilterMenuComponent, typeof i83.FilterMenuContainerComponent, typeof i84.FilterMenuInputWrapperComponent, typeof i85.StringFilterMenuInputComponent, typeof i86.StringFilterMenuComponent, typeof i87.FilterMenuTemplateDirective, typeof i88.NumericFilterMenuComponent, typeof i89.NumericFilterMenuInputComponent, typeof i90.DateFilterMenuInputComponent, typeof i91.DateFilterMenuComponent, typeof i92.FilterMenuHostDirective, typeof i93.BooleanFilterMenuComponent, typeof i94.FilterMenuDropDownListDirective, typeof i95.BooleanFilterRadioButtonDirective, typeof i98.ColumnChooserComponent, typeof i100.ColumnMenuFilterComponent, typeof i101.ColumnMenuItemComponent, typeof i102.ColumnMenuItemContentTemplateDirective, typeof i103.ColumnMenuSortComponent, typeof i105.ColumnMenuLockComponent, typeof i109.ColumnMenuStickComponent, typeof i110.ColumnMenuPositionComponent, typeof i99.ColumnMenuChooserComponent, typeof i106.ColumnMenuTemplateDirective, typeof i107.ColumnMenuContainerComponent, typeof i108.ColumnMenuItemDirective, typeof i104.ColumnMenuComponent, typeof i111.ColumnMenuAutoSizeColumnComponent, typeof i112.ColumnMenuAutoSizeAllColumnsComponent, typeof i132.GridClipboardDirective, typeof i134.ToolBarModule]>;
|
|
162
164
|
static ɵinj: i0.ɵɵInjectorDeclaration<GridModule>;
|
|
163
165
|
}
|
|
@@ -47,5 +47,5 @@ export declare class GroupHeaderComponent implements DoCheck {
|
|
|
47
47
|
get arrowIcon(): string;
|
|
48
48
|
get arrowSVGIcon(): SVGIcon;
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<GroupHeaderComponent, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupHeaderComponent, "[kendoGridGroupHeader]", never, { "rowIndex": "rowIndex"; "logicalRowIndex": "logicalRowIndex"; "item": "item"; "skipGroupDecoration": "skipGroupDecoration"; "hasDetails": "hasDetails"; "totalColumnsCount": "totalColumnsCount"; "hasGroupHeaderColumn": "hasGroupHeaderColumn"; "groupHeaderColumns": "groupHeaderColumns"; "columns": "columns"; "groups": "groups"; }, {}, never, never, true, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupHeaderComponent, "[kendoGridGroupHeader]", never, { "rowIndex": { "alias": "rowIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "item": { "alias": "item"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "hasDetails": { "alias": "hasDetails"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "hasGroupHeaderColumn": { "alias": "hasGroupHeaderColumn"; "required": false; }; "groupHeaderColumns": { "alias": "groupHeaderColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; }, {}, never, never, true, never>;
|
|
51
51
|
}
|
|
@@ -71,5 +71,5 @@ export declare class GroupPanelComponent implements OnDestroy, DoCheck {
|
|
|
71
71
|
private activateMenuItem;
|
|
72
72
|
private handleMenuClick;
|
|
73
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<GroupPanelComponent, never>;
|
|
74
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GroupPanelComponent, "kendo-grid-group-panel", never, { "text": "text"; "navigable": "navigable"; "groups": "groups"; }, { "change": "change"; }, never, never, true, never>;
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupPanelComponent, "kendo-grid-group-panel", never, { "text": { "alias": "text"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; }, { "change": "change"; }, never, never, true, never>;
|
|
75
75
|
}
|
|
@@ -79,5 +79,5 @@ export declare class GroupBindingDirective extends DataBindingDirective implemen
|
|
|
79
79
|
protected dataResult(skip: number, take: number): GridDataResult;
|
|
80
80
|
protected applyState({ skip, take, sort, group, filter }: State): void;
|
|
81
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<GroupBindingDirective, never>;
|
|
82
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GroupBindingDirective, "[kendoGridGroupBinding]", ["kendoGridGroupBinding"], { "kendoGridGroupBinding": "kendoGridGroupBinding"; "sort": "sort"; "filter": "filter"; "group": "group"; }, {}, never, never, true, never>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GroupBindingDirective, "[kendoGridGroupBinding]", ["kendoGridGroupBinding"], { "kendoGridGroupBinding": { "alias": "kendoGridGroupBinding"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "group": { "alias": "group"; "required": false; }; }, {}, never, never, true, never>;
|
|
83
83
|
}
|
package/index.d.ts
CHANGED
|
@@ -151,11 +151,16 @@ export { PDFComponent } from './pdf/pdf.component';
|
|
|
151
151
|
export { PDFMargin } from './pdf/pdf-margin.interface';
|
|
152
152
|
export { PDFMarginComponent } from './pdf/pdf-margin.component';
|
|
153
153
|
export { PDFService } from './pdf/pdf.service';
|
|
154
|
+
export { PDFCommandToolbarDirective } from './pdf/pdf-command-tool.directive';
|
|
155
|
+
export { PDFTemplateDirective } from './pdf/pdf-template.directive';
|
|
156
|
+
export { PDFCommandDirective } from './pdf/pdf-command.directive';
|
|
154
157
|
export { ExcelModule } from './excel/excel.module';
|
|
155
158
|
export { ExcelComponent } from './excel/excel.component';
|
|
156
159
|
export { ExcelService } from './excel/excel.service';
|
|
157
160
|
export { ExcelExportEvent } from './excel/excel-export-event';
|
|
158
161
|
export { FetchDataCallback } from './common/fetch-data-callback';
|
|
162
|
+
export { ExcelCommandDirective } from './excel/excel-command.directive';
|
|
163
|
+
export { ExcelCommandToolbarDirective } from './excel/excel-command-tool.directive';
|
|
159
164
|
export { RowClassFn, RowClassArgs, RowSelectedFn, RowStickyFn, RowSelectableFn } from './rendering/common/row-class';
|
|
160
165
|
export { RowArgs } from './rendering/common/row-args';
|
|
161
166
|
export { EditEvent } from './editing/edit-event-args.interface';
|
|
@@ -200,11 +205,9 @@ export { CancelCommandDirective } from './editing/cancel-command.directive';
|
|
|
200
205
|
export { SaveCommandDirective } from './editing/save-command.directive';
|
|
201
206
|
export { RemoveCommandDirective } from './editing/remove-command.directive';
|
|
202
207
|
export { AddCommandDirective } from './editing/add-command.directive';
|
|
208
|
+
export { AddCommandToolbarDirective } from './editing/add-command-tool.directive';
|
|
203
209
|
export { EditingDirectiveBase } from './editing-directives/editing-directive-base';
|
|
204
210
|
export { RowEditingDirectiveBase } from './editing-directives/row-editing-directive-base';
|
|
205
|
-
export { PDFTemplateDirective } from './pdf/pdf-template.directive';
|
|
206
|
-
export { PDFCommandDirective } from './pdf/pdf-command.directive';
|
|
207
|
-
export { ExcelCommandDirective } from './excel/excel-command.directive';
|
|
208
211
|
export { CellComponent } from './rendering/cell.component';
|
|
209
212
|
export { ColumnMenuItemDirective } from './column-menu/column-menu-item.directive';
|
|
210
213
|
export { ColumnMenuContainerComponent } from './column-menu/column-menu-container.component';
|
|
@@ -24,5 +24,5 @@ export declare class ResizableContainerDirective implements OnDestroy {
|
|
|
24
24
|
private attachResize;
|
|
25
25
|
private resize;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizableContainerDirective, never>;
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableContainerDirective, "[kendoGridResizableContainer]", never, { "lockedWidth": "lockedWidth"; "kendoGridResizableContainer": "kendoGridResizableContainer"; }, {}, never, never, true, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableContainerDirective, "[kendoGridResizableContainer]", never, { "lockedWidth": { "alias": "lockedWidth"; "required": false; }; "kendoGridResizableContainer": { "alias": "kendoGridResizableContainer"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
28
|
}
|
|
@@ -407,5 +407,5 @@ export declare class GridMessages extends ComponentMessages {
|
|
|
407
407
|
*/
|
|
408
408
|
groupChipMenuNext: string;
|
|
409
409
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridMessages, never>;
|
|
410
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": "groupPanelEmpty"; "noRecords": "noRecords"; "pagerLabel": "pagerLabel"; "pagerFirstPage": "pagerFirstPage"; "pagerLastPage": "pagerLastPage"; "pagerPreviousPage": "pagerPreviousPage"; "pagerNextPage": "pagerNextPage"; "pagerPage": "pagerPage"; "pagerItemsPerPage": "pagerItemsPerPage"; "pagerOf": "pagerOf"; "pagerItems": "pagerItems"; "pagerPageNumberInputTitle": "pagerPageNumberInputTitle"; "selectPage": "selectPage"; "filter": "filter"; "filterInputLabel": "filterInputLabel"; "filterMenuTitle": "filterMenuTitle"; "filterMenuOperatorsDropDownLabel": "filterMenuOperatorsDropDownLabel"; "filterMenuLogicDropDownLabel": "filterMenuLogicDropDownLabel"; "filterCellOperatorLabel": "filterCellOperatorLabel"; "booleanFilterCellLabel": "booleanFilterCellLabel"; "filterEqOperator": "filterEqOperator"; "filterNotEqOperator": "filterNotEqOperator"; "filterIsNullOperator": "filterIsNullOperator"; "filterIsNotNullOperator": "filterIsNotNullOperator"; "filterIsEmptyOperator": "filterIsEmptyOperator"; "filterIsNotEmptyOperator": "filterIsNotEmptyOperator"; "filterStartsWithOperator": "filterStartsWithOperator"; "filterContainsOperator": "filterContainsOperator"; "filterNotContainsOperator": "filterNotContainsOperator"; "filterEndsWithOperator": "filterEndsWithOperator"; "filterGteOperator": "filterGteOperator"; "filterGtOperator": "filterGtOperator"; "filterLteOperator": "filterLteOperator"; "filterLtOperator": "filterLtOperator"; "filterIsTrue": "filterIsTrue"; "filterIsFalse": "filterIsFalse"; "filterBooleanAll": "filterBooleanAll"; "filterAfterOrEqualOperator": "filterAfterOrEqualOperator"; "filterAfterOperator": "filterAfterOperator"; "filterBeforeOperator": "filterBeforeOperator"; "filterBeforeOrEqualOperator": "filterBeforeOrEqualOperator"; "filterFilterButton": "filterFilterButton"; "filterClearButton": "filterClearButton"; "filterAndLogic": "filterAndLogic"; "filterOrLogic": "filterOrLogic"; "loading": "loading"; "gridLabel": "gridLabel"; "columnMenu": "columnMenu"; "setColumnPosition": "setColumnPosition"; "columns": "columns"; "lock": "lock"; "unlock": "unlock"; "stick": "stick"; "unstick": "unstick"; "sortable": "sortable"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "autosizeThisColumn": "autosizeThisColumn"; "autosizeAllColumns": "autosizeAllColumns"; "sortedAscending": "sortedAscending"; "sortedDescending": "sortedDescending"; "sortedDefault": "sortedDefault"; "columnsApply": "columnsApply"; "columnsReset": "columnsReset"; "detailExpand": "detailExpand"; "detailCollapse": "detailCollapse"; "filterDateToday": "filterDateToday"; "filterDateToggle": "filterDateToggle"; "filterNumericDecrement": "filterNumericDecrement"; "filterNumericIncrement": "filterNumericIncrement"; "selectionCheckboxLabel": "selectionCheckboxLabel"; "selectAllCheckboxLabel": "selectAllCheckboxLabel"; "groupCollapse": "groupCollapse"; "groupExpand": "groupExpand"; "topToolbarLabel": "topToolbarLabel"; "bottomToolbarLabel": "bottomToolbarLabel"; "groupPanelLabel": "groupPanelLabel"; "dragRowHandleLabel": "dragRowHandleLabel"; "columnMenuFilterTabTitle": "columnMenuFilterTabTitle"; "columnMenuGeneralTabTitle": "columnMenuGeneralTabTitle"; "columnMenuColumnsTabTitle": "columnMenuColumnsTabTitle"; "groupChipMenuPrevious": "groupChipMenuPrevious"; "groupChipMenuNext": "groupChipMenuNext"; }, {}, never, never, false, never>;
|
|
410
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GridMessages, "kendo-grid-messages-base", never, { "groupPanelEmpty": { "alias": "groupPanelEmpty"; "required": false; }; "noRecords": { "alias": "noRecords"; "required": false; }; "pagerLabel": { "alias": "pagerLabel"; "required": false; }; "pagerFirstPage": { "alias": "pagerFirstPage"; "required": false; }; "pagerLastPage": { "alias": "pagerLastPage"; "required": false; }; "pagerPreviousPage": { "alias": "pagerPreviousPage"; "required": false; }; "pagerNextPage": { "alias": "pagerNextPage"; "required": false; }; "pagerPage": { "alias": "pagerPage"; "required": false; }; "pagerItemsPerPage": { "alias": "pagerItemsPerPage"; "required": false; }; "pagerOf": { "alias": "pagerOf"; "required": false; }; "pagerItems": { "alias": "pagerItems"; "required": false; }; "pagerPageNumberInputTitle": { "alias": "pagerPageNumberInputTitle"; "required": false; }; "selectPage": { "alias": "selectPage"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "filterInputLabel": { "alias": "filterInputLabel"; "required": false; }; "filterMenuTitle": { "alias": "filterMenuTitle"; "required": false; }; "filterMenuOperatorsDropDownLabel": { "alias": "filterMenuOperatorsDropDownLabel"; "required": false; }; "filterMenuLogicDropDownLabel": { "alias": "filterMenuLogicDropDownLabel"; "required": false; }; "filterCellOperatorLabel": { "alias": "filterCellOperatorLabel"; "required": false; }; "booleanFilterCellLabel": { "alias": "booleanFilterCellLabel"; "required": false; }; "filterEqOperator": { "alias": "filterEqOperator"; "required": false; }; "filterNotEqOperator": { "alias": "filterNotEqOperator"; "required": false; }; "filterIsNullOperator": { "alias": "filterIsNullOperator"; "required": false; }; "filterIsNotNullOperator": { "alias": "filterIsNotNullOperator"; "required": false; }; "filterIsEmptyOperator": { "alias": "filterIsEmptyOperator"; "required": false; }; "filterIsNotEmptyOperator": { "alias": "filterIsNotEmptyOperator"; "required": false; }; "filterStartsWithOperator": { "alias": "filterStartsWithOperator"; "required": false; }; "filterContainsOperator": { "alias": "filterContainsOperator"; "required": false; }; "filterNotContainsOperator": { "alias": "filterNotContainsOperator"; "required": false; }; "filterEndsWithOperator": { "alias": "filterEndsWithOperator"; "required": false; }; "filterGteOperator": { "alias": "filterGteOperator"; "required": false; }; "filterGtOperator": { "alias": "filterGtOperator"; "required": false; }; "filterLteOperator": { "alias": "filterLteOperator"; "required": false; }; "filterLtOperator": { "alias": "filterLtOperator"; "required": false; }; "filterIsTrue": { "alias": "filterIsTrue"; "required": false; }; "filterIsFalse": { "alias": "filterIsFalse"; "required": false; }; "filterBooleanAll": { "alias": "filterBooleanAll"; "required": false; }; "filterAfterOrEqualOperator": { "alias": "filterAfterOrEqualOperator"; "required": false; }; "filterAfterOperator": { "alias": "filterAfterOperator"; "required": false; }; "filterBeforeOperator": { "alias": "filterBeforeOperator"; "required": false; }; "filterBeforeOrEqualOperator": { "alias": "filterBeforeOrEqualOperator"; "required": false; }; "filterFilterButton": { "alias": "filterFilterButton"; "required": false; }; "filterClearButton": { "alias": "filterClearButton"; "required": false; }; "filterAndLogic": { "alias": "filterAndLogic"; "required": false; }; "filterOrLogic": { "alias": "filterOrLogic"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "gridLabel": { "alias": "gridLabel"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "setColumnPosition": { "alias": "setColumnPosition"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "lock": { "alias": "lock"; "required": false; }; "unlock": { "alias": "unlock"; "required": false; }; "stick": { "alias": "stick"; "required": false; }; "unstick": { "alias": "unstick"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sortAscending": { "alias": "sortAscending"; "required": false; }; "sortDescending": { "alias": "sortDescending"; "required": false; }; "autosizeThisColumn": { "alias": "autosizeThisColumn"; "required": false; }; "autosizeAllColumns": { "alias": "autosizeAllColumns"; "required": false; }; "sortedAscending": { "alias": "sortedAscending"; "required": false; }; "sortedDescending": { "alias": "sortedDescending"; "required": false; }; "sortedDefault": { "alias": "sortedDefault"; "required": false; }; "columnsApply": { "alias": "columnsApply"; "required": false; }; "columnsReset": { "alias": "columnsReset"; "required": false; }; "detailExpand": { "alias": "detailExpand"; "required": false; }; "detailCollapse": { "alias": "detailCollapse"; "required": false; }; "filterDateToday": { "alias": "filterDateToday"; "required": false; }; "filterDateToggle": { "alias": "filterDateToggle"; "required": false; }; "filterNumericDecrement": { "alias": "filterNumericDecrement"; "required": false; }; "filterNumericIncrement": { "alias": "filterNumericIncrement"; "required": false; }; "selectionCheckboxLabel": { "alias": "selectionCheckboxLabel"; "required": false; }; "selectAllCheckboxLabel": { "alias": "selectAllCheckboxLabel"; "required": false; }; "groupCollapse": { "alias": "groupCollapse"; "required": false; }; "groupExpand": { "alias": "groupExpand"; "required": false; }; "topToolbarLabel": { "alias": "topToolbarLabel"; "required": false; }; "bottomToolbarLabel": { "alias": "bottomToolbarLabel"; "required": false; }; "groupPanelLabel": { "alias": "groupPanelLabel"; "required": false; }; "dragRowHandleLabel": { "alias": "dragRowHandleLabel"; "required": false; }; "columnMenuFilterTabTitle": { "alias": "columnMenuFilterTabTitle"; "required": false; }; "columnMenuGeneralTabTitle": { "alias": "columnMenuGeneralTabTitle"; "required": false; }; "columnMenuColumnsTabTitle": { "alias": "columnMenuColumnsTabTitle"; "required": false; }; "groupChipMenuPrevious": { "alias": "groupChipMenuPrevious"; "required": false; }; "groupChipMenuNext": { "alias": "groupChipMenuNext"; "required": false; }; }, {}, never, never, false, never>;
|
|
411
411
|
}
|
|
@@ -66,5 +66,5 @@ export declare class FocusableDirective implements FocusableElement, AfterViewIn
|
|
|
66
66
|
*/
|
|
67
67
|
registerElement(element: FocusableElement): void;
|
|
68
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<FocusableDirective, [{ optional: true; skipSelf: true; }, null, null, null]>;
|
|
69
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FocusableDirective, "[kendoGridFocusable], [kendoGridEditCommand], [kendoGridRemoveCommand], [kendoGridSaveCommand], [kendoGridCancelCommand], [kendoGridSelectionCheckbox] ", never, { "enabled": "kendoGridFocusable"; }, {}, never, never, true, never>;
|
|
69
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FocusableDirective, "[kendoGridFocusable], [kendoGridEditCommand], [kendoGridRemoveCommand], [kendoGridSaveCommand], [kendoGridCancelCommand], [kendoGridSelectionCheckbox] ", never, { "enabled": { "alias": "kendoGridFocusable"; "required": false; }; }, {}, never, never, true, never>;
|
|
70
70
|
}
|
|
@@ -51,5 +51,5 @@ export declare class LogicalCellDirective implements LogicalCell, OnInit, OnChan
|
|
|
51
51
|
private isFocusable;
|
|
52
52
|
private isFocused;
|
|
53
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogicalCellDirective, [null, null, null, null, null, null, null, { optional: true; }]>;
|
|
54
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LogicalCellDirective, "[kendoGridLogicalCell]", never, { "logicalColIndex": "logicalColIndex"; "logicalRowIndex": "logicalRowIndex"; "logicalSlaveCell": "logicalSlaveCell"; "colIndex": "colIndex"; "colSpan": "colSpan"; "rowSpan": "rowSpan"; "groupItem": "groupItem"; "dataRowIndex": "dataRowIndex"; "dataItem": "dataItem"; "detailExpandCell": "detailExpandCell"; "headerLabelText": "headerLabelText"; }, {}, never, never, true, never>;
|
|
54
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LogicalCellDirective, "[kendoGridLogicalCell]", never, { "logicalColIndex": { "alias": "logicalColIndex"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "logicalSlaveCell": { "alias": "logicalSlaveCell"; "required": false; }; "colIndex": { "alias": "colIndex"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; "rowSpan": { "alias": "rowSpan"; "required": false; }; "groupItem": { "alias": "groupItem"; "required": false; }; "dataRowIndex": { "alias": "dataRowIndex"; "required": false; }; "dataItem": { "alias": "dataItem"; "required": false; }; "detailExpandCell": { "alias": "detailExpandCell"; "required": false; }; "headerLabelText": { "alias": "headerLabelText"; "required": false; }; }, {}, never, never, true, never>;
|
|
55
55
|
}
|
|
@@ -32,5 +32,5 @@ export declare class LogicalRowDirective implements LogicalRow, OnDestroy, OnCha
|
|
|
32
32
|
ngOnDestroy(): void;
|
|
33
33
|
private get columnsArray();
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogicalRowDirective, never>;
|
|
35
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LogicalRowDirective, "[kendoGridLogicalRow]", never, { "logicalRowIndex": "logicalRowIndex"; "logicalSlaveRow": "logicalSlaveRow"; "logicalCellsCount": "logicalCellsCount"; "logicalSlaveCellsCount": "logicalSlaveCellsCount"; "dataRowIndex": "dataRowIndex"; "dataItem": "dataItem"; "totalColumns": "totalColumns"; }, {}, never, never, true, never>;
|
|
35
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LogicalRowDirective, "[kendoGridLogicalRow]", never, { "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "logicalSlaveRow": { "alias": "logicalSlaveRow"; "required": false; }; "logicalCellsCount": { "alias": "logicalCellsCount"; "required": false; }; "logicalSlaveCellsCount": { "alias": "logicalSlaveCellsCount"; "required": false; }; "dataRowIndex": { "alias": "dataRowIndex"; "required": false; }; "dataItem": { "alias": "dataItem"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; }, {}, never, never, true, never>;
|
|
36
36
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* <kendo-grid [navigable]="['pager', 'toolbar']"> </kendo-grid>
|
|
16
16
|
* ```
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type GridNavigableSection = 'pager' | 'table' | 'toolbar';
|
|
19
19
|
/**
|
|
20
20
|
* Represents the type of the Grid [`navigable`]({% slug api_grid_gridcomponent %}#toc-navigable) property.
|
|
21
21
|
*
|
|
@@ -23,4 +23,4 @@ export declare type GridNavigableSection = 'pager' | 'table' | 'toolbar';
|
|
|
23
23
|
* * `boolean`
|
|
24
24
|
* * [`GridNavigableSection`](slug:api_grid_gridnavigablesection)
|
|
25
25
|
*/
|
|
26
|
-
export
|
|
26
|
+
export type GridNavigableSettings = boolean | GridNavigableSection[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-grid",
|
|
3
|
-
"version": "17.0.0-develop.
|
|
3
|
+
"version": "17.0.0-develop.30",
|
|
4
4
|
"description": "Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,42 +25,39 @@
|
|
|
25
25
|
"friendlyName": "Grid"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@angular/animations": "
|
|
29
|
-
"@angular/common": "
|
|
30
|
-
"@angular/core": "
|
|
31
|
-
"@angular/forms": "
|
|
32
|
-
"@angular/platform-browser": "
|
|
28
|
+
"@angular/animations": "16 - 18",
|
|
29
|
+
"@angular/common": "16 - 18",
|
|
30
|
+
"@angular/core": "16 - 18",
|
|
31
|
+
"@angular/forms": "16 - 18",
|
|
32
|
+
"@angular/platform-browser": "16 - 18",
|
|
33
33
|
"@progress/kendo-data-query": "^1.0.0",
|
|
34
|
-
"@progress/kendo-drawing": "^1.
|
|
34
|
+
"@progress/kendo-drawing": "^1.21.0",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "17.0.0-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-dateinputs": "17.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-layout": "17.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-dropdowns": "17.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-excel-export": "17.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-inputs": "17.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-intl": "17.0.0-develop.
|
|
45
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
|
46
|
-
"@progress/kendo-angular-label": "17.0.0-develop.
|
|
47
|
-
"@progress/kendo-angular-pdf-export": "17.0.0-develop.
|
|
48
|
-
"@progress/kendo-angular-popup": "17.0.0-develop.
|
|
49
|
-
"@progress/kendo-angular-
|
|
36
|
+
"@progress/kendo-angular-buttons": "17.0.0-develop.30",
|
|
37
|
+
"@progress/kendo-angular-common": "17.0.0-develop.30",
|
|
38
|
+
"@progress/kendo-angular-dateinputs": "17.0.0-develop.30",
|
|
39
|
+
"@progress/kendo-angular-layout": "17.0.0-develop.30",
|
|
40
|
+
"@progress/kendo-angular-dropdowns": "17.0.0-develop.30",
|
|
41
|
+
"@progress/kendo-angular-excel-export": "17.0.0-develop.30",
|
|
42
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.30",
|
|
43
|
+
"@progress/kendo-angular-inputs": "17.0.0-develop.30",
|
|
44
|
+
"@progress/kendo-angular-intl": "17.0.0-develop.30",
|
|
45
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.30",
|
|
46
|
+
"@progress/kendo-angular-label": "17.0.0-develop.30",
|
|
47
|
+
"@progress/kendo-angular-pdf-export": "17.0.0-develop.30",
|
|
48
|
+
"@progress/kendo-angular-popup": "17.0.0-develop.30",
|
|
49
|
+
"@progress/kendo-angular-toolbar": "17.0.0-develop.30",
|
|
50
|
+
"@progress/kendo-angular-utils": "17.0.0-develop.30",
|
|
50
51
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
54
|
"tslib": "^2.3.1",
|
|
54
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
|
55
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.30",
|
|
55
56
|
"@progress/kendo-common": "^0.2.0",
|
|
56
57
|
"@progress/kendo-file-saver": "^1.0.0"
|
|
57
58
|
},
|
|
58
59
|
"schematics": "./schematics/collection.json",
|
|
59
|
-
"module": "
|
|
60
|
-
"es2020": "fesm2020/progress-kendo-angular-grid.mjs",
|
|
61
|
-
"esm2020": "esm2020/progress-kendo-angular-grid.mjs",
|
|
62
|
-
"fesm2020": "fesm2020/progress-kendo-angular-grid.mjs",
|
|
63
|
-
"fesm2015": "fesm2015/progress-kendo-angular-grid.mjs",
|
|
60
|
+
"module": "fesm2022/progress-kendo-angular-grid.mjs",
|
|
64
61
|
"typings": "index.d.ts",
|
|
65
62
|
"exports": {
|
|
66
63
|
"./package.json": {
|
|
@@ -68,11 +65,9 @@
|
|
|
68
65
|
},
|
|
69
66
|
".": {
|
|
70
67
|
"types": "./index.d.ts",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"node": "./fesm2015/progress-kendo-angular-grid.mjs",
|
|
75
|
-
"default": "./fesm2020/progress-kendo-angular-grid.mjs"
|
|
68
|
+
"esm2022": "./esm2022/progress-kendo-angular-grid.mjs",
|
|
69
|
+
"esm": "./esm2022/progress-kendo-angular-grid.mjs",
|
|
70
|
+
"default": "./fesm2022/progress-kendo-angular-grid.mjs"
|
|
76
71
|
}
|
|
77
72
|
},
|
|
78
73
|
"sideEffects": false
|
|
@@ -75,5 +75,5 @@ export declare abstract class PagerElementComponent implements OnInit, OnDestroy
|
|
|
75
75
|
get nextArrowIcons(): string[];
|
|
76
76
|
get nextArrowSVGIcons(): SVGIcon[];
|
|
77
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagerElementComponent, never>;
|
|
78
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PagerElementComponent, never, never, { "size": "size"; }, {}, never, never, false, never>;
|
|
78
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PagerElementComponent, never, never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
79
79
|
}
|
|
@@ -48,5 +48,5 @@ export declare class PagerNumericButtonsComponent extends PagerElementComponent
|
|
|
48
48
|
onSelectChange(e: Event): void;
|
|
49
49
|
protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
|
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagerNumericButtonsComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagerNumericButtonsComponent, "kendo-pager-numeric-buttons", never, { "buttonCount": "buttonCount"; }, {}, never, never, true, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PagerNumericButtonsComponent, "kendo-pager-numeric-buttons", never, { "buttonCount": { "alias": "buttonCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
52
52
|
}
|
|
@@ -45,5 +45,5 @@ export declare class PagerPageSizesComponent extends PagerElementComponent {
|
|
|
45
45
|
getValue(page: PageSizeItem): number;
|
|
46
46
|
protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
|
|
47
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagerPageSizesComponent, never>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagerPageSizesComponent, "kendo-pager-page-sizes", never, { "pageSizes": "pageSizes"; }, {}, never, never, true, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PagerPageSizesComponent, "kendo-pager-page-sizes", never, { "pageSizes": { "alias": "pageSizes"; "required": false; }; }, {}, never, never, true, never>;
|
|
49
49
|
}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* </kendo-grid>
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
|
-
export
|
|
20
|
+
export type PagerType = 'numeric' | 'input';
|
|
21
21
|
/**
|
|
22
22
|
* The position of the Grid pager.
|
|
23
23
|
*
|
|
@@ -34,7 +34,7 @@ export declare type PagerType = 'numeric' | 'input';
|
|
|
34
34
|
* </kendo-grid>
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
|
-
export
|
|
37
|
+
export type PagerPosition = 'top' | 'bottom' | 'both';
|
|
38
38
|
/**
|
|
39
39
|
* The pager settings of the Grid ([see example](slug:paging_grid_settings)).
|
|
40
40
|
*/
|
|
@@ -76,5 +76,5 @@ export declare class PagerComponent implements OnChanges, OnInit, OnDestroy {
|
|
|
76
76
|
private updateCellContext;
|
|
77
77
|
private clearResponsiveStyling;
|
|
78
78
|
static ɵfac: i0.ɵɵFactoryDeclaration<PagerComponent, [null, null, null, null, null, null, { optional: true; }, null, null]>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "kendo-pager", never, { "total": "total"; "skip": "skip"; "pageSize": "pageSize"; "options": "options"; "size": "size"; "template": "template"; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
79
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "kendo-pager", never, { "total": { "alias": "total"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "options": { "alias": "options"; "required": false; }; "size": { "alias": "size"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
80
80
|
}
|