@k8slens/extensions 5.4.0-alpha.0 → 5.4.0-git.c1d557aeee.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.
@@ -0,0 +1 @@
1
+ export {};
@@ -39228,7 +39228,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
39228
39228
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
39229
39229
 
39230
39230
  "use strict";
39231
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NodesApi\", function() { return NodesApi; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getMetricsForAllNodes\", function() { return getMetricsForAllNodes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"formatNodeTaint\", function() { return formatNodeTaint; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Node\", function() { return Node; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"nodesApi\", function() { return nodesApi; });\n/* harmony import */ var _kube_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../kube-object */ \"./src/common/k8s-api/kube-object.ts\");\n/* harmony import */ var _renderer_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../renderer/utils */ \"./src/renderer/utils/index.ts\");\n/* harmony import */ var _metrics_api__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./metrics.api */ \"./src/common/k8s-api/endpoints/metrics.api.ts\");\n/* harmony import */ var _kube_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../kube-api */ \"./src/common/k8s-api/kube-api.ts\");\n/* harmony import */ var _utils_cluster_id_url_parsing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../utils/cluster-id-url-parsing */ \"./src/common/utils/cluster-id-url-parsing.ts\");\n/**\n * Copyright (c) OpenLens Authors. All rights reserved.\n * Licensed under MIT License. See LICENSE in root directory for more information.\n */\n\n\n\n\n\nclass NodesApi extends _kube_api__WEBPACK_IMPORTED_MODULE_3__[\"KubeApi\"] {\n}\nfunction getMetricsForAllNodes() {\n const opts = { category: \"nodes\" };\n return _metrics_api__WEBPACK_IMPORTED_MODULE_2__[\"metricsApi\"].getMetrics({\n memoryUsage: opts,\n workloadMemoryUsage: opts,\n memoryCapacity: opts,\n memoryAllocatableCapacity: opts,\n cpuUsage: opts,\n cpuCapacity: opts,\n fsSize: opts,\n fsUsage: opts,\n });\n}\nfunction formatNodeTaint(taint) {\n if (taint.value) {\n return `${taint.key}=${taint.value}:${taint.effect}`;\n }\n return `${taint.key}:${taint.effect}`;\n}\n/**\n * Iterate over `conditions` yielding the `type` field if the `status` field is\n * the string `\"True\"`\n * @param conditions An iterator of some conditions\n */\nfunction* getTrueConditionTypes(conditions) {\n for (const { status, type } of conditions) {\n if (status === \"True\") {\n yield type;\n }\n }\n}\nclass Node extends _kube_object__WEBPACK_IMPORTED_MODULE_0__[\"KubeObject\"] {\n constructor(data) {\n super(data);\n Object(_renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"autoBind\"])(this);\n }\n /**\n * Returns the concatination of all current condition types which have a status\n * of `\"True\"`\n */\n getNodeConditionText() {\n var _a, _b;\n return _renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"iter\"].join(getTrueConditionTypes((_b = (_a = this.status) === null || _a === void 0 ? void 0 : _a.conditions) !== null && _b !== void 0 ? _b : []), \" \");\n }\n getTaints() {\n return this.spec.taints || [];\n }\n getRoleLabels() {\n var _a;\n if (!((_a = this.metadata) === null || _a === void 0 ? void 0 : _a.labels) || typeof this.metadata.labels !== \"object\") {\n return \"\";\n }\n const roleLabels = Object.keys(this.metadata.labels)\n .filter(key => key.includes(\"node-role.kubernetes.io\"))\n .map(key => key.match(/([^/]+$)/)[0]); // all after last slash\n if (this.metadata.labels[\"kubernetes.io/role\"] != undefined) {\n roleLabels.push(this.metadata.labels[\"kubernetes.io/role\"]);\n }\n return roleLabels.join(\", \");\n }\n getCpuCapacity() {\n if (!this.status.capacity || !this.status.capacity.cpu)\n return 0;\n return Object(_renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"cpuUnitsToNumber\"])(this.status.capacity.cpu);\n }\n getMemoryCapacity() {\n if (!this.status.capacity || !this.status.capacity.memory)\n return 0;\n return Object(_renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"unitsToBytes\"])(this.status.capacity.memory);\n }\n getConditions() {\n const conditions = this.status.conditions || [];\n if (this.isUnschedulable()) {\n return [{ type: \"SchedulingDisabled\", status: \"True\" }, ...conditions];\n }\n return conditions;\n }\n getActiveConditions() {\n return this.getConditions().filter(c => c.status === \"True\");\n }\n getWarningConditions() {\n const goodConditions = [\"Ready\", \"HostUpgrades\", \"SchedulingDisabled\"];\n return this.getActiveConditions().filter(condition => {\n return !goodConditions.includes(condition.type);\n });\n }\n getKubeletVersion() {\n return this.status.nodeInfo.kubeletVersion;\n }\n getOperatingSystem() {\n var _a, _b, _c, _d, _e, _f;\n return ((_b = (_a = this.metadata) === null || _a === void 0 ? void 0 : _a.labels) === null || _b === void 0 ? void 0 : _b[\"kubernetes.io/os\"])\n || ((_d = (_c = this.metadata) === null || _c === void 0 ? void 0 : _c.labels) === null || _d === void 0 ? void 0 : _d[\"beta.kubernetes.io/os\"])\n || ((_f = (_e = this.status) === null || _e === void 0 ? void 0 : _e.nodeInfo) === null || _f === void 0 ? void 0 : _f.operatingSystem)\n || \"linux\";\n }\n isUnschedulable() {\n return this.spec.unschedulable;\n }\n}\nObject.defineProperty(Node, \"kind\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: \"Node\"\n});\nObject.defineProperty(Node, \"namespaced\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: false\n});\nObject.defineProperty(Node, \"apiBase\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: \"/api/v1/nodes\"\n});\nlet nodesApi;\nif (Object(_utils_cluster_id_url_parsing__WEBPACK_IMPORTED_MODULE_4__[\"isClusterPageContext\"])()) {\n nodesApi = new NodesApi({\n objectConstructor: Node,\n });\n}\n\n\n\n//# sourceURL=webpack:///./src/common/k8s-api/endpoints/nodes.api.ts?");
39231
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NodesApi\", function() { return NodesApi; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getMetricsForAllNodes\", function() { return getMetricsForAllNodes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"formatNodeTaint\", function() { return formatNodeTaint; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Node\", function() { return Node; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"nodesApi\", function() { return nodesApi; });\n/* harmony import */ var _kube_object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../kube-object */ \"./src/common/k8s-api/kube-object.ts\");\n/* harmony import */ var _renderer_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../renderer/utils */ \"./src/renderer/utils/index.ts\");\n/* harmony import */ var _metrics_api__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./metrics.api */ \"./src/common/k8s-api/endpoints/metrics.api.ts\");\n/* harmony import */ var _kube_api__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../kube-api */ \"./src/common/k8s-api/kube-api.ts\");\n/* harmony import */ var _utils_cluster_id_url_parsing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../utils/cluster-id-url-parsing */ \"./src/common/utils/cluster-id-url-parsing.ts\");\n/**\n * Copyright (c) OpenLens Authors. All rights reserved.\n * Licensed under MIT License. See LICENSE in root directory for more information.\n */\n\n\n\n\n\nclass NodesApi extends _kube_api__WEBPACK_IMPORTED_MODULE_3__[\"KubeApi\"] {\n}\nfunction getMetricsForAllNodes() {\n const opts = { category: \"nodes\" };\n return _metrics_api__WEBPACK_IMPORTED_MODULE_2__[\"metricsApi\"].getMetrics({\n memoryUsage: opts,\n workloadMemoryUsage: opts,\n memoryCapacity: opts,\n memoryAllocatableCapacity: opts,\n cpuUsage: opts,\n cpuCapacity: opts,\n fsSize: opts,\n fsUsage: opts,\n });\n}\nfunction formatNodeTaint(taint) {\n if (taint.value) {\n return `${taint.key}=${taint.value}:${taint.effect}`;\n }\n return `${taint.key}:${taint.effect}`;\n}\n/**\n * Iterate over `conditions` yielding the `type` field if the `status` field is\n * the string `\"True\"`\n * @param conditions An iterator of some conditions\n */\nfunction* getTrueConditionTypes(conditions) {\n for (const { status, type } of conditions) {\n if (status === \"True\") {\n yield type;\n }\n }\n}\n/**\n * This regex is used in the `getRoleLabels()` method bellow, but placed here\n * as factoring out regexes is best practice.\n */\nconst nodeRoleLabelKeyMatcher = /^.*node-role.kubernetes.io\\/+(?<role>.+)$/;\nclass Node extends _kube_object__WEBPACK_IMPORTED_MODULE_0__[\"KubeObject\"] {\n constructor(data) {\n super(data);\n Object(_renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"autoBind\"])(this);\n }\n /**\n * Returns the concatination of all current condition types which have a status\n * of `\"True\"`\n */\n getNodeConditionText() {\n var _a, _b;\n return _renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"iter\"].join(getTrueConditionTypes((_b = (_a = this.status) === null || _a === void 0 ? void 0 : _a.conditions) !== null && _b !== void 0 ? _b : []), \" \");\n }\n getTaints() {\n return this.spec.taints || [];\n }\n getRoleLabels() {\n const { labels } = this.metadata;\n if (!labels || typeof labels !== \"object\") {\n return \"\";\n }\n const roleLabels = [];\n for (const labelKey of Object.keys(labels)) {\n const match = nodeRoleLabelKeyMatcher.exec(labelKey);\n if (match) {\n roleLabels.push(match.groups.role);\n }\n }\n if (typeof labels[\"kubernetes.io/role\"] === \"string\") {\n roleLabels.push(labels[\"kubernetes.io/role\"]);\n }\n if (typeof labels[\"node.kubernetes.io/role\"] === \"string\") {\n roleLabels.push(labels[\"node.kubernetes.io/role\"]);\n }\n return roleLabels.join(\", \");\n }\n getCpuCapacity() {\n if (!this.status.capacity || !this.status.capacity.cpu)\n return 0;\n return Object(_renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"cpuUnitsToNumber\"])(this.status.capacity.cpu);\n }\n getMemoryCapacity() {\n if (!this.status.capacity || !this.status.capacity.memory)\n return 0;\n return Object(_renderer_utils__WEBPACK_IMPORTED_MODULE_1__[\"unitsToBytes\"])(this.status.capacity.memory);\n }\n getConditions() {\n const conditions = this.status.conditions || [];\n if (this.isUnschedulable()) {\n return [{ type: \"SchedulingDisabled\", status: \"True\" }, ...conditions];\n }\n return conditions;\n }\n getActiveConditions() {\n return this.getConditions().filter(c => c.status === \"True\");\n }\n getWarningConditions() {\n const goodConditions = [\"Ready\", \"HostUpgrades\", \"SchedulingDisabled\"];\n return this.getActiveConditions().filter(condition => {\n return !goodConditions.includes(condition.type);\n });\n }\n getKubeletVersion() {\n return this.status.nodeInfo.kubeletVersion;\n }\n getOperatingSystem() {\n var _a, _b, _c, _d, _e, _f;\n return ((_b = (_a = this.metadata) === null || _a === void 0 ? void 0 : _a.labels) === null || _b === void 0 ? void 0 : _b[\"kubernetes.io/os\"])\n || ((_d = (_c = this.metadata) === null || _c === void 0 ? void 0 : _c.labels) === null || _d === void 0 ? void 0 : _d[\"beta.kubernetes.io/os\"])\n || ((_f = (_e = this.status) === null || _e === void 0 ? void 0 : _e.nodeInfo) === null || _f === void 0 ? void 0 : _f.operatingSystem)\n || \"linux\";\n }\n isUnschedulable() {\n return this.spec.unschedulable;\n }\n}\nObject.defineProperty(Node, \"kind\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: \"Node\"\n});\nObject.defineProperty(Node, \"namespaced\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: false\n});\nObject.defineProperty(Node, \"apiBase\", {\n enumerable: true,\n configurable: true,\n writable: true,\n value: \"/api/v1/nodes\"\n});\nlet nodesApi;\nif (Object(_utils_cluster_id_url_parsing__WEBPACK_IMPORTED_MODULE_4__[\"isClusterPageContext\"])()) {\n nodesApi = new NodesApi({\n objectConstructor: Node,\n });\n}\n\n\n\n//# sourceURL=webpack:///./src/common/k8s-api/endpoints/nodes.api.ts?");
39232
39232
 
