@arthurzakharov/ui-kit 1.8.8 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist/animations/fade-grow/fade-grow.component.js +15 -14
  2. package/dist/animations/fade-scale/fade-scale.component.js +16 -15
  3. package/dist/animations/fade-slide/fade-slide.component.js +12 -11
  4. package/dist/animations/hooks/use-animation-lifecycle/use-animation-lifecycle.hook.d.ts +2 -1
  5. package/dist/animations/hooks/use-animation-lifecycle/use-animation-lifecycle.hook.js +16 -16
  6. package/dist/animations/rotate/rotate.component.js +11 -10
  7. package/dist/animations/utils/types.d.ts +1 -0
  8. package/dist/components/accordion-table/accordion-table.component.js +18 -17
  9. package/dist/components/bottom-bar/bottom-bar.component.js +3 -2
  10. package/dist/components/dialog-article/dialog-article.component.js +3 -2
  11. package/dist/components/sidebar/sidebar.component.js +1 -1
  12. package/dist/components/signature/signature.component.js +3 -2
  13. package/dist/components/text/text.component.d.ts +1 -1
  14. package/dist/components/text/text.component.js +53 -50
  15. package/dist/components/user-panel/user-panel.component.js +5 -4
  16. package/dist/controls/buttons/button-card/button-card.component.js +8 -7
  17. package/dist/controls/buttons/button-radio/button-radio.component.js +3 -2
  18. package/dist/controls/interactives/card-image/card-image.component.js +1 -1
  19. package/dist/controls/interactives/card-text/card-text.component.js +1 -1
  20. package/dist/controls/interactives/checkbox/checkbox.component.js +7 -6
  21. package/dist/controls/interactives/dropdown/dropdown.component.js +3 -2
  22. package/dist/controls/interactives/radio/radio.component.js +1 -1
  23. package/dist/controls/interactives/text-area/text-area.component.js +1 -1
  24. package/dist/controls/interactives/text-field/text-field.component.js +8 -7
  25. package/dist/utils/content/content.component.d.ts +1 -267
  26. package/dist/utils/content/content.component.js +6 -3
  27. package/package.json +1 -1
@@ -1,27 +1,28 @@
1
- import { jsx as n } from "react/jsx-runtime";
1
+ import { jsx as e } from "react/jsx-runtime";
2
2
  import m from "clsx";
3
3
  import { withBaseAnimationDefaults as r } from "../utils/default-props.js";
4
- import { useAnimationLifecycle as s } from "../hooks/use-animation-lifecycle/use-animation-lifecycle.hook.js";
5
- import { c as d } from "../../animation.module-DQXuL9kR.js";
4
+ import { useAnimationLifecycle as d } from "../hooks/use-animation-lifecycle/use-animation-lifecycle.hook.js";
5
+ import { c as s } from "../../animation.module-DQXuL9kR.js";
6
6
  import { m as c } from "../../proxy-CmTphuYR.js";
