@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.73 → 0.0.1-alpha.75

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.
@@ -118,4 +118,15 @@ export type TDynamicComponentsAppTypeMap = {
118
118
  podName: string;
119
119
  substractHeight?: number;
120
120
  };
121
+ YamlEditorSingleton: {
122
+ id: number;
123
+ cluster: string;
124
+ isNameSpaced: boolean;
125
+ type: 'builtin' | 'apis';
126
+ apiGroup?: string;
127
+ apiVersion?: string;
128
+ typeName: string;
129
+ prefillValuesRequestIndex: number;
130
+ substractHeight?: number;
131
+ };
121
132
  };
@@ -4,4 +4,5 @@ import { TDynamicRendererProps } from '../DynamicRenderer';
4
4
  export declare const DynamicRendererWithProviders: <T extends TItemTypeMap>(props: TDynamicRendererProps<T> & {
5
5
  urlsToFetch: string[];
6
6
  theme: 'dark' | 'light';
7
+ nodeTerminalDefaultProfile?: string | undefined;
7
8
  }) => ReactElement;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ type TFactoryConfig = {
3
+ nodeTerminalDefaultProfile?: string;
4
+ };
5
+ export declare const FactoryConfigContextProvider: ({ children, value }: import("react").PropsWithChildren<{
6
+ value: TFactoryConfig;
7
+ }>) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const useFactoryConfig: () => TFactoryConfig;
9
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "0.0.1-alpha.73",
3
+ "version": "0.0.1-alpha.75",
4
4
  "description": "ProRobotech OpenAPI k8s tools",
5
5
  "main": "dist/openapi-k8s-toolkit.cjs.js",
6
6
  "module": "dist/openapi-k8s-toolkit.es.js",