Skip to content

Commit

Permalink
Merge branch 'release/0.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
t73biz committed Jul 14, 2024
2 parents a645df4 + 87cc2ad commit 2c90341
Show file tree
Hide file tree
Showing 231 changed files with 7,772 additions and 795 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ body:
description: What version of our Package are you running?
options:
- 1.0.0
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"laravel",
"lw-bits"
],
"version": "0.4.0",
"version": "0.4.1",
"homepage": "https://github.com/t73biz/lw-bits",
"license": "MIT",
"authors": [
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `lw-bits` will be documented in this file.


## 0.4.1 - 2024-07-14
Fixing Global Attributes

## 0.4.0 - 2024-07-13
Adding Image and Multimedia components

Expand Down
1 change: 0 additions & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ parameters:
tmpDir: build/phpstan
checkOctaneCompatibility: true
checkModelProperties: true
checkMissingIterableValueType: false

3 changes: 3 additions & 0 deletions resources/views/demarcation/del.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<del {!! $globalAttributes !!}>
{{ $slot }}
</del>
3 changes: 3 additions & 0 deletions resources/views/demarcation/ins.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<ins {!! $globalAttributes !!}>
{{ $slot }}
</ins>
3 changes: 3 additions & 0 deletions resources/views/embedded_content/embed.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<embed {!! $globalAttributes !!}>
{{ $slot }}
</embed>
3 changes: 3 additions & 0 deletions resources/views/embedded_content/iframe.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<iframe {!! $globalAttributes !!}>
{{ $slot }}
</iframe>
3 changes: 3 additions & 0 deletions resources/views/embedded_content/picture.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<picture {!! $globalAttributes !!}>
{{ $slot }}
</picture>
3 changes: 3 additions & 0 deletions resources/views/embedded_content/portal.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<portal {!! $globalAttributes !!}>
{{ $slot }}
</portal>
3 changes: 3 additions & 0 deletions resources/views/embedded_content/source.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<source {!! $globalAttributes !!}>
{{ $slot }}
</source>
3 changes: 3 additions & 0 deletions resources/views/forms/button.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<button {!! $globalAttributes !!}>
{{ $slot }}
</button>
3 changes: 3 additions & 0 deletions resources/views/forms/datalist.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<datalist {!! $globalAttributes !!}>
{{ $slot }}
</datalist>
3 changes: 3 additions & 0 deletions resources/views/forms/fieldset.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<fieldset {!! $globalAttributes !!}>
{{ $slot }}
</fieldset>
3 changes: 3 additions & 0 deletions resources/views/forms/form.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<form {!! $globalAttributes !!}>
{{ $slot }}
</form>
3 changes: 3 additions & 0 deletions resources/views/forms/input.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<input {!! $globalAttributes !!}>
{{ $slot }}
</input>
3 changes: 3 additions & 0 deletions resources/views/forms/label.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<label {!! $globalAttributes !!}>
{{ $slot }}
</label>
3 changes: 3 additions & 0 deletions resources/views/forms/legend.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<legend {!! $globalAttributes !!}>
{{ $slot }}
</legend>
3 changes: 3 additions & 0 deletions resources/views/forms/meter.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<meter {!! $globalAttributes !!}>
{{ $slot }}
</meter>
3 changes: 3 additions & 0 deletions resources/views/forms/optgroup.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<optgroup {!! $globalAttributes !!}>
{{ $slot }}
</optgroup>
3 changes: 3 additions & 0 deletions resources/views/forms/option.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<option {!! $globalAttributes !!}>
{{ $slot }}
</option>
3 changes: 3 additions & 0 deletions resources/views/forms/output.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<output {!! $globalAttributes !!}>
{{ $slot }}
</output>
3 changes: 3 additions & 0 deletions resources/views/forms/progress.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<progress {!! $globalAttributes !!}>
{{ $slot }}
</progress>
3 changes: 3 additions & 0 deletions resources/views/forms/select.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<select {!! $globalAttributes !!}>
{{ $slot }}
</select>
3 changes: 3 additions & 0 deletions resources/views/forms/textarea.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<textarea {!! $globalAttributes !!} {!! $specificAttributes !!}>
{{ $slot }}
</textarea>
3 changes: 3 additions & 0 deletions resources/views/interactive/details.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<details {!! $globalAttributes !!} {!! $specificAttributes !!}>
{{ $slot }}
</details>
3 changes: 3 additions & 0 deletions resources/views/interactive/dialog.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<dialog {!! $globalAttributes !!} {!! $specificAttributes !!}>
{{ $slot }}
</dialog>
3 changes: 3 additions & 0 deletions resources/views/interactive/summary.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<summary {!! $globalAttributes !!}>
{{ $slot }}
</summary>
3 changes: 3 additions & 0 deletions resources/views/scripting/canvas.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<canvas {!! $globalAttributes !!}>
{{ $slot }}
</canvas>
3 changes: 3 additions & 0 deletions resources/views/scripting/noscript.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<noscript {!! $globalAttributes !!}>
{{ $slot }}
</noscript>
3 changes: 3 additions & 0 deletions resources/views/scripting/script.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<script {!! $globalAttributes !!}>
{{ $slot }}
</script>
3 changes: 3 additions & 0 deletions resources/views/svg_math_ml/math.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<math {!! $globalAttributes !!}>
{{ $slot }}
</math>
3 changes: 3 additions & 0 deletions resources/views/svg_math_ml/svg.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<svg {!! $globalAttributes !!}>
{{ $slot }}
</svg>
3 changes: 3 additions & 0 deletions resources/views/table_content/caption.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<caption {!! $globalAttributes !!}>
{{ $slot }}
</caption>
3 changes: 3 additions & 0 deletions resources/views/table_content/col.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<col {!! $globalAttributes !!}>
{{ $slot }}
</col>
3 changes: 3 additions & 0 deletions resources/views/table_content/colgroup.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<colgroup {!! $globalAttributes !!}>
{{ $slot }}
</colgroup>
3 changes: 3 additions & 0 deletions resources/views/table_content/table.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<table {!! $globalAttributes !!}>
{{ $slot }}
</table>
3 changes: 3 additions & 0 deletions resources/views/table_content/tbody.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<tbody {!! $globalAttributes !!}>
{{ $slot }}
</tbody>
3 changes: 3 additions & 0 deletions resources/views/table_content/td.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<td {!! $globalAttributes !!}>
{{ $slot }}
</td>
3 changes: 3 additions & 0 deletions resources/views/table_content/tfoot.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<tfoot {!! $globalAttributes !!}>
{{ $slot }}
</tfoot>
3 changes: 3 additions & 0 deletions resources/views/table_content/th.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<th {!! $globalAttributes !!}>
{{ $slot }}
</th>
3 changes: 3 additions & 0 deletions resources/views/table_content/thead.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<thead {!! $globalAttributes !!}>
{{ $slot }}
</thead>
3 changes: 3 additions & 0 deletions resources/views/table_content/tr.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<tr {!! $globalAttributes !!}>
{{ $slot }}
</tr>
41 changes: 41 additions & 0 deletions src/Components/Demarcation/Del.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

namespace T73biz\LwBits\Components\Demarcation;

use Illuminate\Contracts\Foundation\Application as ContractedApplication;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View as ContractedView;
use Illuminate\Foundation\Application;
use Illuminate\View\View;
use Livewire\Component;
use T73biz\LwBits\Components\GlobalAttributesTrait;

/**
* Class Del
*/
class Del extends Component
{
use GlobalAttributesTrait;

/**
* Standard mount function
*/
public function mount(): void
{
$this->setGlobalAttributes();
}

/**
* Standard render function
*/
public function render(): Application|ContractedApplication|ContractedView|Factory|View
{
return view(
'lw-bits::demarcation.del',
[
'globalAttributes' => $this->getGlobalAttributes(),
'slot' => '',
]
);
}
}
41 changes: 41 additions & 0 deletions src/Components/Demarcation/Ins.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

namespace T73biz\LwBits\Components\Demarcation;

use Illuminate\Contracts\Foundation\Application as ContractedApplication;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View as ContractedView;
use Illuminate\Foundation\Application;
use Illuminate\View\View;
use Livewire\Component;
use T73biz\LwBits\Components\GlobalAttributesTrait;

/**
* Class Ins
*/
class Ins extends Component
{
use GlobalAttributesTrait;

/**
* Standard mount function
*/
public function mount(): void
{
$this->setGlobalAttributes();
}

/**
* Standard render function
*/
public function render(): Application|ContractedApplication|ContractedView|Factory|View
{
return view(
'lw-bits::demarcation.ins',
[
'globalAttributes' => $this->getGlobalAttributes(),
'slot' => '',
]
);
}
}
41 changes: 41 additions & 0 deletions src/Components/EmbeddedContent/Embed.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

namespace T73biz\LwBits\Components\EmbeddedContent;

use Illuminate\Contracts\Foundation\Application as ContractedApplication;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View as ContractedView;
use Illuminate\Foundation\Application;
use Illuminate\View\View;
use Livewire\Component;
use T73biz\LwBits\Components\GlobalAttributesTrait;

/**
* Class Embed
*/
class Embed extends Component
{
use GlobalAttributesTrait;

/**
* Standard mount function
*/
public function mount(): void
{
$this->setGlobalAttributes();
}

/**
* Standard render function
*/
public function render(): Application|ContractedApplication|ContractedView|Factory|View
{
return view(
'lw-bits::embedded_content.embed',
[
'globalAttributes' => $this->getGlobalAttributes(),
'slot' => '',
]
);
}
}
41 changes: 41 additions & 0 deletions src/Components/EmbeddedContent/Iframe.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<?php

namespace T73biz\LwBits\Components\EmbeddedContent;

use Illuminate\Contracts\Foundation\Application as ContractedApplication;
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View as ContractedView;
use Illuminate\Foundation\Application;
use Illuminate\View\View;
use Livewire\Component;
use T73biz\LwBits\Components\GlobalAttributesTrait;

/**
* Class Iframe
*/
class Iframe extends Component
{
use GlobalAttributesTrait;

/**
* Standard mount function
*/
public function mount(): void
{
$this->setGlobalAttributes();
}

/**
* Standard render function
*/
public function render(): Application|ContractedApplication|ContractedView|Factory|View
{
return view(
'lw-bits::embedded_content.iframe',
[
'globalAttributes' => $this->getGlobalAttributes(),
'slot' => '',
]
);
}
}
Loading

0 comments on commit 2c90341

Please sign in to comment.