39233
39233
  /***/ }),
39234
39234
 
@@ -13,5 +13,5 @@ interface Props extends SwitchProps {
13
13
  /**
14
14
  * @deprecated Use <Switch/> instead from "../switch.tsx".
15
15
  */
16
- export declare const Switcher: React.ComponentType<Pick<Props, "name" | "id" | "title" | "value" | "size" | "key" | "type" | "resource" | "color" | "className" | "prefix" | "defaultValue" | "form" | "slot" | "style" | "hidden" | "ref" | "action" | "autoFocus" | "checked" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "placeholder" | "readOnly" | "required" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "inputProps" | "innerRef" | "checkedIcon" | "disableFocusRipple" | "edge" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "inputRef"> & import("@material-ui/core/styles").StyledComponentProps<"track" | "checked" | "root" | "thumb" | "focusVisible" | "switchBase">>;
16
+ export declare const Switcher: React.ComponentType<Pick<Props, "name" | "id" | "title" | "value" | "size" | "key" | "type" | "resource" | "role" | "color" | "className" | "prefix" | "defaultValue" | "form" | "slot" | "style" | "hidden" | "ref" | "action" | "autoFocus" | "checked" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "placeholder" | "readOnly" | "required" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "inputProps" | "innerRef" | "checkedIcon" | "disableFocusRipple" | "edge" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "inputRef"> & import("@material-ui/core/styles").StyledComponentProps<"track" | "checked" | "root" | "thumb" | "focusVisible" | "switchBase">>;
17
17
  export {};
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.4.0-alpha.0",
5
+ "version": "5.4.0-git.c1d557aeee.0",
6
6
  "copyright": "© 2021 OpenLens Authors",
7
7
  "license": "MIT",
8
8
  "main": "dist/src/extensions/extension-api.js",