@devtron-labs/devtron-fe-common-lib 1.12.0-beta-2 → 1.12.0-pre-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.
@@ -1,7 +1,7 @@
1
1
  import { j as n, av as y, ax as k, aw as W } from "./@vendor-SjXFleuT.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-WfOCu__U.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-DieGT18L.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";
@@ -1,6 +1,6 @@
1
1
  import { MutableRefObject } from 'react';
2
2
  import { RuntimeParamsAPIResponseType, RuntimePluginVariables } from '../Shared/types';
3
- import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType, GlobalVariableOptionType, UserRole } from './Types';
3
+ import { TeamList, ResponseType, DeploymentNodeType, CDMaterialServiceEnum, CDMaterialServiceQueryParams, CDMaterialResponseType, CDMaterialFilterQuery, EnvironmentListHelmResponse, UserApprovalMetadataType, GlobalVariableOptionType, UserRole, EnvAppsMetaDTO, GetAppsInfoForEnvProps } from './Types';
4
4
  import { ApiResourceType } from '../Pages';
5
5
  export declare const getTeamListMin: () => Promise<TeamList>;
6
6
  export declare const SourceTypeMap: {
@@ -35,3 +35,4 @@ export declare const getGlobalVariables: ({ appId, isCD, abortControllerRef, }:
35
35
  isCD?: boolean;
36
36
  abortControllerRef?: MutableRefObject<AbortController>;
37
37
  }) => Promise<GlobalVariableOptionType[]>;
38
+ export declare const getAppsInfoForEnv: ({ envId, appIds }: GetAppsInfoForEnvProps) => Promise<EnvAppsMetaDTO>;
@@ -133,6 +133,8 @@ export declare const ROUTES: {
133
133
  readonly ENVIRONMENT_DATA: "global/environment-variables";
134
134
  readonly DASHBOARD_EVENT: "dashboard-event";
135
135
  readonly LICENSE_DATA: "license/data";
136
+ readonly ENV: "env";
137
+ readonly APP_METADATA: "app-metadata";
136
138
  };
137
139
  export declare enum KEY_VALUE {
138
140
  KEY = "key",
@@ -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, ButtonProps, ComponentLayoutType } from '../Shared';
5
+ import { MandatoryPluginBaseStateType, RegistryType, RuntimePluginVariables, Severity, PolicyBlockInfo, TargetPlatformItemDTO, ButtonProps, ComponentLayoutType, StatusType } 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
@@ -949,4 +949,17 @@ export declare enum ActionTypes {
949
949
  EDIT = "edit",
950
950
  APPROVER = "approver"
951
951
  }
952
+ export interface GetAppsInfoForEnvProps {
953
+ envId: number;
954
+ appIds?: number[];
955
+ }
956
+ export interface AppMeta {
957
+ appId: number;
958
+ appStatus: StatusType;
959
+ appName: string;
960
+ }
961
+ export interface EnvAppsMetaDTO {
962
+ appCount: number;
963
+ apps: AppMeta[];
964
+ }
952
965
  export {};
@@ -1,3 +1,3 @@
1
1
  import { AnimatedDeployButtonProps } from './types';
2
- declare const AnimatedDeployButton: ({ isLoading, isVirtualEnvironment, onButtonClick, exceptionUserConfig, isBulkCDTrigger, }: AnimatedDeployButtonProps) => JSX.Element;
2
+ declare const AnimatedDeployButton: ({ isVirtualEnvironment, onButtonClick }: AnimatedDeployButtonProps) => JSX.Element;
3
3
  export default AnimatedDeployButton;
@@ -1,10 +1,4 @@
1
1
  export interface AnimatedDeployButtonProps {
2
- isLoading?: boolean;
3
2
  isVirtualEnvironment: boolean;
4
3
  onButtonClick: (e: any, disableDeployButton: boolean) => void;
5
- exceptionUserConfig?: {
6
- canDeploy: boolean;
7
- isImageApprover: boolean;
8
- };
9
- isBulkCDTrigger?: boolean;
10
4
  }
@@ -1,4 +1,4 @@
1
1
  import { ArtifactType, CIListItemType } from './types';
2
- export declare const CIListItem: ({ type, userApprovalMetadata, triggeredBy, children, ciPipelineId, artifactId, imageComment, imageReleaseTags, appReleaseTagNames, tagsEditable, hideImageTaggingHardDelete, appliedFilters, isSuperAdmin, promotionApprovalMetadata, appliedFiltersTimestamp, selectedEnvironmentName, renderCIListHeader, targetPlatforms, isDeploymentWithoutApproval, }: CIListItemType) => JSX.Element;
2
+ export declare const CIListItem: ({ type, userApprovalMetadata, triggeredBy, children, ciPipelineId, artifactId, imageComment, imageReleaseTags, appReleaseTagNames, tagsEditable, hideImageTaggingHardDelete, appliedFilters, isSuperAdmin, promotionApprovalMetadata, appliedFiltersTimestamp, selectedEnvironmentName, renderCIListHeader, targetPlatforms, }: CIListItemType) => JSX.Element;
3
3
  declare const Artifacts: ({ status, artifact, blobStorageEnabled, isArtifactUploaded, downloadArtifactUrl, ciPipelineId, artifactId, isJobCI, imageComment, imageReleaseTags, appReleaseTagNames, tagsEditable, hideImageTaggingHardDelete, rootClassName, renderCIListHeader, targetPlatforms, }: ArtifactType) => JSX.Element;
4
4
  export default Artifacts;
@@ -1,3 +1,3 @@
1
1
  import { DeploymentDetailStepsType } from './types';
2
- declare const DeploymentDetailSteps: ({ deploymentStatus, deploymentAppType, isHelmApps, installedAppVersionHistoryId, isGitops, userApprovalMetadata, isVirtualEnvironment, processVirtualEnvironmentDeploymentData, renderDeploymentApprovalInfo, isDeploymentWithoutApproval, }: DeploymentDetailStepsType) => JSX.Element;
2
+ declare const DeploymentDetailSteps: ({ deploymentStatus, deploymentAppType, isHelmApps, installedAppVersionHistoryId, isGitops, userApprovalMetadata, isVirtualEnvironment, processVirtualEnvironmentDeploymentData, renderDeploymentApprovalInfo, }: DeploymentDetailStepsType) => JSX.Element;
3
3
  export default DeploymentDetailSteps;
@@ -1,4 +1,4 @@
1
1
  import { GitChangesType, LogResizeButtonType, ScrollerType } from './types';
2
2
  export declare const LogResizeButton: ({ shortcutCombo, showOnlyWhenPathIncludesLogs, fullScreenView, setFullScreenView, }: LogResizeButtonType) => JSX.Element;
3
3
  export declare const Scroller: ({ scrollToTop, scrollToBottom, style }: ScrollerType) => JSX.Element;
