@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.93 → 0.0.1-alpha.94

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,12 @@
1
+ import { FC } from 'react';
2
+ type TEditModalProps = {
3
+ open: boolean;
4
+ close: () => void;
5
+ values?: Record<string, string | number>;
6
+ openNotificationSuccess?: () => void;
7
+ modalTitle: string;
8
+ modalDescriptionText?: string;
9
+ inputLabel?: string;
10
+ };
11
+ export declare const EditModal: FC<TEditModalProps>;
12
+ export {};
@@ -161,6 +161,7 @@ export type TDynamicComponentsAppTypeMap = {
161
161
  reqIndex: string;
162
162
  jsonPathToArray: string;
163
163
  text: string;
164
+ errorText: string;
164
165
  style?: CSSProperties;
165
166
  };
166
167
  KeyCounter: {
@@ -168,6 +169,7 @@ export type TDynamicComponentsAppTypeMap = {
168
169
  reqIndex: string;
169
170
  jsonPathToObj: string;
170
171
  text: string;
172
+ errorText: string;
171
173
  style?: CSSProperties;
172
174
  };
173
175
  Labels: {
@@ -175,6 +177,12 @@ export type TDynamicComponentsAppTypeMap = {
175
177
  reqIndex: string;
176
178
  jsonPathToLabels: string;
177
179
  selectProps?: SelectProps;
180
+ notificationSuccessMessage: string;
181
+ notificationSuccessMessageDescription: string;
182
+ modalTitle: string;
183
+ modalDescriptionText?: string;
184
+ inputLabel?: string;
185
+ containerStyle?: CSSProperties;
178
186
  };
179
187
  LabelsToSearchParams: {
180
188
  id: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "0.0.1-alpha.93",
3
+ "version": "0.0.1-alpha.94",
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",
@@ -14,8 +14,8 @@
14
14
  },
15
15
  "scripts": {
16
16
  "dev": "concurrently \"npm run watch:build\" \"npm run watch:yalc\"",
17
- "watch:build": "chokidar \"src/**/*\" -c \"npm run build\" -d 2000",
18
- "watch:yalc": "chokidar \"dist/**/*\" -c \"yalc push\" -d 2000",
17
+ "watch:build": "chokidar \"src/**/*\" -c \"npm run build\" -d 5000",
18
+ "watch:yalc": "chokidar \"dist/**/*\" -c \"yalc push\" -d 5000",
19
19
  "dev:open": "cross-env BASEPREFIX=/toolkit vite --open --port 3002 --strictPort",
20
20
  "build": "vite build && tsc && tsc-alias -p tsconfig.json",
21
21
  "build:local": "vite build && tsc && tsc-alias -p tsconfig.json && yalc publish --replace",