Skip to content

Commit 7c7977c

Browse files
Merge pull request #165 from backstagephp/4.x
Filament v4
2 parents 3c988f2 + d322136 commit 7c7977c

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^8.1",
25-
"filament/forms": "^3.0",
24+
"php": "^8.2",
25+
"filament/forms": "^4.0",
2626
"spatie/laravel-package-tools": "^1.15.0",
2727
"illuminate/contracts": "^10.0|^11.0|^12.0"
2828
},
2929
"require-dev": {
30-
"nunomaduro/collision": "^7.9",
30+
"nunomaduro/collision": "^7.9||^8.0",
3131
"orchestra/testbench": "^8.0|^9.0|^10.0",
3232
"pestphp/pest": "^2.0|^3.7",
3333
"pestphp/pest-plugin-arch": "^2.0|^3.0",
@@ -62,6 +62,6 @@
6262
]
6363
}
6464
},
65-
"minimum-stability": "dev",
65+
"minimum-stability": "beta",
6666
"prefer-stable": true
6767
}

resources/css/index.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ html.dark .treeselect > .treeselect-input {
107107
.treeselect-list.treeselect-list--single-select
108108
.treeselect-list__item--single-selected {
109109
--tw-bg-opacity: 1;
110-
background-color: rgba(var(--gray-50), var(--tw-bg-opacity)) !important;
110+
background-color: var(--gray-50) !important;
111111
}
112112

113113
.treeselect-list__item:hover,
114114
.treeselect-list__item--focused {
115115
--tw-bg-opacity: 1;
116-
background-color: rgba(var(--gray-50), var(--tw-bg-opacity)) !important;
116+
background-color: var(--gray-50) !important;
117117
}
118118

119119
.treeselect-list.treeselect-list--single-select
@@ -122,15 +122,15 @@ html.dark .treeselect > .treeselect-input {
122122
}
123123

124124
html.dark .treeselect-list {
125-
-tw-bg-opacity: 1;
125+
--tw-bg-opacity: 1;
126126
--tw-ring-color: hsla(0, 0%, 100%, 0.1);
127-
background-color: rgba(var(--gray-900), var(--tw-bg-opacity));
127+
background-color: var(--gray-900);
128128
}
129129

130130
html.dark .treeselect-list {
131-
-tw-bg-opacity: 1;
131+
--tw-bg-opacity: 1;
132132
--tw-ring-color: hsla(0, 0%, 100%, 0.1);
133-
background-color: rgba(var(--gray-900), var(--tw-bg-opacity));
133+
background-color: var(--gray-900);
134134
}
135135

136136
.treeselect-input__edit {

0 commit comments

Comments
 (0)