@devtron-labs/devtron-fe-common-lib 1.2.14-beta-1 → 1.2.14-beta-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.
Files changed (33) hide show
  1. package/dist/{@code-editor-C_dq_os7.js → @code-editor-Dq63qqN5.js} +4006 -3947
  2. package/dist/{@common-rjsf-B-Cr1bBz.js → @common-rjsf-XvvYk5xT.js} +1 -1
  3. package/dist/Common/Constants.d.ts +1 -4
  4. package/dist/Common/CustomTagSelector/Types.d.ts +12 -14
  5. package/dist/Common/CustomTagSelector/index.d.ts +0 -1
  6. package/dist/Common/Helper.d.ts +2 -1
  7. package/dist/Common/Types.d.ts +20 -4
  8. package/dist/Pages/ResourceBrowser/Helper.d.ts +0 -11
  9. package/dist/Pages/ResourceBrowser/ResourceBrowser.Types.d.ts +1 -44
  10. package/dist/Pages/ResourceBrowser/index.d.ts +0 -1
  11. package/dist/Pages/ResourceBrowser/service.d.ts +1 -2
  12. package/dist/Shared/Components/BulkSelection/BulkSelection.d.ts +1 -1
  13. package/dist/Shared/Components/BulkSelection/types.d.ts +0 -4
  14. package/dist/Shared/Components/DynamicDataTable/types.d.ts +2 -0
  15. package/dist/Shared/Components/SelectPicker/SelectPicker.component.d.ts +1 -1
  16. package/dist/Shared/Components/SelectPicker/type.d.ts +1 -1
  17. package/dist/Shared/Components/TagsKeyValueTable/TagsContainer.d.ts +3 -0
  18. package/dist/Shared/Components/TagsKeyValueTable/constants.d.ts +4 -0
  19. package/dist/Shared/Components/TagsKeyValueTable/index.d.ts +3 -0
  20. package/dist/Shared/Components/TagsKeyValueTable/types.d.ts +11 -0
  21. package/dist/Shared/Components/TagsKeyValueTable/utils.d.ts +7 -0
  22. package/dist/Shared/Components/index.d.ts +1 -1
  23. package/dist/Shared/types.d.ts +19 -1
  24. package/dist/index.d.ts +0 -1
  25. package/dist/index.js +476 -476
  26. package/package.json +1 -1
  27. package/dist/Common/CustomTagSelector/TagLabelSelect.d.ts +0 -2
  28. package/dist/Common/CustomTagSelector/TagSelector.utils.d.ts +0 -12
  29. package/dist/Pages/ResourceBrowser/constants.d.ts +0 -4
  30. package/dist/Shared/Components/NumbersCount/NumbersCount.component.d.ts +0 -3
  31. package/dist/Shared/Components/NumbersCount/index.d.ts +0 -1
  32. package/dist/Shared/Components/NumbersCount/types.d.ts +0 -13
  33. package/dist/assets/ic-tilde.0451dbd9.svg +0 -3
@@ -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-Dq63qqN5.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";
@@ -13,6 +13,7 @@ export declare const DOCUMENTATION: {
13
13
  GLOBAL_CONFIG_BUILD_INFRA: string;
14
14
  };
