@nordicsemiconductor/pc-nrfconnect-shared 247.0.0 → 249.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog.md +34 -8
- package/dist/scripts/nordic-publish.js +1 -1
- package/dist/typings/ipc/device.d.ts +1 -1
- package/dist/typings/ipc/device.d.ts.map +1 -1
- package/dist/typings/ipc/schema/packageJson.d.ts +9 -9
- package/dist/typings/src/ConfirmBeforeClose/ConfirmCloseDialog.d.ts.map +1 -1
- package/dist/typings/src/ConfirmBeforeClose/confirmBeforeCloseSlice.d.ts +5 -1
- package/dist/typings/src/ConfirmBeforeClose/confirmBeforeCloseSlice.d.ts.map +1 -1
- package/dist/typings/src/ConfirmBeforeClose/effects.d.ts +3 -0
- package/dist/typings/src/ConfirmBeforeClose/effects.d.ts.map +1 -0
- package/dist/typings/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
- package/dist/typings/src/FactoryReset/FactoryResetButton.d.ts.map +1 -1
- package/dist/typings/src/utils/packageJson.d.ts +2 -2
- package/ipc/device.ts +5 -0
- package/package.json +1 -1
- package/release_notes.md +16 -1
- package/src/ConfirmBeforeClose/ConfirmCloseDialog.tsx +4 -1
- package/src/ConfirmBeforeClose/confirmBeforeCloseSlice.ts +10 -0
- package/src/ConfirmBeforeClose/effects.ts +19 -0
- package/src/Device/deviceInfo/deviceInfo.ts +57 -0
- package/src/Device/deviceInfo/nRF92-series-logo.svg +19 -0
- package/src/Device/deviceInfo/nRF93-series-logo.svg +20 -0
- package/src/FactoryReset/FactoryResetButton.tsx +4 -0
- package/.renovaterc.json +0 -10
package/Changelog.md
CHANGED
|
@@ -7,6 +7,34 @@ This project does _not_ adhere to
|
|
|
7
7
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
|
|
8
8
|
every new version is a new major version.
|
|
9
9
|
|
|
10
|
+
## 249.0.0 - 2026-06-03
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Adjusted app release workflow for unified docs.
|
|
15
|
+
- Updated list of the supported devices.
|
|
16
|
+
|
|
17
|
+
### Steps to upgrade when using this package
|
|
18
|
+
|
|
19
|
+
- Update the workflows as demonstrated in
|
|
20
|
+
https://github.com/nordicsemi/pc-nrfconnect-boilerplate/pull/168:
|
|
21
|
+
- Delete the outdated `.github/workflows/docs-bundle.yml`,
|
|
22
|
+
`.github/workflows/docs-publish-dev.yml`, and
|
|
23
|
+
`.github/workflows/docs-publish-prod.yml`.
|
|
24
|
+
- If the project has documentation, then adjust the workflow
|
|
25
|
+
`.github/workflows/release.yml`: Replace the `doc_bundle_name` property
|
|
26
|
+
with a property called `unified_doc_project_name` which contains the right
|
|
27
|
+
project name from
|
|
28
|
+
https://github.com/nordicsemi/swtools-app-docs/blob/main/projects.json
|
|
29
|
+
(currently always the name of the project's repository).
|
|
30
|
+
|
|
31
|
+
## 248.0.0 - 2026-05-20
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- In case app is executing important task application will properly reopen when
|
|
36
|
+
resetting defaults.
|
|
37
|
+
|
|
10
38
|
## 247.0.0 - 2026-04-23
|
|
11
39
|
|
|
12
40
|
### Changed
|
|
@@ -48,14 +76,12 @@ structure of `Card` changed. Follow this format:
|
|
|
48
76
|
import { Card } from '@nordicsemiconductor/pc-nrfconnect-shared';
|
|
49
77
|
|
|
50
78
|
<Card>
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
</Card.Body>
|
|
58
|
-
</Card>
|
|
79
|
+
<Card.Header className="tw-flex tw-flex-row tw-justify-between">
|
|
80
|
+
<Card.Header.Title cardTitle="your title here" />
|
|
81
|
+
{/* your button here */}
|
|
82
|
+
</Card.Header>
|
|
83
|
+
<Card.Body>{/* your card content here */}</Card.Body>
|
|
84
|
+
</Card>;
|
|
59
85
|
```
|
|
60
86
|
|
|
61
87
|
## 244.0.0 - 2026-01-22
|