Skip to content

Commit 78bf6c4

Browse files
authored
Supports Laravel Nova 5.7.3 (#47)
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 1cd3fa8 commit 78bf6c4

File tree

7 files changed

+119
-110
lines changed

7 files changed

+119
-110
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
"symfony/polyfill-php83": "^1.32"
1414
},
1515
"require-dev": {
16-
"laravel/nova": "^5.7.2",
16+
"laravel/nova": "^5.7.3",
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.14",
2121
"spatie/laravel-ray": "^1.40.2"
2222
},
2323
"conflict": {
24-
"laravel/nova": "<5.7.2|>=6.0.0"
24+
"laravel/nova": "<5.7.3|>=6.0.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

package-lock.json

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"types": "types/index.d.ts",
66
"devDependencies": {
77
"@babel/preset-typescript": "^7.24.7",
8-
"@inertiajs/vue3": "^2.0.11",
9-
"axios": "^1.9.0",
8+
"@inertiajs/vue3": "^2.0.12",
9+
"axios": "^1.10.0",
1010
"lodash": "^4.17.21",
1111
"tailwindcss": "^3.4.17",
1212
"typescript": "^5.8.3",
@@ -17,14 +17,14 @@
1717
"@vue/compiler-sfc": "^3.5.13",
1818
"autoprefixer": "^10.4.20",
1919
"laravel-mix": "^6.0.49",
20-
"postcss": "^8.5.4",
20+
"postcss": "^8.5.5",
2121
"postcss-import": "^14.1.0",
2222
"prettier-plugin-tailwindcss": "^0.5.14",
2323
"vue-loader": "^17.4.2"
2424
},
2525
"peerDependencies": {
26-
"@inertiajs/core": "^2.0.11",
27-
"@inertiajs/vue3": "^2.0.11",
26+
"@inertiajs/core": "^2.0.12",
27+
"@inertiajs/vue3": "^2.0.12",
2828
"@tailwindcss/container-queries": "^0.1.1",
2929
"@tailwindcss/typography": "^0.5.16",
3030
"axios": "^1.9.0",

stubs/value.stub

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,12 @@ class {{ class }} extends Value
4545

4646
return null;
4747
}
48+
49+
/**
50+
* Get the URI key for the metric.
51+
*/
52+
public function uriKey(): string
53+
{
54+
return 'uri-key';
55+
}
4856
}

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)