@nordicsemiconductor/pc-nrfconnect-shared 143.0.0 → 146.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 +29 -1
- package/ipc/device.ts +1 -0
- package/package.json +1 -1
- package/scripts/nordic-publish.js +1 -1
- package/src/Device/deviceInfo/deviceInfo.ts +9 -0
- package/src/Dialog/Dialog.tsx +13 -2
- package/src/Dialog/dialog.scss +11 -1
- package/src/ErrorDialog/ErrorDialog.tsx +27 -31
- package/src/index.ts +1 -0
- package/src/utils/usageDataRenderer.ts +8 -3
- package/typings/generated/ipc/device.d.ts +1 -1
- package/typings/generated/ipc/device.d.ts.map +1 -1
- package/typings/generated/ipc/schema/packageJson.d.ts +12 -12
- package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
- package/typings/generated/src/Dialog/Dialog.d.ts +5 -1
- package/typings/generated/src/Dialog/Dialog.d.ts.map +1 -1
- package/typings/generated/src/ErrorDialog/ErrorDialog.d.ts.map +1 -1
- package/typings/generated/src/index.d.ts +1 -1
- package/typings/generated/src/index.d.ts.map +1 -1
- package/typings/generated/src/utils/packageJson.d.ts +2 -2
- package/typings/generated/src/utils/usageDataRenderer.d.ts.map +1 -1
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
|
+
## 146.0.0 - 2024-01-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `details` prop to `ErrorDialog`.
|
|
15
|
+
- Make text selectable in dialogs.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Use `gray-700` for text colour in dialogs.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Wrong button variant used when only 1 button visible in redux `ErrorDialog`.
|
|
24
|
+
|
|
25
|
+
## 145.0.0 - 2023-01-05
|
|
26
|
+
|
|
27
|
+
### Fix
|
|
28
|
+
|
|
29
|
+
- Azure insights sends the same event multiple times
|
|
30
|
+
- Shared compatibility with launcher
|
|
31
|
+
|
|
32
|
+
## 144.0.0 - 2023-12-19
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- `nRF9131EK` support in device lister.
|
|
37
|
+
|
|
10
38
|
## 143.0.0 - 2023-12-14
|
|
11
39
|
|
|
12
40
|
### Changed
|
|
@@ -16,7 +44,7 @@ every new version is a new major version.
|
|
|
16
44
|
|
|
17
45
|
### Fixed
|
|
18
46
|
|
|
19
|
-
- `
|
|
47
|
+
- `nRF9160` and `nRF9161` now show modem trait as true when using external
|
|
20
48
|
jLink
|
|
21
49
|
|
|
22
50
|
## 142.0.0 - 2023-12-13
|
package/ipc/device.ts
CHANGED