@meshmakers/shared-ui 3.4.490 → 3.4.510

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/shared-ui",
3
- "version": "3.4.490",
3
+ "version": "3.4.510",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0",
@@ -1058,6 +1058,9 @@ declare class MmListViewDataBindingDirective extends DataBindingDirective implem
1058
1058
  /**
1059
1059
  * Triggers a rebind when the filter state changes programmatically.
1060
1060
  * Syncs the grid's filter into the DataBindingDirective state before rebinding.
1061
+ * Resets `skip` to page 1: a changed filter changes the result set, so the
1062
+ * current page offset would point into stale data or past the end (Kendo's
1063
+ * own filter-row path does the same reset via its dataStateChange event).
1061
1064
  */
1062
1065
  notifyFilterChange(filter: CompositeFilterDescriptor): void;
1063
1066
  /**