Skip to content

Commit

Permalink
Merge pull request #679 from rappasoft/develop
Browse files Browse the repository at this point in the history
v1.25.0
  • Loading branch information
rappasoft committed Mar 29, 2022
2 parents 3836d7f + b980990 commit 57a18f8
Show file tree
Hide file tree
Showing 7 changed files with 72 additions and 7 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to `laravel-livewire-tables` will be documented in this file

## [Unreleased]

## [1.25.0] - 2022-03-28

### Added

- Added missing row wire:click to BS4/5 - https://github.com/rappasoft/laravel-livewire-tables/pull/658
- Added Turkmen Localization - https://github.com/rappasoft/laravel-livewire-tables/pull/666
- Added filters text color for dark mode in tailwind theme - https://github.com/rappasoft/laravel-livewire-tables/pull/668
- Added Catalan translation - https://github.com/rappasoft/laravel-livewire-tables/pull/673

## [1.24.0] - 2022-02-13

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

- Initial release

[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.24.0...development
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.0...development
[1.25.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.24.0...v1.25.0
[1.24.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.23.0...v1.24.0
[1.23.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.22.0...v1.23.0
[1.22.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.21.0...v1.22.0
Expand Down
2 changes: 1 addition & 1 deletion docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
title: v1
slogan: A dynamic table component for Laravel Livewire.
githubUrl: https://github.com/rappasoft/laravel-livewire-tables
branch: master
branch: v1
---
27 changes: 27 additions & 0 deletions resources/lang/ca.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"All": "Tot",
"Applied Filters": "Filtres Aplicats",
"Applied Sorting": "Ordenació Aplicada",
"Bulk Actions": "Accions Massives",
"Clear": "Esborra",
"Columns": "Columnes",
"Done Reordering": "Reordenació finalitzada",
"Filters": "Filtres",
"Remove filter option": "Elimina opció de filtre",
"Remove sort option": "Elimina opció d'ordenació",
"Search": "Cerca",
"Select All": "Selecciona tot",
"Showing": "Mostrant",
"Unselect All": "Deselecciona tot",
"You are currently selecting all": "Actualment està seleccionant tot",
"You are not connected to the internet.": "No està conectat a Internet.",
"You have selected": "Ha seleccionat",
"of": "de",
"Reorder": "Reordena",
"results": "resultats",
"row": "fila",
"rows": "files",
"rows, do you want to select all": "files, vol seleccionar totes",
"No items found. Try to broaden your search.": "No s'han trobat elements. Intenti ampliar la cerca.",
"to": "a"
}
26 changes: 26 additions & 0 deletions resources/lang/tk.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"All": "Hemmesi",
"Applied Filters": "Ulanylýan Süzgüçler",
"Applied Sorting": "Ulanylýan Tertipleşdirme",
"Bulk Actions": "Köpçülikleýin Hereketler",
"Clear": "Arassala",
"Columns": "Sütünler",
"Done Reordering": "Täzeden Tertiplendi",
"Filters": "Süzgüçler",
"Remove filter option": "Süzgüç görnüşini aýyryň",
"Remove sort option": "Tertiplemek görnüşini aýyryň",
"Search": "Gözlemek",
"Select All": "Hemmesini Saýla",
"Showing": "Görkezmek",
"Unselect All": "Hemmesini Aýyr",
"You are currently selecting all": "Häzirki wagtda hemmesini saýlap alýarsyňyz",
"You are not connected to the internet.": "Siz internete birikmediksiňiz.",
"You have selected": "Saýladyňyz",
"of": "aralygy",
"Reorder": "Tertibe salmak",
"results": "netijeler",
"rows": "hatarlar",
"rows, do you want to select all": "hatarlar, hemmesini saýlamak isleýärsiňizmi?",
"No items found. Try to broaden your search.": "Hiç zat tapylmady. Gözlegiňizi giňeltmäge synanyşyň.",
"to": "-"
}
5 changes: 3 additions & 2 deletions resources/views/bootstrap-4/components/table/row.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
@endif

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

@if ($url)
onclick="window.open('{{ $url }}', '{{ $target }}')"
style="cursor:pointer"
@elseif ($wireclick)
wire:click="{{ $wireclick }}"
@endif
>
{{ $slot }}
Expand Down
5 changes: 3 additions & 2 deletions resources/views/bootstrap-5/components/table/row.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
@endif

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

@if ($url)
onclick="window.open('{{ $url }}', '{{ $target }}')"
style="cursor:pointer"
@elseif ($wireclick)
wire:click="{{ $wireclick }}"
@endif
>
{{ $slot }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/tailwind/includes/filters.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class="origin-top-right absolute right-0 mt-2 w-full md:w-56 rounded-md shadow-l
@elseif (count($customFilters))
@foreach ($customFilters as $key => $filter)
<div class="py-1" role="none">
<div class="block px-4 py-2 text-sm text-gray-700" role="menuitem">
<div class="block px-4 py-2 text-sm text-gray-700 dark:text-white" role="menuitem">
<label for="filter-{{ $key }}"
class="block text-sm font-medium leading-5 text-gray-700 dark:text-white">
{{ $filter->name() }}
Expand Down

0 comments on commit 57a18f8

Please sign in to comment.