Skip to content

Commit e543ea6

Browse files
build(composer): bump dependencies and update Filament to v4.5.3
Upgrade Filament packages to v4.5.3 along with updates to Laravel, Livewire, and other dependencies for improved functionality and compatibility.
1 parent 89fb00e commit e543ea6

10 files changed

Lines changed: 119 additions & 104 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"require": {
1818
"php": "^8.2",
1919
"achyutn/filament-log-viewer": "^1.2",
20-
"filament/filament": "^4.3",
20+
"filament/filament": "^4.5",
2121
"jeffersongoncalves/filament-logo": "^2.0",
2222
"joaopaulolndev/filament-edit-profile": "^2.0",
2323
"laravel/framework": "^12.0",
2424
"laravel/tinker": "^2.10.1",
25-
"livewire/livewire": "^3.6",
25+
"livewire/livewire": "^3.7",
2626
"wallacemartinss/filament-icon-picker": "^1.1"
2727
},
2828
"require-dev": {

composer.lock

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

public/css/filament/filament/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/forms/components/rich-editor.js

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

public/vendor/livewire/livewire.esm.js

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

public/vendor/livewire/livewire.esm.js.map

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

public/vendor/livewire/livewire.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8091,7 +8091,10 @@ ${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el);
80918091
function navigateTo(destination, { preserveScroll = false, shouldPushToHistoryState = true }) {
80928092
showProgressBar && showAndStartProgressBar();
80938093
fetchHtmlOrUsePrefetchedHtml(destination, (html, finalDestination) => {
8094-
fireEventForOtherLibrariesToHookInto("alpine:navigating");
8094+
let swapCallbacks = [];
8095+
fireEventForOtherLibrariesToHookInto("alpine:navigating", {
8096+
onSwap: (callback) => swapCallbacks.push(callback)
8097+
});
80958098
restoreScroll && storeScrollInformationInHtmlBeforeNavigatingAway();
80968099
cleanupAlpineElementsOnThePageThatArentInsideAPersistedElement();
80978100
updateCurrentPageHtmlInHistoryStateForLaterBackButtonClicks();
@@ -8112,6 +8115,7 @@ ${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el);
81128115
unPackPersistedPopovers(persistedEl);
81138116
});
81148117
!preserveScroll && restoreScrollPositionOrScrollToTop();
8118+
swapCallbacks.forEach((callback) => callback());
81158119
afterNewScriptsAreDoneLoading(() => {
81168120
andAfterAllThis(() => {
81178121
setTimeout(() => {
@@ -8148,7 +8152,10 @@ ${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el);
81488152
if (prevented)
81498153
return;
81508154
storeScrollInformationInHtmlBeforeNavigatingAway();
8151-
fireEventForOtherLibrariesToHookInto("alpine:navigating");
8155+
let swapCallbacks = [];
8156+
fireEventForOtherLibrariesToHookInto("alpine:navigating", {
8157+
onSwap: (callback) => swapCallbacks.push(callback)
8158+
});
81528159
updateCurrentPageHtmlInSnapshotCacheForLaterBackButtonClicks(currentPageUrl, currentPageKey);
81538160
preventAlpineFromPickingUpDomChanges(Alpine3, (andAfterAllThis) => {
81548161
enablePersist && storePersistantElementsForLater((persistedEl) => {
@@ -8163,6 +8170,7 @@ ${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el);
81638170
unPackPersistedPopovers(persistedEl);
81648171
});
81658172
restoreScrollPositionOrScrollToTop();
8173+
swapCallbacks.forEach((callback) => callback());
81668174
andAfterAllThis(() => {
81678175
autofocus && autofocusElementsWithTheAutofocusAttribute();
81688176
nowInitializeAlpineOnTheNewPage(Alpine3);
@@ -8265,7 +8273,7 @@ ${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el);
82658273
let isInitiallyPresentInUrl = has2(url, name);
82668274
let initialValue = isInitiallyPresentInUrl ? get3(url, name) : initialSeedValue;
82678275
let initialValueMemo = JSON.stringify(initialValue);
8268-
let exceptValueMemo = [false, null, void 0].includes(except) ? initialSeedValue : JSON.stringify(except);
8276+
let exceptValueMemo = JSON.stringify(except);
82698277
let hasReturnedToInitialValue = (newValue) => JSON.stringify(newValue) === initialValueMemo;
82708278
let hasReturnedToExceptValue = (newValue) => JSON.stringify(newValue) === exceptValueMemo;
82718279
if (alwaysShow)

public/vendor/livewire/livewire.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/vendor/livewire/livewire.min.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
{"/livewire.js":"0f6341c0"}
2+
{"/livewire.js":"5ef5bc0a"}

0 commit comments

Comments
 (0)