@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.
Files changed (445) hide show
  1. package/README.md +46 -36
  2. package/aggregates/aggregate-types.d.ts +1 -1
  3. package/aggregates/status-bar.component.d.ts +1 -1
  4. package/column-menu/column-chooser-item-checked.directive.d.ts +1 -1
  5. package/column-menu/column-chooser.component.d.ts +1 -1
  6. package/column-menu/column-list.component.d.ts +1 -1
  7. package/column-menu/column-menu-autosize.component.d.ts +1 -1
  8. package/column-menu/column-menu-chooser.component.d.ts +1 -1
  9. package/column-menu/column-menu-filter.component.d.ts +1 -1
  10. package/column-menu/column-menu-item-base.d.ts +1 -1
  11. package/column-menu/column-menu-item.component.d.ts +1 -1
  12. package/column-menu/column-menu-item.directive.d.ts +1 -1
  13. package/column-menu/column-menu-position.component.d.ts +1 -1
  14. package/column-menu/column-menu.component.d.ts +1 -1
  15. package/column-resizing/column-handle.directive.d.ts +1 -1
  16. package/column-resizing/column-resize.interface.d.ts +3 -3
  17. package/column-resizing/table.directive.d.ts +1 -1
  18. package/columns/checkbox-column.component.d.ts +1 -1
  19. package/columns/column-base.d.ts +1 -1
  20. package/columns/column.component.d.ts +1 -1
  21. package/columns/reorder-column.component.d.ts +1 -1
  22. package/columns/sort-settings.d.ts +2 -2
  23. package/columns/span-column.component.d.ts +1 -1
  24. package/common/clipboard-types.d.ts +2 -2
  25. package/common/clipboard.directive.d.ts +1 -1
  26. package/common/create-form-group.d.ts +1 -1
  27. package/common/fetch-data-callback.d.ts +1 -1
  28. package/common/remove-confirmation.d.ts +1 -1
  29. package/common/size-options.d.ts +1 -1
  30. package/data/data.iterators.d.ts +1 -1
  31. package/data/grid-item.interface.d.ts +1 -1
  32. package/databinding.directive.d.ts +1 -1
  33. package/directives.d.ts +8 -5
  34. package/dragdrop/context-types.d.ts +1 -1
  35. package/dragdrop/draggable-column.directive.d.ts +1 -1
  36. package/dragdrop/drop-target.directive.d.ts +1 -1
  37. package/editing/add-command-tool.directive.d.ts +39 -0
  38. package/editing/edit.service.d.ts +3 -3
  39. package/editing-directives/editing-directive-base.d.ts +1 -1
  40. package/editing-directives/in-cell-editing.directive.d.ts +1 -1
  41. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  42. package/editing-directives/template-editing.directive.d.ts +1 -1
  43. package/{esm2020 → esm2022}/aggregates/selection-aggregate.service.mjs +20 -17
  44. package/{esm2020 → esm2022}/aggregates/status-bar-template.directive.mjs +4 -3
  45. package/{esm2020 → esm2022}/aggregates/status-bar.component.mjs +10 -8
  46. package/{esm2020 → esm2022}/column-menu/column-chooser-item-checked.directive.mjs +7 -4
  47. package/{esm2020 → esm2022}/column-menu/column-chooser.component.mjs +36 -24
  48. package/{esm2020 → esm2022}/column-menu/column-list-kb-nav.service.mjs +6 -4
  49. package/{esm2020 → esm2022}/column-menu/column-list.component.mjs +51 -32
  50. package/{esm2020 → esm2022}/column-menu/column-locked-change-event.mjs +4 -0
  51. package/{esm2020 → esm2022}/column-menu/column-menu-autosize-all.component.mjs +6 -5
  52. package/{esm2020 → esm2022}/column-menu/column-menu-autosize.component.mjs +10 -5
  53. package/{esm2020 → esm2022}/column-menu/column-menu-chooser.component.mjs +33 -29
  54. package/{esm2020 → esm2022}/column-menu/column-menu-container.component.mjs +8 -5
  55. package/{esm2020 → esm2022}/column-menu/column-menu-filter.component.mjs +28 -26
  56. package/{esm2020 → esm2022}/column-menu/column-menu-item-base.mjs +9 -6
  57. package/{esm2020 → esm2022}/column-menu/column-menu-item-content-template.directive.mjs +4 -3
  58. package/{esm2020 → esm2022}/column-menu/column-menu-item.component.mjs +73 -42
  59. package/{esm2020 → esm2022}/column-menu/column-menu-item.directive.mjs +38 -28
  60. package/{esm2020 → esm2022}/column-menu/column-menu-lock.component.mjs +9 -6
  61. package/{esm2020 → esm2022}/column-menu/column-menu-position.component.mjs +38 -28
  62. package/{esm2020 → esm2022}/column-menu/column-menu-sort.component.mjs +9 -6
  63. package/{esm2020 → esm2022}/column-menu/column-menu-stick.component.mjs +9 -6
  64. package/{esm2020 → esm2022}/column-menu/column-menu-template.directive.mjs +4 -3
  65. package/{esm2020 → esm2022}/column-menu/column-menu.component.mjs +97 -63
  66. package/{esm2020 → esm2022}/column-menu/column-menu.service.mjs +34 -10
  67. package/{esm2020 → esm2022}/column-menu/column-sticky-change-event.mjs +4 -0
  68. package/{esm2020 → esm2022}/column-menu/column-visibility-change-event.mjs +4 -0
  69. package/{esm2020 → esm2022}/column-resizing/column-handle.directive.mjs +23 -15
  70. package/{esm2020 → esm2022}/column-resizing/column-resizing.service.mjs +8 -8
  71. package/{esm2020 → esm2022}/column-resizing/table.directive.mjs +17 -8
  72. package/{esm2020 → esm2022}/columns/checkbox-column.component.mjs +24 -16
  73. package/{esm2020 → esm2022}/columns/column-base.mjs +188 -84
  74. package/{esm2020 → esm2022}/columns/column-group.component.mjs +29 -20
  75. package/{esm2020 → esm2022}/columns/column-list.mjs +4 -3
  76. package/{esm2020 → esm2022}/columns/column.component.mjs +62 -46
  77. package/{esm2020 → esm2022}/columns/columns-container.mjs +16 -15
  78. package/{esm2020 → esm2022}/columns/command-column.component.mjs +10 -8
  79. package/{esm2020 → esm2022}/columns/reorder-column.component.mjs +23 -12
  80. package/{esm2020 → esm2022}/columns/span-column.component.mjs +49 -29
  81. package/esm2022/common/clipboard.directive.mjs +190 -0
  82. package/{esm2020 → esm2022}/common/clipboard.service.mjs +12 -9
  83. package/{esm2020 → esm2022}/common/column-info.service.mjs +10 -10
  84. package/esm2022/common/dom-events.service.mjs +26 -0
  85. package/{esm2020 → esm2022}/common/error-messages.mjs +4 -1
  86. package/{esm2020 → esm2022}/common/event-emitter.mjs +1 -0
  87. package/{esm2020 → esm2022}/common/id.service.mjs +4 -3
  88. package/{esm2020 → esm2022}/common/preventable-event.mjs +1 -3
  89. package/{esm2020 → esm2022}/common/provider.service.mjs +10 -3
  90. package/{esm2020 → esm2022}/common/single-popup.service.mjs +21 -10
  91. package/{esm2020 → esm2022}/common/sort.service.mjs +1 -3
  92. package/{esm2020 → esm2022}/data/change-notification.service.mjs +6 -4
  93. package/{esm2020 → esm2022}/data/data.collection.mjs +5 -0
  94. package/{esm2020 → esm2022}/data/data.iterators.mjs +16 -1
  95. package/{esm2020 → esm2022}/databinding.directive.mjs +24 -16
  96. package/{esm2020 → esm2022}/directives.mjs +8 -2
  97. package/{esm2020 → esm2022}/dragdrop/column-reorder-event.mjs +14 -0
  98. package/{esm2020 → esm2022}/dragdrop/column-reorder.service.mjs +4 -6
  99. package/{esm2020 → esm2022}/dragdrop/drag-and-drop.service.mjs +6 -8
  100. package/{esm2020 → esm2022}/dragdrop/drag-hint.service.mjs +7 -4
  101. package/{esm2020 → esm2022}/dragdrop/draggable-column.directive.mjs +22 -13
  102. package/{esm2020 → esm2022}/dragdrop/drop-cue.service.mjs +4 -3
  103. package/{esm2020 → esm2022}/dragdrop/drop-target.directive.mjs +10 -8
  104. package/esm2022/editing/add-command-tool.directive.mjs +64 -0
  105. package/{esm2020 → esm2022}/editing/add-command.directive.mjs +9 -8
  106. package/{esm2020 → esm2022}/editing/cancel-command.directive.mjs +17 -13
  107. package/{esm2020 → esm2022}/editing/cell-close-event.mjs +21 -4
  108. package/{esm2020 → esm2022}/editing/edit-command.directive.mjs +17 -13
  109. package/{esm2020 → esm2022}/editing/edit-template.directive.mjs +4 -3
  110. package/{esm2020 → esm2022}/editing/edit.service.mjs +13 -8
  111. package/{esm2020 → esm2022}/editing/local-data-changes.service.mjs +5 -6
  112. package/{esm2020 → esm2022}/editing/remove-command.directive.mjs +17 -13
  113. package/{esm2020 → esm2022}/editing/save-command.directive.mjs +17 -13
  114. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +17 -9
  115. package/{esm2020 → esm2022}/editing-directives/in-cell-editing.directive.mjs +10 -3
  116. package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +2 -0
  117. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +9 -3
  118. package/{esm2020 → esm2022}/editing-directives/row-editing-directive-base.mjs +4 -3
  119. package/{esm2020 → esm2022}/editing-directives/template-editing.directive.mjs +11 -3
  120. package/esm2022/excel/excel-command-tool.directive.mjs +66 -0
  121. package/{esm2020 → esm2022}/excel/excel-command.directive.mjs +11 -10
  122. package/{esm2020 → esm2022}/excel/excel-export-event.mjs +1 -0
  123. package/{esm2020 → esm2022}/excel/excel.component.mjs +66 -12
  124. package/{esm2020 → esm2022}/excel/excel.module.mjs +5 -4
  125. package/{esm2020 → esm2022}/excel/excel.service.mjs +5 -7
  126. package/{esm2020 → esm2022}/filtering/base-filter-cell.component.mjs +22 -11
  127. package/{esm2020 → esm2022}/filtering/boolean-filter.component.mjs +25 -24
  128. package/{esm2020 → esm2022}/filtering/cell/autocomplete-filter-cell.component.mjs +18 -15
  129. package/{esm2020 → esm2022}/filtering/cell/boolean-filter-cell.component.mjs +10 -8
  130. package/{esm2020 → esm2022}/filtering/cell/date-filter-cell.component.mjs +25 -23
  131. package/{esm2020 → esm2022}/filtering/cell/filter-cell-host.directive.mjs +3 -3
  132. package/{esm2020 → esm2022}/filtering/cell/filter-cell-operators.component.mjs +60 -39
  133. package/{esm2020 → esm2022}/filtering/cell/filter-cell-template.directive.mjs +4 -3
  134. package/{esm2020 → esm2022}/filtering/cell/filter-cell-wrapper.component.mjs +8 -8
  135. package/{esm2020 → esm2022}/filtering/cell/filter-cell.component.mjs +9 -9
  136. package/{esm2020 → esm2022}/filtering/cell/numeric-filter-cell.component.mjs +25 -18
  137. package/{esm2020 → esm2022}/filtering/cell/row-filtering.module.mjs +18 -18
  138. package/{esm2020 → esm2022}/filtering/cell/string-filter-cell.component.mjs +23 -17
  139. package/{esm2020 → esm2022}/filtering/date-filter.component.mjs +64 -38
  140. package/{esm2020 → esm2022}/filtering/filter-host.directive.mjs +8 -3
  141. package/{esm2020 → esm2022}/filtering/filter-input-wrapper.component.mjs +11 -8
  142. package/{esm2020 → esm2022}/filtering/filter-input.directive.mjs +20 -13
  143. package/{esm2020 → esm2022}/filtering/filter-row.component.mjs +13 -7
  144. package/{esm2020 → esm2022}/filtering/filter.service.mjs +14 -10
  145. package/{esm2020 → esm2022}/filtering/menu/boolean-filter-menu.component.mjs +25 -13
  146. package/{esm2020 → esm2022}/filtering/menu/date-filter-menu-input.component.mjs +24 -5
  147. package/{esm2020 → esm2022}/filtering/menu/date-filter-menu.component.mjs +26 -21
  148. package/{esm2020 → esm2022}/filtering/menu/filter-menu-container.component.mjs +46 -20
  149. package/{esm2020 → esm2022}/filtering/menu/filter-menu-dropdownlist.directive.mjs +11 -9
  150. package/{esm2020 → esm2022}/filtering/menu/filter-menu-host.directive.mjs +5 -3
  151. package/{esm2020 → esm2022}/filtering/menu/filter-menu-input-wrapper.component.mjs +14 -8
  152. package/{esm2020 → esm2022}/filtering/menu/filter-menu-template.directive.mjs +4 -3
  153. package/{esm2020 → esm2022}/filtering/menu/filter-menu.component.mjs +27 -6
  154. package/{esm2020 → esm2022}/filtering/menu/filter-menu.module.mjs +18 -18
  155. package/{esm2020 → esm2022}/filtering/menu/filter-radio-button.directive.mjs +7 -3
  156. package/{esm2020 → esm2022}/filtering/menu/menu-tabbing.service.mjs +9 -8
  157. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu-input.component.mjs +51 -15
  158. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu.component.mjs +42 -37
  159. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu-input.component.mjs +14 -5
  160. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu.component.mjs +36 -21
  161. package/{esm2020 → esm2022}/filtering/numeric-filter.component.mjs +51 -28
  162. package/{esm2020 → esm2022}/filtering/operators/after-eq-filter-operator.component.mjs +8 -8
  163. package/{esm2020 → esm2022}/filtering/operators/after-filter-operator.component.mjs +8 -8
  164. package/{esm2020 → esm2022}/filtering/operators/before-eq-filter-operator.component.mjs +8 -8
  165. package/{esm2020 → esm2022}/filtering/operators/before-filter-operator.component.mjs +8 -8
  166. package/{esm2020 → esm2022}/filtering/operators/contains-filter-operator.component.mjs +8 -8
  167. package/{esm2020 → esm2022}/filtering/operators/ends-with-filter-operator.component.mjs +8 -8
  168. package/{esm2020 → esm2022}/filtering/operators/eq-filter-operator.component.mjs +8 -8
  169. package/{esm2020 → esm2022}/filtering/operators/filter-operator.base.mjs +15 -10
  170. package/{esm2020 → esm2022}/filtering/operators/gt-filter-operator.component.mjs +8 -8
  171. package/{esm2020 → esm2022}/filtering/operators/gte-filter-operator.component.mjs +8 -8
  172. package/{esm2020 → esm2022}/filtering/operators/is-empty-filter-operator.component.mjs +8 -8
  173. package/{esm2020 → esm2022}/filtering/operators/is-not-empty-filter-operator.component.mjs +8 -8
  174. package/{esm2020 → esm2022}/filtering/operators/is-not-null-filter-operator.component.mjs +8 -8
  175. package/{esm2020 → esm2022}/filtering/operators/isnull-filter-operator.component.mjs +8 -8
  176. package/{esm2020 → esm2022}/filtering/operators/lt-filter-operator.component.mjs +8 -8
  177. package/{esm2020 → esm2022}/filtering/operators/lte-filter-operator.component.mjs +8 -8
  178. package/{esm2020 → esm2022}/filtering/operators/neq-filter-operator.component.mjs +8 -8
  179. package/{esm2020 → esm2022}/filtering/operators/not-contains-filter-operator.component.mjs +8 -8
  180. package/{esm2020 → esm2022}/filtering/operators/starts-with-filter-operator.component.mjs +8 -8
  181. package/{esm2020 → esm2022}/filtering/shared-filtering.module.mjs +18 -18
  182. package/{esm2020 → esm2022}/filtering/string-filter.component.mjs +20 -15
  183. package/{esm2020 → esm2022}/grid.component.mjs +480 -365
  184. package/esm2022/grid.module.mjs +221 -0
  185. package/{esm2020 → esm2022}/grouping/group-footer-template.directive.mjs +4 -3
  186. package/{esm2020 → esm2022}/grouping/group-header-column-template.directive.mjs +4 -3
  187. package/{esm2020 → esm2022}/grouping/group-header-template.directive.mjs +4 -3
  188. package/{esm2020 → esm2022}/grouping/group-header.component.mjs +23 -14
  189. package/{esm2020 → esm2022}/grouping/group-info.service.mjs +1 -3
  190. package/{esm2020 → esm2022}/grouping/group-panel.component.mjs +71 -53
  191. package/{esm2020 → esm2022}/grouping/group-scroll-binding.directive.mjs +11 -9
  192. package/{esm2020 → esm2022}/grouping/group.module.mjs +4 -4
  193. package/{esm2020 → esm2022}/grouping/groups.service.mjs +6 -7
  194. package/{esm2020 → esm2022}/index.mjs +6 -3
  195. package/{esm2020 → esm2022}/layout/browser-support.service.mjs +7 -4
  196. package/{esm2020 → esm2022}/layout/resizable.directive.mjs +16 -10
  197. package/{esm2020 → esm2022}/layout/resize.service.mjs +6 -8
  198. package/{esm2020 → esm2022}/layout/responsive.service.mjs +7 -9
  199. package/{esm2020 → esm2022}/layout/sizing-options.service.mjs +4 -6
  200. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  201. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  202. package/esm2022/localization/messages.mjs +585 -0
  203. package/{esm2020 → esm2022}/navigation/default-focusable-element.mjs +8 -5
  204. package/{esm2020 → esm2022}/navigation/focus-group.mjs +10 -9
  205. package/{esm2020 → esm2022}/navigation/focus-root.mjs +5 -4
  206. package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +23 -17
  207. package/{esm2020 → esm2022}/navigation/grid-focusable-element.mjs +1 -0
  208. package/{esm2020 → esm2022}/navigation/item-map.mjs +2 -4
  209. package/{esm2020 → esm2022}/navigation/logical-cell.directive.mjs +38 -23
  210. package/{esm2020 → esm2022}/navigation/logical-row.directive.mjs +18 -12
  211. package/{esm2020 → esm2022}/navigation/navigation-cursor.mjs +10 -8
  212. package/{esm2020 → esm2022}/navigation/navigation-metadata.mjs +12 -4
  213. package/{esm2020 → esm2022}/navigation/navigation-model.mjs +1 -3
  214. package/{esm2020 → esm2022}/navigation/navigation.service.mjs +47 -27
  215. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  216. package/{esm2020 → esm2022}/pager/pager-context.service.mjs +5 -4
  217. package/{esm2020 → esm2022}/pager/pager-dropdown.directive.mjs +10 -9
  218. package/{esm2020 → esm2022}/pager/pager-element.component.mjs +27 -20
  219. package/{esm2020 → esm2022}/pager/pager-info.component.mjs +8 -7
  220. package/{esm2020 → esm2022}/pager/pager-input.component.mjs +43 -39
  221. package/{esm2020 → esm2022}/pager/pager-input.directive.mjs +5 -3
  222. package/{esm2020 → esm2022}/pager/pager-next-buttons.component.mjs +10 -9
  223. package/{esm2020 → esm2022}/pager/pager-numeric-buttons.component.mjs +19 -9
  224. package/{esm2020 → esm2022}/pager/pager-page-sizes.component.mjs +12 -10
  225. package/{esm2020 → esm2022}/pager/pager-prev-buttons.component.mjs +6 -5
  226. package/{esm2020 → esm2022}/pager/pager-template.directive.mjs +4 -3
  227. package/{esm2020 → esm2022}/pager/pager.component.mjs +82 -68
  228. package/{esm2020 → esm2022}/pager/pager.module.mjs +4 -4
  229. package/{esm2020 → esm2022}/pdf/grid-query.mjs +4 -0
  230. package/esm2022/pdf/pdf-command-tool.directive.mjs +66 -0
  231. package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +10 -9
  232. package/{esm2020 → esm2022}/pdf/pdf-margin.component.mjs +3 -3
  233. package/{esm2020 → esm2022}/pdf/pdf-template.directive.mjs +3 -3
  234. package/{esm2020 → esm2022}/pdf/pdf.component.mjs +39 -12
  235. package/{esm2020 → esm2022}/pdf/pdf.module.mjs +5 -4
  236. package/{esm2020 → esm2022}/pdf/pdf.service.mjs +8 -9
  237. package/{esm2020 → esm2022}/rendering/body.module.mjs +18 -17
  238. package/{esm2020 → esm2022}/rendering/cell-loading.template.directive.mjs +4 -3
  239. package/{esm2020 → esm2022}/rendering/cell-template.directive.mjs +4 -3
  240. package/{esm2020 → esm2022}/rendering/cell.component.mjs +25 -16
  241. package/{esm2020 → esm2022}/rendering/common/col-group.component.mjs +8 -9
  242. package/{esm2020 → esm2022}/rendering/common/field-accessor.pipe.mjs +4 -3
  243. package/{esm2020 → esm2022}/rendering/common/loading.component.mjs +10 -8
  244. package/{esm2020 → esm2022}/rendering/common/spacer.component.mjs +11 -6
  245. package/{esm2020 → esm2022}/rendering/details/detail-collapse-event.mjs +8 -0
  246. package/{esm2020 → esm2022}/rendering/details/detail-expand-event.mjs +8 -0
  247. package/{esm2020 → esm2022}/rendering/details/detail-template.directive.mjs +8 -7
  248. package/{esm2020 → esm2022}/rendering/details/details.service.mjs +6 -7
  249. package/{esm2020 → esm2022}/rendering/details-expand.directive.mjs +28 -25
  250. package/{esm2020 → esm2022}/rendering/footer/footer-template.directive.mjs +4 -3
  251. package/{esm2020 → esm2022}/rendering/footer/footer.component.mjs +17 -13
  252. package/{esm2020 → esm2022}/rendering/footer/footer.module.mjs +4 -4
  253. package/{esm2020 → esm2022}/rendering/grid-table.directive.mjs +9 -8
  254. package/{esm2020 → esm2022}/rendering/groups-expand.directive.mjs +21 -18
  255. package/{esm2020 → esm2022}/rendering/header/header-template.directive.mjs +4 -3
  256. package/{esm2020 → esm2022}/rendering/header/header.component.mjs +61 -35
  257. package/{esm2020 → esm2022}/rendering/header/header.module.mjs +18 -18
  258. package/{esm2020 → esm2022}/rendering/list.component.mjs +95 -48
  259. package/{esm2020 → esm2022}/rendering/loading-template.directive.mjs +4 -3
  260. package/{esm2020 → esm2022}/rendering/no-records-template.directive.mjs +4 -3
  261. package/{esm2020 → esm2022}/rendering/table-body.component.mjs +50 -17
  262. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-focusable.directive.mjs +9 -7
  263. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-navigation.service.mjs +9 -8
  264. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-template.directive.mjs +8 -7
  265. package/{esm2020 → esm2022}/rendering/toolbar/toolbar.component.mjs +26 -12
  266. package/{esm2020 → esm2022}/row-reordering/row-reorder.service.mjs +14 -10
  267. package/{esm2020 → esm2022}/scrolling/row-height.service.mjs +5 -2
  268. package/{esm2020 → esm2022}/scrolling/scroll-request.service.mjs +4 -6
  269. package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +10 -8
  270. package/{esm2020 → esm2022}/scrolling/scroller.service.mjs +12 -1
  271. package/{esm2020 → esm2022}/scrolling/suspend.service.mjs +4 -6
  272. package/{esm2020 → esm2022}/selection/cell-selection.service.mjs +31 -20
  273. package/{esm2020 → esm2022}/selection/marquee.directive.mjs +16 -4
  274. package/{esm2020 → esm2022}/selection/pair-set.mjs +16 -16
  275. package/{esm2020 → esm2022}/selection/selectall-checkbox.directive.mjs +26 -16
  276. package/{esm2020 → esm2022}/selection/selection-checkbox.directive.mjs +19 -7
  277. package/{esm2020 → esm2022}/selection/selection-default.mjs +46 -25
  278. package/{esm2020 → esm2022}/selection/selection.directive.mjs +4 -3
  279. package/{esm2020 → esm2022}/selection/selection.service.mjs +31 -18
  280. package/{esm2020 → esm2022}/shared.module.mjs +4 -4
  281. package/excel/excel-command-tool.directive.d.ts +41 -0
  282. package/excel/excel-command.directive.d.ts +1 -1
  283. package/excel/excel.component.d.ts +1 -1
  284. package/excel/excel.module.d.ts +3 -2
  285. package/{fesm2020 → fesm2022}/progress-kendo-angular-grid.mjs +5040 -3031
  286. package/filtering/base-filter-cell.component.d.ts +5 -1
  287. package/filtering/boolean-filter.component.d.ts +2 -13
  288. package/filtering/cell/autocomplete-filter-cell.component.d.ts +2 -7
  289. package/filtering/cell/date-filter-cell.component.d.ts +1 -1
  290. package/filtering/cell/filter-cell-operators.component.d.ts +1 -1
  291. package/filtering/cell/filter-cell-wrapper.component.d.ts +1 -1
  292. package/filtering/cell/filter-cell.component.d.ts +1 -1
  293. package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
  294. package/filtering/cell/string-filter-cell.component.d.ts +1 -1
  295. package/filtering/date-filter.component.d.ts +2 -11
  296. package/filtering/filter-host.directive.d.ts +2 -2
  297. package/filtering/filter-input-wrapper.component.d.ts +1 -2
  298. package/filtering/filter-input.directive.d.ts +1 -1
  299. package/filtering/filter-row.component.d.ts +1 -1
  300. package/filtering/filterable.d.ts +1 -1
  301. package/filtering/menu/boolean-filter-menu.component.d.ts +1 -1
  302. package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
  303. package/filtering/menu/date-filter-menu.component.d.ts +1 -7
  304. package/filtering/menu/filter-menu-container.component.d.ts +1 -1
  305. package/filtering/menu/filter-menu-dropdownlist.directive.d.ts +1 -1
  306. package/filtering/menu/filter-menu-host.directive.d.ts +1 -1
  307. package/filtering/menu/filter-menu-input-wrapper.component.d.ts +1 -1
  308. package/filtering/menu/filter-menu.component.d.ts +1 -1
  309. package/filtering/menu/filter-radio-button.directive.d.ts +1 -1
  310. package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
  311. package/filtering/menu/numeric-filter-menu.component.d.ts +1 -7
  312. package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
  313. package/filtering/menu/string-filter-menu.component.d.ts +1 -7
  314. package/filtering/numeric-filter.component.d.ts +2 -11
  315. package/filtering/operators/filter-operator.base.d.ts +1 -1
  316. package/filtering/string-filter.component.d.ts +2 -11
  317. package/grid.component.d.ts +1 -1
  318. package/grid.module.d.ts +103 -101
  319. package/grouping/group-header.component.d.ts +1 -1
  320. package/grouping/group-panel.component.d.ts +1 -1
  321. package/grouping/group-scroll-binding.directive.d.ts +1 -1
  322. package/index.d.ts +6 -3
  323. package/layout/resizable.directive.d.ts +1 -1
  324. package/localization/messages.d.ts +1 -1
  325. package/navigation/focusable.directive.d.ts +1 -1
  326. package/navigation/logical-cell.directive.d.ts +1 -1
  327. package/navigation/logical-row.directive.d.ts +1 -1
  328. package/navigation/navigable-settings.d.ts +2 -2
  329. package/package.json +27 -32
  330. package/pager/pager-context.service.d.ts +1 -1
  331. package/pager/pager-element.component.d.ts +1 -1
  332. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  333. package/pager/pager-page-sizes.component.d.ts +1 -1
  334. package/pager/pager-settings.d.ts +2 -2
  335. package/pager/pager.component.d.ts +1 -1
  336. package/pdf/pdf-command-tool.directive.d.ts +41 -0
  337. package/pdf/pdf.component.d.ts +1 -1
  338. package/pdf/pdf.module.d.ts +2 -1
  339. package/rendering/body.module.d.ts +5 -4
  340. package/rendering/cell.component.d.ts +1 -1
  341. package/rendering/common/cell-context.d.ts +1 -1
  342. package/rendering/common/col-group.component.d.ts +1 -1
  343. package/rendering/common/loading.component.d.ts +1 -1
  344. package/rendering/common/row-class.d.ts +4 -4
  345. package/rendering/common/spacer.component.d.ts +1 -1
  346. package/rendering/details/detail-template.directive.d.ts +2 -2
  347. package/rendering/details-expand.directive.d.ts +1 -1
  348. package/rendering/footer/footer.component.d.ts +1 -1
  349. package/rendering/grid-table.directive.d.ts +1 -1
  350. package/rendering/groups-expand.directive.d.ts +1 -1
  351. package/rendering/header/header.component.d.ts +1 -1
  352. package/rendering/list.component.d.ts +1 -1
  353. package/rendering/table-body.component.d.ts +1 -1
  354. package/rendering/toolbar/toolbar-position.d.ts +1 -1
  355. package/rendering/toolbar/toolbar-template.directive.d.ts +1 -1
  356. package/rendering/toolbar/toolbar.component.d.ts +2 -1
  357. package/row-reordering/types.d.ts +1 -1
  358. package/schematics/ngAdd/index.js +4 -4
  359. package/scrolling/scroll-sync.service.d.ts +1 -1
  360. package/scrolling/scroller.service.d.ts +1 -1
  361. package/scrolling/scrollmode.d.ts +1 -1
  362. package/selection/cell-selection.service.d.ts +1 -1
  363. package/selection/selectall-checkbox.directive.d.ts +1 -1
  364. package/selection/selection-checkbox.directive.d.ts +1 -1
  365. package/selection/selection-default.d.ts +1 -1
  366. package/selection/selection.service.d.ts +1 -1
  367. package/selection/types.d.ts +4 -4
  368. package/utils.d.ts +1 -1
  369. package/esm2020/common/clipboard.directive.mjs +0 -186
  370. package/esm2020/common/dom-events.service.mjs +0 -28
  371. package/esm2020/grid.module.mjs +0 -219
  372. package/esm2020/localization/messages.mjs +0 -187
  373. package/fesm2015/progress-kendo-angular-grid.mjs +0 -28466
  374. /package/{esm2020 → esm2022}/aggregates/aggregate-types.mjs +0 -0
  375. /package/{esm2020 → esm2022}/column-menu/column-menu-expandable-item.interface.mjs +0 -0
  376. /package/{esm2020 → esm2022}/column-menu/column-menu-settings.interface.mjs +0 -0
  377. /package/{esm2020 → esm2022}/column-menu/utils.mjs +0 -0
  378. /package/{esm2020 → esm2022}/column-resizing/column-resize.interface.mjs +0 -0
  379. /package/{esm2020 → esm2022}/columns/column-common.mjs +0 -0
  380. /package/{esm2020 → esm2022}/columns/sort-settings.mjs +0 -0
  381. /package/{esm2020 → esm2022}/common/cell-click-event-args.interface.mjs +0 -0
  382. /package/{esm2020 → esm2022}/common/clipboard-types.mjs +0 -0
  383. /package/{esm2020 → esm2022}/common/create-form-group.mjs +0 -0
  384. /package/{esm2020 → esm2022}/common/default-track-by.mjs +0 -0
  385. /package/{esm2020 → esm2022}/common/fetch-data-callback.mjs +0 -0
  386. /package/{esm2020 → esm2022}/common/filter-descriptor-differ.mjs +0 -0
  387. /package/{esm2020 → esm2022}/common/filter-operator.interface.mjs +0 -0
  388. /package/{esm2020 → esm2022}/common/remove-confirmation.mjs +0 -0
  389. /package/{esm2020 → esm2022}/common/size-options.mjs +0 -0
  390. /package/{esm2020 → esm2022}/constants.mjs +0 -0
  391. /package/{esm2020 → esm2022}/data/change-event-args.interface.mjs +0 -0
  392. /package/{esm2020 → esm2022}/data/data-item.interface.mjs +0 -0
  393. /package/{esm2020 → esm2022}/data/grid-item.interface.mjs +0 -0
  394. /package/{esm2020 → esm2022}/data/group-footer-item.interface.mjs +0 -0
  395. /package/{esm2020 → esm2022}/data/group-item.interface.mjs +0 -0
  396. /package/{esm2020 → esm2022}/dragdrop/column-reorder-config.mjs +0 -0
  397. /package/{esm2020 → esm2022}/dragdrop/common.mjs +0 -0
  398. /package/{esm2020 → esm2022}/dragdrop/context-types.mjs +0 -0
  399. /package/{esm2020 → esm2022}/editing/add-event-args.interface.mjs +0 -0
  400. /package/{esm2020 → esm2022}/editing/cancel-event-args.interface.mjs +0 -0
  401. /package/{esm2020 → esm2022}/editing/edit-event-args.interface.mjs +0 -0
  402. /package/{esm2020 → esm2022}/editing/edit-row-options.interface.mjs +0 -0
  403. /package/{esm2020 → esm2022}/editing/remove-event-args.interface.mjs +0 -0
  404. /package/{esm2020 → esm2022}/editing/save-event-args.interface.mjs +0 -0
  405. /package/{esm2020 → esm2022}/editing-directives/create-form-group-args.interface.mjs +0 -0
  406. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  407. /package/{esm2020 → esm2022}/editing-directives/local-row-edit.service.mjs +0 -0
  408. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  409. /package/{esm2020 → esm2022}/filtering/cell/filter-cell-component.factory.mjs +0 -0
  410. /package/{esm2020 → esm2022}/filtering/filter-component.interface.mjs +0 -0
  411. /package/{esm2020 → esm2022}/filtering/filterable.mjs +0 -0
  412. /package/{esm2020 → esm2022}/filtering/menu/filter-menu-component.factory.mjs +0 -0
  413. /package/{esm2020 → esm2022}/grouping/group-key.interface.mjs +0 -0
  414. /package/{esm2020 → esm2022}/grouping/group-rows-args.interface.mjs +0 -0
  415. /package/{esm2020 → esm2022}/grouping/group-settings.mjs +0 -0
  416. /package/{esm2020 → esm2022}/grouping/utils.mjs +0 -0
  417. /package/{esm2020 → esm2022}/grouping/virtual-group-result.interface.mjs +0 -0
  418. /package/{esm2020 → esm2022}/layout/row-sync.mjs +0 -0
  419. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  420. /package/{esm2020 → esm2022}/navigation/logical-cell.interface.mjs +0 -0
  421. /package/{esm2020 → esm2022}/navigation/logical-row.interface.mjs +0 -0
  422. /package/{esm2020 → esm2022}/navigation/navigable-settings.mjs +0 -0
  423. /package/{esm2020 → esm2022}/navigation/navigation-cell.interface.mjs +0 -0
  424. /package/{esm2020 → esm2022}/navigation/navigation-change.interface.mjs +0 -0
  425. /package/{esm2020 → esm2022}/navigation/navigation-mode.mjs +0 -0
  426. /package/{esm2020 → esm2022}/navigation/navigation-row.interface.mjs +0 -0
  427. /package/{esm2020 → esm2022}/pager/pager-settings.mjs +0 -0
  428. /package/{esm2020 → esm2022}/pager/pagesize-item.interface.mjs +0 -0
  429. /package/{esm2020 → esm2022}/pdf/export-element.mjs +0 -0
  430. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  431. /package/{esm2020 → esm2022}/pdf/pdf-margin.interface.mjs +0 -0
  432. /package/{esm2020 → esm2022}/progress-kendo-angular-grid.mjs +0 -0
  433. /package/{esm2020 → esm2022}/rendering/common/cell-context.mjs +0 -0
  434. /package/{esm2020 → esm2022}/rendering/common/dom-queries.mjs +0 -0
  435. /package/{esm2020 → esm2022}/rendering/common/row-args.mjs +0 -0
  436. /package/{esm2020 → esm2022}/rendering/common/row-class.mjs +0 -0
  437. /package/{esm2020 → esm2022}/rendering/constants.mjs +0 -0
  438. /package/{esm2020 → esm2022}/rendering/toolbar/toolbar-position.mjs +0 -0
  439. /package/{esm2020 → esm2022}/row-reordering/types.mjs +0 -0
  440. /package/{esm2020 → esm2022}/row-reordering/utils.mjs +0 -0
  441. /package/{esm2020 → esm2022}/scrolling/content-scroll-event.mjs +0 -0
  442. /package/{esm2020 → esm2022}/scrolling/scroll-bottom-event.mjs +0 -0
  443. /package/{esm2020 → esm2022}/scrolling/scrollmode.mjs +0 -0
  444. /package/{esm2020 → esm2022}/selection/types.mjs +0 -0
  445. /package/{esm2020 → esm2022}/utils.mjs +0 -0
