Skip to content

Commit 0f1d11c

Browse files
committed
Merge branch 'develop'
2 parents fee961c + d821222 commit 0f1d11c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+908
-1210
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: php
2+
3+
php:
4+
- 7.1
5+
- 7.2
6+
- 7.3
7+
8+
env:
9+
matrix:
10+
- COMPOSER_FLAGS="--prefer-lowest"
11+
- COMPOSER_FLAGS=""
12+
13+
before_script:
14+
- travis_retry composer self-update
15+
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
16+
17+
script:
18+
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
19+
20+
after_script:
21+
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
44

55
## [Unreleased]
66

7+
## [0.3] - 2020-XX-XX
8+
9+
- Ground up rebuild
10+
11+
### Added
12+
13+
- Config file to choose frontend framework - currently limited to bootstrap
14+
- Render method to columns which returns whatever you put into it, you can return a view, html, an attribute, etc.
15+
- Pulled in and modified the HTML component library from laravelcollective so you can return html components from the render method. i.e.: $this->image(...);
16+
- Added new loading config on whether to keep displaying the current data while loading or collapse it
17+
- Added ability to set frontend framework specific options via a property on a per component basis.
18+
19+
### Changed
20+
21+
- Extracted the sorting icons out to their actual HTML, so you can use whatever you want, not limited to the 'i' tag.
22+
23+
### Removed
24+
25+
- Checkbox functionality for now
26+
- Component functionality pending debate
27+
- All class and styling based properties. It's better to publish the views to change something.
28+
729
## [0.2.1] - 2020-09-10
830

931
### Added
@@ -90,7 +112,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
90112

91113
- Initial release
92114

93-
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.1...development
115+
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.0...development
116+
[0.3.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.1...v0.3.0
94117
[0.2.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.0...v0.2.1
95118
[0.2.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.1.6...v0.2.0
96119
[0.1.6]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.1.5...v0.1.6

0 commit comments

Comments
 (0)