@devtron-labs/devtron-fe-common-lib 1.2.14-beta-2 → 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-Dq63qqN5.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";
@@ -13,7 +13,6 @@ export declare const DOCUMENTATION: {
13
13
  GLOBAL_CONFIG_BUILD_INFRA: string;
14
14
  };
15
15
  export declare const PATTERNS: {
16
- STRING: RegExp;
17
16
  KUBERNETES_KEY_PREFIX: RegExp;
18
17
  KUBERNETES_KEY_NAME: RegExp;
19
18
  START_END_ALPHANUMERIC: RegExp;
@@ -0,0 +1,2 @@
1
+ import { TagLabelSelectType } from './Types';
2
+ export declare const TagLabelSelect: ({ isCreateApp, labelTags, setLabelTags, tabIndex, hidePropagateTag }: TagLabelSelectType) => JSX.Element;
@@ -0,0 +1,12 @@
1
+ export declare const baseSelectStyles: {
2
+ control: (base: any, state: any) => any;
3
+ singleValue: (base: any, state: any) => any;
4
+ placeholder: (base: any, state: any) => any;
5
+ option: (base: any, state: any) => any;
6
+ dropdownIndicator: (styles: any) => any;
7
+ valueContainer: (base: any, state: any) => any;
8
+ indicatorsContainer: (base: any, state: any) => any;
9
+ menu: (base: any, state: any) => any;
10
+ };
11
+ export declare const validateKubernetesKey: (key: string) => void;
12
+ export declare const validateKubernetesValue: (value: string) => void;
@@ -5,16 +5,6 @@ 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
- }
18
8
  export interface TagType {
19
9
  id?: number;
20
10
  key: string;
@@ -26,8 +16,20 @@ export interface TagType {
26
16
  isInvalidValue?: boolean;
27
17
  isSuggested?: boolean;
28
18
  isPropagateDisabled?: boolean;
29
- deploymentPolicy?: DeploymentPolicy;
30
- valueConstraint?: VariableValueConstraintTypes;
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;
31
33
  }
32
34
  export interface TagDetailType {
33
35
  index: number;
@@ -1,5 +1,6 @@
1
1
  export { default as PropagateTagInfo } from './PropagateTagInfo';
2
2
  export * from './TagDetails';
3
+ export * from './TagLabelSelect';
3
4
  export * from './TagLabelValueSelector';
4
5
  export * from './ResizableTagTextArea';
5
6
  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, DeploymentNodeType, UseSearchString } from './Types';
3
+ import { AsyncOptions, 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,5 +135,4 @@ 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;
139
138
  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, PolicyBlockInfo, RegistryType, RuntimeParamsListItemType, Severity } from '../Shared';
6
+ import { MandatoryPluginBaseStateType, 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,10 +432,6 @@ 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;
439
435
  }
440
436
  export declare enum CDMaterialServiceEnum {
441
437
  ROLLBACK = "rollback",
@@ -472,15 +468,6 @@ export interface DownstreamNodesEnvironmentsType {
472
468
  environmentId: number;
473
469
  environmentName: string;
474
470
  }
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
- }
484
471
  export interface CommonNodeAttr extends Pick<MandatoryPluginBaseStateType, 'isTriggerBlocked' | 'pluginBlockState'> {
485
472
  connectingCiPipelineId?: number;
486
473
  parents: string | number[] | string[];
@@ -543,7 +530,6 @@ export interface CommonNodeAttr extends Pick<MandatoryPluginBaseStateType, 'isTr
543
530
  downstreamEnvironments?: DownstreamNodesEnvironmentsType[];
544
531
  cipipelineId?: number;
545
532
  isDeploymentBlocked?: boolean;
546
- triggerBlockedInfo?: TriggerBlockedInfo;
547
533
  }
548
534
  export declare enum DeploymentAppTypes {
549
535
  HELM = "helm",
@@ -607,7 +593,6 @@ export interface CDMaterialsMetaInfo {
607
593
  */
608
594
  requestedUserId: number;
609
595
  runtimeParams: RuntimeParamsListItemType[];
610
- deploymentBlockedState?: PolicyBlockInfo;
611
596
  }
612
597
  export interface ImagePromotionMaterialInfo {
613
598
  isApprovalPendingForPromotion: boolean;
@@ -685,7 +670,7 @@ export interface Strategy {
685
670
  config: any;
686
671
  default?: boolean;
687
672
  }
688
- export interface CDStage extends Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
673
+ export interface CDStage {
689
674
  status: string;
690
675
  name: string;
691
676
  triggerType: 'AUTOMATIC' | 'MANUAL';
@@ -695,14 +680,14 @@ export interface CDStageConfigMapSecretNames {
695
680
  configMaps: any[];
696
681
  secrets: any[];
697
682
  }
698
- export interface PrePostDeployStageType extends MandatoryPluginBaseStateType, Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
683
+ export interface PrePostDeployStageType extends MandatoryPluginBaseStateType {
699
684
  isValid: boolean;
700
685
  steps: TaskErrorObj[];
701
686
  triggerType: string;
702
687
  name: string;
703
688
  status: string;
704
689
  }
705
- export interface CdPipeline extends Partial<Pick<CommonNodeAttr, 'triggerBlockedInfo'>> {
690
+ export interface CdPipeline {
706
691
  id: number;
707
692
  environmentId: number;
708
693
  environmentName?: string;
@@ -734,7 +719,6 @@ export interface CdPipeline extends Partial<Pick<CommonNodeAttr, 'triggerBlocked
734
719
  isProdEnv?: boolean;
735
720
  isGitOpsRepoNotConfigured?: boolean;
736
721
  isDeploymentBlocked?: boolean;
737
- isTriggerBlocked?: boolean;
738
722
  }
739
723
  export interface ExternalCiConfig {
740
724
  id: number;
@@ -19,8 +19,6 @@ 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;
24
22
  };
25
23
  export declare enum DynamicDataTableRowDataType {
26
24
  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, formatCreateLabel, ...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, ...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' | 'formatCreateLabel'>> & {
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'>> & {
65
65
  /**
66
66
  * Error message for the select
67
67
  */
@@ -45,4 +45,3 @@ export * from './EnterpriseTag';
45
45
  export * from './ConfirmationModal';
46
46
  export * from './DiffViewer';
47
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, TriggerBlockType } from '../Common';
2
+ import { OptionType, CommonNodeAttr, ResponseType, UserApprovalConfigType, VulnerabilityType, DeploymentAppTypes, ServerErrors, SortingParams } from '../Common';
3
3
  import { KeyValueListType } from './Components';
4
4
  import { EnvironmentTypeEnum, PatchOperationType } from './constants';
5
5
  export declare enum EnvType {
@@ -740,22 +740,4 @@ 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
- }
761
743
  export {};