@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.87 → 0.0.1-alpha.89

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.
@@ -9,6 +9,7 @@ export type TEnrichedTableProps = {
9
9
  pathToNavigate?: string;
10
10
  recordKeysForNavigation?: string[];
11
11
  recordKeysForNavigationSecond?: string[];
12
+ recordKeysForNavigationThird?: string[];
12
13
  additionalPrinterColumnsUndefinedValues?: TAdditionalPrinterColumnsUndefinedValues;
13
14
  additionalPrinterColumnsTrimLengths?: TAdditionalPrinterColumnsTrimLengths;
14
15
  additionalPrinterColumnsColWidths?: TAdditionalPrinterColumnsColWidths;
@@ -0,0 +1 @@
1
+ export declare const formatLocalDate: (iso: string) => string;
@@ -0,0 +1,13 @@
1
+ export declare const getResult: ({ valuePrepared, criteriaSuccess, criteriaError, valueToCompareSuccess, valueToCompareError, successText, errorText, fallbackText, }: {
2
+ valuePrepared: string;
3
+ criteriaSuccess: 'equals' | 'notEquals';
4
+ criteriaError: 'equals' | 'notEquals';
5
+ valueToCompareSuccess: unknown[];
6
+ valueToCompareError: unknown[];
7
+ successText: string;
8
+ errorText: string;
9
+ fallbackText: string;
10
+ }) => {
11
+ type: 'success' | 'danger' | 'warning';
12
+ text: string;
13
+ };
@@ -47,6 +47,7 @@ export type TDynamicComponentsAppTypeMap = {
47
47
  parsedText: {
48
48
  id: number | string;
49
49
  text: string;
50
+ formatter?: 'timestamp';
50
51
  style?: CSSProperties;
51
52
  };
52
53
  ProjectInfoCard: {
@@ -82,10 +83,13 @@ export type TDynamicComponentsAppTypeMap = {
82
83
  StatusText: {
83
84
  id: number | string;
84
85
  value: string;
85
- criteria: 'equals' | 'notEquals';
86
- valueToCompare: unknown;
86
+ criteriaSuccess: 'equals' | 'notEquals';
87
+ criteriaError: 'equals' | 'notEquals';
88
+ valueToCompareSuccess: unknown[];
89
+ valueToCompareError: unknown[];
87
90
  successText: string;
88
91
  errorText: string;
92
+ fallbackText: string;
89
93
  } & Omit<TextProps, 'id' | 'children'>;
90
94
  SidebarProvider: {
91
95
  id: number | string;
@@ -12,4 +12,5 @@ export type TPrepareTableRes = {
12
12
  pathToNavigate?: string;
13
13
  recordKeysForNavigation?: string[];
14
14
  recordKeysForNavigationSecond?: string[];
15
+ recordKeysForNavigationThird?: string[];
15
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "0.0.1-alpha.87",
3
+ "version": "0.0.1-alpha.89",
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",