-
-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from Power-Components/1.4
1.4
- Loading branch information
Showing
52 changed files
with
603 additions
and
182 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,7 +95,7 @@ | |
| Define here the CDN source for imported JS Framework | ||
| | ||
*/ | ||
|
||
'js_framework_cdn' => [ | ||
'alpinejs' => 'https://unpkg.com/[email protected]/dist/cdn.min.js', | ||
//'alpinejs' => 'https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js' //Alpine 2.8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
resources/views/components/frameworks/bootstrap5/batch-exporting.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
@if($queues && $showExporting) | ||
|
||
@if($batchExporting && !$batchFinished) | ||
<div wire:poll="updateExportProgress" | ||
class="my-3 px-4 rounded-md py-3 shadow-sm text-center"> | ||
<div>{{ $batchProgress }}%</div> | ||
<div>{{ trans('livewire-powergrid::datatable.export.exporting') }}</div> | ||
</div> | ||
@endif | ||
|
||
@if($batchFinished) | ||
<div class="my-3"> | ||
<p> | ||
<button class="btn btn-primary" | ||
type="button" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#collapseCompleted" | ||
aria-expanded="false" | ||
aria-controls="collapseCompleted"> | ||
⚡ {{ trans('livewire-powergrid::datatable.export.completed') }} | ||
</button> | ||
</p> | ||
<div class="collapse" id="collapseCompleted"> | ||
<div class="card card-body"> | ||
@foreach($exportedFiles as $file) | ||
<div class="d-flex w-full p-2" style="cursor:pointer"> | ||
<x-livewire-powergrid::icons.download | ||
style="width: 1.5rem; | ||
margin-right: 6px; | ||
color: #2d3034;"/> | ||
<a | ||
wire:click="downloadExport('{{ $file }}')"> | ||
{{ $file }} | ||
</a> | ||
</div> | ||
@endforeach | ||
</div> | ||
</div> | ||
</div> | ||
@endif | ||
@endif |
14 changes: 14 additions & 0 deletions
14
resources/views/components/frameworks/bootstrap5/enabled-filters.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@if(count($enabledFilters)) | ||
<div class="col-md-12 d-flex" style="margin-top: 5px"> | ||
@foreach($enabledFilters as $field => $filter) | ||
<div wire:click.prevent="clearFilter('{{ $field }}')" | ||
style="cursor: pointer; padding-right: 4px"> | ||
<span class="badge rounded-pill bg-light text-dark">{{ $filter['label'] }} | ||
<svg width="10" stroke="currentColor" fill="none" viewBox="0 0 8 8"> | ||
<path stroke-linecap="round" stroke-width="1.5" d="M1 1l6 6m0-6L1 7"/> | ||
</svg> | ||
</span> | ||
</div> | ||
@endforeach | ||
</div> | ||
@endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.