@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.83 → 0.0.1-alpha.84

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,6 @@
1
+ import { FC } from 'react';
2
+ import { TDynamicComponentsAppTypeMap } from '../../types';
3
+ export declare const VisibilityContainer: FC<{
4
+ data: TDynamicComponentsAppTypeMap['VisibilityContainer'];
5
+ children?: any;
6
+ }>;
@@ -0,0 +1 @@
1
+ export * from './VisibilityContainer';
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type TVisibilityContainerProps = {
3
+ $hidden?: boolean;
4
+ };
5
+ export declare const Styled: {
6
+ VisibilityContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, TVisibilityContainerProps>>;
7
+ };
8
+ export {};
@@ -21,3 +21,4 @@ export * from './PodTerminal';
21
21
  export * from './NodeTerminal';
22
22
  export * from './PodLogs';
23
23
  export * from './YamlEditorSingleton';
24
+ export * from './VisibilityContainer';
@@ -5,13 +5,20 @@ export declare const parsePartsOfUrl: ({ template, replaceValues, }: {
5
5
  type TDataMap = {
6
6
  [key: string]: any;
7
7
  };
8
- export declare const parseMutliqueryText: ({ text, multiQueryData }: {
8
+ export declare const parseMutliqueryText: ({ text, multiQueryData, customFallback, }: {
9
9
  text?: string | undefined;
10
10
  multiQueryData: TDataMap;
11
+ customFallback?: string | undefined;
11
12
  }) => string;
12
- export declare const parseJsonPathTemplate: ({ text, multiQueryData, }: {
13
+ export declare const parseJsonPathTemplate: ({ text, multiQueryData, customFallback, }: {
13
14
  text?: string | undefined;
14
15
  multiQueryData: TDataMap;
16
+ customFallback?: string | undefined;
17
+ }) => string;
18
+ export declare const parseWithoutPartsOfUrl: ({ text, multiQueryData, customFallback, }: {
19
+ text: string;
20
+ multiQueryData: TDataMap;
21
+ customFallback?: string | undefined;
15
22
  }) => string;
16
23
  export declare const parseAll: ({ text, replaceValues, multiQueryData, }: {
17
24
  text: string;
@@ -136,4 +136,8 @@ export type TDynamicComponentsAppTypeMap = {
136
136
  prefillValuesRequestIndex: number;
137
137
  substractHeight?: number;
138
138
  };
139
+ VisibilityContainer: {
140
+ id: number;
141
+ value: string;
142
+ };
139
143
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "0.0.1-alpha.83",
3
+ "version": "0.0.1-alpha.84",
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",