mat-table-ext 0.0.2 → 0.0.4
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 +4 -5
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.10.
|
|
4
4
|
## Documentation
|
|
5
5
|
|
|
6
|
-
Check out the [demos and
|
|
6
|
+
Check out the [demos and API](https://fastcode-inc.github.io/custom-table-doc).
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
First, you should install and set up Angular Material. [Learn more about the setup](https://material.angular.io/guide/getting-started).
|
|
10
10
|
|
|
11
11
|
Install the Extension library:
|
|
12
12
|
|
|
@@ -30,9 +30,8 @@ export class YourAppModule {
|
|
|
30
30
|
}
|
|
31
31
|
```
|
|
32
32
|
```
|
|
33
|
-
After adding the MatTableExtModule to your application,
|
|
34
|
-
|
|
35
|
-
Add following into your angular.json file under build and test(if required)
|
|
33
|
+
After adding the MatTableExtModule to your application, add the path of assets of table to your application.
|
|
34
|
+
Add the following to your angular.json file under build and test (if required).
|
|
36
35
|
{
|
|
37
36
|
"assets": [
|
|
38
37
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mat-table-ext",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "The mat-table-ext is a powerful material table extension component used to display tabular data with extra features.",
|
|
5
5
|
"homepage": "https://fastcode-inc.github.io/custom-table-doc",
|
|
6
6
|
"keywords": [
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"angular-material",
|
|
15
15
|
"angular-component"
|
|
16
16
|
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/fastcode-inc/custom-table"
|
|
20
|
+
},
|
|
17
21
|
"peerDependencies": {
|
|
18
22
|
"@angular/animations": "^14.2.0",
|
|
19
23
|
"@angular/cdk": "^14.2.4",
|