@nice2dev/ui 1.0.20 → 1.0.21

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 (70) hide show
  1. package/CHANGELOG.md +105 -0
  2. package/dist/NiceErrorBoundary-B9UWIYPz.js +770 -0
  3. package/dist/NiceErrorBoundary-CFJh1FyM.js +770 -0
  4. package/dist/NiceErrorBoundary-XNceAa-3.cjs +1 -0
  5. package/dist/NiceErrorBoundary-uT48n_F7.cjs +1 -0
  6. package/dist/NiceForm-BE8vt5k6.js +5383 -0
  7. package/dist/NiceForm-BzKlOWJa.js +5383 -0
  8. package/dist/NiceForm-DYPj-XoP.cjs +382 -0
  9. package/dist/NiceForm-DZ8jwtA8.cjs +382 -0
  10. package/dist/NiceModal-BOkmGqPj.cjs +1 -0
  11. package/dist/NiceModal-C-yKNnig.cjs +1 -0
  12. package/dist/NiceModal-DSabJ81z.js +95 -0
  13. package/dist/NiceModal-DjN1yXgw.js +95 -0
  14. package/dist/NiceModuleLifecyclePanel-95lS8pXO.cjs +1 -0
  15. package/dist/NiceModuleLifecyclePanel-C4jlm9tl.cjs +1 -0
  16. package/dist/NiceModuleLifecyclePanel-L5FNYzF9.js +6781 -0
  17. package/dist/NiceModuleLifecyclePanel-LdYOMLA6.js +6777 -0
  18. package/dist/NiceModuleLifecyclePanel.css +1 -1
  19. package/dist/NicePagination-BT8UWXYG.js +171 -0
  20. package/dist/NicePagination-CJqksuAl.cjs +1 -0
  21. package/dist/NicePagination-CiWxbXT9.cjs +1 -0
  22. package/dist/NicePagination-d6vm1ce3.js +171 -0
  23. package/dist/NicePinCodeInput-BY_tgKaU.cjs +419 -0
  24. package/dist/NicePinCodeInput-DDK6qqFW.js +12240 -0
  25. package/dist/NicePinCodeInput-DdXTdocN.js +12240 -0
  26. package/dist/NicePinCodeInput-qAO9tRhm.cjs +419 -0
  27. package/dist/NiceSavedQueryPanel-CpcjQZDl.cjs +596 -0
  28. package/dist/NiceSavedQueryPanel-Dryck7pv.js +6584 -0
  29. package/dist/NiceSavedQueryPanel-DtgcsEls.js +6584 -0
  30. package/dist/NiceSavedQueryPanel-TUoWkvpW.cjs +596 -0
  31. package/dist/NiceTabs-D91-vW_P.js +1657 -0
  32. package/dist/NiceTabs-DirTIQjD.cjs +1 -0
  33. package/dist/NiceTabs-dwNCzbJ2.cjs +1 -0
  34. package/dist/NiceTabs-nQEYYbsV.js +1657 -0
  35. package/dist/NiceWindow-C677O__r.js +1418 -0
  36. package/dist/NiceWindow-CmgJGE4d.js +1418 -0
  37. package/dist/NiceWindow-D_h01zyu.cjs +1 -0
  38. package/dist/NiceWindow-fcTJOlYf.cjs +1 -0
  39. package/dist/charts-8Bqzj1TE.js +4657 -0
  40. package/dist/charts-CFn-7PzC.cjs +761 -0
  41. package/dist/charts-CLbJ4Zjq.js +4657 -0
  42. package/dist/charts-CUMpSAQe.cjs +761 -0
  43. package/dist/charts.cjs +1 -1
  44. package/dist/charts.mjs +1 -1
  45. package/dist/core-BFu5opn6.js +23131 -0
  46. package/dist/core-Bit5kLWQ.cjs +96 -0
  47. package/dist/core-D0ElqRZA.cjs +96 -0
  48. package/dist/core-DICON6Z7.js +23129 -0
  49. package/dist/data.cjs +1 -1
  50. package/dist/data.mjs +1 -1
  51. package/dist/editors.cjs +1 -1
  52. package/dist/editors.mjs +3 -3
  53. package/dist/feedback.cjs +1 -1
  54. package/dist/feedback.mjs +2 -2
  55. package/dist/index-B-WxtREy.js +65040 -0
  56. package/dist/index-ByDRtfrm.js +65050 -0
  57. package/dist/index-DnfPyuXA.cjs +5194 -0
  58. package/dist/index-DxO61OUF.cjs +5194 -0
  59. package/dist/index.cjs +1 -1
  60. package/dist/index.css +1 -1
  61. package/dist/index.d.ts +8 -0
  62. package/dist/index.mjs +48 -48
  63. package/dist/lazy.cjs +1 -1
  64. package/dist/lazy.mjs +3 -3
  65. package/dist/navigation.cjs +1 -1
  66. package/dist/navigation.mjs +22 -22
  67. package/dist/overlays.cjs +1 -1
  68. package/dist/overlays.mjs +2 -2
  69. package/dist/style.css +2 -2
  70. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -15881,6 +15881,14 @@ export declare interface NiceNavShellProps {
15881
15881
  homeUserName?: string;
15882
15882
  /** Extra props forwarded to the default `NiceNavShellHome` dashboard. Ignored when `homeContent` is set. */
15883
15883
  homeDashboardProps?: Partial<NiceNavShellHomeProps>;
15884
+ /** Render a sticky header above the route content. Default `false`. */
15885
+ showStickyHeader?: boolean;
15886
+ /** Content rendered in the sticky header slot — accepts any React node (NiceMenu, buttons, dashboards). */
15887
+ stickyHeaderContent?: ReactNode;
15888
+ /** Render a sticky footer below the route content. Default `false`. */
15889
+ showStickyFooter?: boolean;
15890
+ /** Content rendered in the sticky footer slot — accepts any React node. */
15891
+ stickyFooterContent?: ReactNode;
15884
15892
  /** Show the built-in `?` button in the embedded top-nav and wire the default help flow. Default `false`. */
15885
15893
  showHelpButton?: boolean;
15886
15894
  /** Override default help steps. When omitted, NavShell auto-generates steps from visible elements. */
package/dist/index.mjs CHANGED
@@ -1,16 +1,16 @@
1
- import { A as s, C as i, a as c, b as t, c as r, D as o, d as n, E as N, F as d, e as l, f as u, g as m, H as h, L as p, M as S, N as C, h as b, i as g, j as T, k as P, l as D, m as A, n as f, o as E, p as R, q as y, r as I, s as k, t as M, u as v, v as L, w, x as F, y as B, z as V, B as O, G as x, I as _, J as G, K as H, O as U, P as W, Q as z, R as K, S as Q, T as Y, U as q, V as j, W as X, X as J, Y as Z, Z as $, _ as ee, $ as ae, a0 as se, a1 as ie, a2 as ce, a3 as te, a4 as re, a5 as oe, a6 as ne, a7 as Ne, a8 as de, a9 as le, aa as ue, ab as me, ac as he, ad as pe, ae as Se, af as Ce, ag as be, ah as ge, ai as Te, aj as Pe, ak as De, al as Ae, am as fe, an as Ee, ao as Re, ap as ye, aq as Ie, ar as ke, as as Me, at as ve, au as Le, av as we, aw as Fe, ax as Be, ay as Ve, az as Oe, aA as xe, aB as _e, aC as Ge, aD as He, aE as Ue, aF as We, aG as ze, aH as Ke, aI as Qe, aJ as Ye, aK as qe, aL as je, aM as Xe, aN as Je, aO as Ze, aP as $e, aQ as ea, aR as aa, aS as sa, aT as ia, aU as ca, aV as ta, aW as ra, aX as oa, aY as na, aZ as Na, a_ as da, a$ as la, b0 as ua, b1 as ma, b2 as ha, b3 as pa, b4 as Sa, b5 as Ca, b6 as ba, b7 as ga, b8 as Ta, b9 as Pa, ba as Da, bb as Aa, bc as fa, bd as Ea, be as Ra, bf as ya, bg as Ia, bh as ka, bi as Ma, bj as va, bk as La, bl as wa, bm as Fa, bn as Ba, bo as Va, bp as Oa, bq as xa, br as _a, bs as Ga, bt as Ha, bu as Ua, bv as Wa, bw as za, bx as Ka, by as Qa, bz as Ya, bA as qa, bB as ja, bC as Xa, bD as Ja, bE as Za, bF as $a, bG as es, bH as as, bI as ss, bJ as is, bK as cs, bL as ts, bM as rs, bN as os, bO as ns, bP as Ns, bQ as ds, bR as ls, bS as us, bT as ms, bU as hs, bV as ps, bW as Ss, bX as Cs, bY as bs, bZ as gs, b_ as Ts, b$ as Ps, c0 as Ds, c1 as As, c2 as fs, c3 as Es, c4 as Rs, c5 as ys, c6 as Is, c7 as ks, c8 as Ms, c9 as vs, ca as Ls, cb as ws, cc as Fs, cd as Bs, ce as Vs, cf as Os, cg as xs, ch as _s, ci as Gs, cj as Hs, ck as Us, cl as Ws, cm as zs, cn as Ks, co as Qs, cp as Ys, cq as qs, cr as js, cs as Xs, ct as Js, cu as Zs, cv as $s, cw as ei, cx as ai, cy as si, cz as ii, aK as ci, c5 as ti, cA as ri, cB as oi, cC as ni, cD as Ni, cE as di, cF as li, cG as ui, cH as mi, cI as hi, cJ as pi, cK as Si, cL as Ci, cM as bi, cN as gi, cO as Ti, cP as Pi, cQ as Di, cR as Ai, cS as fi, cT as Ei, cU as Ri, cV as yi, cW as Ii, cX as ki, cY as Mi, cZ as vi, c_ as Li, c$ as wi, d0 as Fi, d1 as Bi, d2 as Vi, d3 as Oi, d4 as xi, d5 as _i, d6 as Gi, d7 as Hi, d8 as Ui, d9 as Wi, da as zi, db as Ki, dc as Qi, dd as Yi, de as qi, df as ji, dg as Xi, dh as Ji, di as Zi, dj as $i, dk as ec, dl as ac, dm as sc, dn as ic, dp as cc, dq as tc, dr as rc, ds as oc, dt as nc, du as Nc, dv as dc, dw as lc, dx as uc, dy as mc, dz as hc, dA as pc, dB as Sc, dC as Cc, dD as bc, dE as gc, dF as Tc, dG as Pc, dH as Dc, dI as Ac, dJ as fc, dK as Ec, dL as Rc, dM as yc, dN as Ic, dO as kc, dP as Mc, dQ as vc, dR as Lc, dS as wc, dT as Fc, dU as Bc, dV as Vc, dW as Oc, dX as xc, dY as _c, dZ as Gc, d_ as Hc, d$ as Uc, e0 as Wc, e1 as zc, e2 as Kc, e3 as Qc, e4 as Yc, e5 as qc, e6 as jc, e7 as Xc, e8 as Jc, e9 as Zc, ea as $c, eb as et, ec as at, ed as st, ee as it, ef as ct, eg as tt, eh as rt, ei as ot, ej as nt, ek as Nt, el as dt, em as lt, en as ut, eo as mt, ep as ht, eq as pt, er as St, es as Ct, et as bt, eu as gt, ev as Tt, ew as Pt, ex as Dt, ey as At, ez as ft, eA as Et, eB as Rt, eC as yt, eD as It, eE as kt, eF as Mt, eG as vt, eH as Lt, eI as wt, eJ as Ft, eK as Bt, eL as Vt, eM as Ot } from "./index-xVJiF843.js";
2
- import { L as _t, N as Gt, m as Ht, O as Ut, Q as Wt, U as zt, W as Kt, Y as Qt, _ as Yt, a0 as qt, a1 as jt, a2 as Xt, a3 as Jt, T as Zt, z as $t, I as er, a4 as ar, a5 as sr, a6 as ir, a7 as cr, a8 as tr, a9 as rr, x as or, aa as nr, ab as Nr, ac as dr, ad as lr, ae as ur, af as mr, ag as hr, ah as pr, G as Sr, f as Cr, ai as br, aj as gr, K as Tr, ak as Pr, al as Dr, am as Ar, an as fr, ao as Er, ap as Rr, aq as yr, ar as Ir, as as kr, at as Mr, l as vr, B as Lr, au as wr, av as Fr, aw as Br, ax as Vr, ay as Or, az as xr, aA as _r, aB as Gr, aC as Hr, aD as Ur, aE as Wr, aF as zr, aG as Kr, aH as Qr, aI as Yr, aJ as qr, aK as jr, aL as Xr, t as Jr, aM as Zr, aN as $r, aO as eo, aP as ao, aQ as so, aR as io, aS as co, aT as to, aU as ro, aV as oo, aW as no, aX as No, aY as lo, aZ as uo, a_ as mo, a$ as ho, b0 as po, b1 as So, b2 as Co, b3 as bo, b4 as go, b5 as To, b6 as Po, b7 as Do, b8 as Ao, b9 as fo, ba as Eo, bb as Ro, bc as yo, bd as Io, be as ko, bf as Mo, bg as vo, bh as Lo, bi as wo, bj as Fo, bk as Bo, bl as Vo, bm as Oo, bn as xo, bo as _o, bp as Go, bq as Ho, br as Uo, bs as Wo, bt as zo, bu as Ko, bv as Qo, bw as Yo, bx as qo, by as jo, bz as Xo, bA as Jo, bB as Zo, bC as $o, bD as en, bE as an, bF as sn, bG as cn, bH as tn, bI as rn, bJ as on, bK as nn, bL as Nn, bM as dn, bN as ln, bO as un, bP as mn, bQ as hn, bR as pn, bS as Sn, bT as Cn, bU as bn, p as gn, bV as Tn, bW as Pn, bX as Dn, bY as An, bZ as fn, b_ as En, b$ as Rn, c0 as yn, c1 as In, c2 as kn, c3 as Mn, s as vn, c4 as Ln, c5 as wn, c6 as Fn, c7 as Bn, c8 as Vn, c9 as On, J as xn, ca as _n, cb as Gn, w as Hn, cc as Un, cd as Wn, ce as zn, cf as Kn, cg as Qn, ch as Yn, ci as qn, cj as jn, ck as Xn, cl as Jn, cm as Zn, cn as $n, co as eN, cp as aN, cq as sN, cr as iN, cs as cN, ct as tN, cu as rN, cv as oN, cw as nN, cx as NN, cy as dN, cz as lN, cA as uN, cB as mN, cC as hN, cD as pN, cE as SN, cF as CN, cG as bN, cH as gN, cI as TN, cJ as PN, cK as DN, cL as AN, cM as fN, cN as EN, cO as RN, cP as yN, cQ as IN, cR as kN, cS as MN, cT as vN, cU as LN, cV as wN, cW as FN, cX as BN, cY as VN, cZ as ON, c_ as xN, c$ as _N, d0 as GN, d1 as HN, d2 as UN, d3 as WN, d4 as zN, d5 as KN, d6 as QN, d7 as YN, d8 as qN, d9 as jN, da as XN, db as JN, dc as ZN, dd as $N, de as ed, df as ad, dg as sd, dh as id, di as cd, dj as td, dk as rd, dl as od, dm as nd, dn as Nd, dp as dd, dq as ld, dr as ud, ds as md, dt as hd, du as pd, dv as Sd, dw as Cd, dx as bd, dy as gd, dz as Td, dA as Pd, dB as Dd, dC as Ad, dD as fd, dE as Ed, dF as Rd, dG as yd, dH as Id, dI as kd, V as Md, dJ as vd, dK as Ld, dL as wd, dM as Fd, dN as Bd, dO as Vd, dP as Od, dQ as xd, dR as _d, dS as Gd, X as Hd, dT as Ud, dU as Wd, dV as zd, dW as Kd, dX as Qd, a as Yd, b as qd, e as jd, dY as Xd, S as Jd, v as Zd, dZ as $d, d_ as el, H as al, d$ as sl, e0 as il, h as cl, e1 as tl, e2 as rl, e3 as ol, e4 as nl, e5 as Nl, e6 as dl, e7 as ll, P as ul, e8 as ml, e9 as hl, ea as pl, eb as Sl, ec as Cl, ed as bl, ee as gl, ef as Tl, eg as Pl, eh as Dl, ei as Al, ej as fl, R as El, ek as Rl, i as yl, Z as Il, el as kl, d as Ml, F as vl, em as Ll, en as wl, eo as Fl, o as Bl, ep as Vl, q as Ol, n as xl, eq as _l, $ as Gl, er as Hl, c as Ul, r as Wl, es as zl, et as Kl, eu as Ql, ev as Yl, ew as ql, ex as jl, ey as Xl, ez as Jl, eA as Zl, eB as $l, eC as eu, eD as au, eE as su, eF as iu, eG as cu, eH as tu, eI as ru, eJ as ou, eK as nu, eL as Nu, eM as du, u as lu, k as uu, g as mu, eN as hu, D as pu, eO as Su, eP as Cu, eQ as bu, j as gu, eR as Tu, eS as Pu, eT as Du, eU as Au, eV as fu, eW as Eu, eX as Ru, eY as yu, eZ as Iu, e_ as ku, e$ as Mu, f0 as vu, f1 as Lu, f2 as wu, f3 as Fu, f4 as Bu } from "./core-XsWxyBHD.js";
3
- import { g as Ou, N as xu, a as _u, b as Gu, c as Hu, f as Uu, d as Wu, e as zu } from "./NiceTabs-CJ8G2t0-.js";
4
- import { C as Qu, F as Yu, o as qu, p as ju, N as Xu, a as Ju, b as Zu, c as $u, q as em, r as am, d as sm, e as im, f as cm, g as tm, h as rm, i as om, j as nm, k as Nm, l as dm, m as lm, n as um, T as mm } from "./NiceForm-D_XZxq3a.js";
5
- import { J as pm, K as Sm, L as Cm, N as bm, a as gm, b as Tm, c as Pm, M as Dm, d as Am, e as fm, f as Em, g as Rm, h as ym, i as Im, j as km, k as Mm, l as vm, m as Lm, n as wm, o as Fm, p as Bm, q as Vm, r as Om, s as xm, t as _m, u as Gm, v as Hm, w as Um, x as Wm, y as zm, z as Km, A as Qm, B as Ym, C as qm, D as jm, E as Xm, O as Jm, F as Zm, G as $m, H as eh, I as ah, P as sh, Q as ih, R as ch, S as th, T as rh, U as oh, V as nh, W as Nh, X as dh, Y as lh, Z as uh, _ as mh, $ as hh, a0 as ph, a1 as Sh } from "./NicePinCodeInput-CpPtHZsK.js";
6
- import { N as bh, f as gh, g as Th, h as Ph, i as Dh, j as Ah, k as fh, l as Eh, m as Rh, n as yh, o as Ih, p as kh, q as Mh, r as vh, s as Lh, u as wh, v as Fh, w as Bh, y as Vh, A as Oh, B as xh, C as _h, E as Gh, F as Hh, G as Uh, I as Wh, J as zh, K as Kh, R as Qh, L as Yh, M as qh, O as jh, T as Xh, P as Jh, Q as Zh, V as $h, W as ep, X as ap, U as sp } from "./NiceModuleLifecyclePanel-D4xWUswk.js";
7
- import { N as cp, a as tp, b as rp, c as op, d as np, e as Np, f as dp, g as lp, h as up, i as mp, k as hp, u as pp } from "./NiceErrorBoundary-eTwBEuSH.js";
8
- import { N as Cp } from "./NiceModal-BRih_XEH.js";
9
- import { N as gp } from "./NicePagination-DnnypBiE.js";
10
- import { N as Pp, a as Dp, b as Ap, c as fp, d as Ep, e as Rp, f as yp, g as Ip, h as kp, i as Mp, j as vp, k as Lp, l as wp, m as Fp, n as Bp, o as Vp } from "./NiceSavedQueryPanel-DuonbEem.js";
11
- import { C as xp, j as _p, h as Gp, o as Hp, p as Up, l as Wp, q as zp, r as Kp, g as Qp, e as Yp, k as qp, s as jp, t as Xp, b as Jp, n as Zp, m as $p, a as eS, u as aS, f as sS, v as iS, i as cS, c as tS, d as rS, w as oS, N as nS, x as NS, y as dS, z as lS } from "./charts-P6qura0j.js";
12
- import { N as mS, a as hS, b as pS, c as SS, d as CS, e as bS, f as gS, g as TS, h as PS, i as DS, j as AS, k as fS, l as ES, n as RS, o as yS, u as IS, p as kS, m as MS } from "./NiceWindow-CysIgnn3.js";
13
- import { N as LS, a as wS, b as FS, c as BS, d as VS, e as OS, f as xS, g as _S, h as GS } from "./devops-BL39OCVh.js";
1
+ import { A as s, C as i, a as c, b as t, c as r, D as o, d as n, E as N, F as d, e as l, f as u, g as m, H as h, L as p, M as S, N as C, h as b, i as g, j as T, k as P, l as D, m as A, n as f, o as E, p as R, q as y, r as I, s as k, t as M, u as v, v as L, w, x as F, y as V, z as B, B as O, G as x, I as _, J as G, K as H, O as U, P as W, Q as z, R as K, S as Q, T as Y, U as q, V as j, W as X, X as J, Y as Z, Z as $, _ as ee, $ as ae, a0 as se, a1 as ie, a2 as ce, a3 as te, a4 as re, a5 as oe, a6 as ne, a7 as Ne, a8 as de, a9 as le, aa as ue, ab as me, ac as he, ad as pe, ae as Se, af as Ce, ag as be, ah as ge, ai as Te, aj as Pe, ak as De, al as Ae, am as fe, an as Ee, ao as Re, ap as ye, aq as Ie, ar as ke, as as Me, at as ve, au as Le, av as we, aw as Fe, ax as Ve, ay as Be, az as Oe, aA as xe, aB as _e, aC as Ge, aD as He, aE as Ue, aF as We, aG as ze, aH as Ke, aI as Qe, aJ as Ye, aK as qe, aL as je, aM as Xe, aN as Je, aO as Ze, aP as $e, aQ as ea, aR as aa, aS as sa, aT as ia, aU as ca, aV as ta, aW as ra, aX as oa, aY as na, aZ as Na, a_ as da, a$ as la, b0 as ua, b1 as ma, b2 as ha, b3 as pa, b4 as Sa, b5 as Ca, b6 as ba, b7 as ga, b8 as Ta, b9 as Pa, ba as Da, bb as Aa, bc as fa, bd as Ea, be as Ra, bf as ya, bg as Ia, bh as ka, bi as Ma, bj as va, bk as La, bl as wa, bm as Fa, bn as Va, bo as Ba, bp as Oa, bq as xa, br as _a, bs as Ga, bt as Ha, bu as Ua, bv as Wa, bw as za, bx as Ka, by as Qa, bz as Ya, bA as qa, bB as ja, bC as Xa, bD as Ja, bE as Za, bF as $a, bG as es, bH as as, bI as ss, bJ as is, bK as cs, bL as ts, bM as rs, bN as os, bO as ns, bP as Ns, bQ as ds, bR as ls, bS as us, bT as ms, bU as hs, bV as ps, bW as Ss, bX as Cs, bY as bs, bZ as gs, b_ as Ts, b$ as Ps, c0 as Ds, c1 as As, c2 as fs, c3 as Es, c4 as Rs, c5 as ys, c6 as Is, c7 as ks, c8 as Ms, c9 as vs, ca as Ls, cb as ws, cc as Fs, cd as Vs, ce as Bs, cf as Os, cg as xs, ch as _s, ci as Gs, cj as Hs, ck as Us, cl as Ws, cm as zs, cn as Ks, co as Qs, cp as Ys, cq as qs, cr as js, cs as Xs, ct as Js, cu as Zs, cv as $s, cw as ei, cx as ai, cy as si, cz as ii, aK as ci, c5 as ti, cA as ri, cB as oi, cC as ni, cD as Ni, cE as di, cF as li, cG as ui, cH as mi, cI as hi, cJ as pi, cK as Si, cL as Ci, cM as bi, cN as gi, cO as Ti, cP as Pi, cQ as Di, cR as Ai, cS as fi, cT as Ei, cU as Ri, cV as yi, cW as Ii, cX as ki, cY as Mi, cZ as vi, c_ as Li, c$ as wi, d0 as Fi, d1 as Vi, d2 as Bi, d3 as Oi, d4 as xi, d5 as _i, d6 as Gi, d7 as Hi, d8 as Ui, d9 as Wi, da as zi, db as Ki, dc as Qi, dd as Yi, de as qi, df as ji, dg as Xi, dh as Ji, di as Zi, dj as $i, dk as ec, dl as ac, dm as sc, dn as ic, dp as cc, dq as tc, dr as rc, ds as oc, dt as nc, du as Nc, dv as dc, dw as lc, dx as uc, dy as mc, dz as hc, dA as pc, dB as Sc, dC as Cc, dD as bc, dE as gc, dF as Tc, dG as Pc, dH as Dc, dI as Ac, dJ as fc, dK as Ec, dL as Rc, dM as yc, dN as Ic, dO as kc, dP as Mc, dQ as vc, dR as Lc, dS as wc, dT as Fc, dU as Vc, dV as Bc, dW as Oc, dX as xc, dY as _c, dZ as Gc, d_ as Hc, d$ as Uc, e0 as Wc, e1 as zc, e2 as Kc, e3 as Qc, e4 as Yc, e5 as qc, e6 as jc, e7 as Xc, e8 as Jc, e9 as Zc, ea as $c, eb as et, ec as at, ed as st, ee as it, ef as ct, eg as tt, eh as rt, ei as ot, ej as nt, ek as Nt, el as dt, em as lt, en as ut, eo as mt, ep as ht, eq as pt, er as St, es as Ct, et as bt, eu as gt, ev as Tt, ew as Pt, ex as Dt, ey as At, ez as ft, eA as Et, eB as Rt, eC as yt, eD as It, eE as kt, eF as Mt, eG as vt, eH as Lt, eI as wt, eJ as Ft, eK as Vt, eL as Bt, eM as Ot } from "./index-ByDRtfrm.js";
2
+ import { L as _t, N as Gt, m as Ht, O as Ut, Q as Wt, U as zt, W as Kt, Y as Qt, _ as Yt, a0 as qt, a1 as jt, a2 as Xt, a3 as Jt, T as Zt, w as $t, F as er, a4 as ar, a5 as sr, a6 as ir, a7 as cr, a8 as tr, a9 as rr, x as or, aa as nr, ab as Nr, ac as dr, ad as lr, ae as ur, af as mr, ag as hr, ah as pr, G as Sr, e as Cr, ai as br, aj as gr, K as Tr, ak as Pr, al as Dr, am as Ar, an as fr, ao as Er, ap as Rr, aq as yr, ar as Ir, as as kr, at as Mr, l as vr, z as Lr, au as wr, av as Fr, aw as Vr, ax as Br, ay as Or, az as xr, aA as _r, aB as Gr, aC as Hr, aD as Ur, aE as Wr, aF as zr, aG as Kr, aH as Qr, aI as Yr, aJ as qr, aK as jr, aL as Xr, s as Jr, aM as Zr, aN as $r, aO as eo, aP as ao, aQ as so, aR as io, aS as co, aT as to, aU as ro, aV as oo, aW as no, aX as No, aY as lo, aZ as uo, a_ as mo, a$ as ho, b0 as po, b1 as So, b2 as Co, b3 as bo, b4 as go, b5 as To, b6 as Po, b7 as Do, b8 as Ao, b9 as fo, ba as Eo, bb as Ro, bc as yo, bd as Io, be as ko, bf as Mo, bg as vo, bh as Lo, bi as wo, bj as Fo, bk as Vo, bl as Bo, bm as Oo, bn as xo, bo as _o, bp as Go, bq as Ho, br as Uo, bs as Wo, bt as zo, bu as Ko, bv as Qo, bw as Yo, bx as qo, by as jo, bz as Xo, bA as Jo, bB as Zo, bC as $o, bD as en, bE as an, bF as sn, bG as cn, bH as tn, bI as rn, bJ as on, bK as nn, bL as Nn, bM as dn, bN as ln, bO as un, bP as mn, bQ as hn, bR as pn, bS as Sn, bT as Cn, bU as bn, p as gn, bV as Tn, bW as Pn, bX as Dn, bY as An, bZ as fn, b_ as En, b$ as Rn, c0 as yn, c1 as In, c2 as kn, c3 as Mn, r as vn, c4 as Ln, c5 as wn, c6 as Fn, c7 as Vn, c8 as Bn, c9 as On, I as xn, ca as _n, cb as Gn, t as Hn, cc as Un, cd as Wn, ce as zn, cf as Kn, cg as Qn, ch as Yn, ci as qn, cj as jn, ck as Xn, cl as Jn, cm as Zn, cn as $n, co as eN, cp as aN, cq as sN, cr as iN, cs as cN, ct as tN, cu as rN, cv as oN, cw as nN, cx as NN, cy as dN, cz as lN, cA as uN, cB as mN, cC as hN, cD as pN, cE as SN, cF as CN, cG as bN, cH as gN, cI as TN, cJ as PN, cK as DN, cL as AN, cM as fN, cN as EN, cO as RN, cP as yN, cQ as IN, cR as kN, cS as MN, cT as vN, cU as LN, cV as wN, cW as FN, cX as VN, cY as BN, cZ as ON, c_ as xN, c$ as _N, d0 as GN, d1 as HN, d2 as UN, d3 as WN, d4 as zN, d5 as KN, d6 as QN, d7 as YN, d8 as qN, d9 as jN, da as XN, db as JN, dc as ZN, dd as $N, de as ed, df as ad, dg as sd, dh as id, di as cd, dj as td, dk as rd, dl as od, dm as nd, dn as Nd, dp as dd, dq as ld, dr as ud, ds as md, dt as hd, du as pd, dv as Sd, dw as Cd, dx as bd, dy as gd, dz as Td, dA as Pd, dB as Dd, dC as Ad, dD as fd, dE as Ed, dF as Rd, dG as yd, dH as Id, dI as kd, V as Md, dJ as vd, dK as Ld, dL as wd, dM as Fd, dN as Vd, dO as Bd, dP as Od, dQ as xd, dR as _d, dS as Gd, X as Hd, dT as Ud, dU as Wd, dV as zd, dW as Kd, dX as Qd, $ as Yd, a as qd, d as jd, dY as Xd, S as Jd, v as Zd, dZ as $d, d_ as el, H as al, d$ as sl, e0 as il, f as cl, e1 as tl, e2 as rl, e3 as ol, e4 as nl, e5 as Nl, e6 as dl, e7 as ll, P as ul, e8 as ml, e9 as hl, ea as pl, eb as Sl, ec as Cl, ed as bl, ee as gl, ef as Tl, eg as Pl, eh as Dl, ei as Al, ej as fl, R as El, ek as Rl, i as yl, Z as Il, el as kl, c as Ml, E as vl, em as Ll, en as wl, eo as Fl, o as Vl, ep as Bl, q as Ol, k as xl, eq as _l, J as Gl, er as Hl, b as Ul, n as Wl, es as zl, et as Kl, eu as Ql, ev as Yl, ew as ql, ex as jl, ey as Xl, ez as Jl, eA as Zl, eB as $l, eC as eu, eD as au, eE as su, eF as iu, eG as cu, eH as tu, eI as ru, eJ as ou, eK as nu, eL as Nu, eM as du, u as lu, j as uu, g as mu, eN as hu, D as pu, eO as Su, eP as Cu, eQ as bu, h as gu, eR as Tu, eS as Pu, eT as Du, eU as Au, eV as fu, eW as Eu, eX as Ru, eY as yu, eZ as Iu, e_ as ku, e$ as Mu, f0 as vu, f1 as Lu, f2 as wu, f3 as Fu, f4 as Vu } from "./core-BFu5opn6.js";
3
+ import { g as Ou, N as xu, a as _u, b as Gu, c as Hu, f as Uu, d as Wu, e as zu } from "./NiceTabs-nQEYYbsV.js";
4
+ import { C as Qu, F as Yu, o as qu, p as ju, N as Xu, a as Ju, b as Zu, c as $u, q as em, r as am, d as sm, e as im, f as cm, g as tm, h as rm, i as om, j as nm, k as Nm, l as dm, m as lm, n as um, T as mm } from "./NiceForm-BzKlOWJa.js";
5
+ import { J as pm, K as Sm, L as Cm, N as bm, a as gm, b as Tm, c as Pm, M as Dm, d as Am, e as fm, f as Em, g as Rm, h as ym, i as Im, j as km, k as Mm, l as vm, m as Lm, n as wm, o as Fm, p as Vm, q as Bm, r as Om, s as xm, t as _m, u as Gm, v as Hm, w as Um, x as Wm, y as zm, z as Km, A as Qm, B as Ym, C as qm, D as jm, E as Xm, O as Jm, F as Zm, G as $m, H as eh, I as ah, P as sh, Q as ih, R as ch, S as th, T as rh, U as oh, V as nh, W as Nh, X as dh, Y as lh, Z as uh, _ as mh, $ as hh, a0 as ph, a1 as Sh } from "./NicePinCodeInput-DDK6qqFW.js";
6
+ import { N as bh, f as gh, g as Th, h as Ph, i as Dh, j as Ah, k as fh, l as Eh, m as Rh, n as yh, o as Ih, p as kh, q as Mh, r as vh, s as Lh, u as wh, v as Fh, w as Vh, y as Bh, A as Oh, B as xh, C as _h, E as Gh, F as Hh, G as Uh, I as Wh, J as zh, K as Kh, R as Qh, L as Yh, M as qh, O as jh, T as Xh, P as Jh, Q as Zh, V as $h, W as ep, X as ap, U as sp } from "./NiceModuleLifecyclePanel-L5FNYzF9.js";
7
+ import { N as cp, a as tp, b as rp, c as op, d as np, e as Np, f as dp, g as lp, h as up, i as mp, k as hp, u as pp } from "./NiceErrorBoundary-CFJh1FyM.js";
8
+ import { N as Cp } from "./NiceModal-DjN1yXgw.js";
9
+ import { N as gp } from "./NicePagination-d6vm1ce3.js";
10
+ import { N as Pp, a as Dp, b as Ap, c as fp, d as Ep, e as Rp, f as yp, g as Ip, h as kp, i as Mp, j as vp, k as Lp, l as wp, m as Fp, n as Vp, o as Bp } from "./NiceSavedQueryPanel-DtgcsEls.js";
11
+ import { C as xp, j as _p, h as Gp, o as Hp, p as Up, l as Wp, q as zp, r as Kp, g as Qp, e as Yp, k as qp, s as jp, t as Xp, b as Jp, n as Zp, m as $p, a as eS, u as aS, f as sS, v as iS, i as cS, c as tS, d as rS, w as oS, N as nS, x as NS, y as dS, z as lS } from "./charts-8Bqzj1TE.js";
12
+ import { N as mS, a as hS, b as pS, c as SS, d as CS, e as bS, f as gS, g as TS, h as PS, i as DS, j as AS, k as fS, l as ES, n as RS, o as yS, u as IS, p as kS, m as MS } from "./NiceWindow-C677O__r.js";
13
+ import { N as LS, a as wS, b as FS, c as VS, d as BS, e as OS, f as xS, g as _S, h as GS } from "./devops-BL39OCVh.js";
14
14
  import { N as US, a as WS, b as zS, c as KS, d as QS, e as YS, f as qS, g as jS, h as XS, i as JS } from "./no-code-snLY0d6I.js";
15
15
  import { N as $S, a as eC, b as aC, c as sC, d as iC, e as cC } from "./data-branching-BmCKIXgr.js";
16
16
  export {
@@ -91,8 +91,8 @@ export {
91
91
  L as NiceBackupDiffViewer,
92
92
  w as NiceBackupList,
93
93
  F as NiceBackupRestoreDialog,
94
- B as NiceBackupScheduler,
95
- V as NiceBackupStatusBadge,
94
+ V as NiceBackupScheduler,
95
+ B as NiceBackupStatusBadge,
96
96
  O as NiceBackupTagEditor,
97
97
  x as NiceBadge,
98
98
  _p as NiceBarGauge,
@@ -209,8 +209,8 @@ export {
209
209
  Le as NiceFileUploader,
210
210
  we as NiceFilterBuilder,
211
211
  Fe as NiceFlex,
212
- Be as NiceFloorPlanCanvas,
213
- Ve as NiceFocusTrap,
212
+ Ve as NiceFloorPlanCanvas,
213
+ Be as NiceFocusTrap,
214
214
  Oe as NiceFooter,
215
215
  Kp as NiceForecastChart,
216
216
  im as NiceForm,
@@ -219,8 +219,8 @@ export {
219
219
  _e as NiceGantt,
220
220
  wS as NiceGitBlame,
221
221
  FS as NiceGitConflictResolver,
222
- BS as NiceGitDiffViewer,
223
- VS as NiceGitGraph,
222
+ VS as NiceGitDiffViewer,
223
+ BS as NiceGitGraph,
224
224
  OS as NiceGitHooks,
225
225
  Ge as NiceGitManager,
226
226
  wm as NiceGradientPicker,
@@ -231,12 +231,12 @@ export {
231
231
  pr as NiceHelpProvider,
232
232
  We as NiceHighlight,
233
233
  Fm as NiceHtmlEditor,
234
- Bm as NiceHtmlEditorAI,
234
+ Vm as NiceHtmlEditorAI,
235
235
  Sr as NiceI18nProvider,
236
236
  Cr as NiceIcon,
237
237
  ze as NiceIconButton,
238
238
  br as NiceIconProvider,
239
- Vm as NiceImageAnnotator,
239
+ Bm as NiceImageAnnotator,
240
240
  Om as NiceImageEditor,
241
241
  Ke as NiceImageViewer,
242
242
  Qe as NiceInbox,
@@ -277,10 +277,10 @@ export {
277
277
  Na as NiceMealPlan,
278
278
  da as NiceMediaObject,
279
279
  Wm as NiceMention,
280
- Bh as NiceMenu,
280
+ Vh as NiceMenu,
281
281
  xS as NiceMergeRequestBuilder,
282
282
  Cp as NiceModal,
283
- Vh as NiceModeSelector,
283
+ Bh as NiceModeSelector,
284
284
  Rp as NiceModuleGrid,
285
285
  la as NiceModuleHotSwap,
286
286
  Oh as NiceModuleLifecyclePanel,
@@ -331,8 +331,8 @@ export {
331
331
  wa as NicePresenceProvider,
332
332
  Fa as NicePrintPreview,
333
333
  Dr as NiceProfiler,
334
- Ba as NiceProgress,
335
- Va as NicePromptDialog,
334
+ Va as NiceProgress,
335
+ Ba as NicePromptDialog,
336
336
  Ar as NicePullToRefresh,
337
337
  Oa as NiceQRCode,
338
338
  xa as NiceQuestCard,
@@ -435,22 +435,22 @@ export {
435
435
  Fr as NiceThemeVariantProvider,
436
436
  wp as NiceTileView,
437
437
  um as NiceTimePicker,
438
- Bs as NiceTimeline,
438
+ Vs as NiceTimeline,
439
439
  up as NiceTimeoutFeedback,
440
440
  mp as NiceToastContainer,
441
441
  zu as NiceToggle,
442
- Vs as NiceToggleGroup,
442
+ Bs as NiceToggleGroup,
443
443
  jh as NiceToolbar,
444
444
  Xh as NiceTooltip,
445
445
  Os as NiceTopNav,
446
- Br as NiceTouchTarget,
446
+ Vr as NiceTouchTarget,
447
447
  xs as NiceTranscoder,
448
448
  Fp as NiceTreeGrid,
449
- Bp as NiceTreeList,
449
+ Vp as NiceTreeList,
450
450
  rS as NiceTreeMap,
451
451
  oS as NiceTreeMapChart,
452
452
  $m as NiceTreeSelect,
453
- Vp as NiceTreeView,
453
+ Bp as NiceTreeView,
454
454
  _s as NiceTruncate,
455
455
  DS as NiceTutorial,
456
456
  AS as NiceTutorialProvider,
@@ -459,7 +459,7 @@ export {
459
459
  Us as NiceUpdatePrompt,
460
460
  Ws as NiceUpload,
461
461
  Jh as NiceUserMenu,
462
- Vr as NiceUserPreferencesProvider,
462
+ Br as NiceUserPreferencesProvider,
463
463
  zs as NiceValidationGroup,
464
464
  Ks as NiceValidationSummary,
465
465
  Qs as NiceValidator,
@@ -569,13 +569,13 @@ export {
569
569
  lS as createWebSocketLiveChartSource,
570
570
  Lo as createZustandAdapter,
571
571
  ch as cssToGradient,
572
- Bi as defaultTypeMapping,
573
- Vi as defaultViewRegistry,
572
+ Vi as defaultTypeMapping,
573
+ Bi as defaultViewRegistry,
574
574
  wo as deprecateProp,
575
575
  Fo as deprecateSymbol,
576
576
  Oi as deserializeManifest,
577
577
  xi as deserializeRbacPolicy,
578
- Bo as deserializeTheme,
578
+ Vo as deserializeTheme,
579
579
  _i as deserializeViewV2,
580
580
  Gi as diffObjects,
581
581
  Hi as diffViews,
@@ -585,7 +585,7 @@ export {
585
585
  Ki as downloadJSON,
586
586
  Qi as downloadPDF,
587
587
  Yi as downloadXLSX,
588
- Vo as endMark,
588
+ Bo as endMark,
589
589
  qi as exportIcs,
590
590
  ji as exportToCSV,
591
591
  Xi as exportToHTML,
@@ -687,12 +687,12 @@ export {
687
687
  Fc as parseTokensFromJSON,
688
688
  wn as pivot,
689
689
  Fn as preloadAllHeavyComponents,
690
- Bn as preloadComponents,
691
- Vn as printPerformanceReport,
690
+ Vn as preloadComponents,
691
+ Bn as printPerformanceReport,
692
692
  uh as randomPalette,
693
- Bc as recipeTotalMinutes,
693
+ Vc as recipeTotalMinutes,
694
694
  On as removeTheme,
695
- Vc as requireA11y,
695
+ Bc as requireA11y,
696
696
  Oc as requireGridColumns,
697
697
  xc as requireI18n,
698
698
  xn as resolveDisplayStyleConfig,
@@ -762,8 +762,8 @@ export {
762
762
  LN as themeIvory,
763
763
  wN as themeJapaneseZen,
764
764
  FN as themeLargeText,
765
- BN as themeLavender,
766
- VN as themeLegal,
765
+ VN as themeLavender,
766
+ BN as themeLegal,
767
767
  ON as themeLime,
768
768
  xN as themeMediterranean,
769
769
  _N as themeMidnight,
@@ -816,8 +816,8 @@ export {
816
816
  Ld as themeValentine,
817
817
  wd as themeVaporwave,
818
818
  Fd as themeVintage,
819
- Bd as themeViolet,
820
- Vd as themeWarmDark,
819
+ Vd as themeViolet,
820
+ Bd as themeWarmDark,
821
821
  Od as themeWarmGray,
822
822
  xd as themeWine,
823
823
  _d as themeWinterFrost,
@@ -886,8 +886,8 @@ export {
886
886
  Ll as useNiceField,
887
887
  wl as useNiceHelp,
888
888
  Fl as useNiceIcon,
889
- Bl as useNiceLookupSource,
890
- Vl as useNiceRTL,
889
+ Vl as useNiceLookupSource,
890
+ Bl as useNiceRTL,
891
891
  Ol as useNiceRecord,
892
892
  xl as useNiceTheme,
893
893
  hp as useNiceTimeout,
@@ -961,8 +961,8 @@ export {
961
961
  Lt as validateDoc,
962
962
  wt as validateModuleManifest,
963
963
  Ft as validateRbacPolicy,
964
- Bt as validateViewDefinitionV2,
965
- Vt as validateViewForDeploy,
964
+ Vt as validateViewDefinitionV2,
965
+ Bt as validateViewForDeploy,
966
966
  Ot as validateViewsBatch,
967
967
  Sh as wcagLevel,
968
968
  Iu as withCaching,
@@ -972,5 +972,5 @@ export {
972
972
  Lu as withLeakTracking,
973
973
  wu as withOptimisticUpdates,
974
974
  Fu as withPolling,
975
- Bu as withWhyDidYouRender
975
+ Vu as withWhyDidYouRender
976
976
  };
package/dist/lazy.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react"),n=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitGraph$1).then(e=>({default:e.NiceGitGraph}))),o=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceBranchManager$1).then(e=>({default:e.NiceBranchManager}))),l=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitDiffViewer$1).then(e=>({default:e.NiceGitDiffViewer}))),s=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitBlame$1).then(e=>({default:e.NiceGitBlame}))),h=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitConflictResolver$1).then(e=>({default:e.NiceGitConflictResolver}))),c=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineEditor$1).then(e=>({default:e.NicePipelineEditor}))),y=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineMonitor$1).then(e=>({default:e.NicePipelineMonitor}))),u=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitHooks$1).then(e=>({default:e.NiceGitHooks}))),z=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceMergeRequestBuilder$1).then(e=>({default:e.NiceMergeRequestBuilder}))),d=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceAPIFlow$1).then(e=>({default:e.NiceAPIFlow}))),f=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceCodeTemplate$1).then(e=>({default:e.NiceCodeTemplate}))),N=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceDataMapper$1).then(e=>({default:e.NiceDataMapper}))),L=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceEventOrchestrator$1).then(e=>({default:e.NiceEventOrchestrator}))),p=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceStateDesigner$1).then(e=>({default:e.NiceStateDesigner}))),v=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceTestBuilder$1).then(e=>({default:e.NiceTestBuilder}))),D=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchManager$1).then(e=>({default:e.NiceDataBranchManager}))),P=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataDiffViewer$1).then(e=>({default:e.NiceDataDiffViewer}))),m=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchGraph$1).then(e=>({default:e.NiceDataBranchGraph}))),q=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataMergeBuilder$1).then(e=>({default:e.NiceDataMergeBuilder}))),B=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataConflictResolver$1).then(e=>({default:e.NiceDataConflictResolver}))),M=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataSnapshot$1).then(e=>({default:e.NiceDataSnapshot}))),G=a.lazy(()=>Promise.resolve().then(()=>require("./charts-CX4jiyVh.cjs")).then(e=>e.NiceChart$1).then(e=>({default:e.NiceChart}))),g=a.lazy(()=>Promise.resolve().then(()=>require("./charts-CX4jiyVh.cjs")).then(e=>e.NiceTreeMap$1).then(e=>({default:e.NiceTreeMap}))),$=a.lazy(()=>Promise.resolve().then(()=>require("./charts-CX4jiyVh.cjs")).then(e=>e.NiceSankey$1).then(e=>({default:e.NiceSankey}))),t=()=>{Promise.resolve().then(()=>require("./devops.cjs"))},r=()=>{Promise.resolve().then(()=>require("./no-code.cjs"))},i=()=>{Promise.resolve().then(()=>require("./data-branching.cjs"))},C=()=>{"requestIdleCallback"in window?requestIdleCallback(()=>{t(),r(),i()}):setTimeout(()=>{t(),r(),i()},2e3)};exports.LazyAPIFlow=d;exports.LazyBranchManager=o;exports.LazyChart=G;exports.LazyCodeTemplate=f;exports.LazyDataBranchGraph=m;exports.LazyDataBranchManager=D;exports.LazyDataConflictResolver=B;exports.LazyDataDiffViewer=P;exports.LazyDataMapper=N;exports.LazyDataMergeBuilder=q;exports.LazyDataSnapshot=M;exports.LazyEventOrchestrator=L;exports.LazyGitBlame=s;exports.LazyGitConflictResolver=h;exports.LazyGitDiffViewer=l;exports.LazyGitGraph=n;exports.LazyGitHooks=u;exports.LazyMergeRequestBuilder=z;exports.LazyPipelineEditor=c;exports.LazyPipelineMonitor=y;exports.LazySankey=$;exports.LazyStateDesigner=p;exports.LazyTestBuilder=v;exports.LazyTreemap=g;exports.preloadDataBranching=i;exports.preloadDevOps=t;exports.preloadHeavyModules=C;exports.preloadNoCode=r;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react"),n=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitGraph$1).then(e=>({default:e.NiceGitGraph}))),o=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceBranchManager$1).then(e=>({default:e.NiceBranchManager}))),l=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitDiffViewer$1).then(e=>({default:e.NiceGitDiffViewer}))),s=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitBlame$1).then(e=>({default:e.NiceGitBlame}))),h=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitConflictResolver$1).then(e=>({default:e.NiceGitConflictResolver}))),c=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineEditor$1).then(e=>({default:e.NicePipelineEditor}))),y=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NicePipelineMonitor$1).then(e=>({default:e.NicePipelineMonitor}))),u=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceGitHooks$1).then(e=>({default:e.NiceGitHooks}))),z=a.lazy(()=>Promise.resolve().then(()=>require("./devops-CkuTC7RJ.cjs")).then(e=>e.NiceMergeRequestBuilder$1).then(e=>({default:e.NiceMergeRequestBuilder}))),d=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceAPIFlow$1).then(e=>({default:e.NiceAPIFlow}))),f=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceCodeTemplate$1).then(e=>({default:e.NiceCodeTemplate}))),N=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceDataMapper$1).then(e=>({default:e.NiceDataMapper}))),L=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceEventOrchestrator$1).then(e=>({default:e.NiceEventOrchestrator}))),p=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceStateDesigner$1).then(e=>({default:e.NiceStateDesigner}))),v=a.lazy(()=>Promise.resolve().then(()=>require("./no-code-Bb3QFKdm.cjs")).then(e=>e.NiceTestBuilder$1).then(e=>({default:e.NiceTestBuilder}))),D=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchManager$1).then(e=>({default:e.NiceDataBranchManager}))),P=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataDiffViewer$1).then(e=>({default:e.NiceDataDiffViewer}))),m=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataBranchGraph$1).then(e=>({default:e.NiceDataBranchGraph}))),q=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataMergeBuilder$1).then(e=>({default:e.NiceDataMergeBuilder}))),B=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataConflictResolver$1).then(e=>({default:e.NiceDataConflictResolver}))),M=a.lazy(()=>Promise.resolve().then(()=>require("./data-branching-B_9C6-hE.cjs")).then(e=>e.NiceDataSnapshot$1).then(e=>({default:e.NiceDataSnapshot}))),G=a.lazy(()=>Promise.resolve().then(()=>require("./charts-CFn-7PzC.cjs")).then(e=>e.NiceChart$1).then(e=>({default:e.NiceChart}))),g=a.lazy(()=>Promise.resolve().then(()=>require("./charts-CFn-7PzC.cjs")).then(e=>e.NiceTreeMap$1).then(e=>({default:e.NiceTreeMap}))),$=a.lazy(()=>Promise.resolve().then(()=>require("./charts-CFn-7PzC.cjs")).then(e=>e.NiceSankey$1).then(e=>({default:e.NiceSankey}))),t=()=>{Promise.resolve().then(()=>require("./devops.cjs"))},r=()=>{Promise.resolve().then(()=>require("./no-code.cjs"))},i=()=>{Promise.resolve().then(()=>require("./data-branching.cjs"))},C=()=>{"requestIdleCallback"in window?requestIdleCallback(()=>{t(),r(),i()}):setTimeout(()=>{t(),r(),i()},2e3)};exports.LazyAPIFlow=d;exports.LazyBranchManager=o;exports.LazyChart=G;exports.LazyCodeTemplate=f;exports.LazyDataBranchGraph=m;exports.LazyDataBranchManager=D;exports.LazyDataConflictResolver=B;exports.LazyDataDiffViewer=P;exports.LazyDataMapper=N;exports.LazyDataMergeBuilder=q;exports.LazyDataSnapshot=M;exports.LazyEventOrchestrator=L;exports.LazyGitBlame=s;exports.LazyGitConflictResolver=h;exports.LazyGitDiffViewer=l;exports.LazyGitGraph=n;exports.LazyGitHooks=u;exports.LazyMergeRequestBuilder=z;exports.LazyPipelineEditor=c;exports.LazyPipelineMonitor=y;exports.LazySankey=$;exports.LazyStateDesigner=p;exports.LazyTestBuilder=v;exports.LazyTreemap=g;exports.preloadDataBranching=i;exports.preloadDevOps=t;exports.preloadHeavyModules=C;exports.preloadNoCode=r;
package/dist/lazy.mjs CHANGED
@@ -48,11 +48,11 @@ const r = t(
48
48
  ), k = t(
49
49
  () => import("./data-branching-BmCKIXgr.js").then((e) => e.k).then((e) => ({ default: e.NiceDataSnapshot }))
50
50
  ), v = t(
51
- () => import("./charts-P6qura0j.js").then((e) => e.A).then((e) => ({ default: e.NiceChart }))
51
+ () => import("./charts-8Bqzj1TE.js").then((e) => e.A).then((e) => ({ default: e.NiceChart }))
52
52
  ), w = t(
53
- () => import("./charts-P6qura0j.js").then((e) => e.E).then((e) => ({ default: e.NiceTreeMap }))
53
+ () => import("./charts-8Bqzj1TE.js").then((e) => e.E).then((e) => ({ default: e.NiceTreeMap }))
54
54
  ), T = t(
55
- () => import("./charts-P6qura0j.js").then((e) => e.B).then((e) => ({ default: e.NiceSankey }))
55
+ () => import("./charts-8Bqzj1TE.js").then((e) => e.B).then((e) => ({ default: e.NiceSankey }))
56
56
  ), a = () => {
57
57
  import("./devops.mjs");
58
58
  }, n = () => {
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("./NiceModuleLifecyclePanel-sBJLlhJp.cjs"),e=require("react/jsx-runtime"),v=require("./core-BfeyB9A8.cjs"),h=require("react"),Z=require("./NiceTabs-BjBtazRn.cjs"),U=require("./NicePagination-B2TC6MTL.cjs"),I=h.forwardRef(({items:b,activeKey:N,collapsed:a=!1,width:p=240,collapsedWidth:l=52,onItemClick:k,onCollapseChange:D,header:j,footer:d,size:m="md",className:g,style:M,id:y,accessMode:S,...C},x)=>{const c=v.Hs(y),o=v.Zs(S,y),[t,u]=h.useState(new Set),r=h.useCallback(i=>{u($=>{const s=new Set($);return s.has(i)?s.delete(i):s.add(i),s})},[]);if(o==="hidden")return null;const _=(i,$=0)=>{const s=i.children&&i.children.length>0,E=t.has(i.key),w=i.key===N;return e.jsxs("li",{className:"nice-sidebar-menu__item",children:[e.jsxs("button",{className:`nice-sidebar-menu__btn ${w?"nice-sidebar-menu__btn--active":""} ${i.disabled?"nice-sidebar-menu__btn--disabled":""}`,style:{paddingLeft:a?void 0:12+$*16},onClick:()=>s?r(i.key):k?.(i),disabled:i.disabled,title:a?i.text:void 0,type:"button",children:[i.icon&&e.jsx("span",{className:"nice-sidebar-menu__icon",children:i.icon}),!a&&e.jsx("span",{className:"nice-sidebar-menu__label",children:i.text}),!a&&i.badge!==void 0&&e.jsx("span",{className:"nice-sidebar-menu__badge",children:i.badge}),!a&&s&&e.jsx("span",{className:"nice-sidebar-menu__chevron",children:E?"▾":"▸"})]}),s&&E&&!a&&e.jsx("ul",{className:"nice-sidebar-menu__children",children:i.children.map(T=>_(T,$+1))})]},i.key)};return e.jsxs("nav",{ref:x,id:c,className:`nice-sidebar-menu nice-sidebar-menu--${m} ${a?"nice-sidebar-menu--collapsed":""} ${g??""}`,style:{...M,width:a?l:p},...C,children:[j&&e.jsx("div",{className:"nice-sidebar-menu__header",children:j}),e.jsx("ul",{className:"nice-sidebar-menu__list",role:"list",children:b.map(i=>_(i))}),d&&e.jsx("div",{className:"nice-sidebar-menu__footer",children:d})]})});I.displayName="NiceSidebarMenu";const P=h.forwardRef(({items:b,activeKey:N,onItemClick:a,brand:p,actions:l,size:k="md",className:D,style:j,id:d,accessMode:m,...g},M)=>{const y=v.Hs(d),S=v.Zs(m,d),[C,x]=h.useState(null);return S==="hidden"?null:e.jsxs("nav",{ref:M,id:y,className:`nice-top-menu nice-top-menu--${k} ${D??""}`,style:j,...g,children:[p&&e.jsx("div",{className:"nice-top-menu__brand",children:p}),e.jsx("ul",{className:"nice-top-menu__items",role:"menubar",children:b.map(c=>{const o=c.children&&c.children.length>0,t=C===c.key;return e.jsxs("li",{className:"nice-top-menu__item",onMouseEnter:()=>o&&x(c.key),onMouseLeave:()=>o&&x(null),children:[e.jsxs("button",{className:`nice-top-menu__btn ${c.key===N?"nice-top-menu__btn--active":""}`,onClick:()=>o?x(t?null:c.key):a?.(c),role:"menuitem","aria-haspopup":o,"aria-expanded":t,disabled:c.disabled,type:"button",children:[c.icon&&e.jsx("span",{children:c.icon}),e.jsx("span",{children:c.text}),o&&e.jsx("span",{className:"nice-top-menu__chevron",children:"▾"})]}),o&&t&&e.jsx("ul",{className:"nice-top-menu__dropdown",role:"menu",children:c.children.map(u=>e.jsx("li",{children:e.jsxs("button",{className:`nice-top-menu__dropdown-btn ${u.key===N?"nice-top-menu__dropdown-btn--active":""}`,onClick:()=>{a?.(u),x(null)},disabled:u.disabled,role:"menuitem",type:"button",children:[u.icon&&e.jsx("span",{children:u.icon}),e.jsx("span",{children:u.text}),u.badge!==void 0&&e.jsx("span",{className:"nice-top-menu__badge",children:u.badge})]})},u.key))})]},c.key)})}),l&&e.jsx("div",{className:"nice-top-menu__actions",children:l})]})});P.displayName="NiceTopMenu";const B=h.forwardRef(({tabs:b,activeTab:N,onTabChange:a,onItemClick:p,minimized:l=!1,onMinimizeToggle:k,size:D="md",className:j,style:d,id:m,accessMode:g,...M},y)=>{const S=v.Hs(m),C=v.Zs(g,m),[x,c]=h.useState(N??b[0]?.key),o=N??x,t=b.find(r=>r.key===o),u=h.useCallback(r=>{c(r),a?.(r)},[a]);return C==="hidden"?null:e.jsxs("div",{ref:y,id:S,className:`nice-ribbon-menu nice-ribbon-menu--${D} ${l?"nice-ribbon-menu--minimized":""} ${j??""}`,style:d,...M,children:[e.jsxs("div",{className:"nice-ribbon-menu__tabs",role:"tablist",children:[b.map(r=>e.jsx("button",{className:`nice-ribbon-menu__tab ${r.key===o?"nice-ribbon-menu__tab--active":""}`,onClick:()=>u(r.key),role:"tab","aria-selected":r.key===o,type:"button",children:r.label},r.key)),e.jsx("button",{className:"nice-ribbon-menu__minimize",onClick:()=>k?.(!l),type:"button","aria-label":l?"Expand":"Minimize",children:l?"▼":"▲"})]}),!l&&t&&e.jsx("div",{className:"nice-ribbon-menu__panel",role:"tabpanel",children:t.groups.map((r,_)=>e.jsxs("div",{className:"nice-ribbon-menu__group",children:[e.jsx("div",{className:"nice-ribbon-menu__group-items",children:r.items.map(i=>e.jsxs("button",{className:"nice-ribbon-menu__item",onClick:()=>p?.(i),disabled:i.disabled,type:"button",children:[i.icon&&e.jsx("span",{className:"nice-ribbon-menu__item-icon",children:i.icon}),e.jsx("span",{className:"nice-ribbon-menu__item-label",children:i.text})]},i.key))}),e.jsx("div",{className:"nice-ribbon-menu__group-label",children:r.label})]},_))})]})});B.displayName="NiceRibbonMenu";const W=h.forwardRef(({items:b,activeKey:N,onItemClick:a,position:p="bottom",autoHide:l=!1,iconSize:k=40,size:D="md",className:j,style:d,id:m,accessMode:g,...M},y)=>{const S=v.Hs(m),C=v.Zs(g,m),[x,c]=h.useState(!1),o=!l||x;return C==="hidden"?null:e.jsx("div",{ref:y,id:S,className:`nice-dock-menu nice-dock-menu--${p} nice-dock-menu--${D} ${l&&!o?"nice-dock-menu--hidden":""} ${j??""}`,style:d,onMouseEnter:()=>c(!0),onMouseLeave:()=>c(!1),...M,children:e.jsx("div",{className:"nice-dock-menu__items",children:b.map(t=>e.jsxs("button",{className:`nice-dock-menu__item ${t.key===N?"nice-dock-menu__item--active":""}`,onClick:()=>a?.(t),disabled:t.disabled,title:t.text,type:"button",style:{width:k,height:k},children:[t.icon?e.jsx("span",{className:"nice-dock-menu__icon",children:t.icon}):e.jsx("span",{children:t.text[0]}),t.badge!==void 0&&e.jsx("span",{className:"nice-dock-menu__badge",children:t.badge})]},t.key))})})});W.displayName="NiceDockMenu";const H=h.forwardRef(({items:b,activeKey:N,onItemClick:a,open:p,onOpenChange:l,position:k="left",panelWidth:D=280,header:j,footer:d,size:m="md",className:g,style:M,id:y,accessMode:S,...C},x)=>{const c=v.Hs(y),o=v.Zs(S,y),{t}=v.$o(),[u,r]=h.useState(!1),_=p??u,i=h.useCallback(()=>{const s=!_;r(s),l?.(s)},[_,l]),$=h.useCallback(s=>{a?.(s),r(!1),l?.(!1)},[a,l]);return o==="hidden"?null:e.jsxs("div",{ref:x,id:c,className:`nice-hamburger-menu nice-hamburger-menu--${m} ${g??""}`,style:M,...C,children:[e.jsx("button",{className:"nice-hamburger-menu__trigger",onClick:i,"aria-label":t("nav.menu","Menu"),"aria-expanded":_,type:"button",children:e.jsxs("span",{className:`nice-hamburger-menu__icon ${_?"nice-hamburger-menu__icon--open":""}`,children:[e.jsx("span",{}),e.jsx("span",{}),e.jsx("span",{})]})}),_&&e.jsx("div",{className:"nice-hamburger-menu__backdrop",onClick:i,"aria-hidden":!0}),e.jsxs("div",{className:`nice-hamburger-menu__panel nice-hamburger-menu__panel--${k} ${_?"nice-hamburger-menu__panel--open":""}`,style:{width:D},children:[j&&e.jsx("div",{className:"nice-hamburger-menu__header",children:j}),e.jsx("ul",{className:"nice-hamburger-menu__list",role:"menu",children:b.map(s=>e.jsx("li",{children:e.jsxs("button",{className:`nice-hamburger-menu__item ${s.key===N?"nice-hamburger-menu__item--active":""}`,onClick:()=>$(s),disabled:s.disabled,role:"menuitem",type:"button",children:[s.icon&&e.jsx("span",{className:"nice-hamburger-menu__item-icon",children:s.icon}),e.jsx("span",{children:s.text}),s.badge!==void 0&&e.jsx("span",{className:"nice-hamburger-menu__item-badge",children:s.badge})]})},s.key))}),d&&e.jsx("div",{className:"nice-hamburger-menu__footer",children:d})]})]})});H.displayName="NiceHamburgerMenu";const L=h.forwardRef(({canGoBack:b=!1,canGoForward:N=!1,onBack:a,onForward:p,onRefresh:l,enableShortcuts:k=!0,showRefresh:D=!0,showStop:j=!0,isLoading:d=!1,onStop:m,size:g="md",variant:M="default",tooltipPosition:y="bottom",backIcon:S,forwardIcon:C,refreshIcon:x,stopIcon:c,className:o,style:t,id:u,accessMode:r,disabled:_,...i},$)=>{const s=v.Hs(u),E=v.Zs(r,u),{t:w}=v.$o();if(h.useEffect(()=>{if(!k||_)return;const A=f=>{const R=f.altKey,K=f.ctrlKey||f.metaKey;R&&f.key==="ArrowLeft"?(f.preventDefault(),b&&a?.()):R&&f.key==="ArrowRight"?(f.preventDefault(),N&&p?.()):f.key==="F5"||K&&f.key==="r"?(f.preventDefault(),d?m?.():l?.()):f.key==="Escape"&&d&&(f.preventDefault(),m?.())};return window.addEventListener("keydown",A),()=>window.removeEventListener("keydown",A)},[k,_,b,N,d,a,p,l,m]),E==="hidden")return null;const T=E==="disabled"||_,O=S??e.jsx("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:e.jsx("polyline",{points:"15 18 9 12 15 6"})}),q=C??e.jsx("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:e.jsx("polyline",{points:"9 18 15 12 9 6"})}),z=x??e.jsxs("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[e.jsx("polyline",{points:"23 4 23 10 17 10"}),e.jsx("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"})]}),F=c??e.jsxs("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[e.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),e.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]});return e.jsxs("div",{ref:$,id:s,className:`nice-nav-controls nice-nav-controls--${g} nice-nav-controls--${M}${T?" nice-nav-controls--disabled":""}${o?` ${o}`:""}`,style:t,role:"navigation","aria-label":w("nav.controls","Navigation controls"),...i,children:[e.jsx("button",{type:"button",className:`nice-nav-controls__btn nice-nav-controls__btn--back${b?"":" nice-nav-controls__btn--disabled"}`,onClick:a,disabled:T||!b,"aria-label":w("nav.back","Back"),title:`${w("nav.back","Back")} (Alt+←)`,children:O}),e.jsx("button",{type:"button",className:`nice-nav-controls__btn nice-nav-controls__btn--forward${N?"":" nice-nav-controls__btn--disabled"}`,onClick:p,disabled:T||!N,"aria-label":w("nav.forward","Forward"),title:`${w("nav.forward","Forward")} (Alt+→)`,children:q}),(D||j&&d)&&(d?e.jsx("button",{type:"button",className:"nice-nav-controls__btn nice-nav-controls__btn--stop nice-nav-controls__btn--loading",onClick:m,disabled:T,"aria-label":w("nav.stop","Stop"),title:`${w("nav.stop","Stop")} (Esc)`,children:F}):e.jsx("button",{type:"button",className:"nice-nav-controls__btn nice-nav-controls__btn--refresh",onClick:l,disabled:T,"aria-label":w("nav.refresh","Refresh"),title:`${w("nav.refresh","Refresh")} (F5)`,children:z}))]})});L.displayName="NiceNavigationControls";exports.DEFAULT_SIDEBAR_PREFS=n.DEFAULT_SIDEBAR_PREFS;exports.DesktopContextMenu=n.DesktopContextMenu;exports.DesktopGrid=n.DesktopGrid;exports.DesktopStartMenu=n.DesktopStartMenu;exports.DesktopSystemTray=n.DesktopSystemTray;exports.DesktopTaskbar=n.DesktopTaskbar;exports.NiceAccordion=n.NiceAccordion;exports.NiceAppLayout=n.NiceAppLayout;exports.NiceAuthButtons=n.NiceAuthButtons;exports.NiceBottomNavigation=n.NiceBottomNavigation;exports.NiceBreadcrumb=n.NiceBreadcrumb;exports.NiceCard=n.NiceCard;exports.NiceClassicShell=n.NiceClassicShell;exports.NiceCompactShell=n.NiceCompactShell;exports.NiceConsole=n.NiceConsole;exports.NiceContextMenu=n.NiceContextMenu;exports.NiceDashboardLayout=n.NiceDashboardLayout;exports.NiceDashboardShell=n.NiceDashboardShell;exports.NiceDesktop=n.NiceDesktop;exports.NiceDock=n.NiceDock;exports.NiceDynamicSidebar=n.NiceDynamicSidebar;exports.NiceHybridShell=n.NiceHybridShell;exports.NiceKioskShell=n.NiceKioskShell;exports.NiceMdiWorkspace=n.NiceMdiWorkspace;exports.NiceMenu=n.NiceMenu;exports.NiceMinimalShell=n.NiceMinimalShell;exports.NiceModeSelector=n.NiceModeSelector;exports.NiceModernShell=n.NiceModernShell;exports.NiceModuleLifecyclePanel=n.NiceModuleLifecyclePanel;exports.NiceMultiView=n.NiceMultiView;exports.NiceNavMenu=n.NiceNavMenu;exports.NiceNavbar=n.NiceNavbar;exports.NiceOnboardingWizard=n.NiceOnboardingWizard;exports.NiceOrganizationProfileForm=n.NiceOrganizationProfileForm;exports.NicePwaShell=n.NicePwaShell;exports.NiceSetupWizard=n.NiceSetupWizard;exports.NiceSidebarNav=n.NiceSidebarNav;exports.NiceSplitter=n.NiceSplitter;exports.NiceTabPanel=n.NiceTabPanel;exports.NiceTenantSwitcher=n.NiceTenantSwitcher;exports.NiceToolbar=n.NiceToolbar;exports.NiceUserMenu=n.NiceUserMenu;exports.NiceWizard=n.NiceWizard;exports.SIDEBAR_MODE_META=n.SIDEBAR_MODE_META;exports.NiceTabs=Z.NiceTabs;exports.NicePagination=U.NicePagination;exports.NiceDockMenu=W;exports.NiceHamburgerMenu=H;exports.NiceNavigationControls=L;exports.NiceRibbonMenu=B;exports.NiceSidebarMenu=I;exports.NiceTopMenu=P;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("./NiceModuleLifecyclePanel-C4jlm9tl.cjs"),e=require("react/jsx-runtime"),v=require("./core-D0ElqRZA.cjs"),h=require("react"),Z=require("./NiceTabs-dwNCzbJ2.cjs"),U=require("./NicePagination-CJqksuAl.cjs"),I=h.forwardRef(({items:b,activeKey:N,collapsed:a=!1,width:p=240,collapsedWidth:l=52,onItemClick:k,onCollapseChange:D,header:j,footer:d,size:m="md",className:g,style:M,id:y,accessMode:S,...C},x)=>{const c=v.Hs(y),o=v.Zs(S,y),[t,u]=h.useState(new Set),r=h.useCallback(i=>{u($=>{const s=new Set($);return s.has(i)?s.delete(i):s.add(i),s})},[]);if(o==="hidden")return null;const _=(i,$=0)=>{const s=i.children&&i.children.length>0,E=t.has(i.key),w=i.key===N;return e.jsxs("li",{className:"nice-sidebar-menu__item",children:[e.jsxs("button",{className:`nice-sidebar-menu__btn ${w?"nice-sidebar-menu__btn--active":""} ${i.disabled?"nice-sidebar-menu__btn--disabled":""}`,style:{paddingLeft:a?void 0:12+$*16},onClick:()=>s?r(i.key):k?.(i),disabled:i.disabled,title:a?i.text:void 0,type:"button",children:[i.icon&&e.jsx("span",{className:"nice-sidebar-menu__icon",children:i.icon}),!a&&e.jsx("span",{className:"nice-sidebar-menu__label",children:i.text}),!a&&i.badge!==void 0&&e.jsx("span",{className:"nice-sidebar-menu__badge",children:i.badge}),!a&&s&&e.jsx("span",{className:"nice-sidebar-menu__chevron",children:E?"▾":"▸"})]}),s&&E&&!a&&e.jsx("ul",{className:"nice-sidebar-menu__children",children:i.children.map(T=>_(T,$+1))})]},i.key)};return e.jsxs("nav",{ref:x,id:c,className:`nice-sidebar-menu nice-sidebar-menu--${m} ${a?"nice-sidebar-menu--collapsed":""} ${g??""}`,style:{...M,width:a?l:p},...C,children:[j&&e.jsx("div",{className:"nice-sidebar-menu__header",children:j}),e.jsx("ul",{className:"nice-sidebar-menu__list",role:"list",children:b.map(i=>_(i))}),d&&e.jsx("div",{className:"nice-sidebar-menu__footer",children:d})]})});I.displayName="NiceSidebarMenu";const P=h.forwardRef(({items:b,activeKey:N,onItemClick:a,brand:p,actions:l,size:k="md",className:D,style:j,id:d,accessMode:m,...g},M)=>{const y=v.Hs(d),S=v.Zs(m,d),[C,x]=h.useState(null);return S==="hidden"?null:e.jsxs("nav",{ref:M,id:y,className:`nice-top-menu nice-top-menu--${k} ${D??""}`,style:j,...g,children:[p&&e.jsx("div",{className:"nice-top-menu__brand",children:p}),e.jsx("ul",{className:"nice-top-menu__items",role:"menubar",children:b.map(c=>{const o=c.children&&c.children.length>0,t=C===c.key;return e.jsxs("li",{className:"nice-top-menu__item",onMouseEnter:()=>o&&x(c.key),onMouseLeave:()=>o&&x(null),children:[e.jsxs("button",{className:`nice-top-menu__btn ${c.key===N?"nice-top-menu__btn--active":""}`,onClick:()=>o?x(t?null:c.key):a?.(c),role:"menuitem","aria-haspopup":o,"aria-expanded":t,disabled:c.disabled,type:"button",children:[c.icon&&e.jsx("span",{children:c.icon}),e.jsx("span",{children:c.text}),o&&e.jsx("span",{className:"nice-top-menu__chevron",children:"▾"})]}),o&&t&&e.jsx("ul",{className:"nice-top-menu__dropdown",role:"menu",children:c.children.map(u=>e.jsx("li",{children:e.jsxs("button",{className:`nice-top-menu__dropdown-btn ${u.key===N?"nice-top-menu__dropdown-btn--active":""}`,onClick:()=>{a?.(u),x(null)},disabled:u.disabled,role:"menuitem",type:"button",children:[u.icon&&e.jsx("span",{children:u.icon}),e.jsx("span",{children:u.text}),u.badge!==void 0&&e.jsx("span",{className:"nice-top-menu__badge",children:u.badge})]})},u.key))})]},c.key)})}),l&&e.jsx("div",{className:"nice-top-menu__actions",children:l})]})});P.displayName="NiceTopMenu";const B=h.forwardRef(({tabs:b,activeTab:N,onTabChange:a,onItemClick:p,minimized:l=!1,onMinimizeToggle:k,size:D="md",className:j,style:d,id:m,accessMode:g,...M},y)=>{const S=v.Hs(m),C=v.Zs(g,m),[x,c]=h.useState(N??b[0]?.key),o=N??x,t=b.find(r=>r.key===o),u=h.useCallback(r=>{c(r),a?.(r)},[a]);return C==="hidden"?null:e.jsxs("div",{ref:y,id:S,className:`nice-ribbon-menu nice-ribbon-menu--${D} ${l?"nice-ribbon-menu--minimized":""} ${j??""}`,style:d,...M,children:[e.jsxs("div",{className:"nice-ribbon-menu__tabs",role:"tablist",children:[b.map(r=>e.jsx("button",{className:`nice-ribbon-menu__tab ${r.key===o?"nice-ribbon-menu__tab--active":""}`,onClick:()=>u(r.key),role:"tab","aria-selected":r.key===o,type:"button",children:r.label},r.key)),e.jsx("button",{className:"nice-ribbon-menu__minimize",onClick:()=>k?.(!l),type:"button","aria-label":l?"Expand":"Minimize",children:l?"▼":"▲"})]}),!l&&t&&e.jsx("div",{className:"nice-ribbon-menu__panel",role:"tabpanel",children:t.groups.map((r,_)=>e.jsxs("div",{className:"nice-ribbon-menu__group",children:[e.jsx("div",{className:"nice-ribbon-menu__group-items",children:r.items.map(i=>e.jsxs("button",{className:"nice-ribbon-menu__item",onClick:()=>p?.(i),disabled:i.disabled,type:"button",children:[i.icon&&e.jsx("span",{className:"nice-ribbon-menu__item-icon",children:i.icon}),e.jsx("span",{className:"nice-ribbon-menu__item-label",children:i.text})]},i.key))}),e.jsx("div",{className:"nice-ribbon-menu__group-label",children:r.label})]},_))})]})});B.displayName="NiceRibbonMenu";const W=h.forwardRef(({items:b,activeKey:N,onItemClick:a,position:p="bottom",autoHide:l=!1,iconSize:k=40,size:D="md",className:j,style:d,id:m,accessMode:g,...M},y)=>{const S=v.Hs(m),C=v.Zs(g,m),[x,c]=h.useState(!1),o=!l||x;return C==="hidden"?null:e.jsx("div",{ref:y,id:S,className:`nice-dock-menu nice-dock-menu--${p} nice-dock-menu--${D} ${l&&!o?"nice-dock-menu--hidden":""} ${j??""}`,style:d,onMouseEnter:()=>c(!0),onMouseLeave:()=>c(!1),...M,children:e.jsx("div",{className:"nice-dock-menu__items",children:b.map(t=>e.jsxs("button",{className:`nice-dock-menu__item ${t.key===N?"nice-dock-menu__item--active":""}`,onClick:()=>a?.(t),disabled:t.disabled,title:t.text,type:"button",style:{width:k,height:k},children:[t.icon?e.jsx("span",{className:"nice-dock-menu__icon",children:t.icon}):e.jsx("span",{children:t.text[0]}),t.badge!==void 0&&e.jsx("span",{className:"nice-dock-menu__badge",children:t.badge})]},t.key))})})});W.displayName="NiceDockMenu";const H=h.forwardRef(({items:b,activeKey:N,onItemClick:a,open:p,onOpenChange:l,position:k="left",panelWidth:D=280,header:j,footer:d,size:m="md",className:g,style:M,id:y,accessMode:S,...C},x)=>{const c=v.Hs(y),o=v.Zs(S,y),{t}=v.Jo(),[u,r]=h.useState(!1),_=p??u,i=h.useCallback(()=>{const s=!_;r(s),l?.(s)},[_,l]),$=h.useCallback(s=>{a?.(s),r(!1),l?.(!1)},[a,l]);return o==="hidden"?null:e.jsxs("div",{ref:x,id:c,className:`nice-hamburger-menu nice-hamburger-menu--${m} ${g??""}`,style:M,...C,children:[e.jsx("button",{className:"nice-hamburger-menu__trigger",onClick:i,"aria-label":t("nav.menu","Menu"),"aria-expanded":_,type:"button",children:e.jsxs("span",{className:`nice-hamburger-menu__icon ${_?"nice-hamburger-menu__icon--open":""}`,children:[e.jsx("span",{}),e.jsx("span",{}),e.jsx("span",{})]})}),_&&e.jsx("div",{className:"nice-hamburger-menu__backdrop",onClick:i,"aria-hidden":!0}),e.jsxs("div",{className:`nice-hamburger-menu__panel nice-hamburger-menu__panel--${k} ${_?"nice-hamburger-menu__panel--open":""}`,style:{width:D},children:[j&&e.jsx("div",{className:"nice-hamburger-menu__header",children:j}),e.jsx("ul",{className:"nice-hamburger-menu__list",role:"menu",children:b.map(s=>e.jsx("li",{children:e.jsxs("button",{className:`nice-hamburger-menu__item ${s.key===N?"nice-hamburger-menu__item--active":""}`,onClick:()=>$(s),disabled:s.disabled,role:"menuitem",type:"button",children:[s.icon&&e.jsx("span",{className:"nice-hamburger-menu__item-icon",children:s.icon}),e.jsx("span",{children:s.text}),s.badge!==void 0&&e.jsx("span",{className:"nice-hamburger-menu__item-badge",children:s.badge})]})},s.key))}),d&&e.jsx("div",{className:"nice-hamburger-menu__footer",children:d})]})]})});H.displayName="NiceHamburgerMenu";const L=h.forwardRef(({canGoBack:b=!1,canGoForward:N=!1,onBack:a,onForward:p,onRefresh:l,enableShortcuts:k=!0,showRefresh:D=!0,showStop:j=!0,isLoading:d=!1,onStop:m,size:g="md",variant:M="default",tooltipPosition:y="bottom",backIcon:S,forwardIcon:C,refreshIcon:x,stopIcon:c,className:o,style:t,id:u,accessMode:r,disabled:_,...i},$)=>{const s=v.Hs(u),E=v.Zs(r,u),{t:w}=v.Jo();if(h.useEffect(()=>{if(!k||_)return;const A=f=>{const R=f.altKey,K=f.ctrlKey||f.metaKey;R&&f.key==="ArrowLeft"?(f.preventDefault(),b&&a?.()):R&&f.key==="ArrowRight"?(f.preventDefault(),N&&p?.()):f.key==="F5"||K&&f.key==="r"?(f.preventDefault(),d?m?.():l?.()):f.key==="Escape"&&d&&(f.preventDefault(),m?.())};return window.addEventListener("keydown",A),()=>window.removeEventListener("keydown",A)},[k,_,b,N,d,a,p,l,m]),E==="hidden")return null;const T=E==="disabled"||_,O=S??e.jsx("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:e.jsx("polyline",{points:"15 18 9 12 15 6"})}),q=C??e.jsx("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:e.jsx("polyline",{points:"9 18 15 12 9 6"})}),z=x??e.jsxs("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[e.jsx("polyline",{points:"23 4 23 10 17 10"}),e.jsx("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"})]}),F=c??e.jsxs("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[e.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),e.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]});return e.jsxs("div",{ref:$,id:s,className:`nice-nav-controls nice-nav-controls--${g} nice-nav-controls--${M}${T?" nice-nav-controls--disabled":""}${o?` ${o}`:""}`,style:t,role:"navigation","aria-label":w("nav.controls","Navigation controls"),...i,children:[e.jsx("button",{type:"button",className:`nice-nav-controls__btn nice-nav-controls__btn--back${b?"":" nice-nav-controls__btn--disabled"}`,onClick:a,disabled:T||!b,"aria-label":w("nav.back","Back"),title:`${w("nav.back","Back")} (Alt+←)`,children:O}),e.jsx("button",{type:"button",className:`nice-nav-controls__btn nice-nav-controls__btn--forward${N?"":" nice-nav-controls__btn--disabled"}`,onClick:p,disabled:T||!N,"aria-label":w("nav.forward","Forward"),title:`${w("nav.forward","Forward")} (Alt+→)`,children:q}),(D||j&&d)&&(d?e.jsx("button",{type:"button",className:"nice-nav-controls__btn nice-nav-controls__btn--stop nice-nav-controls__btn--loading",onClick:m,disabled:T,"aria-label":w("nav.stop","Stop"),title:`${w("nav.stop","Stop")} (Esc)`,children:F}):e.jsx("button",{type:"button",className:"nice-nav-controls__btn nice-nav-controls__btn--refresh",onClick:l,disabled:T,"aria-label":w("nav.refresh","Refresh"),title:`${w("nav.refresh","Refresh")} (F5)`,children:z}))]})});L.displayName="NiceNavigationControls";exports.DEFAULT_SIDEBAR_PREFS=n.DEFAULT_SIDEBAR_PREFS;exports.DesktopContextMenu=n.DesktopContextMenu;exports.DesktopGrid=n.DesktopGrid;exports.DesktopStartMenu=n.DesktopStartMenu;exports.DesktopSystemTray=n.DesktopSystemTray;exports.DesktopTaskbar=n.DesktopTaskbar;exports.NiceAccordion=n.NiceAccordion;exports.NiceAppLayout=n.NiceAppLayout;exports.NiceAuthButtons=n.NiceAuthButtons;exports.NiceBottomNavigation=n.NiceBottomNavigation;exports.NiceBreadcrumb=n.NiceBreadcrumb;exports.NiceCard=n.NiceCard;exports.NiceClassicShell=n.NiceClassicShell;exports.NiceCompactShell=n.NiceCompactShell;exports.NiceConsole=n.NiceConsole;exports.NiceContextMenu=n.NiceContextMenu;exports.NiceDashboardLayout=n.NiceDashboardLayout;exports.NiceDashboardShell=n.NiceDashboardShell;exports.NiceDesktop=n.NiceDesktop;exports.NiceDock=n.NiceDock;exports.NiceDynamicSidebar=n.NiceDynamicSidebar;exports.NiceHybridShell=n.NiceHybridShell;exports.NiceKioskShell=n.NiceKioskShell;exports.NiceMdiWorkspace=n.NiceMdiWorkspace;exports.NiceMenu=n.NiceMenu;exports.NiceMinimalShell=n.NiceMinimalShell;exports.NiceModeSelector=n.NiceModeSelector;exports.NiceModernShell=n.NiceModernShell;exports.NiceModuleLifecyclePanel=n.NiceModuleLifecyclePanel;exports.NiceMultiView=n.NiceMultiView;exports.NiceNavMenu=n.NiceNavMenu;exports.NiceNavbar=n.NiceNavbar;exports.NiceOnboardingWizard=n.NiceOnboardingWizard;exports.NiceOrganizationProfileForm=n.NiceOrganizationProfileForm;exports.NicePwaShell=n.NicePwaShell;exports.NiceSetupWizard=n.NiceSetupWizard;exports.NiceSidebarNav=n.NiceSidebarNav;exports.NiceSplitter=n.NiceSplitter;exports.NiceTabPanel=n.NiceTabPanel;exports.NiceTenantSwitcher=n.NiceTenantSwitcher;exports.NiceToolbar=n.NiceToolbar;exports.NiceUserMenu=n.NiceUserMenu;exports.NiceWizard=n.NiceWizard;exports.SIDEBAR_MODE_META=n.SIDEBAR_MODE_META;exports.NiceTabs=Z.NiceTabs;exports.NicePagination=U.NicePagination;exports.NiceDockMenu=W;exports.NiceHamburgerMenu=H;exports.NiceNavigationControls=L;exports.NiceRibbonMenu=B;exports.NiceSidebarMenu=I;exports.NiceTopMenu=P;
@@ -1,10 +1,10 @@
1
- import { D as ae, a as ie, b as ce, c as se, d as le, e as te, N as re, f as oe, g as de, h as ue, i as be, j as me, k as _e, l as he, m as pe, n as Ne, o as ve, p as ke, q as ye, r as fe, s as ge, t as $e, u as xe, v as we, w as Me, x as Ce, y as De, z as Se, A as Ee, B as Ie, C as Te, E as Ae, F as Pe, G as Be, H as Le, I as Re, J as We, K as He, L as Ke, M as Oe, O as Fe, P as je, Q as ze, S as Ue } from "./NiceModuleLifecyclePanel-D4xWUswk.js";
1
+ import { D as ae, a as ie, b as ce, c as se, d as le, e as te, N as re, f as oe, g as de, h as ue, i as be, j as me, k as _e, l as he, m as pe, n as Ne, o as ve, p as ke, q as ye, r as fe, s as ge, t as $e, u as xe, v as we, w as Me, x as Ce, y as De, z as Se, A as Ee, B as Ie, C as Te, E as Ae, F as Pe, G as Be, H as Le, I as Re, J as We, K as He, L as Ke, M as Oe, O as Fe, P as je, Q as ze, S as Je } from "./NiceModuleLifecyclePanel-L5FNYzF9.js";
2
2
  import { jsx as e, jsxs as o } from "react/jsx-runtime";
