@plitzi/plitzi-ui 1.6.10 → 1.6.12

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.
@@ -7,4 +7,4 @@ var n = () => {
7
7
  return n;
8
8
  };
9
9
  //#endregion
10
- export { n as default };
10
+ export { n as default, n as useAccordion };
@@ -1,7 +1,7 @@
1
1
  import e from "../../hooks/useDidUpdateEffect/index.js";
2
2
  import { PopupContextFloating as t, PopupContextLeft as n, PopupContextRight as r } from "./PopupContext.js";
3
3
  import i from "./components/PopupSidePanel/index.js";
4
- import a from "./helpers/PopupManager.js";
4
+ import { PopupManager as a } from "./helpers/PopupManager.js";
5
5
  import o from "./PopupFloatingArea.js";
6
6
  import { useCallback as s, useEffect as c, useMemo as l, useRef as u, useState as d } from "react";
7
7
  import { jsx as f, jsxs as p } from "react/jsx-runtime";
@@ -240,4 +240,4 @@ var e = class {
240
240
  }
241
241
  };
242
242
  //#endregion
243
- export { e as default };
243
+ export { e as PopupManager, e as default };
@@ -1,7 +1,7 @@
1
1
  import { PopupContextFloating as e, PopupContextLeft as t, PopupContextRight as n } from "./PopupContext.js";
2
2
  import r from "./hooks/usePopup.js";
3
3
  import i from "./components/PopupSidePanel/index.js";
4
- import a from "./helpers/PopupManager.js";
4
+ import { PopupManager as a } from "./helpers/PopupManager.js";
5
5
  import o from "./Popup.js";
6
6
  import s from "./Popup.styles.js";
7
7
  import c from "./PopupProvider.js";
@@ -99,7 +99,7 @@ import Xe from "./Popup/hooks/usePopup.js";
99
99
  import Ze from "./Sidebar/Sidebar.styles.js";
100
100
  import Qe from "./Sidebar/index.js";
101
101
  import $e from "./Popup/components/PopupSidePanel/index.js";
102
- import et from "./Popup/helpers/PopupManager.js";
102
+ import { PopupManager as et } from "./Popup/helpers/PopupManager.js";
103
103
  import tt from "./Popup/Popup.styles.js";
104
104
  import nt from "./Popup/PopupProvider.js";
105
105
  import rt from "./Popup/index.js";
@@ -1,18 +1,18 @@
1
1
  import { get as e } from "./lodash/get.js";
2
2
  import { set as t } from "./lodash/set.js";
3
3
  import { pick as n } from "./lodash/pick.js";
4
- import { cloneAtPath as r, cloneDeep as i } from "./lodash/cloneDeep.js";
5
- import { has as a } from "./lodash/has.js";
6
- import { omit as o } from "./lodash/omit.js";
7
- import { debounce as s } from "./lodash/debounce.js";
8
- import { throttle as c } from "./lodash/throttle.js";
9
- import { capitalize as l } from "./lodash/capitalize.js";
10
- import { isEmpty as u } from "./lodash/isEmpty.js";
11
- import { camelCase as d } from "./lodash/camelCase.js";
12
- import { snakeCase as f } from "./lodash/snakeCase.js";
13
- import { upperFirst as p } from "./lodash/upperFirst.js";
14
- import m from "./cvaWrapper.js";
15
- import h from "./DynamicComponent.js";
16
- import { isDate as g, toUnixSeconds as _ } from "./formatDate.js";
17
- import { arrayDifference as v, isFunction as y, isInViewport as b, isString as x } from "./utils.js";
18
- export { h as DynamicComponent, v as arrayDifference, d as camelCase, l as capitalize, r as cloneAtPath, i as cloneDeep, m as cva, s as debounce, e as get, a as has, g as isDate, u as isEmpty, y as isFunction, b as isInViewport, x as isString, o as omit, n as pick, t as set, f as snakeCase, c as throttle, _ as toUnixSeconds, p as upperFirst };
4
+ import { cloneAtPath as r, cloneDeep as i, cloneObject as a } from "./lodash/cloneDeep.js";
5
+ import { has as o } from "./lodash/has.js";
6
+ import { omit as s } from "./lodash/omit.js";
7
+ import { debounce as c } from "./lodash/debounce.js";
8
+ import { throttle as l } from "./lodash/throttle.js";
9
+ import { capitalize as u } from "./lodash/capitalize.js";
10
+ import { isEmpty as d } from "./lodash/isEmpty.js";
11
+ import { camelCase as f } from "./lodash/camelCase.js";
12
+ import { snakeCase as p } from "./lodash/snakeCase.js";
13
+ import { upperFirst as m } from "./lodash/upperFirst.js";
14
+ import h from "./cvaWrapper.js";
15
+ import g from "./DynamicComponent.js";
16
+ import { isDate as _, toUnixSeconds as v } from "./formatDate.js";
17
+ import { arrayDifference as y, isFunction as b, isInViewport as x, isString as S } from "./utils.js";
18
+ export { g as DynamicComponent, y as arrayDifference, f as camelCase, u as capitalize, r as cloneAtPath, i as cloneDeep, a as cloneObject, h as cva, c as debounce, e as get, o as has, _ as isDate, d as isEmpty, b as isFunction, x as isInViewport, S as isString, s as omit, n as pick, t as set, p as snakeCase, l as throttle, v as toUnixSeconds, m as upperFirst };
@@ -1,5 +1,6 @@
1
1
  import { Path } from './shared';
2
2
  export declare function cloneDeep<T>(value: T, seen?: WeakMap<object, any>): T;
3
+ export declare const cloneObject: <T>(obj: T) => T;
3
4
  /**
4
5
  * Clones only the necessary path (structural sharing).
5
6
  * Useful for immutable operations like omit without cloning the entire object.
@@ -29,10 +29,10 @@ function t(e, n = /* @__PURE__ */ new WeakMap()) {
29
29
  let r = [];
30
30
  return n.set(e, r), e.forEach((e, i) => r[i] = t(e, n)), r;
31
31
  }
32
- let r = Object.create(Object.getPrototypeOf(e));
33
- n.set(e, r);
34
- for (let i in e) Object.prototype.hasOwnProperty.call(e, i) && (r[i] = t(e[i], n));
35
- return r;
32
+ let r = Object.getPrototypeOf(e), i = Object.create(r);
33
+ n.set(e, i);
34
+ for (let r in e) Object.prototype.hasOwnProperty.call(e, r) && (i[r] = t(e[r], n));
35
+ return i;
36
36
  }
37
37
  var n = (e) => Object.assign(Object.create(Object.getPrototypeOf(e)), e);
