@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.52 → 0.0.1-alpha.54
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.
- package/dist/openapi-k8s-toolkit.es.js +17401 -17225
- package/dist/openapi-k8s-toolkit.es.js.map +1 -1
- package/dist/openapi-k8s-toolkit.umd.js +17400 -17224
- package/dist/openapi-k8s-toolkit.umd.js.map +1 -1
- package/dist/types/components/molecules/BlackholeForm/organisms/BlackholeForm/styled.d.ts +272 -0
- package/dist/types/components/molecules/EnrichedTable/organisms/EnrichedTable/EnrichedTable.d.ts +3 -0
- package/dist/types/components/molecules/EnrichedTable/organisms/EnrichedTable/atoms/TinyButton/TinyButton.d.ts +3 -1
- package/dist/types/components/molecules/EnrichedTable/organisms/EnrichedTableProvider/EnrichedTableProvider.d.ts +3 -0
- package/dist/types/components/molecules/EnrichedTable/organisms/EnrichedTableProvider/utils.d.ts +25 -0
- package/dist/types/components/molecules/ManageableBreadcrumbs/molecules/CollapsibleBreadcrumb/CollapsibleBreadcrumb.d.ts +7 -0
- package/dist/types/components/molecules/ManageableBreadcrumbs/molecules/CollapsibleBreadcrumb/index.d.ts +1 -0
- package/dist/types/components/molecules/ManageableBreadcrumbs/molecules/CollapsibleBreadcrumb/styled.d.ts +820 -0
- package/dist/types/components/molecules/ManageableBreadcrumbs/molecules/index.d.ts +1 -0
- package/dist/types/components/molecules/MarketPlace/atoms/AddCard/styled.d.ts +3 -16
- package/dist/types/components/molecules/MarketPlace/molecules/MarketplaceCard/styled.d.ts +1 -0
- package/dist/types/localTypes/bff/table.d.ts +1 -20
- package/package.json +3 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CollapsibleBreadcrumb';
|
|
@@ -25,22 +25,9 @@ export declare const Styled: {
|
|
|
25
25
|
activeTabKey?: string | undefined;
|
|
26
26
|
defaultActiveTabKey?: string | undefined;
|
|
27
27
|
tabProps?: import("antd").TabsProps | undefined;
|
|
28
|
-
classNames?:
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
extra?: string | undefined;
|
|
32
|
-
title?: string | undefined;
|
|
33
|
-
actions?: string | undefined;
|
|
34
|
-
cover?: string | undefined;
|
|
35
|
-
} | undefined;
|
|
36
|
-
styles?: {
|
|
37
|
-
header?: import("react").CSSProperties | undefined;
|
|
38
|
-
body?: import("react").CSSProperties | undefined;
|
|
39
|
-
extra?: import("react").CSSProperties | undefined;
|
|
40
|
-
title?: import("react").CSSProperties | undefined;
|
|
41
|
-
actions?: import("react").CSSProperties | undefined;
|
|
42
|
-
cover?: import("react").CSSProperties | undefined;
|
|
43
|
-
} | undefined;
|
|
28
|
+
classNames?: Partial<Record<"title" | "body" | "header" | "extra" | "cover" | "actions", string>> | undefined;
|
|
29
|
+
styles?: Partial<Record<"title" | "body" | "header" | "extra" | "cover" | "actions", import("react").CSSProperties>> | undefined;
|
|
30
|
+
variant?: "outlined" | "borderless" | undefined;
|
|
44
31
|
defaultChecked?: boolean | undefined;
|
|
45
32
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
46
33
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -1101,6 +1101,7 @@ export declare const Styled: {
|
|
|
1101
1101
|
color?: import("antd/es/_util/type").LiteralUnion<"default" | "error" | "success" | "warning" | import("antd/es/_util/colors").PresetColorType | "processing"> | undefined;
|
|
1102
1102
|
closable?: boolean | ({
|
|
1103
1103
|
closeIcon?: import("react").ReactNode;
|
|
1104
|
+
disabled?: boolean | undefined;
|
|
1104
1105
|
} & import("react").AriaAttributes) | undefined;
|
|
1105
1106
|
closeIcon?: import("react").ReactNode;
|
|
1106
1107
|
visible?: boolean | undefined;
|
|
@@ -1,30 +1,11 @@
|
|
|
1
|
-
import { TableProps } from 'antd';
|
|
2
|
-
import { TJSON } from '../JSON';
|
|
3
1
|
import { TAdditionalPrinterColumns, TAdditionalPrinterColumnsUndefinedValues, TAdditionalPrinterColumnsTrimLengths, TAdditionalPrinterColumnsColWidths } from '../richTable';
|
|
4
2
|
export type TPrepareTableReq = {
|
|
5
3
|
customizationId?: string;
|
|
6
4
|
tableMappingsReplaceValues?: Record<string, string | undefined>;
|
|
7
5
|
forceDefaultAdditionalPrinterColumns?: TAdditionalPrinterColumns;
|
|
8
|
-
dataItems: TJSON[];
|
|
9
|
-
resourceSchema?: TJSON;
|
|
10
|
-
dataForControls?: {
|
|
11
|
-
cluster: string;
|
|
12
|
-
syntheticProject?: string;
|
|
13
|
-
pathPrefix: string;
|
|
14
|
-
apiVersion: string;
|
|
15
|
-
typeName: string;
|
|
16
|
-
backlink: string;
|
|
17
|
-
deletePathPrefix: string;
|
|
18
|
-
onDeleteHandle: (name: string, endpoint: string) => void;
|
|
19
|
-
permissions: {
|
|
20
|
-
canUpdate?: boolean;
|
|
21
|
-
canDelete?: boolean;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
6
|
};
|
|
25
7
|
export type TPrepareTableRes = {
|
|
26
|
-
|
|
27
|
-
columns: TableProps['columns'];
|
|
8
|
+
additionalPrinterColumns: TAdditionalPrinterColumns;
|
|
28
9
|
additionalPrinterColumnsUndefinedValues?: TAdditionalPrinterColumnsUndefinedValues;
|
|
29
10
|
additionalPrinterColumnsTrimLengths?: TAdditionalPrinterColumnsTrimLengths;
|
|
30
11
|
additionalPrinterColumnsColWidths?: TAdditionalPrinterColumnsColWidths;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prorobotech/openapi-k8s-toolkit",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.54",
|
|
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",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@ant-design/icons": "5.6.0",
|
|
30
30
|
"@tanstack/react-query": "5.62.2",
|
|
31
31
|
"@tanstack/react-query-devtools": "5.62.2",
|
|
32
|
-
"antd": "5.
|
|
32
|
+
"antd": "5.26.4",
|
|
33
33
|
"react": "18.3.1",
|
|
34
34
|
"react-dom": "18.3.1",
|
|
35
35
|
"react-router-dom": "^6.25.1"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@types/styled-components": "5.1.26",
|
|
68
68
|
"@typescript-eslint/eslint-plugin": "8.6.0",
|
|
69
69
|
"@vitejs/plugin-react-swc": "3.7.0",
|
|
70
|
-
"antd": "5.
|
|
70
|
+
"antd": "5.26.4",
|
|
71
71
|
"eslint": "8.57.1",
|
|
72
72
|
"eslint-config-airbnb": "19.0.4",
|
|
73
73
|
"eslint-config-prettier": "9.0.0",
|