@devtron-labs/devtron-fe-common-lib 1.18.0-alpha-7 → 1.18.0-beta-0

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, au as y, aw as k, av as M } from "./@vendor-3ORIJA0h.js";
2
2
  import W, { forwardRef as J, useMemo as P } from "react";
3
3
  import V, { getDefaultRegistry as K } from "@rjsf/core";
4
- import { T as N, j as w, c as v, b as F, S as q, i as Y, a as G, d as C, e as z } from "./@code-editor-BdtT_76p.js";
4
+ import { T as N, j as w, c as v, b as F, S as q, i as Y, a as G, d as C, e as z } from "./@code-editor-BFysVFCu.js";
5
5
  import { getUiOptions as I, getTemplate as D, getSubmitButtonOptions as Q, ADDITIONAL_PROPERTY_FLAG as B, errorId as X, englishStringTranslator as Z, TranslatableString as ee, titleId as te, canExpand as ne, deepEquals as re } from "@rjsf/utils";
6
6
  import { ReactComponent as se } from "./assets/ic-add.cfaa779b.svg";
7
7
  import { ReactComponent as ae } from "./assets/ic-warning.ecf7ff97.svg";
@@ -1,3 +1,3 @@
1
1
  import { ErrorPageType } from './Types';
2
- declare const ErrorPage: ({ code, image, title, subTitle, imageType, redirectURL, reload }: ErrorPageType) => JSX.Element;
2
+ declare const ErrorPage: ({ code, image, title, subTitle, imageType, redirectURL, reload, on404Redirect }: ErrorPageType) => JSX.Element;
3
3
  export default ErrorPage;
@@ -1,3 +1,3 @@
1
1
  import { ErrorScreenManagerProps } from './Types';
2
- declare const ErrorScreenManager: ({ code, reload, subtitle, reloadClass, redirectURL, imageType, }: ErrorScreenManagerProps) => JSX.Element;
2
+ declare const ErrorScreenManager: ({ code, reload, subtitle, reloadClass, redirectURL, on404Redirect, imageType, }: ErrorScreenManagerProps) => JSX.Element;
3
3
  export default ErrorScreenManager;
