@harborclient/sdk 1.6.2 → 1.6.3
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
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 1.6.3 - 2026-08-04
|
|
8
|
+
|
|
9
|
+
- refactor: update code editor theme to Nord. (`5fda54b0`)
|
|
10
|
+
- refactor: update ESLint configurations and clean up code. (`fa5f53c9`)
|
|
11
|
+
|
|
7
12
|
## 1.6.2 - 2026-08-04
|
|
8
13
|
|
|
9
14
|
- docs(sdk): enhance API index formatting for improved readability. (`52517d89`)
|
|
@@ -29,7 +29,7 @@ export declare function isCodeEditorTheme(value: unknown): value is CodeEditorTh
|
|
|
29
29
|
*/
|
|
30
30
|
export declare function normalizeCodeEditorSetup(input: Partial<CodeEditorSetup> | undefined): CodeEditorSetup;
|
|
31
31
|
/**
|
|
32
|
-
* Normalizes a theme identifier, falling back to
|
|
32
|
+
* Normalizes a theme identifier, falling back to Nord when unknown.
|
|
33
33
|
*
|
|
34
34
|
* @param value - Raw theme value from storage or input.
|
|
35
35
|
*/
|
|
@@ -51,12 +51,12 @@ export function normalizeCodeEditorSetup(input) {
|
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
|
-
* Normalizes a theme identifier, falling back to
|
|
54
|
+
* Normalizes a theme identifier, falling back to Nord when unknown.
|
|
55
55
|
*
|
|
56
56
|
* @param value - Raw theme value from storage or input.
|
|
57
57
|
*/
|
|
58
58
|
export function normalizeCodeEditorTheme(value) {
|
|
59
|
-
return isCodeEditorTheme(value) ? value : '
|
|
59
|
+
return isCodeEditorTheme(value) ? value : 'nord';
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
62
|
* Parses a raw font size into pixel units, clamping below the minimum.
|