@progress/kendo-angular-grid 17.0.0-develop.4 → 17.0.0-develop.40

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 (463) 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 +5 -4
  5. package/column-menu/column-chooser.component.d.ts +1 -1
  6. package/column-menu/column-list.component.d.ts +2 -2
  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/{pager → common}/pager-settings.d.ts +15 -2
  29. package/common/remove-confirmation.d.ts +1 -1
  30. package/common/size-options.d.ts +1 -1
  31. package/data/data.iterators.d.ts +1 -1
  32. package/data/grid-item.interface.d.ts +1 -1
  33. package/databinding.directive.d.ts +1 -1
  34. package/directives.d.ts +8 -21
  35. package/dragdrop/context-types.d.ts +1 -1
  36. package/dragdrop/draggable-column.directive.d.ts +1 -1
  37. package/dragdrop/drop-target.directive.d.ts +1 -1
  38. package/editing/add-command-tool.directive.d.ts +39 -0
  39. package/editing/edit.service.d.ts +3 -3
  40. package/editing-directives/editing-directive-base.d.ts +1 -1
  41. package/editing-directives/in-cell-editing.directive.d.ts +1 -1
  42. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  43. package/editing-directives/template-editing.directive.d.ts +1 -1
  44. package/{esm2020 → esm2022}/aggregates/selection-aggregate.service.mjs +20 -17
  45. package/{esm2020 → esm2022}/aggregates/status-bar-template.directive.mjs +4 -3
  46. package/{esm2020 → esm2022}/aggregates/status-bar.component.mjs +10 -8
  47. package/esm2022/column-menu/column-chooser-item-checked.directive.mjs +45 -0
  48. package/{esm2020 → esm2022}/column-menu/column-chooser.component.mjs +36 -24
  49. package/{esm2020 → esm2022}/column-menu/column-list-kb-nav.service.mjs +6 -4
  50. package/{esm2020 → esm2022}/column-menu/column-list.component.mjs +108 -96
  51. package/{esm2020 → esm2022}/column-menu/column-locked-change-event.mjs +4 -0
  52. package/{esm2020 → esm2022}/column-menu/column-menu-autosize-all.component.mjs +6 -5
  53. package/{esm2020 → esm2022}/column-menu/column-menu-autosize.component.mjs +10 -5
  54. package/{esm2020 → esm2022}/column-menu/column-menu-chooser.component.mjs +33 -29
  55. package/{esm2020 → esm2022}/column-menu/column-menu-container.component.mjs +8 -5
  56. package/{esm2020 → esm2022}/column-menu/column-menu-filter.component.mjs +28 -26
  57. package/{esm2020 → esm2022}/column-menu/column-menu-item-base.mjs +9 -6
  58. package/{esm2020 → esm2022}/column-menu/column-menu-item-content-template.directive.mjs +4 -3
  59. package/{esm2020 → esm2022}/column-menu/column-menu-item.component.mjs +73 -42
  60. package/{esm2020 → esm2022}/column-menu/column-menu-item.directive.mjs +38 -28
  61. package/{esm2020 → esm2022}/column-menu/column-menu-lock.component.mjs +9 -6
  62. package/{esm2020 → esm2022}/column-menu/column-menu-position.component.mjs +38 -28
  63. package/{esm2020 → esm2022}/column-menu/column-menu-sort.component.mjs +9 -6
  64. package/{esm2020 → esm2022}/column-menu/column-menu-stick.component.mjs +9 -6
  65. package/{esm2020 → esm2022}/column-menu/column-menu-template.directive.mjs +4 -3
  66. package/{esm2020 → esm2022}/column-menu/column-menu.component.mjs +97 -63
  67. package/{esm2020 → esm2022}/column-menu/column-menu.service.mjs +34 -10
  68. package/{esm2020 → esm2022}/column-menu/column-sticky-change-event.mjs +4 -0
  69. package/{esm2020 → esm2022}/column-menu/column-visibility-change-event.mjs +4 -0
  70. package/{esm2020 → esm2022}/column-resizing/column-handle.directive.mjs +23 -15
  71. package/{esm2020 → esm2022}/column-resizing/column-resizing.service.mjs +8 -8
  72. package/{esm2020 → esm2022}/column-resizing/table.directive.mjs +17 -8
  73. package/{esm2020 → esm2022}/columns/checkbox-column.component.mjs +24 -16
  74. package/{esm2020 → esm2022}/columns/column-base.mjs +188 -84
  75. package/{esm2020 → esm2022}/columns/column-group.component.mjs +29 -20
  76. package/{esm2020 → esm2022}/columns/column-list.mjs +4 -3
  77. package/{esm2020 → esm2022}/columns/column.component.mjs +62 -46
  78. package/{esm2020 → esm2022}/columns/columns-container.mjs +16 -15
  79. package/{esm2020 → esm2022}/columns/command-column.component.mjs +10 -8
  80. package/{esm2020 → esm2022}/columns/reorder-column.component.mjs +23 -12
  81. package/{esm2020 → esm2022}/columns/span-column.component.mjs +49 -29
  82. package/esm2022/common/clipboard.directive.mjs +190 -0
  83. package/{esm2020 → esm2022}/common/clipboard.service.mjs +12 -9
  84. package/{esm2020 → esm2022}/common/column-info.service.mjs +10 -10
  85. package/esm2022/common/dom-events.service.mjs +26 -0
  86. package/{esm2020 → esm2022}/common/error-messages.mjs +4 -1
  87. package/{esm2020 → esm2022}/common/event-emitter.mjs +1 -0
  88. package/{esm2020 → esm2022}/common/id.service.mjs +4 -3
  89. package/{esm2020 → esm2022}/common/preventable-event.mjs +1 -3
  90. package/{esm2020 → esm2022}/common/provider.service.mjs +10 -3
  91. package/{esm2020 → esm2022}/common/single-popup.service.mjs +21 -10
  92. package/{esm2020 → esm2022}/common/sort.service.mjs +1 -3
  93. package/{esm2020 → esm2022}/data/change-notification.service.mjs +6 -4
  94. package/{esm2020 → esm2022}/data/data.collection.mjs +5 -0
  95. package/{esm2020 → esm2022}/data/data.iterators.mjs +16 -1
  96. package/{esm2020 → esm2022}/databinding.directive.mjs +24 -16
  97. package/{esm2020 → esm2022}/directives.mjs +10 -30
  98. package/{esm2020 → esm2022}/dragdrop/column-reorder-event.mjs +14 -0
  99. package/{esm2020 → esm2022}/dragdrop/column-reorder.service.mjs +4 -6
  100. package/{esm2020 → esm2022}/dragdrop/drag-and-drop.service.mjs +6 -8
  101. package/{esm2020 → esm2022}/dragdrop/drag-hint.service.mjs +7 -4
  102. package/{esm2020 → esm2022}/dragdrop/draggable-column.directive.mjs +22 -13
  103. package/{esm2020 → esm2022}/dragdrop/drop-cue.service.mjs +4 -3
  104. package/{esm2020 → esm2022}/dragdrop/drop-target.directive.mjs +10 -8
  105. package/esm2022/editing/add-command-tool.directive.mjs +64 -0
  106. package/{esm2020 → esm2022}/editing/add-command.directive.mjs +9 -8
  107. package/{esm2020 → esm2022}/editing/cancel-command.directive.mjs +17 -13
  108. package/{esm2020 → esm2022}/editing/cell-close-event.mjs +21 -4
  109. package/{esm2020 → esm2022}/editing/edit-command.directive.mjs +17 -13
  110. package/{esm2020 → esm2022}/editing/edit-template.directive.mjs +4 -3
  111. package/{esm2020 → esm2022}/editing/edit.service.mjs +13 -8
  112. package/{esm2020 → esm2022}/editing/local-data-changes.service.mjs +5 -6
  113. package/{esm2020 → esm2022}/editing/remove-command.directive.mjs +17 -13
  114. package/{esm2020 → esm2022}/editing/save-command.directive.mjs +17 -13
  115. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +17 -9
  116. package/{esm2020 → esm2022}/editing-directives/in-cell-editing.directive.mjs +10 -3
  117. package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +2 -0
  118. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +9 -3
  119. package/{esm2020 → esm2022}/editing-directives/row-editing-directive-base.mjs +4 -3
  120. package/{esm2020 → esm2022}/editing-directives/template-editing.directive.mjs +11 -3
  121. package/esm2022/excel/excel-command-tool.directive.mjs +66 -0
  122. package/{esm2020 → esm2022}/excel/excel-command.directive.mjs +11 -10
  123. package/{esm2020 → esm2022}/excel/excel-export-event.mjs +1 -0
  124. package/{esm2020 → esm2022}/excel/excel.component.mjs +66 -12
  125. package/{esm2020 → esm2022}/excel/excel.module.mjs +9 -7
  126. package/{esm2020 → esm2022}/excel/excel.service.mjs +5 -7
  127. package/{esm2020 → esm2022}/filtering/base-filter-cell.component.mjs +22 -11
  128. package/{esm2020 → esm2022}/filtering/boolean-filter.component.mjs +24 -32
  129. package/{esm2020 → esm2022}/filtering/cell/autocomplete-filter-cell.component.mjs +18 -15
  130. package/{esm2020 → esm2022}/filtering/cell/boolean-filter-cell.component.mjs +10 -8
  131. package/{esm2020 → esm2022}/filtering/cell/date-filter-cell.component.mjs +25 -23
  132. package/{esm2020 → esm2022}/filtering/cell/filter-cell-host.directive.mjs +3 -3
  133. package/{esm2020 → esm2022}/filtering/cell/filter-cell-operators.component.mjs +60 -39
  134. package/{esm2020 → esm2022}/filtering/cell/filter-cell-template.directive.mjs +4 -3
  135. package/{esm2020 → esm2022}/filtering/cell/filter-cell-wrapper.component.mjs +8 -8
  136. package/{esm2020 → esm2022}/filtering/cell/filter-cell.component.mjs +9 -9
  137. package/{esm2020 → esm2022}/filtering/cell/numeric-filter-cell.component.mjs +25 -18
  138. package/{esm2020 → esm2022}/filtering/cell/string-filter-cell.component.mjs +27 -19
  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 +17 -15
  144. package/{esm2020 → esm2022}/filtering/filter.service.mjs +14 -10
  145. package/{esm2020 → esm2022}/filtering/menu/boolean-filter-menu.component.mjs +33 -23
  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-radio-button.directive.mjs +7 -3
  155. package/{esm2020 → esm2022}/filtering/menu/menu-tabbing.service.mjs +9 -8
  156. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu-input.component.mjs +51 -15
  157. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu.component.mjs +42 -37
  158. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu-input.component.mjs +25 -16
  159. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu.component.mjs +36 -21
  160. package/{esm2020 → esm2022}/filtering/numeric-filter.component.mjs +51 -28
  161. package/{esm2020 → esm2022}/filtering/operators/after-eq-filter-operator.component.mjs +8 -8
  162. package/{esm2020 → esm2022}/filtering/operators/after-filter-operator.component.mjs +8 -8
  163. package/{esm2020 → esm2022}/filtering/operators/before-eq-filter-operator.component.mjs +8 -8
  164. package/{esm2020 → esm2022}/filtering/operators/before-filter-operator.component.mjs +8 -8
  165. package/{esm2020 → esm2022}/filtering/operators/contains-filter-operator.component.mjs +8 -8
  166. package/{esm2020 → esm2022}/filtering/operators/ends-with-filter-operator.component.mjs +8 -8
  167. package/{esm2020 → esm2022}/filtering/operators/eq-filter-operator.component.mjs +8 -8
  168. package/{esm2020 → esm2022}/filtering/operators/filter-operator.base.mjs +15 -10
  169. package/{esm2020 → esm2022}/filtering/operators/gt-filter-operator.component.mjs +8 -8
  170. package/{esm2020 → esm2022}/filtering/operators/gte-filter-operator.component.mjs +8 -8
  171. package/{esm2020 → esm2022}/filtering/operators/is-empty-filter-operator.component.mjs +8 -8
  172. package/{esm2020 → esm2022}/filtering/operators/is-not-empty-filter-operator.component.mjs +8 -8
  173. package/{esm2020 → esm2022}/filtering/operators/is-not-null-filter-operator.component.mjs +8 -8
  174. package/{esm2020 → esm2022}/filtering/operators/isnull-filter-operator.component.mjs +8 -8
  175. package/{esm2020 → esm2022}/filtering/operators/lt-filter-operator.component.mjs +8 -8
  176. package/{esm2020 → esm2022}/filtering/operators/lte-filter-operator.component.mjs +8 -8
  177. package/{esm2020 → esm2022}/filtering/operators/neq-filter-operator.component.mjs +8 -8
  178. package/{esm2020 → esm2022}/filtering/operators/not-contains-filter-operator.component.mjs +8 -8
  179. package/{esm2020 → esm2022}/filtering/operators/starts-with-filter-operator.component.mjs +8 -8
  180. package/{esm2020 → esm2022}/filtering/string-filter.component.mjs +20 -15
  181. package/{esm2020 → esm2022}/grid.component.mjs +650 -400
  182. package/esm2022/grid.module.mjs +216 -0
  183. package/{esm2020 → esm2022}/grouping/group-footer-template.directive.mjs +4 -3
  184. package/{esm2020 → esm2022}/grouping/group-header-column-template.directive.mjs +4 -3
  185. package/{esm2020 → esm2022}/grouping/group-header-template.directive.mjs +4 -3
  186. package/{esm2020 → esm2022}/grouping/group-header.component.mjs +25 -16
  187. package/{esm2020 → esm2022}/grouping/group-info.service.mjs +1 -3
  188. package/{esm2020 → esm2022}/grouping/group-panel.component.mjs +71 -53
  189. package/{esm2020 → esm2022}/grouping/group-scroll-binding.directive.mjs +11 -9
  190. package/{esm2020 → esm2022}/grouping/groups.service.mjs +6 -7
  191. package/{esm2020 → esm2022}/index.mjs +6 -24
  192. package/{esm2020 → esm2022}/layout/browser-support.service.mjs +7 -4
  193. package/{esm2020 → esm2022}/layout/resizable.directive.mjs +16 -10
  194. package/{esm2020 → esm2022}/layout/resize.service.mjs +6 -8
  195. package/{esm2020 → esm2022}/layout/responsive.service.mjs +7 -9
  196. package/{esm2020 → esm2022}/layout/sizing-options.service.mjs +4 -6
  197. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  198. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  199. package/esm2022/localization/messages.mjs +591 -0
  200. package/{esm2020 → esm2022}/navigation/default-focusable-element.mjs +10 -6
  201. package/{esm2020 → esm2022}/navigation/focus-group.mjs +10 -9
  202. package/{esm2020 → esm2022}/navigation/focus-root.mjs +5 -4
  203. package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +23 -17
  204. package/{esm2020 → esm2022}/navigation/grid-focusable-element.mjs +1 -0
  205. package/{esm2020 → esm2022}/navigation/item-map.mjs +2 -4
  206. package/{esm2020 → esm2022}/navigation/logical-cell.directive.mjs +38 -23
  207. package/{esm2020 → esm2022}/navigation/logical-row.directive.mjs +18 -12
  208. package/{esm2020 → esm2022}/navigation/navigation-cursor.mjs +10 -8
  209. package/{esm2020 → esm2022}/navigation/navigation-metadata.mjs +12 -4
  210. package/{esm2020 → esm2022}/navigation/navigation-model.mjs +1 -3
  211. package/{esm2020 → esm2022}/navigation/navigation.service.mjs +49 -29
  212. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  213. package/{esm2020 → esm2022}/pdf/grid-query.mjs +4 -0
  214. package/esm2022/pdf/pdf-command-tool.directive.mjs +66 -0
  215. package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +10 -9
  216. package/{esm2020 → esm2022}/pdf/pdf-margin.component.mjs +3 -3
  217. package/{esm2020 → esm2022}/pdf/pdf-template.directive.mjs +3 -3
  218. package/{esm2020 → esm2022}/pdf/pdf.component.mjs +39 -12
  219. package/{esm2020 → esm2022}/pdf/pdf.module.mjs +5 -4
  220. package/{esm2020 → esm2022}/pdf/pdf.service.mjs +8 -9
  221. package/{esm2020 → esm2022}/rendering/cell-loading.template.directive.mjs +4 -3
  222. package/{esm2020 → esm2022}/rendering/cell-template.directive.mjs +4 -3
  223. package/{esm2020 → esm2022}/rendering/cell.component.mjs +64 -75
  224. package/{esm2020 → esm2022}/rendering/common/col-group.component.mjs +8 -9
  225. package/{esm2020 → esm2022}/rendering/common/field-accessor.pipe.mjs +4 -3
  226. package/{esm2020 → esm2022}/rendering/common/loading.component.mjs +10 -8
  227. package/{esm2020 → esm2022}/rendering/common/spacer.component.mjs +12 -7
  228. package/{esm2020 → esm2022}/rendering/details/detail-collapse-event.mjs +8 -0
  229. package/{esm2020 → esm2022}/rendering/details/detail-expand-event.mjs +8 -0
  230. package/{esm2020 → esm2022}/rendering/details/detail-template.directive.mjs +8 -7
  231. package/{esm2020 → esm2022}/rendering/details/details.service.mjs +6 -7
  232. package/{esm2020 → esm2022}/rendering/details-expand.directive.mjs +28 -25
  233. package/{esm2020 → esm2022}/rendering/footer/footer-template.directive.mjs +4 -3
  234. package/{esm2020 → esm2022}/rendering/footer/footer.component.mjs +19 -15
  235. package/{esm2020 → esm2022}/rendering/grid-table.directive.mjs +9 -8
  236. package/{esm2020 → esm2022}/rendering/groups-expand.directive.mjs +21 -18
  237. package/{esm2020 → esm2022}/rendering/header/header-template.directive.mjs +4 -3
  238. package/{esm2020 → esm2022}/rendering/header/header.component.mjs +78 -55
  239. package/{esm2020 → esm2022}/rendering/list.component.mjs +99 -52
  240. package/{esm2020 → esm2022}/rendering/loading-template.directive.mjs +4 -3
  241. package/{esm2020 → esm2022}/rendering/no-records-template.directive.mjs +4 -3
  242. package/{esm2020 → esm2022}/rendering/table-body.component.mjs +60 -29
  243. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-focusable.directive.mjs +9 -7
  244. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-navigation.service.mjs +9 -8
  245. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-template.directive.mjs +8 -7
  246. package/{esm2020 → esm2022}/rendering/toolbar/toolbar.component.mjs +26 -12
  247. package/{esm2020 → esm2022}/row-reordering/row-reorder.service.mjs +14 -10
  248. package/{esm2020 → esm2022}/scrolling/row-height.service.mjs +5 -2
  249. package/{esm2020 → esm2022}/scrolling/scroll-request.service.mjs +4 -6
  250. package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +10 -8
  251. package/{esm2020 → esm2022}/scrolling/scroller.service.mjs +12 -1
  252. package/{esm2020 → esm2022}/scrolling/suspend.service.mjs +4 -6
  253. package/{esm2020 → esm2022}/selection/cell-selection.service.mjs +31 -20
  254. package/{esm2020 → esm2022}/selection/marquee.directive.mjs +16 -4
  255. package/{esm2020 → esm2022}/selection/pair-set.mjs +16 -16
  256. package/{esm2020 → esm2022}/selection/selectall-checkbox.directive.mjs +40 -32
  257. package/{esm2020 → esm2022}/selection/selection-checkbox.directive.mjs +30 -14
  258. package/{esm2020 → esm2022}/selection/selection-default.mjs +46 -25
  259. package/{esm2020 → esm2022}/selection/selection.directive.mjs +4 -3
  260. package/{esm2020 → esm2022}/selection/selection.service.mjs +31 -18
  261. package/excel/excel-command-tool.directive.d.ts +41 -0
  262. package/excel/excel-command.directive.d.ts +1 -1
  263. package/excel/excel.component.d.ts +1 -1
  264. package/excel/excel.module.d.ts +3 -2
  265. package/{fesm2020 → fesm2022}/progress-kendo-angular-grid.mjs +5326 -5034
  266. package/filtering/base-filter-cell.component.d.ts +5 -1
  267. package/filtering/boolean-filter.component.d.ts +2 -17
  268. package/filtering/cell/autocomplete-filter-cell.component.d.ts +2 -7
  269. package/filtering/cell/date-filter-cell.component.d.ts +1 -1
  270. package/filtering/cell/filter-cell-operators.component.d.ts +1 -1
  271. package/filtering/cell/filter-cell-wrapper.component.d.ts +1 -1
  272. package/filtering/cell/filter-cell.component.d.ts +1 -1
  273. package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
  274. package/filtering/cell/string-filter-cell.component.d.ts +1 -1
  275. package/filtering/date-filter.component.d.ts +2 -11
  276. package/filtering/filter-host.directive.d.ts +2 -2
  277. package/filtering/filter-input-wrapper.component.d.ts +1 -2
  278. package/filtering/filter-input.directive.d.ts +1 -1
  279. package/filtering/filter-row.component.d.ts +1 -1
  280. package/filtering/filterable.d.ts +1 -1
  281. package/filtering/menu/boolean-filter-menu.component.d.ts +3 -2
  282. package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
  283. package/filtering/menu/date-filter-menu.component.d.ts +1 -7
  284. package/filtering/menu/filter-menu-container.component.d.ts +1 -1
  285. package/filtering/menu/filter-menu-dropdownlist.directive.d.ts +1 -1
  286. package/filtering/menu/filter-menu-host.directive.d.ts +1 -1
  287. package/filtering/menu/filter-menu-input-wrapper.component.d.ts +1 -1
  288. package/filtering/menu/filter-menu.component.d.ts +1 -1
  289. package/filtering/menu/filter-radio-button.directive.d.ts +1 -1
  290. package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
  291. package/filtering/menu/numeric-filter-menu.component.d.ts +1 -7
  292. package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
  293. package/filtering/menu/string-filter-menu.component.d.ts +1 -7
  294. package/filtering/numeric-filter.component.d.ts +2 -11
  295. package/filtering/operators/filter-operator.base.d.ts +1 -1
  296. package/filtering/string-filter.component.d.ts +2 -11
  297. package/grid.component.d.ts +5 -6
  298. package/grid.module.d.ts +94 -101
  299. package/grouping/group-header.component.d.ts +1 -1
  300. package/grouping/group-panel.component.d.ts +1 -1
  301. package/grouping/group-scroll-binding.directive.d.ts +1 -1
  302. package/index.d.ts +7 -27
  303. package/layout/resizable.directive.d.ts +1 -1
  304. package/localization/messages.d.ts +10 -6
  305. package/navigation/focusable.directive.d.ts +1 -1
  306. package/navigation/logical-cell.directive.d.ts +1 -1
  307. package/navigation/logical-row.directive.d.ts +1 -1
  308. package/navigation/navigable-settings.d.ts +2 -2
  309. package/navigation/navigation.service.d.ts +1 -1
  310. package/package.json +29 -33
  311. package/pdf/pdf-command-tool.directive.d.ts +41 -0
  312. package/pdf/pdf.component.d.ts +1 -1
  313. package/pdf/pdf.module.d.ts +2 -1
  314. package/rendering/cell.component.d.ts +1 -1
  315. package/rendering/common/cell-context.d.ts +1 -1
  316. package/rendering/common/col-group.component.d.ts +1 -1
  317. package/rendering/common/loading.component.d.ts +1 -1
  318. package/rendering/common/row-class.d.ts +4 -4
  319. package/rendering/common/spacer.component.d.ts +1 -1
  320. package/rendering/details/detail-template.directive.d.ts +2 -2
  321. package/rendering/details-expand.directive.d.ts +1 -1
  322. package/rendering/footer/footer.component.d.ts +1 -1
  323. package/rendering/grid-table.directive.d.ts +1 -1
  324. package/rendering/groups-expand.directive.d.ts +1 -1
  325. package/rendering/header/header.component.d.ts +1 -1
  326. package/rendering/list.component.d.ts +1 -1
  327. package/rendering/table-body.component.d.ts +1 -1
  328. package/rendering/toolbar/toolbar-position.d.ts +1 -1
  329. package/rendering/toolbar/toolbar-template.directive.d.ts +1 -1
  330. package/rendering/toolbar/toolbar.component.d.ts +2 -1
  331. package/row-reordering/types.d.ts +1 -1
  332. package/schematics/ngAdd/index.js +4 -4
  333. package/scrolling/scroll-sync.service.d.ts +1 -1
  334. package/scrolling/scroller.service.d.ts +1 -1
  335. package/scrolling/scrollmode.d.ts +1 -1
  336. package/selection/cell-selection.service.d.ts +1 -1
  337. package/selection/selectall-checkbox.directive.d.ts +6 -7
  338. package/selection/selection-checkbox.directive.d.ts +5 -4
  339. package/selection/selection-default.d.ts +1 -1
  340. package/selection/selection.service.d.ts +1 -1
  341. package/selection/types.d.ts +4 -4
  342. package/utils.d.ts +1 -1
  343. package/esm2020/column-menu/column-chooser-item-checked.directive.mjs +0 -39
  344. package/esm2020/common/clipboard.directive.mjs +0 -186
  345. package/esm2020/common/dom-events.service.mjs +0 -28
  346. package/esm2020/filtering/cell/row-filtering.module.mjs +0 -112
  347. package/esm2020/filtering/menu/filter-menu.module.mjs +0 -116
  348. package/esm2020/filtering/shared-filtering.module.mjs +0 -92
  349. package/esm2020/grid.module.mjs +0 -219
  350. package/esm2020/grouping/group.module.mjs +0 -53
  351. package/esm2020/localization/messages.mjs +0 -187
  352. package/esm2020/pager/pager-context.service.mjs +0 -41
  353. package/esm2020/pager/pager-dropdown.directive.mjs +0 -39
  354. package/esm2020/pager/pager-element.component.mjs +0 -109
  355. package/esm2020/pager/pager-info.component.mjs +0 -76
  356. package/esm2020/pager/pager-input.component.mjs +0 -142
  357. package/esm2020/pager/pager-input.directive.mjs +0 -30
  358. package/esm2020/pager/pager-next-buttons.component.mjs +0 -114
  359. package/esm2020/pager/pager-numeric-buttons.component.mjs +0 -257
  360. package/esm2020/pager/pager-page-sizes.component.mjs +0 -145
  361. package/esm2020/pager/pager-prev-buttons.component.mjs +0 -116
  362. package/esm2020/pager/pager-template.directive.mjs +0 -48
  363. package/esm2020/pager/pager.component.mjs +0 -457
  364. package/esm2020/pager/pager.module.mjs +0 -51
  365. package/esm2020/pager/pagesize-item.interface.mjs +0 -5
  366. package/esm2020/rendering/body.module.mjs +0 -88
  367. package/esm2020/rendering/footer/footer.module.mjs +0 -41
  368. package/esm2020/rendering/header/header.module.mjs +0 -152
  369. package/esm2020/shared.module.mjs +0 -41
  370. package/fesm2015/progress-kendo-angular-grid.mjs +0 -28466
  371. package/filtering/cell/row-filtering.module.d.ts +0 -59
  372. package/filtering/menu/filter-menu.module.d.ts +0 -63
  373. package/filtering/shared-filtering.module.d.ts +0 -49
  374. package/grouping/group.module.d.ts +0 -38
  375. package/pager/pager-context.service.d.ts +0 -30
  376. package/pager/pager-dropdown.directive.d.ts +0 -18
  377. package/pager/pager-element.component.d.ts +0 -79
  378. package/pager/pager-info.component.d.ts +0 -43
  379. package/pager/pager-input.component.d.ts +0 -45
  380. package/pager/pager-input.directive.d.ts +0 -18
  381. package/pager/pager-next-buttons.component.d.ts +0 -28
  382. package/pager/pager-numeric-buttons.component.d.ts +0 -52
  383. package/pager/pager-page-sizes.component.d.ts +0 -49
  384. package/pager/pager-prev-buttons.component.d.ts +0 -28
  385. package/pager/pager-template.directive.d.ts +0 -38
  386. package/pager/pager.component.d.ts +0 -80
  387. package/pager/pager.module.d.ts +0 -37
  388. package/pager/pagesize-item.interface.d.ts +0 -14
  389. package/rendering/body.module.d.ts +0 -50
  390. package/rendering/footer/footer.module.d.ts +0 -30
  391. package/rendering/header/header.module.d.ts +0 -101
  392. package/shared.module.d.ts +0 -29
  393. /package/{esm2020 → esm2022}/aggregates/aggregate-types.mjs +0 -0
  394. /package/{esm2020 → esm2022}/column-menu/column-menu-expandable-item.interface.mjs +0 -0
  395. /package/{esm2020 → esm2022}/column-menu/column-menu-settings.interface.mjs +0 -0
  396. /package/{esm2020 → esm2022}/column-menu/utils.mjs +0 -0
  397. /package/{esm2020 → esm2022}/column-resizing/column-resize.interface.mjs +0 -0
  398. /package/{esm2020 → esm2022}/columns/column-common.mjs +0 -0
  399. /package/{esm2020 → esm2022}/columns/sort-settings.mjs +0 -0
  400. /package/{esm2020 → esm2022}/common/cell-click-event-args.interface.mjs +0 -0
  401. /package/{esm2020 → esm2022}/common/clipboard-types.mjs +0 -0
  402. /package/{esm2020 → esm2022}/common/create-form-group.mjs +0 -0
  403. /package/{esm2020 → esm2022}/common/default-track-by.mjs +0 -0
  404. /package/{esm2020 → esm2022}/common/fetch-data-callback.mjs +0 -0
  405. /package/{esm2020 → esm2022}/common/filter-descriptor-differ.mjs +0 -0
  406. /package/{esm2020 → esm2022}/common/filter-operator.interface.mjs +0 -0
  407. /package/{esm2020/pager → esm2022/common}/pager-settings.mjs +0 -0
  408. /package/{esm2020 → esm2022}/common/remove-confirmation.mjs +0 -0
  409. /package/{esm2020 → esm2022}/common/size-options.mjs +0 -0
  410. /package/{esm2020 → esm2022}/constants.mjs +0 -0
  411. /package/{esm2020 → esm2022}/data/change-event-args.interface.mjs +0 -0
  412. /package/{esm2020 → esm2022}/data/data-item.interface.mjs +0 -0
  413. /package/{esm2020 → esm2022}/data/grid-item.interface.mjs +0 -0
  414. /package/{esm2020 → esm2022}/data/group-footer-item.interface.mjs +0 -0
  415. /package/{esm2020 → esm2022}/data/group-item.interface.mjs +0 -0
  416. /package/{esm2020 → esm2022}/dragdrop/column-reorder-config.mjs +0 -0
  417. /package/{esm2020 → esm2022}/dragdrop/common.mjs +0 -0
  418. /package/{esm2020 → esm2022}/dragdrop/context-types.mjs +0 -0
  419. /package/{esm2020 → esm2022}/editing/add-event-args.interface.mjs +0 -0
  420. /package/{esm2020 → esm2022}/editing/cancel-event-args.interface.mjs +0 -0
  421. /package/{esm2020 → esm2022}/editing/edit-event-args.interface.mjs +0 -0
  422. /package/{esm2020 → esm2022}/editing/edit-row-options.interface.mjs +0 -0
  423. /package/{esm2020 → esm2022}/editing/remove-event-args.interface.mjs +0 -0
  424. /package/{esm2020 → esm2022}/editing/save-event-args.interface.mjs +0 -0
  425. /package/{esm2020 → esm2022}/editing-directives/create-form-group-args.interface.mjs +0 -0
  426. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  427. /package/{esm2020 → esm2022}/editing-directives/local-row-edit.service.mjs +0 -0
  428. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  429. /package/{esm2020 → esm2022}/filtering/cell/filter-cell-component.factory.mjs +0 -0
  430. /package/{esm2020 → esm2022}/filtering/filter-component.interface.mjs +0 -0
  431. /package/{esm2020 → esm2022}/filtering/filterable.mjs +0 -0
  432. /package/{esm2020 → esm2022}/filtering/menu/filter-menu-component.factory.mjs +0 -0
  433. /package/{esm2020 → esm2022}/grouping/group-key.interface.mjs +0 -0
  434. /package/{esm2020 → esm2022}/grouping/group-rows-args.interface.mjs +0 -0
  435. /package/{esm2020 → esm2022}/grouping/group-settings.mjs +0 -0
  436. /package/{esm2020 → esm2022}/grouping/utils.mjs +0 -0
  437. /package/{esm2020 → esm2022}/grouping/virtual-group-result.interface.mjs +0 -0
  438. /package/{esm2020 → esm2022}/layout/row-sync.mjs +0 -0
  439. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  440. /package/{esm2020 → esm2022}/navigation/logical-cell.interface.mjs +0 -0
  441. /package/{esm2020 → esm2022}/navigation/logical-row.interface.mjs +0 -0
  442. /package/{esm2020 → esm2022}/navigation/navigable-settings.mjs +0 -0
  443. /package/{esm2020 → esm2022}/navigation/navigation-cell.interface.mjs +0 -0
  444. /package/{esm2020 → esm2022}/navigation/navigation-change.interface.mjs +0 -0
  445. /package/{esm2020 → esm2022}/navigation/navigation-mode.mjs +0 -0
  446. /package/{esm2020 → esm2022}/navigation/navigation-row.interface.mjs +0 -0
  447. /package/{esm2020 → esm2022}/pdf/export-element.mjs +0 -0
  448. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  449. /package/{esm2020 → esm2022}/pdf/pdf-margin.interface.mjs +0 -0
  450. /package/{esm2020 → esm2022}/progress-kendo-angular-grid.mjs +0 -0
  451. /package/{esm2020 → esm2022}/rendering/common/cell-context.mjs +0 -0
  452. /package/{esm2020 → esm2022}/rendering/common/dom-queries.mjs +0 -0
  453. /package/{esm2020 → esm2022}/rendering/common/row-args.mjs +0 -0
  454. /package/{esm2020 → esm2022}/rendering/common/row-class.mjs +0 -0
  455. /package/{esm2020 → esm2022}/rendering/constants.mjs +0 -0
  456. /package/{esm2020 → esm2022}/rendering/toolbar/toolbar-position.mjs +0 -0
  457. /package/{esm2020 → esm2022}/row-reordering/types.mjs +0 -0
  458. /package/{esm2020 → esm2022}/row-reordering/utils.mjs +0 -0
  459. /package/{esm2020 → esm2022}/scrolling/content-scroll-event.mjs +0 -0
  460. /package/{esm2020 → esm2022}/scrolling/scroll-bottom-event.mjs +0 -0
  461. /package/{esm2020 → esm2022}/scrolling/scrollmode.mjs +0 -0
  462. /package/{esm2020 → esm2022}/selection/types.mjs +0 -0
  463. /package/{esm2020 → esm2022}/utils.mjs +0 -0
