Skip to content

Commit 61e0bdf

Browse files
chore(composer): update Filament dependencies to v4.5.3
Upgraded all Filament package versions in `composer.lock` from v4.5.2 to v4.5.3 for bug fixes and minor improvements. Updated `laravel/prompts` and `league/uri` along with related packages. Upgraded plugin API version to 2.9.0.
1 parent e8775b9 commit 61e0bdf

10 files changed

Lines changed: 113 additions & 98 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
"license": "MIT",
1717
"require": {
1818
"php": "^8.2",
19-
"filament/filament": "^4.4",
19+
"filament/filament": "^4.5",
2020
"laravel/framework": "^12.0",
2121
"laravel/tinker": "^2.10.1",
22-
"livewire/livewire": "^3.6"
22+
"livewire/livewire": "^3.7"
2323
},
2424
"require-dev": {
2525
"barryvdh/laravel-debugbar": "^3.14",

composer.lock

Lines changed: 80 additions & 81 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)