upgrade deps and regenerate providers

This commit is contained in:
Fabian Freund
2026-01-01 10:48:59 +01:00
parent e9a6154158
commit 8848bd5d09
90 changed files with 499 additions and 585 deletions
@@ -11,12 +11,12 @@ part of 'providers.dart';
@ProviderFor(HistoryFilter)
@JsonPersist()
const historyFilterProvider = HistoryFilterProvider._();
final historyFilterProvider = HistoryFilterProvider._();
@JsonPersist()
final class HistoryFilterProvider
extends $NotifierProvider<HistoryFilter, HistoryFilterOptions> {
const HistoryFilterProvider._()
HistoryFilterProvider._()
: super(
from: null,
argument: null,
@@ -51,7 +51,6 @@ abstract class _$HistoryFilterBase extends $Notifier<HistoryFilterOptions> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<HistoryFilterOptions, HistoryFilterOptions>;
final element =
ref.element
@@ -61,12 +60,12 @@ abstract class _$HistoryFilterBase extends $Notifier<HistoryFilterOptions> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(browsingHistory)
const browsingHistoryProvider = BrowsingHistoryProvider._();
final browsingHistoryProvider = BrowsingHistoryProvider._();
final class BrowsingHistoryProvider
extends
@@ -76,7 +75,7 @@ final class BrowsingHistoryProvider
FutureOr<List<VisitInfo>>
>
with $FutureModifier<List<VisitInfo>>, $FutureProvider<List<VisitInfo>> {
const BrowsingHistoryProvider._()
BrowsingHistoryProvider._()
: super(
from: null,
argument: null,
@@ -10,11 +10,11 @@ part of 'history.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(HistoryRepository)
const historyRepositoryProvider = HistoryRepositoryProvider._();
final historyRepositoryProvider = HistoryRepositoryProvider._();
final class HistoryRepositoryProvider
extends $NotifierProvider<HistoryRepository, void> {
const HistoryRepositoryProvider._()
HistoryRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -48,7 +48,6 @@ abstract class _$HistoryRepository extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -58,6 +57,6 @@ abstract class _$HistoryRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}