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
{{ message }}
This repository was archived by the owner on Mar 21, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.AsyncClipboard/README.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.AsyncClipboard](https://www.nuget.org/packages/PatrickJahr.Blazor.AsyncClipboard/), which offers improved features and better compatibility with the latest Blazor versions.
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.Badging/README.md
+4
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.Badging](https://www.nuget.org/packages/PatrickJahr.Blazor.Badging/), which offers improved features and better compatibility with the latest Blazor versions.
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.FileHandling/README.md
+13-7
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.FileHandling](https://www.nuget.org/packages/PatrickJahr.Blazor.FileHandling/), which offers improved features and better compatibility with the latest Blazor versions.
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.GrpcWeb.DevTools/README.md
+9-7
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.GrpcWeb.DevTools](https://www.nuget.org/packages/PatrickJahr.Blazor.GrpcWeb.DevTools/), which offers improved features and better compatibility with the latest Blazor versions.
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.PwaUpdate/README.md
+14-12
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
-
# Thinktecture.Blazor.PwaUpdate
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.PwaUpdate](https://www.nuget.org/packages/PatrickJahr.Blazor.PwaUpdate/), which offers improved features and better compatibility with the latest Blazor versions.
If you do not want to use the default layout, you can also pass a ChildContent, which will be displayed instead of the default.
90
+
If you do not want to use the default layout, you can also pass a ChildContent, which will be displayed instead of the default.
87
91
88
92
```html
89
93
<UpdateModal>
90
-
<div>Update available!</div>
91
-
<buttononclick="@Reload">Update</button>
94
+
<div>Update available!</div>
95
+
<buttononclick="@Reload">Update</button>
92
96
</UpdateModal>
93
97
```
94
98
95
99
Another option is to override CSS variables:
100
+
96
101
- The color of the close icon can be changed by this variable: `--close-icon-color`
97
-
- The color must be an rgb valur like this: `255, 255, 255`
102
+
- The color must be an rgb valur like this: `255, 255, 255`
98
103
- The action button color can be changed by this variable: `--action-button-color`
99
-
- The color must be an rgb valur like this: `208, 188, 255`
104
+
- The color must be an rgb valur like this: `208, 188, 255`
100
105
- The background color of the modal can be changed by this variable: `--modal-background`
101
106
- The text color of the modal can be changed by this variable: `--on-modal-background`
102
107
103
108
### Update Service
104
109
105
-
If you do not want to use the modal, you can also use only the update service. To do this, you can make the `IUpdateService` service available to the component,
106
-
page, or service via dependency injection. To receive the event for an update, simply register for the `UpdateAvailable` event.
110
+
If you do not want to use the modal, you can also use only the update service. To do this, you can make the `IUpdateService` service available to the component,
111
+
page, or service via dependency injection. To receive the event for an update, simply register for the `UpdateAvailable` event.
107
112
108
113
Then call the initialization method `InitializeServiceWorkerUpdateAsync` to start the registration of the `StateChanged` event of the service worker.
Thanks to [Kristoffer Strube](https://twitter.com/kstrubeg) who provides [a Blazor wrapper for the File System Access API](https://github.com/KristofferStrube/Blazor.FileSystemAccess).
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.ScreenWakeLock/README.md
+10-7
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.ScreenWakeLock](https://www.nuget.org/packages/PatrickJahr.Blazor.ScreenWakeLock/), which offers improved features and better compatibility with the latest Blazor versions.
Copy file name to clipboardexpand all lines: src/Thinktecture.Blazor.ViewTransitions/README.md
+43-39
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,13 @@
1
+
⚠️ **This package is deprecated and will no longer receive updates.**
2
+
3
+
We recommend migrating to the new package, [PatrickJahr.ViewTransitions](https://www.nuget.org/packages/PatrickJahr.Blazor.ViewTransitions/), which offers improved features and better compatibility with the latest Blazor versions.
- To perform a view transition, use the method `StartViewTransitionAsync()`. This takes two parameters.
82
86
83
-
- The first parameter is a task. This Task specifies when the transition can be performed. That means the new view is ready, and the transition can start. Please note that the View Transition API must first take a screenshot of the current state before the DOM is changed. The following example opens a dialog. The method `StartViewTransitionAsync()`, passed as a task, first waits briefly before setting the necessary parameters.
- The first parameter is a task. This Task specifies when the transition can be performed. That means the new view is ready, and the transition can start. Please note that the View Transition API must first take a screenshot of the current state before the DOM is changed. The following example opens a dialog. The method `StartViewTransitionAsync()`, passed as a task, first waits briefly before setting the necessary parameters.
0 commit comments