@progress/kendo-angular-treelist 17.0.0-develop.20 → 17.0.0-develop.22

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 (373) hide show
  1. package/binding-directives/base-binding.directive.d.ts +1 -1
  2. package/binding-directives/flat-binding.directive.d.ts +1 -1
  3. package/binding-directives/hierarchy-binding.directive.d.ts +1 -1
  4. package/column-menu/column-chooser.component.d.ts +1 -1
  5. package/column-menu/column-list.component.d.ts +1 -1
  6. package/column-menu/column-menu-chooser.component.d.ts +1 -1
  7. package/column-menu/column-menu-filter.component.d.ts +1 -1
  8. package/column-menu/column-menu-item-base.d.ts +1 -1
  9. package/column-menu/column-menu-item.component.d.ts +1 -1
  10. package/column-menu/column-menu.component.d.ts +1 -1
  11. package/column-resizing/column-handle.directive.d.ts +1 -1
  12. package/column-resizing/column-resize.interface.d.ts +3 -3
  13. package/column-resizing/table.directive.d.ts +1 -1
  14. package/columns/checkbox-column.component.d.ts +1 -1
  15. package/columns/column-base.d.ts +1 -1
  16. package/columns/column.component.d.ts +1 -1
  17. package/columns/sort-settings.d.ts +2 -2
  18. package/columns/span-column.component.d.ts +13 -13
  19. package/common/create-form-group.d.ts +1 -1
  20. package/common/provider.service.d.ts +0 -1
  21. package/common/remove-confirmation.d.ts +1 -1
  22. package/data/treelist-item.interface.d.ts +1 -1
  23. package/dragdrop/context-types.d.ts +1 -1
  24. package/dragdrop/draggable-column.directive.d.ts +1 -1
  25. package/dragdrop/drop-target.directive.d.ts +1 -1
  26. package/editing/add-command.directive.d.ts +1 -1
  27. package/editing/cancel-command.directive.d.ts +1 -1
  28. package/editing/cancel-event-args.interface.d.ts +1 -1
  29. package/editing/edit-command.directive.d.ts +1 -1
  30. package/editing/edit.service.d.ts +3 -3
  31. package/editing/remove-command.directive.d.ts +1 -1
  32. package/editing/save-command.directive.d.ts +1 -1
  33. package/editing-directives/create-form-group-args.interface.d.ts +1 -1
  34. package/editing-directives/editing-directive-base.d.ts +1 -1
  35. package/editing-directives/in-cell-editing.directive.d.ts +1 -1
  36. package/editing-directives/reactive-editing.directive.d.ts +1 -1
  37. package/editing-directives/row-editing-directive-base.d.ts +0 -1
  38. package/editing-directives/template-editing.directive.d.ts +1 -2
  39. package/{esm2020 → esm2022}/binding-directives/base-binding.directive.mjs +17 -13
  40. package/{esm2020 → esm2022}/binding-directives/data-bound-tree-component.mjs +3 -3
  41. package/{esm2020 → esm2022}/binding-directives/flat-binding.directive.mjs +29 -21
  42. package/{esm2020 → esm2022}/binding-directives/hierarchy-binding.directive.mjs +26 -19
  43. package/{esm2020 → esm2022}/column-menu/column-chooser.component.mjs +26 -18
  44. package/{esm2020 → esm2022}/column-menu/column-list.component.mjs +28 -16
  45. package/{esm2020 → esm2022}/column-menu/column-locked-change-event.mjs +4 -0
  46. package/{esm2020 → esm2022}/column-menu/column-menu-chooser.component.mjs +28 -25
  47. package/{esm2020 → esm2022}/column-menu/column-menu-filter.component.mjs +23 -22
  48. package/{esm2020 → esm2022}/column-menu/column-menu-item-base.mjs +9 -6
  49. package/{esm2020 → esm2022}/column-menu/column-menu-item-content-template.directive.mjs +4 -3
  50. package/{esm2020 → esm2022}/column-menu/column-menu-item.component.mjs +67 -42
  51. package/{esm2020 → esm2022}/column-menu/column-menu-lock.component.mjs +9 -6
  52. package/{esm2020 → esm2022}/column-menu/column-menu-sort.component.mjs +8 -6
  53. package/{esm2020 → esm2022}/column-menu/column-menu-template.directive.mjs +4 -3
  54. package/{esm2020 → esm2022}/column-menu/column-menu.component.mjs +49 -25
  55. package/{esm2020 → esm2022}/column-menu/column-menu.service.mjs +23 -9
  56. package/{esm2020 → esm2022}/column-menu/column-visibility-change-event.mjs +4 -0
  57. package/{esm2020 → esm2022}/column-resizing/column-handle.directive.mjs +21 -14
  58. package/{esm2020 → esm2022}/column-resizing/column-resizing.service.mjs +8 -8
  59. package/{esm2020 → esm2022}/column-resizing/table.directive.mjs +17 -8
  60. package/{esm2020 → esm2022}/columns/checkbox-column.component.mjs +27 -12
  61. package/{esm2020 → esm2022}/columns/column-base.mjs +140 -72
  62. package/{esm2020 → esm2022}/columns/column-group.component.mjs +24 -20
  63. package/{esm2020 → esm2022}/columns/column-list.mjs +4 -3
  64. package/{esm2020 → esm2022}/columns/column.component.mjs +56 -38
  65. package/{esm2020 → esm2022}/columns/columns-container.mjs +14 -13
  66. package/{esm2020 → esm2022}/columns/command-column.component.mjs +11 -9
  67. package/{esm2020 → esm2022}/columns/rowreorder-column.component.mjs +13 -12
  68. package/{esm2020 → esm2022}/columns/span-column.component.mjs +64 -29
  69. package/{esm2020 → esm2022}/common/column-info.service.mjs +8 -9
  70. package/esm2022/common/dom-events.service.mjs +24 -0
  71. package/{esm2020 → esm2022}/common/id.service.mjs +4 -3
  72. package/{esm2020 → esm2022}/common/option-changes.service.mjs +5 -7
  73. package/{esm2020 → esm2022}/common/preventable-event.mjs +1 -3
  74. package/{esm2020 → esm2022}/common/provider.service.mjs +8 -6
  75. package/{esm2020 → esm2022}/common/single-popup.service.mjs +19 -8
  76. package/{esm2020 → esm2022}/common/sort.service.mjs +1 -3
  77. package/{esm2020 → esm2022}/data/change-notification.service.mjs +6 -4
  78. package/{esm2020 → esm2022}/data/data.collection.mjs +45 -23
  79. package/{esm2020 → esm2022}/dragdrop/column-reorder-event.mjs +14 -0
  80. package/{esm2020 → esm2022}/dragdrop/column-reorder.service.mjs +4 -6
  81. package/{esm2020 → esm2022}/dragdrop/drag-and-drop.service.mjs +6 -8
  82. package/{esm2020 → esm2022}/dragdrop/drag-hint.service.mjs +7 -4
  83. package/{esm2020 → esm2022}/dragdrop/draggable-column.directive.mjs +22 -13
  84. package/{esm2020 → esm2022}/dragdrop/drop-cue.service.mjs +4 -3
  85. package/{esm2020 → esm2022}/dragdrop/drop-target.directive.mjs +10 -8
  86. package/{esm2020 → esm2022}/editing/add-command-tool.directive.mjs +6 -4
  87. package/{esm2020 → esm2022}/editing/add-command.directive.mjs +10 -6
  88. package/{esm2020 → esm2022}/editing/base-command.directive.mjs +9 -8
  89. package/{esm2020 → esm2022}/editing/cancel-command.directive.mjs +10 -6
  90. package/{esm2020 → esm2022}/editing/cell-close-event.mjs +20 -4
  91. package/{esm2020 → esm2022}/editing/edit-command.directive.mjs +10 -6
  92. package/{esm2020 → esm2022}/editing/edit-template.directive.mjs +4 -3
  93. package/{esm2020 → esm2022}/editing/edit.service.mjs +18 -13
  94. package/{esm2020 → esm2022}/editing/remove-command.directive.mjs +10 -6
  95. package/{esm2020 → esm2022}/editing/save-command.directive.mjs +10 -6
  96. package/{esm2020 → esm2022}/editing-directives/editing-directive-base.mjs +17 -7
  97. package/{esm2020 → esm2022}/editing-directives/flat-edit.service.mjs +1 -0
  98. package/{esm2020 → esm2022}/editing-directives/hierarchy-edit.service.mjs +1 -0
  99. package/{esm2020 → esm2022}/editing-directives/in-cell-editing.directive.mjs +8 -3
  100. package/{esm2020 → esm2022}/editing-directives/reactive-editing.directive.mjs +8 -3
  101. package/{esm2020 → esm2022}/editing-directives/row-editing-directive-base.mjs +3 -3
  102. package/{esm2020 → esm2022}/editing-directives/template-editing.directive.mjs +9 -3
  103. package/{esm2020 → esm2022}/excel/excel-command-tool.directive.mjs +6 -4
  104. package/{esm2020 → esm2022}/excel/excel-command.directive.mjs +10 -9
  105. package/{esm2020 → esm2022}/excel/excel-export-event.mjs +1 -0
  106. package/{esm2020 → esm2022}/excel/excel.component.mjs +71 -22
  107. package/{esm2020 → esm2022}/excel/excel.module.mjs +4 -4
  108. package/{esm2020 → esm2022}/excel/excel.service.mjs +7 -8
  109. package/{esm2020 → esm2022}/expand-state/expand-event.mjs +12 -0
  110. package/{esm2020 → esm2022}/expand-state/expand-state.service.mjs +5 -7
  111. package/{esm2020 → esm2022}/expand-state/expandable-tree-component.mjs +3 -3
  112. package/{esm2020 → esm2022}/expand-state/expandable.directive.mjs +23 -19
  113. package/{esm2020 → esm2022}/filtering/base-filter-cell.component.mjs +18 -7
  114. package/{esm2020 → esm2022}/filtering/boolean-filter.component.mjs +31 -24
  115. package/{esm2020 → esm2022}/filtering/cell/autocomplete-filter-cell.component.mjs +15 -13
  116. package/{esm2020 → esm2022}/filtering/cell/boolean-filter-cell.component.mjs +5 -4
  117. package/{esm2020 → esm2022}/filtering/cell/date-filter-cell.component.mjs +11 -10
  118. package/{esm2020 → esm2022}/filtering/cell/filter-cell-host.directive.mjs +3 -3
  119. package/{esm2020 → esm2022}/filtering/cell/filter-cell-operators.component.mjs +53 -33
  120. package/{esm2020 → esm2022}/filtering/cell/filter-cell-template.directive.mjs +4 -3
  121. package/{esm2020 → esm2022}/filtering/cell/filter-cell-wrapper.component.mjs +8 -8
  122. package/{esm2020 → esm2022}/filtering/cell/filter-cell.component.mjs +11 -8
  123. package/{esm2020 → esm2022}/filtering/cell/numeric-filter-cell.component.mjs +23 -17
  124. package/esm2022/filtering/cell/row-filtering.module.mjs +77 -0
  125. package/{esm2020 → esm2022}/filtering/cell/string-filter-cell.component.mjs +23 -18
  126. package/{esm2020 → esm2022}/filtering/date-filter.component.mjs +64 -39
  127. package/{esm2020 → esm2022}/filtering/filter-host.directive.mjs +8 -3
  128. package/{esm2020 → esm2022}/filtering/filter-input-wrapper.component.mjs +11 -8
  129. package/{esm2020 → esm2022}/filtering/filter-input.directive.mjs +21 -13
  130. package/{esm2020 → esm2022}/filtering/filter-row.component.mjs +11 -8
  131. package/{esm2020 → esm2022}/filtering/filter.service.mjs +7 -9
  132. package/{esm2020 → esm2022}/filtering/menu/boolean-filter-menu.component.mjs +22 -15
  133. package/{esm2020 → esm2022}/filtering/menu/date-filter-menu-input.component.mjs +21 -5
  134. package/{esm2020 → esm2022}/filtering/menu/date-filter-menu.component.mjs +22 -21
  135. package/{esm2020 → esm2022}/filtering/menu/filter-menu-container.component.mjs +28 -16
  136. package/{esm2020 → esm2022}/filtering/menu/filter-menu-host.directive.mjs +4 -3
  137. package/{esm2020 → esm2022}/filtering/menu/filter-menu-input-wrapper.component.mjs +9 -7
  138. package/{esm2020 → esm2022}/filtering/menu/filter-menu-template.directive.mjs +4 -3
  139. package/{esm2020 → esm2022}/filtering/menu/filter-menu.component.mjs +20 -8
  140. package/esm2022/filtering/menu/filter-menu.module.mjs +80 -0
  141. package/{esm2020 → esm2022}/filtering/menu/filter-radio-button.directive.mjs +7 -3
  142. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu-input.component.mjs +43 -17
  143. package/{esm2020 → esm2022}/filtering/menu/numeric-filter-menu.component.mjs +32 -31
  144. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu-input.component.mjs +12 -5
  145. package/{esm2020 → esm2022}/filtering/menu/string-filter-menu.component.mjs +32 -21
  146. package/{esm2020 → esm2022}/filtering/numeric-filter.component.mjs +51 -28
  147. package/{esm2020 → esm2022}/filtering/operators/after-eq-filter-operator.component.mjs +8 -8
  148. package/{esm2020 → esm2022}/filtering/operators/after-filter-operator.component.mjs +8 -8
  149. package/{esm2020 → esm2022}/filtering/operators/before-eq-filter-operator.component.mjs +8 -8
  150. package/{esm2020 → esm2022}/filtering/operators/before-filter-operator.component.mjs +8 -8
  151. package/{esm2020 → esm2022}/filtering/operators/contains-filter-operator.component.mjs +8 -8
  152. package/{esm2020 → esm2022}/filtering/operators/ends-with-filter-operator.component.mjs +8 -8
  153. package/{esm2020 → esm2022}/filtering/operators/eq-filter-operator.component.mjs +8 -8
  154. package/{esm2020 → esm2022}/filtering/operators/filter-operator.base.mjs +15 -10
  155. package/{esm2020 → esm2022}/filtering/operators/gt-filter-operator.component.mjs +8 -8
  156. package/{esm2020 → esm2022}/filtering/operators/gte-filter-operator.component.mjs +8 -8
  157. package/{esm2020 → esm2022}/filtering/operators/is-empty-filter-operator.component.mjs +8 -8
  158. package/{esm2020 → esm2022}/filtering/operators/is-not-empty-filter-operator.component.mjs +8 -8
  159. package/{esm2020 → esm2022}/filtering/operators/is-not-null-filter-operator.component.mjs +8 -8
  160. package/{esm2020 → esm2022}/filtering/operators/isnull-filter-operator.component.mjs +8 -8
  161. package/{esm2020 → esm2022}/filtering/operators/lt-filter-operator.component.mjs +8 -8
  162. package/{esm2020 → esm2022}/filtering/operators/lte-filter-operator.component.mjs +8 -8
  163. package/{esm2020 → esm2022}/filtering/operators/neq-filter-operator.component.mjs +8 -8
  164. package/{esm2020 → esm2022}/filtering/operators/not-contains-filter-operator.component.mjs +8 -8
  165. package/{esm2020 → esm2022}/filtering/operators/starts-with-filter-operator.component.mjs +8 -8
  166. package/{esm2020 → esm2022}/filtering/shared-filtering.module.mjs +18 -18
  167. package/{esm2020 → esm2022}/filtering/string-filter.component.mjs +20 -15
  168. package/{esm2020 → esm2022}/layout/browser-support.service.mjs +7 -4
  169. package/{esm2020 → esm2022}/layout/resizable.directive.mjs +16 -10
  170. package/{esm2020 → esm2022}/layout/resize.service.mjs +6 -8
  171. package/{esm2020 → esm2022}/layout/responsive.service.mjs +7 -9
  172. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  173. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +9 -8
  174. package/esm2022/localization/messages.mjs +410 -0
  175. package/{esm2020 → esm2022}/navigation/default-focusable-element.mjs +8 -5
  176. package/{esm2020 → esm2022}/navigation/focus-group.mjs +12 -11
  177. package/{esm2020 → esm2022}/navigation/focus-root.mjs +5 -4
  178. package/{esm2020 → esm2022}/navigation/focusable.directive.mjs +18 -10
  179. package/{esm2020 → esm2022}/navigation/item-map.mjs +2 -4
  180. package/{esm2020 → esm2022}/navigation/logical-cell.directive.mjs +35 -22
  181. package/{esm2020 → esm2022}/navigation/logical-row.directive.mjs +19 -13
  182. package/{esm2020 → esm2022}/navigation/model-cell.mjs +11 -0
  183. package/{esm2020 → esm2022}/navigation/navigation-cursor.mjs +10 -8
  184. package/{esm2020 → esm2022}/navigation/navigation-metadata.mjs +13 -6
  185. package/{esm2020 → esm2022}/navigation/navigation-model.mjs +1 -3
  186. package/{esm2020 → esm2022}/navigation/navigation.service.mjs +44 -24
  187. package/{esm2020 → esm2022}/navigation/treelist-focusable-element.mjs +1 -0
  188. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  189. package/{esm2020 → esm2022}/pager/pager-context.service.mjs +6 -4
  190. package/{esm2020 → esm2022}/pager/pager-element.component.mjs +24 -16
  191. package/{esm2020 → esm2022}/pager/pager-info.component.mjs +8 -7
  192. package/{esm2020 → esm2022}/pager/pager-input.component.mjs +43 -39
  193. package/{esm2020 → esm2022}/pager/pager-next-buttons.component.mjs +13 -8
  194. package/{esm2020 → esm2022}/pager/pager-numeric-buttons.component.mjs +18 -8
  195. package/{esm2020 → esm2022}/pager/pager-page-sizes.component.mjs +12 -10
  196. package/{esm2020 → esm2022}/pager/pager-prev-buttons.component.mjs +5 -4
  197. package/{esm2020 → esm2022}/pager/pager-template.directive.mjs +4 -3
  198. package/{esm2020 → esm2022}/pager/pager.component.mjs +84 -70
  199. package/esm2022/pager/pager.module.mjs +43 -0
  200. package/{esm2020 → esm2022}/pdf/pdf-command-tool.directive.mjs +6 -4
  201. package/{esm2020 → esm2022}/pdf/pdf-command.directive.mjs +10 -9
  202. package/{esm2020 → esm2022}/pdf/pdf-margin.component.mjs +3 -3
  203. package/{esm2020 → esm2022}/pdf/pdf-template.directive.mjs +3 -3
  204. package/{esm2020 → esm2022}/pdf/pdf.component.mjs +24 -4
  205. package/{esm2020 → esm2022}/pdf/pdf.module.mjs +4 -4
  206. package/{esm2020 → esm2022}/pdf/pdf.service.mjs +8 -9
  207. package/{esm2020 → esm2022}/pdf/treelist-query.mjs +4 -0
  208. package/{esm2020 → esm2022}/rendering/body.module.mjs +4 -4
  209. package/{esm2020 → esm2022}/rendering/cell-template.directive.mjs +4 -3
  210. package/{esm2020 → esm2022}/rendering/cell.component.mjs +38 -25
  211. package/{esm2020 → esm2022}/rendering/common/col-group.component.mjs +5 -7
  212. package/{esm2020 → esm2022}/rendering/common/field-accessor.pipe.mjs +4 -3
  213. package/{esm2020 → esm2022}/rendering/common/level-items.pipe.mjs +3 -3
  214. package/{esm2020 → esm2022}/rendering/common/loading.component.mjs +9 -8
  215. package/{esm2020 → esm2022}/rendering/common/spacer.component.mjs +11 -6
  216. package/{esm2020 → esm2022}/rendering/footer-template.directive.mjs +4 -3
  217. package/{esm2020 → esm2022}/rendering/header/header-template.directive.mjs +4 -3
  218. package/{esm2020 → esm2022}/rendering/header/header.component.mjs +47 -28
  219. package/{esm2020 → esm2022}/rendering/header/header.module.mjs +4 -4
  220. package/{esm2020 → esm2022}/rendering/list.component.mjs +80 -40
  221. package/{esm2020 → esm2022}/rendering/no-records-template.directive.mjs +4 -3
  222. package/{esm2020 → esm2022}/rendering/table-body.component.mjs +42 -18
  223. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-focusable.directive.mjs +9 -7
  224. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-navigation.service.mjs +9 -8
  225. package/{esm2020 → esm2022}/rendering/toolbar/toolbar-template.directive.mjs +10 -8
  226. package/{esm2020 → esm2022}/rendering/toolbar/toolbar.component.mjs +18 -13
  227. package/{esm2020 → esm2022}/row-reordering/flat-reorder.service.mjs +3 -3
  228. package/{esm2020 → esm2022}/row-reordering/hierarchical-reorder.service.mjs +3 -3
  229. package/{esm2020 → esm2022}/row-reordering/row-reorder.service.mjs +14 -9
  230. package/{esm2020 → esm2022}/scrolling/row-height.service.mjs +2 -0
  231. package/{esm2020 → esm2022}/scrolling/scroll-request.service.mjs +4 -6
  232. package/{esm2020 → esm2022}/scrolling/scroll-sync.service.mjs +10 -8
  233. package/{esm2020 → esm2022}/scrolling/scroller.service.mjs +12 -2
  234. package/{esm2020 → esm2022}/scrolling/suspend.service.mjs +4 -6
  235. package/{esm2020 → esm2022}/selection/marquee.directive.mjs +18 -7
  236. package/{esm2020 → esm2022}/selection/selectable.directive.mjs +23 -17
  237. package/{esm2020 → esm2022}/selection/selection-change-event.mjs +12 -0
  238. package/{esm2020 → esm2022}/selection/selection-state.mjs +2 -6
  239. package/{esm2020 → esm2022}/selection/selection.service.mjs +15 -14
  240. package/{esm2020 → esm2022}/shared.module.mjs +4 -4
  241. package/{esm2020 → esm2022}/treelist.component.mjs +462 -390
  242. package/esm2022/treelist.module.mjs +178 -0
  243. package/excel/excel.component.d.ts +1 -1
  244. package/expand-state/expandable.directive.d.ts +1 -1
  245. package/{fesm2020 → fesm2022}/progress-kendo-angular-treelist.mjs +3819 -2455
  246. package/filtering/base-filter-cell.component.d.ts +5 -1
  247. package/filtering/boolean-filter.component.d.ts +2 -7
  248. package/filtering/cell/autocomplete-filter-cell.component.d.ts +2 -7
  249. package/filtering/cell/date-filter-cell.component.d.ts +1 -1
  250. package/filtering/cell/filter-cell-operators.component.d.ts +1 -1
  251. package/filtering/cell/filter-cell-wrapper.component.d.ts +1 -1
  252. package/filtering/cell/filter-cell.component.d.ts +1 -1
  253. package/filtering/cell/numeric-filter-cell.component.d.ts +1 -1
  254. package/filtering/cell/string-filter-cell.component.d.ts +1 -1
  255. package/filtering/date-filter.component.d.ts +2 -11
  256. package/filtering/filter-host.directive.d.ts +2 -2
  257. package/filtering/filter-input-wrapper.component.d.ts +1 -2
  258. package/filtering/filter-input.directive.d.ts +1 -1
  259. package/filtering/filter-row.component.d.ts +1 -2
  260. package/filtering/filterable.d.ts +1 -1
  261. package/filtering/menu/boolean-filter-menu.component.d.ts +1 -1
  262. package/filtering/menu/date-filter-menu-input.component.d.ts +1 -1
  263. package/filtering/menu/date-filter-menu.component.d.ts +1 -7
  264. package/filtering/menu/filter-menu-container.component.d.ts +1 -1
  265. package/filtering/menu/filter-menu-host.directive.d.ts +1 -1
  266. package/filtering/menu/filter-menu-input-wrapper.component.d.ts +1 -1
  267. package/filtering/menu/filter-menu.component.d.ts +1 -4
  268. package/filtering/menu/filter-radio-button.directive.d.ts +1 -1
  269. package/filtering/menu/numeric-filter-menu-input.component.d.ts +1 -1
  270. package/filtering/menu/numeric-filter-menu.component.d.ts +1 -7
  271. package/filtering/menu/string-filter-menu-input.component.d.ts +1 -1
  272. package/filtering/menu/string-filter-menu.component.d.ts +1 -7
  273. package/filtering/numeric-filter.component.d.ts +2 -11
  274. package/filtering/operators/filter-operator.base.d.ts +1 -1
  275. package/filtering/string-filter.component.d.ts +2 -11
  276. package/layout/resizable.directive.d.ts +1 -1
  277. package/localization/messages.d.ts +1 -1
  278. package/navigation/focusable.directive.d.ts +1 -1
  279. package/navigation/logical-cell.directive.d.ts +1 -1
  280. package/navigation/logical-row.directive.d.ts +1 -1
  281. package/package.json +25 -31
  282. package/pager/pager-context.service.d.ts +1 -1
  283. package/pager/pager-next-buttons.component.d.ts +1 -1
  284. package/pager/pager-numeric-buttons.component.d.ts +1 -1
  285. package/pager/pager-page-sizes.component.d.ts +1 -1
  286. package/pager/pager-settings.d.ts +1 -1
  287. package/pager/pager.component.d.ts +1 -1
  288. package/pdf/pdf-margin.interface.d.ts +1 -1
  289. package/pdf/pdf.component.d.ts +1 -7
  290. package/rendering/cell.component.d.ts +1 -1
  291. package/rendering/common/col-group.component.d.ts +1 -1
  292. package/rendering/common/row-class.d.ts +2 -2
  293. package/rendering/common/spacer.component.d.ts +1 -1
  294. package/rendering/header/header.component.d.ts +1 -1
  295. package/rendering/list.component.d.ts +1 -1
  296. package/rendering/table-body.component.d.ts +1 -1
  297. package/rendering/toolbar/toolbar-template.directive.d.ts +1 -1
  298. package/rendering/toolbar/toolbar.component.d.ts +1 -1
  299. package/row-reordering/types.d.ts +1 -1
  300. package/schematics/ngAdd/index.js +3 -3
  301. package/scrolling/scroll-sync.service.d.ts +1 -1
  302. package/scrolling/scroller.service.d.ts +1 -1
  303. package/scrolling/scrollmode.d.ts +1 -1
  304. package/selection/is-selected.d.ts +1 -1
  305. package/selection/selectable.directive.d.ts +1 -1
  306. package/treelist.component.d.ts +1 -1
  307. package/utils.d.ts +1 -1
  308. package/esm2020/common/dom-events.service.mjs +0 -26
  309. package/esm2020/filtering/cell/row-filtering.module.mjs +0 -77
  310. package/esm2020/filtering/menu/filter-menu.module.mjs +0 -80
  311. package/esm2020/localization/messages.mjs +0 -138
  312. package/esm2020/pager/pager.module.mjs +0 -43
  313. package/esm2020/treelist.module.mjs +0 -178
  314. package/fesm2015/progress-kendo-angular-treelist.mjs +0 -21713
  315. /package/{esm2020 → esm2022}/column-menu/column-menu-settings.interface.mjs +0 -0
  316. /package/{esm2020 → esm2022}/column-menu/utils.mjs +0 -0
  317. /package/{esm2020 → esm2022}/column-resizing/column-resize.interface.mjs +0 -0
  318. /package/{esm2020 → esm2022}/columns/column-common.mjs +0 -0
  319. /package/{esm2020 → esm2022}/columns/sort-settings.mjs +0 -0
  320. /package/{esm2020 → esm2022}/common/cell-click-event-args.interface.mjs +0 -0
  321. /package/{esm2020 → esm2022}/common/create-form-group.mjs +0 -0
  322. /package/{esm2020 → esm2022}/common/default-track-by.mjs +0 -0
  323. /package/{esm2020 → esm2022}/common/filter-descriptor-differ.mjs +0 -0
  324. /package/{esm2020 → esm2022}/common/filter-operator.interface.mjs +0 -0
  325. /package/{esm2020 → esm2022}/common/remove-confirmation.mjs +0 -0
  326. /package/{esm2020 → esm2022}/constants.mjs +0 -0
  327. /package/{esm2020 → esm2022}/data/change-event-args.interface.mjs +0 -0
  328. /package/{esm2020 → esm2022}/data/data-item.interface.mjs +0 -0
  329. /package/{esm2020 → esm2022}/data/treelist-item.interface.mjs +0 -0
  330. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  331. /package/{esm2020 → esm2022}/dragdrop/column-reorder-config.mjs +0 -0
  332. /package/{esm2020 → esm2022}/dragdrop/common.mjs +0 -0
  333. /package/{esm2020 → esm2022}/dragdrop/context-types.mjs +0 -0
  334. /package/{esm2020 → esm2022}/editing/add-event-args.interface.mjs +0 -0
  335. /package/{esm2020 → esm2022}/editing/cancel-event-args.interface.mjs +0 -0
  336. /package/{esm2020 → esm2022}/editing/edit-event-args.interface.mjs +0 -0
  337. /package/{esm2020 → esm2022}/editing/remove-event-args.interface.mjs +0 -0
  338. /package/{esm2020 → esm2022}/editing/save-event-args.interface.mjs +0 -0
  339. /package/{esm2020 → esm2022}/editing-directives/create-form-group-args.interface.mjs +0 -0
  340. /package/{esm2020 → esm2022}/editing-directives/edit-service.interface.mjs +0 -0
  341. /package/{esm2020 → esm2022}/editing-directives/local-edit.service.mjs +0 -0
  342. /package/{esm2020 → esm2022}/editing-directives/utils.mjs +0 -0
  343. /package/{esm2020 → esm2022}/excel/excel-export-data.interface.mjs +0 -0
  344. /package/{esm2020 → esm2022}/filtering/cell/filter-cell-component.factory.mjs +0 -0
  345. /package/{esm2020 → esm2022}/filtering/filter-component.interface.mjs +0 -0
  346. /package/{esm2020 → esm2022}/filtering/filterable.mjs +0 -0
  347. /package/{esm2020 → esm2022}/filtering/menu/filter-menu-component.factory.mjs +0 -0
  348. /package/{esm2020 → esm2022}/index.mjs +0 -0
  349. /package/{esm2020 → esm2022}/layout/row-sync.mjs +0 -0
  350. /package/{esm2020 → esm2022}/navigation/focusable-element.interface.mjs +0 -0
  351. /package/{esm2020 → esm2022}/navigation/logical-cell.interface.mjs +0 -0
  352. /package/{esm2020 → esm2022}/navigation/logical-row.interface.mjs +0 -0
  353. /package/{esm2020 → esm2022}/navigation/navigation-cell.interface.mjs +0 -0
  354. /package/{esm2020 → esm2022}/navigation/navigation-change.interface.mjs +0 -0
  355. /package/{esm2020 → esm2022}/navigation/navigation-mode.mjs +0 -0
  356. /package/{esm2020 → esm2022}/navigation/navigation-row.interface.mjs +0 -0
  357. /package/{esm2020 → esm2022}/pager/pager-settings.mjs +0 -0
  358. /package/{esm2020 → esm2022}/pager/pagesize-item.interface.mjs +0 -0
  359. /package/{esm2020 → esm2022}/pdf/export-element.mjs +0 -0
  360. /package/{esm2020 → esm2022}/pdf/pdf-export-event.mjs +0 -0
  361. /package/{esm2020 → esm2022}/pdf/pdf-margin.interface.mjs +0 -0
  362. /package/{esm2020 → esm2022}/progress-kendo-angular-treelist.mjs +0 -0
  363. /package/{esm2020 → esm2022}/rendering/common/dom-queries.mjs +0 -0
  364. /package/{esm2020 → esm2022}/rendering/common/row-class.mjs +0 -0
  365. /package/{esm2020 → esm2022}/rendering/constants.mjs +0 -0
  366. /package/{esm2020 → esm2022}/row-reordering/types.mjs +0 -0
  367. /package/{esm2020 → esm2022}/row-reordering/utils.mjs +0 -0
  368. /package/{esm2020 → esm2022}/scrolling/content-scroll-event.mjs +0 -0
  369. /package/{esm2020 → esm2022}/scrolling/scroll-bottom-event.mjs +0 -0
  370. /package/{esm2020 → esm2022}/scrolling/scrollmode.mjs +0 -0
  371. /package/{esm2020 → esm2022}/selection/is-selected.mjs +0 -0
  372. /package/{esm2020 → esm2022}/selection/selectable-settings.mjs +0 -0
  373. /package/{esm2020 → esm2022}/utils.mjs +0 -0
