@nordicsemiconductor/pc-nrfconnect-shared 119.0.0 → 121.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 +27 -0
- package/coverage/cobertura-coverage.xml +235 -206
- package/nrfutil/moduleVersion.ts +25 -0
- package/nrfutil/sandbox.ts +2 -22
- package/package.json +1 -1
- package/src/App/shared.scss +0 -1
- package/src/Device/DeviceSelector/DeviceSelector.test.tsx +9 -9
- package/src/Device/DeviceSelector/DeviceSelector.tsx +2 -2
- package/src/Device/deviceLister.ts +7 -7
- package/src/Device/deviceSetup.ts +1 -0
- package/src/Dropdown/Dropdown.tsx +2 -2
- package/src/InlineInput/InlineInput.tsx +25 -3
- package/src/InlineInput/NumberInlineInput.tsx +24 -8
- package/src/InlineInput/NumberInputWithDropdown.tsx +132 -0
- package/src/index.ts +2 -0
- package/src/utils/packageJson.ts +1 -1
- package/typings/generated/nrfutil/moduleVersion.d.ts +1 -0
- package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandbox.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceSetup.d.ts.map +1 -1
- package/typings/generated/src/Dropdown/Dropdown.d.ts +2 -2
- package/typings/generated/src/Dropdown/Dropdown.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/InlineInput.d.ts +3 -0
- package/typings/generated/src/InlineInput/InlineInput.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/NumberInlineInput.d.ts +8 -4
- package/typings/generated/src/InlineInput/NumberInlineInput.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/NumberInputWithDropdown.d.ts +19 -0
- package/typings/generated/src/InlineInput/NumberInputWithDropdown.d.ts.map +1 -0
- package/typings/generated/src/index.d.ts +2 -0
- package/typings/generated/src/index.d.ts.map +1 -1
package/Changelog.md
CHANGED
|
@@ -7,6 +7,29 @@ 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
|
+
## 121 - 2023-10-24
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **NumberInputWithDropdown** component, which combines the
|
|
15
|
+
**NumberInlineInput** and the **Dropdown** components. Example usage found
|
|
16
|
+
in `Baudrate.tsx` in `pc-nrfconnect-serial-terminal`.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Device might end up stuck in device list of left event occurred while we are
|
|
21
|
+
waiting for device
|
|
22
|
+
- Device setup dialog is closed immediately pressing no to programming it
|
|
23
|
+
|
|
24
|
+
## 120 - 2023-10-13
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- `prepareSandbox()` couldn't be called from the launcher any longer. Even
|
|
29
|
+
when the version to install was provided, `prepareSandbox()` tried to look
|
|
30
|
+
into the `package.json`, which didn't exist any longer in the launcher,
|
|
31
|
+
because it is only supplied during build time by apps now.
|
|
32
|
+
|
|
10
33
|
## 119 - 2023-10-13
|
|
11
34
|
|
|
12
35
|
### Changed
|
|
@@ -43,6 +66,10 @@ every new version is a new major version.
|
|
|
43
66
|
- `nrfutil device batch` could previously call the `onException` when task was
|
|
44
67
|
complete.
|
|
45
68
|
|
|
69
|
+
### Changed
|
|
70
|
+
|
|
71
|
+
- Read the `package.json` already during compile time, but only for apps.
|
|
72
|
+
|
|
46
73
|
## 115 - 2023-09-28
|
|
47
74
|
|
|
48
75
|
### Fixed
|