15
15
  export declare const PATTERNS: {
16
+ STRING: RegExp;
16
17
  KUBERNETES_KEY_PREFIX: RegExp;
17
18
  KUBERNETES_KEY_NAME: RegExp;
18
19
  START_END_ALPHANUMERIC: RegExp;
@@ -48,7 +49,6 @@ export declare const URLS: {
48
49
  NETWORK_STATUS_INTERFACE: string;
49
50
  CONFIG_DRIFT: string;
50
51
  RESOURCE_BROWSER: string;
51
- COMPARE_CLUSTERS: string;
52
52
  };
53
53
  export declare const ROUTES: {
54
54
  APP: string;
@@ -57,8 +57,6 @@ export declare const ROUTES: {
57
57
  PROJECT_LIST_MIN: string;
58
58
  USER_CHECK_ROLE: string;
59
59
  IMAGE_TAGGING: string;
60
- CREATE_RESOURCE: string;
61
- K8S_RESOURCE_CREATE: string;
62
60
  CI_CONFIG_GET: string;
63
61
  CD_MATERIAL_GET: string;
64
62
  DEPLOYMENT_TEMPLATE_LIST: string;
@@ -97,7 +95,6 @@ export declare const ROUTES: {
97
95
  DEPLOYMENT_CHARTS_LIST: string;
98
96
  USER_LIST_MIN: string;
99
97
  CONFIG_DATA: string;
100
- K8S_RESOURCE: string;
101
98
  K8S_RESOURCE_LIST: string;
102
99
  CONFIG_COMPARE_SECRET: string;
103
100
  };
@@ -5,6 +5,16 @@ export interface SuggestedTagOptionType extends OptionType {
5
5
  description: string;
6
6
  propagate: boolean;
7
7
  }
8
+ export declare enum DeploymentPolicy {
9
+ ALLOW = "allow",
10
+ BLOCK = "block",
11
+ BLOCK_PROD = "block-prod",
12
+ BLOCK_NON_PROD = "block-non-prod"
13
+ }
14
+ export interface VariableValueConstraintTypes {
15
+ choices?: string[];
16
+ blockCustomValue?: boolean;
17
+ }
8
18
  export interface TagType {
9
19
  id?: number;
10
20
  key: string;
@@ -16,20 +26,8 @@ export interface TagType {
16
26
  isInvalidValue?: boolean;
17
27
  isSuggested?: boolean;
18
28
  isPropagateDisabled?: boolean;
19
- }
20
- export interface TagErrorType {
21
- isValid: boolean;
22
- messages: string[];
23
- }
24
- export interface TagLabelSelectType {
25
- isCreateApp?: boolean;
26
- labelTags: TagType[];
27
- setLabelTags: (tagList: TagType[]) => void;
28
- tabIndex?: number;
29
- selectedProjectId?: number;
30
- suggestedTagsOptions?: SuggestedTagOptionType[];
31
- reloadProjectTags?: boolean;
32
- hidePropagateTag?: boolean;
29
+ deploymentPolicy?: DeploymentPolicy;
30
+ valueConstraint?: VariableValueConstraintTypes;
33
31
  }
34
32
  export interface TagDetailType {
35
33
  index: number;
@@ -1,6 +1,5 @@
1
1
  export { default as PropagateTagInfo } from './PropagateTagInfo';
2
2
  export * from './TagDetails';
3
- export * from './TagLabelSelect';
4
3
  export * from './TagLabelValueSelector';
5
4
  export * from './ResizableTagTextArea';
6
5
  export * from './Types';
@@ -1,6 +1,6 @@
1
1
  import { default as React, SyntheticEvent } from 'react';
2
2
  import { JSONPathOptions } from 'jsonpath-plus';
3
- import { AsyncOptions, UseSearchString } from './Types';
3
+ import { AsyncOptions, DeploymentNodeType, UseSearchString } from './Types';
4
4
  import { scrollableInterface } from '../Shared';
5
5
  import * as Sentry from '@sentry/browser';
6
6
  export declare function showError(serverError: any, showToastOnUnknownError?: boolean, hideAccessError?: boolean): void;
@@ -135,4 +135,5 @@ export declare const getSanitizedIframe: (iframeString: string) => string;
135
135
  * This method adds default attributes to iframe - title, loading ="lazy", width="100%", height="100%"
136
136
  */
137
137
  export declare const getIframeWithDefaultAttributes: (iframeString: string, defaultName?: string) => string;
138
+ export declare const getStageTitle: (stageType: DeploymentNodeType) => string;
138
139
  export {};
@@ -3,7 +3,7 @@ import { TippyProps } from '@tippyjs/react';
3
3
  import { Placement } from 'tippy.js';
4
4
  import { UserGroupDTO } from '../Pages/GlobalConfigurations';
5
5
  import { ImageComment, ReleaseTag } from './ImageTags.Types';
6
- import { MandatoryPluginBaseStateType, RegistryType, RuntimeParamsListItemType, Severity } from '../Shared';
6
+ import { MandatoryPluginBaseStateType, PolicyBlockInfo, RegistryType, RuntimeParamsListItemType, Severity } from '../Shared';
7
7
  import { ACTION_STATE, DEPLOYMENT_WINDOW_TYPE, DockerConfigOverrideType, SortingOrder, TaskErrorObj } from '.';
8
8
  /**
9
9
  * Generic response type object with support for overriding the result type
@@ -432,6 +432,10 @@ export interface CDMaterialType {
432
432
  * Would currently only be received in case of release
433
433
  */
434
434
  appWorkflowId: number;
435
+ /**
436
+ * Denotes trigger blocking due to mandatory tags, (might be used for plugins and other features in future)
437
+ */
438
+ deploymentBlockedState?: PolicyBlockInfo;
435
439
  }
436
440
  export declare enum CDMaterialServiceEnum {
437
441
  ROLLBACK = "rollback",
@@ -468,6 +472,15 @@ export interface DownstreamNodesEnvironmentsType {
468
472
  environmentId: number;
469
473
  environmentName: string;
470
474
  }
475
+ export declare enum TriggerBlockType {
476
+ MANDATORY_TAG = "mandatory-tags",
477
+ MANDATORY_PLUGIN = "mandatory-plugins",
478
+ SECURITY_SCAN = "security-scan"
479
+ }
480
+ export interface TriggerBlockedInfo {
481
+ blockedBy: TriggerBlockType;
482
+ blockedReason?: string;
483
+ }
471
484
  export interface CommonNodeAttr extends Pick<MandatoryPluginBaseStateType, 'isTriggerBlocked' | 'pluginBlockState'> {
472
485
  connectingCiPipelineId?: number;
473
486
  parents: string | number[] | string[];
@@ -530,6 +543,7 @@ export interface CommonNodeAttr extends Pick<MandatoryPluginBaseStateType, 'isTr
530
543
  downstreamEnvironments?: DownstreamNodesEnvironmentsType[];
531
544
  cipipelineId?: number;
532
545
  isDeploymentBlocked?: boolean;
546
+ triggerBlockedInfo?: TriggerBlockedInfo;
533
547
  }
534
548
  export declare enum DeploymentAppTypes {
535
549
  HELM = "helm",
@@ -593,6 +607,7 @@ export interface CDMaterialsMetaInfo {
593
607
  */
594
608
  requestedUserId: number;
595
609
  runtimeParams: RuntimeParamsListItemType[];
610
+ deploymentBlockedState?: PolicyBlockInfo;
596
611
  }
597
612
  export interface ImagePromotionMaterialInfo {
598
613
  isApprovalPendingForPromotion: boolean;
@@ -670,7 +685,7 @@ export interface Strategy {
670
685
  config: any;
671
686
  default?: boolean;
672
687
  }
673
- export interface CDStage {
688
+ export interface CDStage extends Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
674
689
  status: string;
675
690
  name: string;
676
691
  triggerType: 'AUTOMATIC' | 'MANUAL';
@@ -680,14 +695,14 @@ export interface CDStageConfigMapSecretNames {
680
695
  configMaps: any[];
681
696
  secrets: any[];
682
697
  }
683
- export interface PrePostDeployStageType extends MandatoryPluginBaseStateType {
698
+ export interface PrePostDeployStageType extends MandatoryPluginBaseStateType, Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
684
699
  isValid: boolean;
685
700
  steps: TaskErrorObj[];
686
701
  triggerType: string;
687
702
  name: string;
688
703
  status: string;
689
704
  }
690
- export interface CdPipeline {
705
+ export interface CdPipeline extends Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
691
706
  id: number;
692
707
  environmentId: number;
693
708
  environmentName?: string;
@@ -719,6 +734,7 @@ export interface CdPipeline {
719
734
  isProdEnv?: boolean;
720
735
  isGitOpsRepoNotConfigured?: boolean;
721
736
  isDeploymentBlocked?: boolean;
737
+ isTriggerBlocked?: boolean;
722
738
  }
723
739
  export interface ExternalCiConfig {
724
740
  id: number;
@@ -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 {
@@ -19,6 +19,8 @@ export type DynamicDataTableHeaderType<K extends string> = {
19
19
  isSortable?: boolean;
20
20
  /** An optional boolean to control the visibility of the column. */
21
21
  isHidden?: boolean;
22
+ /** An optional boolean to show the column */
23
+ renderAdditionalContent?: () => ReactNode;
22
24
  };
23
25
  export declare enum DynamicDataTableRowDataType {
24
26
  TEXT = "text",
@@ -134,5 +134,5 @@ import { SelectPickerProps } from './type';
134
134
  * />
135
135
  * ```
136
136
  */
137
- declare const SelectPicker: <OptionValue, IsMulti extends boolean>({ error, icon, helperText, placeholder, label, showSelectedOptionIcon, size, disabledTippyContent, showSelectedOptionsCount, menuSize, optionListError, reloadOptionList, menuPosition, variant, disableDescriptionEllipsis, multiSelectProps, isMulti, name, classNamePrefix, shouldRenderCustomOptions, isSearchable, selectRef, shouldMenuAlignRight, fullWidth, customSelectedOptionsCount, renderMenuListFooter, inputValue, onInputChange, isCreatable, onCreateOption, closeMenuOnSelect, shouldShowNoOptionsMessage, ...props }: SelectPickerProps<OptionValue, IsMulti>) => JSX.Element;
137
+ declare const SelectPicker: <OptionValue, IsMulti extends boolean>({ error, icon, helperText, placeholder, label, showSelectedOptionIcon, size, disabledTippyContent, showSelectedOptionsCount, menuSize, optionListError, reloadOptionList, menuPosition, variant, disableDescriptionEllipsis, multiSelectProps, isMulti, name, classNamePrefix, shouldRenderCustomOptions, isSearchable, selectRef, shouldMenuAlignRight, fullWidth, customSelectedOptionsCount, renderMenuListFooter, inputValue, onInputChange, isCreatable, onCreateOption, closeMenuOnSelect, shouldShowNoOptionsMessage, formatCreateLabel, ...props }: SelectPickerProps<OptionValue, IsMulti>) => JSX.Element;
138
138
  export default SelectPicker;
@@ -61,7 +61,7 @@ export declare enum SelectPickerVariantType {
61
61
  DEFAULT = "default",
62
62
  BORDER_LESS = "border-less"
63
63
  }
64
- export type SelectPickerProps<OptionValue = number | string, IsMulti extends boolean = false> = Pick<SelectProps<OptionValue, IsMulti>, 'name' | 'classNamePrefix' | 'options' | 'value' | 'onChange' | 'isSearchable' | 'isClearable' | 'hideSelectedOptions' | 'controlShouldRenderValue' | 'closeMenuOnSelect' | 'isDisabled' | 'isLoading' | 'required' | 'isOptionDisabled' | 'placeholder' | 'menuPosition' | 'getOptionLabel' | 'getOptionValue' | 'isOptionSelected' | 'menuIsOpen' | 'onMenuOpen' | 'onMenuClose' | 'autoFocus' | 'onBlur' | 'onKeyDown' | 'formatOptionLabel' | 'onInputChange' | 'inputValue'> & Partial<Pick<SelectProps<OptionValue, IsMulti>, 'renderMenuListFooter' | 'shouldRenderCustomOptions' | 'renderCustomOptions' | 'icon' | 'showSelectedOptionIcon'>> & Required<Pick<SelectProps<OptionValue, IsMulti>, 'inputId'>> & Partial<Pick<CreatableProps<SelectPickerOptionType<OptionValue>, IsMulti, GroupBase<SelectPickerOptionType<OptionValue>>>, 'onCreateOption'>> & {
64
+ export type SelectPickerProps<OptionValue = number | string, IsMulti extends boolean = false> = Pick<SelectProps<OptionValue, IsMulti>, 'name' | 'classNamePrefix' | 'options' | 'value' | 'onChange' | 'isSearchable' | 'isClearable' | 'hideSelectedOptions' | 'controlShouldRenderValue' | 'closeMenuOnSelect' | 'isDisabled' | 'isLoading' | 'required' | 'isOptionDisabled' | 'placeholder' | 'menuPosition' | 'getOptionLabel' | 'getOptionValue' | 'isOptionSelected' | 'menuIsOpen' | 'onMenuOpen' | 'onMenuClose' | 'autoFocus' | 'onBlur' | 'onKeyDown' | 'formatOptionLabel' | 'onInputChange' | 'inputValue'> & Partial<Pick<SelectProps<OptionValue, IsMulti>, 'renderMenuListFooter' | 'shouldRenderCustomOptions' | 'renderCustomOptions' | 'icon' | 'showSelectedOptionIcon'>> & Required<Pick<SelectProps<OptionValue, IsMulti>, 'inputId'>> & Partial<Pick<CreatableProps<SelectPickerOptionType<OptionValue>, IsMulti, GroupBase<SelectPickerOptionType<OptionValue>>>, 'onCreateOption' | 'formatCreateLabel'>> & {
65
65
  /**
66
66
  * Error message for the select
67
67
  */
@@ -0,0 +1,3 @@
1
+ import { TagsContainerProps } from './types';
2
+ declare const TagsContainer: ({ isCreateApp, hidePropagateTags, ...props }: TagsContainerProps) => JSX.Element;
3
+ export default TagsContainer;
@@ -0,0 +1,4 @@
1
+ import { DynamicDataTableHeaderType } from '../DynamicDataTable';
2
+ import { TagsTableColumnsType } from './types';
3
+ export declare const TAGS_TABLE_HEADERS: DynamicDataTableHeaderType<TagsTableColumnsType>[];
4
+ export declare const DEVTRON_AI_URL: string;
@@ -0,0 +1,3 @@
1
+ export { default as TagsContainer } from './TagsContainer';
2
+ export { getEmptyTagTableRow, validateTagKeyValues } from './utils';
3
+ export type { TagsTableColumnsType } from './types';
@@ -0,0 +1,11 @@
1
+ import { DynamicDataTableCellErrorType, DynamicDataTableProps, DynamicDataTableRowType } from '../DynamicDataTable';
2
+ export type TagsTableColumnsType = 'tagKey' | 'tagValue';
3
+ export interface TagsContainerProps extends Partial<Pick<DynamicDataTableProps<TagsTableColumnsType>, 'onRowEdit'>> {
4
+ isCreateApp?: boolean;
5
+ rows: DynamicDataTableRowType<TagsTableColumnsType>[];
6
+ setRows: (updatedRows: DynamicDataTableRowType<TagsTableColumnsType>[]) => void;
7
+ hidePropagateTags?: boolean;
8
+ getEmptyRow?: (keyChoices?: string[]) => DynamicDataTableRowType<TagsTableColumnsType>;
9
+ tagsError: DynamicDataTableCellErrorType<TagsTableColumnsType>;
10
+ setTagErrors: (updatedTagsError: DynamicDataTableCellErrorType<TagsTableColumnsType>) => void;
11
+ }
@@ -0,0 +1,7 @@
1
+ import { DynamicDataTableRowType } from '../DynamicDataTable';
2
+ import { TagsTableColumnsType } from './types';
3
+ export declare const getEmptyTagTableRow: () => DynamicDataTableRowType<TagsTableColumnsType>;
4
+ export declare const validateTagKeyValues: (value: string, key: string) => {
5
+ isValid: boolean;
6
+ errorMessages: string[];
7
+ };
@@ -41,8 +41,8 @@ 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';
48
47
  export * from './DynamicDataTable';
48
+ export * from './TagsKeyValueTable';
@@ -1,5 +1,5 @@
1
1
  import { Dayjs } from 'dayjs';
2
- import { OptionType, CommonNodeAttr, ResponseType, UserApprovalConfigType, VulnerabilityType, DeploymentAppTypes, ServerErrors, SortingParams } from '../Common';
2
+ import { OptionType, CommonNodeAttr, ResponseType, UserApprovalConfigType, VulnerabilityType, DeploymentAppTypes, ServerErrors, SortingParams, TriggerBlockType } from '../Common';
3
3
  import { KeyValueListType } from './Components';
4
4
  import { EnvironmentTypeEnum, PatchOperationType } from './constants';
5
5
  export declare enum EnvType {
@@ -740,4 +740,22 @@ export interface PreventOutsideFocusProps {
740
740
  identifier: string;
741
741
  preventFocus: boolean;
742
742
  }
743
+ export interface PolicyBlockInfo {
744
+ isBlocked: boolean;
745
+ blockedBy: TriggerBlockType;
746
+ reason: string;
747
+ }
748
+ export interface PipelineStageBlockInfo {
749
+ node: PolicyBlockInfo;
750
+ pre: PolicyBlockInfo;
751
+ post: PolicyBlockInfo;
752
+ }
753
+ export interface PolicyConsequencesDTO {
754
+ cd: PipelineStageBlockInfo;
755
+ ci: PipelineStageBlockInfo;
756
+ }
757
+ export interface GetPolicyConsequencesProps {
758
+ appId: number;
759
+ envId: number;
760
+ }
743
761
  export {};
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;