@@ -6,7 +6,6 @@ import { Component, Input, HostBinding } from '@angular/core';
6
6
  import { NgIf } from '@angular/common';
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
9
- import { ColumnComponent } from "../../columns/column.component";
10
9
  import { FilterService } from '../filter.service';
11
10
  import { NumericFilterComponent } from '../numeric-filter.component';
12
11
  import { setFilter, logicOperators } from '../base-filter-cell.component';
@@ -30,36 +29,40 @@ import * as i1 from "@progress/kendo-angular-l10n";
30
29
  * ```
31
30
  */
32
31
  export class NumericFilterMenuComponent extends NumericFilterComponent {
33
- constructor(localization) {
34
- super(null, localization);
35
- this.logicOperators = logicOperators(this.localization);
36
- /**
37
- * The current menu filter.
38
- * @type {CompositeFilterDescriptor}
39
- */
40
- this.filter = { filters: [], logic: "and" };
41
- /**
42
- * Determines if the inputs of second criteria will displayed.
43
- * @default true
44
- */
45
- this.extra = true;
46
- /**
47
- * The placeholder text for the filter input.
48
- * @type {string}
49
- */
50
- this.placeholder = '';
51
- /**
52
- * The placeholder text for the extra filter input. Applies when `extra` is set to `true`.
53
- * @type {string}
54
- */
55
- this.extraPlaceholder = '';
56
- }
32
+ logicOperators = logicOperators(this.localization);
57
33
  /**
58
34
  * @hidden
59
35
  */
60
36
  get hostClasses() {
61
37
  return false;
62
38
  }
39
+ /**
40
+ * The current menu filter.
41
+ * @type {CompositeFilterDescriptor}
42
+ */
43
+ filter = { filters: [], logic: "and" };
44
+ /**
45
+ * Determines if the inputs of second criteria will displayed.
46
+ * @default true
47
+ */
48
+ extra = true;
49
+ /**
50
+ * The `FilterService` instance which is responsible for handling the changes in the filter descriptor.
51
+ */
52
+ filterService;
53
+ /**
54
+ * The placeholder text for the filter input.
55
+ * @type {string}
56
+ */
57
+ placeholder = '';
58
+ /**
59
+ * The placeholder text for the extra filter input. Applies when `extra` is set to `true`.
60
+ * @type {string}
61
+ */
62
+ extraPlaceholder = '';
63
+ constructor(localization) {
64
+ super(null, localization);
65
+ }
63
66
  get firstFilter() {
64
67
  return setFilter(0, this.filter, (this.column || {}).field, this.operator);
65
68
  }
@@ -73,9 +76,8 @@ export class NumericFilterMenuComponent extends NumericFilterComponent {
73
76
  this.logicOperators = logicOperators(this.localization);
74
77
  super.localizationChange();
75
78
  }
76
- }
77
- NumericFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericFilterMenuComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
78
- NumericFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: NumericFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-numeric-filter-menu", inputs: { column: "column", filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
79
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
80
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: NumericFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-numeric-filter-menu", inputs: { filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
79
81
  <kendo-treelist-numeric-filter-menu-input
80
82
  [currentFilter]="firstFilter"
81
83
  [operators]="operators"
@@ -118,7 +120,8 @@ NumericFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
118
120
  >
119
121
  </kendo-treelist-numeric-filter-menu-input>
120
122
  `, isInline: true, dependencies: [{ kind: "component", type: NumericFilterMenuInputComponent, selector: "kendo-treelist-numeric-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder", "step", "min", "max", "spinners", "decimals", "format"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
123
+ }
124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterMenuComponent, decorators: [{
122
125
  type: Component,
123
126
  args: [{
124
127
  selector: 'kendo-treelist-numeric-filter-menu',
@@ -171,8 +174,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
171
174
  }], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClasses: [{
172
175
  type: HostBinding,
173
176
  args: ['class.k-filtercell']
174
- }], column: [{
175
- type: Input
176
177
  }], filter: [{
177
178
  type: Input
178
179
  }], extra: [{
@@ -18,18 +18,24 @@ import * as i2 from "@angular/forms";
18
18
  * @hidden
19
19
  */
20
20
  export class StringFilterMenuInputComponent {
21
+ localization;
22
+ operators = [];
23
+ column;
24
+ filter;
25
+ operator;
26
+ currentFilter;
27
+ filterService;
28
+ placeholder;
21
29
  constructor(localization) {
22
30
  this.localization = localization;
23
- this.operators = [];
24
31
  }
25
32
  get columnLabel() {
26
33
  const localizationMsg = this.localization.get('filterInputLabel') || '';
27
34
  const columnName = this.column ? this.column.title || this.column.field : '';
28
35
  return replaceMessagePlaceholder(localizationMsg, 'columnName', columnName);
29
36
  }
30
- }
31
- StringFilterMenuInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StringFilterMenuInputComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
32
- StringFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: StringFilterMenuInputComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService", placeholder: "placeholder" }, ngImport: i0, template: `
37
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuInputComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
38
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StringFilterMenuInputComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu-input", inputs: { operators: "operators", column: "column", filter: "filter", operator: "operator", currentFilter: "currentFilter", filterService: "filterService", placeholder: "placeholder" }, ngImport: i0, template: `
33
39
  <kendo-treelist-filter-menu-input-wrapper
34
40
  [column]="column"
35
41
  [filter]="filter"
@@ -47,7 +53,8 @@ StringFilterMenuInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
47
53
  [ngModel]="currentFilter?.value" />
48
54
  </kendo-treelist-filter-menu-input-wrapper>
49
55
  `, isInline: true, dependencies: [{ kind: "component", type: FilterMenuInputWrapperComponent, selector: "kendo-treelist-filter-menu-input-wrapper", inputs: ["filterService", "currentFilter"] }, { kind: "directive", type: TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: FilterInputDirective, selector: "[kendoFilterInput]", inputs: ["filterDelay", "columnLabel", "column", "value"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
50
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StringFilterMenuInputComponent, decorators: [{
56
+ }
57
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuInputComponent, decorators: [{
51
58
  type: Component,
52
59
  args: [{
53
60
  selector: 'kendo-treelist-string-filter-menu-input',
@@ -5,7 +5,6 @@
5
5
  import { Component, Input, HostBinding } from '@angular/core';
6
6
  import { NgIf } from '@angular/common';
7
7
  import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
8
- import { ColumnComponent } from "../../columns/column.component";
9
8
  import { StringFilterComponent } from '../string-filter.component';
10
9
  import { FilterService } from '../filter.service';
11
10
  import { LocalizationService } from '@progress/kendo-angular-l10n';
@@ -32,26 +31,40 @@ import * as i1 from "@progress/kendo-angular-l10n";
32
31
  *
33
32
  */
34
33
  export class StringFilterMenuComponent extends StringFilterComponent {
35
- constructor(localization) {
36
- super(null, localization);
37
- this.logicOperators = logicOperators(this.localization);
38
- /**
39
- * The current menu filter.
40
- * @type {CompositeFilterDescriptor}
41
- */
42
- this.filter = { filters: [], logic: "and" };
43
- /**
44
- * Determines if the inputs of second criteria will displayed.
45
- * @default true
46
- */
47
- this.extra = true;
48
- }
34
+ logicOperators = logicOperators(this.localization);
49
35
  /**
50
36
  * @hidden
51
37
  */
52
38
  get hostClasses() {
53
39
  return false;
54
40
  }
41
+ /**
42
+ * The current menu filter.
43
+ * @type {CompositeFilterDescriptor}
44
+ */
45
+ filter = { filters: [], logic: "and" };
46
+ /**
47
+ * Determines if the inputs of second criteria will displayed.
48
+ * @default true
49
+ */
50
+ extra = true;
51
+ /**
52
+ * The `FilterService` instance which is responsible for handling the changes in the filter descriptor.
53
+ */
54
+ filterService;
55
+ /**
56
+ * The placeholder text for the filter input.
57
+ * @type {string}
58
+ */
59
+ placeholder;
60
+ /**
61
+ * The placeholder text for the extra filter input. Applies when `extra` is set to `true`.
62
+ * @type {string}
63
+ */
64
+ extraPlaceholder;
65
+ constructor(localization) {
66
+ super(null, localization);
67
+ }
55
68
  get firstFilter() {
56
69
  return setFilter(0, this.filter, (this.column || {}).field, this.operator);
57
70
  }
@@ -65,9 +78,8 @@ export class StringFilterMenuComponent extends StringFilterComponent {
65
78
  this.logicOperators = logicOperators(this.localization);
66
79
  super.localizationChange();
67
80
  }
68
- }
69
- StringFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StringFilterMenuComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
70
- StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: StringFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu", inputs: { column: "column", filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
81
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
82
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: StringFilterMenuComponent, isStandalone: true, selector: "kendo-treelist-string-filter-menu", inputs: { filter: "filter", extra: "extra", filterService: "filterService", placeholder: "placeholder", extraPlaceholder: "extraPlaceholder" }, host: { properties: { "class.k-filtercell": "this.hostClasses" } }, usesInheritance: true, ngImport: i0, template: `
71
83
  <kendo-treelist-string-filter-menu-input
72
84
  [currentFilter]="firstFilter"
73
85
  [operators]="operators"
@@ -95,7 +107,8 @@ StringFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
95
107
  [placeholder]="extraPlaceholder">
96
108
  </kendo-treelist-string-filter-menu-input>
97
109
  `, isInline: true, dependencies: [{ kind: "component", type: StringFilterMenuInputComponent, selector: "kendo-treelist-string-filter-menu-input", inputs: ["operators", "column", "filter", "operator", "currentFilter", "filterService", "placeholder"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }] });
98
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
110
+ }
111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
99
112
  type: Component,
100
113
  args: [{
101
114
  selector: 'kendo-treelist-string-filter-menu',
@@ -133,8 +146,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
133
146
  }], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClasses: [{
134
147
  type: HostBinding,
135
148
  args: ['class.k-filtercell']
136
- }], column: [{
137
- type: Input
138
149
  }], filter: [{
139
150
  type: Input
140
151
  }], extra: [{
@@ -26,29 +26,47 @@ const numericOperators = localizeOperators({
26
26
  * Represents a base numeric filter component.
27
27
  */
28
28
  export class NumericFilterComponent extends BaseFilterCellComponent {
29
- constructor(filterService, localization) {
30
- super(filterService);
31
- this.localization = localization;
32
- /**
33
- * The default filter operator.
34
- * @type {string}
35
- * @default 'eq'
36
- */
37
- this.operator = "eq";
38
- /**
39
- * Specifies the value that is used to increment or decrement the component value.
40
- * @type {numeric}
41
- * @default 1
42
- */
43
- this.step = 1;
44
- /**
45
- * Specifies whether the **Up** and **Down** spin buttons will be rendered.
46
- * @type {boolean}
47
- * @default true
48
- */
49
- this.spinners = true;
50
- this.defaultOperators = numericOperators(this.localization);
51
- }
29
+ localization;
30
+ /**
31
+ * The column with which the filter is associated.
32
+ * @type {ColumnComponent}
33
+ */
34
+ column;
35
+ /**
36
+ * The default filter operator.
37
+ * @type {string}
38
+ * @default 'eq'
39
+ */
40
+ operator = "eq";
41
+ /**
42
+ * Specifies the value that is used to increment or decrement the component value.
43
+ * @type {numeric}
44
+ * @default 1
45
+ */
46
+ step = 1;
47
+ /**
48
+ * Specifies the smallest value that is valid.
49
+ * @type {number}
50
+ */
51
+ min;
52
+ /**
53
+ * Specifies the greatest value that is valid.
54
+ * @type {number}
55
+ */
56
+ max;
57
+ /**
58
+ * Specifies whether the **Up** and **Down** spin buttons will be rendered.
59
+ * @type {boolean}
60
+ * @default true
61
+ */
62
+ spinners = true;
63
+ /**
64
+ * Specifies the number precision applied to the component value when it is focused.
65
+ * If the user enters a number with a greater precision than is currently configured, the component value is rounded.
66
+ *
67
+ * @type {number}
68
+ */
69
+ decimals;
52
70
  /**
53
71
  * Specifies the number format used when the component is not focused.
54
72
  * By default, the `column.format` value is used (if set).
@@ -79,6 +97,13 @@ export class NumericFilterComponent extends BaseFilterCellComponent {
79
97
  return this.column && !isNullOrEmptyString(this.column.format) ?
80
98
  extractFormat(this.column.format) : "n2";
81
99
  }
100
+ _format;
101
+ subscription;
102
+ constructor(filterService, localization) {
103
+ super(filterService);
104
+ this.localization = localization;
105
+ this.defaultOperators = numericOperators(this.localization);
106
+ }
82
107
  ngOnInit() {
83
108
  this.subscription = this.localization.changes.subscribe(this.localizationChange.bind(this));
84
109
  }
@@ -94,16 +119,14 @@ export class NumericFilterComponent extends BaseFilterCellComponent {
94
119
  this.operators = toJSON(this.operatorList.toArray());
95
120
  }
96
121
  }
122
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterComponent, deps: [{ token: i1.FilterService }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
123
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NumericFilterComponent, inputs: { column: "column", operator: "operator", step: "step", min: "min", max: "max", spinners: "spinners", decimals: "decimals", format: "format" }, usesInheritance: true, ngImport: i0 });
97
124
  }
98
- NumericFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericFilterComponent, deps: [{ token: i1.FilterService }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
99
- NumericFilterComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: NumericFilterComponent, inputs: { column: "column", filter: "filter", operator: "operator", step: "step", min: "min", max: "max", spinners: "spinners", decimals: "decimals", format: "format" }, usesInheritance: true, ngImport: i0 });
100
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericFilterComponent, decorators: [{
125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NumericFilterComponent, decorators: [{
101
126
  type: Directive,
102
127
  args: [{}]
103
128
  }], ctorParameters: function () { return [{ type: i1.FilterService }, { type: i2.LocalizationService }]; }, propDecorators: { column: [{
104
129
  type: Input
105
- }], filter: [{
106
- type: Input
107
130
  }], operator: [{
108
131
  type: Input
109
132
  }], step: [{
@@ -22,15 +22,15 @@ export class AfterEqFilterOperatorComponent extends FilterOperatorBase {
22
22
  value: "gte"
23
23
  };
24
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterEqFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
26
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AfterEqFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-after-eq-operator", providers: [
27
+ {
28
+ provide: FilterOperatorBase,
29
+ useExisting: forwardRef(() => AfterEqFilterOperatorComponent)
30
+ }
31
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
25
32
  }
26
- AfterEqFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AfterEqFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
27
- AfterEqFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AfterEqFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-after-eq-operator", providers: [
28
- {
29
- provide: FilterOperatorBase,
30
- useExisting: forwardRef(() => AfterEqFilterOperatorComponent)
31
- }
32
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AfterEqFilterOperatorComponent, decorators: [{
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterEqFilterOperatorComponent, decorators: [{
34
34
  type: Component,
35
35
  args: [{
36
36
  providers: [
@@ -22,15 +22,15 @@ export class AfterFilterOperatorComponent extends FilterOperatorBase {
22
22
  value: "gt"
23
23
  };
24
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
26
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AfterFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-after-operator", providers: [
27
+ {
28
+ provide: FilterOperatorBase,
29
+ useExisting: forwardRef(() => AfterFilterOperatorComponent)
30
+ }
31
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
25
32
  }
26
- AfterFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AfterFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
27
- AfterFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: AfterFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-after-operator", providers: [
28
- {
29
- provide: FilterOperatorBase,
30
- useExisting: forwardRef(() => AfterFilterOperatorComponent)
31
- }
32
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AfterFilterOperatorComponent, decorators: [{
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AfterFilterOperatorComponent, decorators: [{
34
34
  type: Component,
35
35
  args: [{
36
36
  providers: [
@@ -22,15 +22,15 @@ export class BeforeEqFilterOperatorComponent extends FilterOperatorBase {
22
22
  value: "lte"
23
23
  };
24
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeEqFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
26
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BeforeEqFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-before-eq-operator", providers: [
27
+ {
28
+ provide: FilterOperatorBase,
29
+ useExisting: forwardRef(() => BeforeEqFilterOperatorComponent)
30
+ }
31
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
25
32
  }
26
- BeforeEqFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BeforeEqFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
27
- BeforeEqFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BeforeEqFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-before-eq-operator", providers: [
28
- {
29
- provide: FilterOperatorBase,
30
- useExisting: forwardRef(() => BeforeEqFilterOperatorComponent)
31
- }
32
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BeforeEqFilterOperatorComponent, decorators: [{
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeEqFilterOperatorComponent, decorators: [{
34
34
  type: Component,
35
35
  args: [{
36
36
  providers: [
@@ -22,15 +22,15 @@ export class BeforeFilterOperatorComponent extends FilterOperatorBase {
22
22
  value: "lt"
23
23
  };
24
24
  }
25
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
26
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: BeforeFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-before-operator", providers: [
27
+ {
28
+ provide: FilterOperatorBase,
29
+ useExisting: forwardRef(() => BeforeFilterOperatorComponent)
30
+ }
31
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
25
32
  }
26
- BeforeFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BeforeFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
27
- BeforeFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BeforeFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-before-operator", providers: [
28
- {
29
- provide: FilterOperatorBase,
30
- useExisting: forwardRef(() => BeforeFilterOperatorComponent)
31
- }
32
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BeforeFilterOperatorComponent, decorators: [{
33
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BeforeFilterOperatorComponent, decorators: [{
34
34
  type: Component,
35
35
  args: [{
36
36
  providers: [
@@ -13,15 +13,15 @@ import * as i1 from "@progress/kendo-angular-l10n";
13
13
  */
14
14
  export class ContainsFilterOperatorComponent extends FilterOperatorBase {
15
15
  constructor(localization) { super("contains", localization); }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContainsFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ContainsFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-contains-operator", providers: [
18
+ {
19
+ provide: FilterOperatorBase,
20
+ useExisting: forwardRef(() => ContainsFilterOperatorComponent)
21
+ }
22
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
16
23
  }
17
- ContainsFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContainsFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18
- ContainsFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ContainsFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-contains-operator", providers: [
19
- {
20
- provide: FilterOperatorBase,
21
- useExisting: forwardRef(() => ContainsFilterOperatorComponent)
22
- }
23
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ContainsFilterOperatorComponent, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ContainsFilterOperatorComponent, decorators: [{
25
25
  type: Component,
26
26
  args: [{
27
27
  providers: [
@@ -13,15 +13,15 @@ import * as i1 from "@progress/kendo-angular-l10n";
13
13
  */
14
14
  export class EndsWithFilterOperatorComponent extends FilterOperatorBase {
15
15
  constructor(localization) { super("endswith", localization); }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EndsWithFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EndsWithFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-endswith-operator", providers: [
18
+ {
19
+ provide: FilterOperatorBase,
20
+ useExisting: forwardRef(() => EndsWithFilterOperatorComponent)
21
+ }
22
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
16
23
  }
17
- EndsWithFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EndsWithFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18
- EndsWithFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EndsWithFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-endswith-operator", providers: [
19
- {
20
- provide: FilterOperatorBase,
21
- useExisting: forwardRef(() => EndsWithFilterOperatorComponent)
22
- }
23
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EndsWithFilterOperatorComponent, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EndsWithFilterOperatorComponent, decorators: [{
25
25
  type: Component,
26
26
  args: [{
27
27
  providers: [
@@ -13,15 +13,15 @@ import * as i1 from "@progress/kendo-angular-l10n";
13
13
  */
14
14
  export class EqualFilterOperatorComponent extends FilterOperatorBase {
15
15
  constructor(localization) { super("eq", localization); }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EqualFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: EqualFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-eq-operator", providers: [
18
+ {
19
+ provide: FilterOperatorBase,
20
+ useExisting: forwardRef(() => EqualFilterOperatorComponent)
21
+ }
22
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
16
23
  }
17
- EqualFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EqualFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18
- EqualFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EqualFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-eq-operator", providers: [
19
- {
20
- provide: FilterOperatorBase,
21
- useExisting: forwardRef(() => EqualFilterOperatorComponent)
22
- }
23
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EqualFilterOperatorComponent, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EqualFilterOperatorComponent, decorators: [{
25
25
  type: Component,
26
26
  args: [{
27
27
  providers: [
@@ -39,13 +39,8 @@ export const toJSON = (xs) => xs.map(x => x.toJSON());
39
39
  * @hidden
40
40
  */
41
41
  export class FilterOperatorBase {
42
- constructor(operator, localization) {
43
- this.operator = operator;
44
- this.localization = localization;
45
- this.messages = operatorTexts(this.localization);
46
- this._text = this.messages[this.operator];
47
- this.subscription = this.localization.changes.subscribe(this.refreshText.bind(this));
48
- }
42
+ operator;
43
+ localization;
49
44
  /**
50
45
  * The text that will be displayed in the drop-down list.
51
46
  * @readonly
@@ -58,6 +53,16 @@ export class FilterOperatorBase {
58
53
  set text(value) {
59
54
  this._text = isNullOrEmptyString(value) ? this.messages[this.operator] : value;
60
55
  }
56
+ subscription;
57
+ messages;
58
+ _text;
59
+ constructor(operator, localization) {
60
+ this.operator = operator;
61
+ this.localization = localization;
62
+ this.messages = operatorTexts(this.localization);
63
+ this._text = this.messages[this.operator];
64
+ this.subscription = this.localization.changes.subscribe(this.refreshText.bind(this));
65
+ }
61
66
  ngOnDestroy() {
62
67
  if (this.subscription) {
63
68
  this.subscription.unsubscribe();
@@ -79,10 +84,10 @@ export class FilterOperatorBase {
79
84
  this._text = this.messages[this.operator];
80
85
  }
81
86
  }
87
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterOperatorBase, deps: [{ token: 'filterOperator' }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
88
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FilterOperatorBase, inputs: { text: "text" }, ngImport: i0 });
82
89
  }
83
- FilterOperatorBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterOperatorBase, deps: [{ token: 'filterOperator' }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
84
- FilterOperatorBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: FilterOperatorBase, inputs: { text: "text" }, ngImport: i0 });
85
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FilterOperatorBase, decorators: [{
90
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FilterOperatorBase, decorators: [{
86
91
  type: Directive,
87
92
  args: [{}]
88
93
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
@@ -13,15 +13,15 @@ import * as i1 from "@progress/kendo-angular-l10n";
13
13
  */
14
14
  export class GreaterFilterOperatorComponent extends FilterOperatorBase {
15
15
  constructor(localization) { super("gt", localization); }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GreaterFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GreaterFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-gt-operator", providers: [
18
+ {
19
+ provide: FilterOperatorBase,
20
+ useExisting: forwardRef(() => GreaterFilterOperatorComponent)
21
+ }
22
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
16
23
  }
17
- GreaterFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GreaterFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18
- GreaterFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GreaterFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-gt-operator", providers: [
19
- {
20
- provide: FilterOperatorBase,
21
- useExisting: forwardRef(() => GreaterFilterOperatorComponent)
22
- }
23
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GreaterFilterOperatorComponent, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GreaterFilterOperatorComponent, decorators: [{
25
25
  type: Component,
26
26
  args: [{
27
27
  providers: [
@@ -13,15 +13,15 @@ import * as i1 from "@progress/kendo-angular-l10n";
13
13
  */
14
14
  export class GreaterOrEqualToFilterOperatorComponent extends FilterOperatorBase {
15
15
  constructor(localization) { super("gte", localization); }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GreaterOrEqualToFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
17
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: GreaterOrEqualToFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-gte-operator", providers: [
18
+ {
19
+ provide: FilterOperatorBase,
20
+ useExisting: forwardRef(() => GreaterOrEqualToFilterOperatorComponent)
21
+ }
22
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
16
23
  }
17
- GreaterOrEqualToFilterOperatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GreaterOrEqualToFilterOperatorComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
18
- GreaterOrEqualToFilterOperatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GreaterOrEqualToFilterOperatorComponent, isStandalone: true, selector: "kendo-treelist-filter-gte-operator", providers: [
19
- {
20
- provide: FilterOperatorBase,
21
- useExisting: forwardRef(() => GreaterOrEqualToFilterOperatorComponent)
22
- }
23
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GreaterOrEqualToFilterOperatorComponent, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GreaterOrEqualToFilterOperatorComponent, decorators: [{
25
25
  type: Component,
26
26
  args: [{
27
27
  providers: [