38
38
  function r(t, r) {
@@ -51,4 +51,4 @@ function r(t, r) {
51
51
  return a;
52
52
  }
53
53
  //#endregion
54
- export { r as cloneAtPath, t as cloneDeep };
54
+ export { r as cloneAtPath, t as cloneDeep, n as cloneObject };
@@ -1,14 +1,14 @@
1
1
  import { get as e } from "./get.js";
2
2
  import { set as t } from "./set.js";
3
3
  import { pick as n } from "./pick.js";
4
- import { cloneAtPath as r, cloneDeep as i } from "./cloneDeep.js";
5
- import { has as a } from "./has.js";
6
- import { omit as o } from "./omit.js";
7
- import { debounce as s } from "./debounce.js";
8
- import { throttle as c } from "./throttle.js";
9
- import { capitalize as l } from "./capitalize.js";
10
- import { isEmpty as u } from "./isEmpty.js";
11
- import { camelCase as d } from "./camelCase.js";
12
- import { snakeCase as f } from "./snakeCase.js";
13
- import { upperFirst as p } from "./upperFirst.js";
14
- export { d as camelCase, l as capitalize, r as cloneAtPath, i as cloneDeep, s as debounce, e as get, a as has, u as isEmpty, o as omit, n as pick, t as set, f as snakeCase, c as throttle, p as upperFirst };
4
+ import { cloneAtPath as r, cloneDeep as i, cloneObject as a } from "./cloneDeep.js";
5
+ import { has as o } from "./has.js";
6
+ import { omit as s } from "./omit.js";
7
+ import { debounce as c } from "./debounce.js";
8
+ import { throttle as l } from "./throttle.js";
9
+ import { capitalize as u } from "./capitalize.js";
10
+ import { isEmpty as d } from "./isEmpty.js";
11
+ import { camelCase as f } from "./camelCase.js";
12
+ import { snakeCase as p } from "./snakeCase.js";
13
+ import { upperFirst as m } from "./upperFirst.js";
14
+ export { f as camelCase, u as capitalize, r as cloneAtPath, i as cloneDeep, a as cloneObject, c as debounce, e as get, o as has, d as isEmpty, s as omit, n as pick, t as set, p as snakeCase, l as throttle, m as upperFirst };
@@ -1,26 +1,36 @@
1
1
  import { toPath as e } from "./shared.js";
2
- import { cloneAtPath as t } from "./cloneDeep.js";
3
- import { has as n } from "./has.js";
2
+ import { cloneAtPath as t, cloneObject as n } from "./cloneDeep.js";
3
+ import { has as r } from "./has.js";
4
4
  //#region src/helpers/lodash/omit.ts
5
- function r(r, i) {
6
- let a = Array.isArray(i) ? i : i ? [i] : [];
7
- if (a.length === 0) return { ...r };
8
- let o = r;
9
- for (let r of a) {
10
- let i = e(r);
11
- if (!i.length || !n(o, r)) continue;
12
- let a = t(o, r), s = a;
13
- for (let e = 0; e < i.length - 1 && !(!s || typeof s != "object"); e++) {
5
+ function i(i, a) {
6
+ let o = Array.isArray(a) ? a : a ? [a] : [];
7
+ if (o.length === 0) return { ...i };
8
+ let s = [], c = [];
9
+ for (let t of o) {
10
+ let n = e(t);
11
+ n.length !== 0 && (n.length === 1 ? s.push(n[0]) : c.push(t));
12
+ }
13
+ let l = i;
14
+ if (s.length) {
15
+ let e;
16
+ for (let t of s) Object.prototype.hasOwnProperty.call(l, t) && (e ??= n(l), delete e[t]);
17
+ e && (l = e);
18
+ }
19
+ for (let n of c) {
20
+ let i = e(n);
21
+ if (!r(l, n)) continue;
22
+ let a = t(l, n), o = a;
23
+ for (let e = 0; e < i.length - 1 && !(!o || typeof o != "object"); e++) {
14
24
  let t = i[e];
15
- s = s[t];
25
+ o = o[t];
16
26
  }
17
- if (s && typeof s == "object") {
27
+ if (o && typeof o == "object") {
18
28
  let e = i[i.length - 1];
19
- Object.prototype.hasOwnProperty.call(s, e) && delete s[e];
29
+ Object.prototype.hasOwnProperty.call(o, e) && delete o[e];
20
30
  }
21
- o = a;
31
+ l = a;
22
32
  }
23
- return o;
33
+ return l;
24
34
  }
25
35
  //#endregion
26
- export { r as omit };
36
+ export { i as omit };
@@ -19,4 +19,4 @@ var l = /* @__PURE__ */ e({
19
19
  useValueMemo: () => t
20
20
  });
21
21
  //#endregion
22
- export { l as hooks_exports };
22
+ export { l as hooks_exports, r as useDidUpdateEffect, i as useDisclosure, a as useReducerWithMiddleware, o as useStateDebounce, s as useStateMemo, c as useStorage, n as useTheme, t as useValueMemo };
@@ -1,2 +1,3 @@
1
- declare function useLocalStorage<T = unknown>(keyProp: string, initialValue: T, mode?: 'localStorage' | 'sessionStorage', autoSync?: boolean): readonly [T, import('react').Dispatch<import('react').SetStateAction<T>>];
1
+ type StorageMode = 'localStorage' | 'sessionStorage' | 'cookie';
2
+ declare function useLocalStorage<T = unknown>(keyProp: string, initialValue: T, mode?: StorageMode, autoSync?: boolean): readonly [T, import('react').Dispatch<import('react').SetStateAction<T>>];
2
3
  export default useLocalStorage;
@@ -1,43 +1,40 @@
1
1
  import { get as e } from "../../helpers/lodash/get.js";
2
2
  import { set as t } from "../../helpers/lodash/set.js";
3
3
  import n from "../useDidUpdateEffect/index.js";
4
- import { storageProxy as r } from "./useStorageHelper.js";
5
- import { useCallback as i, useEffect as a, useMemo as o, useRef as s, useState as c } from "react";
6
- import { produce as l } from "immer";
4
+ import { cookieStorage as r, storageProxy as i } from "./useStorageHelper.js";
5
+ import { useCallback as a, useEffect as o, useMemo as s, useRef as c, useState as l } from "react";
6
+ import { produce as u } from "immer";
7
7
  //#region src/hooks/useStorage/useStorage.ts
8
- function u(u, d, f = "localStorage", p = !0) {
9
- let [m, h] = o(() => {
10
- if (u.includes(".")) {
11
- let e = u.split(".").filter(Boolean);
8
+ var d = (e) => e === "cookie" ? typeof document < "u" ? i(r()) : void 0 : e === "sessionStorage" ? typeof sessionStorage < "u" ? i(sessionStorage) : void 0 : typeof localStorage < "u" ? i(localStorage) : void 0;
9
+ function f(r, i, f = "localStorage", p = !0) {
10
+ let [m, h] = s(() => {
11
+ if (r.includes(".")) {
12
+ let e = r.split(".").filter(Boolean);
12
13
  return [e.shift(), e.join(".")];
13
14
  }
14
- return [u, ""];
15
- }, [u]), g = s(f === "localStorage" ? typeof localStorage < "u" ? r(localStorage) : void 0 : typeof sessionStorage < "u" ? r(sessionStorage) : void 0);
15
+ return [r, ""];
16
+ }, [r]), g = c(d(f));
16
17
  n(() => {
17
- if (f === "localStorage" && typeof localStorage > "u" || f === "sessionStorage" && typeof sessionStorage > "u") {
18
- g.current = void 0;
19
- return;
20
- }
21
- g.current = r(f === "localStorage" ? localStorage : sessionStorage);
18
+ g.current = d(f);
22
19
  }, [f]);
23
- let [_, v] = c(() => {
20
+ let [_, v] = l(() => {
24
21
  try {
25
- if (!g.current) return d;
22
+ if (!g.current) return i;
26
23
  let t = g.current.getItem(m);
27
- if (!t) return d;
24
+ if (!t) return i;
28
25
  let n = JSON.parse(t);
29
- return h ? e(n, h, d) : n;
26
+ return h ? e(n, h, i) : n;
30
27
  } catch {
31
- return d;
28
+ return i;
32
29
  }
33
30
  });
34
- a(() => {
31
+ o(() => {
35
32
  try {
36
33
  if (!g.current) return;
37
34
  let e = _;
38
35
  if (h) {
39
36
  let n = g.current.getItem(m);
40
- e = l(n ? JSON.parse(n) : {}, (e) => {
37
+ e = u(n ? JSON.parse(n) : {}, (e) => {
41
38
  t(e, h, _);
42
39
  });
43
40
  }
@@ -50,26 +47,26 @@ function u(u, d, f = "localStorage", p = !0) {
50
47
  h,
51
48
  _
52
49
  ]);
53
- let y = i((t) => {
50
+ let y = a((t) => {
54
51
  if (t.key === m) try {
55
- let n = t.newValue ? JSON.parse(t.newValue) : d;
56
- v(h ? e(n, h, d) : n);
52
+ let n = t.newValue ? JSON.parse(t.newValue) : i;
53
+ v(h ? e(n, h, i) : n);
57
54
  } catch {}
58
55
  }, [
59
56
  m,
60
57
  h,
61
- d
62
- ]), b = i((t) => {
58
+ i
59
+ ]), b = a((t) => {
63
60
  if (t.detail.key === m) try {
64
- let n = t.detail.newValue ? JSON.parse(t.detail.newValue) : d;
65
- v(h ? e(n, h, d) : n);
61
+ let n = t.detail.newValue ? JSON.parse(t.detail.newValue) : i;
62
+ v(h ? e(n, h, i) : n);
66
63
  } catch {}
67
64
  }, [
68
65
  m,
69
66
  h,
70
- d
67
+ i
71
68
  ]);
72
- return a(() => {
69
+ return o(() => {
73
70
  if (!(typeof window > "u" || !p)) return window.addEventListener("storage", y), window.addEventListener("customstorage-changed", b), () => {
74
71
  window.removeEventListener("storage", y), window.removeEventListener("customstorage-changed", b);
75
72
  };
@@ -81,4 +78,4 @@ function u(u, d, f = "localStorage", p = !0) {
81
78
  ]), [_, v];
82
79
  }
83
80
  //#endregion
84
- export { u as default };
81
+ export { f as default };
@@ -1 +1,2 @@
1
+ export declare const cookieStorage: () => Storage;
1
2
  export declare const storageProxy: (storage: Storage) => Storage;
@@ -11,7 +11,38 @@ var e = (e, t, n) => {
11
11
  oldValue: t,
12
12
  newValue: n
13
13
  } }));
14
- }, t = (t) => new Proxy(t, { get(t, n, r) {
14
+ }, t = 3600 * 24 * 365, n = () => {
15
+ let e = {};
16
+ if (typeof document > "u" || !document.cookie) return e;
17
+ for (let t of document.cookie.split(";")) {
18
+ let n = t.indexOf("=");
19
+ n !== -1 && (e[t.slice(0, n).trim()] = decodeURIComponent(t.slice(n + 1).trim()));
20
+ }
21
+ return e;
22
+ }, r = () => {
23
+ let e = {
24
+ getItem(e) {
25
+ let t = n();
26
+ return e in t ? t[e] : null;
27
+ },
28
+ setItem(e, n) {
29
+ typeof document > "u" || (document.cookie = `${e}=${encodeURIComponent(n)}; path=/; max-age=${t}; samesite=lax`);
30
+ },
31
+ removeItem(e) {
32
+ typeof document > "u" || (document.cookie = `${e}=; path=/; max-age=0; samesite=lax`);
33
+ },
34
+ clear() {
35
+ for (let t of Object.keys(n())) e.removeItem(t);
36
+ },
37
+ key(e) {
38
+ return Object.keys(n())[e] ?? null;
39
+ },
40
+ get length() {
41
+ return Object.keys(n()).length;
42
+ }
43
+ };
44
+ return e;
45
+ }, i = (t) => new Proxy(t, { get(t, n, r) {
15
46
  if (n === "setItem") return (n, r) => {
16
47
  let i = t.getItem(n);
17
48
  t.setItem.call(t, n, r), i !== r && e(n, i, r);
@@ -24,4 +55,4 @@ var e = (e, t, n) => {
24
55
  return typeof i == "function" ? i.bind(t) : i;
25
56
  } });
26
57
  //#endregion
27
- export { t as storageProxy };
58
+ export { r as cookieStorage, i as storageProxy };
package/dist/index.js CHANGED
@@ -1,158 +1,158 @@
1
1
  import { get as e } from "./helpers/lodash/get.js";
2
2
  import { set as t } from "./helpers/lodash/set.js";
3
3
  import { pick as n } from "./helpers/lodash/pick.js";
4
- import { cloneAtPath as r, cloneDeep as i } from "./helpers/lodash/cloneDeep.js";
5
- import { has as a } from "./helpers/lodash/has.js";
6
- import { omit as o } from "./helpers/lodash/omit.js";
7
- import { debounce as s } from "./helpers/lodash/debounce.js";
8
- import { throttle as c } from "./helpers/lodash/throttle.js";
9
- import { capitalize as l } from "./helpers/lodash/capitalize.js";
10
- import { isEmpty as u } from "./helpers/lodash/isEmpty.js";
11
- import { camelCase as d } from "./helpers/lodash/camelCase.js";
12
- import { snakeCase as f } from "./helpers/lodash/snakeCase.js";
13
- import { upperFirst as p } from "./helpers/lodash/upperFirst.js";
14
- import { ThemeContext as m } from "./components/Provider/providers/ThemeProvider/ThemeProvider.js";
15
- import h from "./components/Provider/providers/ThemeProvider/index.js";
16
- import g from "./utils/deepEqual/index.js";
17
- import _ from "./hooks/useValueMemo/index.js";
18
- import v from "./hooks/useTheme/index.js";
19
- import y from "./helpers/cvaWrapper.js";
20
- import b from "./components/Flex/Flex.styles.js";
21
- import x from "./components/Flex/index.js";
22
- import S from "./components/Icon/Icon.styles.js";
23
- import C from "./components/Icon/index.js";
24
- import w from "./components/Accordion/hooks/useAccordion.js";
25
- import T from "./components/Accordion/Accordion.styles.js";
26
- import E from "./components/Accordion/index.js";
27
- import D from "./components/Alert/Alert.styles.js";
28
- import O from "./components/Alert/index.js";
29
- import k from "./components/Badge/Badge.styles.js";
30
- import A from "./components/Badge/index.js";
31
- import j from "./components/Breadcrumb/Breadcrumb.styles.js";
32
- import M from "./components/Breadcrumb/index.js";
33
- import N from "./components/Button/Button.styles.js";
34
- import P from "./components/Button/index.js";
35
- import F from "./components/Card/Card.styles.js";
36
- import I from "./components/Card/index.js";
37
- import L from "./components/ErrorMessage/ErrorMessage.styles.js";
38
- import R from "./components/ErrorMessage/index.js";
39
- import z from "./components/Label/Label.styles.js";
40
- import B from "./components/Label/index.js";
41
- import V from "./components/Input/InputContainer.js";
42
- import H from "./components/Checkbox/Checkbox.styles.js";
43
- import U from "./components/Checkbox/index.js";
44
- import { EditorState as W, Transaction as G } from "./components/CodeMirror/CodeMirror.js";
45
- import K from "./components/CodeMirror/CodeMirror.styles.js";
46
- import q from "./components/CodeMirror/index.js";
47
- import J from "./hooks/useDidUpdateEffect/index.js";
48
- import Y from "./components/ContainerFloating/hooks/useFloating.js";
49
- import X from "./components/ContainerFloating/ContainerFloating.styles.js";
50
- import Z from "./components/ContainerFloating/index.js";
51
- import Q from "./components/ColorPicker/ColorPicker.styles.js";
52
- import $ from "./components/ColorPicker/index.js";
53
- import ee from "./components/ContainerAutoScale/index.js";
54
- import te from "./components/ContainerCollapsable/ContainerCollapsable.styles.js";
55
- import ne from "./components/ContainerCollapsable/index.js";
56
- import re from "./components/ContainerRoot/ContainerRootContext.js";
57
- import ie from "./components/ContainerWindow/index.js";
58
- import ae from "./components/ContainerResizable/ContainerResizable.styles.js";
59
- import oe from "./components/ContainerResizable/index.js";
60
- import se from "./components/ContainerDraggable/ContainerDraggable.styles.js";
61
- import ce from "./components/ContainerDraggable/index.js";
62
- import le from "./components/ContainerFrame/ContainerFrame.styles.js";
63
- import ue from "./components/ContainerFrame/index.js";
64
- import de from "./components/ContainerRoot/index.js";
65
- import fe from "./components/ContainerShadow/index.js";
66
- import pe from "./components/ContainerTabs/TabContent.js";
67
- import me from "./components/ContainerTabs/Tab.js";
68
- import he from "./components/ContainerTabs/Tabs.js";
69
- import ge from "./components/ContainerTabs/ContainerTabs.styles.js";
70
- import _e from "./components/ContainerTabs/index.js";
71
- import ve from "./components/ContentEditable/ContentEditable.styles.js";
72
- import ye from "./components/ContentEditable/index.js";
73
- import be from "./components/Dummy/Dummy.styles.js";
74
- import xe from "./components/Dummy/index.js";
75
- import Se from "./components/ErrorBoundary/index.js";
76
- import Ce from "./components/FileUpload/FileUpload.styles.js";
77
- import we from "./components/FileUpload/index.js";
78
- import Te from "./components/Form/fields/FormColor.js";
79
- import Ee from "./components/Form/fields/FormConditional.js";
80
- import De from "./components/Form/fields/FormFieldCustom.js";
81
- import Oe from "./components/Input/Input.styles.js";
82
- import ke from "./components/Input/index.js";
83
- import Ae from "./components/Select/Select.styles.js";
84
- import je from "./components/Select/index.js";
85
- import Me from "./components/Select2/Select2.styles.js";
86
- import Ne from "./components/Select2/index.js";
87
- import Pe from "./components/Switch/Switch.styles.js";
88
- import Fe from "./components/Switch/index.js";
89
- import Ie from "./components/TextArea/TextArea.styles.js";
90
- import Le from "./components/TextArea/index.js";
91
- import { fields_exports as Re } from "./components/Form/fields/index.js";
92
- import ze from "./components/Form/Form.styles.js";
93
- import Be from "./components/Form/hooks/useForm.js";
94
- import Ve from "./components/Form/hooks/useFormWatch.js";
95
- import He, { useFieldArray as Ue, useFormContext as We } from "./components/Form/index.js";
96
- import Ge from "./helpers/DynamicComponent.js";
97
- import Ke from "./components/Heading/Heading.styles.js";
98
- import qe from "./components/Heading/index.js";
99
- import Je from "./components/IconGroup/IconGroup.styles.js";
100
- import Ye from "./components/IconGroup/index.js";
101
- import { arrayToNestedObject as Xe, nestedObjectToArray as Ze, normalizeToFlatKV as Qe } from "./components/KVInput/KVInputHelper.js";
102
- import $e from "./components/KVInput/KVInput.styles.js";
103
- import et from "./components/KVInput/index.js";
104
- import tt from "./components/Markdown/Markdown.styles.js";
105
- import nt from "./components/Markdown/index.js";
106
- import rt from "./components/MenuList/MenuList.styles.js";
107
- import it from "./components/MenuList/index.js";
108
- import at from "./components/MetricInput/MetricInput.styles.js";
109
- import ot from "./components/MetricInput/index.js";
110
- import st from "./components/Modal/Modal.styles.js";
111
- import ct from "./components/Modal/ModalContext.js";
112
- import lt from "./components/Modal/ModalProvider.js";
113
- import ut from "./components/Modal/useModal.js";
114
- import dt from "./components/Modal/index.js";
115
- import { PopupContextFloating as ft, PopupContextLeft as pt, PopupContextRight as mt } from "./components/Popup/PopupContext.js";
116
- import ht from "./components/Popup/hooks/usePopup.js";
117
- import gt from "./components/Sidebar/Sidebar.styles.js";
118
- import _t from "./components/Sidebar/index.js";
119
- import vt from "./components/Popup/components/PopupSidePanel/index.js";
120
- import yt from "./components/Popup/helpers/PopupManager.js";
121
- import bt from "./components/Popup/Popup.styles.js";
122
- import xt from "./components/Popup/PopupProvider.js";
123
- import St from "./components/Popup/index.js";
124
- import { providers_exports as Ct } from "./components/Provider/providers/index.js";
125
- import wt from "./components/Provider/index.js";
126
- import { isDate as Tt, toUnixSeconds as Et } from "./helpers/formatDate.js";
127
- import { getQueryMap as Dt, isNumeric as Ot, isRuleGroup as kt } from "./components/QueryBuilder/helpers/QueryBuilderHelper.js";
128
- import At from "./components/QueryBuilder/helpers/formatters/formatterMongoDB.js";
129
- import jt, { formatBasic as Mt, formatBeginsWith as Nt, formatBetween as Pt, formatContains as Ft, formatEmpty as It, formatEndsWith as Lt, formatIn as Rt } from "./components/QueryBuilder/helpers/formatters/formatterSql.js";
130
- import zt, { evaluateBeginsWith as Bt, evaluateBetween as Vt, evaluateContains as Ht, evaluateEmpty as Ut, evaluateEndsWith as Wt, evaluateEquals as Gt, evaluateGreaterThan as Kt, evaluateGreaterThanOrEqual as qt, evaluateIn as Jt, evaluateLessThan as Yt, evaluateLessThanOrEqual as Xt, getValuesRequired as Zt, transformQuery as Qt, transformQueryJson as $t } from "./components/QueryBuilder/helpers/QueryBuilderEvaluator.js";
131
- import en from "./components/QueryBuilder/helpers/QueryBuilderFormatter.js";
132
- import { defaultCombinators as tn, defaultCombinatorsExtended as nn, defaultOperatorNegationMap as rn, defaultOperators as an, defaultValidator as on } from "./components/QueryBuilder/helpers/QueryBuilderContants.js";
133
- import sn from "./components/QueryBuilder/QueryBuilder.styles.js";
134
- import cn from "./components/QueryBuilder/index.js";
135
- import ln from "./components/Text/Text.styles.js";
136
- import un from "./components/Text/index.js";
137
- import { arrayDifference as dn, isFunction as fn, isInViewport as pn, isString as mn } from "./helpers/utils.js";
138
- import hn from "./components/Tree/Tree.styles.js";
139
- import gn from "./components/Tree/index.js";
140
- import _n from "./components/Toast/ToastContext.js";
141
- import vn from "./components/Toast/ToastProvider.js";
142
- import yn from "./components/Toast/useToast.js";
143
- import bn from "./components/Cache/CacheContext.js";
144
- import xn from "./components/Cache/CacheProvider.js";
145
- import Sn from "./components/Cache/hooks/useCache.js";
146
- import { components_exports as Cn } from "./components/index.js";
147
- import wn from "./hooks/useDisclosure/index.js";
148
- import Tn from "./hooks/useReducerWithMiddleware/index.js";
149
- import En from "./hooks/useStateDebounce/index.js";
150
- import { utils_exports as Dn } from "./utils/index.js";
151
- import On from "./hooks/useStateMemo/index.js";
152
- import kn from "./hooks/useStorage/index.js";
153
- import { hooks_exports as An } from "./hooks/index.js";
154
- import { icons_exports as jn } from "./icons/index.js";
155
- import Mn, { paletteColors as Nn, tokenColors as Pn } from "./tailwind/colors.js";
156
- import { tailwind_exports as Fn } from "./tailwind/index.js";
4
+ import { cloneAtPath as r, cloneDeep as i, cloneObject as a } from "./helpers/lodash/cloneDeep.js";
5
+ import { has as o } from "./helpers/lodash/has.js";
6
+ import { omit as s } from "./helpers/lodash/omit.js";
7
+ import { debounce as c } from "./helpers/lodash/debounce.js";
8
+ import { throttle as l } from "./helpers/lodash/throttle.js";
9
+ import { capitalize as u } from "./helpers/lodash/capitalize.js";
10
+ import { isEmpty as d } from "./helpers/lodash/isEmpty.js";
11
+ import { camelCase as f } from "./helpers/lodash/camelCase.js";
12
+ import { snakeCase as p } from "./helpers/lodash/snakeCase.js";
13
+ import { upperFirst as m } from "./helpers/lodash/upperFirst.js";
14
+ import { ThemeContext as h } from "./components/Provider/providers/ThemeProvider/ThemeProvider.js";
15
+ import g from "./components/Provider/providers/ThemeProvider/index.js";
16
+ import _ from "./utils/deepEqual/index.js";
17
+ import v from "./hooks/useValueMemo/index.js";
18
+ import y from "./hooks/useTheme/index.js";
19
+ import b from "./helpers/cvaWrapper.js";
20
+ import x from "./components/Flex/Flex.styles.js";
21
+ import S from "./components/Flex/index.js";
22
+ import C from "./components/Icon/Icon.styles.js";
23
+ import w from "./components/Icon/index.js";
24
+ import T from "./components/Accordion/hooks/useAccordion.js";
25
+ import E from "./components/Accordion/Accordion.styles.js";
26
+ import D from "./components/Accordion/index.js";
27
+ import O from "./components/Alert/Alert.styles.js";
28
+ import k from "./components/Alert/index.js";
29
+ import A from "./components/Badge/Badge.styles.js";
30
+ import j from "./components/Badge/index.js";
31
+ import M from "./components/Breadcrumb/Breadcrumb.styles.js";
32
+ import N from "./components/Breadcrumb/index.js";
33
+ import P from "./components/Button/Button.styles.js";
34
+ import F from "./components/Button/index.js";
35
+ import I from "./components/Card/Card.styles.js";
36
+ import L from "./components/Card/index.js";
37
+ import R from "./components/ErrorMessage/ErrorMessage.styles.js";
38
+ import z from "./components/ErrorMessage/index.js";
39
+ import B from "./components/Label/Label.styles.js";
40
+ import V from "./components/Label/index.js";
41
+ import H from "./components/Input/InputContainer.js";
42
+ import U from "./components/Checkbox/Checkbox.styles.js";
43
+ import W from "./components/Checkbox/index.js";
44
+ import { EditorState as G, Transaction as K } from "./components/CodeMirror/CodeMirror.js";
45
+ import q from "./components/CodeMirror/CodeMirror.styles.js";
46
+ import J from "./components/CodeMirror/index.js";
47
+ import Y from "./hooks/useDidUpdateEffect/index.js";
48
+ import X from "./components/ContainerFloating/hooks/useFloating.js";
49
+ import Z from "./components/ContainerFloating/ContainerFloating.styles.js";
50
+ import Q from "./components/ContainerFloating/index.js";
51
+ import $ from "./components/ColorPicker/ColorPicker.styles.js";
52
+ import ee from "./components/ColorPicker/index.js";
53
+ import te from "./components/ContainerAutoScale/index.js";
54
+ import ne from "./components/ContainerCollapsable/ContainerCollapsable.styles.js";
55
+ import re from "./components/ContainerCollapsable/index.js";
56
+ import ie from "./components/ContainerRoot/ContainerRootContext.js";
57
+ import ae from "./components/ContainerWindow/index.js";
58
+ import oe from "./components/ContainerResizable/ContainerResizable.styles.js";
59
+ import se from "./components/ContainerResizable/index.js";
60
+ import ce from "./components/ContainerDraggable/ContainerDraggable.styles.js";
61
+ import le from "./components/ContainerDraggable/index.js";
62
+ import ue from "./components/ContainerFrame/ContainerFrame.styles.js";
63
+ import de from "./components/ContainerFrame/index.js";
64
+ import fe from "./components/ContainerRoot/index.js";
65
+ import pe from "./components/ContainerShadow/index.js";
66
+ import me from "./components/ContainerTabs/TabContent.js";
67
+ import he from "./components/ContainerTabs/Tab.js";
68
+ import ge from "./components/ContainerTabs/Tabs.js";
69
+ import _e from "./components/ContainerTabs/ContainerTabs.styles.js";
70
+ import ve from "./components/ContainerTabs/index.js";
71
+ import ye from "./components/ContentEditable/ContentEditable.styles.js";
72
+ import be from "./components/ContentEditable/index.js";
73
+ import xe from "./components/Dummy/Dummy.styles.js";
74
+ import Se from "./components/Dummy/index.js";
75
+ import Ce from "./components/ErrorBoundary/index.js";
76
+ import we from "./components/FileUpload/FileUpload.styles.js";
77
+ import Te from "./components/FileUpload/index.js";
78
+ import Ee from "./components/Form/fields/FormColor.js";
79
+ import De from "./components/Form/fields/FormConditional.js";
80
+ import Oe from "./components/Form/fields/FormFieldCustom.js";
81
+ import ke from "./components/Input/Input.styles.js";
82
+ import Ae from "./components/Input/index.js";
83
+ import je from "./components/Select/Select.styles.js";
84
+ import Me from "./components/Select/index.js";
85
+ import Ne from "./components/Select2/Select2.styles.js";
86
+ import Pe from "./components/Select2/index.js";
87
+ import Fe from "./components/Switch/Switch.styles.js";
88
+ import Ie from "./components/Switch/index.js";
89
+ import Le from "./components/TextArea/TextArea.styles.js";
90
+ import Re from "./components/TextArea/index.js";
91
+ import { fields_exports as ze } from "./components/Form/fields/index.js";
92
+ import Be from "./components/Form/Form.styles.js";
93
+ import Ve from "./components/Form/hooks/useForm.js";
94
+ import He from "./components/Form/hooks/useFormWatch.js";
95
+ import Ue, { useFieldArray as We, useFormContext as Ge } from "./components/Form/index.js";
96
+ import Ke from "./helpers/DynamicComponent.js";
97
+ import qe from "./components/Heading/Heading.styles.js";
98
+ import Je from "./components/Heading/index.js";
99
+ import Ye from "./components/IconGroup/IconGroup.styles.js";
100
+ import Xe from "./components/IconGroup/index.js";
101
+ import { arrayToNestedObject as Ze, nestedObjectToArray as Qe, normalizeToFlatKV as $e } from "./components/KVInput/KVInputHelper.js";
102
+ import et from "./components/KVInput/KVInput.styles.js";
103
+ import tt from "./components/KVInput/index.js";
104
+ import nt from "./components/Markdown/Markdown.styles.js";
105
+ import rt from "./components/Markdown/index.js";
106
+ import it from "./components/MenuList/MenuList.styles.js";
107
+ import at from "./components/MenuList/index.js";
108
+ import ot from "./components/MetricInput/MetricInput.styles.js";
109
+ import st from "./components/MetricInput/index.js";
110
+ import ct from "./components/Modal/Modal.styles.js";
111
+ import lt from "./components/Modal/ModalContext.js";
112
+ import ut from "./components/Modal/ModalProvider.js";
113
+ import dt from "./components/Modal/useModal.js";
114
+ import ft from "./components/Modal/index.js";
115
+ import { PopupContextFloating as pt, PopupContextLeft as mt, PopupContextRight as ht } from "./components/Popup/PopupContext.js";
116
+ import gt from "./components/Popup/hooks/usePopup.js";
117
+ import _t from "./components/Sidebar/Sidebar.styles.js";
118
+ import vt from "./components/Sidebar/index.js";
119
+ import yt from "./components/Popup/components/PopupSidePanel/index.js";
120
+ import { PopupManager as bt } from "./components/Popup/helpers/PopupManager.js";
121
+ import xt from "./components/Popup/Popup.styles.js";
122
+ import St from "./components/Popup/PopupProvider.js";
123
+ import Ct from "./components/Popup/index.js";
124
+ import { providers_exports as wt } from "./components/Provider/providers/index.js";
125
+ import Tt from "./components/Provider/index.js";
126
+ import { isDate as Et, toUnixSeconds as Dt } from "./helpers/formatDate.js";
127
+ import { getQueryMap as Ot, isNumeric as kt, isRuleGroup as At } from "./components/QueryBuilder/helpers/QueryBuilderHelper.js";
128
+ import jt from "./components/QueryBuilder/helpers/formatters/formatterMongoDB.js";
129
+ import Mt, { formatBasic as Nt, formatBeginsWith as Pt, formatBetween as Ft, formatContains as It, formatEmpty as Lt, formatEndsWith as Rt, formatIn as zt } from "./components/QueryBuilder/helpers/formatters/formatterSql.js";
130
+ import Bt, { evaluateBeginsWith as Vt, evaluateBetween as Ht, evaluateContains as Ut, evaluateEmpty as Wt, evaluateEndsWith as Gt, evaluateEquals as Kt, evaluateGreaterThan as qt, evaluateGreaterThanOrEqual as Jt, evaluateIn as Yt, evaluateLessThan as Xt, evaluateLessThanOrEqual as Zt, getValuesRequired as Qt, transformQuery as $t, transformQueryJson as en } from "./components/QueryBuilder/helpers/QueryBuilderEvaluator.js";
131
+ import tn from "./components/QueryBuilder/helpers/QueryBuilderFormatter.js";
132
+ import { defaultCombinators as nn, defaultCombinatorsExtended as rn, defaultOperatorNegationMap as an, defaultOperators as on, defaultValidator as sn } from "./components/QueryBuilder/helpers/QueryBuilderContants.js";
133
+ import cn from "./components/QueryBuilder/QueryBuilder.styles.js";
134
+ import ln from "./components/QueryBuilder/index.js";
135
+ import un from "./components/Text/Text.styles.js";
136
+ import dn from "./components/Text/index.js";
137
+ import { arrayDifference as fn, isFunction as pn, isInViewport as mn, isString as hn } from "./helpers/utils.js";
138
+ import gn from "./components/Tree/Tree.styles.js";
139
+ import _n from "./components/Tree/index.js";
140
+ import vn from "./components/Toast/ToastContext.js";
141
+ import yn from "./components/Toast/ToastProvider.js";
142
+ import bn from "./components/Toast/useToast.js";
143
+ import xn from "./components/Cache/CacheContext.js";
144
+ import Sn from "./components/Cache/CacheProvider.js";
145
+ import Cn from "./components/Cache/hooks/useCache.js";
146
+ import { components_exports as wn } from "./components/index.js";
147
+ import Tn from "./hooks/useDisclosure/index.js";
148
+ import En from "./hooks/useReducerWithMiddleware/index.js";
149
+ import Dn from "./hooks/useStateDebounce/index.js";
150
+ import { utils_exports as On } from "./utils/index.js";
151
+ import kn from "./hooks/useStateMemo/index.js";
152
+ import An from "./hooks/useStorage/index.js";
153
+ import { hooks_exports as jn } from "./hooks/index.js";
154
+ import { icons_exports as Mn } from "./icons/index.js";
155
+ import Nn, { paletteColors as Pn, tokenColors as Fn } from "./tailwind/colors.js";
156
+ import { tailwind_exports as In } from "./tailwind/index.js";
157
157
  /* empty css */
158
- export { E as Accordion, O as Alert, A as Badge, M as Breadcrumb, P as Button, bn as CacheContext, xn as CacheProvider, I as Card, U as Checkbox, q as CodeMirror, Te as Color, $ as ColorPicker, Ee as Conditional, ee as ContainerAutoScale, ne as ContainerCollapsable, ce as ContainerDraggable, Z as ContainerFloating, ue as ContainerFrame, oe as ContainerResizable, de as ContainerRoot, re as ContainerRootContext, fe as ContainerShadow, _e as ContainerTabs, ie as ContainerWindow, ye as Contenteditable, De as Custom, xe as Dummy, Ge as DynamicComponent, W as EditorState, Se as ErrorBoundary, R as ErrorMessage, we as FileUpload, x as Flex, He as Form, qe as Heading, C as Icon, Ye as IconGroup, ke as Input, V as InputContainer, et as KVInput, B as Label, nt as Markdown, it as MenuList, ot as MetricInput, dt as Modal, ct as ModalContext, lt as ModalProvider, St as Popup, ft as PopupContextFloating, pt as PopupContextLeft, mt as PopupContextRight, yt as PopupManager, xt as PopupProvider, vt as PopupSidePanel, wt as Provider, cn as QueryBuilder, zt as QueryBuilderEvaluator, en as QueryBuilderFormatter, je as Select, Ne as Select2, _t as Sidebar, Fe as Switch, me as Tab, pe as TabContent, he as Tabs, un as Text, Le as TextArea, m as ThemeContext, h as ThemeProvider, _n as ToastContext, vn as ToastProvider, G as Transaction, gn as Tree, T as accordionTheme, D as alertTheme, dn as arrayDifference, Xe as arrayToNestedObject, k as badgeTheme, j as breadcrumbTheme, N as buttonTheme, d as camelCase, l as capitalize, F as cardTheme, H as checkboxTheme, r as cloneAtPath, i as cloneDeep, K as codeMirrorTheme, Q as colorPickerTheme, Mn as colors, Cn as components, te as containerCollapsableTheme, se as containerDraggableTheme, X as containerFloatingTheme, le as containerFrameTheme, ae as containerResizableTheme, ge as containerTabsTheme, ve as contentEditableTheme, y as cva, s as debounce, g as deepEqual, tn as defaultCombinators, nn as defaultCombinatorsExtended, rn as defaultOperatorNegationMap, an as defaultOperators, on as defaultValidator, be as dummyTheme, L as errorMessageTheme, Bt as evaluateBeginsWith, Vt as evaluateBetween, Ht as evaluateContains, Ut as evaluateEmpty, Wt as evaluateEndsWith, Gt as evaluateEquals, Kt as evaluateGreaterThan, qt as evaluateGreaterThanOrEqual, Jt as evaluateIn, Yt as evaluateLessThan, Xt as evaluateLessThanOrEqual, Re as fields, Ce as fileUploadTheme, b as flexTheme, ze as formTheme, Mt as formatBasic, Nt as formatBeginsWith, Pt as formatBetween, Ft as formatContains, It as formatEmpty, Lt as formatEndsWith, Rt as formatIn, At as formatterMongoDB, jt as formatterSql, e as get, Dt as getQueryMap, Zt as getValuesRequired, a as has, Ke as headingTheme, An as hooks, Je as iconGroupTheme, S as iconTheme, jn as icons, Oe as inputTheme, Tt as isDate, u as isEmpty, fn as isFunction, pn as isInViewport, Ot as isNumeric, kt as isRuleGroup, mn as isString, $e as kvInputTheme, z as labelTheme, tt as markdownTheme, rt as menuListTheme, at as metricInputTheme, st as modalTheme, Ze as nestedObjectToArray, Qe as normalizeToFlatKV, o as omit, Nn as paletteColors, n as pick, bt as popupTheme, Ct as providers, sn as queriBuilderTheme, Me as select2Theme, Ae as selectTheme, t as set, gt as sidebarTheme, f as snakeCase, Pe as switchTheme, Fn as tailwind, Ie as textAreaTheme, ln as textTheme, c as throttle, Et as toUnixSeconds, Pn as tokenColors, Qt as transformQuery, $t as transformQueryJson, hn as treeTheme, p as upperFirst, w as useAccordion, Sn as useCache, J as useDidUpdateEffect, wn as useDisclosure, Ue as useFieldArray, Y as useFloating, Be as useForm, We as useFormContext, Ve as useFormWatch, ut as useModal, ht as usePopup, Tn as useReducerWithMiddleware, En as useStateDebounce, On as useStateMemo, kn as useStorage, v as useTheme, yn as useToast, _ as useValueMemo, Dn as utils };
158
+ export { D as Accordion, k as Alert, j as Badge, N as Breadcrumb, F as Button, xn as CacheContext, Sn as CacheProvider, L as Card, W as Checkbox, J as CodeMirror, Ee as Color, ee as ColorPicker, De as Conditional, te as ContainerAutoScale, re as ContainerCollapsable, le as ContainerDraggable, Q as ContainerFloating, de as ContainerFrame, se as ContainerResizable, fe as ContainerRoot, ie as ContainerRootContext, pe as ContainerShadow, ve as ContainerTabs, ae as ContainerWindow, be as Contenteditable, Oe as Custom, Se as Dummy, Ke as DynamicComponent, G as EditorState, Ce as ErrorBoundary, z as ErrorMessage, Te as FileUpload, S as Flex, Ue as Form, Je as Heading, w as Icon, Xe as IconGroup, Ae as Input, H as InputContainer, tt as KVInput, V as Label, rt as Markdown, at as MenuList, st as MetricInput, ft as Modal, lt as ModalContext, ut as ModalProvider, Ct as Popup, pt as PopupContextFloating, mt as PopupContextLeft, ht as PopupContextRight, bt as PopupManager, St as PopupProvider, yt as PopupSidePanel, Tt as Provider, ln as QueryBuilder, Bt as QueryBuilderEvaluator, tn as QueryBuilderFormatter, Me as Select, Pe as Select2, vt as Sidebar, Ie as Switch, he as Tab, me as TabContent, ge as Tabs, dn as Text, Re as TextArea, h as ThemeContext, g as ThemeProvider, vn as ToastContext, yn as ToastProvider, K as Transaction, _n as Tree, E as accordionTheme, O as alertTheme, fn as arrayDifference, Ze as arrayToNestedObject, A as badgeTheme, M as breadcrumbTheme, P as buttonTheme, f as camelCase, u as capitalize, I as cardTheme, U as checkboxTheme, r as cloneAtPath, i as cloneDeep, a as cloneObject, q as codeMirrorTheme, $ as colorPickerTheme, Nn as colors, wn as components, ne as containerCollapsableTheme, ce as containerDraggableTheme, Z as containerFloatingTheme, ue as containerFrameTheme, oe as containerResizableTheme, _e as containerTabsTheme, ye as contentEditableTheme, b as cva, c as debounce, _ as deepEqual, nn as defaultCombinators, rn as defaultCombinatorsExtended, an as defaultOperatorNegationMap, on as defaultOperators, sn as defaultValidator, xe as dummyTheme, R as errorMessageTheme, Vt as evaluateBeginsWith, Ht as evaluateBetween, Ut as evaluateContains, Wt as evaluateEmpty, Gt as evaluateEndsWith, Kt as evaluateEquals, qt as evaluateGreaterThan, Jt as evaluateGreaterThanOrEqual, Yt as evaluateIn, Xt as evaluateLessThan, Zt as evaluateLessThanOrEqual, ze as fields, we as fileUploadTheme, x as flexTheme, Be as formTheme, Nt as formatBasic, Pt as formatBeginsWith, Ft as formatBetween, It as formatContains, Lt as formatEmpty, Rt as formatEndsWith, zt as formatIn, jt as formatterMongoDB, Mt as formatterSql, e as get, Ot as getQueryMap, Qt as getValuesRequired, o as has, qe as headingTheme, jn as hooks, Ye as iconGroupTheme, C as iconTheme, Mn as icons, ke as inputTheme, Et as isDate, d as isEmpty, pn as isFunction, mn as isInViewport, kt as isNumeric, At as isRuleGroup, hn as isString, et as kvInputTheme, B as labelTheme, nt as markdownTheme, it as menuListTheme, ot as metricInputTheme, ct as modalTheme, Qe as nestedObjectToArray, $e as normalizeToFlatKV, s as omit, Pn as paletteColors, n as pick, xt as popupTheme, wt as providers, cn as queriBuilderTheme, Ne as select2Theme, je as selectTheme, t as set, _t as sidebarTheme, p as snakeCase, Fe as switchTheme, In as tailwind, Le as textAreaTheme, un as textTheme, l as throttle, Dt as toUnixSeconds, Fn as tokenColors, $t as transformQuery, en as transformQueryJson, gn as treeTheme, m as upperFirst, T as useAccordion, Cn as useCache, Y as useDidUpdateEffect, Tn as useDisclosure, We as useFieldArray, X as useFloating, Ve as useForm, Ge as useFormContext, He as useFormWatch, dt as useModal, gt as usePopup, En as useReducerWithMiddleware, Dn as useStateDebounce, kn as useStateMemo, An as useStorage, y as useTheme, bn as useToast, v as useValueMemo, On as utils };
@@ -3,4 +3,4 @@ import t from "./deepEqual/index.js";
3
3
  //#region src/utils/index.ts
4
4
  var n = /* @__PURE__ */ e({ deepEqual: () => t });
5
5
  //#endregion
6
- export { n as utils_exports };
6
+ export { t as deepEqual, n as utils_exports };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plitzi/plitzi-ui",
3
- "version": "1.6.10",
3
+ "version": "1.6.12",
4
4
  "homepage": "./",
5
5
  "license": "Apache-2.0",
6
6
  "files": [
@@ -90,15 +90,15 @@
90
90
  ],
91
91
  "dependencies": {
92
92
  "@codemirror/autocomplete": "^6.20.3",
93
- "@codemirror/commands": "^6.10.3",
93
+ "@codemirror/commands": "^6.10.4",
94
94
  "@codemirror/lang-css": "^6.3.1",
95
95
  "@codemirror/lang-html": "^6.4.11",
96
96
  "@codemirror/lang-javascript": "^6.2.5",
97
97
  "@codemirror/lang-json": "^6.0.2",
98
98
  "@codemirror/search": "^6.7.1",
99
- "@codemirror/state": "^6.6.0",
99
+ "@codemirror/state": "^6.7.0",
100
100
  "@codemirror/theme-one-dark": "^6.1.3",
101
- "@codemirror/view": "^6.43.1",
101
+ "@codemirror/view": "^6.43.4",
102
102
  "@hookform/resolvers": "^5.4.0",
103
103
  "@uiw/color-convert": "^2.10.3",
104
104
  "@uiw/react-color-sketch": "^2.10.3",
@@ -137,13 +137,13 @@
137
137
  "@testing-library/react": "^16.3.2",
138
138
  "@types/lodash": "^4.17.24",
139
139
  "@types/lodash-es": "^4.17.12",
140
- "@types/node": "^26.0.0",
140
+ "@types/node": "^26.0.1",
141
141
  "@types/react": "^19.2.17",
142
142
  "@types/react-color": "^3.0.13",
143
143
  "@types/react-dom": "^19.2.3",
144
144
  "@types/react-syntax-highlighter": "^15.5.13",
145
145
  "@types/tinycolor2": "^1.4.6",
146
- "@vitejs/plugin-react": "^6.0.2",
146
+ "@vitejs/plugin-react": "^6.0.3",
147
147
  "cssnano": "^8.0.2",
148
148
  "eslint": "^9.39.4",
149
149
  "eslint-plugin-import": "^2.32.0",
@@ -152,24 +152,24 @@
152
152
  "eslint-plugin-react-hooks": "^7.1.1",
153
153
  "eslint-plugin-react-refresh": "^0.5.3",
154
154
  "eslint-plugin-storybook": "^10.4.6",
155
- "flow-bin": "^0.320.0",
156
- "globals": "^17.6.0",
155
+ "flow-bin": "^0.321.0",
156
+ "globals": "^17.7.0",
157
157
  "jsdom": "^29.1.1",
158
158
  "lodash": "^4.18.1",
159
159
  "lodash-es": "^4.18.1",
160
160
  "postcss": "^8.5.15",
161
161
  "postcss-scss": "^4.0.9",
162
- "prettier": "^3.8.4",
162
+ "prettier": "^3.9.0",
163
163
  "sass": "^1.101.0",
164
164
  "storybook": "^10.4.6",
165
- "stylelint": "^17.13.0",
165
+ "stylelint": "^17.14.0",
166
166
  "stylelint-order": "^8.1.1",
167
167
  "stylelint-scss": "^7.2.0",
168
168
  "tailwindcss": "4.3.1",
169
169
  "typescript": "^6.0.3",
170
- "typescript-eslint": "^8.61.1",
171
- "vite": "^8.0.16",
172
- "vite-plugin-dts": "^5.0.2",
170
+ "typescript-eslint": "^8.62.0",
171
+ "vite": "^8.1.0",
172
+ "vite-plugin-dts": "^5.0.3",
173
173
  "vite-plugin-static-copy": "^4.1.1",
174
174
  "vitest": "^4.1.9",
175
175
  "vitest-fetch-mock": "^0.4.5"
@@ -204,5 +204,5 @@
204
204
  "last 1 safari version"
205
205
  ]
206
206
  },
207
- "packageManager": "yarn@4.2.2"
207
+ "packageManager": "yarn@4.17.0"
208
208
  }