Skip to content

Commit

Permalink
chore(release): 17.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BePo65 committed Jul 2, 2024
1 parent 3b49a52 commit 86cbc4c
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.

## [17.2.4](https://github.com/BePo65/mat-datatable/compare/v17.2.3...v17.2.4) (2024-07-02)

## [17.2.3](https://github.com/BePo65/mat-datatable/compare/v17.2.2...v17.2.3) (2024-03-06)

## [17.2.2](https://github.com/BePo65/mat-datatable/compare/v17.2.1...v17.2.2) (2024-03-06)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A simple data table with virtual scrolling using Angular Material.

![Version](https://img.shields.io/badge/version-17.2.3-blue.svg?cacheSeconds=2592000)
![Version](https://img.shields.io/badge/version-17.2.4-blue.svg?cacheSeconds=2592000)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)]
![Angular version](https://img.shields.io/github/package-json/dependency-version/bepo65/mat-datatable/@angular/core?color=red&label=Angular&logo=angular&logoColor=red)
![GitHub package.json dependency version (prod)](https://img.shields.io/github/package-json/dependency-version/bepo65/mat-datatable/@angular/material?color=red&label=Angular-Material&logo=angular&logoColor=red)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mat-datatable",
"version": "17.2.3",
"version": "17.2.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.",
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions projects/mat-datatable-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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.

## [17.2.4](https://github.com/BePo65/mat-datatable/compare/v17.2.3...v17.2.4) (2024-07-02)

## [17.2.3](https://github.com/BePo65/mat-datatable/compare/v17.2.2...v17.2.3) (2024-03-06)

## [17.2.2](https://github.com/BePo65/mat-datatable/compare/v17.2.1...v17.2.2) (2024-03-06)
Expand Down
19 changes: 13 additions & 6 deletions projects/mat-datatable-lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A simple data table with virtual scrolling using Angular Material.

![Version](https://img.shields.io/badge/version-17.2.3-blue.svg?cacheSeconds=2592000)
![Version](https://img.shields.io/badge/version-17.2.4-blue.svg?cacheSeconds=2592000)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)]
![Angular version](https://img.shields.io/github/package-json/dependency-version/bepo65/mat-datatable/@angular/core?color=red&label=Angular&logo=angular&logoColor=red)
![GitHub package.json dependency version (prod)](https://img.shields.io/github/package-json/dependency-version/bepo65/mat-datatable/@angular/material?color=red&label=Angular-Material&logo=angular&logoColor=red)
Expand Down Expand Up @@ -50,6 +50,7 @@ A simple data table with virtual scrolling using Angular Material.
</ul>
</li>
<li><a href="#license">License</a></li>
<li><a href="#hints">Hints</a></li>
</ol>
</details>

Expand Down Expand Up @@ -264,7 +265,7 @@ The component is generic; the given type is used to define the object for the ro
| Name | Description |
|------|-------------|
| `filterDefinitions: FieldFilterDefinition\<T>[]` | Gets / sets the current filter definition. |
| `filterDefinitions: FieldFilterDefinition<T>[]` | Gets / sets the current filter definition. |
| | |
##### **Methods**
Expand All @@ -287,7 +288,7 @@ The component is generic; the given type is used to define the object for the ro
#### DataStoreProvider
Component to create an angular material table based datatable.
Interface for a component that fetches data from the datastore respecting sorting and filtering.
The component is generic; the given type is used to define the object for the row data.
##### **Methods**
Expand Down Expand Up @@ -339,7 +340,7 @@ Interface for the definition of the sorting of 1 table column.
| `direction: SortDirection` | The direction used to sort the column. |
| | |
#### Page
#### RequestRowsRange
Interface defining the properties of a requests for a range of rows.
Expand All @@ -351,7 +352,7 @@ Interface defining the properties of a requests for a range of rows.
| `numberOfRows: number` | The number of rows to return. |
| | |
#### RequestRowsRange
#### Page
Interface defining the properties of a page of rows returned from the datastore.
Expand All @@ -376,7 +377,7 @@ The alignment of the content of a column
| |
|------|
| type ColumnAlignmentType = "left" | "center" | "right"; |
| type ColumnAlignmentType = "left" \| "center" \| "right"; |
| |
#### FieldFilterDefinition
Expand Down Expand Up @@ -1096,3 +1097,9 @@ Distributed under the MIT License. See `LICENSE` for more information.
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).

<p align="right">(<a href="#top">back to top</a>)</p>

<!-- HINTS -->
## Hints
As `eslint` V9 requires a fundamental change to the configuration files, the update will be done in a later version.

<p align="right">(<a href="#top">back to top</a>)</p>
2 changes: 1 addition & 1 deletion projects/mat-datatable-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mat-datatable",
"version": "17.2.3",
"version": "17.2.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.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 86cbc4c

Please sign in to comment.