@prorobotech/openapi-k8s-toolkit 1.2.0-alpha.16 → 1.2.0-alpha.17

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.
@@ -45,5 +45,6 @@ export type TEnrichedTableProviderProps = {
45
45
  disablePagination?: boolean;
46
46
  };
47
47
  withoutControls?: boolean;
48
+ pathToKey?: string;
48
49
  };
49
50
  export declare const EnrichedTableProvider: FC<TEnrichedTableProviderProps>;
@@ -1,8 +1,9 @@
1
1
  import { TableProps } from 'antd';
2
2
  import { TJSON } from '../../../../../localTypes/JSON';
3
3
  import { TAdditionalPrinterColumns } from '../../../../../localTypes/richTable';
4
- export declare const prepare: ({ dataItems, resourceSchema, dataForControls, additionalPrinterColumns, }: {
4
+ export declare const prepare: ({ dataItems, pathToKey, resourceSchema, dataForControls, additionalPrinterColumns, }: {
5
5
  dataItems: TJSON[];
6
+ pathToKey?: string | undefined;
6
7
  resourceSchema?: TJSON | undefined;
7
8
  dataForControls?: {
8
9
  cluster: string;
@@ -119,6 +119,7 @@ export type TDynamicComponentsAppTypeMap = {
119
119
  pathToLabels: string | string[];
120
120
  };
121
121
  fieldSelector?: Record<string, string>;
122
+ pathToKey?: string;
122
123
  } & Omit<TEnrichedTableProviderProps, 'tableMappingsReplaceValues' | 'withoutControls' | 'cluster' | 'theme' | 'tableProps' | 'dataItems' | 'dataForControlsInternal'>;
123
124
  PodTerminal: {
124
125
  id: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "1.2.0-alpha.16",
3
+ "version": "1.2.0-alpha.17",
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",