Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit dabc140

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 8461225 + 9753375 commit dabc140

22 files changed

+789
-1103
lines changed

.github/workflows/pint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 2
1818

1919
- name: Laravel pint
20-
uses: aglipanci/laravel-pint-action@2.3.1
20+
uses: aglipanci/laravel-pint-action@2.5
2121
with:
2222
preset: laravel
2323

docs/files/filepond.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ For a full reference of all options, please consult [the FilePond documentation]
8585

8686
### Multiple
8787

88-
You can accept multiple files by passing in `multiple` as a boolean value. This attribute has been added as a way
88+
You can accept multiple files by passing in `allowMultiple` as a boolean value. This attribute has been added as a way
8989
to conveniently set the `allowMultiple` option for FilePond.
9090

9191
### Max Files

package-lock.json

Lines changed: 659 additions & 973 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"author": "Randall Wilk",
99
"license": "MIT",
1010
"devDependencies": {
11-
"@babel/core": "^7.23.9",
11+
"@babel/core": "^7.26.10",
1212
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
13-
"@babel/preset-env": "^7.23.9",
13+
"@babel/preset-env": "^7.26.9",
1414
"@rollup/plugin-babel": "^6.0.4",
15-
"@rollup/plugin-commonjs": "^25.0.7",
16-
"@rollup/plugin-node-resolve": "^15.2.3",
17-
"fs-extra": "^11.2.0",
15+
"@rollup/plugin-commonjs": "^25.0.8",
16+
"@rollup/plugin-node-resolve": "^15.3.0",
17+
"fs-extra": "^11.3.0",
1818
"md5": "^2.3.0",
19-
"rollup": "^2.79.1",
19+
"rollup": "^2.79.2",
2020
"rollup-plugin-filesize": "^10.0.0",
2121
"rollup-plugin-output-manifest": "^2.0.0",
2222
"rollup-plugin-terser": "^7.0.2"

src/Components/Choice/Checkbox.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __construct(
3434
public ?bool $labelLeft = null,
3535

3636
// Extra Attributes
37-
string|HtmlString|array|Collection $extraAttributes = null,
37+
string|HtmlString|array|Collection|null $extraAttributes = null,
3838
) {
3939
$this->id = $id ?? $name;
4040

@@ -57,7 +57,7 @@ public function inputClass(): string
5757
]);
5858
}
5959

60-
public function containerClass(string $inputSize = null): string
60+
public function containerClass(?string $inputSize = null): string
6161
{
6262
// Input size from parent has priority over individual defined size.
6363
if ($inputSize) {

src/Components/Choice/SwitchToggle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __construct(
3535
public bool $short = false,
3636

3737
// Extra Attributes
38-
string|HtmlString|array|Collection $extraAttributes = null,
38+
string|HtmlString|array|Collection|null $extraAttributes = null,
3939
) {
4040
$this->id = $id ?? $name;
4141

src/Components/Files/FilePond.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ public function __construct(
2828
public ?int $maxFiles = null,
2929
public ?array $options = null,
3030
public ?string $description = null,
31-
string $type = null,
32-
bool $showErrors = null,
31+
?string $type = null,
32+
?bool $showErrors = null,
3333

3434
// Extra attributes
35-
string|HtmlString|array|Collection $extraAttributes = null,
35+
string|HtmlString|array|Collection|null $extraAttributes = null,
3636
) {
3737
$this->id = $id ?? $name;
3838

src/Components/Files/FileUpload.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ public function __construct(
2626
public ?string $name = null,
2727
public ?string $id = null,
2828
public bool $multiple = false,
29-
string $type = null,
30-
bool $showErrors = null,
29+
?string $type = null,
30+
?bool $showErrors = null,
3131
public ?bool $displayUploadProgress = null,
3232
public ?string $size = null,
3333
public ?string $containerClass = null,
3434
public ?bool $useNativeProgressBar = null,
3535

3636
// Extra attributes
37-
string|HtmlString|array|Collection $extraAttributes = null,
37+
string|HtmlString|array|Collection|null $extraAttributes = null,
3838
) {
3939
$this->id = $id ?? $name;
4040
$this->type = $type;

src/Components/FormGroup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function __construct(
1616
public ?string $inputId = null,
1717
public null|bool|string $label = null,
1818
public ?bool $inline = null,
19-
bool $showErrors = null,
19+
?bool $showErrors = null,
2020
public ?string $helpText = null,
2121
public bool $isCheckboxGroup = false,
2222
public ?bool $marginBottom = null,

src/Components/Inputs/CustomSelect.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct(
2626
public ?string $name = null,
2727
public ?string $id = null,
2828
public mixed $value = null,
29-
bool $showErrors = null,
29+
?bool $showErrors = null,
3030
public bool $multiple = false,
3131
public array|Collection $options = [],
3232
public ?string $size = null,
@@ -51,13 +51,13 @@ public function __construct(
5151
public ?string $containerClass = null,
5252

5353
// Extra Attributes
54-
string|HtmlString|array|Collection $extraAttributes = null,
54+
string|HtmlString|array|Collection|null $extraAttributes = null,
5555

5656
// Addons
57-
string $leadingAddon = null,
58-
string $leadingIcon = null,
59-
string $inlineAddon = null,
60-
string $trailingAddon = null,
57+
?string $leadingAddon = null,
58+
?string $leadingIcon = null,
59+
?string $inlineAddon = null,
60+
?string $trailingAddon = null,
6161
) {
6262
$this->id = $id ?? $name;
6363
$this->value = $name ? old($name, $value) : $value;

0 commit comments

Comments
 (0)