You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

Copy file name to clipboardexpand all lines: package.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "mat-datatable",
3
-
"version": "17.2.3",
3
+
"version": "17.2.4",
4
4
"description": "A component for Angular using Angular Material that implements a table as a simplified replacement for ngx-datatable. The project contains a library component and a demo project.",
Copy file name to clipboardexpand all lines: projects/mat-datatable-lib/CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

@@ -50,6 +50,7 @@ A simple data table with virtual scrolling using Angular Material.
50
50
</ul>
51
51
</li>
52
52
<li><a href="#license">License</a></li>
53
+
<li><a href="#hints">Hints</a></li>
53
54
</ol>
54
55
</details>
55
56
@@ -264,7 +265,7 @@ The component is generic; the given type is used to define the object for the ro
264
265
265
266
| Name | Description |
266
267
|------|-------------|
267
-
| `filterDefinitions:FieldFilterDefinition\<T>[]` | Gets / sets the current filter definition. |
268
+
| `filterDefinitions:FieldFilterDefinition<T>[]` | Gets / sets the current filter definition. |
268
269
| | |
269
270
270
271
##### **Methods**
@@ -287,7 +288,7 @@ The component is generic; the given type is used to define the object for the ro
287
288
288
289
#### DataStoreProvider
289
290
290
-
Component to create an angular material table based datatable.
291
+
Interface for a component that fetches data from the datastore respecting sorting and filtering.
291
292
The component is generic; the given type is used to define the object for the row data.
292
293
293
294
##### **Methods**
@@ -339,7 +340,7 @@ Interface for the definition of the sorting of 1 table column.
339
340
| `direction:SortDirection` | The direction used to sort the column. |
340
341
| | |
341
342
342
-
#### Page
343
+
#### RequestRowsRange
343
344
344
345
Interface defining the properties of a requests for a range of rows.
345
346
@@ -351,7 +352,7 @@ Interface defining the properties of a requests for a range of rows.
351
352
| `numberOfRows:number` | The number of rows to return. |
352
353
| | |
353
354
354
-
#### RequestRowsRange
355
+
#### Page
355
356
356
357
Interface defining the properties of a page of rows returned from the datastore.
357
358
@@ -376,7 +377,7 @@ The alignment of the content of a column
376
377
377
378
| |
378
379
|------|
379
-
| type ColumnAlignmentType = "left" | "center" | "right"; |
380
+
| type ColumnAlignmentType = "left" \| "center" \| "right"; |
380
381
| |
381
382
382
383
#### FieldFilterDefinition
@@ -1096,3 +1097,9 @@ Distributed under the MIT License. See `LICENSE` for more information.
1096
1097
This project uses the fonts '[Roboto](https://fonts.google.com/specimen/Roboto/about)' and '[Material Icons](https://github.com/google/material-design-icons)' from the [Google Fonts Library](https://fonts.google.com/) that are licensed under the [Apache License Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt).
1097
1098
1098
1099
<palign="right">(<ahref="#top">back to top</a>)</p>
1100
+
1101
+
<!-- HINTS -->
1102
+
## Hints
1103
+
As `eslint` V9 requires a fundamental change to the configuration files, the update will be done in a later version.
1104
+
1105
+
<palign="right">(<ahref="#top">back to top</a>)</p>
Copy file name to clipboardexpand all lines: projects/mat-datatable-lib/package.json
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "mat-datatable",
3
-
"version": "17.2.3",
3
+
"version": "17.2.4",
4
4
"description": "A component for Angular using Angular Material that implements a table as a simplified replacement for ngx-datatable. The project contains a library component and a demo project.",
0 commit comments