@k8slens/extensions 5.6.0-git.1b7dd717a5.0 → 5.6.0-git.240dfad167.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.
@@ -50,6 +50,7 @@ declare const packageJsonInjectable: import("@ogre-tools/injectable").Injectable
50
50
  bundledKubectlVersion: string;
51
51
  bundledHelmVersion: string;
52
52
  sentryDsn: string;
53
+ contentSecurityPolicy: string;
53
54
  };
54
55
  engines: {
55
56
  node: string;
@@ -81,3 +81,4 @@ export declare const kubernetesDocumentationWeblinkId = "kubernetes-documentatio
81
81
  export declare const appSemVer: SemVer;
82
82
  export declare const docsUrl: string;
83
83
  export declare const sentryDsn: string;
84
+ export declare const contentSecurityPolicy: string;
@@ -1,3 +1,2 @@
1
- /// <reference types="electron" />
2
1
  declare const ipcMainInjectable: import("@ogre-tools/injectable").Injectable<Electron.IpcMain, unknown, void>;
3
2
  export default ipcMainInjectable;
@@ -5,7 +5,11 @@
5
5
  import React from "react";
6
6
  export interface DrawerTitleProps {
7
7
  className?: string;
8
- children: React.ReactNode;
8
+ children?: React.ReactNode;
9
+ /**
10
+ * @deprecated Prefer passing the value as `children`
11
+ */
12
+ title?: React.ReactNode;
9
13
  /**
10
14
  * Specifies how large this title is
11
15
  *
@@ -1,3 +1,2 @@
1
- /// <reference types="electron" />
2
1
  declare const ipcRendererInjectable: import("@ogre-tools/injectable").Injectable<Electron.IpcRenderer, unknown, void>;
3
2
  export default ipcRendererInjectable;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@k8slens/extensions",
3
3
  "productName": "OpenLens extensions",
4
4
  "description": "OpenLens - Open Source Kubernetes IDE: extensions",
5
- "version": "5.6.0-git.1b7dd717a5.0",
5
+ "version": "5.6.0-git.240dfad167.0",
6
6
  "copyright": "© 2021 OpenLens Authors",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/extensions/extension-api.js",