@devtron-labs/devtron-fe-common-lib 1.2.14-beta-1 → 1.2.14

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.
@@ -2,7 +2,7 @@ import { j as n, J as A } from "./@vendor-BG3OpQCq.js";
2
2
  import E, { forwardRef as $ } from "react";
3
3
  import L, { getDefaultRegistry as k } from "@rjsf/core";
4
4
  import D from "@rjsf/validator-ajv8";
5
- import { T as y, c as H, a as J, d as w } from "./@code-editor-C_dq_os7.js";
5
+ import { T as y, c as H, a as J, d as w } from "./@code-editor-DrM78ohh.js";
6
6
  import M, { components as O } from "react-select";
7
7
  import { getUiOptions as B, getTemplate as I, getSubmitButtonOptions as U, ADDITIONAL_PROPERTY_FLAG as P, errorId as W, englishStringTranslator as V, TranslatableString as q, titleId as K, canExpand as Y, deepEquals as z } from "@rjsf/utils";
8
8
  import { ReactComponent as G } from "./assets/ic-chevron-down.fc70d7a7.svg";
@@ -48,7 +48,6 @@ export declare const URLS: {
48
48
  NETWORK_STATUS_INTERFACE: string;
49
49
  CONFIG_DRIFT: string;
50
50
  RESOURCE_BROWSER: string;
51
- COMPARE_CLUSTERS: string;
52
51
  };
