@devtron-labs/devtron-fe-common-lib 1.6.8 → 1.6.10-beta-1
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/{@code-editor-D-daQ12t.js → @code-editor-D5aMgl0Y.js} +5029 -4962
- package/dist/{@common-rjsf-BxK5pyhX.js → @common-rjsf-CIzItos6.js} +1 -1
- package/dist/Common/Constants.d.ts +1 -1
- package/dist/Pages/GlobalConfigurations/DeploymentCharts/types.d.ts +6 -8
- package/dist/Pages/ResourceBrowser/ForceDeleteOption.d.ts +3 -0
- package/dist/Pages/ResourceBrowser/constants.d.ts +4 -0
- package/dist/Pages/ResourceBrowser/index.d.ts +1 -0
- package/dist/Shared/Components/CICDHistory/AppStatusDetailsChart.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/types.d.ts +1 -1
- package/dist/Shared/Components/ImageCard/SequentialCDCardTitle/DeploymentEnvState/types.d.ts +1 -1
- package/dist/Shared/types.d.ts +4 -0
- package/dist/Shared/validations.d.ts +1 -0
- package/dist/index.js +607 -604
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { j as t, O as E } from "./@vendor-CWh7bjwl.js";
|
2
2
|
import P, { forwardRef as $ } from "react";
|
3
3
|
import L, { getDefaultRegistry as D } from "@rjsf/core";
|
4
|
-
import { T as v, c as H, a as U, i as k, b as T, d as S, S as M } from "./@code-editor-
|
4
|
+
import { T as v, c as H, a as U, i as k, b as T, d as S, S as M } from "./@code-editor-D5aMgl0Y.js";
|
5
5
|
import J, { components as C } from "react-select";
|
6
6
|
import { ReactComponent as V } from "./assets/ic-chevron-down.fc70d7a7.svg";
|
7
7
|
import { getUiOptions as A, getTemplate as I, getSubmitButtonOptions as W, ADDITIONAL_PROPERTY_FLAG as B, errorId as q, englishStringTranslator as K, TranslatableString as Y, titleId as z, canExpand as G, deepEquals as Q } from "@rjsf/utils";
|
@@ -55,8 +55,8 @@ export declare const URLS: {
|
|
55
55
|
DEPLOYMENT_HISTORY_CONFIGURATIONS: string;
|
56
56
|
GLOBAL_CONFIG_SCOPED_VARIABLES: string;
|
57
57
|
GLOBAL_CONFIG_DEPLOYMENT_CHARTS_LIST: string;
|
58
|
+
GLOBAL_CONFIG_DEPLOYMENT_CHARTS_UPLOAD_CHART: string;
|
58
59
|
NETWORK_STATUS_INTERFACE: string;
|
59
|
-
CONFIG_DRIFT: string;
|
60
60
|
RESOURCE_BROWSER: string;
|
61
61
|
COMPARE_CLUSTERS: string;
|
62
62
|
};
|
@@ -1,18 +1,16 @@
|
|
1
|
-
|
1
|
+
interface DeploymentChartInfo {
|
2
2
|
id: number;
|
3
3
|
chartDescription?: string;
|
4
4
|
isUserUploaded: boolean;
|
5
5
|
name: string;
|
6
6
|
version: string;
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
uploadedBy: string;
|
8
|
+
}
|
9
|
+
export type DeploymentChartListDTO = DeploymentChartInfo[];
|
10
|
+
export interface DeploymentChartVersionsType extends Pick<DeploymentChartInfo, 'id' | 'version' | 'uploadedBy' | 'isUserUploaded'> {
|
11
11
|
description: string;
|
12
12
|
}
|
13
|
-
export interface DeploymentChartType {
|
14
|
-
name: string;
|
15
|
-
isUserUploaded: boolean;
|
13
|
+
export interface DeploymentChartType extends Pick<DeploymentChartInfo, 'name'> {
|
16
14
|
versions: DeploymentChartVersionsType[];
|
17
15
|
}
|
18
16
|
export declare enum DEVTRON_DEPLOYMENT_CHART_NAMES {
|
@@ -41,6 +41,10 @@ export declare const CORDON_NODE_MODAL_MESSAGING: {
|
|
41
41
|
uncordoning: string;
|
42
42
|
cancel: string;
|
43
43
|
};
|
44
|
+
export declare const DELETE_NODE_MODAL_MESSAGING: {
|
45
|
+
subtitle: JSX.Element;
|
46
|
+
successInfoToastMessage: string;
|
47
|
+
};
|
44
48
|
export declare const NODE_DRAIN_OPTIONS_CHECKBOX_CONFIG: {
|
45
49
|
key: Exclude<keyof NodeDrainRequest['nodeDrainOptions'], 'gracePeriodSeconds'>;
|
46
50
|
infoText: string;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { AppStatusDetailsChartType } from './types';
|
2
|
-
declare const AppStatusDetailsChart: ({ filterRemoveHealth, showFooter,
|
2
|
+
declare const AppStatusDetailsChart: ({ filterRemoveHealth, showFooter, handleOpenConfigDriftModal, onClose, }: AppStatusDetailsChartType) => JSX.Element;
|
3
3
|
export default AppStatusDetailsChart;
|
@@ -445,7 +445,7 @@ export interface DeploymentHistorySidebarType {
|
|
445
445
|
export interface AppStatusDetailsChartType {
|
446
446
|
filterRemoveHealth?: boolean;
|
447
447
|
showFooter: boolean;
|
448
|
-
|
448
|
+
handleOpenConfigDriftModal?: () => void;
|
449
449
|
onClose?: () => void;
|
450
450
|
}
|
451
451
|
export interface StatusFilterButtonType {
|
package/dist/Shared/types.d.ts
CHANGED