@verdaccio/types 12.0.0-next-7.4 → 12.0.0-next-7.5

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
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 12.0.0-next-7.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 10dd81f: feat: complete overhaul of web user interface
8
+
3
9
  ## 12.0.0-next-7.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/types",
3
- "version": "12.0.0-next-7.4",
3
+ "version": "12.0.0-next-7.5",
4
4
  "description": "verdaccio types definitions",
5
5
  "keywords": [
6
6
  "private",
@@ -83,6 +83,7 @@ export type PackageManagers = 'pnpm' | 'yarn' | 'npm';
83
83
  export type CommonWebConf = {
84
84
  title?: string;
85
85
  logo?: string;
86
+ logoDark?: string;
86
87
  favicon?: string;
87
88
  gravatar?: boolean;
88
89
  sort_packages?: string;
@@ -98,6 +99,7 @@ export type CommonWebConf = {
98
99
  showFooter?: boolean;
99
100
  showThemeSwitch?: boolean;
100
101
  showDownloadTarball?: boolean;
102
+ showUplinks?: boolean;
101
103
  hideDeprecatedVersions?: boolean;
102
104
  primaryColor: string;
103
105
  showRaw?: boolean;