@devtron-labs/devtron-fe-common-lib 1.14.2-pre-3 → 1.15.0-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-CmHUX8uB.js → @code-editor-DEh7BIxe.js} +6230 -6152
- package/dist/{@common-rjsf-AojZMSK7.js → @common-rjsf-Dvq53Kea.js} +222 -230
- package/dist/Common/RJSF/widgets/Checkbox.d.ts +1 -1
- package/dist/Common/Types.d.ts +1 -43
- package/dist/Common/index.d.ts +0 -2
- package/dist/Shared/Components/CICDHistory/DeploymentHistoryConfigDiff/utils.d.ts +2 -1
- package/dist/Shared/Components/CICDHistory/service.d.ts +1 -7
- package/dist/Shared/Components/CICDHistory/types.d.ts +2 -18
- package/dist/Shared/Components/DeploymentConfigDiff/DeploymentConfigDiff.types.d.ts +18 -1
- package/dist/Shared/Components/DeploymentConfigDiff/DeploymentConfigDiffRadioSelect.d.ts +7 -0
- package/dist/Shared/Components/DeploymentConfigDiff/index.d.ts +1 -0
- package/dist/Shared/Components/DocLink/types.d.ts +1 -0
- package/dist/Shared/Components/DocLink/utils.d.ts +1 -1
- package/dist/Shared/Components/Icon/Icon.d.ts +3 -0
- package/dist/Shared/Components/Popover/types.d.ts +5 -0
- package/dist/Shared/Components/Popover/usePopover.hook.d.ts +1 -1
- package/dist/Shared/Components/Switch/Switch.component.d.ts +1 -1
- package/dist/Shared/Components/Switch/types.d.ts +11 -2
- package/dist/Shared/Components/Switch/utils.d.ts +2 -2
- package/dist/Shared/Components/SwitchThemeDialog/SwitchThemeDialog.component.d.ts +3 -0
- package/dist/Shared/Components/SwitchThemeDialog/index.d.ts +2 -0
- package/dist/Shared/Components/SwitchThemeDialog/types.d.ts +35 -0
- package/dist/Shared/Components/ToggleResolveScopedVariables/ToggleResolveScopedVariables.component.d.ts +1 -1
- package/dist/Shared/Components/ToggleResolveScopedVariables/types.d.ts +1 -1
- package/dist/Shared/Components/index.d.ts +1 -0
- package/dist/Shared/Providers/types.d.ts +28 -10
- package/dist/Shared/Services/app.types.d.ts +7 -2
- package/dist/Shared/constants.d.ts +2 -1
- package/dist/Shared/types.d.ts +7 -2
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/ic-asterisk.ab224e72.svg +3 -0
- package/dist/assets/ic-world-globe.877fa6a0.svg +3 -0
- package/dist/index.js +606 -611
- package/package.json +3 -3
- package/dist/Common/InfoColorBar/InfoColourbar.d.ts +0 -6
- package/dist/Common/Toggle/Toggle.d.ts +0 -18
@@ -1,2 +1,2 @@
|
|
1
1
|
import { WidgetProps } from '@rjsf/utils';
|
2
|
-
export declare const Checkbox: ({ id, onChange, value,
|
2
|
+
export declare const Checkbox: ({ id, onChange, value, disabled, readonly, autofocus, }: WidgetProps) => JSX.Element;
|
package/dist/Common/Types.d.ts
CHANGED
@@ -2,7 +2,7 @@ import { default as React, ReactNode, CSSProperties, ReactElement, MutableRefObj
|
|
2
2
|
import { TippyProps } from '@tippyjs/react';
|
3
3
|
import { UserGroupDTO } from '../Pages/GlobalConfigurations';
|
4
4
|
import { ImageComment, ReleaseTag } from './ImageTags.Types';
|
5
|
-
import { MandatoryPluginBaseStateType, RegistryType, RuntimePluginVariables, Severity, PolicyBlockInfo, TargetPlatformItemDTO,
|
5
|
+
import { MandatoryPluginBaseStateType, RegistryType, RuntimePluginVariables, Severity, PolicyBlockInfo, TargetPlatformItemDTO, ComponentLayoutType, StatusType, DocLinkProps, DeploymentStrategyType } from '../Shared';
|
6
6
|
import { ACTION_STATE, DEPLOYMENT_WINDOW_TYPE, DockerConfigOverrideType, RefVariableType, SortingOrder, TaskErrorObj, VariableTypeFormat } from '.';
|
7
7
|
/**
|
8
8
|
* Generic response type object with support for overriding the result type
|
@@ -162,48 +162,6 @@ export declare enum ImageType {
|
|
162
162
|
Medium = "medium",
|
163
163
|
SMALL = "small"
|
164
164
|
}
|
165
|
-
interface InfoColourBarTextConfigType {
|
166
|
-
/**
|
167
|
-
* If given would be shown above the description, in bold
|
168
|
-
*/
|
169
|
-
heading?: string;
|
170
|
-
/**
|
171
|
-
* If given would be shown below the heading (if given)
|
172
|
-
*/
|
173
|
-
description: string;
|
174
|
-
actionButtonConfig?: ButtonProps;
|
175
|
-
}
|
176
|
-
type InfoColourBarMessageProp = {
|
177
|
-
message: ReactNode;
|
178
|
-
linkText?: ReactNode;
|
179
|
-
redirectLink?: string;
|
180
|
-
linkOnClick?: () => void;
|
181
|
-
linkClass?: string;
|
182
|
-
internalLink?: boolean;
|
183
|
-
textConfig?: never;
|
184
|
-
} | {
|
185
|
-
textConfig: InfoColourBarTextConfigType;
|
186
|
-
message?: never;
|
187
|
-
linkText?: never;
|
188
|
-
redirectLink?: never;
|
189
|
-
linkOnClick?: () => never;
|
190
|
-
linkClass?: never;
|
191
|
-
internalLink?: never;
|
192
|
-
};
|
193
|
-
export type InfoColourBarType = InfoColourBarMessageProp & {
|
194
|
-
classname: string;
|
195
|
-
Icon: any;
|
196
|
-
iconClass?: string;
|
197
|
-
iconSize?: number;
|
198
|
-
renderActionButton?: () => JSX.Element;
|
199
|
-
styles?: CSSProperties;
|
200
|
-
/**
|
201
|
-
* If true, the icon is not shown
|
202
|
-
*
|
203
|
-
* @default false
|
204
|
-
*/
|
205
|
-
hideIcon?: boolean;
|
206
|
-
};
|
207
165
|
export interface ReloadType {
|
208
166
|
reload?: (event?: any) => void;
|
209
167
|
className?: string;
|
package/dist/Common/index.d.ts
CHANGED
@@ -25,7 +25,6 @@ export * from './Helper';
|
|
25
25
|
export * from './Hooks';
|
26
26
|
export * from './ImageTags';
|
27
27
|
export * from './ImageTags.Types';
|
28
|
-
export { default as InfoColourBar } from './InfoColorBar/InfoColourbar';
|
29
28
|
export * from './Markdown';
|
30
29
|
export * from './Modals/Modal';
|
31
30
|
export * from './Modals/VisibleModal';
|
@@ -47,6 +46,5 @@ export { default as Select } from './Select/Select';
|
|
47
46
|
export * from './ServerError';
|
48
47
|
export * from './SortableTableHeaderCell';
|
49
48
|
export * from './TippyCustomized';
|
50
|
-
export { default as Toggle } from './Toggle/Toggle';
|
51
49
|
export * from './Tooltip';
|
52
50
|
export * from './Types';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SelectPickerOptionType } from '@Shared/Components/SelectPicker';
|
2
|
-
import { History } from '../types';
|
2
|
+
import { DeploymentHistorySingleValue, History } from '../types';
|
3
3
|
import { DeploymentHistoryConfigDiffProps } from './types';
|
4
4
|
export declare const getPipelineDeployments: (triggerHistory: DeploymentHistoryConfigDiffProps["triggerHistory"]) => History[];
|
5
5
|
export declare const getPipelineDeploymentsWfrIds: ({ pipelineDeployments, wfrId, }: {
|
@@ -20,3 +20,4 @@ export declare const parseDeploymentHistoryDiffSearchParams: (compareWfrId: numb
|
|
20
20
|
};
|
21
21
|
export declare const isDeploymentHistoryConfigDiffNotFoundError: <T extends unknown>(res: PromiseSettledResult<T>) => boolean;
|
22
22
|
export declare const getDeploymentHistoryConfigDiffError: <T extends unknown>(res: PromiseSettledResult<T>) => any;
|
23
|
+
export declare const renderDetailedValue: (parentClassName: string, singleValue: DeploymentHistorySingleValue, dataTestId: string) => JSX.Element;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ResponseType } from '../../../Common';
|
2
|
-
import {
|
2
|
+
import { DeploymentHistoryDetail, DeploymentHistoryResult, DeploymentStatusDetailsResponse, ModuleConfigResponse, TriggerDetailsResponseType, TriggerHistoryParamsType } from './types';
|
3
3
|
export declare function getTriggerDetails({ appId, envId, pipelineId, triggerId, fetchIdData, }: {
|
4
4
|
appId: any;
|
5
5
|
envId: any;
|
@@ -18,12 +18,6 @@ export declare function getManualSync(params: {
|
|
18
18
|
appId: string;
|
19
19
|
envId: string;
|
20
20
|
}): Promise<ResponseType>;
|
21
|
-
export declare const getDeploymentHistoryList: (appId: string, pipelineId: string, triggerId: string) => Promise<DeploymentConfigurationsRes>;
|
22
|
-
export declare const getDeploymentHistoryDetail: (appId: string, pipelineId: string, id: string, historyComponent: string, historyComponentName: string) => Promise<DeploymentHistoryDetailRes>;
|
23
|
-
export declare const prepareDeploymentTemplateData: (rawData: any) => Record<string, DeploymentHistorySingleValue>;
|
24
|
-
export declare const preparePipelineConfigData: (rawData: any) => Record<string, DeploymentHistorySingleValue>;
|
25
|
-
export declare const prepareConfigMapAndSecretData: (rawData: any, type: string, historyData: DeploymentHistoryDetail, skipDecode?: boolean) => Record<string, DeploymentHistorySingleValue>;
|
26
21
|
export declare const prepareHistoryData: (rawData: any, historyComponent: string, skipDecode?: boolean) => DeploymentHistoryDetail;
|
27
|
-
export declare const getDeploymentDiffSelector: (pipelineId: string, historyComponent: any, baseConfigurationId: any, historyComponentName: any) => Promise<HistoryDiffSelectorRes>;
|
28
22
|
export declare const getTriggerHistory: ({ appId, envId, pagination, releaseId, showCurrentReleaseDeployments, }: TriggerHistoryParamsType) => Promise<Pick<DeploymentHistoryResult, "result">>;
|
29
23
|
export declare const getModuleConfigured: (moduleName: string) => Promise<ModuleConfigResponse>;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { CSSProperties, MutableRefObject, ReactElement, ReactNode } from 'react';
|
2
2
|
import { SupportedKeyboardKeysType } from '@Common/Hooks/UseRegisterShortcut/types';
|
3
|
-
import { DeploymentAppTypes, FilterConditionsListType, ImageComment, OptionType, PaginationProps, PromotionApprovalMetadataType, ReleaseTag, ResponseType, UserApprovalMetadataType, useScrollable } from '../../../Common';
|
3
|
+
import { DeploymentAppTypes, FilterConditionsListType, ImageComment, OptionType, PaginationProps, PromotionApprovalMetadataType, ReleaseTag, ResponseType, TooltipProps, UserApprovalMetadataType, useScrollable } from '../../../Common';
|
4
4
|
import { DeploymentStageType } from '../../constants';
|
5
5
|
import { AggregationKeys, AppDetails, DeploymentStatusDetailsBreakdownDataType, DeploymentStatusDetailsType, DeploymentStatusTimelineType, DeploymentStrategyType, GitTriggers, Node, NodeType, ResourceKindType, ResourceVersionType, TargetPlatformsDTO } from '../../types';
|
6
6
|
import { TargetPlatformBadgeListProps } from '../TargetPlatforms';
|
@@ -408,14 +408,12 @@ export interface DeploymentStatusDetailRowType extends Pick<DeploymentStatusDeta
|
|
408
408
|
hideVerticalConnector?: boolean;
|
409
409
|
deploymentDetailedData: DeploymentStatusDetailsBreakdownDataType;
|
410
410
|
}
|
411
|
-
export interface DeploymentConfigurationsRes extends ResponseType {
|
412
|
-
result?: DeploymentTemplateList[];
|
413
|
-
}
|
414
411
|
export interface DeploymentHistorySingleValue {
|
415
412
|
displayName: string;
|
416
413
|
value: string;
|
417
414
|
variableSnapshot?: object;
|
418
415
|
resolvedValue?: string;
|
416
|
+
tooltipContent?: TooltipProps['content'];
|
419
417
|
}
|
420
418
|
export interface DeploymentHistoryDetail {
|
421
419
|
componentName?: string;
|
@@ -428,20 +426,6 @@ export interface DeploymentTemplateHistoryType {
|
|
428
426
|
previousConfigAvailable: boolean;
|
429
427
|
rootClassName?: string;
|
430
428
|
}
|
431
|
-
export interface DeploymentHistoryDetailRes extends ResponseType {
|
432
|
-
result?: DeploymentHistoryDetail;
|
433
|
-
}
|
434
|
-
export interface HistoryDiffSelectorList {
|
435
|
-
id: number;
|
436
|
-
deployedOn: string;
|
437
|
-
deployedBy: string;
|
438
|
-
deploymentStatus: string;
|
439
|
-
wfrId?: number;
|
440
|
-
runSource?: RunSourceType;
|
441
|
-
}
|
442
|
-
export interface HistoryDiffSelectorRes {
|
443
|
-
result?: HistoryDiffSelectorList[];
|
444
|
-
}
|
445
429
|
export interface DeploymentHistorySidebarType {
|
446
430
|
deploymentHistoryList: DeploymentTemplateList[];
|
447
431
|
setDeploymentHistoryList: React.Dispatch<React.SetStateAction<DeploymentTemplateList[]>>;
|
@@ -1,10 +1,11 @@
|
|
1
1
|
import { SortingOrder } from '../../../Common/Constants';
|
2
|
+
import { RadioGroupItemProps, RadioGroupProps } from '../../../Common/Types';
|
2
3
|
import { AppEnvDeploymentConfigDTO, ConfigMapSecretDataConfigDatumDTO, DeploymentTemplateDTO, EnvResourceType, TemplateListDTO } from '../../Services';
|
3
4
|
import { ManifestTemplateDTO } from '../../../Pages/Applications';
|
4
5
|
import { DeploymentHistoryDetail } from '../CICDHistory';
|
5
6
|
import { CollapseProps } from '../Collapse';
|
6
7
|
import { CollapsibleListConfig, CollapsibleListItem } from '../CollapsibleList';
|
7
|
-
import { SelectPickerProps } from '../SelectPicker';
|
8
|
+
import { SelectPickerOptionType, SelectPickerProps } from '../SelectPicker';
|
8
9
|
export declare enum DeploymentConfigDiffState {
|
9
10
|
NO_DIFF = "noDiff",
|
10
11
|
HAS_DIFF = "hasDiff",
|
@@ -26,6 +27,15 @@ export interface DeploymentConfigListItem {
|
|
26
27
|
singleView?: boolean;
|
27
28
|
groupHeader?: string;
|
28
29
|
}
|
30
|
+
interface DeploymentConfigDiffRadioConfig extends Pick<RadioGroupProps, 'name' | 'onChange'> {
|
31
|
+
title: string;
|
32
|
+
options: (Pick<RadioGroupItemProps, 'disabled'> & Pick<SelectPickerOptionType<string>, 'label' | 'value' | 'description' | 'tooltipProps'>)[];
|
33
|
+
groupValue: string;
|
34
|
+
}
|
35
|
+
export interface DeploymentConfigDiffRadioSelectConfig {
|
36
|
+
triggerElementTitle: string;
|
37
|
+
radioGroupConfig: DeploymentConfigDiffRadioConfig[];
|
38
|
+
}
|
29
39
|
export type DeploymentConfigDiffSelectPickerProps = {
|
30
40
|
type: 'string';
|
31
41
|
id: string;
|
@@ -36,6 +46,12 @@ export type DeploymentConfigDiffSelectPickerProps = {
|
|
36
46
|
id: string;
|
37
47
|
text?: never;
|
38
48
|
selectPickerProps: SelectPickerProps;
|
49
|
+
} | {
|
50
|
+
type: 'radio-group';
|
51
|
+
id: string;
|
52
|
+
text?: never;
|
53
|
+
radioSelectConfig: DeploymentConfigDiffRadioSelectConfig;
|
54
|
+
selectPickerProps?: never;
|
39
55
|
};
|
40
56
|
export interface DeploymentConfigDiffNavigationItem extends Pick<CollapsibleListItem<'navLink'>, 'href' | 'title' | 'onClick'> {
|
41
57
|
Icon?: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
|
@@ -115,3 +131,4 @@ export type AppEnvDeploymentConfigListParams<IsManifestView> = (IsManifestView e
|
|
115
131
|
isManifestView?: IsManifestView;
|
116
132
|
convertVariables?: boolean;
|
117
133
|
};
|
134
|
+
export {};
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { UsePopoverProps } from '../Popover';
|
2
|
+
import { DeploymentConfigDiffRadioSelectConfig } from './DeploymentConfigDiff.types';
|
3
|
+
declare const DeploymentConfigDiffRadioSelect: ({ radioSelectConfig, position, }: {
|
4
|
+
radioSelectConfig: DeploymentConfigDiffRadioSelectConfig;
|
5
|
+
position?: UsePopoverProps["position"];
|
6
|
+
}) => JSX.Element;
|
7
|
+
export default DeploymentConfigDiffRadioSelect;
|
@@ -2,3 +2,4 @@ export * from './DeploymentConfigDiff.component';
|
|
2
2
|
export * from './DeploymentConfigDiff.constants';
|
3
3
|
export * from './DeploymentConfigDiff.types';
|
4
4
|
export * from './DeploymentConfigDiff.utils';
|
5
|
+
export { default as DeploymentConfigDiffRadioSelect } from './DeploymentConfigDiffRadioSelect';
|
@@ -4,6 +4,7 @@ import { DOCUMENTATION } from './constants';
|
|
4
4
|
export type BaseDocLink<T extends boolean> = {
|
5
5
|
isExternalLink?: T;
|
6
6
|
isEnterprise?: boolean;
|
7
|
+
isLicenseDashboard?: boolean;
|
7
8
|
docLinkKey: T extends true ? string : keyof typeof DOCUMENTATION;
|
8
9
|
};
|
9
10
|
export type DocLinkProps<T extends boolean = false> = Pick<ButtonProps<ButtonComponentType.anchor>, 'dataTestId' | 'size' | 'variant' | 'fullWidth' | 'fontWeight' | 'startIcon'> & Omit<BaseDocLink<T>, 'isEnterprise'> & {
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { BaseDocLink } from './types';
|
2
|
-
export declare const getDocumentationUrl: <T extends boolean = false>({ docLinkKey, isEnterprise, isExternalLink, }: BaseDocLink<T>) => string;
|
2
|
+
export declare const getDocumentationUrl: <T extends boolean = false>({ docLinkKey, isEnterprise, isExternalLink, isLicenseDashboard, }: BaseDocLink<T>) => string;
|
@@ -12,6 +12,7 @@ export declare const iconMap: {
|
|
12
12
|
'ic-arrow-square-out': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
13
13
|
'ic-arrows-clockwise': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
14
14
|
'ic-arrows-left-right': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
15
|
+
'ic-asterisk': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
15
16
|
'ic-ather': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
16
17
|
'ic-azure-aks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
17
18
|
'ic-azure': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
@@ -178,8 +179,10 @@ export declare const iconMap: {
|
|
178
179
|
'ic-user-circle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
179
180
|
'ic-user-key': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
180
181
|
'ic-users': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
182
|
+
'ic-view-variable-toggle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
181
183
|
'ic-warning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
182
184
|
'ic-wifi-slash': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
185
|
+
'ic-world-globe': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
|
183
186
|
};
|
184
187
|
export type IconName = keyof typeof iconMap;
|
185
188
|
export interface IconsProps extends Omit<IconBaseProps, 'name' | 'iconMap'> {
|
@@ -50,6 +50,11 @@ export interface UsePopoverProps {
|
|
50
50
|
* @param closePopover - A function to close the popover.
|
51
51
|
*/
|
52
52
|
onPopoverKeyDown?: (e: KeyboardEvent, openState: boolean, closePopover: () => void) => void;
|
53
|
+
/**
|
54
|
+
* Variant of the popover (bg, shadow and styles changes based on variant)
|
55
|
+
* @default 'menu'
|
56
|
+
*/
|
57
|
+
variant?: 'menu' | 'overlay';
|
53
58
|
}
|
54
59
|
/**
|
55
60
|
* Represents the return type of the `usePopover` hook, providing properties and methods
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import { UsePopoverProps, UsePopoverReturnType } from './types';
|
2
|
-
export declare const usePopover: ({ id, position, alignment, width, onOpen, onPopoverKeyDown, onTriggerKeyDown, }: UsePopoverProps) => UsePopoverReturnType;
|
2
|
+
export declare const usePopover: ({ id, position, alignment, width, variant, onOpen, onPopoverKeyDown, onTriggerKeyDown, }: UsePopoverProps) => UsePopoverReturnType;
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { DTSwitchProps } from './types';
|
2
|
-
declare const Switch: ({ ariaLabel, isDisabled, isLoading, isChecked, tooltipContent, shape, variant, iconColor, iconName, indeterminate, size, name, onChange, }: DTSwitchProps) => JSX.Element;
|
2
|
+
declare const Switch: ({ ariaLabel, isDisabled, isLoading, isChecked, tooltipContent, shape, variant, iconColor, iconName, indeterminate, size, name, dataTestId, onChange, autoFocus, }: DTSwitchProps) => JSX.Element;
|
3
3
|
export default Switch;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ButtonHTMLAttributes } from 'react';
|
1
|
+
import { ButtonHTMLAttributes, ReactNode } from 'react';
|
2
2
|
import { ComponentSizeType } from '../../constants';
|
3
3
|
import { IconBaseColorType } from '../../types';
|
4
4
|
import { IconName } from '../Icon';
|
@@ -64,6 +64,10 @@ export type DTSwitchProps = {
|
|
64
64
|
* Used in forms to identify the switch.
|
65
65
|
*/
|
66
66
|
name: string;
|
67
|
+
/**
|
68
|
+
* Provide if name generated through `getUniqueId`.
|
69
|
+
*/
|
70
|
+
dataTestId?: string;
|
67
71
|
/**
|
68
72
|
* The visual variant of the switch.
|
69
73
|
*
|
@@ -97,6 +101,11 @@ export type DTSwitchProps = {
|
|
97
101
|
*
|
98
102
|
* @default undefined
|
99
103
|
*/
|
100
|
-
tooltipContent?:
|
104
|
+
tooltipContent?: ReactNode;
|
105
|
+
/**
|
106
|
+
* Indicates whether the switch should be focused automatically when rendered.
|
107
|
+
* @default false
|
108
|
+
*/
|
109
|
+
autoFocus?: boolean;
|
101
110
|
} & SwitchShapeProps;
|
102
111
|
export {};
|
@@ -3,10 +3,10 @@ import { ROUNDED_SWITCH_TRACK_HOVER_COLOR_MAP } from './constants';
|
|
3
3
|
import { DTSwitchProps } from './types';
|
4
4
|
export declare const getSwitchContainerClass: ({ shape, size }: Required<Pick<DTSwitchProps, "shape" | "size">>) => string;
|
5
5
|
export declare const getSwitchTrackColor: ({ shape, variant, isChecked, isLoading, }: Required<Pick<DTSwitchProps, "shape" | "variant" | "isChecked" | "isLoading">>) => string;
|
6
|
-
export declare const getSwitchTrackHoverColor: ({ shape, variant, isChecked, }: Required<Pick<DTSwitchProps, "shape" | "variant" | "isChecked">>) => (typeof ROUNDED_SWITCH_TRACK_HOVER_COLOR_MAP)[DTSwitchProps["variant"]];
|
6
|
+
export declare const getSwitchTrackHoverColor: ({ shape, variant, isChecked, isLoading, }: Required<Pick<DTSwitchProps, "shape" | "variant" | "isChecked" | "isLoading">>) => (typeof ROUNDED_SWITCH_TRACK_HOVER_COLOR_MAP)[DTSwitchProps["variant"]] | "transparent";
|
7
7
|
export declare const getSwitchThumbClass: ({ shape, size, showIndeterminateIcon, }: Pick<DTSwitchProps, "shape" | "size"> & {
|
8
8
|
showIndeterminateIcon: boolean;
|
9
9
|
}) => string;
|
10
10
|
export declare const getSwitchIconColor: ({ iconColor, isChecked, variant, }: Pick<DTSwitchProps, "iconColor" | "isChecked" | "variant">) => IconBaseColorType;
|
11
|
-
export declare const getThumbPosition: ({
|
11
|
+
export declare const getThumbPosition: ({ isChecked, size, shape, indeterminate, isLoading, }: Required<Pick<DTSwitchProps, "isChecked" | "size" | "shape" | "indeterminate" | "isLoading">>) => number;
|
12
12
|
export declare const getThumbPadding: ({ shape, isLoading }: Pick<DTSwitchProps, "shape" | "isLoading">) => string;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { AppThemeType, useTheme } from '../../Providers';
|
2
|
+
type ThemePreferenceType = ReturnType<typeof useTheme>['themePreference'];
|
3
|
+
export type SwitchThemeDialogProps = {
|
4
|
+
/**
|
5
|
+
* @description The initial theme preference of the user fetched from api, in case of error would be null
|
6
|
+
*/
|
7
|
+
initialThemePreference: ThemePreferenceType;
|
8
|
+
handleUpdateUserThemePreference: (themePreference: ThemePreferenceType) => void;
|
9
|
+
handleClose: () => void;
|
10
|
+
} & ({
|
11
|
+
/**
|
12
|
+
* @default false
|
13
|
+
* @description Required for storybook
|
14
|
+
*/
|
15
|
+
disableAPICalls?: false;
|
16
|
+
} | {
|
17
|
+
currentUserPreferences?: never;
|
18
|
+
disableAPICalls: true;
|
19
|
+
});
|
20
|
+
export interface ThemePreferenceOptionProps {
|
21
|
+
selectedThemePreference: SwitchThemeDialogProps['initialThemePreference'];
|
22
|
+
value: SwitchThemeDialogProps['initialThemePreference'];
|
23
|
+
handleChangedThemePreference: (themePreference: SwitchThemeDialogProps['initialThemePreference']) => void;
|
24
|
+
}
|
25
|
+
export interface ThemePreferenceLabelFigureProps extends Pick<ThemePreferenceOptionProps, 'value'> {
|
26
|
+
isSelected: boolean;
|
27
|
+
}
|
28
|
+
export interface BaseLabelFigureProps extends Pick<ThemePreferenceLabelFigureProps, 'isSelected'> {
|
29
|
+
value: AppThemeType;
|
30
|
+
/**
|
31
|
+
* @default false
|
32
|
+
*/
|
33
|
+
noLeftRadius?: boolean;
|
34
|
+
}
|
35
|
+
export {};
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ToggleResolveScopedVariablesProps } from './types';
|
2
|
-
declare const ToggleResolveScopedVariables: ({ resolveScopedVariables, handleToggleScopedVariablesView, isDisabled, showTooltip,
|
2
|
+
declare const ToggleResolveScopedVariables: ({ name, resolveScopedVariables, handleToggleScopedVariablesView, isDisabled, showTooltip, }: ToggleResolveScopedVariablesProps) => JSX.Element;
|
3
3
|
export default ToggleResolveScopedVariables;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export interface ToggleResolveScopedVariablesProps {
|
2
|
+
name: string;
|
2
3
|
resolveScopedVariables: boolean;
|
3
4
|
handleToggleScopedVariablesView: () => void;
|
4
5
|
isDisabled?: boolean;
|
@@ -6,5 +7,4 @@ export interface ToggleResolveScopedVariablesProps {
|
|
6
7
|
* @default true
|
7
8
|
*/
|
8
9
|
showTooltip?: boolean;
|
9
|
-
throttleOnChange?: boolean;
|
10
10
|
}
|
@@ -73,6 +73,7 @@ export * from './ShowMoreText';
|
|
73
73
|
export * from './SSOProviderIcon';
|
74
74
|
export * from './StatusComponent';
|
75
75
|
export * from './Switch';
|
76
|
+
export * from './SwitchThemeDialog';
|
76
77
|
export * from './TabGroup';
|
77
78
|
export * from './Table';
|
78
79
|
export * from './TagsKeyValueTable';
|
@@ -19,12 +19,10 @@ export interface SidePanelConfig {
|
|
19
19
|
/** URL to documentation that should be displayed in the panel */
|
20
20
|
docLink: string | null;
|
21
21
|
}
|
22
|
-
|
23
|
-
serverMode: SERVER_MODE;
|
22
|
+
type CommonMainContextProps = {
|
24
23
|
setServerMode: (serverMode: SERVER_MODE) => void;
|
25
24
|
isHelpGettingStartedClicked: boolean;
|
26
25
|
showCloseButtonAfterGettingStartedClicked: () => void;
|
27
|
-
loginCount: number;
|
28
26
|
setLoginCount: (loginCount: number) => void;
|
29
27
|
showGettingStartedCard: boolean;
|
30
28
|
setShowGettingStartedCard: (showGettingStartedCard: boolean) => void;
|
@@ -32,9 +30,8 @@ export interface MainContext {
|
|
32
30
|
setGettingStartedClicked: (isGettingStartedClicked: boolean) => void;
|
33
31
|
moduleInInstallingState: string;
|
34
32
|
setModuleInInstallingState: (moduleInInstallingState: string) => void;
|
35
|
-
installedModuleMap: MutableRefObject<Record<string, boolean>>;
|
36
33
|
currentServerInfo: {
|
37
|
-
serverInfo: ServerInfo;
|
34
|
+
serverInfo: ServerInfo | null;
|
38
35
|
fetchingServerInfo: boolean;
|
39
36
|
};
|
40
37
|
isAirgapped: boolean;
|
@@ -57,17 +54,23 @@ export interface MainContext {
|
|
57
54
|
canOnlyViewPermittedEnvOrgLevel: boolean;
|
58
55
|
viewIsPipelineRBACConfiguredNode: ReactNode;
|
59
56
|
handleOpenLicenseInfoDialog: (initialDialogType?: LicenseInfoDialogType.ABOUT | LicenseInfoDialogType.LICENSE) => void;
|
57
|
+
setLicenseData: Dispatch<SetStateAction<DevtronLicenseInfo>>;
|
58
|
+
canFetchHelmAppStatus: boolean;
|
59
|
+
setIntelligenceConfig: Dispatch<SetStateAction<IntelligenceConfig>>;
|
60
|
+
setSidePanelConfig: Dispatch<SetStateAction<SidePanelConfig>>;
|
61
|
+
};
|
62
|
+
export type MainContext = CommonMainContextProps & ({
|
63
|
+
isLicenseDashboard?: never;
|
64
|
+
serverMode: SERVER_MODE;
|
65
|
+
loginCount: number | null;
|
66
|
+
installedModuleMap: MutableRefObject<Record<string, boolean>>;
|
60
67
|
/**
|
61
68
|
* Data is set only if showLicenseData is received as true
|
62
69
|
*/
|
63
70
|
licenseData: DevtronLicenseInfo;
|
64
|
-
setLicenseData: Dispatch<SetStateAction<DevtronLicenseInfo>>;
|
65
|
-
canFetchHelmAppStatus: boolean;
|
66
71
|
reloadVersionConfig: ReloadVersionConfigTypes;
|
67
72
|
intelligenceConfig: IntelligenceConfig;
|
68
|
-
setIntelligenceConfig: Dispatch<SetStateAction<IntelligenceConfig>>;
|
69
73
|
sidePanelConfig: SidePanelConfig;
|
70
|
-
setSidePanelConfig: Dispatch<SetStateAction<SidePanelConfig>>;
|
71
74
|
/**
|
72
75
|
* Indicates whether the current Devtron instance is running as an Enterprise edition. \
|
73
76
|
* This flag is determined based on server-side configuration.
|
@@ -78,8 +81,23 @@ export interface MainContext {
|
|
78
81
|
* Used to conditionally render or enable features that depend on fe-lib
|
79
82
|
*/
|
80
83
|
isFELibAvailable: boolean;
|
81
|
-
}
|
84
|
+
} | {
|
85
|
+
isLicenseDashboard: true;
|
86
|
+
serverMode: null;
|
87
|
+
loginCount: null;
|
88
|
+
installedModuleMap: null;
|
89
|
+
/**
|
90
|
+
* Data is set only if showLicenseData is received as true
|
91
|
+
*/
|
92
|
+
licenseData: null;
|
93
|
+
reloadVersionConfig: null;
|
94
|
+
intelligenceConfig: null;
|
95
|
+
sidePanelConfig: null;
|
96
|
+
isEnterprise: false;
|
97
|
+
isFELibAvailable: false;
|
98
|
+
});
|
82
99
|
export interface MainContextProviderProps {
|
83
100
|
children: ReactNode;
|
84
101
|
value: MainContext;
|
85
102
|
}
|
103
|
+
export {};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { KeyValueTableData } from '../Components';
|
2
|
-
import { TargetPlatformsDTO } from '../types';
|
2
|
+
import { DeploymentStrategyType, TargetPlatformsDTO } from '../types';
|
3
3
|
import { OverrideMergeStrategyType } from '../../Pages/Applications';
|
4
4
|
import { ReleaseTag, ResponseType, UserApprovalMetadataType } from '../../Common';
|
5
5
|
interface WebhookDataType {
|
@@ -237,6 +237,9 @@ export interface PipelineConfigDataDTO {
|
|
237
237
|
data: Record<string, any>;
|
238
238
|
pipelineTriggerType: string;
|
239
239
|
Strategy: string;
|
240
|
+
updatedBy: string;
|
241
|
+
updatedOn: string;
|
242
|
+
selectedAtRuntime: boolean;
|
240
243
|
}
|
241
244
|
export interface AppEnvDeploymentConfigDTO {
|
242
245
|
deploymentTemplate: DeploymentTemplateDTO | null;
|
@@ -248,6 +251,8 @@ export interface AppEnvDeploymentConfigDTO {
|
|
248
251
|
export type AppEnvDeploymentConfigPayloadType = {
|
249
252
|
appName: string;
|
250
253
|
envName: string;
|
254
|
+
strategy?: DeploymentStrategyType;
|
255
|
+
} & ({
|
251
256
|
configType: AppEnvDeploymentConfigType;
|
252
257
|
wfrId?: number;
|
253
258
|
pipelineId?: number;
|
@@ -261,7 +266,7 @@ export type AppEnvDeploymentConfigPayloadType = {
|
|
261
266
|
pipelineId: number;
|
262
267
|
configArea: 'CdRollback' | 'DeploymentHistory';
|
263
268
|
wfrId: number;
|
264
|
-
};
|
269
|
+
});
|
265
270
|
export declare enum TemplateListType {
|
266
271
|
DefaultVersions = 1,
|
267
272
|
PublishedOnEnvironments = 2,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DeploymentNodeType, OptionType } from '../Common/Types';
|
2
2
|
import { InfoBlockProps } from './Components';
|
3
|
-
import { CDMaterialSidebarType, ConfigKeysWithLockType, ConfigurationType, IconBaseColorType } from './types';
|
3
|
+
import { CDMaterialSidebarType, ConfigKeysWithLockType, ConfigurationType, DeploymentStrategyTypeWithDefault, IconBaseColorType } from './types';
|
4
4
|
export declare const ARTIFACT_STATUS: {
|
5
5
|
PROGRESSING: string;
|
6
6
|
DEGRADED: string;
|
@@ -429,4 +429,5 @@ export declare const VARIANT_TO_BORDER_MAP: Record<InfoBlockProps['variant'], st
|
|
429
429
|
export declare const DEPLOYMENT_STAGE_TO_NODE_MAP: Readonly<Record<DeploymentStageType, DeploymentNodeType>>;
|
430
430
|
export declare const APP_DETAILS_FALLBACK_POLLING_INTERVAL = 30000;
|
431
431
|
export declare const PROGRESSING_DEPLOYMENT_STATUS_POLLING_INTERVAL = 10000;
|
432
|
+
export declare const STRATEGY_TYPE_TO_TITLE_MAP: Record<DeploymentStrategyTypeWithDefault, string>;
|
432
433
|
export declare const CUBIC_BEZIER_CURVE: [number, number, number, number];
|
package/dist/Shared/types.d.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
import { ReactNode } from 'react';
|
2
2
|
import { ParsedCountry } from 'react-international-phone';
|
3
3
|
import { Dayjs } from 'dayjs';
|
4
|
-
import { APIOptions, ApprovalConfigDataType } from '../Common/Types';
|
4
|
+
import { APIOptions, ApprovalConfigDataType, Strategy } from '../Common/Types';
|
5
5
|
import { ReleaseMode } from '../Pages/index';
|
6
|
-
import { CommonNodeAttr, DeploymentAppTypes, OptionType, PluginType, RefVariableType, SegmentedControlProps, ServerErrors, SortingParams, TriggerBlockType, ValueConstraintType, VariableType, VulnerabilityType } from '../Common';
|
6
|
+
import { CommonNodeAttr, DeploymentAppTypes, OptionType, PluginType, RefVariableType, SegmentedControlProps, ServerError, ServerErrors, SortingParams, TriggerBlockType, ValueConstraintType, VariableType, VulnerabilityType } from '../Common';
|
7
7
|
import { SelectPickerOptionType, WorkflowRunnerStatusDTO } from './Components';
|
8
8
|
import { BASE_CONFIGURATION_ENV_ID, DEPLOYMENT_STATUS, EnvironmentTypeEnum, PatchOperationType } from './constants';
|
9
9
|
export declare enum InstallationType {
|
@@ -1097,4 +1097,9 @@ export interface IntelligenceConfig {
|
|
1097
1097
|
export type DeploymentStrategyType = 'CANARY' | 'ROLLING' | 'RECREATE' | 'BLUE-GREEN' | 'ROLLINGUPDATE' | 'ONDELETE';
|
1098
1098
|
export type DeploymentStrategyTypeWithDefault = DeploymentStrategyType | 'DEFAULT';
|
1099
1099
|
export type PipelineIdsVsDeploymentStrategyMap = Record<number, DeploymentStrategyTypeWithDefault>;
|
1100
|
+
export interface PipelineDeploymentStrategy {
|
1101
|
+
pipelineId: number;
|
1102
|
+
strategies: Strategy[];
|
1103
|
+
error: ServerError;
|
1104
|
+
}
|
1100
1105
|
export {};
|