Skip to content

Commit b5aaf73

Browse files
committed
Updated changelog file
1 parent 03b54d4 commit b5aaf73

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [2.2] - 2021-03-01
4+
### Added
5+
- New list view
6+
- New detail view with
7+
- Default component
8+
- Default component customization
9+
- Multiple components
10+
- Actions
11+
- Feature to set the width for each column in the TableView
12+
- Documentation for the new detail view
13+
- New `attributes-list` component
14+
- New `layout` component
15+
16+
### Changed
17+
- The `title` action now is included as an attribute in the `a` tag for each action.
18+
- Internal refactors
19+
- Base `DataView` class with all the features to manage the data (filters, search, actions, pagination etc) on the table, grid, and list view.
20+
- Refactored actions feature to be reused as a trait
21+
- Refactored actions test to be reused as a trait
22+
23+
### Fixed
24+
- Bug with pagination and filters, the pagination was not being reset after a new search
25+
326
## [2.1] - 2021-01-10
427
### Added
528
- Option to customize which assets will be imported

doc/detail-view.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Detail view
22

3+
[See live example](http://laravel-views.herokuapp.com/detail-view)
4+
35
This view creates a dynamic detail view to render a model attributes list with all the data you need, you can also customize the default component to create complex detail views and execute actions over the model is being used.
46

57
- [Home](../README.md)
@@ -43,8 +45,8 @@ class ExampleDetailView extends DetailView
4345
public function detail($model)
4446
{
4547
return [
46-
'Name' => $model->name,
47-
'Email' => $model->email,
48+
'Name' => '',
49+
'Email' => '',
4850
];
4951
}
5052
}

doc/list-view.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# List view
22

3+
[See live example](http://laravel-views.herokuapp.com/list-view)
4+
35
This view creates a dynamic list view with filters, pagination, search input, and actions by each item, it is useful for small screens, you can also customize the item compoment for each row as you need.
46

57
- [Home](../README.md)

0 commit comments

Comments
 (0)