@@ -1,59 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "../filter-row.component";
7
- import * as i2 from "./filter-cell.component";
8
- import * as i3 from "./filter-cell-template.directive";
9
- import * as i4 from "./string-filter-cell.component";
10
- import * as i5 from "./numeric-filter-cell.component";
11
- import * as i6 from "./autocomplete-filter-cell.component";
12
- import * as i7 from "./boolean-filter-cell.component";
13
- import * as i8 from "./filter-cell-host.directive";
14
- import * as i9 from "./filter-cell-wrapper.component";
15
- import * as i10 from "./date-filter-cell.component";
16
- import * as i11 from "../../columns/column.component";
17
- import * as i12 from "../../columns/column-group.component";
18
- import * as i13 from "../../navigation/logical-cell.directive";
19
- import * as i14 from "../../navigation/logical-row.directive";
20
- import * as i15 from "../../navigation/focusable.directive";
21
- import * as i16 from "../../rendering/footer/footer-template.directive";
22
- import * as i17 from "../../rendering/common/col-group.component";
23
- import * as i18 from "../../layout/resizable.directive";
24
- import * as i19 from "@progress/kendo-angular-common";
25
- import * as i20 from "../../rendering/common/field-accessor.pipe";
26
- import * as i21 from "../../rendering/details/detail-template.directive";
27
- import * as i22 from "../../columns/span-column.component";
28
- import * as i23 from "../../rendering/common/loading.component";
29
- import * as i24 from "../../rendering/grid-table.directive";
30
- import * as i25 from "./filter-cell-operators.component";
31
- import * as i26 from "../operators/contains-filter-operator.component";
32
- import * as i27 from "../operators/not-contains-filter-operator.component";
33
- import * as i28 from "../operators/ends-with-filter-operator.component";
34
- import * as i29 from "../operators/eq-filter-operator.component";
35
- import * as i30 from "../operators/is-empty-filter-operator.component";
36
- import * as i31 from "../operators/is-not-empty-filter-operator.component";
37
- import * as i32 from "../operators/is-not-null-filter-operator.component";
38
- import * as i33 from "../operators/isnull-filter-operator.component";
39
- import * as i34 from "../operators/neq-filter-operator.component";
40
- import * as i35 from "../operators/starts-with-filter-operator.component";
41
- import * as i36 from "../operators/gt-filter-operator.component";
42
- import * as i37 from "../operators/gte-filter-operator.component";
43
- import * as i38 from "../operators/lt-filter-operator.component";
44
- import * as i39 from "../operators/lte-filter-operator.component";
45
- import * as i40 from "../operators/after-filter-operator.component";
46
- import * as i41 from "../operators/after-eq-filter-operator.component";
47
- import * as i42 from "../operators/before-eq-filter-operator.component";
48
- import * as i43 from "../operators/before-filter-operator.component";
49
- import * as i44 from "../filter-input.directive";
50
- /**
51
- * @hidden
52
- *
53
- * This module is deprecated and will be removed in a future major version release.
54
- */
55
- export declare class RowFilterModule {
56
- static ɵfac: i0.ɵɵFactoryDeclaration<RowFilterModule, never>;
57
- static ɵmod: i0.ɵɵNgModuleDeclaration<RowFilterModule, never, [typeof i1.FilterRowComponent, typeof i2.FilterCellComponent, typeof i3.FilterCellTemplateDirective, typeof i4.StringFilterCellComponent, typeof i5.NumericFilterCellComponent, typeof i6.AutoCompleteFilterCellComponent, typeof i7.BooleanFilterCellComponent, typeof i8.FilterCellHostDirective, typeof i9.FilterCellWrapperComponent, typeof i10.DateFilterCellComponent, typeof i11.ColumnComponent, typeof i12.ColumnGroupComponent, typeof i13.LogicalCellDirective, typeof i14.LogicalRowDirective, typeof i15.FocusableDirective, typeof i16.FooterTemplateDirective, typeof i17.ColGroupComponent, typeof i18.ResizableContainerDirective, typeof i19.TemplateContextDirective, typeof i20.FieldAccessorPipe, typeof i21.DetailTemplateDirective, typeof i22.SpanColumnComponent, typeof i23.LoadingComponent, typeof i24.GridTableDirective, typeof i25.FilterCellOperatorsComponent, typeof i26.ContainsFilterOperatorComponent, typeof i27.DoesNotContainFilterOperatorComponent, typeof i28.EndsWithFilterOperatorComponent, typeof i29.EqualFilterOperatorComponent, typeof i30.IsEmptyFilterOperatorComponent, typeof i31.IsNotEmptyFilterOperatorComponent, typeof i32.IsNotNullFilterOperatorComponent, typeof i33.IsNullFilterOperatorComponent, typeof i34.NotEqualFilterOperatorComponent, typeof i35.StartsWithFilterOperatorComponent, typeof i36.GreaterFilterOperatorComponent, typeof i37.GreaterOrEqualToFilterOperatorComponent, typeof i38.LessFilterOperatorComponent, typeof i39.LessOrEqualToFilterOperatorComponent, typeof i40.AfterFilterOperatorComponent, typeof i41.AfterEqFilterOperatorComponent, typeof i42.BeforeEqFilterOperatorComponent, typeof i43.BeforeFilterOperatorComponent, typeof i44.FilterInputDirective], [typeof i1.FilterRowComponent, typeof i2.FilterCellComponent, typeof i3.FilterCellTemplateDirective, typeof i4.StringFilterCellComponent, typeof i5.NumericFilterCellComponent, typeof i6.AutoCompleteFilterCellComponent, typeof i7.BooleanFilterCellComponent, typeof i8.FilterCellHostDirective, typeof i9.FilterCellWrapperComponent, typeof i10.DateFilterCellComponent, typeof i11.ColumnComponent, typeof i12.ColumnGroupComponent, typeof i13.LogicalCellDirective, typeof i14.LogicalRowDirective, typeof i15.FocusableDirective, typeof i16.FooterTemplateDirective, typeof i17.ColGroupComponent, typeof i18.ResizableContainerDirective, typeof i19.TemplateContextDirective, typeof i20.FieldAccessorPipe, typeof i21.DetailTemplateDirective, typeof i22.SpanColumnComponent, typeof i23.LoadingComponent, typeof i24.GridTableDirective, typeof i25.FilterCellOperatorsComponent, typeof i26.ContainsFilterOperatorComponent, typeof i27.DoesNotContainFilterOperatorComponent, typeof i28.EndsWithFilterOperatorComponent, typeof i29.EqualFilterOperatorComponent, typeof i30.IsEmptyFilterOperatorComponent, typeof i31.IsNotEmptyFilterOperatorComponent, typeof i32.IsNotNullFilterOperatorComponent, typeof i33.IsNullFilterOperatorComponent, typeof i34.NotEqualFilterOperatorComponent, typeof i35.StartsWithFilterOperatorComponent, typeof i36.GreaterFilterOperatorComponent, typeof i37.GreaterOrEqualToFilterOperatorComponent, typeof i38.LessFilterOperatorComponent, typeof i39.LessOrEqualToFilterOperatorComponent, typeof i40.AfterFilterOperatorComponent, typeof i41.AfterEqFilterOperatorComponent, typeof i42.BeforeEqFilterOperatorComponent, typeof i43.BeforeFilterOperatorComponent, typeof i44.FilterInputDirective]>;
58
- static ɵinj: i0.ɵɵInjectorDeclaration<RowFilterModule>;
59
- }
@@ -1,63 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "../../columns/column.component";
7
- import * as i2 from "../../columns/column-group.component";
8
- import * as i3 from "../../navigation/logical-cell.directive";
9
- import * as i4 from "../../navigation/logical-row.directive";
10
- import * as i5 from "../../navigation/focusable.directive";
11
- import * as i6 from "../../rendering/footer/footer-template.directive";
12
- import * as i7 from "../../rendering/common/col-group.component";
13
- import * as i8 from "../../layout/resizable.directive";
14
- import * as i9 from "@progress/kendo-angular-common";
15
- import * as i10 from "../../rendering/common/field-accessor.pipe";
16
- import * as i11 from "../../rendering/details/detail-template.directive";
17
- import * as i12 from "../../columns/span-column.component";
18
- import * as i13 from "../../rendering/common/loading.component";
19
- import * as i14 from "../../rendering/grid-table.directive";
20
- import * as i15 from "../cell/filter-cell-operators.component";
21
- import * as i16 from "../operators/contains-filter-operator.component";
22
- import * as i17 from "../operators/not-contains-filter-operator.component";
23
- import * as i18 from "../operators/ends-with-filter-operator.component";
24
- import * as i19 from "../operators/eq-filter-operator.component";
25
- import * as i20 from "../operators/is-empty-filter-operator.component";
26
- import * as i21 from "../operators/is-not-empty-filter-operator.component";
27
- import * as i22 from "../operators/is-not-null-filter-operator.component";
28
- import * as i23 from "../operators/isnull-filter-operator.component";
29
- import * as i24 from "../operators/neq-filter-operator.component";
30
- import * as i25 from "../operators/starts-with-filter-operator.component";
31
- import * as i26 from "../operators/gt-filter-operator.component";
32
- import * as i27 from "../operators/gte-filter-operator.component";
33
- import * as i28 from "../operators/lt-filter-operator.component";
34
- import * as i29 from "../operators/lte-filter-operator.component";
35
- import * as i30 from "../operators/after-filter-operator.component";
36
- import * as i31 from "../operators/after-eq-filter-operator.component";
37
- import * as i32 from "../operators/before-eq-filter-operator.component";
38
- import * as i33 from "../operators/before-filter-operator.component";
39
- import * as i34 from "../filter-input.directive";
40
- import * as i35 from "./filter-menu.component";
41
- import * as i36 from "./filter-menu-container.component";
42
- import * as i37 from "./filter-menu-input-wrapper.component";
43
- import * as i38 from "./string-filter-menu-input.component";
44
- import * as i39 from "./string-filter-menu.component";
45
- import * as i40 from "./filter-menu-template.directive";
46
- import * as i41 from "./numeric-filter-menu.component";
47
- import * as i42 from "./numeric-filter-menu-input.component";
48
- import * as i43 from "./date-filter-menu-input.component";
49
- import * as i44 from "./date-filter-menu.component";
50
- import * as i45 from "./filter-menu-host.directive";
51
- import * as i46 from "./boolean-filter-menu.component";
52
- import * as i47 from "./filter-menu-dropdownlist.directive";
53
- import * as i48 from "./filter-radio-button.directive";
54
- /**
55
- * @hidden
56
- *
57
- * This module is deprecated and will be removed in a future major version release.
58
- */
59
- export declare class FilterMenuModule {
60
- static ɵfac: i0.ɵɵFactoryDeclaration<FilterMenuModule, never>;
61
- static ɵmod: i0.ɵɵNgModuleDeclaration<FilterMenuModule, 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.FilterCellOperatorsComponent, typeof i16.ContainsFilterOperatorComponent, typeof i17.DoesNotContainFilterOperatorComponent, typeof i18.EndsWithFilterOperatorComponent, typeof i19.EqualFilterOperatorComponent, typeof i20.IsEmptyFilterOperatorComponent, typeof i21.IsNotEmptyFilterOperatorComponent, typeof i22.IsNotNullFilterOperatorComponent, typeof i23.IsNullFilterOperatorComponent, typeof i24.NotEqualFilterOperatorComponent, typeof i25.StartsWithFilterOperatorComponent, typeof i26.GreaterFilterOperatorComponent, typeof i27.GreaterOrEqualToFilterOperatorComponent, typeof i28.LessFilterOperatorComponent, typeof i29.LessOrEqualToFilterOperatorComponent, typeof i30.AfterFilterOperatorComponent, typeof i31.AfterEqFilterOperatorComponent, typeof i32.BeforeEqFilterOperatorComponent, typeof i33.BeforeFilterOperatorComponent, typeof i34.FilterInputDirective, typeof i35.FilterMenuComponent, typeof i36.FilterMenuContainerComponent, typeof i37.FilterMenuInputWrapperComponent, typeof i38.StringFilterMenuInputComponent, typeof i39.StringFilterMenuComponent, typeof i40.FilterMenuTemplateDirective, typeof i41.NumericFilterMenuComponent, typeof i42.NumericFilterMenuInputComponent, typeof i43.DateFilterMenuInputComponent, typeof i44.DateFilterMenuComponent, typeof i45.FilterMenuHostDirective, typeof i46.BooleanFilterMenuComponent, typeof i47.FilterMenuDropDownListDirective, typeof i48.BooleanFilterRadioButtonDirective], [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.FilterCellOperatorsComponent, typeof i16.ContainsFilterOperatorComponent, typeof i17.DoesNotContainFilterOperatorComponent, typeof i18.EndsWithFilterOperatorComponent, typeof i19.EqualFilterOperatorComponent, typeof i20.IsEmptyFilterOperatorComponent, typeof i21.IsNotEmptyFilterOperatorComponent, typeof i22.IsNotNullFilterOperatorComponent, typeof i23.IsNullFilterOperatorComponent, typeof i24.NotEqualFilterOperatorComponent, typeof i25.StartsWithFilterOperatorComponent, typeof i26.GreaterFilterOperatorComponent, typeof i27.GreaterOrEqualToFilterOperatorComponent, typeof i28.LessFilterOperatorComponent, typeof i29.LessOrEqualToFilterOperatorComponent, typeof i30.AfterFilterOperatorComponent, typeof i31.AfterEqFilterOperatorComponent, typeof i32.BeforeEqFilterOperatorComponent, typeof i33.BeforeFilterOperatorComponent, typeof i34.FilterInputDirective, typeof i35.FilterMenuComponent, typeof i36.FilterMenuContainerComponent, typeof i37.FilterMenuInputWrapperComponent, typeof i38.StringFilterMenuInputComponent, typeof i39.StringFilterMenuComponent, typeof i40.FilterMenuTemplateDirective, typeof i41.NumericFilterMenuComponent, typeof i42.NumericFilterMenuInputComponent, typeof i43.DateFilterMenuInputComponent, typeof i44.DateFilterMenuComponent, typeof i45.FilterMenuHostDirective, typeof i46.BooleanFilterMenuComponent, typeof i47.FilterMenuDropDownListDirective, typeof i48.BooleanFilterRadioButtonDirective]>;
62
- static ɵinj: i0.ɵɵInjectorDeclaration<FilterMenuModule>;
63
- }
@@ -1,49 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "../columns/column.component";
7
- import * as i2 from "../columns/column-group.component";
8
- import * as i3 from "../navigation/logical-cell.directive";
9
- import * as i4 from "../navigation/logical-row.directive";
10
- import * as i5 from "../navigation/focusable.directive";
11
- import * as i6 from "../rendering/footer/footer-template.directive";
12
- import * as i7 from "../rendering/common/col-group.component";
13
- import * as i8 from "../layout/resizable.directive";
14
- import * as i9 from "@progress/kendo-angular-common";
15
- import * as i10 from "../rendering/common/field-accessor.pipe";
16
- import * as i11 from "../rendering/details/detail-template.directive";
17
- import * as i12 from "../columns/span-column.component";
18
- import * as i13 from "../rendering/common/loading.component";
19
- import * as i14 from "../rendering/grid-table.directive";
20
- import * as i15 from "./cell/filter-cell-operators.component";
21
- import * as i16 from "./operators/contains-filter-operator.component";
22
- import * as i17 from "./operators/not-contains-filter-operator.component";
23
- import * as i18 from "./operators/ends-with-filter-operator.component";
24
- import * as i19 from "./operators/eq-filter-operator.component";
25
- import * as i20 from "./operators/is-empty-filter-operator.component";
26
- import * as i21 from "./operators/is-not-empty-filter-operator.component";
27
- import * as i22 from "./operators/is-not-null-filter-operator.component";
28
- import * as i23 from "./operators/isnull-filter-operator.component";
29
- import * as i24 from "./operators/neq-filter-operator.component";
30
- import * as i25 from "./operators/starts-with-filter-operator.component";
31
- import * as i26 from "./operators/gt-filter-operator.component";
32
- import * as i27 from "./operators/gte-filter-operator.component";
33
- import * as i28 from "./operators/lt-filter-operator.component";
34
- import * as i29 from "./operators/lte-filter-operator.component";
35
- import * as i30 from "./operators/after-filter-operator.component";
36
- import * as i31 from "./operators/after-eq-filter-operator.component";
37
- import * as i32 from "./operators/before-eq-filter-operator.component";
38
- import * as i33 from "./operators/before-filter-operator.component";
39
- import * as i34 from "./filter-input.directive";
40
- /**
41
- * @hidden
42
- *
43
- * This module is deprecated and will be removed in a future major version release.
44
- */
45
- export declare class SharedFilterModule {
46
- static ɵfac: i0.ɵɵFactoryDeclaration<SharedFilterModule, never>;
47
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedFilterModule, 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.FilterCellOperatorsComponent, typeof i16.ContainsFilterOperatorComponent, typeof i17.DoesNotContainFilterOperatorComponent, typeof i18.EndsWithFilterOperatorComponent, typeof i19.EqualFilterOperatorComponent, typeof i20.IsEmptyFilterOperatorComponent, typeof i21.IsNotEmptyFilterOperatorComponent, typeof i22.IsNotNullFilterOperatorComponent, typeof i23.IsNullFilterOperatorComponent, typeof i24.NotEqualFilterOperatorComponent, typeof i25.StartsWithFilterOperatorComponent, typeof i26.GreaterFilterOperatorComponent, typeof i27.GreaterOrEqualToFilterOperatorComponent, typeof i28.LessFilterOperatorComponent, typeof i29.LessOrEqualToFilterOperatorComponent, typeof i30.AfterFilterOperatorComponent, typeof i31.AfterEqFilterOperatorComponent, typeof i32.BeforeEqFilterOperatorComponent, typeof i33.BeforeFilterOperatorComponent, typeof i34.FilterInputDirective], [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.FilterCellOperatorsComponent, typeof i16.ContainsFilterOperatorComponent, typeof i17.DoesNotContainFilterOperatorComponent, typeof i18.EndsWithFilterOperatorComponent, typeof i19.EqualFilterOperatorComponent, typeof i20.IsEmptyFilterOperatorComponent, typeof i21.IsNotEmptyFilterOperatorComponent, typeof i22.IsNotNullFilterOperatorComponent, typeof i23.IsNullFilterOperatorComponent, typeof i24.NotEqualFilterOperatorComponent, typeof i25.StartsWithFilterOperatorComponent, typeof i26.GreaterFilterOperatorComponent, typeof i27.GreaterOrEqualToFilterOperatorComponent, typeof i28.LessFilterOperatorComponent, typeof i29.LessOrEqualToFilterOperatorComponent, typeof i30.AfterFilterOperatorComponent, typeof i31.AfterEqFilterOperatorComponent, typeof i32.BeforeEqFilterOperatorComponent, typeof i33.BeforeFilterOperatorComponent, typeof i34.FilterInputDirective]>;
48
- static ɵinj: i0.ɵɵInjectorDeclaration<SharedFilterModule>;
49
- }
@@ -1,38 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "../columns/column.component";
7
- import * as i2 from "../columns/column-group.component";
8
- import * as i3 from "../navigation/logical-cell.directive";
9
- import * as i4 from "../navigation/logical-row.directive";
10
- import * as i5 from "../navigation/focusable.directive";
11
- import * as i6 from "../rendering/footer/footer-template.directive";
12
- import * as i7 from "../rendering/common/col-group.component";
13
- import * as i8 from "../layout/resizable.directive";
14
- import * as i9 from "@progress/kendo-angular-common";
15
- import * as i10 from "../rendering/common/field-accessor.pipe";
16
- import * as i11 from "../rendering/details/detail-template.directive";
17
- import * as i12 from "../columns/span-column.component";
18
- import * as i13 from "../rendering/common/loading.component";
19
- import * as i14 from "../rendering/grid-table.directive";
20
- import * as i15 from "../dragdrop/draggable-column.directive";
21
- import * as i16 from "../dragdrop/drop-target.directive";
22
- import * as i17 from "@progress/kendo-angular-buttons";
23
- import * as i18 from "@progress/kendo-angular-popup";
24
- import * as i19 from "./group-header-template.directive";
25
- import * as i20 from "./group-header-column-template.directive";
26
- import * as i21 from "./group-footer-template.directive";
27
- import * as i22 from "./group-header.component";
28
- import * as i23 from "./group-panel.component";
29
- /**
30
- * @hidden
31
- *
32
- * This module is deprecated and will be removed in a future major version release.
33
- */
34
- export declare class GroupModule {
35
- static ɵfac: i0.ɵɵFactoryDeclaration<GroupModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<GroupModule, 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.DraggableColumnDirective, typeof i16.DropTargetDirective, typeof i17.ChipComponent, typeof i17.ChipListComponent, typeof i18.PopupComponent, typeof i19.GroupHeaderTemplateDirective, typeof i20.GroupHeaderColumnTemplateDirective, typeof i21.GroupFooterTemplateDirective, typeof i22.GroupHeaderComponent, typeof i23.GroupPanelComponent], [typeof i19.GroupHeaderTemplateDirective, typeof i20.GroupHeaderColumnTemplateDirective, typeof i21.GroupFooterTemplateDirective, typeof i22.GroupHeaderComponent, typeof i23.GroupPanelComponent]>;
37
- static ɵinj: i0.ɵɵInjectorDeclaration<GroupModule>;
38
- }
@@ -1,30 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Subject } from "rxjs";
6
- import { PageChangeEvent } from "../data/change-event-args.interface";
7
- /**
8
- * @hidden
9
- */
10
- export declare type PagerContextChanges = {
11
- total: number;
12
- skip: number;
13
- pageSize: number;
14
- };
15
- /**
16
- * @hidden
17
- */
18
- export declare class PagerContextService {
19
- total: number;
20
- skip: number;
21
- pageSize: number;
22
- changes: Subject<PagerContextChanges>;
23
- pageChange: Subject<PageChangeEvent>;
24
- private get currentPage();
25
- notifyChanges(changes: PagerContextChanges): void;
26
- changePage(page: number): void;
27
- changePageSize(value: number): void;
28
- nextPage(): void;
29
- prevPage(): void;
30
- }
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- */
10
- export declare class PagerDropDownListDirective {
11
- private host;
12
- constructor(host: DropDownListComponent);
13
- ngAfterViewInit(): void;
14
- ngOnDestroy(): void;
15
- private keydownHandler;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerDropDownListDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<PagerDropDownListDirective, "[kendoGridPagerDropDown]", never, {}, {}, never, never, true, never>;
18
- }
@@ -1,79 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
6
- import { PagerContextService, PagerContextChanges } from "./pager-context.service";
7
- import { GridSize } from '../common/size-options';
8
- import { ContextService } from '../common/provider.service';
9
- import { SVGIcon } from '@progress/kendo-svg-icons';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * @hidden
13
- */
14
- export declare abstract class PagerElementComponent implements OnInit, OnDestroy {
15
- private ctx;
16
- protected pagerContext: PagerContextService;
17
- protected cd: ChangeDetectorRef;
18
- total: number;
19
- skip: number;
20
- pageSize: number;
21
- caretAltLeftIcon: SVGIcon;
22
- caretAltToLeftIcon: SVGIcon;
23
- caretAltRightIcon: SVGIcon;
24
- caretAltToRightIcon: SVGIcon;
25
- /**
26
- * Sets the pager element sizing option.
27
- * @default `medium`
28
- */
29
- size: GridSize;
30
- /**
31
- * @hidden
32
- *
33
- * @readonly
34
- * @type {number}
35
- * @memberOf PagerElementComponent
36
- */
37
- get currentPage(): number;
38
- /**
39
- * @hidden
40
- *
41
- * @readonly
42
- * @type {number}
43
- * @memberOf PagerElementComponent
44
- */
45
- get totalPages(): number;
46
- private subscriptions;
47
- constructor(ctx: ContextService, pagerContext: PagerContextService, cd: ChangeDetectorRef);
48
- /**
49
- * @hidden
50
- *
51
- * @param {string} key
52
- * @returns {string}
53
- *
54
- * @memberOf PagerElementComponent
55
- */
56
- textFor(key: string): string;
57
- /**
58
- * @hidden
59
- *
60
- * @param {number} page
61
- *
62
- * @memberOf PagerElementComponent
63
- */
64
- changePage(page: number): boolean;
65
- /**
66
- * @hidden
67
- *
68
- * @memberOf PagerElementComponent
69
- */
70
- ngOnInit(): void;
71
- protected abstract onChanges(changes: PagerContextChanges): void;
72
- ngOnDestroy(): void;
73
- get prevArrowIcons(): string[];
74
- get prevArrowSVGIcons(): SVGIcon[];
75
- get nextArrowIcons(): string[];
76
- get nextArrowSVGIcons(): SVGIcon[];
77
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerElementComponent, never>;
78
- static ɵdir: i0.ɵɵDirectiveDeclaration<PagerElementComponent, never, never, { "size": "size"; }, {}, never, never, false, never>;
79
- }
@@ -1,43 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectorRef } from '@angular/core';
6
- import { PagerElementComponent } from './pager-element.component';
7
- import { PagerContextService, PagerContextChanges } from "./pager-context.service";
8
- import { ContextService } from '../common/provider.service';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * Displays information about the current page and the total number of records ([see example](slug:pager_template_grid#toc-using-built-in-pager-components)).
12
- */
13
- export declare class PagerInfoComponent extends PagerElementComponent {
14
- protected pagerContext: PagerContextService;
15
- /**
16
- * @hidden
17
- *
18
- * @readonly
19
- * @type {number}
20
- * @memberOf PagerInfoComponent
21
- */
22
- get maxItems(): number;
23
- /**
24
- * @hidden
25
- *
26
- * @readonly
27
- * @type {number}
28
- * @memberOf PagerInfoComponent
29
- */
30
- get currentPageText(): number;
31
- /**
32
- * @hidden
33
- *
34
- * @readonly
35
- * @type {boolean}
36
- * @memberOf PagerInfoComponent
37
- */
38
- get classes(): boolean;
39
- constructor(ctx: ContextService, cd: ChangeDetectorRef, pagerContext: PagerContextService);
40
- protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
41
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerInfoComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerInfoComponent, "kendo-pager-info", never, {}, {}, never, never, true, never>;
43
- }
@@ -1,45 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NavigationService } from './../navigation/navigation.service';
6
- import { NumericTextBoxComponent } from '@progress/kendo-angular-inputs';
7
- import { ChangeDetectorRef, NgZone } from '@angular/core';
8
- import { PagerElementComponent } from './pager-element.component';
9
- import { PagerContextService, PagerContextChanges } from "./pager-context.service";
10
- import { ContextService } from '../common/provider.service';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * Displays an input element which allows the typing and rendering of page numbers ([see example](slug:pager_template_grid#toc-using-built-in-pager-components)).
14
- */
15
- export declare class PagerInputComponent extends PagerElementComponent {
16
- protected pagerContext: PagerContextService;
17
- private zone;
18
- navigationService: NavigationService;
19
- numericInput: NumericTextBoxComponent;
20
- constructor(ctx: ContextService, pagerContext: PagerContextService, zone: NgZone, navigationService: NavigationService, cd: ChangeDetectorRef);
21
- /**
22
- * @hidden
23
- *
24
- * @param {string} value
25
- *
26
- * @memberOf PagerInputComponent
27
- */
28
- handleKeyDown: (event: KeyboardEvent) => void;
29
- /**
30
- * @hidden
31
- *
32
- * @param {string} value
33
- *
34
- * @memberOf PagerInputComponent
35
- */
36
- handleBlur: () => void;
37
- /**
38
- * @hidden
39
- */
40
- get current(): number;
41
- get hasPages(): boolean;
42
- protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerInputComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerInputComponent, "kendo-pager-input", never, {}, {}, never, never, true, never>;
45
- }
@@ -1,18 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NumericTextBoxComponent } from '@progress/kendo-angular-inputs';
6
- import { Renderer2 } from '@angular/core';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export declare class PagerInputDirective {
12
- private host;
13
- private renderer;
14
- constructor(host: NumericTextBoxComponent, renderer: Renderer2);
15
- ngAfterViewInit(): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerInputDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<PagerInputDirective, "[kendoGridPagerInput]", never, {}, {}, never, never, true, never>;
18
- }
@@ -1,28 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NavigationService } from './../navigation/navigation.service';
6
- import { ChangeDetectorRef } from '@angular/core';
7
- import { PagerContextService, PagerContextChanges } from "./pager-context.service";
8
- import { PagerElementComponent } from './pager-element.component';
9
- import { ContextService } from '../common/provider.service';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * Displays buttons for navigating to the next and to the last page ([see example](slug:pager_template_grid#toc-using-built-in-pager-components)).
13
- */
14
- export declare class PagerNextButtonsComponent extends PagerElementComponent {
15
- navigationService: NavigationService;
16
- /**
17
- * @hidden
18
- *
19
- * @readonly
20
- * @type {boolean}
21
- * @memberOf PagerNextButtonsComponent
22
- */
23
- get disabled(): boolean;
24
- constructor(ctx: ContextService, pagerContext: PagerContextService, cd: ChangeDetectorRef, navigationService: NavigationService);
25
- protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerNextButtonsComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerNextButtonsComponent, "kendo-pager-next-buttons", never, {}, {}, never, never, true, never>;
28
- }
@@ -1,52 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ChangeDetectorRef } from '@angular/core';
6
- import { ContextService } from '../common/provider.service';
7
- import { PagerContextChanges, PagerContextService } from './pager-context.service';
8
- import { PagerElementComponent } from './pager-element.component';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * Displays numeric buttons to enable navigation between the pages ([see example](slug:pager_template_grid#toc-using-built-in-pager-components)).
12
- */
13
- export declare class PagerNumericButtonsComponent extends PagerElementComponent {
14
- protected pagerContext: PagerContextService;
15
- selectElement: any;
16
- numbersElement: any;
17
- /**
18
- * The count of the displayed buttons.
19
- *
20
- * @type {number}
21
- * @memberOf PagerNumericButtonsComponent
22
- */
23
- buttonCount: number;
24
- /**
25
- * @hidden
26
- *
27
- * @readonly
28
- * @type {number[]}
29
- * @memberOf PagerNumericButtonsComponent
30
- */
31
- get buttons(): number[];
32
- /**
33
- * @hidden
34
- */
35
- get end(): number;
36
- /**
37
- * @hidden
38
- */
39
- get start(): number;
40
- constructor(ctx: ContextService, cd: ChangeDetectorRef, pagerContext: PagerContextService);
41
- /**
42
- * @hidden
43
- */
44
- pageLabel(num: number): string;
45
- /**
46
- * @hidden
47
- */
48
- onSelectChange(e: Event): void;
49
- protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
50
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerNumericButtonsComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerNumericButtonsComponent, "kendo-pager-numeric-buttons", never, { "buttonCount": "buttonCount"; }, {}, never, never, true, never>;
52
- }
@@ -1,49 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NavigationService } from './../navigation/navigation.service';
6
- import { ChangeDetectorRef } from '@angular/core';
7
- import { PagerElementComponent } from './pager-element.component';
8
- import { PagerContextService, PagerContextChanges } from './pager-context.service';
9
- import { PageSizeItem } from './pagesize-item.interface';
10
- import { ContextService } from '../common/provider.service';
11
- import * as i0 from "@angular/core";
12
- /**
13
- * Displays a drop-down list for the page size selection ([see example](slug:pager_template_grid#toc-using-built-in-pager-components)).
14
- */
15
- export declare class PagerPageSizesComponent extends PagerElementComponent {
16
- protected pagerContext: PagerContextService;
17
- navigationService: NavigationService;
18
- /**
19
- * The page sizes collection. Can be an Array of numbers and/or [`PageSizeItem`](slug:api_grid_pagesizeitem) objects
20
- * ([see example](slug:pager_template_grid))
21
- */
22
- set pageSizes(pageSizes: Array<PageSizeItem | number>);
23
- get pageSizes(): Array<PageSizeItem | number>;
24
- /**
25
- * @hidden
26
- *
27
- * @readonly
28
- */
29
- get classes(): boolean;
30
- /**
31
- * @hidden
32
- *
33
- * @readonly
34
- */
35
- get showInitialPageSize(): boolean;
36
- private _pageSizes;
37
- constructor(ctx: ContextService, cd: ChangeDetectorRef, pagerContext: PagerContextService, navigationService: NavigationService);
38
- /**
39
- * @hidden
40
- */
41
- pageSizeChange(value: any): void;
42
- /**
43
- * @hidden
44
- */
45
- getValue(page: PageSizeItem): number;
46
- protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
47
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerPageSizesComponent, never>;
48
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerPageSizesComponent, "kendo-pager-page-sizes", never, { "pageSizes": "pageSizes"; }, {}, never, never, true, never>;
49
- }
@@ -1,28 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NavigationService } from './../navigation/navigation.service';
6
- import { ChangeDetectorRef } from '@angular/core';
7
- import { PagerContextService, PagerContextChanges } from "./pager-context.service";
8
- import { PagerElementComponent } from './pager-element.component';
9
- import { ContextService } from '../common/provider.service';
10
- import * as i0 from "@angular/core";
11
- /**
12
- * Displays buttons for navigating to the first and to the previous page ([see example](slug:pager_template_grid#toc-using-built-in-pager-components)).
13
- */
14
- export declare class PagerPrevButtonsComponent extends PagerElementComponent {
15
- navigationService: NavigationService;
16
- constructor(ctx: ContextService, pagerContext: PagerContextService, cd: ChangeDetectorRef, navigationService: NavigationService);
17
- /**
18
- * @hidden
19
- *
20
- * @readonly
21
- * @type {boolean}
22
- * @memberOf PagerPrevButtonsComponent
23
- */
24
- get disabled(): boolean;
25
- protected onChanges({ total, skip, pageSize }: PagerContextChanges): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<PagerPrevButtonsComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerPrevButtonsComponent, "kendo-pager-prev-buttons", never, {}, {}, never, never, true, never>;
28
- }