Skip to content

Commit 57a18f8

Browse files
authored
Merge pull request #679 from rappasoft/develop
v1.25.0
2 parents 3836d7f + b980990 commit 57a18f8

File tree

7 files changed

+72
-7
lines changed

7 files changed

+72
-7
lines changed

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [1.25.0] - 2022-03-28
8+
9+
### Added
10+
11+
- Added missing row wire:click to BS4/5 - https://github.com/rappasoft/laravel-livewire-tables/pull/658
12+
- Added Turkmen Localization - https://github.com/rappasoft/laravel-livewire-tables/pull/666
13+
- Added filters text color for dark mode in tailwind theme - https://github.com/rappasoft/laravel-livewire-tables/pull/668
14+
- Added Catalan translation - https://github.com/rappasoft/laravel-livewire-tables/pull/673
15+
716
## [1.24.0] - 2022-02-13
817

918
### Added
@@ -610,7 +619,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
610619

611620
- Initial release
612621

613-
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.24.0...development
622+
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.0...development
623+
[1.25.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.24.0...v1.25.0
614624
[1.24.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.23.0...v1.24.0
615625
[1.23.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.22.0...v1.23.0
616626
[1.22.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.21.0...v1.22.0

docs/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
title: v1
33
slogan: A dynamic table component for Laravel Livewire.
44
githubUrl: https://github.com/rappasoft/laravel-livewire-tables
5-
branch: master
5+
branch: v1
66
---

resources/lang/ca.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"All": "Tot",
3+
"Applied Filters": "Filtres Aplicats",
4+
"Applied Sorting": "Ordenació Aplicada",
5+
"Bulk Actions": "Accions Massives",
6+
"Clear": "Esborra",
7+
"Columns": "Columnes",
8+
"Done Reordering": "Reordenació finalitzada",
9+
"Filters": "Filtres",
10+
"Remove filter option": "Elimina opció de filtre",
11+
"Remove sort option": "Elimina opció d'ordenació",
12+
"Search": "Cerca",
13+
"Select All": "Selecciona tot",
14+
"Showing": "Mostrant",
15+
"Unselect All": "Deselecciona tot",
16+
"You are currently selecting all": "Actualment està seleccionant tot",
17+
"You are not connected to the internet.": "No està conectat a Internet.",
18+
"You have selected": "Ha seleccionat",
19+
"of": "de",
20+
"Reorder": "Reordena",
21+
"results": "resultats",
22+
"row": "fila",
23+
"rows": "files",
24+
"rows, do you want to select all": "files, vol seleccionar totes",
25+
"No items found. Try to broaden your search.": "No s'han trobat elements. Intenti ampliar la cerca.",
26+
"to": "a"
27+
}

resources/lang/tk.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"All": "Hemmesi",
3+
"Applied Filters": "Ulanylýan Süzgüçler",
4+
"Applied Sorting": "Ulanylýan Tertipleşdirme",
5+
"Bulk Actions": "Köpçülikleýin Hereketler",
6+
"Clear": "Arassala",
7+
"Columns": "Sütünler",
8+
"Done Reordering": "Täzeden Tertiplendi",
9+
"Filters": "Süzgüçler",
10+
"Remove filter option": "Süzgüç görnüşini aýyryň",
11+
"Remove sort option": "Tertiplemek görnüşini aýyryň",
12+
"Search": "Gözlemek",
13+
"Select All": "Hemmesini Saýla",
14+
"Showing": "Görkezmek",
15+
"Unselect All": "Hemmesini Aýyr",
16+
"You are currently selecting all": "Häzirki wagtda hemmesini saýlap alýarsyňyz",
17+
"You are not connected to the internet.": "Siz internete birikmediksiňiz.",
18+
"You have selected": "Saýladyňyz",
19+
"of": "aralygy",
20+
"Reorder": "Tertibe salmak",
21+
"results": "netijeler",
22+
"rows": "hatarlar",
23+
"rows, do you want to select all": "hatarlar, hemmesini saýlamak isleýärsiňizmi?",
24+
"No items found. Try to broaden your search.": "Hiç zat tapylmady. Gözlegiňizi giňeltmäge synanyşyň.",
25+
"to": "-"
26+
}

resources/views/bootstrap-4/components/table/row.blade.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
@endif
88

99
<tr
10-
{{ $attributes->merge($customAttributes) }}
10+
{{ $attributes->merge($customAttributes)->merge(['style' => ($url || $wireclick) ? 'cursor: pointer;' : '']) }}
1111

1212
@if ($url)
1313
onclick="window.open('{{ $url }}', '{{ $target }}')"
14-
style="cursor:pointer"
14+
@elseif ($wireclick)
15+
wire:click="{{ $wireclick }}"
1516
@endif
1617
>
1718
{{ $slot }}

resources/views/bootstrap-5/components/table/row.blade.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
@endif
88

99
<tr
10-
{{ $attributes->merge($customAttributes) }}
10+
{{ $attributes->merge($customAttributes)->merge(['style' => ($url || $wireclick) ? 'cursor: pointer;' : '']) }}
1111

1212
@if ($url)
1313
onclick="window.open('{{ $url }}', '{{ $target }}')"
14-
style="cursor:pointer"
14+
@elseif ($wireclick)
15+
wire:click="{{ $wireclick }}"
1516
@endif
1617
>
1718
{{ $slot }}

resources/views/tailwind/includes/filters.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class="origin-top-right absolute right-0 mt-2 w-full md:w-56 rounded-md shadow-l
4848
@elseif (count($customFilters))
4949
@foreach ($customFilters as $key => $filter)
5050
<div class="py-1" role="none">
51-
<div class="block px-4 py-2 text-sm text-gray-700" role="menuitem">
51+
<div class="block px-4 py-2 text-sm text-gray-700 dark:text-white" role="menuitem">
5252
<label for="filter-{{ $key }}"
5353
class="block text-sm font-medium leading-5 text-gray-700 dark:text-white">
5454
{{ $filter->name() }}

0 commit comments

Comments
 (0)