4
- export declare const GitChanges: ({ gitTriggers, ciMaterials, artifact, userApprovalMetadata, triggeredByEmail, ciPipelineId, artifactId, imageComment, imageReleaseTags, appReleaseTagNames, tagsEditable, hideImageTaggingHardDelete, appliedFilters, appliedFiltersTimestamp, promotionApprovalMetadata, selectedEnvironmentName, renderCIListHeader, targetPlatforms, isDeploymentWithoutApproval, }: GitChangesType) => JSX.Element;
4
+ export declare const GitChanges: ({ gitTriggers, ciMaterials, artifact, userApprovalMetadata, triggeredByEmail, ciPipelineId, artifactId, imageComment, imageReleaseTags, appReleaseTagNames, tagsEditable, hideImageTaggingHardDelete, appliedFilters, appliedFiltersTimestamp, promotionApprovalMetadata, selectedEnvironmentName, renderCIListHeader, targetPlatforms, }: GitChangesType) => JSX.Element;
@@ -134,7 +134,6 @@ export interface History extends Pick<TargetPlatformsDTO, 'targetPlatforms'>, Wo
134
134
  triggerMetadata?: string;
135
135
  runSource?: RunSourceType;
136
136
  targetConfig?: TargetConfigType;
137
- isDeploymentWithoutApproval?: boolean;
138
137
  }
