Skip to content

Commit fe2c31a

Browse files
authored
Supports Laravel Nova 5.2.6 (#32)
* Laravel Nova 5.2.6 Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> * wip Signed-off-by: Mior Muhammad Zaki <[email protected]> --------- Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent bc2f477 commit fe2c31a

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"symfony/polyfill-php83": "^1.31"
1414
},
1515
"require-dev": {
16-
"laravel/nova": "^5.2",
16+
"laravel/nova": "^5.2.6",
1717
"laravel/pint": "^1.17",
1818
"orchestra/pest-plugin-testbench": "^2.0|^3.0",
1919
"orchestra/testbench": "^8.30|^9.8|^10.0",
2020
"phpstan/phpstan": "^2.1",
2121
"spatie/laravel-ray": "^1.39.1"
2222
},
2323
"conflict": {
24-
"laravel/nova": "<5.2.0 || >=6.0.0"
24+
"laravel/nova": "<5.2.6 || >=6.0.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

dist/mixins/FormField.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ declare namespace _default {
2525
* @param {FormData} formData
2626
*/
2727
function fill(formData: FormData): void;
28+
/**
29+
* Provide a function to fills FormData when field.
30+
*
31+
* @param {FormData} formData
32+
* @param {string} attribute
33+
* @param {any} value
34+
*/
35+
function fillInto(formData: FormData, attribute: string, value: any): void;
2836
/**
2937
* Provide a function to fills FormData when field is visible.
3038
*

types/@types/laravel-nova-ui/Badge.vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3434
};
3535
}>> & Readonly<{}>, {
3636
type: string;
37-
rounded: boolean;
3837
variant: string;
38+
rounded: boolean;
3939
removable: boolean;
4040
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4141
export default _default;

types/@types/laravel-nova-ui/Button.vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5757
leadingIcon: {};
5858
trailingIcon: {};
5959
}>> & Readonly<{}>, {
60-
variant: string;
6160
size: string;
6261
as: string;
62+
variant: string;
6363
state: string;
6464
padding: string;
6565
loading: boolean;

types/@types/laravel-nova-ui/Icon.vue.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1515
default: string;
1616
};
1717
}>> & Readonly<{}>, {
18-
type: string;
1918
name: string;
19+
type: string;
2020
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2121
export default _default;

0 commit comments

Comments
 (0)