@@ -141,20 +141,29 @@ export interface GenericEmptyStateType {
141
141
  export interface ErrorPageType extends Pick<GenericEmptyStateType, 'image' | 'title' | 'subTitle' | 'renderButton' | 'imageType'>, Pick<ErrorScreenManagerProps, 'reload' | 'redirectURL'> {
142
142
  code: number;
143
143
  redirectURL?: string;
144
+ on404Redirect?: () => void;
144
145
  reload?: () => void;
145
146
  }
146
- export interface ErrorScreenManagerProps {
147
+ export type ErrorScreenManagerProps = {
147
148
  code?: number;
148
149
  imageType?: ImageType;
149
150
  reload?: (...args: any[]) => any;
150
151
  subtitle?: React.ReactChild;
151
152
  reloadClass?: string;
153
+ } & ({
152
154
  /**
153
155
  * Would be used to redirect URL in case of 404
154
156
  * @default - APP_LIST
155
157
  */
156
158
  redirectURL?: string;
157
- }
159
+ on404Redirect?: never;
160
+ } | {
161
+ redirectURL?: never;
162
+ on404Redirect: () => void;
163
+ } | {
164
+ redirectURL?: never;
165
+ on404Redirect?: never;
166
+ });
158
167
  export interface ErrorScreenNotAuthorizedProps {
159
168
  subtitle?: React.ReactChild;
160
169
  title?: string;
@@ -108,6 +108,8 @@ export declare const iconMap: {
108
108
  'ic-google-gke': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
109
109
  'ic-google': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
110
110
  'ic-grid-view': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
111
+ 'ic-group-filter-applied': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
112
+ 'ic-group-filter': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
111
113
  'ic-hand-pointing': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
112
114
  'ic-heart-green': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
113
115
  'ic-heart-red-animated': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -187,6 +189,7 @@ export declare const iconMap: {
187
189
  'ic-stack': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
188
190
  'ic-stamp': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
189
191
  'ic-stop-fill': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
192
+ 'ic-storage': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
190
193
  'ic-strategy-blue-green-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
191
194
  'ic-strategy-blue-green': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
192
195
  'ic-strategy-canary-color': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -215,6 +218,8 @@ export declare const iconMap: {
215
218
  'ic-user-key': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
216
219
  'ic-users': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
217
220
  'ic-view-variable-toggle': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
221
+ 'ic-visibility-off': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
222
+ 'ic-visibility-on': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
218
223
  'ic-warning': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
219
224
  'ic-webhook': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
220
225
  'ic-wifi-slash': import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement>>;
@@ -1,3 +1,3 @@
1
1
  import { MaterialHistoryProps } from './types';
2
- declare const MaterialHistory: ({ material, pipelineName, ciPipelineId, selectCommit, isCommitInfoModal, }: MaterialHistoryProps) => JSX.Element;
2
+ declare const MaterialHistory: ({ material, pipelineName, selectCommit, isCommitInfoModal }: MaterialHistoryProps) => JSX.Element;
3
3
  export default MaterialHistory;
@@ -2,7 +2,6 @@ import { CIMaterialType } from '../../Services/app.types';
2
2
  export interface MaterialHistoryProps {
3
3
  material: CIMaterialType;
4
4
  pipelineName: string;
5
- ciPipelineId?: string;
6
- selectCommit?: (materialId: string, commit: string, ciPipelineId?: string) => void;
5
+ selectCommit?: (commitId: string) => void;
7
6
  isCommitInfoModal?: boolean;
8
7
  }
@@ -0,0 +1,20 @@
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="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
18
+ <path d="M3.99992 10H11.9999M1.33325 7H14.3333M6.49992 13H9.49992" stroke="#596168" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke" />
19
+ <circle cx="13" cy="5" r="4" fill="var(--R500)" stroke="var(--N0)" stroke-width="2" vector-effect="non-scaling-stroke" />
20
+ </svg>
@@ -0,0 +1,19 @@
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="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
18
+ <path d="M4.00016 8H12.0002M1.3335 5H14.3335M6.50016 11H9.50016" stroke="#596168" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke" />
19
+ </svg>
@@ -0,0 +1,21 @@
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="M14.9375 13.6042C14.9375 14.0875 14.5457 14.4792 14.0625 14.4792C13.5793 14.4792 13.1875 14.0875 13.1875 13.6042C13.1875 13.121 13.5793 12.7292 14.0625 12.7292C14.5457 12.7292 14.9375 13.121 14.9375 13.6042Z" fill="#3B444C" stroke="#3B444C" stroke-width="0.125" vector-effect="non-scaling-stroke"/>
19
+ <path d="M3.33325 11.2499L5.61256 4.03212C5.74393 3.61609 6.12986 3.33325 6.56614 3.33325H13.4337C13.87 3.33325 14.2559 3.61609 14.3873 4.03212L16.6666 11.2499" stroke="#3B444C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"/>
20
+ <rect x="3.125" y="11.0417" width="13.75" height="5" rx="1" stroke="#3B444C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"/>
21
+ </svg>
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
- import { ng as s, aL as t, ek as i, ll as o, eY as r, kV as n, kK as l, fx as T, aW as E, ks as _, aF as S, lh as g, jf as d, kG as p, km as A, fr as I, fs as c, ft as u, dj as C, iK as m, fu as O, A as D, dh as R, di as P, n8 as N, fv as y, fw as L, fo as f, mx as M, kI as U, jg as h, ji as F, jX as b, fy as B, fz as v, fA as G, ml as k, mZ as V, cM as Y, d4 as H, d5 as K, iA as j, fB as W, fY as w, k_ as x, e7 as X, ef as z, ea as q, ei as Q, e4 as Z, eg as J, ej as $, e9 as aa, e8 as ea, et as sa, ee as ta, e6 as ia, fI as oa, fM as ra, fC as na, fD as la, h8 as Ta, kf as Ea, B as _a, f as Sa, g as ga, eI as da, dX as pa, ex as Aa, d$ as Ia, e0 as ca, dZ as ua, ez as Ca, ey as ma, eE as Oa, dY as Da, eH as Ra, d_ as Pa, eA as Na, eC as ya, eB as La, e2 as fa, aC as Ma, eD as Ua, fE as ha, fF as Fa, fO as ba, fJ as Ba, fH as va, fQ as Ga, fU as ka, fT as Va, fS as Ya, fV as Ha, fW as Ka, jz as ja, fZ as Wa, db as wa, da as xa, d9 as Xa, n3 as za, d1 as qa, kR as Qa, c$ as Za, X as Ja, n2 as $a, nj as ae, fN as ee, mE as se, mA as te, eq as ie, er as oe, mF as re, mG as ne, kM as le, kO as Te, kN as Ee, ne as _e, kT as Se, dp as ge, gT as de, gQ as pe, l5 as Ae, e_ as Ie, ed as ce, lk as ue, h7 as Ce, C as me, J as Oe, fX as De, g5 as Re, cF as Pe, h as Ne, fg as ye, eX as Le, fi as fe, h2 as Me, h3 as Ue, h4 as he, h5 as Fe, je as be, dx as Be, kL as ve, _ as Ge, O as ke, bu as Ve, h6 as Ye, dz as He, gP as Ke, mB as je, dC as We, nd as we, h9 as xe, ha as Xe, hd as ze, cO as qe, hf as Qe, x as Ze, hh as Je, hi as $e, cJ as as, hq as es, hp as ss, b0 as ts, kr as is, l3 as os, aJ as rs, a$ as ns, ap as ls, kU as Ts, j1 as Es, i$ as _s, j0 as Ss, e5 as gs, mb as ds, l2 as ps, kt as As, aw as Is, hu as cs, el as us, em as Cs, e$ as ms, hF as Os, kC as Ds, hT as Rs, lg as Ps, kE as Ns, hM as ys, aM as Ls, k5 as fs, k$ as Ms, eT as Us, ar as hs, am as Fs, ao as bs, hX as Bs, al as vs, an as Gs, eZ as ks, dr as Vs, S as Ys, hk as Hs, D as Ks, m$ as js, bf as Ws, l8 as ws, hb as xs, na as Xs, dd as zs, hA as qs, hz as Qs, hG as Zs, f$ as Js, g7 as $s, g6 as at, d2 as et, nr as st, be as tt, kv as it, jY as ot, g0 as rt, kw as nt, cQ as lt, hW as Tt, k as Et, iL as _t, bi as St, bj as gt, bk as dt, hY as pt, mz as At, my as It, bl as ct, bn as ut, bm as Ct, bo as mt, c8 as Ot, dy as Dt, h_ as Rt, h$ as Pt, kB as Nt, la as yt, az as Lt, ax as ft, l4 as Mt, aV as Ut, kp as ht, kD as Ft, i1 as bt, i0 as Bt, nh as vt, mD as Gt, mX as kt, i2 as Vt, kx as Yt, i3 as Ht, E as Kt, l as jt, i6 as Wt, hQ as wt, aj as xt, aP as Xt, i8 as zt, i7 as qt, gm as Qt, dK as Zt, V as Jt, i9 as $t, ia as ai, de as ei, jP as si, d6 as ti, k2 as ii, ib as oi, ic as ri, hc as ni, eV as li, dq as Ti, ds as Ei, f2 as _i, f1 as Si, br as gi, bp as di, bq as pi, id as Ai, ig as Ii, ih as ci, ie as ui, ii as Ci, ij as mi, dD as Oi, ga as Di, ik as Ri, n9 as Pi, il as Ni, b4 as yi, im as Li, G as fi, jm as Mi, jR as Ui, ip as hi, gl as Fi, ak as bi, iM as Bi, ko as vi, eo as Gi, en as ki, ep as Vi, lb as Yi, dM as Hi, dN as Ki, b3 as ji, iv as Wi, iw as wi, iy as xi, iz as Xi, iB as zi, iC as qi, d8 as Qi, me as Zi, mg as Ji, cw as $i, cv as ao, d0 as eo, iD as so, mV as to, iE as io, lc as oo, iF as ro, Z as no, fh as lo, no as To, iN as Eo, mW as _o, iH as So, iG as go, f4 as po, kJ as Ao, av as Io, iJ as co, cK as uo, aq as Co, a_ as mo, nl as Oo, iQ as Do, nm as Ro, fp as Po, jl as No, g8 as yo, iS as Lo, g1 as fo, kH as Mo, nt as Uo, aZ as ho, aG as Fo, bs as bo, ns as Bo, aK as vo, aE as Go, hn as ko, ht as Vo, mj as Yo, d3 as Ho, cx as Ko, d7 as jo, iU as Wo, jo as wo, cy as xo, iV as Xo, kq as zo, n1 as qo, hr as Qo, N as Zo, jp as Jo, cH as $o, cD as ar, cE as er, cG as sr, f0 as tr, ky as ir, eb as or, fj as rr, eW as nr, gs as lr, eF as Tr, gr as Er, gq as _r, mY as Sr, iW as gr, kW as dr, cB as pr, dB as Ar, dk as Ir, as as cr, hR as ur, hS as Cr, kP as mr, aY as Or, l6 as Dr, ec as Rr, hO as Pr, li as Nr, io as yr, cL as Lr, k3 as fr, hj as Mr, ku as Ur, iX as hr, dw as Fr, j7 as br, df as Br, j6 as vr, iY as Gr, iZ as kr, cN as Vr, i_ as Yr, L as Hr, n6 as Kr, ja as jr, P as Wr, jc as wr, jd as xr, cP as Xr, nb as zr, b8 as qr, dA as Qr, fq as Zr, Q as Jr, kY as $r, jq as an, f3 as en, au as sn, R as tn, n as on, aT as rn, U as nn, K as ln, np as Tn, jr as En, m_ as _n, dJ as Sn, o as gn, aD as dn, bb as pn, fk as An, n4 as In, f8 as cn, n5 as un, nn as Cn, l9 as mn, nf as On, e as Dn, nI as Rn, gR as Pn, aH as Nn, fK as yn, b1 as Ln, aX as fn, l0 as Mn, b7 as Un, jV as hn, dE as Fn, kn as bn, gt as Bn, lj as vn, hP as Gn, js as kn, eU as Vn, M as Yn, g9 as Hn, cR as Kn, jt as jn, ju as Wn, jA as wn, cS as xn, cT as Xn, p as zn, fP as qn, kQ as Qn, a as Zn, jS as Jn, jT as $n, fn as al, cU as el, cV as sl, jC as tl, n0 as il, jU as ol, mh as rl, g2 as nl, hl as ll, cC as Tl, cW as El, aI as _l, a0 as Sl, gu as gl, jZ as dl, gk as pl, j_ as Al, m as Il, j$ as cl, dL as ul, kZ as Cl, eh as ml, l7 as Ol, iR as Dl, mk as Rl, nq as Pl, aR as Nl, ho as yl, ay as Ll, aA as fl, cZ as Ml, kS as Ul, kz as hl, kA as Fl, k0 as bl, k1 as Bl, k4 as vl, bc as Gl, bd as kl, k6 as Vl, k8 as Yl, k9 as Hl, ka as Kl, mC as jl, iT as Wl, kb as wl, mo as xl, kc as Xl, hs as zl, cY as ql, c_ as Ql, mM as Zl, mN as Jl, mO as $l, kd as aT, eG as eT, T as sT, ke as tT, dc as iT, g3 as oT, g4 as rT, nk as nT, aB as lT, b6 as TT, l1 as ET, nc as _T, at as ST, ct as gT, ma as dT, es as pT, kh as AT, ki as IT, cr as cT, mr as uT, kj as CT, dS as mT, md as OT, dW as DT, dU as RT, dT as PT, dQ as NT, dO as yT, ld as LT, lf as fT, le as MT, kX as UT, b2 as hT, jO as FT, dv as bT, W as BT, mc as vT, kk as GT, cz as kT, cA as VT, jM as YT, aO as HT, hN as KT, Y as jT, n7 as WT, gp as wT, gn as xT, dg as XT, kl as zT, hU as qT, go as QT, ni as ZT, c2 as JT, aU as $T, y as aE, lB as eE, bZ as sE, aN as tE, ca as iE, gz as oE, b as rE, gd as nE, ge as lE, c0 as TE, lR as EE, bN as _E, lX as SE, bL as gE, jn as dE, c3 as pE, gS as AE, gU as IE, eR as cE, c as uE, gX as CE, g_ as mE, bO as OE, fd as DE, ev as RE, a8 as PE, fa as NE, f7 as yE, hm as LE, bT as fE, lu as ME, b_ as UE, lC as hE, d as FE, fc as bE, fb as BE, bh as vE, lV as GE, hC as kE, hE as VE, hB as YE, hD as HE, nJ as KE, fe as jE, lm as WE, a7 as wE, a9 as xE, cl as XE, bY as zE, a6 as qE, v as QE, ck as ZE, dF as JE, f5 as $E, bA as a_, lY as e_, mv as s_, hK as t_, gK as i_, ai as o_, mu as r_, j4 as n_, cd as l_, eQ as T_, eu as E_, eP as __, eO as S_, eN as g_, mt as d_, jG as p_, lW as A_, ac as I_, ff as c_, jj as u_, mw as C_, jJ as m_, mm as O_, gY as D_, h1 as R_, h0 as P_, gZ as N_, he as y_, bH as L_, jk as f_, iq as M_, aa as U_, hy as h_, lL as F_, hL as b_, dt as B_, dl as v_, gf as G_, jW as k_, hH as V_, gN as Y_, hZ as H_, eL as K_, hI as j_, g$ as W_, bB as w_, k7 as x_, mK as X_, ab as z_, lF as q_, bU as Q_, b5 as Z_, gH as J_, bJ as $_, ag as aS, lq as eS, ah as sS, ch as tS, l_ as iS, eS as oS, lK as rS, ci as nS, it as lS, gE as TS, gD as ES, cf as _S, fL as SS, iI as gS, lJ as dS, i4 as pS, lI as AS, lp as IS, z as cS, f9 as uS, f6 as CS, lz as mS, gB as OS, lO as DS, gg as RS, hg as PS, gj as NS, ae as yS, jh as LS, gI as fS, lN as MS, aQ as US, j5 as hS, mP as FS, gy as bS, eK as BS, j3 as vS, j2 as GS, mU as kS, mT as VS, mI as YS, jv as HS, bz as KS, bW as jS, du as WS, mH as wS, ad as xS, ce as XS, gW as zS, jI as qS, jw as QS, jx as ZS, jB as JS, jD as $S, jL as ag, jQ as eg, jy as sg, jN as tg, gA as ig, cg as og, gJ as rg, jK as ng, cj as lg, gc as Tg, $ as Eg, mL as _g, mn as Sg, lE as gg, aS as dg, hv as pg, jH as Ag, jE as Ig, eM as cg, gb as ug, gi as Cg, gx as mg, gO as Og, gL as Dg, lQ as Rg, j9 as Pg, bR as Ng, dR as yg, dV as Lg, m6 as fg, a1 as Mg, lP as Ug, lv as hg, af as Fg, gF as bg, gG as Bg, mS as vg, mQ as Gg, lM as kg, q as Vg, fm as Yg, ly as Hg, ir as Kg, F as jg, c1 as Wg, fl as wg, bI as xg, dn as Xg, dm as zg, ln as qg, iu as Qg, ix as Zg, lT as Jg, dG as $g, i as ad, lD as ed, j as sd, bS as td, c9 as id, hJ as od, cI as rd, bC as nd, bD as ld, ls as Td, iP as Ed, iO as _d, jF as Sd, eJ as gd, j8 as dd, a4 as pd, t as Ad, r as Id, bX as cd, cb as ud, gh as Cd, lo as md, bx as Od, a5 as Dd, bQ as Rd, hV as Pd, s as Nd, bV as yd, mR as Ld, bE as fd, gM as Md, i5 as Ud, gV as hd, lU as Fd, lA as bd, bF as Bd, nw as vd, lH as Gd, lS as kd, lG as Vd, a3 as Yd, gC as Hd, mJ as Kd, bg as jd, is as Wd, a2 as wd, c4 as xd, bt as Xd, lZ as zd, bv as qd, f_ as Qd, kF as Zd, gw as Jd, bw as $d, lr as ap, gv as ep, cc as sp, w as tp, dI as ip, m7 as op, hx as rp, hw as np, m8 as lp, dH as Tp, dP as Ep, ew as _p, bP as Sp, u as gp, e1 as dp, e3 as pp, fG as Ap, cm as Ip, b$ as cp, l$ as up, bG as Cp, m0 as mp, m1 as Op, cn as Dp, mf as Rp, lx as Pp, c5 as Np, m2 as yp, co as Lp, bM as fp, c7 as Mp, mi as Up, I as hp, m3 as Fp, jb as bp, m4 as Bp, H as vp, cq as Gp, cX as kp, c6 as Vp, bK as Yp, cs as Hp, m5 as Kp, mp as jp, by as Wp, fR as wp, kg as xp, cu as Xp, mq as zp, m9 as qp, cp as Qp, nM as Zp, nK as Jp, ny as $p, nH as aA, nO as eA, nE as sA, nL as tA, nv as iA, nu as oA, nx as rA, nD as nA, nB as lA, nA as TA, nG as EA, nz as _A, b9 as SA, ba as gA, nC as dA, nF as pA, nN as AA, lt as IA, ms as cA, lw as uA } from "./@code-editor-BdtT_76p.js";
1
+ import { ng as s, aL as t, ek as i, ll as o, eY as r, kV as n, kK as l, fx as T, aW as E, ks as _, aF as S, lh as g, jf as d, kG as p, km as A, fr as I, fs as c, ft as u, dj as C, iK as m, fu as O, A as D, dh as R, di as P, n8 as N, fv as y, fw as L, fo as f, mx as M, kI as U, jg as h, ji as F, jX as b, fy as B, fz as v, fA as G, ml as k, mZ as V, cM as Y, d4 as H, d5 as K, iA as j, fB as W, fY as w, k_ as x, e7 as X, ef as z, ea as q, ei as Q, e4 as Z, eg as J, ej as $, e9 as aa, e8 as ea, et as sa, ee as ta, e6 as ia, fI as oa, fM as ra, fC as na, fD as la, h8 as Ta, kf as Ea, B as _a, f as Sa, g as ga, eI as da, dX as pa, ex as Aa, d$ as Ia, e0 as ca, dZ as ua, ez as Ca, ey as ma, eE as Oa, dY as Da, eH as Ra, d_ as Pa, eA as Na, eC as ya, eB as La, e2 as fa, aC as Ma, eD as Ua, fE as ha, fF as Fa, fO as ba, fJ as Ba, fH as va, fQ as Ga, fU as ka, fT as Va, fS as Ya, fV as Ha, fW as Ka, jz as ja, fZ as Wa, db as wa, da as xa, d9 as Xa, n3 as za, d1 as qa, kR as Qa, c$ as Za, X as Ja, n2 as $a, nj as ae, fN as ee, mE as se, mA as te, eq as ie, er as oe, mF as re, mG as ne, kM as le, kO as Te, kN as Ee, ne as _e, kT as Se, dp as ge, gT as de, gQ as pe, l5 as Ae, e_ as Ie, ed as ce, lk as ue, h7 as Ce, C as me, J as Oe, fX as De, g5 as Re, cF as Pe, h as Ne, fg as ye, eX as Le, fi as fe, h2 as Me, h3 as Ue, h4 as he, h5 as Fe, je as be, dx as Be, kL as ve, _ as Ge, O as ke, bu as Ve, h6 as Ye, dz as He, gP as Ke, mB as je, dC as We, nd as we, h9 as xe, ha as Xe, hd as ze, cO as qe, hf as Qe, x as Ze, hh as Je, hi as $e, cJ as as, hq as es, hp as ss, b0 as ts, kr as is, l3 as os, aJ as rs, a$ as ns, ap as ls, kU as Ts, j1 as Es, i$ as _s, j0 as Ss, e5 as gs, mb as ds, l2 as ps, kt as As, aw as Is, hu as cs, el as us, em as Cs, e$ as ms, hF as Os, kC as Ds, hT as Rs, lg as Ps, kE as Ns, hM as ys, aM as Ls, k5 as fs, k$ as Ms, eT as Us, ar as hs, am as Fs, ao as bs, hX as Bs, al as vs, an as Gs, eZ as ks, dr as Vs, S as Ys, hk as Hs, D as Ks, m$ as js, bf as Ws, l8 as ws, hb as xs, na as Xs, dd as zs, hA as qs, hz as Qs, hG as Zs, f$ as Js, g7 as $s, g6 as at, d2 as et, nr as st, be as tt, kv as it, jY as ot, g0 as rt, kw as nt, cQ as lt, hW as Tt, k as Et, iL as _t, bi as St, bj as gt, bk as dt, hY as pt, mz as At, my as It, bl as ct, bn as ut, bm as Ct, bo as mt, c8 as Ot, dy as Dt, h_ as Rt, h$ as Pt, kB as Nt, la as yt, az as Lt, ax as ft, l4 as Mt, aV as Ut, kp as ht, kD as Ft, i1 as bt, i0 as Bt, nh as vt, mD as Gt, mX as kt, i2 as Vt, kx as Yt, i3 as Ht, E as Kt, l as jt, i6 as Wt, hQ as wt, aj as xt, aP as Xt, i8 as zt, i7 as qt, gm as Qt, dK as Zt, V as Jt, i9 as $t, ia as ai, de as ei, jP as si, d6 as ti, k2 as ii, ib as oi, ic as ri, hc as ni, eV as li, dq as Ti, ds as Ei, f2 as _i, f1 as Si, br as gi, bp as di, bq as pi, id as Ai, ig as Ii, ih as ci, ie as ui, ii as Ci, ij as mi, dD as Oi, ga as Di, ik as Ri, n9 as Pi, il as Ni, b4 as yi, im as Li, G as fi, jm as Mi, jR as Ui, ip as hi, gl as Fi, ak as bi, iM as Bi, ko as vi, eo as Gi, en as ki, ep as Vi, lb as Yi, dM as Hi, dN as Ki, b3 as ji, iv as Wi, iw as wi, iy as xi, iz as Xi, iB as zi, iC as qi, d8 as Qi, me as Zi, mg as Ji, cw as $i, cv as ao, d0 as eo, iD as so, mV as to, iE as io, lc as oo, iF as ro, Z as no, fh as lo, no as To, iN as Eo, mW as _o, iH as So, iG as go, f4 as po, kJ as Ao, av as Io, iJ as co, cK as uo, aq as Co, a_ as mo, nl as Oo, iQ as Do, nm as Ro, fp as Po, jl as No, g8 as yo, iS as Lo, g1 as fo, kH as Mo, nt as Uo, aZ as ho, aG as Fo, bs as bo, ns as Bo, aK as vo, aE as Go, hn as ko, ht as Vo, mj as Yo, d3 as Ho, cx as Ko, d7 as jo, iU as Wo, jo as wo, cy as xo, iV as Xo, kq as zo, n1 as qo, hr as Qo, N as Zo, jp as Jo, cH as $o, cD as ar, cE as er, cG as sr, f0 as tr, ky as ir, eb as or, fj as rr, eW as nr, gs as lr, eF as Tr, gr as Er, gq as _r, mY as Sr, iW as gr, kW as dr, cB as pr, dB as Ar, dk as Ir, as as cr, hR as ur, hS as Cr, kP as mr, aY as Or, l6 as Dr, ec as Rr, hO as Pr, li as Nr, io as yr, cL as Lr, k3 as fr, hj as Mr, ku as Ur, iX as hr, dw as Fr, j7 as br, df as Br, j6 as vr, iY as Gr, iZ as kr, cN as Vr, i_ as Yr, L as Hr, n6 as Kr, ja as jr, P as Wr, jc as wr, jd as xr, cP as Xr, nb as zr, b8 as qr, dA as Qr, fq as Zr, Q as Jr, kY as $r, jq as an, f3 as en, au as sn, R as tn, n as on, aT as rn, U as nn, K as ln, np as Tn, jr as En, m_ as _n, dJ as Sn, o as gn, aD as dn, bb as pn, fk as An, n4 as In, f8 as cn, n5 as un, nn as Cn, l9 as mn, nf as On, e as Dn, nI as Rn, gR as Pn, aH as Nn, fK as yn, b1 as Ln, aX as fn, l0 as Mn, b7 as Un, jV as hn, dE as Fn, kn as bn, gt as Bn, lj as vn, hP as Gn, js as kn, eU as Vn, M as Yn, g9 as Hn, cR as Kn, jt as jn, ju as Wn, jA as wn, cS as xn, cT as Xn, p as zn, fP as qn, kQ as Qn, a as Zn, jS as Jn, jT as $n, fn as al, cU as el, cV as sl, jC as tl, n0 as il, jU as ol, mh as rl, g2 as nl, hl as ll, cC as Tl, cW as El, aI as _l, a0 as Sl, gu as gl, jZ as dl, gk as pl, j_ as Al, m as Il, j$ as cl, dL as ul, kZ as Cl, eh as ml, l7 as Ol, iR as Dl, mk as Rl, nq as Pl, aR as Nl, ho as yl, ay as Ll, aA as fl, cZ as Ml, kS as Ul, kz as hl, kA as Fl, k0 as bl, k1 as Bl, k4 as vl, bc as Gl, bd as kl, k6 as Vl, k8 as Yl, k9 as Hl, ka as Kl, mC as jl, iT as Wl, kb as wl, mo as xl, kc as Xl, hs as zl, cY as ql, c_ as Ql, mM as Zl, mN as Jl, mO as $l, kd as aT, eG as eT, T as sT, ke as tT, dc as iT, g3 as oT, g4 as rT, nk as nT, aB as lT, b6 as TT, l1 as ET, nc as _T, at as ST, ct as gT, ma as dT, es as pT, kh as AT, ki as IT, cr as cT, mr as uT, kj as CT, dS as mT, md as OT, dW as DT, dU as RT, dT as PT, dQ as NT, dO as yT, ld as LT, lf as fT, le as MT, kX as UT, b2 as hT, jO as FT, dv as bT, W as BT, mc as vT, kk as GT, cz as kT, cA as VT, jM as YT, aO as HT, hN as KT, Y as jT, n7 as WT, gp as wT, gn as xT, dg as XT, kl as zT, hU as qT, go as QT, ni as ZT, c2 as JT, aU as $T, y as aE, lB as eE, bZ as sE, aN as tE, ca as iE, gz as oE, b as rE, gd as nE, ge as lE, c0 as TE, lR as EE, bN as _E, lX as SE, bL as gE, jn as dE, c3 as pE, gS as AE, gU as IE, eR as cE, c as uE, gX as CE, g_ as mE, bO as OE, fd as DE, ev as RE, a8 as PE, fa as NE, f7 as yE, hm as LE, bT as fE, lu as ME, b_ as UE, lC as hE, d as FE, fc as bE, fb as BE, bh as vE, lV as GE, hC as kE, hE as VE, hB as YE, hD as HE, nJ as KE, fe as jE, lm as WE, a7 as wE, a9 as xE, cl as XE, bY as zE, a6 as qE, v as QE, ck as ZE, dF as JE, f5 as $E, bA as a_, lY as e_, mv as s_, hK as t_, gK as i_, ai as o_, mu as r_, j4 as n_, cd as l_, eQ as T_, eu as E_, eP as __, eO as S_, eN as g_, mt as d_, jG as p_, lW as A_, ac as I_, ff as c_, jj as u_, mw as C_, jJ as m_, mm as O_, gY as D_, h1 as R_, h0 as P_, gZ as N_, he as y_, bH as L_, jk as f_, iq as M_, aa as U_, hy as h_, lL as F_, hL as b_, dt as B_, dl as v_, gf as G_, jW as k_, hH as V_, gN as Y_, hZ as H_, eL as K_, hI as j_, g$ as W_, bB as w_, k7 as x_, mK as X_, ab as z_, lF as q_, bU as Q_, b5 as Z_, gH as J_, bJ as $_, ag as aS, lq as eS, ah as sS, ch as tS, l_ as iS, eS as oS, lK as rS, ci as nS, it as lS, gE as TS, gD as ES, cf as _S, fL as SS, iI as gS, lJ as dS, i4 as pS, lI as AS, lp as IS, z as cS, f9 as uS, f6 as CS, lz as mS, gB as OS, lO as DS, gg as RS, hg as PS, gj as NS, ae as yS, jh as LS, gI as fS, lN as MS, aQ as US, j5 as hS, mP as FS, gy as bS, eK as BS, j3 as vS, j2 as GS, mU as kS, mT as VS, mI as YS, jv as HS, bz as KS, bW as jS, du as WS, mH as wS, ad as xS, ce as XS, gW as zS, jI as qS, jw as QS, jx as ZS, jB as JS, jD as $S, jL as ag, jQ as eg, jy as sg, jN as tg, gA as ig, cg as og, gJ as rg, jK as ng, cj as lg, gc as Tg, $ as Eg, mL as _g, mn as Sg, lE as gg, aS as dg, hv as pg, jH as Ag, jE as Ig, eM as cg, gb as ug, gi as Cg, gx as mg, gO as Og, gL as Dg, lQ as Rg, j9 as Pg, bR as Ng, dR as yg, dV as Lg, m6 as fg, a1 as Mg, lP as Ug, lv as hg, af as Fg, gF as bg, gG as Bg, mS as vg, mQ as Gg, lM as kg, q as Vg, fm as Yg, ly as Hg, ir as Kg, F as jg, c1 as Wg, fl as wg, bI as xg, dn as Xg, dm as zg, ln as qg, iu as Qg, ix as Zg, lT as Jg, dG as $g, i as ad, lD as ed, j as sd, bS as td, c9 as id, hJ as od, cI as rd, bC as nd, bD as ld, ls as Td, iP as Ed, iO as _d, jF as Sd, eJ as gd, j8 as dd, a4 as pd, t as Ad, r as Id, bX as cd, cb as ud, gh as Cd, lo as md, bx as Od, a5 as Dd, bQ as Rd, hV as Pd, s as Nd, bV as yd, mR as Ld, bE as fd, gM as Md, i5 as Ud, gV as hd, lU as Fd, lA as bd, bF as Bd, nw as vd, lH as Gd, lS as kd, lG as Vd, a3 as Yd, gC as Hd, mJ as Kd, bg as jd, is as Wd, a2 as wd, c4 as xd, bt as Xd, lZ as zd, bv as qd, f_ as Qd, kF as Zd, gw as Jd, bw as $d, lr as ap, gv as ep, cc as sp, w as tp, dI as ip, m7 as op, hx as rp, hw as np, m8 as lp, dH as Tp, dP as Ep, ew as _p, bP as Sp, u as gp, e1 as dp, e3 as pp, fG as Ap, cm as Ip, b$ as cp, l$ as up, bG as Cp, m0 as mp, m1 as Op, cn as Dp, mf as Rp, lx as Pp, c5 as Np, m2 as yp, co as Lp, bM as fp, c7 as Mp, mi as Up, I as hp, m3 as Fp, jb as bp, m4 as Bp, H as vp, cq as Gp, cX as kp, c6 as Vp, bK as Yp, cs as Hp, m5 as Kp, mp as jp, by as Wp, fR as wp, kg as xp, cu as Xp, mq as zp, m9 as qp, cp as Qp, nM as Zp, nK as Jp, ny as $p, nH as aA, nO as eA, nE as sA, nL as tA, nv as iA, nu as oA, nx as rA, nD as nA, nB as lA, nA as TA, nG as EA, nz as _A, b9 as SA, ba as gA, nC as dA, nF as pA, nN as AA, lt as IA, ms as cA, lw as uA } from "./@code-editor-BFysVFCu.js";
2
2
  import { cb as mA } from "./@vendor-3ORIJA0h.js";
3
- import { H as DA, R as RA, c as PA, g as NA, a as yA, b as LA } from "./@common-rjsf-H6egnztj.js";
3
+ import { H as DA, R as RA, c as PA, g as NA, a as yA, b as LA } from "./@common-rjsf-klWTZGPv.js";
4
4
  import { A as MA, a as UA, m as hA, e as FA, c as bA, u as BA } from "./@framer-motion-DZveCoIL.js";
5
5
  export {
6
6
  s as ACCESS_TYPE_MAP,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtron-labs/devtron-fe-common-lib",
3
- "version": "1.18.0-alpha-7",
3
+ "version": "1.18.0-beta-0",
4
4
  "description": "Supporting common component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",