3
- import { H as E, Z as I, $ as W } from "./core-XsWxyBHD.js";
3
+ import { H as E, Z as I, J as W } from "./core-BFu5opn6.js";
4
4
  import { forwardRef as T, useState as P, useCallback as B, useEffect as z } from "react";
5
- import { f as Ze } from "./NiceTabs-CJ8G2t0-.js";
6
- import { N as Je } from "./NicePagination-DnnypBiE.js";
7
- const U = T(
5
+ import { f as Ve } from "./NiceTabs-nQEYYbsV.js";
6
+ import { N as qe } from "./NicePagination-d6vm1ce3.js";
7
+ const J = T(
8
8
  ({
9
9
  items: b,
10
10
  activeKey: m,
@@ -70,8 +70,8 @@ const U = T(
70
70
  );
71
71
  }
72
72
  );
73
- U.displayName = "NiceSidebarMenu";
74
- const V = T(
73
+ J.displayName = "NiceSidebarMenu";
74
+ const U = T(
75
75
  ({
76
76
  items: b,
77
77
  activeKey: m,
@@ -150,8 +150,8 @@ const V = T(
150
150
  );
151
151
  }
152
152
  );
153
- V.displayName = "NiceTopMenu";
154
- const Z = T(
153
+ U.displayName = "NiceTopMenu";
154
+ const V = T(
155
155
  ({
156
156
  tabs: b,
157
157
  activeTab: m,
@@ -227,8 +227,8 @@ const Z = T(
227
227
  );
228
228
  }
229
229
  );
230
- Z.displayName = "NiceRibbonMenu";
231
- const q = T(
230
+ V.displayName = "NiceRibbonMenu";
231
+ const Z = T(
232
232
  ({
233
233
  items: b,
234
234
  activeKey: m,
@@ -274,8 +274,8 @@ const q = T(
274
274
  );
275
275
  }
276
276
  );
277
- q.displayName = "NiceDockMenu";
278
- const J = T(
277
+ Z.displayName = "NiceDockMenu";
278
+ const q = T(
279
279
  ({
280
280
  items: b,
281
281
  activeKey: m,
@@ -364,7 +364,7 @@ const J = T(
364
364
  );
365
365
  }
366
366
  );
367
- J.displayName = "NiceHamburgerMenu";
367
+ q.displayName = "NiceHamburgerMenu";
368
368
  const Q = T(
369
369
  ({
370
370
  canGoBack: b = !1,
@@ -548,9 +548,9 @@ export {
548
548
  ke as NiceDashboardShell,
549
549
  ye as NiceDesktop,
550
550
  fe as NiceDock,
551
- q as NiceDockMenu,
551
+ Z as NiceDockMenu,
552
552
  ge as NiceDynamicSidebar,
553
- J as NiceHamburgerMenu,
553
+ q as NiceHamburgerMenu,
554
554
  $e as NiceHybridShell,
555
555
  xe as NiceKioskShell,
556
556
  we as NiceMdiWorkspace,
@@ -565,19 +565,19 @@ export {
565
565
  Q as NiceNavigationControls,
566
566
  Pe as NiceOnboardingWizard,
567
567
  Be as NiceOrganizationProfileForm,
568
- Je as NicePagination,
568
+ qe as NicePagination,
569
569
  Le as NicePwaShell,
570
- Z as NiceRibbonMenu,
570
+ V as NiceRibbonMenu,
571
571
  Re as NiceSetupWizard,
572
- U as NiceSidebarMenu,
572
+ J as NiceSidebarMenu,
573
573
  We as NiceSidebarNav,
574
574
  He as NiceSplitter,
575
575
  Ke as NiceTabPanel,
576
- Ze as NiceTabs,
576
+ Ve as NiceTabs,
577
577
  Oe as NiceTenantSwitcher,
578
578
  Fe as NiceToolbar,
579
- V as NiceTopMenu,
579
+ U as NiceTopMenu,
580
580
  je as NiceUserMenu,
581
581
  ze as NiceWizard,
582
- Ue as SIDEBAR_MODE_META
582
+ Je as SIDEBAR_MODE_META
583
583
  };
package/dist/overlays.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const N=require("./NiceWindow-D6SjpDc4.cjs"),r=require("react/jsx-runtime"),M=require("./core-BfeyB9A8.cjs"),e=require("react"),B=require("react-dom");function Y(){const t=e.useContext(M.lr);return t?.portalTarget?t.portalTarget:typeof document<"u"?document.body:null}const H=({open:t,onClose:s,children:v,title:a,size:g="md",closeOnBackdropClick:l=!0,closeOnEscape:d=!0,disableFocusTrap:u=!1,disableBodyScroll:j=!0,zIndex:_=1e3,className:p,style:P})=>{const w=e.useRef(null);M.Ps(w,t&&!u);const y=Y();e.useEffect(()=>{if(!j&&t){const n=document.body.style.overflow;return document.body.style.overflow="hidden",()=>{document.body.style.overflow=n}}},[t,j]),e.useEffect(()=>{if(!d||!t)return;const n=x=>{x.key==="Escape"&&(x.preventDefault(),s())};return document.addEventListener("keydown",n),()=>document.removeEventListener("keydown",n)},[d,t,s]);const f=e.useCallback(n=>{l&&n.target===n.currentTarget&&s()},[l,s]);if(!t)return null;const i={sm:"nice-modal--sm",md:"nice-modal--md",lg:"nice-modal--lg",xl:"nice-modal--xl",full:"nice-modal--full"}[g];return B.createPortal(r.jsx("div",{className:"nice-modal__overlay",style:{zIndex:_},onClick:f,role:"presentation",children:r.jsx("div",{ref:w,className:`nice-modal ${i} ${p||""}`,role:"dialog","aria-modal":"true","aria-label":a,style:P,tabIndex:-1,children:v})}),y)},W=({children:t,showClose:s=!0,onClose:v,className:a})=>r.jsxs("div",{className:`nice-modal__header ${a||""}`,children:[r.jsx("div",{className:"nice-modal__title",children:t}),s&&v&&r.jsx("button",{type:"button",className:"nice-modal__close",onClick:v,"aria-label":"Close",children:r.jsx("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",stroke:"currentColor",strokeWidth:"2",children:r.jsx("path",{d:"M4 4l12 12M4 16L16 4"})})})]}),O=({children:t,className:s})=>r.jsx("div",{className:`nice-modal__body ${s||""}`,children:t}),q=({children:t,className:s})=>r.jsx("div",{className:`nice-modal__footer ${s||""}`,children:t}),K=({open:t,onClose:s,children:v,position:a="right",size:g=320,title:l,closeOnBackdropClick:d=!0,closeOnEscape:u=!0,swipeToClose:j=!0,zIndex:_=1e3,className:p,style:P})=>{const w=e.useRef(null),[y,f]=e.useState(!1),[i,n]=e.useState(0);M.Ps(w,t);const x=Y();e.useEffect(()=>{if(!u||!t)return;const o=k=>{k.key==="Escape"&&(k.preventDefault(),s())};return document.addEventListener("keydown",o),()=>document.removeEventListener("keydown",o)},[u,t,s]);const h=e.useCallback(o=>{let k=0;switch(a){case"left":k=Math.min(0,o.deltaX);break;case"right":k=Math.max(0,o.deltaX);break;case"top":k=Math.min(0,o.deltaY);break;case"bottom":k=Math.max(0,o.deltaY);break}n(k)},[a]),D=e.useCallback(o=>{let $=!1;switch(a){case"left":$=o.deltaX<-100;break;case"right":$=o.deltaX>100;break;case"top":$=o.deltaY<-100;break;case"bottom":$=o.deltaY>100;break}$&&(M.Xr("light"),s()),n(0),f(!1)},[a,s]),{ref:C}=M.ac({enabled:j&&t,onPanStart:()=>f(!0),onPan:h,onPanEnd:D}),E=e.useCallback(o=>{d&&o.target===o.currentTarget&&s()},[d,s]);if(!t)return null;const S=a==="left"||a==="right",L=S?{width:typeof g=="number"?`${g}px`:g}:{height:typeof g=="number"?`${g}px`:g},c=()=>{if(y)return S?`translateX(${i}px)`:`translateY(${i}px)`};return B.createPortal(r.jsxs(r.Fragment,{children:[r.jsx("div",{className:`nice-drawer__overlay ${t?"nice-drawer__overlay--visible":""}`,style:{zIndex:_},onClick:E}),r.jsx("div",{ref:o=>{w.current=o,C.current=o},className:`nice-drawer nice-drawer--${a} ${t?"nice-drawer--open":""} ${p||""}`,style:{...L,zIndex:_+1,transform:c(),transition:y?"none":void 0,...P},role:"dialog","aria-modal":"true","aria-label":l,tabIndex:-1,children:v})]}),x)},F=({open:t,onClose:s,children:v,title:a,showHandle:g=!0,snapPoints:l=[.5,.9],initialSnap:d=0,expandable:u=!0,closeOnBackdropClick:j=!0,closeOnEscape:_=!0,hapticFeedback:p=!0,zIndex:P=1e3,className:w,style:y})=>{const f=e.useRef(null),i=e.useRef(null),[n,x]=e.useState(d),[h,D]=e.useState(!1),[C,E]=e.useState(0),S=e.useRef(0);e.useEffect(()=>{t&&(x(d),E(0))},[t,d]),M.Ps(f,t);const L=Y();e.useEffect(()=>{if(!_||!t)return;const m=b=>{b.key==="Escape"&&(b.preventDefault(),s())};return document.addEventListener("keydown",m),()=>document.removeEventListener("keydown",m)},[_,t,s]),e.useEffect(()=>{if(t){const m=document.body.style.overflow;return document.body.style.overflow="hidden",()=>{document.body.style.overflow=m}}},[t]);const c=e.useCallback(m=>{const b=m.target.closest(".nice-bottom-sheet__handle"),I=i.current,X=!I||I.scrollTop<=0;!b&&!X||(D(!0),S.current=m.touches[0].clientY)},[]),o=e.useCallback(m=>{if(!h)return;const b=m.touches[0].clientY-S.current;(b>0||n<l.length-1)&&E(b)},[h,n,l.length]),k=e.useCallback(()=>{if(!h)return;const m=window.innerHeight;l[n]*m;const b=-C,I=m*.15;b>I&&u&&n<l.length-1?(x(n+1),p&&M.Xr("selection")):b<-I&&(n>0?(x(n-1),p&&M.Xr("selection")):(p&&M.Xr("light"),s())),D(!1),E(0)},[h,C,n,l,u,p,s]),$=e.useCallback(()=>{j&&s()},[j,s]);if(!t)return null;const R=l[n]*100,T=h?C:0;return B.createPortal(r.jsxs(r.Fragment,{children:[r.jsx("div",{className:`nice-bottom-sheet__overlay ${t?"nice-bottom-sheet__overlay--visible":""}`,style:{zIndex:P},onClick:$}),r.jsxs("div",{ref:f,className:`nice-bottom-sheet ${t?"nice-bottom-sheet--open":""} ${w||""}`,style:{zIndex:P+1,height:`${R}vh`,transform:`translateY(${Math.max(0,T)}px)`,transition:h?"none":"transform 0.3s ease-out, height 0.3s ease-out",...y},role:"dialog","aria-modal":"true","aria-label":a,tabIndex:-1,onTouchStart:c,onTouchMove:o,onTouchEnd:k,children:[g&&r.jsx("div",{className:"nice-bottom-sheet__handle","aria-hidden":"true"}),a&&r.jsx("div",{className:"nice-bottom-sheet__title",children:a}),r.jsx("div",{ref:i,className:"nice-bottom-sheet__content",children:v})]})]}),L)},z=({trigger:t,children:s,placement:v="bottom",triggerMode:a="click",open:g,onOpenChange:l,hoverDelay:d=200,offset:u=8,className:j,showArrow:_=!0})=>{const[p,P]=e.useState(!1),w=e.useRef(null),y=e.useRef(null),f=e.useRef(null),i=Y(),n=g!==void 0,x=n?g:p,h=e.useCallback(c=>{n||P(c),l?.(c)},[n,l]);M.$s(y,()=>{a!=="manual"&&x&&h(!1)});const D=e.useCallback(()=>{a==="click"&&h(!x)},[a,x,h]),C=e.useCallback(()=>{a==="hover"&&(f.current&&window.clearTimeout(f.current),f.current=window.setTimeout(()=>h(!0),d))},[a,d,h]),E=e.useCallback(()=>{a==="hover"&&(f.current&&window.clearTimeout(f.current),f.current=window.setTimeout(()=>h(!1),d))},[a,d,h]),[S,L]=e.useState({top:0,left:0});return e.useEffect(()=>{if(!x||!w.current||!y.current)return;const c=w.current.getBoundingClientRect(),o=y.current.getBoundingClientRect(),k=window.innerWidth,$=window.innerHeight;let R=0,T=0;const[m,b="center"]=v.split("-");switch(m){case"top":R=c.top-o.height-u,T=c.left+(c.width-o.width)/2;break;case"bottom":R=c.bottom+u,T=c.left+(c.width-o.width)/2;break;case"left":R=c.top+(c.height-o.height)/2,T=c.left-o.width-u;break;case"right":R=c.top+(c.height-o.height)/2,T=c.right+u;break}m==="top"||m==="bottom"?(b==="start"&&(T=c.left),b==="end"&&(T=c.right-o.width)):(b==="start"&&(R=c.top),b==="end"&&(R=c.bottom-o.height)),T=Math.max(8,Math.min(k-o.width-8,T)),R=Math.max(8,Math.min($-o.height-8,R)),L({top:R,left:T})},[x,v,u]),r.jsxs(r.Fragment,{children:[r.jsx("div",{ref:w,className:"nice-popover__trigger",onClick:D,onMouseEnter:C,onMouseLeave:E,style:{display:"inline-block"},children:t}),x&&B.createPortal(r.jsxs("div",{ref:y,className:`nice-popover nice-popover--${v} ${j||""}`,style:{position:"fixed",top:S.top,left:S.left,zIndex:1100},onMouseEnter:C,onMouseLeave:E,role:"tooltip",children:[_&&r.jsx("div",{className:"nice-popover__arrow"}),r.jsx("div",{className:"nice-popover__content",children:s})]}),i)]})},A=({items:t,children:s,onOpen:v,onClose:a,className:g})=>{const[l,d]=e.useState(!1),[u,j]=e.useState({x:0,y:0}),_=e.useRef(null),p=e.useRef(null),P=Y();M.$s(_,()=>{l&&(d(!1),a?.())});const w=e.useCallback(i=>{i.preventDefault(),j({x:i.clientX,y:i.clientY}),d(!0),v?.()},[v]),y=e.useCallback(i=>{!i.disabled&&i.onClick&&(i.onClick(),d(!1),a?.())},[a]);e.useEffect(()=>{if(!l)return;const i=n=>{n.key==="Escape"&&(d(!1),a?.())};return document.addEventListener("keydown",i),()=>document.removeEventListener("keydown",i)},[l,a]);const f=i=>r.jsx("ul",{className:"nice-context-menu__list",role:"menu",children:i.map(n=>n.divider?r.jsx("li",{className:"nice-context-menu__divider",role:"separator"},n.key):r.jsx("li",{role:"presentation",children:r.jsxs("button",{type:"button",className:`nice-context-menu__item ${n.disabled?"nice-context-menu__item--disabled":""} ${n.danger?"nice-context-menu__item--danger":""}`,role:"menuitem",disabled:n.disabled,onClick:()=>y(n),children:[n.icon&&r.jsx("span",{className:"nice-context-menu__icon",children:n.icon}),r.jsx("span",{className:"nice-context-menu__label",children:n.label})]})},n.key))});return r.jsxs(r.Fragment,{children:[r.jsx("div",{ref:p,onContextMenu:w,style:{display:"contents"},children:s}),l&&B.createPortal(r.jsx("div",{ref:_,className:`nice-context-menu ${g||""}`,style:{position:"fixed",left:u.x,top:u.y,zIndex:1200},role:"menu",children:f(t)}),P)]})};exports.NiceActionSheet=N.NiceActionSheet;exports.NiceBlockUI=N.NiceBlockUI;exports.NiceBox=N.NiceBox;exports.NiceCommandPaletteProvider=N.NiceCommandPaletteProvider;exports.NiceLoadPanel=N.NiceLoadPanel;exports.NicePopover=N.NicePopover;exports.NiceResizable=N.NiceResizable;exports.NiceResponsiveBox=N.NiceResponsiveBox;exports.NiceScrollView=N.NiceScrollView;exports.NiceTutorial=N.NiceTutorial;exports.NiceTutorialProvider=N.NiceTutorialProvider;exports.NiceWindow=N.NiceWindow;exports.NiceWindowManager=N.NiceWindowManager;exports.useCommandPalette=N.useCommandPalette;exports.useRegisterCommands=N.useRegisterCommands;exports.NiceBottomSheet=F;exports.NiceContextMenu=A;exports.NiceDrawer=K;exports.NiceModal=H;exports.NiceModalBody=O;exports.NiceModalFooter=q;exports.NiceModalHeader=W;exports.NiceOverlayPopover=z;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const N=require("./NiceWindow-fcTJOlYf.cjs"),r=require("react/jsx-runtime"),M=require("./core-D0ElqRZA.cjs"),e=require("react"),B=require("react-dom");function Y(){const t=e.useContext(M.lr);return t?.portalTarget?t.portalTarget:typeof document<"u"?document.body:null}const H=({open:t,onClose:s,children:v,title:a,size:g="md",closeOnBackdropClick:l=!0,closeOnEscape:d=!0,disableFocusTrap:u=!1,disableBodyScroll:j=!0,zIndex:_=1e3,className:p,style:P})=>{const w=e.useRef(null);M.Ps(w,t&&!u);const y=Y();e.useEffect(()=>{if(!j&&t){const n=document.body.style.overflow;return document.body.style.overflow="hidden",()=>{document.body.style.overflow=n}}},[t,j]),e.useEffect(()=>{if(!d||!t)return;const n=x=>{x.key==="Escape"&&(x.preventDefault(),s())};return document.addEventListener("keydown",n),()=>document.removeEventListener("keydown",n)},[d,t,s]);const f=e.useCallback(n=>{l&&n.target===n.currentTarget&&s()},[l,s]);if(!t)return null;const i={sm:"nice-modal--sm",md:"nice-modal--md",lg:"nice-modal--lg",xl:"nice-modal--xl",full:"nice-modal--full"}[g];return B.createPortal(r.jsx("div",{className:"nice-modal__overlay",style:{zIndex:_},onClick:f,role:"presentation",children:r.jsx("div",{ref:w,className:`nice-modal ${i} ${p||""}`,role:"dialog","aria-modal":"true","aria-label":a,style:P,tabIndex:-1,children:v})}),y)},W=({children:t,showClose:s=!0,onClose:v,className:a})=>r.jsxs("div",{className:`nice-modal__header ${a||""}`,children:[r.jsx("div",{className:"nice-modal__title",children:t}),s&&v&&r.jsx("button",{type:"button",className:"nice-modal__close",onClick:v,"aria-label":"Close",children:r.jsx("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",stroke:"currentColor",strokeWidth:"2",children:r.jsx("path",{d:"M4 4l12 12M4 16L16 4"})})})]}),O=({children:t,className:s})=>r.jsx("div",{className:`nice-modal__body ${s||""}`,children:t}),q=({children:t,className:s})=>r.jsx("div",{className:`nice-modal__footer ${s||""}`,children:t}),K=({open:t,onClose:s,children:v,position:a="right",size:g=320,title:l,closeOnBackdropClick:d=!0,closeOnEscape:u=!0,swipeToClose:j=!0,zIndex:_=1e3,className:p,style:P})=>{const w=e.useRef(null),[y,f]=e.useState(!1),[i,n]=e.useState(0);M.Ps(w,t);const x=Y();e.useEffect(()=>{if(!u||!t)return;const o=k=>{k.key==="Escape"&&(k.preventDefault(),s())};return document.addEventListener("keydown",o),()=>document.removeEventListener("keydown",o)},[u,t,s]);const h=e.useCallback(o=>{let k=0;switch(a){case"left":k=Math.min(0,o.deltaX);break;case"right":k=Math.max(0,o.deltaX);break;case"top":k=Math.min(0,o.deltaY);break;case"bottom":k=Math.max(0,o.deltaY);break}n(k)},[a]),D=e.useCallback(o=>{let $=!1;switch(a){case"left":$=o.deltaX<-100;break;case"right":$=o.deltaX>100;break;case"top":$=o.deltaY<-100;break;case"bottom":$=o.deltaY>100;break}$&&(M.Xr("light"),s()),n(0),f(!1)},[a,s]),{ref:C}=M.ac({enabled:j&&t,onPanStart:()=>f(!0),onPan:h,onPanEnd:D}),E=e.useCallback(o=>{d&&o.target===o.currentTarget&&s()},[d,s]);if(!t)return null;const S=a==="left"||a==="right",L=S?{width:typeof g=="number"?`${g}px`:g}:{height:typeof g=="number"?`${g}px`:g},c=()=>{if(y)return S?`translateX(${i}px)`:`translateY(${i}px)`};return B.createPortal(r.jsxs(r.Fragment,{children:[r.jsx("div",{className:`nice-drawer__overlay ${t?"nice-drawer__overlay--visible":""}`,style:{zIndex:_},onClick:E}),r.jsx("div",{ref:o=>{w.current=o,C.current=o},className:`nice-drawer nice-drawer--${a} ${t?"nice-drawer--open":""} ${p||""}`,style:{...L,zIndex:_+1,transform:c(),transition:y?"none":void 0,...P},role:"dialog","aria-modal":"true","aria-label":l,tabIndex:-1,children:v})]}),x)},F=({open:t,onClose:s,children:v,title:a,showHandle:g=!0,snapPoints:l=[.5,.9],initialSnap:d=0,expandable:u=!0,closeOnBackdropClick:j=!0,closeOnEscape:_=!0,hapticFeedback:p=!0,zIndex:P=1e3,className:w,style:y})=>{const f=e.useRef(null),i=e.useRef(null),[n,x]=e.useState(d),[h,D]=e.useState(!1),[C,E]=e.useState(0),S=e.useRef(0);e.useEffect(()=>{t&&(x(d),E(0))},[t,d]),M.Ps(f,t);const L=Y();e.useEffect(()=>{if(!_||!t)return;const m=b=>{b.key==="Escape"&&(b.preventDefault(),s())};return document.addEventListener("keydown",m),()=>document.removeEventListener("keydown",m)},[_,t,s]),e.useEffect(()=>{if(t){const m=document.body.style.overflow;return document.body.style.overflow="hidden",()=>{document.body.style.overflow=m}}},[t]);const c=e.useCallback(m=>{const b=m.target.closest(".nice-bottom-sheet__handle"),I=i.current,X=!I||I.scrollTop<=0;!b&&!X||(D(!0),S.current=m.touches[0].clientY)},[]),o=e.useCallback(m=>{if(!h)return;const b=m.touches[0].clientY-S.current;(b>0||n<l.length-1)&&E(b)},[h,n,l.length]),k=e.useCallback(()=>{if(!h)return;const m=window.innerHeight;l[n]*m;const b=-C,I=m*.15;b>I&&u&&n<l.length-1?(x(n+1),p&&M.Xr("selection")):b<-I&&(n>0?(x(n-1),p&&M.Xr("selection")):(p&&M.Xr("light"),s())),D(!1),E(0)},[h,C,n,l,u,p,s]),$=e.useCallback(()=>{j&&s()},[j,s]);if(!t)return null;const R=l[n]*100,T=h?C:0;return B.createPortal(r.jsxs(r.Fragment,{children:[r.jsx("div",{className:`nice-bottom-sheet__overlay ${t?"nice-bottom-sheet__overlay--visible":""}`,style:{zIndex:P},onClick:$}),r.jsxs("div",{ref:f,className:`nice-bottom-sheet ${t?"nice-bottom-sheet--open":""} ${w||""}`,style:{zIndex:P+1,height:`${R}vh`,transform:`translateY(${Math.max(0,T)}px)`,transition:h?"none":"transform 0.3s ease-out, height 0.3s ease-out",...y},role:"dialog","aria-modal":"true","aria-label":a,tabIndex:-1,onTouchStart:c,onTouchMove:o,onTouchEnd:k,children:[g&&r.jsx("div",{className:"nice-bottom-sheet__handle","aria-hidden":"true"}),a&&r.jsx("div",{className:"nice-bottom-sheet__title",children:a}),r.jsx("div",{ref:i,className:"nice-bottom-sheet__content",children:v})]})]}),L)},z=({trigger:t,children:s,placement:v="bottom",triggerMode:a="click",open:g,onOpenChange:l,hoverDelay:d=200,offset:u=8,className:j,showArrow:_=!0})=>{const[p,P]=e.useState(!1),w=e.useRef(null),y=e.useRef(null),f=e.useRef(null),i=Y(),n=g!==void 0,x=n?g:p,h=e.useCallback(c=>{n||P(c),l?.(c)},[n,l]);M.$s(y,()=>{a!=="manual"&&x&&h(!1)});const D=e.useCallback(()=>{a==="click"&&h(!x)},[a,x,h]),C=e.useCallback(()=>{a==="hover"&&(f.current&&window.clearTimeout(f.current),f.current=window.setTimeout(()=>h(!0),d))},[a,d,h]),E=e.useCallback(()=>{a==="hover"&&(f.current&&window.clearTimeout(f.current),f.current=window.setTimeout(()=>h(!1),d))},[a,d,h]),[S,L]=e.useState({top:0,left:0});return e.useEffect(()=>{if(!x||!w.current||!y.current)return;const c=w.current.getBoundingClientRect(),o=y.current.getBoundingClientRect(),k=window.innerWidth,$=window.innerHeight;let R=0,T=0;const[m,b="center"]=v.split("-");switch(m){case"top":R=c.top-o.height-u,T=c.left+(c.width-o.width)/2;break;case"bottom":R=c.bottom+u,T=c.left+(c.width-o.width)/2;break;case"left":R=c.top+(c.height-o.height)/2,T=c.left-o.width-u;break;case"right":R=c.top+(c.height-o.height)/2,T=c.right+u;break}m==="top"||m==="bottom"?(b==="start"&&(T=c.left),b==="end"&&(T=c.right-o.width)):(b==="start"&&(R=c.top),b==="end"&&(R=c.bottom-o.height)),T=Math.max(8,Math.min(k-o.width-8,T)),R=Math.max(8,Math.min($-o.height-8,R)),L({top:R,left:T})},[x,v,u]),r.jsxs(r.Fragment,{children:[r.jsx("div",{ref:w,className:"nice-popover__trigger",onClick:D,onMouseEnter:C,onMouseLeave:E,style:{display:"inline-block"},children:t}),x&&B.createPortal(r.jsxs("div",{ref:y,className:`nice-popover nice-popover--${v} ${j||""}`,style:{position:"fixed",top:S.top,left:S.left,zIndex:1100},onMouseEnter:C,onMouseLeave:E,role:"tooltip",children:[_&&r.jsx("div",{className:"nice-popover__arrow"}),r.jsx("div",{className:"nice-popover__content",children:s})]}),i)]})},A=({items:t,children:s,onOpen:v,onClose:a,className:g})=>{const[l,d]=e.useState(!1),[u,j]=e.useState({x:0,y:0}),_=e.useRef(null),p=e.useRef(null),P=Y();M.$s(_,()=>{l&&(d(!1),a?.())});const w=e.useCallback(i=>{i.preventDefault(),j({x:i.clientX,y:i.clientY}),d(!0),v?.()},[v]),y=e.useCallback(i=>{!i.disabled&&i.onClick&&(i.onClick(),d(!1),a?.())},[a]);e.useEffect(()=>{if(!l)return;const i=n=>{n.key==="Escape"&&(d(!1),a?.())};return document.addEventListener("keydown",i),()=>document.removeEventListener("keydown",i)},[l,a]);const f=i=>r.jsx("ul",{className:"nice-context-menu__list",role:"menu",children:i.map(n=>n.divider?r.jsx("li",{className:"nice-context-menu__divider",role:"separator"},n.key):r.jsx("li",{role:"presentation",children:r.jsxs("button",{type:"button",className:`nice-context-menu__item ${n.disabled?"nice-context-menu__item--disabled":""} ${n.danger?"nice-context-menu__item--danger":""}`,role:"menuitem",disabled:n.disabled,onClick:()=>y(n),children:[n.icon&&r.jsx("span",{className:"nice-context-menu__icon",children:n.icon}),r.jsx("span",{className:"nice-context-menu__label",children:n.label})]})},n.key))});return r.jsxs(r.Fragment,{children:[r.jsx("div",{ref:p,onContextMenu:w,style:{display:"contents"},children:s}),l&&B.createPortal(r.jsx("div",{ref:_,className:`nice-context-menu ${g||""}`,style:{position:"fixed",left:u.x,top:u.y,zIndex:1200},role:"menu",children:f(t)}),P)]})};exports.NiceActionSheet=N.NiceActionSheet;exports.NiceBlockUI=N.NiceBlockUI;exports.NiceBox=N.NiceBox;exports.NiceCommandPaletteProvider=N.NiceCommandPaletteProvider;exports.NiceLoadPanel=N.NiceLoadPanel;exports.NicePopover=N.NicePopover;exports.NiceResizable=N.NiceResizable;exports.NiceResponsiveBox=N.NiceResponsiveBox;exports.NiceScrollView=N.NiceScrollView;exports.NiceTutorial=N.NiceTutorial;exports.NiceTutorialProvider=N.NiceTutorialProvider;exports.NiceWindow=N.NiceWindow;exports.NiceWindowManager=N.NiceWindowManager;exports.useCommandPalette=N.useCommandPalette;exports.useRegisterCommands=N.useRegisterCommands;exports.NiceBottomSheet=F;exports.NiceContextMenu=A;exports.NiceDrawer=K;exports.NiceModal=H;exports.NiceModalBody=O;exports.NiceModalFooter=q;exports.NiceModalHeader=W;exports.NiceOverlayPopover=z;
package/dist/overlays.mjs CHANGED
@@ -1,6 +1,6 @@
1
- import { N as se, a as de, b as ue, c as he, d as fe, e as me, f as ve, g as ge, h as we, i as be, j as ye, k as pe, l as _e, u as Ne, m as ke } from "./NiceWindow-CysIgnn3.js";
1
+ import { N as se, a as de, b as ue, c as he, d as fe, e as me, f as ve, g as ge, h as we, i as be, j as ye, k as pe, l as _e, u as Ne, m as ke } from "./NiceWindow-C677O__r.js";
2
2
  import { jsxs as H, Fragment as O, jsx as a } from "react/jsx-runtime";
3
- import { P as j, X as K, b as z, c as U, l as V } from "./core-XsWxyBHD.js";
3
+ import { P as j, X as K, a as z, b as U, l as V } from "./core-BFu5opn6.js";
4
4
  import { useRef as E, useState as P, useEffect as Y, useCallback as b, useContext as q } from "react";
5
5
  import { createPortal as C } from "react-dom";
6
6
  function W() {