@devtron-labs/devtron-fe-common-lib 1.15.2-beta-6 → 1.15.2

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.
@@ -1,7 +1,7 @@
1
1
  import { j as n, as as y, au as k, at as W } from "./@vendor-STJ9h0oI.js";
2
2
  import V, { forwardRef as J, useMemo as P } from "react";
3
3
  import K, { getDefaultRegistry as q } from "@rjsf/core";
4
- import { T as F, j as N, c as v, b as S, a as Y, i as z, d as w, e as E, S as G } from "./@code-editor-DJTpk7Kj.js";
4
+ import { T as F, j as N, c as v, b as S, a as Y, i as z, d as w, e as E, S as G } from "./@code-editor-O_mIinn2.js";
5
5
  import Q, { components as D } from "react-select";
6
6
  import { ReactComponent as X } from "./assets/ic-chevron-down.fc70d7a7.svg";
7
7
  import { getUiOptions as B, getTemplate as $, getSubmitButtonOptions as Z, ADDITIONAL_PROPERTY_FLAG as L, errorId as ee, englishStringTranslator as te, TranslatableString as ne, titleId as re, canExpand as se, deepEquals as ae } from "@rjsf/utils";
@@ -595,7 +595,7 @@ export declare enum DeploymentAppTypes {
595
595
  GITOPS = "argo_cd",
596
596
  MANIFEST_DOWNLOAD = "manifest_download",
597
597
  MANIFEST_PUSH = "manifest_push",
598
- FLUX = "flux_cd"
598
+ FLUX = "flux"
599
599
  }
