@avoraui/av-data-table 0.0.3 → 0.0.5
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
CHANGED
|
@@ -23,6 +23,11 @@ import { MatCard } from "@angular/material/card";
|
|
|
23
23
|
import { MatButton } from "@angular/material/button";
|
|
24
24
|
import { MatIcon } from '@angular/material/icon';
|
|
25
25
|
```
|
|
26
|
+
```markdown
|
|
27
|
+
🚨 Version 0.0.4 introduces a breaking change:
|
|
28
|
+
Component selector has changed from `aur-data-table` to `av-data-table`.
|
|
29
|
+
Please update your templates accordingly.
|
|
30
|
+
```
|
|
26
31
|
|
|
27
32
|
## Installation
|
|
28
33
|
|
|
@@ -69,12 +74,12 @@ export class ExampleComponent {
|
|
|
69
74
|
```typescript
|
|
70
75
|
export interface Headers {
|
|
71
76
|
label: string;
|
|
72
|
-
align
|
|
77
|
+
align: 'left' | 'center' | 'right';
|
|
73
78
|
}
|
|
74
79
|
|
|
75
80
|
export interface Columns {
|
|
76
81
|
field: string;
|
|
77
|
-
align
|
|
82
|
+
align: 'left' | 'center' | 'right';
|
|
78
83
|
color?: string;
|
|
79
84
|
}
|
|
80
85
|
export class ExampleComponent {
|
|
@@ -147,12 +152,12 @@ export class ExampleComponent {
|
|
|
147
152
|
```typescript
|
|
148
153
|
interface Headers {
|
|
149
154
|
label: string;
|
|
150
|
-
align
|
|
155
|
+
align: 'left' | 'center' | 'right';
|
|
151
156
|
}
|
|
152
157
|
|
|
153
158
|
interface Columns {
|
|
154
159
|
field: string;
|
|
155
|
-
align
|
|
160
|
+
align: 'left' | 'center' | 'right';
|
|
156
161
|
color?: string;
|
|
157
162
|
}
|
|
158
163
|
```
|
|
@@ -304,7 +309,7 @@ This project is licensed under the MIT License - see the LICENSE file for detail
|
|
|
304
309
|
|
|
305
310
|
## Changelog
|
|
306
311
|
|
|
307
|
-
### v0.0.
|
|
312
|
+
### v0.0.5
|
|
308
313
|
- Initial release
|
|
309
314
|
- Basic table functionality with pagination
|
|
310
315
|
- CRUD operations support
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avoraui/av-data-table",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "A customizable Angular Data Table component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -32,4 +32,4 @@
|
|
|
32
32
|
"default": "./fesm2022/avoraui-av-data-table.mjs"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
}
|
|
35
|
+
}
|
|
Binary file
|