mat-table-ext 0.0.5 → 0.0.7
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,13 +44,13 @@ Add the following to your angular.json file under build and test (if required).
|
|
|
44
44
|
```
|
|
45
45
|
## Theming
|
|
46
46
|
|
|
47
|
-
After
|
|
47
|
+
After importing the module, you can pass your application theme to the mat-table-ext library by adding the following content to your theme file. [More details about theming.](https://material.angular.io/guide/theming).
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
```ts
|
|
51
|
-
@use '../node_modules/mat-table-ext/assets/theming' as
|
|
51
|
+
@use '../node_modules/mat-table-ext/assets/theming' as matext;
|
|
52
52
|
|
|
53
|
-
@include
|
|
53
|
+
@include matext.mat-table-ext-theme($your-theme);
|
|
54
54
|
```
|
|
55
55
|
## License
|
|
56
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mat-table-ext",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
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": [
|