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: CHANGELOG.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,26 @@
1
1
# NHS.UK React components
2
2
3
+
## 6.0.0-beta.2 - 13 October 2025
4
+
5
+
This version provides support for NHS.UK frontend v10.x, React Server Components (RSC) and fixes a Rollup `'use client'` directive issue.
6
+
7
+
For a full list of changes in this release please refer to the [migration doc](https://github.com/NHSDigital/nhsuk-react-components/blob/main/docs/upgrade-to-6.0.md).
8
+
3
9
## 6.0.0-beta.1 - 8 October 2025
4
10
5
-
This version adds the panel component from NHS.UK frontend v9.3.0 and supports React v19.
11
+
This version provides support for NHS.UK frontend v10.x and adds the [panel component](https://service-manual.nhs.uk/design-system/components/panel) from the NHS.UK design system. Support for React v19 is also included.
6
12
7
13
For a full list of changes in this release please refer to the [migration doc](https://github.com/NHSDigital/nhsuk-react-components/blob/main/docs/upgrade-to-6.0.md).
8
14
9
15
## 6.0.0-beta.0 - 30 September 2025
10
16
11
-
This version provides support for nhsuk-frontend version 10.
17
+
This version provides support for NHS.UK frontend v10.x.
12
18
13
19
For a full list of changes in this release please refer to the [migration doc](https://github.com/NHSDigital/nhsuk-react-components/blob/main/docs/upgrade-to-6.0.md).
14
20
15
21
## 5.0.0 - 4 November 2024
16
22
17
-
This version provides support for nhsuk-frontend version 9.
23
+
This version provides support for NHS.UK frontend v9.x.
18
24
19
25
For a full list of changes in this release please refer to the [migration doc](https://github.com/NHSDigital/nhsuk-react-components/blob/main/docs/upgrade-to-5.0.md).
Copy file name to clipboardExpand all lines: docs/upgrade-to-6.0.md
+40-5Lines changed: 40 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,15 +31,45 @@ The [panel](https://service-manual.nhs.uk/design-system/components/panel) compon
31
31
32
32
This replaces the [list panel component](#list-panel) which was removed in NHS.UK frontend v6.0.0.
33
33
34
+
### Notification banner component
35
+
36
+
The [notification banner](https://service-manual.nhs.uk/design-system/components/notification-banner) component from NHS.UK frontend v10 has been added:
<p>The service will be unavailable from 8pm to 9pm on Thursday 1 January 2025.</p>
42
+
</NotificationBanner>
43
+
```
44
+
45
+
### Support for React Server Components (RSC)
46
+
47
+
All components have been tested as React Server Components (RSC) but due to [multipart namespace component limitations](https://ivicabatinic.from.hr/posts/multipart-namespace-components-addressing-rsc-and-dot-notation-issues) an alternative syntax (without dot notation) can be used as a workaround:
### Update the JavaScript supported script snippet
37
67
38
-
You must now use the NHS.UK frontend v10.x feature detection snippet to check for `<script type="module">`. This change enables styling for JavaScript only features in [supported browsers]() only:
68
+
You must now use the NHS.UK frontend v10.x feature detection snippet to check for `<script type="module">`. This change enables styling for JavaScript features in [supported browsers]() only:
0 commit comments