mn-angular-lib 0.0.66 → 0.0.68
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
|
@@ -1057,6 +1057,8 @@ interface MnTextareaProps {
|
|
|
1057
1057
|
name?: string;
|
|
1058
1058
|
/** Label text displayed above the textarea */
|
|
1059
1059
|
label?: string;
|
|
1060
|
+
/** Placeholder text shown inside the textarea when empty */
|
|
1061
|
+
placeholder?: string;
|
|
1060
1062
|
/** Number of visible text rows */
|
|
1061
1063
|
rows?: number;
|
|
1062
1064
|
/** Number of visible text columns */
|
|
@@ -1801,6 +1803,12 @@ interface ColumnDefinition<T> {
|
|
|
1801
1803
|
filterOptions?: ColumnFilterOption[];
|
|
1802
1804
|
/** Placeholder text for the filter input. */
|
|
1803
1805
|
filterPlaceholder?: string;
|
|
1806
|
+
/** Whether the filter input is disabled. */
|
|
1807
|
+
filterDisabled?: boolean;
|
|
1808
|
+
/** Autocomplete attribute for the filter input. */
|
|
1809
|
+
filterAutocomplete?: string;
|
|
1810
|
+
/** Maximum character length for text filter inputs. */
|
|
1811
|
+
filterMaxLength?: number;
|
|
1804
1812
|
/** Custom filter function. Receives the row and the current filter value. */
|
|
1805
1813
|
filterFn?: (row: T, filterValue: string) => boolean;
|
|
1806
1814
|
}
|