@nordicsemiconductor/pc-nrfconnect-shared 246.0.0 → 248.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 +19 -8
- package/dist/scripts/nordic-publish.js +11 -11
- package/dist/typings/scripts/check-app-properties.d.ts +1 -0
- package/dist/typings/scripts/check-app-properties.d.ts.map +1 -1
- package/dist/typings/scripts/check-app-properties.test.d.ts +2 -0
- package/dist/typings/scripts/check-app-properties.test.d.ts.map +1 -0
- 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/FactoryReset/FactoryResetButton.d.ts.map +1 -1
- package/package.json +1 -1
- package/release_notes.md +3 -2
- package/scripts/check-app-properties.test.ts +60 -0
- package/scripts/check-app-properties.ts +13 -11
- package/src/ConfirmBeforeClose/ConfirmCloseDialog.tsx +4 -1
- package/src/ConfirmBeforeClose/confirmBeforeCloseSlice.ts +10 -0
- package/src/ConfirmBeforeClose/effects.ts +19 -0
- package/src/FactoryReset/FactoryResetButton.tsx +4 -0
package/Changelog.md
CHANGED
|
@@ -7,6 +7,19 @@ 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
|
+
## 248.0.0 - 2026-05-20
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- In case app is executing important task application will properly reopen when
|
|
15
|
+
resetting defaults.
|
|
16
|
+
|
|
17
|
+
## 247.0.0 - 2026-04-23
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- In the repo URL check, ignore the hostname for ssh git URLs.
|
|
22
|
+
|
|
10
23
|
## 246.0.0 - 2026-04-22
|
|
11
24
|
|
|
12
25
|
### Changed
|
|
@@ -42,14 +55,12 @@ structure of `Card` changed. Follow this format:
|
|
|
42
55
|
import { Card } from '@nordicsemiconductor/pc-nrfconnect-shared';
|
|
43
56
|
|
|
44
57
|
<Card>
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
</Card.Body>
|
|
52
|
-
</Card>
|
|
58
|
+
<Card.Header className="tw-flex tw-flex-row tw-justify-between">
|
|
59
|
+
<Card.Header.Title cardTitle="your title here" />
|
|
60
|
+
{/* your button here */}
|
|
61
|
+
</Card.Header>
|
|
62
|
+
<Card.Body>{/* your card content here */}</Card.Body>
|
|
63
|
+
</Card>;
|
|
53
64
|
```
|
|
54
65
|
|
|
55
66
|
## 244.0.0 - 2026-01-22
|