7
- const A = (o) => {
8
- const t = r(o), i = s({
7
+ const y = (o) => {
8
+ const t = r(o), i = d({
9
9
  condition: t.condition,
10
- animateOnStart: t.animateOnStart
11
- }), a = {
10
+ animateOnStart: t.animateOnStart,
11
+ onAnimationEnd: t.onAnimationEnd
12
+ }), n = {
12
13
  height: 0,
13
14
  opacity: 0
14
- }, e = { height: "auto", opacity: 1 };
15
- return !i.shouldRender && !t.keepMount ? null : /* @__PURE__ */ n(
15
+ }, a = { height: "auto", opacity: 1 };
16
+ return !i.shouldRender && !t.keepMount ? null : /* @__PURE__ */ e(
16
17
  "div",
17
18
  {
18
19
  "data-testid": t["data-testid"] || "animation-fade-grow",
19
- className: m(d.Animation, t.className),
20
- children: /* @__PURE__ */ n(
20
+ className: m(s.Animation, t.className),
21
+ children: /* @__PURE__ */ e(
21
22
  c.div,
22
23
  {
23
- initial: i.getInitialState(a, e),
24
- animate: i.getAnimateState(a, e),
24
+ initial: i.getInitialState(n, a),
25
+ animate: i.getAnimateState(n, a),
25
26
  transition: {
26
27
  ease: t.ease,
27
28
  duration: t.duration,
@@ -37,5 +38,5 @@ const A = (o) => {
37
38
  );
38
39
  };
39
40
  export {
40
- A as FadeGrow
41
+ y as FadeGrow
41
42
  };
@@ -2,33 +2,34 @@ import { jsx as o } from "react/jsx-runtime";
2
2
  import m from "clsx";
3
3
  import { withBaseAnimationDefaults as r } from "../utils/default-props.js";
4
4
  import { useAnimationLifecycle as s } from "../hooks/use-animation-lifecycle/use-animation-lifecycle.hook.js";
5
- import { c } from "../../animation.module-DQXuL9kR.js";
6
- import { m as d } from "../../proxy-CmTphuYR.js";
7
- const h = (i) => {
8
- const t = r(i), a = s({
9
- condition: i.condition,
10
- animateOnStart: t.animateOnStart
11
- }), e = {
5
+ import { c as d } from "../../animation.module-DQXuL9kR.js";
6
+ import { m as c } from "../../proxy-CmTphuYR.js";
7
+ const S = (n) => {
8
+ const t = r(n), i = s({
9
+ condition: n.condition,
10
+ animateOnStart: t.animateOnStart,
11
+ onAnimationEnd: t.onAnimationEnd
12
+ }), a = {
12
13
  opacity: 0,
13
14
  scale: 0.95
14
- }, n = { opacity: 1, scale: 1 };
15
- return !a.shouldRender && !t.keepMount ? null : /* @__PURE__ */ o(
15
+ }, e = { opacity: 1, scale: 1 };
16
+ return !i.shouldRender && !t.keepMount ? null : /* @__PURE__ */ o(
16
17
  "div",
17
18
  {
18
19
  "data-testid": t["data-testid"] || "animation-fade-scale",
19
- className: m(c.Animation, t.className),
20
+ className: m(d.Animation, t.className),
20
21
  children: /* @__PURE__ */ o(
21
- d.div,
22
+ c.div,
22
23
  {
23
- initial: a.getInitialState(e, n),
24
- animate: a.getAnimateState(e, n),
24
+ initial: i.getInitialState(a, e),
25
+ animate: i.getAnimateState(a, e),
25
26
  transition: {
26
27
  ease: t.ease,
27
28
  duration: t.duration,
28
29
  delay: t.delay,
29
30
  type: t.type
30
31
  },
31
- onAnimationComplete: a.onAnimationComplete,
32
+ onAnimationComplete: i.onAnimationComplete,
32
33
  children: t.children
33
34
  },
34
35
  t.name
@@ -37,5 +38,5 @@ const h = (i) => {
37
38
  );
38
39
  };
39
40
  export {
40
- h as FadeScale
41
+ S as FadeScale
41
42
  };
@@ -1,27 +1,28 @@
1
1
  import { jsx as a } from "react/jsx-runtime";
2
- import r from "clsx";
3
- import { withBaseAnimationDefaults as m } from "../utils/default-props.js";
2
+ import m from "clsx";
3
+ import { withBaseAnimationDefaults as r } from "../utils/default-props.js";
4
4
  import { useAnimationLifecycle as d } from "../hooks/use-animation-lifecycle/use-animation-lifecycle.hook.js";
5
5
  import { c as s } from "../../animation.module-DQXuL9kR.js";
6
6
  import { m as l } from "../../proxy-CmTphuYR.js";
7
- const S = (o) => {
8
- const t = m(o), i = d({
7
+ const h = (o) => {
8
+ const t = r(o), i = d({
9
9
  condition: t.condition,
10
- animateOnStart: t.animateOnStart
11
- }), e = {
10
+ animateOnStart: t.animateOnStart,
11
+ onAnimationEnd: t.onAnimationEnd
12
+ }), n = {
12
13
  x: (t.direction ?? "ltr") === "ltr" ? "-100%" : "100%",
13
14
  opacity: 0
14
- }, n = { x: 0, opacity: 1 };
15
+ }, e = { x: 0, opacity: 1 };
15
16
  return !i.shouldRender && !t.keepMount ? null : /* @__PURE__ */ a(
16
17
  "div",
17
18
  {
18
19
  "data-testid": t["data-testid"] || "animation-fade-slide",
19
- className: r(s.Animation, t.className),
20
+ className: m(s.Animation, t.className),
20
21
  children: /* @__PURE__ */ a(
21
22
  l.div,
22
23
  {
23
- initial: i.getInitialState(e, n),
24
- animate: i.getAnimateState(e, n),
24
+ initial: i.getInitialState(n, e),
25
+ animate: i.getAnimateState(n, e),
25
26
  transition: {
26
27
  ease: t.ease,
27
28
  duration: t.duration,
@@ -38,5 +39,5 @@ const S = (o) => {
38
39
  );
39
40
  };
40
41
  export {
41
- S as FadeSlide
42
+ h as FadeSlide
42
43
  };
@@ -1,9 +1,10 @@
1
1
  type UseAnimationLifecycleOptions = {
2
2
  condition: boolean;
3
3
  animateOnStart: boolean;
4
+ onAnimationEnd?: (condition: boolean) => void;
4
5
  };
5
6
  type AnimationState<T, U> = T | U | false;
6
- export declare const useAnimationLifecycle: ({ condition, animateOnStart }: UseAnimationLifecycleOptions) => {
7
+ export declare const useAnimationLifecycle: ({ condition, animateOnStart, onAnimationEnd }: UseAnimationLifecycleOptions) => {
7
8
  shouldRender: boolean;
8
9
  getInitialState: <T, U>(hiddenState: T, visibleState: U) => AnimationState<T, U>;
9
10
  getAnimateState: <T, U>(hiddenState: T, visibleState: U) => T | U;
@@ -1,31 +1,31 @@
1
- import { useState as i, useRef as c, useEffect as s } from "react";
2
- const S = ({ condition: e, animateOnStart: m }) => {
3
- const [a, o] = i(m), [n, u] = i(e || m), f = c(e);
4
- return s(() => {
5
- f.current = e;
6
- }, [e]), s(() => {
7
- if (!a) {
1
+ import { useState as f, useRef as l, useEffect as m } from "react";
2
+ const g = ({ condition: e, animateOnStart: u, onAnimationEnd: i }) => {
3
+ const [r, o] = f(u), [a, c] = f(e || u), n = l(e);
4
+ return m(() => {
5
+ n.current = e;
6
+ }, [e]), m(() => {
7
+ if (!r) {
8
8
  const t = requestAnimationFrame(() => {
9
9
  o(!0);
10
10
  });
11
11
  return () => cancelAnimationFrame(t);
12
12
  }
13
- }, [a]), s(() => {
14
- if (e && !n) {
13
+ }, [r]), m(() => {
14
+ if (e && !a) {
15
15
  const t = requestAnimationFrame(() => {
16
- u(!0);
16
+ c(!0);
17
17
  });
18
18
  return () => cancelAnimationFrame(t);
19
19
  }
20
- }, [e, n]), {
21
- shouldRender: n,
22
- getInitialState: (t, r) => a ? e ? t : r : !1,
23
- getAnimateState: (t, r) => e ? r : t,
20
+ }, [e, a]), {
21
+ shouldRender: a,
22
+ getInitialState: (t, s) => r ? e ? t : s : !1,
23
+ getAnimateState: (t, s) => e ? s : t,
24
24
  onAnimationComplete: () => {
25
- f.current || u(!1);
25
+ n.current || c(!1), i?.(n.current);
26
26
  }
27
27
  };
28
28
  };
29
29
  export {
30
- S as useAnimationLifecycle
30
+ g as useAnimationLifecycle
31
31
  };
@@ -1,26 +1,26 @@
1
- import { jsx as m } from "react/jsx-runtime";
1
+ import { jsx as d } from "react/jsx-runtime";
2
2
  import { useRef as f, useState as l, useEffect as u } from "react";
3
3
  import { withBaseAnimationDefaults as p } from "../utils/default-props.js";
4
4
  import { m as R } from "../../proxy-CmTphuYR.js";
5
- const n = {
5
+ const i = {
6
6
  top: 0,
7
7
  right: 90,
8
8
  bottom: 180,
9
9
  left: 270
10
- }, C = (a) => {
11
- const t = p(a), o = f(t.condition), [e, r] = l(t.animateOnStart), i = `${n[t.from ?? "left"]}deg`, s = `${n[t.to ?? "top"]}deg`, c = (e ? t.condition : !1) ? s : i;
10
+ }, y = (a) => {
11
+ const t = p(a), e = f(t.condition), [o, r] = l(t.animateOnStart), n = `${i[t.from ?? "left"]}deg`, s = `${i[t.to ?? "top"]}deg`, c = (o ? t.condition : !1) ? s : n;
12
12
  return u(() => {
13
- if (o.current !== t.condition && (o.current = t.condition, !e)) {
14
- const d = requestAnimationFrame(() => {
13
+ if (e.current !== t.condition && (e.current = t.condition, !o)) {
14
+ const m = requestAnimationFrame(() => {
15
15
  r(!0);
16
16
  });
17
- return () => cancelAnimationFrame(d);
17
+ return () => cancelAnimationFrame(m);
18
18
  }
19
- }, [t.condition, e]), /* @__PURE__ */ m(
19
+ }, [t.condition, o]), /* @__PURE__ */ d(
20
20
  R.div,
21
21
  {
22
22
  "data-testid": t["data-testid"] || "animation-rotate",
23
- initial: { rotate: i },
23
+ initial: { rotate: n },
24
24
  animate: { rotate: c },
25
25
  transition: {
26
26
  ease: t.ease,
@@ -29,11 +29,12 @@ const n = {
29
29
  type: t.type
30
30
  },
31
31
  className: t.className,
32
+ onAnimationComplete: () => t.onAnimationEnd?.(t.condition),
32
33
  children: t.children
33
34
  },
34
35
  t.name
35
36
  );
36
37
  };
37
38
  export {
38
- C as Rotate
39
+ y as Rotate
39
40
  };
@@ -9,6 +9,7 @@ export interface BaseAnimationProps extends PropsWithChildren<Base> {
9
9
  ease?: EasingDefinition;
10
10
  duration?: number;
11
11
  delay?: number;
12
+ onAnimationEnd?: (condition: boolean) => void;
12
13
  }
13
14
  export interface BaseFadeAnimationProps extends BaseAnimationProps {
14
15
  keepMount?: boolean;
@@ -1,14 +1,15 @@
1
- import { jsxs as n, jsx as a } from "react/jsx-runtime";
1
+ import { jsxs as n, jsx as t } from "react/jsx-runtime";
2
2
  import { useState as H, Fragment as p } from "react";
3
3
  import { ChevronDown as B } from "lucide-react";
4
4
  import s from "clsx";
5
5
  import { FadeGrow as g } from "../../animations/fade-grow/fade-grow.component.js";
6
6
  import { Rotate as C } from "../../animations/rotate/rotate.component.js";
7
7
  import { baseProps as _ } from "../../utils/functions/functions.util.js";
8
+ import "../../utils/content/content.component.js";
8
9
  import "usehooks-ts";
9
10
  import "../../controls/primitives/box/box.component.js";
10
11
  import { ButtonText as w } from "../../controls/buttons/button-text/button-text.component.js";
11
- import '../../assets/accordion-table-Ci3u6qTN.css';const b = "_AccordionTable_gmtv3_1", $ = "_Head_gmtv3_11", u = "_HeadRow_gmtv3_15", R = "_DataRow_gmtv3_16", f = "_BodyRow_gmtv3_21", N = "_HeadCell_gmtv3_25", A = "_BodyCell_gmtv3_26", T = "_BodyHeadCell_gmtv3_41", D = "_BodyHead_gmtv3_41", t = {
12
+ import '../../assets/accordion-table-Ci3u6qTN.css';const b = "_AccordionTable_gmtv3_1", $ = "_Head_gmtv3_11", u = "_HeadRow_gmtv3_15", R = "_DataRow_gmtv3_16", f = "_BodyRow_gmtv3_21", N = "_HeadCell_gmtv3_25", A = "_BodyCell_gmtv3_26", T = "_BodyHeadCell_gmtv3_41", D = "_BodyHead_gmtv3_41", a = {
12
13
  AccordionTable: b,
13
14
  Head: $,
14
15
  HeadRow: u,
@@ -18,26 +19,26 @@ import '../../assets/accordion-table-Ci3u6qTN.css';const b = "_AccordionTable_gm
18
19
  BodyCell: A,
19
20
  BodyHeadCell: T,
20
21
  BodyHead: D
21
- }, E = ({ table: d, active: l = 0, ...r }) => {
22
+ }, J = ({ table: d, active: l = 0, ...c }) => {
22
23
  const [m, h] = H(l >= 0 && l < d.body.length ? l : null);
23
24
  return /* @__PURE__ */ n(
24
25
  "div",
25
26
  {
26
- "data-testid": _(r, "data-testid", "accordion-table"),
27
- className: s(t.AccordionTable, _(r, "className")),
27
+ "data-testid": _(c, "data-testid", "accordion-table"),
28
+ className: s(a.AccordionTable, _(c, "className")),
28
29
  style: { "--accordion-columns": Math.max(d.head.length, 1) },
29
30
  children: [
30
- /* @__PURE__ */ a("div", { "data-testid": "accordion-table-head", className: t.Head, children: /* @__PURE__ */ a("div", { className: t.HeadRow, children: d.head.map((e, o) => /* @__PURE__ */ a(
31
+ /* @__PURE__ */ t("div", { "data-testid": "accordion-table-head", className: a.Head, children: /* @__PURE__ */ t("div", { className: a.HeadRow, children: d.head.map((e, o) => /* @__PURE__ */ t(
31
32
  "div",
32
33
  {
33
- className: t.HeadCell,
34
+ className: a.HeadCell,
34
35
  "data-testid": `accordion-table-head-cell-${o}`,
35
36
  dangerouslySetInnerHTML: { __html: e }
36
37
  },
37
38
  e
38
39
  )) }) }),
39
- /* @__PURE__ */ a("div", { children: d.body.map((e, o) => /* @__PURE__ */ n(p, { children: [
40
- /* @__PURE__ */ a("div", { className: t.BodyRow, children: /* @__PURE__ */ a("div", { className: s(t.BodyCell, t.BodyHead, t.BodyHeadCell), children: /* @__PURE__ */ a(
40
+ /* @__PURE__ */ t("div", { children: d.body.map((e, o) => /* @__PURE__ */ n(p, { children: [
41
+ /* @__PURE__ */ t("div", { className: a.BodyRow, children: /* @__PURE__ */ t("div", { className: s(a.BodyCell, a.BodyHead, a.BodyHeadCell), children: /* @__PURE__ */ t(
41
42
  w,
42
43
  {
43
44
  "data-testid": `accordion-table-button-${o}`,
@@ -48,27 +49,27 @@ import '../../assets/accordion-table-Ci3u6qTN.css';const b = "_AccordionTable_gm
48
49
  weight: "regular",
49
50
  color: "theme-primary",
50
51
  iconPosition: "right",
51
- icon: /* @__PURE__ */ a(
52
+ icon: /* @__PURE__ */ t(
52
53
  C,
53
54
  {
54
55
  name: "rotate-icon",
55
56
  condition: m === o,
56
57
  from: "top",
57
58
  to: "bottom",
58
- children: /* @__PURE__ */ a(B, { size: 24 })
59
+ children: /* @__PURE__ */ t(B, { size: 24 })
59
60
  }
60
61
  ),
61
62
  onClick: () => h((i) => o !== i ? o : null)
62
63
  }
63
64
  ) }) }),
64
- /* @__PURE__ */ a(g, { name: `visible-section-${o}`, condition: m === o, children: /* @__PURE__ */ a("div", { "data-testid": `accordion-table-section-content-${o}`, children: e.rows.map((i, c) => /* @__PURE__ */ a(
65
+ /* @__PURE__ */ t(g, { name: `visible-section-${o}`, condition: m === o, children: /* @__PURE__ */ t("div", { "data-testid": `accordion-table-section-content-${o}`, children: e.rows.map((i, r) => /* @__PURE__ */ t(
65
66
  "div",
66
67
  {
67
- className: t.DataRow,
68
- "data-testid": `accordion-table-data-row-${o}-${c}`,
69
- children: i.map((v, y) => /* @__PURE__ */ a("div", { className: t.BodyCell, children: v }, `tr-${o}-${c}-${y}`))
68
+ className: a.DataRow,
69
+ "data-testid": `accordion-table-data-row-${o}-${r}`,
70
+ children: i.map((v, y) => /* @__PURE__ */ t("div", { className: a.BodyCell, children: v }, `tr-${o}-${r}-${y}`))
70
71
  },
71
- `tr-${o}-${c}`
72
+ `tr-${o}-${r}`
72
73
  )) }) })
73
74
  ] }, `${e.title}-${o}`)) })
74
75
  ]
@@ -76,5 +77,5 @@ import '../../assets/accordion-table-Ci3u6qTN.css';const b = "_AccordionTable_gm
76
77
  );
77
78
  };
78
79
  export {
79
- E as AccordionTable
80
+ J as AccordionTable
80
81
  };
@@ -5,6 +5,7 @@ import { useResizeObserver as f, useWindowSize as u } from "usehooks-ts";
5
5
  import { Text as c } from "../text/text.component.js";
6
6
  import { Button as y } from "../../controls/buttons/button/button.component.js";
7
7
  import "../../controls/primitives/box/box.component.js";
8
+ import "../../utils/content/content.component.js";
8
9
  import { baseProps as d } from "../../utils/functions/functions.util.js";
9
10
  import "lucide-react";
10
11
  import '../../assets/bottom-bar-DE6QuEjZ.css';const k = "_BottomBar_1pxm3_1", w = "_Fixed_1pxm3_7", R = "_Static_1pxm3_16", z = "_TopBlock_1pxm3_20", L = "_LeftBlock_1pxm3_24", v = "_RightBlock_1pxm3_31", N = "_Message_1pxm3_39", M = "_Button_1pxm3_44", r = {
@@ -37,7 +38,7 @@ import '../../assets/bottom-bar-DE6QuEjZ.css';const k = "_BottomBar_1pxm3_1", w
37
38
  size: t.size || "body",
38
39
  color: t.color || "text-primary",
39
40
  align: t.align || "left"
40
- }, I = ({ button: o, info: t, message: l, staticFrom: p = 768, ...s }) => {
41
+ }, A = ({ button: o, info: t, message: l, staticFrom: p = 768, ...s }) => {
41
42
  const g = x(null), { height: m } = f({
42
43
  ref: g,
43
44
  box: "border-box"
@@ -101,5 +102,5 @@ import '../../assets/bottom-bar-DE6QuEjZ.css';const k = "_BottomBar_1pxm3_1", w
101
102
  );
102
103
  };
103
104
  export {
104
- I as BottomBar
105
+ A as BottomBar
105
106
  };
@@ -4,12 +4,13 @@ import { useWindowSize as h, useResizeObserver as x } from "usehooks-ts";
4
4
  import b from "clsx";
5
5
  import { Button as l } from "../../controls/buttons/button/button.component.js";
6
6
  import "../../controls/primitives/box/box.component.js";
7
+ import "../../utils/content/content.component.js";
7
8
  import { baseProps as c } from "../../utils/functions/functions.util.js";
8
9
  import "lucide-react";
9
10
  import '../../assets/dialog-article-BdDXX1FV.css';const A = "_DialogArticle_vv4cw_1", B = "_Buttons_vv4cw_8", n = {
10
11
  DialogArticle: A,
11
12
  Buttons: B
12
- }, N = (d) => {
13
+ }, j = (d) => {
13
14
  const { children: m, cancel: t, confirm: e, ...i } = d, o = g(null), [u, f] = v(0), { width: p } = h();
14
15
  return x({
15
16
  ref: o,
@@ -53,5 +54,5 @@ import '../../assets/dialog-article-BdDXX1FV.css';const A = "_DialogArticle_vv4c
53
54
  );
54
55
  };
55
56
  export {
56
- N as DialogArticle
57
+ j as DialogArticle
57
58
  };
@@ -6,7 +6,7 @@ import { Line as s } from "../line/line.component.js";
6
6
  import { Text as n } from "../text/text.component.js";
7
7
  import { UserPanel as w } from "../user-panel/user-panel.component.js";
8
8
  import "../../controls/primitives/box/box.component.js";
9
- import "react";
9
+ import "../../utils/content/content.component.js";
10
10
  import { baseProps as f } from "../../utils/functions/functions.util.js";
11
11
  import "lucide-react";
12
12
  import "usehooks-ts";
@@ -5,6 +5,7 @@ import { RefreshCw as Fe, RotateCcw as qe, Check as Be } from "lucide-react";
5
5
  import fe from "clsx";
6
6
  import { Button as Pe } from "../../controls/buttons/button/button.component.js";
7
7
  import "../../controls/primitives/box/box.component.js";
8
+ import "../../utils/content/content.component.js";
8
9
  import { baseProps as we } from "../../utils/functions/functions.util.js";
9
10
  import { ButtonText as ie } from "../../controls/buttons/button-text/button-text.component.js";
10
11
  import { Loader as Ue } from "../loader/loader.component.js";
@@ -1095,7 +1096,7 @@ const ut = /* @__PURE__ */ He(st), ct = "_Signature_1sp4s_1", lt = "_Main_1sp4s_
1095
1096
  AutoPanelLabelText: Ct,
1096
1097
  AutoPanelError: Ot,
1097
1098
  AutoPanelErrorTitle: Rt
1098
- }, Nt = ({
1099
+ }, Ft = ({
1099
1100
  // Signature props
1100
1101
  auto: e,
1101
1102
  manual: a,
@@ -1254,5 +1255,5 @@ const ut = /* @__PURE__ */ He(st), ct = "_Signature_1sp4s_1", lt = "_Main_1sp4s_
1254
1255
  );
1255
1256
  };
1256
1257
  export {
1257
- Nt as Signature
1258
+ Ft as Signature
1258
1259
  };
@@ -9,4 +9,4 @@ export interface TextProps extends HTMLAttributes<HTMLElementTagNameMap>, PropsW
9
9
  size?: FontSize;
10
10
  color?: FontColor;
11
11
  }
12
- export declare const Text: ({ children, className, preset, lined, align, tag, weight, size, color, ...rest }: TextProps) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const Text: import('react').ForwardRefExoticComponent<TextProps & import('react').RefAttributes<HTMLElement>>;
@@ -1,52 +1,53 @@
1
- import { jsx as G } from "react/jsx-runtime";
2
- import h from "clsx";
3
- import { Content as L } from "../../utils/content/content.component.js";
4
- import '../../assets/text-Bhvd-u-V.css';const x = "_Lined_553v9_1", S = "_Left_553v9_7", u = "_Center_553v9_11", b = "_Right_553v9_15", f = "_Light_553v9_21", T = "_Regular_553v9_25", B = "_Medium_553v9_29", H = "_Bold_553v9_33", w = "_BodyExtraSmall_553v9_39", P = "_BodySmall_553v9_44", R = "_Body_553v9_39", z = "_BodyLarge_553v9_54", A = "_HL1_553v9_59", E = "_HL2_553v9_64", C = "_HL3_553v9_69", k = "_HL4_553v9_74", M = "_HL5_553v9_79", F = "_TextPrimary_553v9_86", $ = "_TextSecondary_553v9_90", N = "_AccentPrimary_553v9_94", j = "_AccentSecondary_553v9_98", W = "_ThemePrimary_553v9_102", q = "_ThemeSecondary_553v9_106", D = "_Success_553v9_114", I = "_Focus_553v9_118", J = "_Link_553v9_122", K = "_Grey950_553v9_126", O = "_Grey900_553v9_130", Q = "_Grey800_553v9_134", U = "_Grey700_553v9_138", V = "_Grey600_553v9_142", X = "_Grey500_553v9_146", Y = "_Grey400_553v9_150", Z = "_Grey300_553v9_154", ee = "_Grey200_553v9_158", re = "_Grey100_553v9_162", te = "_Grey50_553v9_146", e = {
5
- Lined: x,
6
- Left: S,
7
- Center: u,
1
+ import { jsx as h } from "react/jsx-runtime";
2
+ import { forwardRef as L } from "react";
3
+ import x from "clsx";
4
+ import { Content as S } from "../../utils/content/content.component.js";
5
+ import '../../assets/text-Bhvd-u-V.css';const f = "_Lined_553v9_1", u = "_Left_553v9_7", T = "_Center_553v9_11", b = "_Right_553v9_15", B = "_Light_553v9_21", H = "_Regular_553v9_25", w = "_Medium_553v9_29", R = "_Bold_553v9_33", P = "_BodyExtraSmall_553v9_39", z = "_BodySmall_553v9_44", A = "_Body_553v9_39", E = "_BodyLarge_553v9_54", C = "_HL1_553v9_59", k = "_HL2_553v9_64", M = "_HL3_553v9_69", F = "_HL4_553v9_74", $ = "_HL5_553v9_79", N = "_TextPrimary_553v9_86", j = "_TextSecondary_553v9_90", W = "_AccentPrimary_553v9_94", q = "_AccentSecondary_553v9_98", D = "_ThemePrimary_553v9_102", I = "_ThemeSecondary_553v9_106", J = "_Success_553v9_114", K = "_Focus_553v9_118", O = "_Link_553v9_122", Q = "_Grey950_553v9_126", U = "_Grey900_553v9_130", V = "_Grey800_553v9_134", X = "_Grey700_553v9_138", Y = "_Grey600_553v9_142", Z = "_Grey500_553v9_146", ee = "_Grey400_553v9_150", re = "_Grey300_553v9_154", te = "_Grey200_553v9_158", oe = "_Grey100_553v9_162", ye = "_Grey50_553v9_146", e = {
6
+ Lined: f,
7
+ Left: u,
8
+ Center: T,
8
9
  Right: b,
9
- Light: f,
10
- Regular: T,
11
- Medium: B,
12
- Bold: H,
13
- BodyExtraSmall: w,
14
- BodySmall: P,
15
- Body: R,
16
- BodyLarge: z,
17
- HL1: A,
18
- HL2: E,
19
- HL3: C,
20
- HL4: k,
21
- HL5: M,
22
- TextPrimary: F,
23
- TextSecondary: $,
24
- AccentPrimary: N,
25
- AccentSecondary: j,
26
- ThemePrimary: W,
27
- ThemeSecondary: q,
10
+ Light: B,
11
+ Regular: H,
12
+ Medium: w,
13
+ Bold: R,
14
+ BodyExtraSmall: P,
15
+ BodySmall: z,
16
+ Body: A,
17
+ BodyLarge: E,
18
+ HL1: C,
19
+ HL2: k,
20
+ HL3: M,
21
+ HL4: F,
22
+ HL5: $,
23
+ TextPrimary: N,
24
+ TextSecondary: j,
25
+ AccentPrimary: W,
26
+ AccentSecondary: q,
27
+ ThemePrimary: D,
28
+ ThemeSecondary: I,
28
29
  Error: "_Error_553v9_110",
29
- Success: D,
30
- Focus: I,
31
- Link: J,
32
- Grey950: K,
33
- Grey900: O,
34
- Grey800: Q,
35
- Grey700: U,
36
- Grey600: V,
37
- Grey500: X,
38
- Grey400: Y,
39
- Grey300: Z,
40
- Grey200: ee,
41
- Grey100: re,
42
- Grey50: te
43
- }, oe = {
30
+ Success: J,
31
+ Focus: K,
32
+ Link: O,
33
+ Grey950: Q,
34
+ Grey900: U,
35
+ Grey800: V,
36
+ Grey700: X,
37
+ Grey600: Y,
38
+ Grey500: Z,
39
+ Grey400: ee,
40
+ Grey300: re,
41
+ Grey200: te,
42
+ Grey100: oe,
43
+ Grey50: ye
44
+ }, ne = {
44
45
  "page-info": { tag: "p", weight: "light", size: "body", color: "text-secondary" },
45
46
  "page-subtitle": { tag: "h6", weight: "regular", size: "body", color: "text-primary" },
46
47
  "page-title": { tag: "h1", weight: "bold", size: "hl1", color: "text-primary" },
47
48
  "sidebar-title": { tag: "h3", weight: "bold", size: "hl3", color: "text-primary" },
48
49
  "step-title": { tag: "h2", weight: "bold", size: "hl4", color: "text-primary" }
49
- }, _e = ({
50
+ }, ce = L(({
50
51
  children: m,
51
52
  className: g,
52
53
  preset: y,
@@ -57,10 +58,10 @@ import '../../assets/text-Bhvd-u-V.css';const x = "_Lined_553v9_1", S = "_Left_5
57
58
  size: a = "body",
58
59
  color: s = "text-primary",
59
60
  ...l
60
- }) => {
61
+ }, p) => {
61
62
  let d = _, n = i, t = a, r = s;
62
63
  if (y) {
63
- const o = oe[y];
64
+ const o = ne[y];
64
65
  _ !== "p" && _ !== o.tag && console.warn(
65
66
  `Text component: 'tag' prop will be overridden by 'preset="${y}"'. Remove explicit 'tag' prop if not intended.`
66
67
  ), i !== "regular" && i !== o.weight && console.warn(
@@ -71,7 +72,7 @@ import '../../assets/text-Bhvd-u-V.css';const x = "_Lined_553v9_1", S = "_Left_5
71
72
  `Text component: 'color' prop will be overridden by 'preset="${y}"'. Remove explicit 'color' prop if not intended.`
72
73
  ), d = o.tag, n = o.weight, t = o.size, r = o.color;
73
74
  }
74
- const p = h(g, {
75
+ const G = x(g, {
75
76
  [e.Lined]: v,
76
77
  // ALIGNMENTS
77
78
  [e.Left]: c === "left",
@@ -115,18 +116,20 @@ import '../../assets/text-Bhvd-u-V.css';const x = "_Lined_553v9_1", S = "_Left_5
115
116
  [e.Grey100]: r === "grey-100",
116
117
  [e.Grey50]: r === "grey-50"
117
118
  });
118
- return /* @__PURE__ */ G(
119
- L,
119
+ return /* @__PURE__ */ h(
120
+ S,
120
121
  {
122
+ ref: p,
121
123
  "data-testid": l["data-testid"] || "content",
122
124
  tag: d,
123
125
  alwaysRender: !1,
124
- className: p,
126
+ className: G,
125
127
  ...l,
126
128
  children: m
127
129
  }
128
130
  );
129
- };
131
+ });
132
+ ce.displayName = "Text";
130
133
  export {
131
- _e as Text
134
+ ce as Text
132
135
  };
@@ -3,6 +3,7 @@ import { Pencil as d } from "lucide-react";
3
3
  import p from "clsx";
4
4
  import "react";
5
5
  import { baseProps as o } from "../../utils/functions/functions.util.js";
6
+ import "../../utils/content/content.component.js";
6
7
  import "usehooks-ts";
7
8
  import "../../controls/primitives/box/box.component.js";
8
9
  import { ButtonText as f } from "../../controls/buttons/button-text/button-text.component.js";
@@ -10,18 +11,18 @@ import '../../assets/user-panel-SauszbHl.css';const _ = "_UserPanel_zes0v_1", u
10
11
  UserPanel: _,
11
12
  Head: u,
12
13
  Info: P
13
- }, j = ({ title: a, button: i, data: n, onClick: l, ...r }) => /* @__PURE__ */ s(
14
+ }, b = ({ title: i, button: a, data: n, onClick: l, ...r }) => /* @__PURE__ */ s(
14
15
  "div",
15
16
  {
16
17
  "data-testid": o(r, "data-testid", "user-panel"),
17
18
  className: p(t.UserPanel, o(r, "className")),
18
19
  children: [
19
20
  /* @__PURE__ */ s("div", { className: t.Head, children: [
20
- /* @__PURE__ */ e("span", { "data-testid": "user-panel-title", children: a }),
21
+ /* @__PURE__ */ e("span", { "data-testid": "user-panel-title", children: i }),
21
22
  /* @__PURE__ */ e(
22
23
  f,
23
24
  {
24
- text: i,
25
+ text: a,
25
26
  preventDefault: !0,
26
27
  blurAfterClick: !0,
27
28
  icon: /* @__PURE__ */ e(d, {}),
@@ -37,5 +38,5 @@ import '../../assets/user-panel-SauszbHl.css';const _ = "_UserPanel_zes0v_1", u
37
38
  }
38
39
  );
39
40
  export {
40
- j as UserPanel
41
+ b as UserPanel
41
42
  };
@@ -5,7 +5,8 @@ import L from "clsx";
5
5
  import { Box as N } from "../../primitives/box/box.component.js";
6
6
  import { Caption as h } from "../../primitives/caption/caption.component.js";
7
7
  import "lucide-react";
8
- import { baseProps as i } from "../../../utils/functions/functions.util.js";
8
+ import { baseProps as l } from "../../../utils/functions/functions.util.js";
9
+ import "../../../utils/content/content.component.js";
9
10
  import { Svg as y } from "../../../utils/svg/svg.component.js";
10
11
  import '../../../assets/button-card-B-nlEbJU.css';const F = "_ButtonCard_10os6_1", j = "_Icon_10os6_10", z = "_IconTop_10os6_14", D = "_Text_10os6_21", H = "_IconLeft_10os6_25", o = {
11
12
  ButtonCard: F,
@@ -13,7 +14,7 @@ import '../../../assets/button-card-B-nlEbJU.css';const F = "_ButtonCard_10os6_1
13
14
  IconTop: z,
14
15
  Text: D,
15
16
  IconLeft: H
16
- }, J = (f) => {
17
+ }, K = (f) => {
17
18
  const {
18
19
  text: u,
19
20
  textSize: m = "body",
@@ -32,12 +33,12 @@ import '../../../assets/button-card-B-nlEbJU.css';const F = "_ButtonCard_10os6_1
32
33
  return /* @__PURE__ */ t(
33
34
  N,
34
35
  {
35
- "data-testid": i(c, "data-testid", "button-card"),
36
+ "data-testid": l(c, "data-testid", "button-card"),
36
37
  ref: r,
37
38
  checked: n || T,
38
39
  state: "idle",
39
40
  focused: C,
40
- className: i(c, "className"),
41
+ className: l(c, "className"),
41
42
  children: /* @__PURE__ */ B(
42
43
  "button",
43
44
  {
@@ -47,8 +48,8 @@ import '../../../assets/button-card-B-nlEbJU.css';const F = "_ButtonCard_10os6_1
47
48
  [o.IconTop]: e === "top",
48
49
  [o.IconLeft]: e === "left"
49
50
  }),
50
- onClick: (l) => {
51
- d && l.preventDefault(), _ && l.currentTarget.blur(), x?.();
51
+ onClick: (i) => {
52
+ d && i.preventDefault(), _ && i.currentTarget.blur(), x?.();
52
53
  },
53
54
  onFocus: () => {
54
55
  a(), I?.();
@@ -76,5 +77,5 @@ import '../../../assets/button-card-B-nlEbJU.css';const F = "_ButtonCard_10os6_1
76
77
  );
77
78
  };
78
79
  export {
79
- J as ButtonCard
80
+ K as ButtonCard
80
81
  };
@@ -6,6 +6,7 @@ import { Caption as H } from "../../primitives/caption/caption.component.js";
6
6
  import "lucide-react";
7
7
  import "clsx";
8
8
  import { baseProps as d } from "../../../utils/functions/functions.util.js";
9
+ import "../../../utils/content/content.component.js";
9
10
  import { Status as C } from "../../primitives/status/status.component.js";
10
11
  import '../../../assets/button-radio-CPeNePW2.css';const T = "_ButtonRadio_iwy6t_1", b = "_Row_iwy6t_14", v = "_Wrap_iwy6t_23", W = "_Content_iwy6t_32", k = "_Text_iwy6t_42", L = "_Hint_iwy6t_50", t = {
11
12
  ButtonRadio: T,
@@ -14,7 +15,7 @@ import '../../../assets/button-radio-CPeNePW2.css';const T = "_ButtonRadio_iwy6t
14
15
  Content: W,
15
16
  Text: k,
16
17
  Hint: L
17
- }, E = ({
18
+ }, G = ({
18
19
  text: m,
19
20
  textSize: u = "body",
20
21
  active: n = !1,
@@ -81,5 +82,5 @@ import '../../../assets/button-radio-CPeNePW2.css';const T = "_ButtonRadio_iwy6t
81
82
  );
82
83
  };
83
84
  export {
84
- E as ButtonRadio
85
+ G as ButtonRadio
85
86
  };
@@ -3,7 +3,7 @@ import b from "clsx";
3
3
  import { Box as j } from "../../primitives/box/box.component.js";
4
4
  import { Caption as z } from "../../primitives/caption/caption.component.js";
5
5
  import { Choice as $ } from "../../primitives/choice/choice.component.js";
6
- import "react";
6
+ import "../../../utils/content/content.component.js";
7
7
  import { baseProps as C } from "../../../utils/functions/functions.util.js";
8
8
  import { HiddenInput as F } from "../../primitives/hidden-input/hidden-input.component.js";
9
9
  import { RadioLabel as H } from "../../primitives/radio-label/radio-label.component.js";
@@ -3,7 +3,7 @@ import I from "clsx";
3
3
  import { Box as j } from "../../primitives/box/box.component.js";
4
4
  import { Caption as y } from "../../primitives/caption/caption.component.js";
5
5
  import { Choice as z } from "../../primitives/choice/choice.component.js";
6
- import "react";
6
+ import "../../../utils/content/content.component.js";
7
7
  import { baseProps as d } from "../../../utils/functions/functions.util.js";
8
8
  import { HiddenInput as B } from "../../primitives/hidden-input/hidden-input.component.js";
9
9
  import { RadioLabel as $ } from "../../primitives/radio-label/radio-label.component.js";
@@ -4,6 +4,7 @@ import { useHover as N } from "usehooks-ts";
4
4
  import p from "clsx";
5
5
  import { FadeSlide as S } from "../../../animations/fade-slide/fade-slide.component.js";
6
6
  import "../../primitives/box/box.component.js";
7
+ import "../../../utils/content/content.component.js";
7
8
  import { baseProps as _ } from "../../../utils/functions/functions.util.js";
8
9
  import { Choice as v } from "../../primitives/choice/choice.component.js";
9
10
  import { ErrorMessage as F } from "../../primitives/error-message/error-message.component.js";
@@ -19,7 +20,7 @@ import '../../../assets/checkbox-bwnjS9qO.css';const H = "_Checkbox_d6btg_1", I
19
20
  Body: R,
20
21
  BodySmall: T,
21
22
  ErrorMessage: q
22
- }, Z = ({
23
+ }, oo = ({
23
24
  // Interactive props
24
25
  id: t,
25
26
  value: r = !1,
@@ -31,11 +32,11 @@ import '../../../assets/checkbox-bwnjS9qO.css';const H = "_Checkbox_d6btg_1", I
31
32
  // Checkbox props
32
33
  iconSize: x = "md",
33
34
  textSize: a = "body-small",
34
- message: l = "",
35
+ message: m = "",
35
36
  // PropsWithChildren
36
37
  children: y,
37
38
  // Base props
38
- ...m
39
+ ...l
39
40
  }) => {
40
41
  const d = M(null), k = N(d), { focused: i, emitChange: h, handleFocus: B, handleBlur: u } = $({
41
42
  id: t,
@@ -44,7 +45,7 @@ import '../../../assets/checkbox-bwnjS9qO.css';const H = "_Checkbox_d6btg_1", I
44
45
  onFocus: f,
45
46
  onBlur: g
46
47
  });
47
- return /* @__PURE__ */ b("div", { "data-testid": _(m, "data-testid", "checkbox"), className: p(o.Checkbox, _(m, "className")), children: [
48
+ return /* @__PURE__ */ b("div", { "data-testid": _(l, "data-testid", "checkbox"), className: p(o.Checkbox, _(l, "className")), children: [
48
49
  /* @__PURE__ */ b(
49
50
  "label",
50
51
  {
@@ -97,9 +98,9 @@ import '../../../assets/checkbox-bwnjS9qO.css';const H = "_Checkbox_d6btg_1", I
97
98
  ]
98
99
  }
99
100
  ),
100
- /* @__PURE__ */ e(S, { name: "text-message", condition: n === "error" && !!l, children: /* @__PURE__ */ e(F, { text: l, className: o.ErrorMessage }) })
101
+ /* @__PURE__ */ e(S, { name: "text-message", condition: n === "error" && !!m, children: /* @__PURE__ */ e(F, { text: m, className: o.ErrorMessage }) })
101
102
  ] });
102
103
  };
103
104
  export {
104
- Z as Checkbox
105
+ oo as Checkbox
105
106
  };
@@ -7,6 +7,7 @@ import { Button as J } from "../../buttons/button/button.component.js";
7
7
  import { Box as R } from "../../primitives/box/box.component.js";
8
8
  import { Caption as x } from "../../primitives/caption/caption.component.js";
9
9
  import { Choice as Q } from "../../primitives/choice/choice.component.js";
10
+ import "../../../utils/content/content.component.js";
10
11
  import { baseProps as H } from "../../../utils/functions/functions.util.js";
11
12
  import { Label as U } from "../../primitives/label/label.component.js";
12
13
  import { clickHasNode as X } from "../../utils/functions/functions.util.js";
@@ -29,7 +30,7 @@ import '../../../assets/dropdown-DLhCAHEx.css';const Z = "_Dropdown_1kidn_1", ee
29
30
  Choices: me,
30
31
  Choice: Ce,
31
32
  ChoiceNoResult: pe
32
- }, He = ({
33
+ }, ze = ({
33
34
  choices: v = [],
34
35
  value: d = [],
35
36
  label: z = "",
@@ -123,5 +124,5 @@ import '../../../assets/dropdown-DLhCAHEx.css';const Z = "_Dropdown_1kidn_1", ee
123
124
  );
124
125
  };
125
126
  export {
126
- He as Dropdown
127
+ ze as Dropdown
127
128
  };
@@ -6,7 +6,7 @@ import { Caption as I } from "../../primitives/caption/caption.component.js";
6
6
  import { Choice as V } from "../../primitives/choice/choice.component.js";
7
7
  import { ErrorMessage as y } from "../../primitives/error-message/error-message.component.js";
8
8
  import { HiddenInput as F } from "../../primitives/hidden-input/hidden-input.component.js";
9
- import "react";
9
+ import "../../../utils/content/content.component.js";
10
10
  import { baseProps as _ } from "../../../utils/functions/functions.util.js";
11
11
  import { RadioLabel as j } from "../../primitives/radio-label/radio-label.component.js";
12
12
  import "lucide-react";
@@ -2,7 +2,7 @@ import { jsxs as M, jsx as r } from "react/jsx-runtime";
2
2
  import N from "clsx";
3
3
  import { FadeSlide as _ } from "../../../animations/fade-slide/fade-slide.component.js";
4
4
  import { Box as I } from "../../primitives/box/box.component.js";
5
- import "react";
5
+ import "../../../utils/content/content.component.js";
6
6
  import { baseProps as t } from "../../../utils/functions/functions.util.js";
7
7
  import "lucide-react";
8
8
  import { ErrorMessage as C } from "../../primitives/error-message/error-message.component.js";
@@ -4,11 +4,12 @@ import { useBoolean as f } from "usehooks-ts";
4
4
  import { FadeScale as v } from "../../../animations/fade-scale/fade-scale.component.js";
5
5
  import { FadeSlide as L } from "../../../animations/fade-slide/fade-slide.component.js";
6
6
  import { Box as $ } from "../../primitives/box/box.component.js";
7
- import "react";
7
+ import "../../../utils/content/content.component.js";
8
8
  import { baseProps as u } from "../../../utils/functions/functions.util.js";
9
9
  import "lucide-react";
10
10
  import { ErrorMessage as k } from "../../primitives/error-message/error-message.component.js";
11
11
  import { Label as C } from "../../primitives/label/label.component.js";
12
+ import "react";
12
13
  import { Input as j } from "../input/input.component.js";
13
14
  import '../../../assets/text-field-ycFvAkxr.css';const D = "_TextField_diews_1", O = "_Box_diews_10", q = "_Content_diews_14", y = "_Label_diews_30", z = "_Idle_diews_40", G = "_Active_diews_45", H = "_Placeholder_diews_50", J = "_PlaceholderText_diews_57", K = "_ErrorMessage_diews_65", Q = "_Input_diews_69", R = "_MaskStart_diews_73", e = {
14
15
  TextField: D,
@@ -22,7 +23,7 @@ import '../../../assets/text-field-ycFvAkxr.css';const D = "_TextField_diews_1",
22
23
  ErrorMessage: K,
23
24
  Input: Q,
24
25
  MaskStart: R
25
- }, le = ({
26
+ }, ie = ({
26
27
  // Interactive props
27
28
  id: d,
28
29
  value: s = "",
@@ -38,9 +39,9 @@ import '../../../assets/text-field-ycFvAkxr.css';const D = "_TextField_diews_1",
38
39
  message: m = "",
39
40
  placeholder: _ = "",
40
41
  // Base props
41
- ...x
42
+ ...p
42
43
  }) => {
43
- const { value: p, setTrue: T, setFalse: A } = f(!1), { value: a, setTrue: S, setFalse: b } = f(!1), r = a || !!s || p, B = !i && !!_ && a && !s && !p, N = !!m && l === "error", g = (o) => {
44
+ const { value: x, setTrue: T, setFalse: A } = f(!1), { value: a, setTrue: S, setFalse: b } = f(!1), r = a || !!s || x, B = !i && !!_ && a && !s && !x, N = !!m && l === "error", g = (o) => {
44
45
  S(), I?.(o);
45
46
  }, E = (o) => {
46
47
  b(), F?.(o);
@@ -48,8 +49,8 @@ import '../../../assets/text-field-ycFvAkxr.css';const D = "_TextField_diews_1",
48
49
  return /* @__PURE__ */ n(
49
50
  "div",
50
51
  {
51
- "data-testid": u(x, "data-testid", "text-field"),
52
- className: c(e.TextField, u(x, "className")),
52
+ "data-testid": u(p, "data-testid", "text-field"),
53
+ className: c(e.TextField, u(p, "className")),
53
54
  children: [
54
55
  /* @__PURE__ */ n($, { state: l, focused: a, className: e.Box, children: [
55
56
  /* @__PURE__ */ t(
@@ -101,5 +102,5 @@ import '../../../assets/text-field-ycFvAkxr.css';const D = "_TextField_diews_1",
101
102
  );
102
103
  };
103
104
  export {
104
- le as TextField
105
+ ie as TextField
105
106
  };
@@ -12,271 +12,5 @@ export interface ContentProps extends HTMLAttributes<HTMLElementTagNameMap> {
12
12
  * If the **content** is React nodes, it renders them directly.<br>
13
13
  * The **alwaysRender** prop allows rendering an empty tag even if there are no children, which can be useful for layout purposes.
14
14
  */
15
- export declare const Content: ({ tag, alwaysRender, children, ...rest }: ContentProps) => import('react').ReactElement<{
16
- defaultChecked?: boolean | undefined;
17
- defaultValue?: string | number | readonly string[] | undefined;
18
- suppressContentEditableWarning?: boolean | undefined;
19
- suppressHydrationWarning?: boolean | undefined;
20
- accessKey?: string | undefined;
21
- autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
22
- autoFocus?: boolean | undefined;
23
- className?: string | undefined;
24
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
25
- contextMenu?: string | undefined;
26
- dir?: string | undefined;
27
- draggable?: (boolean | "true" | "false") | undefined;
28
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
29
- hidden?: boolean | undefined;
30
- id?: string | undefined;
31
- lang?: string | undefined;
32
- nonce?: string | undefined;
33
- slot?: string | undefined;
34
- spellCheck?: (boolean | "true" | "false") | undefined;
35
- style?: import('react').CSSProperties | undefined;
36
- tabIndex?: number | undefined;
37
- title?: string | undefined;
38
- translate?: "yes" | "no" | undefined;
39
- radioGroup?: string | undefined;
40
- role?: import('react').AriaRole | undefined;
41
- about?: string | undefined;
42
- content?: string | undefined;
43
- datatype?: string | undefined;
44
- inlist?: any;
45
- prefix?: string | undefined;
46
- property?: string | undefined;
47
- rel?: string | undefined;
48
- resource?: string | undefined;
49
- rev?: string | undefined;
50
- typeof?: string | undefined;
51
- vocab?: string | undefined;
52
- autoCorrect?: string | undefined;
53
- autoSave?: string | undefined;
54
- color?: string | undefined;
55
- itemProp?: string | undefined;
56
- itemScope?: boolean | undefined;
57
- itemType?: string | undefined;
58
- itemID?: string | undefined;
59
- itemRef?: string | undefined;
60
- results?: number | undefined;
61
- security?: string | undefined;
62
- unselectable?: "on" | "off" | undefined;
63
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
64
- is?: string | undefined;
65
- exportparts?: string | undefined;
66
- part?: string | undefined;
67
- "aria-activedescendant"?: string | undefined;
68
- "aria-atomic"?: (boolean | "true" | "false") | undefined;
69
- "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
70
- "aria-braillelabel"?: string | undefined;
71
- "aria-brailleroledescription"?: string | undefined;
72
- "aria-busy"?: (boolean | "true" | "false") | undefined;
73
- "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
74
- "aria-colcount"?: number | undefined;
75
- "aria-colindex"?: number | undefined;
76
- "aria-colindextext"?: string | undefined;
77
- "aria-colspan"?: number | undefined;
78
- "aria-controls"?: string | undefined;
79
- "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
80
- "aria-describedby"?: string | undefined;
81
- "aria-description"?: string | undefined;
82
- "aria-details"?: string | undefined;
83
- "aria-disabled"?: (boolean | "true" | "false") | undefined;
84
- "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
85
- "aria-errormessage"?: string | undefined;
86
- "aria-expanded"?: (boolean | "true" | "false") | undefined;
87
- "aria-flowto"?: string | undefined;
88
- "aria-grabbed"?: (boolean | "true" | "false") | undefined;
89
- "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
90
- "aria-hidden"?: (boolean | "true" | "false") | undefined;
91
- "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
92
- "aria-keyshortcuts"?: string | undefined;
93
- "aria-label"?: string | undefined;
94
- "aria-labelledby"?: string | undefined;
95
- "aria-level"?: number | undefined;
96
- "aria-live"?: "off" | "assertive" | "polite" | undefined;
97
- "aria-modal"?: (boolean | "true" | "false") | undefined;
98
- "aria-multiline"?: (boolean | "true" | "false") | undefined;
99
- "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
100
- "aria-orientation"?: "horizontal" | "vertical" | undefined;
101
- "aria-owns"?: string | undefined;
102
- "aria-placeholder"?: string | undefined;
103
- "aria-posinset"?: number | undefined;
104
- "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
105
- "aria-readonly"?: (boolean | "true" | "false") | undefined;
106
- "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
107
- "aria-required"?: (boolean | "true" | "false") | undefined;
108
- "aria-roledescription"?: string | undefined;
109
- "aria-rowcount"?: number | undefined;
110
- "aria-rowindex"?: number | undefined;
111
- "aria-rowindextext"?: string | undefined;
112
- "aria-rowspan"?: number | undefined;
113
- "aria-selected"?: (boolean | "true" | "false") | undefined;
114
- "aria-setsize"?: number | undefined;
115
- "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
116
- "aria-valuemax"?: number | undefined;
117
- "aria-valuemin"?: number | undefined;
118
- "aria-valuenow"?: number | undefined;
119
- "aria-valuetext"?: string | undefined;
120
- dangerouslySetInnerHTML?: {
121
- __html: string | TrustedHTML;
122
- } | undefined;
123
- onCopy?: import('react').ClipboardEventHandler<HTMLElementTagNameMap> | undefined;
124
- onCopyCapture?: import('react').ClipboardEventHandler<HTMLElementTagNameMap> | undefined;
125
- onCut?: import('react').ClipboardEventHandler<HTMLElementTagNameMap> | undefined;
126
- onCutCapture?: import('react').ClipboardEventHandler<HTMLElementTagNameMap> | undefined;
127
- onPaste?: import('react').ClipboardEventHandler<HTMLElementTagNameMap> | undefined;
128
- onPasteCapture?: import('react').ClipboardEventHandler<HTMLElementTagNameMap> | undefined;
129
- onCompositionEnd?: import('react').CompositionEventHandler<HTMLElementTagNameMap> | undefined;
130
- onCompositionEndCapture?: import('react').CompositionEventHandler<HTMLElementTagNameMap> | undefined;
131
- onCompositionStart?: import('react').CompositionEventHandler<HTMLElementTagNameMap> | undefined;
132
- onCompositionStartCapture?: import('react').CompositionEventHandler<HTMLElementTagNameMap> | undefined;
133
- onCompositionUpdate?: import('react').CompositionEventHandler<HTMLElementTagNameMap> | undefined;
134
- onCompositionUpdateCapture?: import('react').CompositionEventHandler<HTMLElementTagNameMap> | undefined;
135
- onFocus?: import('react').FocusEventHandler<HTMLElementTagNameMap> | undefined;
136
- onFocusCapture?: import('react').FocusEventHandler<HTMLElementTagNameMap> | undefined;
137
- onBlur?: import('react').FocusEventHandler<HTMLElementTagNameMap> | undefined;
138
- onBlurCapture?: import('react').FocusEventHandler<HTMLElementTagNameMap> | undefined;
139
- onChange?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
140
- onChangeCapture?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
141
- onBeforeInput?: import('react').InputEventHandler<HTMLElementTagNameMap> | undefined;
142
- onBeforeInputCapture?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
143
- onInput?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
144
- onInputCapture?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
145
- onReset?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
146
- onResetCapture?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
147
- onSubmit?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
148
- onSubmitCapture?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
149
- onInvalid?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
150
- onInvalidCapture?: import('react').FormEventHandler<HTMLElementTagNameMap> | undefined;
151
- onLoad?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
152
- onLoadCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
153
- onError?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
154
- onErrorCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
155
- onKeyDown?: import('react').KeyboardEventHandler<HTMLElementTagNameMap> | undefined;
156
- onKeyDownCapture?: import('react').KeyboardEventHandler<HTMLElementTagNameMap> | undefined;
157
- onKeyPress?: import('react').KeyboardEventHandler<HTMLElementTagNameMap> | undefined;
158
- onKeyPressCapture?: import('react').KeyboardEventHandler<HTMLElementTagNameMap> | undefined;
159
- onKeyUp?: import('react').KeyboardEventHandler<HTMLElementTagNameMap> | undefined;
160
- onKeyUpCapture?: import('react').KeyboardEventHandler<HTMLElementTagNameMap> | undefined;
161
- onAbort?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
162
- onAbortCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
163
- onCanPlay?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
164
- onCanPlayCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
165
- onCanPlayThrough?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
166
- onCanPlayThroughCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
167
- onDurationChange?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
168
- onDurationChangeCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
169
- onEmptied?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
170
- onEmptiedCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
171
- onEncrypted?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
172
- onEncryptedCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
173
- onEnded?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
174
- onEndedCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
175
- onLoadedData?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
176
- onLoadedDataCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
177
- onLoadedMetadata?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
178
- onLoadedMetadataCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
179
- onLoadStart?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
180
- onLoadStartCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
181
- onPause?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
182
- onPauseCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
183
- onPlay?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
184
- onPlayCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
185
- onPlaying?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
186
- onPlayingCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
187
- onProgress?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
188
- onProgressCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
189
- onRateChange?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
190
- onRateChangeCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
191
- onSeeked?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
192
- onSeekedCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
193
- onSeeking?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
194
- onSeekingCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
195
- onStalled?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
196
- onStalledCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
197
- onSuspend?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
198
- onSuspendCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
199
- onTimeUpdate?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
200
- onTimeUpdateCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
201
- onVolumeChange?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
202
- onVolumeChangeCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
203
- onWaiting?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
204
- onWaitingCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
205
- onAuxClick?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
206
- onAuxClickCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
207
- onClick?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
208
- onClickCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
209
- onContextMenu?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
210
- onContextMenuCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
211
- onDoubleClick?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
212
- onDoubleClickCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
213
- onDrag?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
214
- onDragCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
215
- onDragEnd?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
216
- onDragEndCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
217
- onDragEnter?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
218
- onDragEnterCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
219
- onDragExit?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
220
- onDragExitCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
221
- onDragLeave?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
222
- onDragLeaveCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
223
- onDragOver?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
224
- onDragOverCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
225
- onDragStart?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
226
- onDragStartCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
227
- onDrop?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
228
- onDropCapture?: import('react').DragEventHandler<HTMLElementTagNameMap> | undefined;
229
- onMouseDown?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
230
- onMouseDownCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
231
- onMouseEnter?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
232
- onMouseLeave?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
233
- onMouseMove?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
234
- onMouseMoveCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
235
- onMouseOut?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
236
- onMouseOutCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
237
- onMouseOver?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
238
- onMouseOverCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
239
- onMouseUp?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
240
- onMouseUpCapture?: import('react').MouseEventHandler<HTMLElementTagNameMap> | undefined;
241
- onSelect?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
242
- onSelectCapture?: import('react').ReactEventHandler<HTMLElementTagNameMap> | undefined;
243
- onTouchCancel?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
244
- onTouchCancelCapture?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
245
- onTouchEnd?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
246
- onTouchEndCapture?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
247
- onTouchMove?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
248
- onTouchMoveCapture?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
249
- onTouchStart?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
250
- onTouchStartCapture?: import('react').TouchEventHandler<HTMLElementTagNameMap> | undefined;
251
- onPointerDown?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
252
- onPointerDownCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
253
- onPointerMove?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
254
- onPointerMoveCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
255
- onPointerUp?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
256
- onPointerUpCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
257
- onPointerCancel?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
258
- onPointerCancelCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
259
- onPointerEnter?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
260
- onPointerLeave?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
261
- onPointerOver?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
262
- onPointerOverCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
263
- onPointerOut?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
264
- onPointerOutCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
265
- onGotPointerCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
266
- onGotPointerCaptureCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
267
- onLostPointerCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
268
- onLostPointerCaptureCapture?: import('react').PointerEventHandler<HTMLElementTagNameMap> | undefined;
269
- onScroll?: import('react').UIEventHandler<HTMLElementTagNameMap> | undefined;
270
- onScrollCapture?: import('react').UIEventHandler<HTMLElementTagNameMap> | undefined;
271
- onWheel?: import('react').WheelEventHandler<HTMLElementTagNameMap> | undefined;
272
- onWheelCapture?: import('react').WheelEventHandler<HTMLElementTagNameMap> | undefined;
273
- onAnimationStart?: import('react').AnimationEventHandler<HTMLElementTagNameMap> | undefined;
274
- onAnimationStartCapture?: import('react').AnimationEventHandler<HTMLElementTagNameMap> | undefined;
275
- onAnimationEnd?: import('react').AnimationEventHandler<HTMLElementTagNameMap> | undefined;
276
- onAnimationEndCapture?: import('react').AnimationEventHandler<HTMLElementTagNameMap> | undefined;
277
- onAnimationIteration?: import('react').AnimationEventHandler<HTMLElementTagNameMap> | undefined;
278
- onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLElementTagNameMap> | undefined;
279
- onTransitionEnd?: import('react').TransitionEventHandler<HTMLElementTagNameMap> | undefined;
280
- onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLElementTagNameMap> | undefined;
281
- }, string | import('react').JSXElementConstructor<any>> | null;
15
+ export declare const Content: import('react').ForwardRefExoticComponent<ContentProps & import('react').RefAttributes<HTMLElement>>;
282
16
  export {};
@@ -1,6 +1,9 @@
1
- import { createElement as e } from "react";
2
- import { isHtmlString as m } from "../functions/functions.util.js";
3
- const f = ({ tag: n = "div", alwaysRender: o = !1, children: t, ...r }) => !o && !t ? null : m(t) ? e(n, { dangerouslySetInnerHTML: { __html: t }, ...r }, null) : e(n, r, t);
1
+ import { forwardRef as l, createElement as r } from "react";
2
+ import { isHtmlString as a } from "../functions/functions.util.js";
3
+ const f = l(
4
+ ({ tag: n = "div", alwaysRender: m = !1, children: t, ...e }, o) => !m && !t ? null : a(t) ? r(n, { dangerouslySetInnerHTML: { __html: t }, ...e, ref: o }, null) : r(n, { ...e, ref: o }, t)
5
+ );
6
+ f.displayName = "Content";
4
7
  export {
5
8
  f as Content
6
9
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arthurzakharov/ui-kit",
3
3
  "private": false,
4
- "version": "1.8.8",
4
+ "version": "1.9.0",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",
7
7
  "types": "dist/main.d.ts",