You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 7.x-dev/upgrade-guide.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Please make sure your project respects the requirements below, before you start
43
43
44
44
```js
45
45
"backpack/crud":"^7.0.0-beta",
46
-
"backpack/pro":"^3.0@dev",
46
+
"backpack/pro":"^3.0.0-alpha",
47
47
"backpack/filemanager":"dev-next",
48
48
"backpack/theme-coreuiv2":"dev-next",
49
49
"backpack/theme-coreuiv4":"dev-next",
@@ -94,7 +94,16 @@ No changes needed.
94
94
<aname="config"></a>
95
95
### Config
96
96
97
-
**Theme Tabler** - The default layout for theme tabler has changed. If you had the tabler config published you are good to go. **In case you don't have the tabler theme config published** and want to keep the old layout, you should publish it by running `php artisan vendor:publish --tag="theme-tabler-config"` and changing:
97
+
<aname="step-x"href="#step-x"class="badge badge-danger text-white"style="text-decoration: none;">Step X.</a> **Operation Config Files** - We have added new configuration options in the files inside `config/backpack/operations/`. If you have those files published, it is recommended that you copy the new options in your files too.
98
+
99
+
<aname="step-x"href="#step-x"class="badge badge-danger text-white"style="text-decoration: none;">Step X.</a> **Show Operation New Default** - inside `config/backpack/operations/show.php` you'll find a new option, to choose which component will be used on the show operation. By default it's the new component `bp-datagrid`, but you can switch to `bp-datalist` if you want to keep the same look as before:
100
+
101
+
```php
102
+
// Which component to use for displaying the Show page?
103
+
'component' => 'bp-datalist', // options: bp-datagrid, bp-datalist, or a custom component alias
104
+
```
105
+
106
+
<aname="step-x"href="#step-x"class="badge badge-danger text-white"style="text-decoration: none;">Step X.</a> **Theme Tabler** - The default layout for theme tabler has changed. If you had the tabler config published you are good to go. **In case you don't have the tabler theme config published** and want to keep the old layout, you should publish it by running `php artisan vendor:publish --tag="theme-tabler-config"` and changing:
0 commit comments