@ea-controls/mat-table-extensions 19.0.4 → 19.0.6
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/README.md +8 -1
- package/package.json +4 -2
package/README.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
Angular directives that allows to extend Angular [mat-table](https://material.angular.io/components/table/overview) features
|
4
4
|
|
5
|
+
## Dependencies
|
6
|
+
|
7
|
+
1. @angular version > 19.0.0
|
8
|
+
1. @angular/material ```ng add @angular/material```
|
9
|
+
|
5
10
|
## Multiple Headers/Footer
|
6
11
|
|
7
12
|
Usually mat-table only allows one header and footer inside [matColumnDef] directive
|
@@ -159,4 +164,6 @@ export class BasicComponent {
|
|
159
164
|
<tr mat-footer-row *matExtraFooterRowDef="['position', 'name']; name: 'filter'"></tr>
|
160
165
|
|
161
166
|
</table>
|
162
|
-
```
|
167
|
+
```
|
168
|
+
|
169
|
+
> Join to my [telegram](https://t.me/+M3Q1VDg0crJlNWUx) group for supporting and commenting
|
package/package.json
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ea-controls/mat-table-extensions",
|
3
|
-
"version": "19.0.
|
3
|
+
"version": "19.0.6",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": "^19.1.0",
|
6
|
-
"@angular/core": "^19.1.0"
|
6
|
+
"@angular/core": "^19.1.0",
|
7
|
+
"@angular/material": "^19.1.0",
|
8
|
+
"@angular/cdk": "^19.1.0"
|
7
9
|
},
|
8
10
|
"dependencies": {
|
9
11
|
"tslib": "^2.3.0"
|