600
600
  export interface VulnerabilityType {
601
601
  name: string;
@@ -1,7 +1,4 @@
1
- import { Dispatch, RefObject, SetStateAction } from 'react';
2
- import { GroupBase } from 'react-select';
3
- import { ServerErrors } from '../../Common/ServerError';
4
- import { SelectPickerOptionType } from '../../Shared/Components';
1
+ import { RefObject } from 'react';
5
2
  import { Nodes, NodeType } from '../../Shared/types';
6
3
  export interface GVKType {
7
4
  Group: string;
@@ -37,37 +34,14 @@ export interface K8sResourceListPayloadType {
37
34
  filter?: string;
38
35
  k8sRequest: ResourceListPayloadK8sRequestType;
39
36
  }
40
- export declare enum ResourceRecommenderHeaderType {
41
- NAME = "name",
42
- NAMESPACE = "namespace",
43
- KIND = "kind",
44
- API_VERSION = "apiVersion",
45
- CONTAINER_NAME = "containerName",
46
- CPU_REQUEST = "cpuRequest",
47
- CPU_LIMIT = "cpuLimit",
48
- MEMORY_REQUEST = "memoryRequest",
49
- MEMORY_LIMIT = "memoryLimit"
50
- }
51
- export type ResourceRecommenderHeaderWithStringValue = Extract<ResourceRecommenderHeaderType, ResourceRecommenderHeaderType.NAME | ResourceRecommenderHeaderType.NAMESPACE | ResourceRecommenderHeaderType.KIND | ResourceRecommenderHeaderType.API_VERSION | ResourceRecommenderHeaderType.CONTAINER_NAME>;
52
- export type ResourceRecommenderHeaderWithRecommendation = Extract<ResourceRecommenderHeaderType, ResourceRecommenderHeaderType.CPU_REQUEST | ResourceRecommenderHeaderType.CPU_LIMIT | ResourceRecommenderHeaderType.MEMORY_REQUEST | ResourceRecommenderHeaderType.MEMORY_LIMIT>;
53
37
  export type K8sResourceDetailDataType = {
54
38
  [key: string]: string | number | object | boolean;
55
- additionalMetadata?: Partial<Record<ResourceRecommenderHeaderWithRecommendation, {
56
- current: {
57
- value: string | 'none';
58
- } | null;
59
- recommended: {
60
- value: string | 'none';
61
- } | null;
62
- delta: number | null;
63
- }>>;
64
39
  };
65
40
  export interface K8sResourceDetailType {
66
41
  headers: string[];
67
42
  data: K8sResourceDetailDataType[];
68
43
  }
69
44
  export interface BulkSelectionActionWidgetProps {
70
- isResourceRecommendationView: boolean;
71
45
  count: number;
72
46
  handleOpenBulkDeleteModal: () => void;
73
47
  handleClearBulkSelection: () => void;
@@ -75,12 +49,11 @@ export interface BulkSelectionActionWidgetProps {
75
49
  handleOpenUncordonNodeModal: () => void;
76
50
  handleOpenDrainNodeModal: () => void;
77
51
  handleOpenRestartWorkloadModal: () => void;
78
- handleOpenApplyResourceRecommendationModal: () => void;
79
52
  parentRef: RefObject<HTMLDivElement>;
80
53
  showBulkRestartOption: boolean;
81
54
  showNodeListingOptions: boolean;
82
55
  }
83
- export type RBBulkOperationType = 'restart' | 'delete' | 'cordon' | 'uncordon' | 'drain' | 'applyResourceRecommendation';
56
+ export type RBBulkOperationType = 'restart' | 'delete' | 'cordon' | 'uncordon' | 'drain';
84
57
  export interface CreateResourceRequestBodyType {
85
58
  appId: string;
86
59
  clusterId: number;
@@ -92,7 +65,6 @@ export interface CreateResourceRequestBodyType {
92
65
  export interface ResourceManifestDTO {
93
66
  manifestResponse: {
94
67
  manifest: Record<string, unknown>;
95
- recommendedManifest?: Record<string, unknown>;
96
68
  };
97
69
  secretViewAccess: boolean;
98
70
  }
@@ -136,20 +108,4 @@ export interface NodeActionRequest {
136
108
  version: string;
137
109
  kind: string;
138
110
  }
139
- export interface GVKOptionValueType {
140
- kind: string;
141
- apiVersion: string;
142
- }
143
- export interface GetResourceRecommenderResourceListPropsType {
144
- resourceList: K8sResourceDetailType;
145
- reloadResourceListData: () => void;
146
- setShowAbsoluteValuesInResourceRecommender: Dispatch<SetStateAction<boolean>>;
147
- showAbsoluteValuesInResourceRecommender: boolean;
148
- gvkOptions: GroupBase<SelectPickerOptionType<GVKOptionValueType>>[];
149
- areGVKOptionsLoading: boolean;
150
- reloadGVKOptions: () => void;
151
- gvkOptionsError: ServerErrors;
152
- isResourceListLoading: boolean;
153
- resourceListError: ServerErrors;
154
- }
155
111
  export {};
@@ -50,5 +50,3 @@ export declare const NODE_DRAIN_OPTIONS_CHECKBOX_CONFIG: {
50
50
  infoText: string;
51
51
  label: string;
52
52
  }[];
53
- export declare const GVK_FILTER_KIND_QUERY_PARAM_KEY = "gvkFilterKind";
54
- export declare const GVK_FILTER_API_VERSION_QUERY_PARAM_KEY = "gvkFilterApiVersion";
@@ -2,7 +2,7 @@ import { APIOptions, ResponseType } from '../../Common/Types';
2
2
  import { CreateResourceDTO, CreateResourcePayload, K8sResourceDetailType, K8sResourceListPayloadType, NodeActionRequest, ResourceListPayloadType, ResourceType } from './ResourceBrowser.Types';
3
3
  import { ClusterDetail, NodeCordonRequest } from './types';
4
4
  export declare const getK8sResourceList: (resourceListPayload: K8sResourceListPayloadType, signal?: AbortSignal) => Promise<ResponseType<K8sResourceDetailType>>;
5
- export declare const createNewResource: (resourceListPayload: CreateResourcePayload, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType<CreateResourceDTO[]>>;
5
+ export declare const createNewResource: (resourceListPayload: CreateResourcePayload) => Promise<ResponseType<CreateResourceDTO[]>>;
6
6
  export declare const deleteResource: (resourceListPayload: ResourceListPayloadType, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType<ResourceType[]>>;
7
7
  export declare const deleteNodeCapacity: (requestPayload: NodeActionRequest, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType>;
8
8
  export declare const cordonNodeCapacity: (requestPayload: NodeCordonRequest, abortControllerRef?: APIOptions["abortControllerRef"]) => Promise<ResponseType>;
@@ -1,4 +1,4 @@
1
1
  import { AppDetails, DeploymentStatusDetailsBreakdownDataType } from '../../types';
2
2
  import { GetAppDetailsParamsType, GetDeploymentStatusWithTimelineParamsType } from './types';
3
3
  export declare const getAppDetails: ({ appId, envId, abortControllerRef, }: GetAppDetailsParamsType) => Promise<AppDetails>;
4
- export declare const getDeploymentStatusWithTimeline: ({ abortControllerRef, appId, envId, showTimeline, virtualEnvironmentConfig, isHelmApp, deploymentAppType, }: GetDeploymentStatusWithTimelineParamsType) => Promise<DeploymentStatusDetailsBreakdownDataType>;
4
+ export declare const getDeploymentStatusWithTimeline: ({ abortControllerRef, appId, envId, showTimeline, virtualEnvironmentConfig, isHelmApp, }: GetDeploymentStatusWithTimelineParamsType) => Promise<DeploymentStatusDetailsBreakdownDataType>;
@@ -1,5 +1,5 @@
1
1
  import { FunctionComponent, PropsWithChildren, ReactNode } from 'react';
2
- import { APIOptions, DeploymentAppTypes } from '../../../Common/Types';
2
+ import { APIOptions } from '../../../Common/Types';
3
3
  import { AppDetails, ConfigDriftModalProps, DeploymentStatusDetailsBreakdownDataType, DeploymentStatusDetailsType, IntelligenceConfig } from '../../types';
4
4
  export declare enum AppStatusModalTabType {
5
5
  APP_STATUS = "appStatus",
@@ -65,7 +65,6 @@ export type GetDeploymentStatusWithTimelineParamsType = Pick<APIOptions, 'abortC
65
65
  wfrId: AppDetails['resourceTree']['wfrId'];
66
66
  };
67
67
  isHelmApp?: boolean;
68
- deploymentAppType: DeploymentAppTypes;
69
68
  };
70
69
  export interface AppStatusModalTabListProps extends Pick<AppStatusModalProps, 'appDetails' | 'type'> {
71
70
  handleSelectTab: (updatedTab: AppStatusModalTabType) => void;
@@ -1,3 +1,3 @@
1
1
  import { DeploymentStatusDetailBreakdownType } from './types';
2
- declare const DeploymentStatusDetailBreakdown: ({ deploymentStatusDetailsBreakdownData, isVirtualEnvironment, appDetails, rootClassName, deploymentAppType, }: DeploymentStatusDetailBreakdownType) => JSX.Element;
2
+ declare const DeploymentStatusDetailBreakdown: ({ deploymentStatusDetailsBreakdownData, isVirtualEnvironment, appDetails, rootClassName, }: DeploymentStatusDetailBreakdownType) => JSX.Element;
3
3
  export default DeploymentStatusDetailBreakdown;
@@ -402,7 +402,6 @@ export interface DeploymentStatusDetailBreakdownType {
402
402
  */
403
403
  appDetails: AppDetails | null;
404
404
  rootClassName?: string;
405
- deploymentAppType?: DeploymentAppTypes;
406
405
  }
407
406
  export interface DeploymentStatusDetailRowType extends Pick<DeploymentStatusDetailBreakdownType, 'appDetails'> {
408
407
  type: DeploymentStatusTimelineType;
@@ -6,6 +6,5 @@ export declare const WFR_STATUS_DTO_TO_DEPLOYMENT_STATUS_MAP: Readonly<Record<Wo
6
6
  export declare const PROGRESSING_DEPLOYMENT_STATUS: Readonly<(typeof DEPLOYMENT_STATUS)[keyof typeof DEPLOYMENT_STATUS][]>;
7
7
  export declare const SUCCESSFUL_DEPLOYMENT_STATUS: typeof PROGRESSING_DEPLOYMENT_STATUS;
8
8
  export declare const FAILED_DEPLOYMENT_STATUS: typeof PROGRESSING_DEPLOYMENT_STATUS;
9
- export declare const PHYSICAL_ENV_DEPLOYMENT_TIMELINE_ORDER_ARGO: Readonly<DeploymentStatusTimelineType[]>;
10
- export declare const PHYSICAL_ENV_DEPLOYMENT_TIMELINE_ORDER_FLUX: Readonly<DeploymentStatusTimelineType[]>;
9
+ export declare const PHYSICAL_ENV_DEPLOYMENT_TIMELINE_ORDER: Readonly<DeploymentStatusTimelineType[]>;
11
10
  export declare const DEPLOYMENT_PHASES: Readonly<DeploymentPhaseType[]>;
@@ -1,4 +1,3 @@
1
- import { DeploymentAppTypes } from '../../../Common/Types';
2
1
  import { DeploymentStatusDetailsBreakdownDataType, DeploymentStatusDetailsType } from '../../types';
3
2
  /**
4
3
  * @description
@@ -18,4 +17,4 @@ import { DeploymentStatusDetailsBreakdownDataType, DeploymentStatusDetailsType }
18
17
  * - If this timeline is not inprogress and deploymentStatus is progressing, we will set the current timeline to waiting.
19
18
  * - In similar fashion based on the deploymentStatus we will set the icon and display text for the timeline.
20
19
  */
21
- export declare const processDeploymentStatusDetailsData: (deploymentAppType: DeploymentAppTypes, data?: DeploymentStatusDetailsType) => DeploymentStatusDetailsBreakdownDataType;
20
+ export declare const processDeploymentStatusDetailsData: (data?: DeploymentStatusDetailsType) => DeploymentStatusDetailsBreakdownDataType;
@@ -41,7 +41,6 @@ export declare const iconMap: {
41
41
  'ic-cloud-vms': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
42
42
  'ic-cluster': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
43
43
  'ic-code': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
44
- 'ic-container-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
45
44
  'ic-container': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
46
45
  'ic-cookr': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
47
46
  'ic-copy': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -78,7 +77,6 @@ export declare const iconMap: {
78
77
  'ic-filter': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
79
78
  'ic-flask': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
80
79
  'ic-folder-user': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
81
- 'ic-gavel': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
82
80
  'ic-gear': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
83
81
  'ic-gift-gradient': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
84
82
  'ic-gift': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -124,7 +122,6 @@ export declare const iconMap: {
124
122
  'ic-memory': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
125
123
  'ic-microsoft': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
126
124
  'ic-minikube': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
127
- 'ic-minus': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
128
125
  'ic-missing': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
129
126
  'ic-mobile': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
130
127
  'ic-monitoring': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -151,7 +148,6 @@ export declare const iconMap: {
151
148
  'ic-sort-descending': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
152
149
  'ic-sortable': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
153
150
  'ic-sparkle-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
154
- 'ic-speedometer': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
155
151
  'ic-spinny': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
156
152
  'ic-spray-can': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
157
153
  'ic-stack': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -177,7 +173,6 @@ export declare const iconMap: {
177
173
  'ic-timer': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
178
174
  'ic-traffic-signal': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
179
175
  'ic-travclan': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
180
- 'ic-two-cubes': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
181
176
  'ic-ubuntu': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
182
177
  'ic-unknown': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
183
178
  'ic-user-circle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -5,7 +5,7 @@ import { Pair } from 'yaml';
5
5
  import { MaterialHistoryType } from '@Shared/Services/app.types';
6
6
  import { ApprovalConfigDataType, MaterialInfo, SortingOrder, UserApprovalConfigType, UserApprovalInfo } from '../Common';
7
7
  import { AggregatedNodes, PodMetadatum } from './Components';
8
- import { BorderConfigType, GetTimeDifferenceParamsType, GitTriggers, IntersectionChangeHandler, IntersectionOptions, Node, PreventOutsideFocusProps, TargetPlatformItemDTO, TargetPlatformsDTO, WebhookEventNameType } from './types';
8
+ import { BorderConfigType, GetTimeDifferenceParamsType, GitTriggers, IntersectionChangeHandler, IntersectionOptions, PreventOutsideFocusProps, TargetPlatformItemDTO, TargetPlatformsDTO, WebhookEventNameType } from './types';
9
9
  interface HighlightSearchTextProps {
10
10
  /**
11
11
  * The text to be highlighted
@@ -102,5 +102,4 @@ export declare const getClassNameForStickyHeaderWithShadow: (isStuck: boolean, t
102
102
  export declare const clearCookieOnLogout: () => void;
103
103
  export declare const getAppDetailsURL: (appId: number | string, envId?: number | string) => string;
104
104
  export declare const smoothScrollToTop: (scrollContainer: HTMLElement, targetPosition: number) => import('framer-motion').AnimationPlaybackControls;
105
- export declare const getGroupVersionFromApiVersion: (apiVersion: string) => Pick<Node, "group" | "version">;
106
105
  export {};
@@ -97,8 +97,7 @@ export declare enum Nodes {
97
97
  Node = "Node",
98
98
  Overview = "Overview",
99
99
  MonitoringDashboard = "MonitoringDashboard",
100
- UpgradeCluster = "UpgradeCluster",
101
- ResourceRecommender = "ResourceRecommender"
100
+ UpgradeCluster = "UpgradeCluster"
102
101
  }
103
102
  export type NodeType = keyof typeof Nodes;
104
103
  export interface Node {
@@ -1044,7 +1043,6 @@ export interface DeploymentStatusDetailsType {
1044
1043
  timelines: DeploymentStatusDetailsTimelineType[];
1045
1044
  wfrStatus?: WorkflowRunnerStatusDTO;
1046
1045
  isDeploymentWithoutApproval: boolean;
1047
- deploymentAppType: DeploymentAppTypes;
1048
1046
  }
1049
1047
  export type DeploymentStatusTimelineType = TIMELINE_STATUS.DEPLOYMENT_INITIATED | TIMELINE_STATUS.GIT_COMMIT | TIMELINE_STATUS.ARGOCD_SYNC | TIMELINE_STATUS.KUBECTL_APPLY | TIMELINE_STATUS.APP_HEALTH | TIMELINE_STATUS.HELM_PACKAGE_GENERATED | TIMELINE_STATUS.HELM_MANIFEST_PUSHED_TO_HELM_REPO;
1050
1048
  export type DeploymentStatusBreakdownItemIconType = 'success' | 'failed' | 'unknown' | 'inprogress' | 'unreachable' | 'loading' | 'disconnect' | 'timed_out' | '';
@@ -1089,7 +1087,6 @@ export interface DeploymentStatusDetailsBreakdownDataType {
1089
1087
  deploymentErrorMessage: string;
1090
1088
  nextTimelineToProcess: DeploymentStatusTimelineType;
1091
1089
  } | null;
1092
- deploymentAppType: DeploymentAppTypes;
1093
1090
  }
1094
1091
  export interface IntelligenceConfig {
1095
1092
  clusterId: number;
@@ -1 +1 @@
1
- .rjsf-form-template__container>div:first-child{padding:20px;margin-right:28px}.rjsf-form-template__field,.rjsf-form-template__field--error{grid-template-columns:250px 1fr}.rjsf-form-template__field input.form__input,.rjsf-form-template__field--error input.form__input{padding:6px 8px}.rjsf-form-template__field input.form__input[readonly],.rjsf-form-template__field--error input.form__input[readonly]{opacity:.5}.rjsf-form-template__additional-fields{grid-template-columns:1fr 1fr}.rjsf-form-template__array-field-item{grid-template-columns:1fr auto}.rjsf-form-template__array-field-item>:first-child{margin:0}.rjsf-form-template__array-field-item legend{display:none}.rjsf-form-template__array-field-item:has(+div){margin-bottom:8px}.rjsf-form-template__additional-fields,.rjsf-form-template__array-field-item{z-index:0;background:transparent}.rjsf-form-template__additional-fields:has(>.remove-btn__container:hover):after,.rjsf-form-template__array-field-item:has(>.remove-btn__container:hover):after{background:var(--R50)}.rjsf-form-template__additional-fields:has(>.remove-btn__container):after,.rjsf-form-template__array-field-item:has(>.remove-btn__container):after{border-radius:4px;transform:translate(-50%,-50%);top:50%;left:50%;background:transparent;z-index:-1;position:absolute;height:calc(100% + 8px);width:calc(100% + 8px);content:"";transition:all .1s ease-out}.rjsf-form-template__additional-fields>.remove-btn__container:hover,.rjsf-form-template__array-field-item>.remove-btn__container:hover{fill:var(--R500)}.rjsf-form-template__additional-fields>.remove-btn__container:hover path,.rjsf-form-template__array-field-item>.remove-btn__container:hover path{fill:var(--R500)}.rjsf-form-template__additional-fields>.remove-btn__container,.rjsf-form-template__array-field-item>.remove-btn__container{transition:all .1s ease-out}
1
+ .rjsf-form-template__container>div:first-child{padding:20px;margin-right:28px}.rjsf-form-template__field,.rjsf-form-template__field--error{grid-template-columns:250px 1fr}.rjsf-form-template__field input.form__input,.rjsf-form-template__field--error input.form__input{padding:6px 8px}.rjsf-form-template__additional-fields{grid-template-columns:1fr 1fr}.rjsf-form-template__array-field-item{grid-template-columns:1fr auto}.rjsf-form-template__array-field-item>:first-child{margin:0}.rjsf-form-template__array-field-item legend{display:none}.rjsf-form-template__array-field-item:has(+div){margin-bottom:8px}.rjsf-form-template__additional-fields,.rjsf-form-template__array-field-item{z-index:0;background:transparent}.rjsf-form-template__additional-fields:has(>.remove-btn__container:hover):after,.rjsf-form-template__array-field-item:has(>.remove-btn__container:hover):after{background:var(--R50)}.rjsf-form-template__additional-fields:has(>.remove-btn__container):after,.rjsf-form-template__array-field-item:has(>.remove-btn__container):after{border-radius:4px;transform:translate(-50%,-50%);top:50%;left:50%;background:transparent;z-index:-1;position:absolute;height:calc(100% + 8px);width:calc(100% + 8px);content:"";transition:all .1s ease-out}.rjsf-form-template__additional-fields>.remove-btn__container:hover,.rjsf-form-template__array-field-item>.remove-btn__container:hover{fill:var(--R500)}.rjsf-form-template__additional-fields>.remove-btn__container:hover path,.rjsf-form-template__array-field-item>.remove-btn__container:hover path{fill:var(--R500)}.rjsf-form-template__additional-fields>.remove-btn__container,.rjsf-form-template__array-field-item>.remove-btn__container{transition:all .1s ease-out}
package/dist/index.d.ts CHANGED
@@ -148,11 +148,6 @@ export interface customEnv {
148
148
  */
149
149
  FEATURE_MANAGE_TRAFFIC_ENABLE?: boolean;
150
150
  FEATURE_INFRA_PROVISION_INFO_BLOCK_HIDE?: boolean;
151
- /**
152
- * If true, will add flux option to deployment types in devtron apps and devtron charts
153
- * @default false
154
- */
155
- FEATURE_FLUX_DEPLOYMENTS_ENABLE?: boolean;
156
151
  }
157
152
  declare global {
158
153
  interface Window {