139
138
  export interface ExecutionInfoType {
140
139
  /**
@@ -314,7 +313,7 @@ export interface DeploymentStatusDetailsTimelineType {
314
313
  statusTime: string;
315
314
  resourceDetails?: SyncStageResourceDetail[];
316
315
  }
317
- export interface DeploymentStatusDetailsType extends Pick<History, 'isDeploymentWithoutApproval'> {
316
+ export interface DeploymentStatusDetailsType {
318
317
  deploymentFinishedOn: string;
319
318
  deploymentStartedOn: string;
320
319
  triggeredBy: string;
@@ -328,7 +327,7 @@ export interface DeploymentStatusDetailsResponse extends ResponseType {
328
327
  }
329
328
  interface DeploymentStatusDetailRow {
330
329
  icon: string;
331
- displayText: ReactNode;
330
+ displayText: string;
332
331
  displaySubText: string;
333
332
  time: string;
334
333
  resourceDetails?: any;
@@ -356,7 +355,7 @@ export interface DeploymentStatusDetailsBreakdownDataType {
356
355
  HELM_PACKAGE_GENERATED?: DeploymentStatusDetailRow;
357
356
  };
358
357
  }
359
- export interface DeploymentDetailStepsType extends Pick<History, 'isDeploymentWithoutApproval'> {
358
+ export interface DeploymentDetailStepsType {
360
359
  deploymentStatus?: string;
361
360
  deploymentAppType?: DeploymentAppTypes;
362
361
  isHelmApps?: boolean;
@@ -367,7 +366,7 @@ export interface DeploymentDetailStepsType extends Pick<History, 'isDeploymentWi
367
366
  processVirtualEnvironmentDeploymentData: (data?: DeploymentStatusDetailsType) => DeploymentStatusDetailsBreakdownDataType;
368
367
  renderDeploymentApprovalInfo: (userApprovalMetadata: UserApprovalMetadataType) => JSX.Element;
369
368
  }
370
- export interface RenderCIListHeaderProps extends Required<Pick<History, 'isDeploymentWithoutApproval'>> {
369
+ export interface RenderCIListHeaderProps {
371
370
  userApprovalMetadata: UserApprovalMetadataType;
372
371
  triggeredBy: string;
373
372
  appliedFilters: FilterConditionsListType[];
@@ -385,7 +384,7 @@ export interface VirtualHistoryArtifactProps {
385
384
  workflowId: number;
386
385
  };
387
386
  }
388
- export type CIListItemType = Pick<History, 'promotionApprovalMetadata' | 'isDeploymentWithoutApproval'> & {
387
+ export type CIListItemType = Pick<History, 'promotionApprovalMetadata'> & {
389
388
  userApprovalMetadata?: UserApprovalMetadataType;
390
389
  triggeredBy?: string;
391
390
  children: ReactNode;
@@ -602,7 +601,6 @@ export type GitChangesType = {
602
601
  appliedFilters?: never;
603
602
  appliedFiltersTimestamp?: never;
604
603
  renderCIListHeader?: never;
605
- isDeploymentWithoutApproval?: never;
606
604
  } | {
607
605
  artifact: string;
608
606
  promotionApprovalMetadata: History['promotionApprovalMetadata'];
@@ -620,7 +618,6 @@ export type GitChangesType = {
620
618
  appliedFilters?: FilterConditionsListType[];
621
619
  appliedFiltersTimestamp?: string;
622
620
  renderCIListHeader: (renderCIListHeaderProps: RenderCIListHeaderProps) => JSX.Element;
623
- isDeploymentWithoutApproval?: History['isDeploymentWithoutApproval'];
624
621
  });
625
622
  export interface ArtifactType extends Pick<TargetPlatformBadgeListProps, 'targetPlatforms'> {
626
623
  status: string;
@@ -23,7 +23,6 @@ export declare const iconMap: {
23
23
  'ic-cd': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
24
24
  'ic-chat-circle-dots': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
25
25
  'ic-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
26
- 'ic-checks': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
27
26
  'ic-ci-linked': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
28
27
  'ic-ci-webhook': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
29
28
  'ic-circle-loader': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -57,6 +56,7 @@ export declare const iconMap: {
57
56
  'ic-google-container-registry': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
58
57
  'ic-google': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
59
58
  'ic-grid-view': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
59
+ 'ic-hand-pointing': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
60
60
  'ic-heart-green': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
61
61
  'ic-heart-red-animated': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
62
62
  'ic-heart-red': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -69,7 +69,6 @@ export declare const iconMap: {
69
69
  'ic-info-outline': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
70
70
  'ic-job-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
71
71
  'ic-k8s-job': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
72
- 'ic-key': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
73
72
  'ic-ldap': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
74
73
  'ic-lightning-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
75
74
  'ic-lightning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -94,7 +93,6 @@ export declare const iconMap: {
94
93
  'ic-quay': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
95
94
  'ic-quote': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
96
95
  'ic-rocket-launch': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
97
- 'ic-selected': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
98
96
  'ic-shield-check': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
99
97
  'ic-sliders-vertical': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
100
98
  'ic-sort-ascending': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -107,7 +105,7 @@ export declare const iconMap: {
107
105
  'ic-suspended': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
108
106
  'ic-tata1mg': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
109
107
  'ic-terminal-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
110
- 'ic-timeout-dash': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
108
+ 'ic-timeout-two-dash': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
111
109
  'ic-timer': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
112
110
  'ic-travclan': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
113
111
  'ic-unknown': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -79,6 +79,5 @@ export * from './ThemeSwitcher';
79
79
  export * from './ToggleResolveScopedVariables';
80
80
  export * from './UnsavedChanges';
81
81
  export * from './UnsavedChangesDialog';
82
- export * from './UserIdentifier';
83
82
  export * from './VirtualizedList';
84
83
  export * from './WorkflowOptionsModal';
@@ -245,8 +245,6 @@ export interface WorkflowType {
245
245
  showTippy?: boolean;
246
246
  appId?: number;
247
247
  isSelected?: boolean;
248
- isExceptionUser?: boolean;
249
- canApproverDeploy?: boolean;
250
248
  approvalConfiguredIdsMap?: Record<number, ApprovalConfigDataType>;
251
249
  imageReleaseTags: string[];
252
250
  appReleaseTags?: string[];
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 9.75V3.375a1.875 1.875 0 1 0-3.75 0v11.369l-2.056-3.56a1.876 1.876 0 1 0-3.247 1.874C6 19.5 7.857 21.75 12 21.75a7.5 7.5 0 0 0 7.5-7.5V10.5a1.875 1.875 0 1 0-3.75 0" vector-effect="non-scaling-stroke"/>
3
+ <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M15.75 10.5V9.375a1.875 1.875 0 1 0-3.75 0v.375" vector-effect="non-scaling-stroke"/>
4
+ </svg>
@@ -15,6 +15,7 @@
15
15
  -->
16
16
 
17
17
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
18
- <circle cx="12" cy="12" r="10" fill="var(--B500)"/>
19
- <path fill-rule="evenodd" clip-rule="evenodd" d="M16.7071 9.29291C17.0976 9.68344 17.0976 10.3166 16.7071 10.7071L11.3738 16.0402C10.9832 16.4307 10.3501 16.4307 9.95959 16.0402L7.29292 13.3738C6.90238 12.9833 6.90235 12.3501 7.29286 11.9596C7.68337 11.5691 8.31653 11.569 8.70708 11.9595L10.6667 13.9189L15.2929 9.29288C15.6834 8.90236 16.3166 8.90238 16.7071 9.29291Z" fill="var(--N0)"/>
18
+ <path d="M3 12C3 7.02944 7.02944 3 12 3" stroke="#3B444C" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-dasharray="2 3"/>
19
+ <path d="M12 6.75V12L15 16" stroke="#3B444C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path d="M3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3" stroke="#3B444C" stroke-width="1.5" stroke-miterlimit="10"/>
20
21
  </svg>
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { m9 as s, aK as t, eb as i, eO as o, k5 as r, jW as n, fc as l, aV as T, jD as g, aE as E, iz as S, jS as p, jx as d, f7 as _, db as c, i7 as A, f8 as I, A as u, d9 as C, da as m, m1 as D, f9 as O, fa as R, fb as y, f5 as f, lr as P, jU as N, iA as M, iC as L, jb as h, fy as F, lf as U, lS as b, cE as B, cY as v, cZ as k, hZ as G, fd as V, fz as j, ka as H, d_ as K, e6 as Y, e1 as W, e9 as w, dX as x, e7 as X, ea as z, e0 as q, d$ as Z, ek as J, e5 as Q, dZ as $, fj as aa, fn as ea, fe as sa, gQ as ta, B as ia, f as oa, g as ra, ez as na, dO as la, eo as Ta, dS as ga, dT as Ea, dQ as Sa, eq as pa, ep as da, ev as _a, dP as ca, ey as Aa, dR as Ia, er as ua, et as Ca, es as ma, dV as Da, aB as Oa, eu as Ra, ff as ya, fg as fa, fp as Pa, fk as Na, fi as Ma, fr as La, fv as ha, fu as Fa, ft as Ua, fw as ba, fx as Ba, iQ as va, fA as ka, d3 as Ga, d2 as Va, d1 as ja, lY as Ha, cV as Ka, k1 as Ya, cT as Wa, X as wa, lX as xa, mc as Xa, fo as za, ly as qa, lu as Za, eh as Ja, ei as Qa, lz as $a, lA as ae, jY as ee, j_ as se, jZ as te, m7 as ie, k3 as oe, dg as re, gy as ne, gv as le, kh as Te, eQ as ge, e4 as Ee, gP as Se, C as pe, K as de, fI as _e, cy as ce, h as Ae, f1 as Ie, f2 as ue, gJ as Ce, $ as me, _ as De, gL as Oe, gM as Re, gN as ye, iy as fe, dp as Pe, jX as Ne, Q as Me, bs as Le, gO as he, dr as Fe, gu as Ue, lv as be, du as Be, m6 as ve, bi as ke, gR as Ge, gS as Ve, gV as je, cG as He, z as Ke, gX as Ye, gY as We, cC as we, h4 as xe, h3 as Xe, a$ as ze, jC as qe, kf as Ze, aI as Je, a_ as Qe, ap as $e, k4 as as, ip as es, im as ss, io as ts, dY as is, ke as os, jE as rs, av as ns, h8 as ls, ec as Ts, ed as gs, eR as Es, hi as Ss, jO as ps, jQ as ds, aL as _s, jk as cs, kb as As, eK as Is, am as us, ao as Cs, aq as ms, al as Ds, an as Os, eP as Rs, di as ys, g_ as fs, D as Ps, lU as Ns, be as Ms, ki as Ls, gT as hs, m3 as Fs, d5 as Us, hd as bs, hj as Bs, fC as vs, fK as ks, fJ as Gs, cW as Vs, bd as js, jG as Hs, jc as Ks, fD as Ys, jH as Ws, cI as ws, hq as xs, k as Xs, i8 as zs, bh as qs, bj as Zs, bk as Js, hr as Qs, lt as $s, ls as at, bl as et, bn as st, bm as tt, bo as it, c5 as ot, dq as rt, hs as nt, ht as lt, jN as Tt, kk as gt, ay as Et, aw as St, kg as pt, aU as dt, jA as _t, jP as ct, hv as At, hu as It, hw as ut, ma as Ct, lx as mt, lQ as Dt, hx as Ot, jI as Rt, hy as yt, E as ft, m as Pt, hA as Nt, aj as Mt, aO as Lt, hC as ht, hB as Ft, g3 as Ut, dC as bt, V as Bt, hD as vt, hE as kt, d6 as Gt, j3 as Vt, c_ as jt, jh as Ht, hF as Kt, hG as Yt, gU as Wt, eM as wt, dh as xt, dj as Xt, bp as zt, G as qt, l as Zt, hI as Jt, hJ as Qt, hK as $t, dv as ai, fN as ei, hL as si, m2 as ti, hM as ii, b3 as oi, hN as ri, n as ni, iG as li, hP as Ti, g2 as gi, ak as Ei, i9 as Si, jz as pi, ef as di, ee as _i, eg as ci, kl as Ai, dE as Ii, dF as ui, b2 as Ci, hW as mi, hX as Di, hY as Oi, h_ as Ri, h$ as yi, d0 as fi, l9 as Pi, lb as Ni, cp as Mi, co as Li, cU as hi, i0 as Fi, lP as Ui, i1 as bi, I as Bi, i2 as vi, Z as ki, ia as Gi, i4 as Vi, i3 as ji, jV as Hi, au as Ki, i6 as Yi, aZ as Wi, me as wi, ic as xi, mf as Xi, iF as zi, fL as qi, id as Zi, fE as Ji, jT as Qi, mj as $i, aY as ao, aF as eo, bq as so, mi as to, aJ as io, aD as oo, h1 as ro, h7 as no, ld as lo, cX as To, cq as go, c$ as Eo, ie as So, iH as po, cr as _o, ig as co, jB as Ao, lW as Io, h5 as uo, hH as Co, O as mo, iI as Do, cA as Oo, cw as Ro, cx as yo, cz as fo, eS as Po, jK as No, e2 as Mo, eN as Lo, g9 as ho, ew as Fo, g8 as Uo, g7 as bo, lR as Bo, ih as vo, k6 as ko, cu as Go, dt as Vo, dc as jo, ar as Ho, j$ as Ko, aX as Yo, e3 as Wo, hO as wo, cD as xo, ji as Xo, gZ as zo, jF as qo, ii as Zo, dn as Jo, iv as Qo, d7 as $o, iu as ar, ij as er, ik as sr, cF as tr, il as ir, M as or, l$ as rr, P as nr, cH as lr, m4 as Tr, b7 as gr, ds as Er, f6 as Sr, k8 as pr, iJ as dr, at as _r, R as cr, p as Ar, aS as Ir, U as ur, L as Cr, mh as mr, iK as Dr, lT as Or, dB as Rr, q as yr, aC as fr, ba as Pr, lZ as Nr, l_ as Mr, mg as Lr, kj as hr, m8 as Fr, S as Ur, my as br, gw as Br, aG as vr, fl as kr, b0 as Gr, aW as Vr, kc as jr, b6 as Hr, j9 as Kr, dw as Yr, jy as Wr, ga as wr, iL as xr, eL as Xr, N as zr, fM as qr, cJ as Zr, iM as Jr, iN as Qr, iR as $r, cK as an, cL as en, r as sn, fq as tn, k0 as on, j4 as rn, j6 as nn, j7 as ln, f4 as Tn, cM as gn, cN as En, iT as Sn, lV as pn, j8 as dn, fF as _n, g$ as cn, cv as An, cO as In, aH as un, a1 as Cn, gb as mn, jd as Dn, g1 as On, je as Rn, o as yn, dD as fn, k9 as Pn, e8 as Nn, le as Mn, jJ as Ln, aQ as hn, h2 as Fn, ax as Un, az as bn, cR as Bn, k2 as vn, jL as kn, jM as Gn, jf as Vn, jg as jn, jj as Hn, bb as Kn, bc as Yn, jl as Wn, jn as wn, jo as xn, lw as Xn, jp as zn, li as qn, jq as Zn, h6 as Jn, cQ as Qn, cS as $n, lG as al, lH as el, lI as sl, a as tl, jr as il, ex as ol, T as rl, d4 as nl, fG as ll, fH as Tl, md as gl, aA as El, b5 as Sl, kd as pl, m5 as dl, as as _l, l6 as cl, ej as Al, js as Il, jt as ul, cl as Cl, ll as ml, ju as Dl, dJ as Ol, l8 as Rl, dN as yl, dL as fl, dK as Pl, dH as Nl, k7 as Ml, b1 as Ll, dm as hl, W as Fl, l7 as Ul, jv as bl, cs as Bl, ct as vl, j1 as kl, aN as Gl, Y as Vl, m0 as jl, g6 as Hl, g4 as Kl, d8 as Yl, jw as Wl, g5 as wl, mb as xl, b$ as Xl, aT as zl, F as ql, kC as Zl, bX as Jl, aM as Ql, c7 as $l, gg as aT, b as eT, fQ as sT, fR as tT, bZ as iT, kS as oT, bL as rT, kY as nT, bJ as lT, d as TT, c0 as gT, gx as ET, gz as ST, eI as pT, c as dT, gC as _T, gF as cT, bM as AT, e_ as IT, em as uT, a9 as CT, eX as mT, eV as DT, h0 as OT, bR as RT, bY as yT, kD as fT, e as PT, eZ as NT, eY as MT, bg as LT, kW as hT, hf as FT, hh as UT, he as bT, hg as BT, mz as vT, e$ as kT, km as GT, a8 as VT, aa as jT, bW as HT, a7 as KT, x as YT, dx as WT, eT as wT, by as xT, lp as XT, hn as zT, gs as qT, lo as ZT, is as JT, ca as QT, eH as $T, el as ag, eG as eg, eF as sg, eE as tg, ln as ig, iX as og, kX as rg, ad as ng, f0 as lg, iD as Tg, lq as gg, i_ as Eg, lg as Sg, gD as pg, gI as dg, gH as _g, gE as cg, gW as Ag, bF as Ig, iE as ug, hQ as Cg, ab as mg, hc as Dg, kM as Og, ho as Rg, f_ as yg, fV as fg, fU as Pg, dk as Ng, dd as Mg, fS as Lg, ja as hg, hk as Fg, eC as Ug, hl as bg, gG as Bg, bz as vg, jm as kg, lE as Gg, ac as Vg, kG as jg, bS as Hg, b4 as Kg, gp as Yg, bH as Wg, ah as wg, kr as xg, ai as Xg, ce as zg, eJ as qg, kL as Zg, cf as Jg, hU as Qg, gm as $g, gl as aE, cc as eE, fm as sE, i5 as tE, kK as iE, kJ as oE, kq as rE, H as nE, hT as lE, eW as TE, eU as gE, kz as EE, gj as SE, kP as pE, fT as dE, g0 as _E, af as cE, iB as AE, gq as IE, kO as uE, aP as CE, it as mE, lJ as DE, gf as OE, eB as RE, ir as yE, iq as fE, lO as PE, lN as NE, lC as ME, iO as LE, bx as hE, bU as FE, dl as UE, lB as bE, ae as BE, cb as vE, gB as kE, iZ as GE, iS as VE, iU as jE, j0 as HE, j5 as KE, iP as YE, j2 as WE, gi as wE, cd as xE, gr as XE, i$ as zE, cg as qE, fP as ZE, a0 as JE, lF as QE, lh as $E, kF as aS, aR as eS, h9 as sS, iY as tS, iV as iS, eD as oS, fO as rS, f$ as nS, ge as lS, gt as TS, kR as gS, ix as ES, bP as SS, dI as pS, dM as dS, l3 as _S, a2 as cS, kQ as AS, kv as IS, ag as uS, gn as CS, go as mS, lM as DS, lK as OS, kN as RS, s as yS, ky as fS, hR as PS, J as NS, b_ as MS, f3 as LS, bG as hS, df as FS, de as US, kn as bS, hV as BS, kU as vS, gK as kS, dy as GS, i as VS, kE as jS, j as HS, bQ as KS, c6 as YS, hm as WS, cB as wS, bA as xS, bB as XS, kt as zS, ib as qS, iW as ZS, eA as JS, iw as QS, a5 as $S, w as ap, t as ep, bV as sp, c8 as tp, fY as ip, fW as op, fZ as rp, fX as np, ko as lp, bv as Tp, kp as gp, a6 as Ep, bO as Sp, kB as pp, v as dp, bT as _p, lL as cp, bC as Ap, hp as Ip, hz as up, gA as Cp, gh as mp, kV as Dp, kA as Op, bD as Rp, mm as yp, kI as fp, kT as Pp, kH as Np, a4 as Mp, gk as Lp, lD as hp, bf as Fp, hS as Up, a3 as bp, c1 as Bp, br as vp, bt as kp, fB as Gp, jR as Vp, gd as jp, bu as Hp, ks as Kp, gc as Yp, c9 as Wp, y as wp, dA as xp, hb as Xp, ha as zp, l4 as qp, dz as Zp, dG as Jp, en as Qp, bN as $p, u as ad, dU as ed, dW as sd, fh as td, ch as id, kZ as od, bE as rd, k_ as nd, k$ as ld, ci as Td, la as gd, kx as Ed, c2 as Sd, bK as pd, c4 as dd, lc as _d, l0 as cd, l1 as Ad, ck as Id, cP as ud, c3 as Cd, bI as md, cm as Dd, l2 as Od, lj as Rd, bw as yd, fs as fd, cn as Pd, lk as Nd, l5 as Md, cj as Ld, mC as hd, mA as Fd, mo as Ud, mx as bd, mu as Bd, mB as vd, ml as kd, mk as Gd, mn as Vd, mt as jd, mr as Hd, mq as Kd, mw as Yd, mp as Wd, b8 as wd, b9 as xd, ms as Xd, mv as zd, mD as qd, ku as Zd, lm as Jd, kw as Qd } from "./@code-editor-WfOCu__U.js";
2
- import { H as a_, R as e_, c as s_, g as t_, a as i_, b as o_ } from "./@common-rjsf-Cb7AEsSR.js";
1
+ import { m9 as s, aL as t, ec as i, eP as o, k5 as r, jW as n, fd as l, aW as T, jD as g, aF as E, iA as S, jS as p, jx as d, f8 as _, dc as c, i8 as A, f9 as I, A as u, da as C, db as m, m1 as D, fa as O, fb as R, fc as y, f6 as f, lr as P, jU as N, iB as M, iD as L, jc as h, fz as F, lf as U, lS as b, cF as B, cZ as v, c_ as k, h_ as G, fe as V, fA as j, ka as H, d$ as K, e7 as Y, e2 as W, ea as w, dY as x, e8 as X, eb as z, e1 as q, e0 as Z, el as J, e6 as Q, d_ as $, fk as aa, fo as ea, ff as sa, gR as ta, B as ia, f as oa, g as ra, eA as na, dP as la, ep as Ta, dT as ga, dU as Ea, dR as Sa, er as pa, eq as da, ew as _a, dQ as ca, ez as Aa, dS as Ia, es as ua, eu as Ca, et as ma, dW as Da, aC as Oa, ev as Ra, fg as ya, fh as fa, fq as Pa, fl as Na, fj as Ma, fs as La, fw as ha, fv as Fa, fu as Ua, fx as ba, fy as Ba, iR as va, fB as ka, d4 as Ga, d3 as Va, d2 as ja, lY as Ha, cW as Ka, k1 as Ya, cU as Wa, X as wa, lX as xa, mc as Xa, fp as za, ly as qa, lu as Za, ei as Ja, ej as Qa, lz as $a, lA as ae, jY as ee, j_ as se, jZ as te, m7 as ie, k3 as oe, dh as re, gz as ne, gw as le, kh as Te, eR as ge, e5 as Ee, gQ as Se, C as pe, K as de, fJ as _e, cz as ce, h as Ae, f2 as Ie, f3 as ue, gK as Ce, $ as me, _ as De, gM as Oe, gN as Re, gO as ye, iz as fe, dq as Pe, jX as Ne, Q as Me, bt as Le, gP as he, ds as Fe, gv as Ue, lv as be, dv as Be, m6 as ve, bj as ke, gS as Ge, gT as Ve, gW as je, cH as He, z as Ke, gY as Ye, gZ as We, cD as we, h5 as xe, h4 as Xe, b0 as ze, jC as qe, kf as Ze, aJ as Je, a$ as Qe, aq as $e, k4 as as, iq as es, io as ss, ip as ts, dZ as is, ke as os, jE as rs, aw as ns, h9 as ls, ed as Ts, ee as gs, eS as Es, hj as Ss, jO as ps, jQ as ds, aM as _s, jl as cs, kb as As, eL as Is, an as us, ap as Cs, ar as ms, am as Ds, ao as Os, eQ as Rs, dj as ys, g$ as fs, D as Ps, lU as Ns, bf as Ms, ki as Ls, gU as hs, m3 as Fs, d6 as Us, he as bs, hk as Bs, fD as vs, fL as ks, fK as Gs, cX as Vs, be as js, jG as Hs, jd as Ks, fE as Ys, jH as Ws, cJ as ws, hr as xs, k as Xs, i9 as zs, bi as qs, bk as Zs, bl as Js, hs as Qs, lt as $s, ls as at, bm as et, bo as st, bn as tt, bp as it, c6 as ot, dr as rt, ht as nt, hu as lt, jN as Tt, kk as gt, az as Et, ax as St, kg as pt, aV as dt, jA as _t, jP as ct, hw as At, hv as It, hx as ut, ma as Ct, lx as mt, lQ as Dt, hy as Ot, jI as Rt, hz as yt, E as ft, m as Pt, hB as Nt, ak as Mt, aP as Lt, hD as ht, hC as Ft, g4 as Ut, dD as bt, V as Bt, hE as vt, hF as kt, d7 as Gt, j4 as Vt, c$ as jt, ji as Ht, hG as Kt, hH as Yt, gV as Wt, eN as wt, di as xt, dk as Xt, bq as zt, G as qt, l as Zt, hJ as Jt, hK as Qt, hL as $t, dw as ai, fO as ei, hM as si, m2 as ti, hN as ii, b4 as oi, hO as ri, n as ni, iH as li, hQ as Ti, g3 as gi, al as Ei, ia as Si, jz as pi, eg as di, ef as _i, eh as ci, kl as Ai, dF as Ii, dG as ui, b3 as Ci, hX as mi, hY as Di, hZ as Oi, h$ as Ri, i0 as yi, d1 as fi, l9 as Pi, lb as Ni, cq as Mi, cp as Li, cV as hi, i1 as Fi, lP as Ui, i2 as bi, I as Bi, i3 as vi, Z as ki, ib as Gi, i5 as Vi, i4 as ji, jV as Hi, av as Ki, i7 as Yi, a_ as Wi, me as wi, id as xi, mf as Xi, iG as zi, fM as qi, ie as Zi, fF as Ji, jT as Qi, mj as $i, aZ as ao, aG as eo, br as so, mi as to, aK as io, aE as oo, h2 as ro, h8 as no, ld as lo, cY as To, cr as go, d0 as Eo, ig as So, iI as po, cs as _o, ih as co, jB as Ao, lW as Io, h6 as uo, hI as Co, O as mo, iJ as Do, cB as Oo, cx as Ro, cy as yo, cA as fo, eT as Po, jK as No, e3 as Mo, eO as Lo, ga as ho, ex as Fo, g9 as Uo, g8 as bo, lR as Bo, ii as vo, k6 as ko, cv as Go, du as Vo, dd as jo, as as Ho, j$ as Ko, aY as Yo, e4 as Wo, hP as wo, cE as xo, jj as Xo, g_ as zo, jF as qo, ij as Zo, dp as Jo, iw as Qo, d8 as $o, iv as ar, ik as er, il as sr, cG as tr, im as ir, M as or, l$ as rr, P as nr, cI as lr, m4 as Tr, b8 as gr, dt as Er, f7 as Sr, k8 as pr, iK as dr, au as _r, R as cr, p as Ar, aT as Ir, U as ur, L as Cr, mh as mr, iL as Dr, lT as Or, dC as Rr, q as yr, aD as fr, bb as Pr, lZ as Nr, l_ as Mr, mg as Lr, kj as hr, m8 as Fr, S as Ur, my as br, gx as Br, aH as vr, fm as kr, b1 as Gr, aX as Vr, kc as jr, b7 as Hr, ja as Kr, dx as Yr, jy as Wr, gb as wr, iM as xr, eM as Xr, N as zr, fN as qr, cK as Zr, iN as Jr, iO as Qr, iS as $r, cL as an, cM as en, r as sn, fr as tn, k0 as on, j5 as rn, j7 as nn, j8 as ln, f5 as Tn, cN as gn, cO as En, iU as Sn, lV as pn, j9 as dn, fG as _n, h0 as cn, cw as An, cP as In, aI as un, a1 as Cn, gc as mn, je as Dn, g2 as On, jf as Rn, o as yn, dE as fn, k9 as Pn, e9 as Nn, le as Mn, jJ as Ln, aR as hn, h3 as Fn, ay as Un, aA as bn, cS as Bn, k2 as vn, jL as kn, jM as Gn, jg as Vn, jh as jn, jk as Hn, bc as Kn, bd as Yn, jm as Wn, jo as wn, jp as xn, lw as Xn, jq as zn, li as qn, jr as Zn, h7 as Jn, cR as Qn, cT as $n, lG as al, lH as el, lI as sl, a as tl, js as il, ey as ol, T as rl, d5 as nl, fH as ll, fI as Tl, md as gl, aB as El, b6 as Sl, kd as pl, m5 as dl, at as _l, l6 as cl, ek as Al, jt as Il, ju as ul, cm as Cl, ll as ml, dK as Dl, l8 as Ol, dO as Rl, dM as yl, dL as fl, dI as Pl, k7 as Nl, b2 as Ml, dn as Ll, W as hl, l7 as Fl, jv as Ul, ct as bl, cu as Bl, j2 as vl, aO as kl, Y as Gl, m0 as Vl, g7 as jl, g5 as Hl, d9 as Kl, jw as Yl, g6 as Wl, mb as wl, c0 as xl, aU as Xl, F as zl, kC as ql, bY as Zl, aN as Jl, c8 as Ql, gh as $l, b as aT, fR as eT, fS as sT, b_ as tT, kS as iT, bM as oT, kY as rT, bK as nT, d as lT, c1 as TT, gy as gT, gA as ET, eJ as ST, c as pT, gD as dT, gG as _T, bN as cT, e$ as AT, en as IT, a9 as uT, eY as CT, eW as mT, h1 as DT, bS as OT, bZ as RT, kD as yT, e as fT, e_ as PT, eZ as NT, bh as MT, kW as LT, hg as hT, hi as FT, hf as UT, hh as bT, mz as BT, f0 as vT, km as kT, a8 as GT, aa as VT, bX as jT, a7 as HT, x as KT, dy as YT, eU as WT, bz as wT, lp as xT, ho as XT, gt as zT, aj as qT, lo as ZT, it as JT, cb as QT, eI as $T, em as ag, eH as eg, eG as sg, eF as tg, ln as ig, iY as og, kX as rg, ad as ng, f1 as lg, iE as Tg, lq as gg, i$ as Eg, lg as Sg, gE as pg, gJ as dg, gI as _g, gF as cg, gX as Ag, bG as Ig, iF as ug, hR as Cg, ab as mg, hd as Dg, kM as Og, hp as Rg, f$ as yg, fW as fg, fV as Pg, dl as Ng, de as Mg, fT as Lg, jb as hg, hl as Fg, eD as Ug, hm as bg, gH as Bg, bA as vg, jn as kg, lE as Gg, ac as Vg, kG as jg, bT as Hg, b5 as Kg, gq as Yg, bI as Wg, ah as wg, kr as xg, ai as Xg, cf as zg, eK as qg, kL as Zg, cg as Jg, hV as Qg, gn as $g, gm as aE, cd as eE, fn as sE, i6 as tE, kK as iE, kJ as oE, kq as rE, H as nE, hU as lE, eX as TE, eV as gE, kz as EE, gk as SE, kP as pE, fU as dE, g1 as _E, af as cE, iC as AE, gr as IE, kO as uE, aQ as CE, iu as mE, lJ as DE, gg as OE, eC as RE, is as yE, ir as fE, lO as PE, lN as NE, lC as ME, iP as LE, by as hE, bV as FE, dm as UE, lB as bE, ae as BE, cc as vE, gC as kE, i_ as GE, iT as VE, iV as jE, j1 as HE, j6 as KE, iQ as YE, j3 as WE, gj as wE, ce as xE, gs as XE, j0 as zE, ch as qE, fQ as ZE, a0 as JE, lF as QE, lh as $E, kF as aS, aS as eS, ha as sS, iZ as tS, iW as iS, eE as oS, fP as rS, g0 as nS, gf as lS, gu as TS, kR as gS, iy as ES, bQ as SS, dJ as pS, dN as dS, l3 as _S, a2 as cS, kQ as AS, kv as IS, ag as uS, go as CS, gp as mS, lM as DS, lK as OS, kN as RS, s as yS, ky as fS, hS as PS, J as NS, b$ as MS, f4 as LS, bH as hS, dg as FS, df as US, kn as bS, hW as BS, kU as vS, gL as kS, dz as GS, i as VS, kE as jS, j as HS, bR as KS, c7 as YS, hn as WS, cC as wS, bB as xS, bC as XS, kt as zS, ic as qS, iX as ZS, eB as JS, ix as QS, a5 as $S, w as ap, t as ep, bW as sp, c9 as tp, fZ as ip, fX as op, f_ as rp, fY as np, ko as lp, bw as Tp, kp as gp, a6 as Ep, bP as Sp, kB as pp, v as dp, bU as _p, lL as cp, bD as Ap, hq as Ip, hA as up, gB as Cp, gi as mp, kV as Dp, kA as Op, bE as Rp, mm as yp, kI as fp, kT as Pp, kH as Np, a4 as Mp, gl as Lp, lD as hp, bg as Fp, hT as Up, a3 as bp, c2 as Bp, bs as vp, bu as kp, fC as Gp, jR as Vp, ge as jp, bv as Hp, ks as Kp, gd as Yp, ca as Wp, y as wp, dB as xp, hc as Xp, hb as zp, l4 as qp, dA as Zp, dH as Jp, eo as Qp, bO as $p, u as ad, dV as ed, dX as sd, fi as td, ci as id, kZ as od, bF as rd, k_ as nd, k$ as ld, cj as Td, la as gd, kx as Ed, c3 as Sd, bL as pd, c5 as dd, lc as _d, l0 as cd, l1 as Ad, cl as Id, cQ as ud, c4 as Cd, bJ as md, cn as Dd, l2 as Od, lj as Rd, bx as yd, ft as fd, co as Pd, lk as Nd, l5 as Md, ck as Ld, mC as hd, mA as Fd, mo as Ud, mx as bd, mu as Bd, mB as vd, ml as kd, mk as Gd, mn as Vd, mt as jd, mr as Hd, mq as Kd, mw as Yd, mp as Wd, b9 as wd, ba as xd, ms as Xd, mv as zd, mD as qd, ku as Zd, lm as Jd, kw as Qd } from "./@code-editor-DieGT18L.js";
2
+ import { H as a_, R as e_, c as s_, g as t_, a as i_, b as o_ } from "./@common-rjsf-CwEIGtgd.js";
3
3
  import { A as n_ } from "./@framer-motion-BaOj5B1h.js";
4
4
  export {
5
5
  s as ACCESS_TYPE_MAP,
@@ -509,89 +509,89 @@ export {
509
509
  ul as UnsavedChangesDialog,
510
510
  Cl as UseRegisterShortcutProvider,
511
511
  ml as UserEmailProvider,
512
- Dl as UserIdentifier,
513
- Ol as UserListSortableKeys,
514
- Rl as UserPreferenceResourceActions,
515
- yl as UserRoleGroupsTable,
516
- fl as UserStatus,
517
- Pl as UserStatusDto,
518
- Nl as UserTypeToFetchType,
519
- Ml as VIEW_ALL_TICKETS,
520
- Ll as VULNERABILITIES_SORT_PRIORITY,
521
- hl as ValuesAndManifestFlagDTO,
522
- Fl as VariableTypeFormat,
523
- Ul as ViewIsPipelineRBACConfiguredRadioTabs,
524
- bl as VirtualizedList,
525
- Bl as VisibleModal,
526
- vl as VisibleModal2,
527
- kl as Vulnerabilities,
528
- Gl as WEEK_DAYS_ENUM,
529
- Vl as WORKFLOW_CACHE_CONFIG_ENUM,
530
- jl as WebhookEventNameType,
531
- Hl as WorkflowExecutionStageNameType,
532
- Kl as WorkflowExecutionStageType,
533
- Yl as WorkflowNodeType,
534
- Wl as WorkflowOptionsModal,
535
- wl as WorkflowStageStatusType,
536
- xl as WorkflowStatusEnum,
537
- Xl as YAMLStringify,
538
- zl as ZERO_TIME_STRING,
539
- ql as abortPreviousRequests,
540
- Zl as aggregateNodes,
541
- Jl as applyCompareDiffOnUneditedDocument,
542
- Ql as arrowUnicode,
543
- $l as asyncWrap,
544
- aT as buildHoverHtmlForWebhook,
545
- eT as buildObjectFromPath,
546
- sT as cancelCiTrigger,
547
- tT as cancelPrePostCdTrigger,
548
- iT as capitalizeFirstLetter,
549
- oT as checkIfPathIsMatching,
550
- rT as cleanKubeManifest,
551
- nT as clearCookieOnLogout,
552
- lT as closeOnEscKeyPressed,
553
- TT as commonSelectStyles,
554
- gT as compareObjectLength,
555
- ET as configMapDataTypeOptions,
556
- ST as configMapSecretMountDataMap,
512
+ Dl as UserListSortableKeys,
513
+ Ol as UserPreferenceResourceActions,
514
+ Rl as UserRoleGroupsTable,
515
+ yl as UserStatus,
516
+ fl as UserStatusDto,
517
+ Pl as UserTypeToFetchType,
518
+ Nl as VIEW_ALL_TICKETS,
519
+ Ml as VULNERABILITIES_SORT_PRIORITY,
520
+ Ll as ValuesAndManifestFlagDTO,
521
+ hl as VariableTypeFormat,
522
+ Fl as ViewIsPipelineRBACConfiguredRadioTabs,
523
+ Ul as VirtualizedList,
524
+ bl as VisibleModal,
525
+ Bl as VisibleModal2,
526
+ vl as Vulnerabilities,
527
+ kl as WEEK_DAYS_ENUM,
528
+ Gl as WORKFLOW_CACHE_CONFIG_ENUM,
529
+ Vl as WebhookEventNameType,
530
+ jl as WorkflowExecutionStageNameType,
531
+ Hl as WorkflowExecutionStageType,
532
+ Kl as WorkflowNodeType,
533
+ Yl as WorkflowOptionsModal,
534
+ Wl as WorkflowStageStatusType,
535
+ wl as WorkflowStatusEnum,
536
+ xl as YAMLStringify,
537
+ Xl as ZERO_TIME_STRING,
538
+ zl as abortPreviousRequests,
539
+ ql as aggregateNodes,
540
+ Zl as applyCompareDiffOnUneditedDocument,
541
+ Jl as arrowUnicode,
542
+ Ql as asyncWrap,
543
+ $l as buildHoverHtmlForWebhook,
544
+ aT as buildObjectFromPath,
545
+ eT as cancelCiTrigger,
546
+ sT as cancelPrePostCdTrigger,
547
+ tT as capitalizeFirstLetter,
548
+ iT as checkIfPathIsMatching,
549
+ oT as cleanKubeManifest,
550
+ rT as clearCookieOnLogout,
551
+ nT as closeOnEscKeyPressed,
552
+ lT as commonSelectStyles,
553
+ TT as compareObjectLength,
554
+ gT as configMapDataTypeOptions,
555
+ ET as configMapSecretMountDataMap,
557
556
  s_ as conformPathToPointers,
558
- pT as convertDeploymentChartListToChartType,
559
- dT as convertJSONPointerToJSONPath,
560
- _T as convertKeyValuePairToYAML,
561
- cT as convertYAMLToKeyValuePair,
562
- AT as copyToClipboard,
563
- IT as cordonNodeCapacity,
564
- uT as createBuildInfraProfileService,
565
- CT as createGitCommitUrl,
566
- mT as createNewResource,
567
- DT as createResourceRequestBody,
568
- OT as customDayStyles,
569
- RT as customStyles,
570
- yT as debounce,
571
- fT as decode,
572
- PT as deepEqual,
573
- NT as deleteNodeCapacity,
574
- MT as deleteResource,
575
- LT as deleteWorkflow,
576
- hT as deriveBorderRadiusAndBorderClassFromConfig,
577
- FT as diffStateIconMap,
578
- UT as diffStateTextColorMap,
579
- bT as diffStateTextMap,
580
- BT as diffStateTooltipTextMap,
581
- vT as doesJSONConformToSchema07,
582
- kT as drainNodeCapacity,
583
- GT as escapeRegExp,
584
- VT as extractImage,
585
- jT as fetchChartTemplateVersions,
586
- HT as flatMapOfJSONPaths,
587
- KT as genericCDMaterialsService,
588
- YT as get,
589
- WT as getAPIOptionsWithTriggerTimeout,
590
- wT as getAggregator,
591
- xT as getAlphabetIcon,
592
- XT as getAppEnvDeploymentConfig,
593
- zT as getAppEnvDeploymentConfigList,
594
- qT as getAppStatusIcon,
557
+ ST as convertDeploymentChartListToChartType,
558
+ pT as convertJSONPointerToJSONPath,
559
+ dT as convertKeyValuePairToYAML,
560
+ _T as convertYAMLToKeyValuePair,
561
+ cT as copyToClipboard,
562
+ AT as cordonNodeCapacity,
563
+ IT as createBuildInfraProfileService,
564
+ uT as createGitCommitUrl,
565
+ CT as createNewResource,
566
+ mT as createResourceRequestBody,
567
+ DT as customDayStyles,
568
+ OT as customStyles,
569
+ RT as debounce,
570
+ yT as decode,
571
+ fT as deepEqual,
572
+ PT as deleteNodeCapacity,
573
+ NT as deleteResource,
574
+ MT as deleteWorkflow,
575
+ LT as deriveBorderRadiusAndBorderClassFromConfig,
576
+ hT as diffStateIconMap,
577
+ FT as diffStateTextColorMap,
578
+ UT as diffStateTextMap,
579
+ bT as diffStateTooltipTextMap,
580
+ BT as doesJSONConformToSchema07,
581
+ vT as drainNodeCapacity,
582
+ kT as escapeRegExp,
583
+ GT as extractImage,
584
+ VT as fetchChartTemplateVersions,
585
+ jT as flatMapOfJSONPaths,
586
+ HT as genericCDMaterialsService,
587
+ KT as get,
588
+ YT as getAPIOptionsWithTriggerTimeout,
589
+ WT as getAggregator,
590
+ wT as getAlphabetIcon,
591
+ xT as getAppEnvDeploymentConfig,
592
+ XT as getAppEnvDeploymentConfigList,
593
+ zT as getAppStatusIcon,
594
+ qT as getAppsInfoForEnv,
595
595
  ZT as getArtifactInfo,
596
596
  JT as getAvailablePluginTags,
597
597
  QT as getBranchIcon,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.12.0-beta-2",
3
+ "version": "1.12.0-pre-0-beta-1",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,2 +0,0 @@
1
- import { UserIdentifierProps } from './types';
2
- export declare const UserIdentifier: ({ email, children, rootClassName, tooltipContent, isUserGroup, }: UserIdentifierProps) => JSX.Element;
@@ -1,2 +0,0 @@
1
- export * from './types';
2
- export * from './UserIdentifier';
@@ -1,11 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export interface UserIdentifierProps {
3
- email: string;
4
- children?: ReactNode;
5
- isUserGroup?: boolean;
6
- rootClassName?: string;
7
- /**
8
- * @description - If given, would show tooltip on div containing avatar, email and children
9
- */
10
- tooltipContent?: string;
11
- }
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m13.875 7.875-8.25 8.25L1.5 12m21-4.125-8.25 8.25-2.191-2.191" vector-effect="non-scaling-stroke"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
2
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m15.59 7 1.414 1.414m-8.27 3.101a6.744 6.744 0 1 1 3.75 3.75L11.25 16.5H9v2.25H6.75V21H3v-3.75l5.735-5.735Z" vector-effect="non-scaling-stroke"/>
3
- </svg>
@@ -1,19 +0,0 @@
1
- <!--
2
- - Copyright (c) 2024. Devtron Inc.
3
- -
4
- - Licensed under the Apache License, Version 2.0 (the "License");
5
- - you may not use this file except in compliance with the License.
6
- - You may obtain a copy of the License at
7
- -
8
- - http://www.apache.org/licenses/LICENSE-2.0
9
- -
10
- - Unless required by applicable law or agreed to in writing, software
11
- - distributed under the License is distributed on an "AS IS" BASIS,
12
- - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- - See the License for the specific language governing permissions and
14
- - limitations under the License.
15
- -->
16
-
17
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
18
- <path d="M7.34833 14.419C6.46444 17.0707 2.92891 17.0707 2.92891 17.0707C2.92891 17.0707 2.92891 13.5351 5.58056 12.6513M9.99998 13.5351L15.3033 8.23183C17.3114 6.2237 17.2918 4.21556 17.164 3.35914C17.1444 3.22728 17.0829 3.10522 16.9886 3.01095C16.8944 2.91668 16.7723 2.85518 16.6404 2.83553C15.784 2.70775 13.7759 2.68816 11.7677 4.6963L6.46444 9.9996M9.99998 13.5351L6.46444 9.9996M9.99998 13.5351L10.6548 16.8094C10.677 16.9203 10.7289 17.0232 10.8049 17.1069C10.881 17.1907 10.9783 17.2522 11.0866 17.285C11.1949 17.3178 11.31 17.3206 11.4197 17.2931C11.5294 17.2655 11.6296 17.2088 11.7096 17.1288L14.2363 14.6021C14.2944 14.544 14.3404 14.4751 14.3718 14.3993C14.4032 14.3235 14.4194 14.2422 14.4194 14.1601V9.11572M6.46444 9.9996L3.19017 9.34474C3.07924 9.32256 2.97642 9.27068 2.89266 9.19465C2.8089 9.11861 2.74734 9.02127 2.71456 8.913C2.68178 8.80473 2.679 8.68959 2.70651 8.57986C2.73403 8.47013 2.79081 8.36993 2.8708 8.28994L5.3975 5.76324C5.45554 5.7052 5.52444 5.65917 5.60027 5.62776C5.6761 5.59635 5.75737 5.58018 5.83944 5.58018H10.8839" stroke="#fff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
19
- </svg>
@@ -1,21 +0,0 @@
1
- <!--
2
- - Copyright (c) 2024. Devtron Inc.
3
- -
4
- - Licensed under the Apache License, Version 2.0 (the "License");
5
- - you may not use this file except in compliance with the License.
6
- - You may obtain a copy of the License at
7
- -
8
- - http://www.apache.org/licenses/LICENSE-2.0
9
- -
10
- - Unless required by applicable law or agreed to in writing, software
11
- - distributed under the License is distributed on an "AS IS" BASIS,
12
- - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- - See the License for the specific language governing permissions and
14
- - limitations under the License.
15
- -->
16
-
17
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
18
- <path stroke="#3B444C" stroke-dasharray="1 3" stroke-linecap="round" stroke-miterlimit="10" stroke-width="1.5" d="M3 12a9 9 0 0 1 9-9" vector-effect="non-scaling-stroke"/>
19
- <path stroke="#3B444C" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 6.75V12l3 4" vector-effect="non-scaling-stroke"/>
20
- <path stroke="#3B444C" stroke-miterlimit="10" stroke-width="1.5" d="M3 12a9 9 0 1 0 9-9" vector-effect="non-scaling-stroke"/>
21
- </svg>