@avoraui/av-data-table 0.0.4 → 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
@@ -74,12 +74,12 @@ export class ExampleComponent {
74
74
  ```typescript
75
75
  export interface Headers {
76
76
  label: string;
77
- align?: 'left' | 'center' | 'right';
77
+ align: 'left' | 'center' | 'right';
78
78
  }
79
79
 
80
80
  export interface Columns {
81
81
  field: string;
82
- align?: 'left' | 'center' | 'right';
82
+ align: 'left' | 'center' | 'right';
83
83
  color?: string;
84
84
  }
85
85
  export class ExampleComponent {
@@ -152,12 +152,12 @@ export class ExampleComponent {
152
152
  ```typescript
153
153
  interface Headers {
154
154
  label: string;
155
- align?: 'left' | 'center' | 'right';
155
+ align: 'left' | 'center' | 'right';
156
156
  }
157
157
 
158
158
  interface Columns {
159
159
  field: string;
160
- align?: 'left' | 'center' | 'right';
160
+ align: 'left' | 'center' | 'right';
161
161
  color?: string;
162
162
  }
163
163
  ```
@@ -309,7 +309,7 @@ This project is licensed under the MIT License - see the LICENSE file for detail
309
309
 
310
310
  ## Changelog
311
311
 
312
- ### v0.0.4
312
+ ### v0.0.5
313
313
  - Initial release
314
314
  - Basic table functionality with pagination
315
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.4",
3
+ "version": "0.0.5",
4
4
  "description": "A customizable Angular Data Table component",
5
5
  "keywords": [
6
6
  "angular",
Binary file
Binary file