Skip to content

Commit cfe83a8

Browse files
Merge pull request #1250 from NordicSemiconductor/push-lxtnmnpttxwu
Bump shared to 244
2 parents 1c6250d + 58c419e commit cfe83a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1335
-487
lines changed

package-lock.json

Lines changed: 1167 additions & 338 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
"devDependencies": {
107107
"@electron/notarize": "^2.2.0",
108108
"@nordicsemiconductor/nrf-jlink-js": "^0.13.1",
109-
"@nordicsemiconductor/pc-nrfconnect-shared": "^241.0.0",
109+
"@nordicsemiconductor/pc-nrfconnect-shared": "^244.0.0",
110110
"@playwright/test": "^1.16.3",
111111
"@testing-library/user-event": "^14.4.3",
112112
"@types/chmodr": "1.0.0",

resources/css/launcher.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
55
*/
66

7+
@use "sass:color";
78

89
$enable-transitions: false;
910
$enable-rounded: false;
@@ -183,7 +184,7 @@ body {
183184

184185
.text-muted-more {
185186
@extend .text-muted;
186-
color: lighten($color: $text-muted, $amount: 30%) !important;
187+
color: color.adjust($text-muted, $lightness: 30%) !important;
187188
}
188189

189190
.dropdown-menu:empty {

scripts/esbuild.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88

99
import { node as nodeVersion } from '@nordicsemiconductor/pc-nrfconnect-shared/scripts/versions';
10-
import esbuild, { BuildOptions } from 'esbuild';
10+
import esbuild, { type BuildOptions } from 'esbuild';
1111
import * as fs from 'node:fs';
1212

1313
import { dependencies } from '../package.json';

src/common/sources.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { UrlString } from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/Me
88
import {
99
LOCAL,
1010
OFFICIAL,
11-
SourceName,
11+
type SourceName,
1212
} from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/sources';
1313

1414
import { asShortNordicArtifactoryUrl } from './artifactoryUrl';

src/ipc/appInstallProgress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
send,
1010
} from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/infrastructure/mainToRenderer';
1111

12-
import { AppSpec } from './apps';
12+
import { type AppSpec } from './apps';
1313

1414
const channel = {
1515
start: 'app-install:start',

src/ipc/apps.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
*/
66

77
import {
8-
App,
9-
AppSpec,
8+
type App,
9+
type AppSpec,
1010
channel as sharedChannel,
11-
DownloadableApp,
11+
type DownloadableApp,
1212
forRenderer as forRendererFromShared,
13-
GetDownloadableAppsResult as SharedGetDownloadableAppsResult,
13+
type GetDownloadableAppsResult as SharedGetDownloadableAppsResult,
1414
inMain as inMainFromShared,
15-
InstalledDownloadableApp,
15+
type InstalledDownloadableApp,
1616
isDownloadable,
1717
isInstalled,
1818
isUpdatable,
1919
isWithdrawn,
20-
LaunchableApp,
21-
LocalApp,
22-
UninstalledDownloadableApp,
23-
WithdrawnApp,
20+
type LaunchableApp,
21+
type LocalApp,
22+
type UninstalledDownloadableApp,
23+
type WithdrawnApp,
2424
} from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/apps';
2525
import {
2626
handle,

src/ipc/createDesktopShortcut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
send,
1010
} from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/infrastructure/rendererToMain';
1111

12-
import { LaunchableApp } from './apps';
12+
import { type LaunchableApp } from './apps';
1313

1414
const channel = 'create-desktop-shortcut';
1515

src/ipc/proxyLogin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import * as mainToRenderer from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/infrastructure/mainToRenderer';
88
import * as rendererToMain from '@nordicsemiconductor/pc-nrfconnect-shared/ipc/infrastructure/rendererToMain';
9-
import { AuthInfo } from 'electron';
9+
import { type AuthInfo } from 'electron';
1010

1111
const channel = {
1212
request: 'proxy-login:request',

src/launcher/features/apps/App/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { isInstalled, isUpdatable, isWithdrawn } from '../../../../ipc/apps';
1414
import formatPublishTimestamp from '../../../util/formatTimestamp';
1515
import Col from '../../layout/Col';
1616
import Row from '../../layout/Row';
17-
import { DisplayedApp } from '../appsSlice';
17+
import { type DisplayedApp } from '../appsSlice';
1818
import AppIcon from './AppIcon';
1919
import AppProgress from './AppProgress';
2020
import CreateShortcut from './CreateShortcut';

0 commit comments

Comments
 (0)