53
52
  export declare const ROUTES: {
54
53
  APP: string;
@@ -57,8 +56,6 @@ export declare const ROUTES: {
57
56
  PROJECT_LIST_MIN: string;
58
57
  USER_CHECK_ROLE: string;
59
58
  IMAGE_TAGGING: string;
60
- CREATE_RESOURCE: string;
61
- K8S_RESOURCE_CREATE: string;
62
59
  CI_CONFIG_GET: string;
63
60
  CD_MATERIAL_GET: string;
64
61
  DEPLOYMENT_TEMPLATE_LIST: string;
@@ -97,7 +94,6 @@ export declare const ROUTES: {
97
94
  DEPLOYMENT_CHARTS_LIST: string;
98
95
  USER_LIST_MIN: string;
99
96
  CONFIG_DATA: string;
100
- K8S_RESOURCE: string;
101
97
  K8S_RESOURCE_LIST: string;
102
98
  CONFIG_COMPARE_SECRET: string;
103
99
  };
@@ -1,13 +1,2 @@
1
1
  import { AggregationKeys, NodeType } from '../../Shared';
2
- import { ApiResourceGroupType, CreateResourceRequestBodyParamsType, CreateResourceRequestBodyType } from './ResourceBrowser.Types';
3
2
  export declare function getAggregator(nodeType: NodeType, defaultAsOtherResources?: boolean): AggregationKeys;
4
- export declare const getK8sResourceListPayload: (clusterId: string, namespace: string, selectedResource: ApiResourceGroupType, filters: object) => {
5
- clusterId: number;
6
- k8sRequest: {
7
- resourceIdentifier: {
8
- namespace: string;
9
- groupVersionKind: import('./ResourceBrowser.Types').GVKType;
10
- };
11
- };
12
- };
13
- export declare const createResourceRequestBody: ({ clusterId, group, version, kind, name, namespace, updatedManifest, }: CreateResourceRequestBodyParamsType) => CreateResourceRequestBodyType;
@@ -49,25 +49,12 @@ export interface BulkSelectionActionWidgetProps {
49
49
  parentRef: RefObject<HTMLDivElement>;
50
50
  showBulkRestartOption: boolean;
51
51
  }
52
- interface BulkOperationAdditionalKeysType {
53
- label: string;
54
- value: string;
55
- isSortable: boolean;
56
- /**
57
- * width to be given in gridTemplateColumns
58
- */
59
- width: string;
60
- }
61
52
  export interface BulkOperation {
62
53
  name: string;
63
- /**
64
- * Would these keys beside the name
65
- */
66
- additionalKeys?: BulkOperationAdditionalKeysType[];
67
54
  operation: (signal: AbortSignal, data?: unknown) => Promise<void>;
68
55
  }
69
56
  export type BulkOperationModalProps = {
70
- operationType: 'restart' | 'delete' | 'creation';
57
+ operationType: 'restart' | 'delete';
71
58
  clusterName: string;
72
59
  operations: NonNullable<BulkOperation[]>;
73
60
  handleModalClose: () => void;
@@ -77,34 +64,4 @@ export type BulkOperationModalProps = {
77
64
  shouldAllowForceOperation?: true;
78
65
  };
79
66
  export type BulkOperationModalState = BulkOperationModalProps['operationType'] | 'closed';
80
- export interface CreateResourceRequestBodyType {
81
- appId: string;
82
- clusterId: number;
83
- k8sRequest: {
84
- resourceIdentifier: Required<K8sRequestResourceIdentifierType>;
85
- patch?: string;
86
- };
87
- }
88
- export interface ResourceManifestDTO {
89
- manifestResponse: {
90
- manifest: Record<string, unknown>;
91
- };
92
- secretViewAccess: boolean;
93
- }
94
- export interface CreateResourceRequestBodyParamsType extends Pick<CreateResourceRequestBodyType, 'clusterId'>, Required<Pick<K8sRequestResourceIdentifierType, 'name' | 'namespace'>> {
95
- updatedManifest?: string;
96
- group: GVKType['Group'];
97
- version: GVKType['Version'];
98
- kind: GVKType['Kind'];
99
- }
100
- export interface CreateResourcePayload {
101
- clusterId: number;
102
- manifest: string;
103
- }
104
- export interface CreateResourceDTO {
105
- kind: string;
106
- name: string;
107
- isUpdate: boolean;
108
- error: string;
109
- }
110
67
  export {};
@@ -1,5 +1,4 @@
1
1
  export * from './ResourceBrowser.Types';
2
2
  export * from './Helper';
3
- export * from './constants';
4
3
  export * from './types';
5
4
  export * from './service';
@@ -1,4 +1,3 @@
1
1
  import { ResponseType } from '../../Common/Types';
2
- import { CreateResourceDTO, CreateResourcePayload, K8sResourceDetailType, K8sResourceListPayloadType } from './ResourceBrowser.Types';
2
+ import { K8sResourceDetailType, K8sResourceListPayloadType } from './ResourceBrowser.Types';
3
3
  export declare const getK8sResourceList: (resourceListPayload: K8sResourceListPayloadType, signal?: AbortSignal) => Promise<ResponseType<K8sResourceDetailType>>;
4
- export declare const createNewResource: (resourceListPayload: CreateResourcePayload) => Promise<ResponseType<CreateResourceDTO[]>>;
@@ -1,3 +1,3 @@
1
1
  import { BulkSelectionProps } from './types';
2
- declare const BulkSelection: <T>({ showPagination, disabled, showChevronDownIcon }: BulkSelectionProps) => JSX.Element;
2
+ declare const BulkSelection: <T>({ showPagination, disabled }: BulkSelectionProps) => JSX.Element;
3
3
  export default BulkSelection;
@@ -28,10 +28,6 @@ export interface UseBulkSelectionReturnType<T> extends GetBulkSelectionCheckboxV
28
28
  }
29
29
  export interface BulkSelectionProps {
30
30
  showPagination: boolean;
31
- /**
32
- * @default true
33
- */
34
- showChevronDownIcon?: boolean;
35
31
  disabled?: boolean;
36
32
  }
37
33
  export interface BulkSelectionDropdownItemsType {
@@ -41,7 +41,6 @@ export * from './Collapse';
41
41
  export * from './Security';
42
42
  export * from './Button';
43
43
  export * from './InvalidYAMLTippy';
44
- export * from './NumbersCount';
45
44
  export * from './EnterpriseTag';
46
45
  export * from './ConfirmationModal';
47
46
  export * from './DiffViewer';
package/dist/index.d.ts CHANGED
@@ -79,7 +79,6 @@ export interface customEnv {
79
79
  FEATURE_PROMO_EMBEDDED_MODAL_TITLE?: string;
80
80
  FEATURE_PROMO_EMBEDDED_IFRAME_URL?: string;
81
81
  FEATURE_BULK_RESTART_WORKLOADS_FROM_RB: string;
82
- FEATURE_RB_SYNC_CLUSTER_ENABLE?: boolean;
83
82
  FEATURE_DEFAULT_MERGE_STRATEGY?: OverrideMergeStrategyType;
84
83
  FEATURE_DEFAULT_LANDING_RB_ENABLE?: boolean;
85
84
  FEATURE_CLUSTER_MAP_ENABLE?: boolean;