@@ -0,0 +1,41 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { PDFService } from './pdf.service';
6
+ import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * Represents the `export-to-PDF` toolbar tool of the Grid.
10
+ * You can apply this directive to any `kendo-toolbar-button` element inside a
11
+ * ToolbarComponent used in the Grid.
12
+ *
13
+ * When the user clicks the toolbar button that is associated with the directive, the
14
+ * [pdfExport]({% slug api_grid_gridcomponent %}#toc-pdfexport) event
15
+ * fires ([see example]({% slug pdfexport_grid %})).
16
+ *
17
+ * @example
18
+ * ```html-no-run
19
+ * <kendo-grid>
20
+ * <kendo-toolbar>
21
+ * <kendo-toolbar-button text="PDF Export" kendoGridPDFTool></kendo-toolbar-button>
22
+ * </kendo-toolbar>
23
+ * <kendo-grid-pdf fileName="Grid.pdf">
24
+ * </kendo-grid-pdf>
25
+ * </kendo-grid>
26
+ * ```
27
+ */
28
+ export declare class PDFCommandToolbarDirective {
29
+ private pdfService;
30
+ private host;
31
+ private clickSub;
32
+ constructor(pdfService: PDFService, host: ToolBarButtonComponent);
33
+ ngOnInit(): void;
34
+ ngOnDestroy(): void;
35
+ /**
36
+ * @hidden
37
+ */
38
+ onClick(e: any): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<PDFCommandToolbarDirective, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PDFCommandToolbarDirective, "[kendoGridPDFTool]", never, {}, {}, never, never, true, never>;
41
+ }
@@ -79,5 +79,5 @@ export declare class PDFComponent extends PDFExportComponent implements OnDestro
79
79
  protected reset(): void;
80
80
  protected onStable(callback: () => void): void;
81
81
  static ɵfac: i0.ɵɵFactoryDeclaration<PDFComponent, [null, null, null, null, { optional: true; }]>;
82
- static ɵcmp: i0.ɵɵComponentDeclaration<PDFComponent, "kendo-grid-pdf", never, { "allPages": "allPages"; "delay": "delay"; }, {}, ["marginComponent", "pageTemplateDirective", "columns"], never, true, never>;
82
+ static ɵcmp: i0.ɵɵComponentDeclaration<PDFComponent, "kendo-grid-pdf", never, { "allPages": { "alias": "allPages"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, {}, ["marginComponent", "pageTemplateDirective", "columns"], never, true, never>;
83
83
  }
@@ -8,6 +8,7 @@ import * as i2 from "./pdf.component";
8
8
  import * as i3 from "./pdf-margin.component";
9
9
  import * as i4 from "./pdf-command.directive";
10
10
  import * as i5 from "./pdf-template.directive";
11
+ import * as i6 from "./pdf-command-tool.directive";
11
12
  /**
12
13
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
13
14
  * definition for the Grid PDF component.
@@ -32,6 +33,6 @@ import * as i5 from "./pdf-template.directive";
32
33
  */
33
34
  export declare class PDFModule {
34
35
  static ɵfac: i0.ɵɵFactoryDeclaration<PDFModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<PDFModule, never, [typeof i1.IconComponent, typeof i1.SVGIconComponent, typeof i2.PDFComponent, typeof i3.PDFMarginComponent, typeof i4.PDFCommandDirective, typeof i5.PDFTemplateDirective], [typeof i2.PDFComponent, typeof i3.PDFMarginComponent, typeof i4.PDFCommandDirective, typeof i5.PDFTemplateDirective]>;
36
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PDFModule, never, [typeof i1.IconComponent, typeof i1.SVGIconComponent, typeof i2.PDFComponent, typeof i3.PDFMarginComponent, typeof i4.PDFCommandDirective, typeof i5.PDFTemplateDirective, typeof i6.PDFCommandToolbarDirective], [typeof i2.PDFComponent, typeof i3.PDFMarginComponent, typeof i4.PDFCommandDirective, typeof i5.PDFTemplateDirective, typeof i6.PDFCommandToolbarDirective]>;
36
37
  static ɵinj: i0.ɵɵInjectorDeclaration<PDFModule>;
37
38
  }
@@ -35,9 +35,10 @@ 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 "./cell-loading.template.directive";
39
- import * as i34 from "./loading-template.directive";
40
- import * as i35 from "../columns/reorder-column.component";
38
+ import * as i33 from "../editing/add-command-tool.directive";
39
+ import * as i34 from "./cell-loading.template.directive";
40
+ import * as i35 from "./loading-template.directive";
41
+ import * as i36 from "../columns/reorder-column.component";
41
42
  /**
42
43
  * @hidden
43
44
  *
@@ -45,6 +46,6 @@ import * as i35 from "../columns/reorder-column.component";
45
46
  */
46
47
  export declare class BodyModule {
47
48
  static ɵfac: i0.ɵɵFactoryDeclaration<BodyModule, never>;
48
- static ɵmod: i0.ɵɵNgModuleDeclaration<BodyModule, never, [typeof i1.ColumnComponent, typeof i2.ColumnGroupComponent, typeof i3.LogicalCellDirective, typeof i4.LogicalRowDirective, typeof i5.FocusableDirective, typeof i6.FooterTemplateDirective, typeof i7.ColGroupComponent, typeof i8.ResizableContainerDirective, typeof i9.TemplateContextDirective, typeof i10.FieldAccessorPipe, typeof i11.DetailTemplateDirective, typeof i12.SpanColumnComponent, typeof i13.LoadingComponent, typeof i14.GridTableDirective, typeof i15.GroupHeaderTemplateDirective, typeof i16.GroupHeaderColumnTemplateDirective, typeof i17.GroupFooterTemplateDirective, typeof i18.GroupHeaderComponent, typeof i19.GroupPanelComponent, 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 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]>;
49
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BodyModule, never, [typeof i1.ColumnComponent, typeof i2.ColumnGroupComponent, typeof i3.LogicalCellDirective, typeof i4.LogicalRowDirective, typeof i5.FocusableDirective, typeof i6.FooterTemplateDirective, typeof i7.ColGroupComponent, typeof i8.ResizableContainerDirective, typeof i9.TemplateContextDirective, typeof i10.FieldAccessorPipe, typeof i11.DetailTemplateDirective, typeof i12.SpanColumnComponent, typeof i13.LoadingComponent, typeof i14.GridTableDirective, typeof i15.GroupHeaderTemplateDirective, typeof i16.GroupHeaderColumnTemplateDirective, typeof i17.GroupFooterTemplateDirective, typeof i18.GroupHeaderComponent, typeof i19.GroupPanelComponent, 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 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]>;
49
50
  static ɵinj: i0.ɵɵInjectorDeclaration<BodyModule>;
50
51
  }
@@ -59,5 +59,5 @@ export declare class CellComponent implements DoCheck {
59
59
  private updateCellContext;
60
60
  private updateTemplateContext;
61
61
  static ɵfac: i0.ɵɵFactoryDeclaration<CellComponent, [null, null, null, { optional: true; }]>;
62
- static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoGridCell]", never, { "column": "column"; "columnIndex": "columnIndex"; "isNew": "isNew"; "isLoading": "isLoading"; "isVirtual": "isVirtual"; "loadingTemplate": "loadingTemplate"; "rowIndex": "rowIndex"; "dataItem": "dataItem"; }, {}, never, never, true, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<CellComponent, "[kendoGridCell]", never, { "column": { "alias": "column"; "required": false; }; "columnIndex": { "alias": "columnIndex"; "required": false; }; "isNew": { "alias": "isNew"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "dataItem": { "alias": "dataItem"; "required": false; }; }, {}, never, never, true, never>;
63
63
  }
@@ -11,7 +11,7 @@ export declare const CELL_CONTEXT: InjectionToken<string>;
11
11
  /**
12
12
  * @hidden
13
13
  */
14
- export declare type CellContext = {
14
+ export type CellContext = {
15
15
  rowIndex?: number;
16
16
  focusGroup?: FocusGroup;
17
17
  };
@@ -22,5 +22,5 @@ export declare class ColGroupComponent {
22
22
  private isSortable;
23
23
  private sortDescriptor;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<ColGroupComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<ColGroupComponent, "[kendoGridColGroup]", never, { "columns": "columns"; "groups": "groups"; "detailTemplate": "detailTemplate"; "sort": "sort"; }, {}, never, never, true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColGroupComponent, "[kendoGridColGroup]", never, { "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, {}, never, never, true, never>;
26
26
  }
@@ -15,5 +15,5 @@ export declare class LoadingComponent {
15
15
  get loadingText(): string;
16
16
  constructor(ctx: ContextService);
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "[kendoGridLoading]", never, { "loadingTemplate": "loadingTemplate"; }, {}, never, never, true, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "[kendoGridLoading]", never, { "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; }, {}, never, never, true, never>;
19
19
  }
@@ -24,7 +24,7 @@ export interface RowClassArgs extends RowArgs {
24
24
  * ```
25
25
  *
26
26
  */
27
- export declare type RowClassFn = (context: RowClassArgs) => string | string[] | Set<string> | {
27
+ export type RowClassFn = (context: RowClassArgs) => string | string[] | Set<string> | {
28
28
  [key: string]: any;
29
29
  };
30
30
  /**
@@ -37,7 +37,7 @@ export declare type RowClassFn = (context: RowClassArgs) => string | string[] |
37
37
  * }
38
38
  * ```
39
39
  */
40
- export declare type RowSelectedFn = (context: RowArgs) => boolean;
40
+ export type RowSelectedFn = (context: RowArgs) => boolean;
41
41
  /**
42
42
  * Represents the callback that is used to determine whether a given data row will be selectable. Used by the
43
43
  * [isRowSelectable]({% slug api_grid_gridcomponent %}#toc-isrowselectable) property.
@@ -48,7 +48,7 @@ export declare type RowSelectedFn = (context: RowArgs) => boolean;
48
48
  * }
49
49
  * ```
50
50
  */
51
- export declare type RowSelectableFn = (context: RowArgs) => boolean;
51
+ export type RowSelectableFn = (context: RowArgs) => boolean;
52
52
  /**
53
53
  * Represents the callback that is used to determine whether a given data row will be sticky.
54
54
  *
@@ -58,4 +58,4 @@ export declare type RowSelectableFn = (context: RowArgs) => boolean;
58
58
  * }
59
59
  * ```
60
60
  */
61
- export declare type RowStickyFn = (context: RowArgs) => boolean;
61
+ export type RowStickyFn = (context: RowArgs) => boolean;
@@ -22,5 +22,5 @@ export declare class GridSpacerComponent {
22
22
  */
23
23
  width: string;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<GridSpacerComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<GridSpacerComponent, "kendo-grid-spacer, kendo-pager-spacer", never, { "width": "width"; }, {}, never, never, true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<GridSpacerComponent, "kendo-grid-spacer, kendo-pager-spacer", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
26
26
  }
@@ -13,7 +13,7 @@ import * as i0 from "@angular/core";
13
13
  * myCondition(dataItem: any, index: number) { return dataItem.CategoryID % 2 === 0; }
14
14
  * ```
15
15
  */
16
- export declare type DetailTemplateShowIfFn = (dataItem: any, index: number) => boolean;
16
+ export type DetailTemplateShowIfFn = (dataItem: any, index: number) => boolean;
17
17
  /**
18
18
  * Represents the detail template of the Grid ([more information and examples]({% slug detailrowtemplate_grid %})).
19
19
  * To define the detail template, nest an `<ng-template>` tag with the `kendoGridDetailTemplate` directive inside a `<kendo-grid>` tag.
@@ -42,5 +42,5 @@ export declare class DetailTemplateDirective {
42
42
  constructor(templateRef: TemplateRef<any>);
43
43
  private _condition;
44
44
  static ɵfac: i0.ɵɵFactoryDeclaration<DetailTemplateDirective, [{ optional: true; }]>;
45
- static ɵdir: i0.ɵɵDirectiveDeclaration<DetailTemplateDirective, "[kendoGridDetailTemplate]", never, { "showIf": "kendoGridDetailTemplateShowIf"; }, {}, never, never, true, never>;
45
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DetailTemplateDirective, "[kendoGridDetailTemplate]", never, { "showIf": { "alias": "kendoGridDetailTemplateShowIf"; "required": false; }; }, {}, never, never, true, never>;
46
46
  }
@@ -54,5 +54,5 @@ export declare class ExpandDetailsDirective implements OnChanges, OnDestroy {
54
54
  private toggleState;
55
55
  private notifyChange;
56
56
  static ɵfac: i0.ɵɵFactoryDeclaration<ExpandDetailsDirective, never>;
57
- static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandDetailsDirective, "[kendoGridExpandDetailsBy]", ["kendoGridExpandDetailsBy"], { "expandDetailsKey": "kendoGridExpandDetailsBy"; "expandDetailBy": "expandDetailBy"; "expandedDetailKeys": "expandedDetailKeys"; "initiallyExpanded": "initiallyExpanded"; }, { "expandedDetailKeysChange": "expandedDetailKeysChange"; }, never, never, true, never>;
57
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandDetailsDirective, "[kendoGridExpandDetailsBy]", ["kendoGridExpandDetailsBy"], { "expandDetailsKey": { "alias": "kendoGridExpandDetailsBy"; "required": false; }; "expandDetailBy": { "alias": "expandDetailBy"; "required": false; }; "expandedDetailKeys": { "alias": "expandedDetailKeys"; "required": false; }; "initiallyExpanded": { "alias": "initiallyExpanded"; "required": false; }; }, { "expandedDetailKeysChange": "expandedDetailKeysChange"; }, never, never, true, never>;
58
58
  }
@@ -33,5 +33,5 @@ export declare class FooterComponent {
33
33
  };
34
34
  isColumnGroupComponent(column: ColumnBase): boolean;
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "[kendoGridFooter]", never, { "columns": "columns"; "groups": "groups"; "detailTemplate": "detailTemplate"; "scrollable": "scrollable"; "lockedColumnsCount": "lockedColumnsCount"; "logicalRowIndex": "logicalRowIndex"; "totalColumns": "totalColumns"; }, {}, never, never, true, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "[kendoGridFooter]", never, { "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "logicalRowIndex": { "alias": "logicalRowIndex"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; }, {}, never, never, true, never>;
37
37
  }
@@ -18,5 +18,5 @@ export declare class GridTableDirective {
18
18
  private _size;
19
19
  constructor(wrapper: ElementRef);
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<GridTableDirective, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<GridTableDirective, "[kendoGridTable]", never, { "size": "size"; }, {}, never, never, true, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<GridTableDirective, "[kendoGridTable]", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
22
22
  }
@@ -45,5 +45,5 @@ export declare class ExpandGroupDirective implements OnDestroy {
45
45
  private getItemIndex;
46
46
  private toggleState;
47
47
  static ɵfac: i0.ɵɵFactoryDeclaration<ExpandGroupDirective, never>;
48
- static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandGroupDirective, "[kendoGridExpandGroupBy]", ["kendoGridExpandGroupBy"], { "expandGroupBy": "kendoGridExpandGroupBy"; "expandedGroupKeys": "expandedGroupKeys"; "groupsInitiallyExpanded": "groupsInitiallyExpanded"; }, { "expandedGroupKeysChange": "expandedGroupKeysChange"; }, never, never, true, never>;
48
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpandGroupDirective, "[kendoGridExpandGroupBy]", ["kendoGridExpandGroupBy"], { "expandGroupBy": { "alias": "kendoGridExpandGroupBy"; "required": false; }; "expandedGroupKeys": { "alias": "expandedGroupKeys"; "required": false; }; "groupsInitiallyExpanded": { "alias": "groupsInitiallyExpanded"; "required": false; }; }, { "expandedGroupKeysChange": "expandedGroupKeysChange"; }, never, never, true, never>;
49
49
  }
@@ -139,5 +139,5 @@ export declare class HeaderComponent implements AfterViewInit, OnInit, OnChanges
139
139
  private leave;
140
140
  private drop;
141
141
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
142
- static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "[kendoGridHeader]", never, { "totalColumnLevels": "totalColumnLevels"; "columns": "columns"; "groups": "groups"; "detailTemplate": "detailTemplate"; "scrollable": "scrollable"; "filterable": "filterable"; "sort": "sort"; "filter": "filter"; "sortable": "sortable"; "groupable": "groupable"; "lockedColumnsCount": "lockedColumnsCount"; "resizable": "resizable"; "reorderable": "reorderable"; "columnMenu": "columnMenu"; "columnMenuTemplate": "columnMenuTemplate"; "totalColumnsCount": "totalColumnsCount"; "totalColumns": "totalColumns"; "tabIndex": "tabIndex"; "size": "size"; }, {}, never, never, true, never>;
142
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "[kendoGridHeader]", never, { "totalColumnLevels": { "alias": "totalColumnLevels"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "columnMenuTemplate": { "alias": "columnMenuTemplate"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
143
143
  }
@@ -156,5 +156,5 @@ export declare class ListComponent implements OnInit, OnDestroy, AfterViewInit,
156
156
  private normalizeScrollLeft;
157
157
  private elementScrollLeft;
158
158
  static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
159
- static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-grid-list", never, { "data": "data"; "groups": "groups"; "total": "total"; "rowHeight": "rowHeight"; "stickyRowHeight": "stickyRowHeight"; "detailRowHeight": "detailRowHeight"; "take": "take"; "skip": "skip"; "columns": "columns"; "detailTemplate": "detailTemplate"; "noRecordsTemplate": "noRecordsTemplate"; "selectable": "selectable"; "groupable": "groupable"; "filterable": "filterable"; "rowClass": "rowClass"; "rowSticky": "rowSticky"; "loading": "loading"; "trackBy": "trackBy"; "virtualColumns": "virtualColumns"; "isVirtual": "isVirtual"; "cellLoadingTemplate": "cellLoadingTemplate"; "loadingTemplate": "loadingTemplate"; "sort": "sort"; "size": "size"; }, { "contentScroll": "contentScroll"; "pageChange": "pageChange"; "scrollBottom": "scrollBottom"; }, never, never, true, never>;
159
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "kendo-grid-list", never, { "data": { "alias": "data"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "total": { "alias": "total"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "stickyRowHeight": { "alias": "stickyRowHeight"; "required": false; }; "detailRowHeight": { "alias": "detailRowHeight"; "required": false; }; "take": { "alias": "take"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "contentScroll": "contentScroll"; "pageChange": "pageChange"; "scrollBottom": "scrollBottom"; }, never, never, true, never>;
160
160
  }
@@ -135,5 +135,5 @@ export declare class TableBodyComponent implements OnInit, OnDestroy, OnChanges,
135
135
  private eventTarget;
136
136
  private applyStickyRowsStyling;
137
137
  static ɵfac: i0.ɵɵFactoryDeclaration<TableBodyComponent, never>;
138
- static ɵcmp: i0.ɵɵComponentDeclaration<TableBodyComponent, "[kendoGridTableBody]", never, { "columns": "columns"; "allColumns": "allColumns"; "groups": "groups"; "detailTemplate": "detailTemplate"; "noRecordsTemplate": "noRecordsTemplate"; "data": "data"; "skip": "skip"; "selectable": "selectable"; "filterable": "filterable"; "noRecordsText": "noRecordsText"; "isLocked": "isLocked"; "isLoading": "isLoading"; "isVirtual": "isVirtual"; "cellLoadingTemplate": "cellLoadingTemplate"; "skipGroupDecoration": "skipGroupDecoration"; "showGroupFooters": "showGroupFooters"; "lockedColumnsCount": "lockedColumnsCount"; "totalColumnsCount": "totalColumnsCount"; "virtualColumns": "virtualColumns"; "trackBy": "trackBy"; "rowSticky": "rowSticky"; "totalColumns": "totalColumns"; "rowClass": "rowClass"; }, {}, never, never, true, never>;
138
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableBodyComponent, "[kendoGridTableBody]", never, { "columns": { "alias": "columns"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "groups": { "alias": "groups"; "required": false; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; }; "noRecordsTemplate": { "alias": "noRecordsTemplate"; "required": false; }; "data": { "alias": "data"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "noRecordsText": { "alias": "noRecordsText"; "required": false; }; "isLocked": { "alias": "isLocked"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "isVirtual": { "alias": "isVirtual"; "required": false; }; "cellLoadingTemplate": { "alias": "cellLoadingTemplate"; "required": false; }; "skipGroupDecoration": { "alias": "skipGroupDecoration"; "required": false; }; "showGroupFooters": { "alias": "showGroupFooters"; "required": false; }; "lockedColumnsCount": { "alias": "lockedColumnsCount"; "required": false; }; "totalColumnsCount": { "alias": "totalColumnsCount"; "required": false; }; "virtualColumns": { "alias": "virtualColumns"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "rowSticky": { "alias": "rowSticky"; "required": false; }; "totalColumns": { "alias": "totalColumns"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; }, {}, never, never, true, never>;
139
139
  }
@@ -19,4 +19,4 @@
19
19
  * </kendo-grid>
20
20
  * ```
21
21
  */
22
- export declare type ToolbarPosition = 'top' | 'bottom' | 'both';
22
+ export type ToolbarPosition = 'top' | 'bottom' | 'both';
@@ -33,5 +33,5 @@ export declare class ToolbarTemplateDirective {
33
33
  get position(): 'top' | 'bottom' | 'both';
34
34
  constructor(templateRef: TemplateRef<any>);
35
35
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarTemplateDirective, [{ optional: true; }]>;
36
- static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarTemplateDirective, "[kendoGridToolbarTemplate]", never, { "position": "position"; }, {}, never, never, true, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarTemplateDirective, "[kendoGridToolbarTemplate]", never, { "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
37
37
  }
@@ -15,6 +15,7 @@ export declare class ToolbarComponent {
15
15
  private wrapper;
16
16
  context: any;
17
17
  role: string;
18
+ hostClasses: boolean;
18
19
  get sizeSmallClass(): boolean;
19
20
  get sizeMediumClass(): boolean;
20
21
  set position(value: ToolbarPosition);
@@ -31,5 +32,5 @@ export declare class ToolbarComponent {
31
32
  private navigationService;
32
33
  constructor(ctx: ContextService, wrapper: ElementRef);
33
34
  static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "kendo-grid-toolbar", never, { "position": "position"; "size": "size"; "navigable": "navigable"; }, {}, never, never, true, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "kendo-grid-toolbar", never, { "position": { "alias": "position"; "required": false; }; "size": { "alias": "size"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; }, {}, never, never, true, never>;
35
36
  }
@@ -45,4 +45,4 @@ export interface DragRow {
45
45
  * * `after`&mdash;The row will be rendered as next sibling of the target row.
46
46
  * * `forbidden`&mdash;Dropping the row is not allowed.
47
47
  */
48
- export declare type DropPosition = 'before' | 'after' | 'forbidden';
48
+ export type DropPosition = 'before' | 'after' | 'forbidden';
@@ -4,14 +4,14 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'GridModule', package: 'grid', peerDependencies: {
6
6
  // peer deps of the dropdowns
7
- '@progress/kendo-angular-treeview': '17.0.0-develop.3',
8
- '@progress/kendo-angular-navigation': '17.0.0-develop.3',
7
+ '@progress/kendo-angular-treeview': '17.0.0-develop.30',
8
+ '@progress/kendo-angular-navigation': '17.0.0-develop.30',
9
9
  // peer dependency of kendo-angular-inputs
10
- '@progress/kendo-angular-dialog': '17.0.0-develop.3',
10
+ '@progress/kendo-angular-dialog': '17.0.0-develop.30',
11
11
  // peer dependency of kendo-angular-icons
12
12
  '@progress/kendo-svg-icons': '^3.0.0',
13
13
  // peer dependency of kendo-angular-layout
14
- '@progress/kendo-angular-progressbar': '17.0.0-develop.3'
14
+ '@progress/kendo-angular-progressbar': '17.0.0-develop.30'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  /**
9
9
  * @hidden
10
10
  */
11
- export declare type ScrollSyncEvent = {
11
+ export type ScrollSyncEvent = {
12
12
  scrollLeft: number;
13
13
  sourceType: string;
14
14
  };
@@ -27,7 +27,7 @@ export declare class ScrollBottomAction {
27
27
  /**
28
28
  * @hidden
29
29
  */
30
- export declare type Action = ScrollAction | ScrollBottomAction | PageAction;
30
+ export type Action = ScrollAction | ScrollBottomAction | PageAction;
31
31
  /**
32
32
  * @hidden
33
33
  */
@@ -15,4 +15,4 @@
15
15
  * <kendo-grid scrollable="scrollable"></kendo-grid>
16
16
  * ```
17
17
  */
18
- export declare type ScrollMode = 'none' | 'scrollable' | 'virtual';
18
+ export type ScrollMode = 'none' | 'scrollable' | 'virtual';
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
15
15
  /**
16
16
  * @hidden
17
17
  */
18
- declare type CellSelectionServiceSettings = {
18
+ type CellSelectionServiceSettings = {
19
19
  cellSelected: CellSelectedFn;
20
20
  selectable: boolean | SelectableSettings;
21
21
  isRowSelectable: RowSelectableFn;
@@ -56,5 +56,5 @@ export declare class SelectAllCheckboxDirective implements AfterContentChecked,
56
56
  */
57
57
  private stateToBool;
58
58
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectAllCheckboxDirective, never>;
59
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectAllCheckboxDirective, "[kendoGridSelectAllCheckbox]", never, { "state": "state"; }, { "selectAllChange": "selectAllChange"; }, never, never, true, never>;
59
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectAllCheckboxDirective, "[kendoGridSelectAllCheckbox]", never, { "state": { "alias": "state"; "required": false; }; }, { "selectAllChange": "selectAllChange"; }, never, never, true, never>;
60
60
  }
@@ -46,5 +46,5 @@ export declare class SelectionCheckboxDirective implements AfterContentChecked,
46
46
  private onKeyDown;
47
47
  private setCheckedState;
48
48
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectionCheckboxDirective, never>;
49
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionCheckboxDirective, "[kendoGridSelectionCheckbox]", never, { "itemIndex": "kendoGridSelectionCheckbox"; }, {}, never, never, true, never>;
49
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectionCheckboxDirective, "[kendoGridSelectionCheckbox]", never, { "itemIndex": { "alias": "kendoGridSelectionCheckbox"; "required": false; }; }, {}, never, never, true, never>;
50
50
  }
@@ -80,5 +80,5 @@ export declare class Selection {
80
80
  private notifyChange;
81
81
  private setState;
82
82
  static ɵfac: i0.ɵɵFactoryDeclaration<Selection, never>;
83
- static ɵdir: i0.ɵɵDirectiveDeclaration<Selection, "kendo-grid-selection-base", never, { "selectedKeys": "selectedKeys"; "rangeSelectionStartRow": "rangeSelectionStartRow"; "rangeSelectionStartColumnIndex": "rangeSelectionStartColumnIndex"; "selectionKey": "kendoGridSelectBy"; "columnKey": "columnKey"; }, { "selectedKeysChange": "selectedKeysChange"; }, never, never, false, never>;
83
+ static ɵdir: i0.ɵɵDirectiveDeclaration<Selection, "kendo-grid-selection-base", never, { "selectedKeys": { "alias": "selectedKeys"; "required": false; }; "rangeSelectionStartRow": { "alias": "rangeSelectionStartRow"; "required": false; }; "rangeSelectionStartColumnIndex": { "alias": "rangeSelectionStartColumnIndex"; "required": false; }; "selectionKey": { "alias": "kendoGridSelectBy"; "required": false; }; "columnKey": { "alias": "columnKey"; "required": false; }; }, { "selectedKeysChange": "selectedKeysChange"; }, never, never, false, never>;
84
84
  }
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
15
15
  /**
16
16
  * @hidden
17
17
  */
18
- declare type SelectionServiceSettings = {
18
+ type SelectionServiceSettings = {
19
19
  rowSelected: RowSelectedFn;
20
20
  isRowSelectable: RowSelectableFn;
21
21
  selectable: boolean | SelectableSettings;
@@ -9,7 +9,7 @@ import { RowArgs } from './../rendering/common/row-args';
9
9
  * Represents the callback that is used by the
10
10
  * [cellSelected]({% slug api_grid_gridcomponent %}#toc-cellselected) property ([see example](slug:grid_selection_custom#toc-setting-the-selected-cells)).
11
11
  */
12
- export declare type CellSelectedFn = (row: RowArgs, column: ColumnComponent, colIndex: number) => {
12
+ export type CellSelectedFn = (row: RowArgs, column: ColumnComponent, colIndex: number) => {
13
13
  selected: boolean;
14
14
  item: CellSelectionItem;
15
15
  };
@@ -124,7 +124,7 @@ export interface SelectableSettings {
124
124
  * <kendo-grid [selectable]="{mode: 'multiple'}"></kendo-grid>
125
125
  * ```
126
126
  */
127
- export declare type SelectableMode = "single" | "multiple";
127
+ export type SelectableMode = "single" | "multiple";
128
128
  /**
129
129
  * Represents the possible states of the select-all checkbox.
130
130
  *
@@ -141,7 +141,7 @@ export declare type SelectableMode = "single" | "multiple";
141
141
  * <kendo-grid-column>
142
142
  * ```
143
143
  */
144
- export declare type SelectAllCheckboxState = "checked" | "unchecked" | "indeterminate";
144
+ export type SelectAllCheckboxState = "checked" | "unchecked" | "indeterminate";
145
145
  /**
146
146
  * The Grid `cell` selection items type.
147
147
  */
@@ -160,4 +160,4 @@ export interface CellSelectionItem {
160
160
  *
161
161
  * @hidden
162
162
  */
163
- export declare type GridSelectionItem = number | RowArgs | CellSelectionItem;
163
+ export type GridSelectionItem = number | RowArgs | CellSelectionItem;
package/utils.d.ts CHANGED
@@ -53,7 +53,7 @@ export declare const not: (fn: (...x: any[]) => boolean) => (...args: any[]) =>
53
53
  * @hidden
54
54
  * Represents a condition&mdash;a unary function which takes an argument and returns a Boolean.
55
55
  */
56
- export declare type Condition<T> = (x: T) => boolean;
56
+ export type Condition<T> = (x: T) => boolean;
57
57
  /**
58
58
  * @hidden
59
59
  */