mn-angular-lib 0.0.66 → 0.0.67

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": "mn-angular-lib",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -1801,6 +1801,12 @@ interface ColumnDefinition<T> {
1801
1801
  filterOptions?: ColumnFilterOption[];
1802
1802
  /** Placeholder text for the filter input. */
1803
1803
  filterPlaceholder?: string;
1804
+ /** Whether the filter input is disabled. */
1805
+ filterDisabled?: boolean;
1806
+ /** Autocomplete attribute for the filter input. */
1807
+ filterAutocomplete?: string;
1808
+ /** Maximum character length for text filter inputs. */
1809
+ filterMaxLength?: number;
1804
1810
  /** Custom filter function. Receives the row and the current filter value. */
1805
1811
  filterFn?: (row: T, filterValue: string) => boolean;
1806
1812
  }