devlab-one-dynamic-table 1.0.4 → 1.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
CHANGED
|
@@ -12,7 +12,11 @@ A powerful Angular Material-based Dynamic Table Library that provides configurab
|
|
|
12
12
|
* Client-side and Server-side operations
|
|
13
13
|
* Angular Reactive Search Forms
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
# Feedback / Suggestion / Report issue
|
|
17
|
+
[https://github.com/AravindhanSenthilkumar/Feedback/issues/1](https://github.com/AravindhanSenthilkumar/Feedback/issues/1)
|
|
18
|
+
|
|
19
|
+
|
|
16
20
|
|
|
17
21
|
## Features
|
|
18
22
|
|
|
@@ -29,7 +33,6 @@ A powerful Angular Material-based Dynamic Table Library that provides configurab
|
|
|
29
33
|
* 🎨 Angular Material Design
|
|
30
34
|
* ⚡ Client-side and Server-side operations
|
|
31
35
|
|
|
32
|
-
---
|
|
33
36
|
|
|
34
37
|
## Installation
|
|
35
38
|
|
|
@@ -37,7 +40,6 @@ A powerful Angular Material-based Dynamic Table Library that provides configurab
|
|
|
37
40
|
npm install devlab-one/dynamic-table
|
|
38
41
|
```
|
|
39
42
|
|
|
40
|
-
---
|
|
41
43
|
|
|
42
44
|
## Component Usage
|
|
43
45
|
|
|
@@ -50,7 +52,6 @@ npm install devlab-one/dynamic-table
|
|
|
50
52
|
></lib-dynamic-table>
|
|
51
53
|
```
|
|
52
54
|
|
|
53
|
-
---
|
|
54
55
|
|
|
55
56
|
## Dataset Structure
|
|
56
57
|
|
|
@@ -66,7 +67,6 @@ public data = {
|
|
|
66
67
|
| data | Array of records |
|
|
67
68
|
| totalRecords | Total available records |
|
|
68
69
|
|
|
69
|
-
---
|
|
70
70
|
|
|
71
71
|
## Search Configuration
|
|
72
72
|
|
|
@@ -95,7 +95,6 @@ SearchAt.ClientSide
|
|
|
95
95
|
SearchAt.ServerSide
|
|
96
96
|
```
|
|
97
97
|
|
|
98
|
-
---
|
|
99
98
|
|
|
100
99
|
## Table Configuration
|
|
101
100
|
|
|
@@ -119,7 +118,6 @@ public tableDetail: TableDetails = {
|
|
|
119
118
|
};
|
|
120
119
|
```
|
|
121
120
|
|
|
122
|
-
---
|
|
123
121
|
|
|
124
122
|
## Column Configuration
|
|
125
123
|
|
|
@@ -156,7 +154,6 @@ public columnDetails() {
|
|
|
156
154
|
| innerColumns | Child columns |
|
|
157
155
|
| cell | Custom value renderer |
|
|
158
156
|
|
|
159
|
-
---
|
|
160
157
|
|
|
161
158
|
## Custom Cell Rendering
|
|
162
159
|
|
|
@@ -171,7 +168,6 @@ public columnDetails() {
|
|
|
171
168
|
}
|
|
172
169
|
```
|
|
173
170
|
|
|
174
|
-
---
|
|
175
171
|
|
|
176
172
|
## Pagination Configuration
|
|
177
173
|
|
|
@@ -184,7 +180,6 @@ paging: {
|
|
|
184
180
|
}
|
|
185
181
|
```
|
|
186
182
|
|
|
187
|
-
---
|
|
188
183
|
|
|
189
184
|
## Table Buttons
|
|
190
185
|
|
|
@@ -206,7 +201,6 @@ tableButtons: {
|
|
|
206
201
|
| view | View selected record |
|
|
207
202
|
| export | Export table data |
|
|
208
203
|
|
|
209
|
-
---
|
|
210
204
|
|
|
211
205
|
## Events
|
|
212
206
|
|
|
@@ -250,7 +244,6 @@ public onTableAction(event: any) {
|
|
|
250
244
|
}
|
|
251
245
|
```
|
|
252
246
|
|
|
253
|
-
---
|
|
254
247
|
|
|
255
248
|
## Available Events
|
|
256
249
|
|
|
@@ -318,11 +311,9 @@ public onTableAction(event: any) {
|
|
|
318
311
|
}
|
|
319
312
|
```
|
|
320
313
|
|
|
321
|
-
---
|
|
322
314
|
|
|
323
315
|
## Server-Side Pagination Example
|
|
324
316
|
|
|
325
|
-
---
|
|
326
317
|
|
|
327
318
|
## Search Form Example
|
|
328
319
|
|
|
@@ -353,8 +344,6 @@ public searchForm: Form = {
|
|
|
353
344
|
};
|
|
354
345
|
```
|
|
355
346
|
|
|
356
|
-
---
|
|
357
|
-
|
|
358
347
|
## Built With
|
|
359
348
|
|
|
360
349
|
* Angular 21+
|
|
@@ -362,7 +351,6 @@ public searchForm: Form = {
|
|
|
362
351
|
* Reactive Forms
|
|
363
352
|
* TypeScript
|
|
364
353
|
|
|
365
|
-
---
|
|
366
354
|
|
|
367
355
|
## License
|
|
368
356
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devlab-one-dynamic-table",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.2.0",
|
|
6
6
|
"@angular/core": "^21.2.0",
|
|
7
|
-
"devlab-one-dynamic-form": "^1.0.
|
|
7
|
+
"devlab-one-dynamic-form": "^1.0.4"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"devlab-one-dynamic-table",
|
|
11
|
+
"angular",
|
|
12
|
+
"dynamic-table",
|
|
13
|
+
"dynamic-data-table",
|
|
14
|
+
"data-table",
|
|
15
|
+
"angular-table",
|
|
16
|
+
"mat-table",
|
|
17
|
+
"angular-material",
|
|
18
|
+
"data-grid",
|
|
19
|
+
"dynamic-columns",
|
|
20
|
+
"json-table",
|
|
21
|
+
"config-driven-table",
|
|
22
|
+
"metadata-driven-table",
|
|
23
|
+
"sortable-table",
|
|
24
|
+
"filterable-table",
|
|
25
|
+
"pagination",
|
|
26
|
+
"editable-table",
|
|
27
|
+
"ngx-table",
|
|
28
|
+
"angular-library",
|
|
29
|
+
"devlab",
|
|
30
|
+
"devlab-table"
|
|
31
|
+
],
|
|
9
32
|
"dependencies": {
|
|
10
33
|
"tslib": "^2.3.0"
|
|
11
34
|
},
|
|
Binary file
|