@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.55 → 0.0.1-alpha.57

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.
@@ -4,5 +4,6 @@ export type TContentCardProps = {
4
4
  flexGrow?: number;
5
5
  displayFlex?: boolean;
6
6
  flexFlow?: string;
7
+ maxHeight?: number;
7
8
  };
8
9
  export declare const ContentCard: FC<TContentCardProps>;
@@ -5,6 +5,7 @@ type TContentContainerProps = {
5
5
  $flexGrow?: number;
6
6
  $displayFlex?: boolean;
7
7
  $flexFlow?: string;
8
+ $maxHeight?: number;
8
9
  };
9
10
  export declare const ContentContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, TContentContainerProps>>;
10
11
  export declare const Styled: {
@@ -8,6 +8,7 @@ export type TEnrichedTableProps = {
8
8
  columns: TableProps['columns'];
9
9
  pathToNavigate?: string;
10
10
  recordKeysForNavigation?: string[];
11
+ recordKeysForNavigationSecond?: string[];
11
12
  additionalPrinterColumnsUndefinedValues?: TAdditionalPrinterColumnsUndefinedValues;
12
13
  additionalPrinterColumnsTrimLengths?: TAdditionalPrinterColumnsTrimLengths;
13
14
  additionalPrinterColumnsColWidths?: TAdditionalPrinterColumnsColWidths;
@@ -0,0 +1,9 @@
1
+ type TDataMap = {
2
+ [key: string]: any;
3
+ };
4
+ export declare const parseMutliqueryText: ({ text, multiQueryData }: {
5
+ text?: string | undefined;
6
+ multiQueryData: TDataMap;
7
+ }) => string;
8
+ export declare const serializeLabels: (input: unknown) => string;
9
+ export {};
@@ -86,6 +86,12 @@ export type TDynamicComponentsAppTypeMap = {
86
86
  EnrichedTable: {
87
87
  id: number;
88
88
  fetchUrl: string;
89
+ pathToItems: string[];
89
90
  clusterNamePartOfUrl: string;
90
- } & Omit<TEnrichedTableProviderProps, 'tableMappingsReplaceValues' | 'cluster' | 'theme' | 'tableProps' | 'dataItems'>;
91
+ labelsSelector?: Record<string, string>;
92
+ fieldSelector?: {
93
+ fieldName: string;
94
+ parsedText: string;
95
+ };
96
+ } & Omit<TEnrichedTableProviderProps, 'tableMappingsReplaceValues' | 'cluster' | 'theme' | 'tableProps' | 'dataItems' | 'withoutControls'>;
91
97
  };
@@ -11,4 +11,5 @@ export type TPrepareTableRes = {
11
11
  additionalPrinterColumnsColWidths?: TAdditionalPrinterColumnsColWidths;
12
12
  pathToNavigate?: string;
13
13
  recordKeysForNavigation?: string[];
14
+ recordKeysForNavigationSecond?: string[];
14
15
  };
@@ -16,6 +16,7 @@ export type TRendererComponents<T extends TItemTypeMap> = {
16
16
  export type TFactoryDataK8s<T extends TItemTypeMap> = {
17
17
  key: string;
18
18
  urlsToFetch: string[];
19
+ withScrollableMainContentCard?: boolean;
19
20
  data: TRenderableItem<T>[];
20
21
  };
21
22
  export type TFactoryResource<T extends TItemTypeMap> = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "0.0.1-alpha.55",
3
+ "version": "0.0.1-alpha.57",
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",