@sikka/hawa 0.24.14-next → 0.25.0-next
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.
- package/dist/blocks/auth/index.js +26 -15
- package/dist/blocks/auth/index.mjs +4 -4
- package/dist/blocks/feedback/index.js +25 -14
- package/dist/blocks/feedback/index.mjs +5 -5
- package/dist/blocks/index.js +26 -15
- package/dist/blocks/index.mjs +1 -1
- package/dist/blocks/misc/index.js +25 -14
- package/dist/blocks/misc/index.mjs +4 -4
- package/dist/blocks/pricing/index.js +25 -14
- package/dist/blocks/pricing/index.mjs +4 -4
- package/dist/{chunk-N26RJDIG.mjs → chunk-2UQWMSFQ.mjs} +1 -1
- package/dist/{chunk-7NCNPRCL.mjs → chunk-53XBVEMK.mjs} +25 -14
- package/dist/{chunk-C2UYTGUD.mjs → chunk-ABS2VEET.mjs} +25 -14
- package/dist/{chunk-D75D7LGZ.mjs → chunk-ATUSR6VI.mjs} +1 -1
- package/dist/{chunk-677VOLD4.mjs → chunk-FYH74ZRQ.mjs} +25 -14
- package/dist/{chunk-A25EXELT.mjs → chunk-OD5WIQGQ.mjs} +1 -1
- package/dist/{chunk-7XRVH6O7.mjs → chunk-OE23TTPS.mjs} +1 -1
- package/dist/{chunk-F6TKEDDP.mjs → chunk-PKLR7UF6.mjs} +1 -1
- package/dist/{chunk-LRLLDOQZ.mjs → chunk-S36W2LDN.mjs} +25 -14
- package/dist/{chunk-UTGVG66T.mjs → chunk-TTKRRN7S.mjs} +1 -1
- package/dist/{chunk-XOEHA3H6.mjs → chunk-XE3FLWLT.mjs} +25 -14
- package/dist/codeBlock/index.js +25 -14
- package/dist/codeBlock/index.mjs +1 -1
- package/dist/colorPicker/index.js +25 -14
- package/dist/colorPicker/index.mjs +1 -1
- package/dist/combobox/index.js +25 -14
- package/dist/combobox/index.mjs +25 -14
- package/dist/dataTable/index.js +25 -14
- package/dist/dataTable/index.mjs +25 -14
- package/dist/elements/index.js +25 -14
- package/dist/elements/index.mjs +1 -1
- package/dist/index.css +28 -1
- package/dist/index.js +25 -14
- package/dist/index.mjs +25 -14
- package/dist/input/index.js +25 -14
- package/dist/input/index.mjs +1 -1
- package/dist/interfaceSettings/index.js +25 -14
- package/dist/interfaceSettings/index.mjs +1 -1
- package/dist/label/index.js +25 -14
- package/dist/label/index.mjs +1 -1
- package/dist/passwordInput/index.js +25 -14
- package/dist/passwordInput/index.mjs +1 -1
- package/dist/phoneInput/index.js +27 -16
- package/dist/phoneInput/index.mjs +1 -1
- package/dist/radio/index.js +25 -14
- package/dist/radio/index.mjs +25 -14
- package/dist/select/index.js +25 -14
- package/dist/select/index.mjs +25 -14
- package/dist/textarea/index.js +25 -14
- package/dist/textarea/index.mjs +25 -14
- package/package.json +26 -26
@@ -600,22 +600,33 @@ var Label = React6.forwardRef(({ className, hint, hintSide, required, children,
|
|
600
600
|
},
|
601
601
|
children,
|
602
602
|
required && /* @__PURE__ */ React6.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
603
|
-
), hint && /* @__PURE__ */ React6.createElement(
|
604
|
-
|
605
|
-
{
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
strokeLinecap: "round",
|
613
|
-
strokeLinejoin: "round"
|
603
|
+
), hint && /* @__PURE__ */ React6.createElement(
|
604
|
+
Tooltip,
|
605
|
+
{
|
606
|
+
content: hint,
|
607
|
+
side: hintSide,
|
608
|
+
triggerProps: {
|
609
|
+
tabIndex: -1,
|
610
|
+
onClick: (event) => event.preventDefault()
|
611
|
+
}
|
614
612
|
},
|
615
|
-
/* @__PURE__ */ React6.createElement("
|
616
|
-
|
617
|
-
|
618
|
-
|
613
|
+
/* @__PURE__ */ React6.createElement("div", null, /* @__PURE__ */ React6.createElement(
|
614
|
+
"svg",
|
615
|
+
{
|
616
|
+
xmlns: "http://www.w3.org/2000/svg",
|
617
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
618
|
+
viewBox: "0 0 24 24",
|
619
|
+
fill: "none",
|
620
|
+
stroke: "currentColor",
|
621
|
+
strokeWidth: "2",
|
622
|
+
strokeLinecap: "round",
|
623
|
+
strokeLinejoin: "round"
|
624
|
+
},
|
625
|
+
/* @__PURE__ */ React6.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
626
|
+
/* @__PURE__ */ React6.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
627
|
+
/* @__PURE__ */ React6.createElement("path", { d: "M12 17h.01" })
|
628
|
+
))
|
629
|
+
)));
|
619
630
|
Label.displayName = "Label";
|
620
631
|
|
621
632
|
// components/elements/skeleton/Skeleton.tsx
|
@@ -1,16 +1,16 @@
|
|
1
1
|
import {
|
2
2
|
Input
|
3
|
-
} from "../../chunk-
|
3
|
+
} from "../../chunk-OD5WIQGQ.mjs";
|
4
4
|
import {
|
5
5
|
StopPropagationWrapper
|
6
6
|
} from "../../chunk-ZCZ3WARS.mjs";
|
7
7
|
import {
|
8
8
|
Select
|
9
|
-
} from "../../chunk-
|
9
|
+
} from "../../chunk-TTKRRN7S.mjs";
|
10
10
|
import {
|
11
11
|
EyeIcon,
|
12
12
|
HiddenEyeIcon
|
13
|
-
} from "../../chunk-
|
13
|
+
} from "../../chunk-ATUSR6VI.mjs";
|
14
14
|
import {
|
15
15
|
Button,
|
16
16
|
Card,
|
@@ -22,7 +22,7 @@ import {
|
|
22
22
|
Label,
|
23
23
|
Loading,
|
24
24
|
cn
|
25
|
-
} from "../../chunk-
|
25
|
+
} from "../../chunk-FYH74ZRQ.mjs";
|
26
26
|
|
27
27
|
// components/blocks/auth/LoginForm.tsx
|
28
28
|
import React5, { useState as useState3 } from "react";
|
@@ -453,22 +453,33 @@ var Label = React5.forwardRef(({ className, hint, hintSide, required, children,
|
|
453
453
|
},
|
454
454
|
children,
|
455
455
|
required && /* @__PURE__ */ React5.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
456
|
-
), hint && /* @__PURE__ */ React5.createElement(
|
457
|
-
|
456
|
+
), hint && /* @__PURE__ */ React5.createElement(
|
457
|
+
Tooltip,
|
458
458
|
{
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
strokeLinecap: "round",
|
466
|
-
strokeLinejoin: "round"
|
459
|
+
content: hint,
|
460
|
+
side: hintSide,
|
461
|
+
triggerProps: {
|
462
|
+
tabIndex: -1,
|
463
|
+
onClick: (event) => event.preventDefault()
|
464
|
+
}
|
467
465
|
},
|
468
|
-
/* @__PURE__ */ React5.createElement("
|
469
|
-
|
470
|
-
|
471
|
-
|
466
|
+
/* @__PURE__ */ React5.createElement("div", null, /* @__PURE__ */ React5.createElement(
|
467
|
+
"svg",
|
468
|
+
{
|
469
|
+
xmlns: "http://www.w3.org/2000/svg",
|
470
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
471
|
+
viewBox: "0 0 24 24",
|
472
|
+
fill: "none",
|
473
|
+
stroke: "currentColor",
|
474
|
+
strokeWidth: "2",
|
475
|
+
strokeLinecap: "round",
|
476
|
+
strokeLinejoin: "round"
|
477
|
+
},
|
478
|
+
/* @__PURE__ */ React5.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
479
|
+
/* @__PURE__ */ React5.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
480
|
+
/* @__PURE__ */ React5.createElement("path", { d: "M12 17h.01" })
|
481
|
+
))
|
482
|
+
)));
|
472
483
|
Label.displayName = "Label";
|
473
484
|
|
474
485
|
// components/elements/radio/Radio.tsx
|
@@ -1,25 +1,25 @@
|
|
1
1
|
import {
|
2
2
|
Textarea
|
3
|
-
} from "../../chunk-
|
3
|
+
} from "../../chunk-PKLR7UF6.mjs";
|
4
4
|
import {
|
5
5
|
Select
|
6
|
-
} from "../../chunk-
|
6
|
+
} from "../../chunk-TTKRRN7S.mjs";
|
7
7
|
import {
|
8
8
|
Radio
|
9
|
-
} from "../../chunk-
|
9
|
+
} from "../../chunk-2UQWMSFQ.mjs";
|
10
10
|
import {
|
11
11
|
BadEmoji,
|
12
12
|
GoodEmoji,
|
13
13
|
VeryBadEmoji,
|
14
14
|
VeryGoodEmoji
|
15
|
-
} from "../../chunk-
|
15
|
+
} from "../../chunk-ATUSR6VI.mjs";
|
16
16
|
import {
|
17
17
|
Button,
|
18
18
|
Card,
|
19
19
|
CardContent,
|
20
20
|
Label,
|
21
21
|
cn
|
22
|
-
} from "../../chunk-
|
22
|
+
} from "../../chunk-FYH74ZRQ.mjs";
|
23
23
|
|
24
24
|
// components/blocks/feedback/UserReferralSource.tsx
|
25
25
|
import React, { useRef, useState } from "react";
|
package/dist/blocks/index.js
CHANGED
@@ -621,22 +621,33 @@ var Label = React6.forwardRef(({ className, hint, hintSide, required, children,
|
|
621
621
|
},
|
622
622
|
children,
|
623
623
|
required && /* @__PURE__ */ React6.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
624
|
-
), hint && /* @__PURE__ */ React6.createElement(
|
625
|
-
|
626
|
-
{
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
strokeLinecap: "round",
|
634
|
-
strokeLinejoin: "round"
|
624
|
+
), hint && /* @__PURE__ */ React6.createElement(
|
625
|
+
Tooltip,
|
626
|
+
{
|
627
|
+
content: hint,
|
628
|
+
side: hintSide,
|
629
|
+
triggerProps: {
|
630
|
+
tabIndex: -1,
|
631
|
+
onClick: (event) => event.preventDefault()
|
632
|
+
}
|
635
633
|
},
|
636
|
-
/* @__PURE__ */ React6.createElement("
|
637
|
-
|
638
|
-
|
639
|
-
|
634
|
+
/* @__PURE__ */ React6.createElement("div", null, /* @__PURE__ */ React6.createElement(
|
635
|
+
"svg",
|
636
|
+
{
|
637
|
+
xmlns: "http://www.w3.org/2000/svg",
|
638
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
639
|
+
viewBox: "0 0 24 24",
|
640
|
+
fill: "none",
|
641
|
+
stroke: "currentColor",
|
642
|
+
strokeWidth: "2",
|
643
|
+
strokeLinecap: "round",
|
644
|
+
strokeLinejoin: "round"
|
645
|
+
},
|
646
|
+
/* @__PURE__ */ React6.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
647
|
+
/* @__PURE__ */ React6.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
648
|
+
/* @__PURE__ */ React6.createElement("path", { d: "M12 17h.01" })
|
649
|
+
))
|
650
|
+
)));
|
640
651
|
Label.displayName = "Label";
|
641
652
|
|
642
653
|
// components/elements/skeleton/Skeleton.tsx
|
package/dist/blocks/index.mjs
CHANGED
@@ -707,22 +707,33 @@ var Label = React11.forwardRef(({ className, hint, hintSide, required, children,
|
|
707
707
|
},
|
708
708
|
children,
|
709
709
|
required && /* @__PURE__ */ React11.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
710
|
-
), hint && /* @__PURE__ */ React11.createElement(
|
711
|
-
|
710
|
+
), hint && /* @__PURE__ */ React11.createElement(
|
711
|
+
Tooltip,
|
712
712
|
{
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
strokeLinecap: "round",
|
720
|
-
strokeLinejoin: "round"
|
713
|
+
content: hint,
|
714
|
+
side: hintSide,
|
715
|
+
triggerProps: {
|
716
|
+
tabIndex: -1,
|
717
|
+
onClick: (event) => event.preventDefault()
|
718
|
+
}
|
721
719
|
},
|
722
|
-
/* @__PURE__ */ React11.createElement("
|
723
|
-
|
724
|
-
|
725
|
-
|
720
|
+
/* @__PURE__ */ React11.createElement("div", null, /* @__PURE__ */ React11.createElement(
|
721
|
+
"svg",
|
722
|
+
{
|
723
|
+
xmlns: "http://www.w3.org/2000/svg",
|
724
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
725
|
+
viewBox: "0 0 24 24",
|
726
|
+
fill: "none",
|
727
|
+
stroke: "currentColor",
|
728
|
+
strokeWidth: "2",
|
729
|
+
strokeLinecap: "round",
|
730
|
+
strokeLinejoin: "round"
|
731
|
+
},
|
732
|
+
/* @__PURE__ */ React11.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
733
|
+
/* @__PURE__ */ React11.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
734
|
+
/* @__PURE__ */ React11.createElement("path", { d: "M12 17h.01" })
|
735
|
+
))
|
736
|
+
)));
|
726
737
|
Label.displayName = "Label";
|
727
738
|
|
728
739
|
// components/elements/skeleton/Skeleton.tsx
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import {
|
2
2
|
Input
|
3
|
-
} from "../../chunk-
|
3
|
+
} from "../../chunk-OD5WIQGQ.mjs";
|
4
4
|
import {
|
5
5
|
Chip,
|
6
6
|
ScrollArea
|
7
|
-
} from "../../chunk-
|
7
|
+
} from "../../chunk-OE23TTPS.mjs";
|
8
8
|
import {
|
9
9
|
Textarea
|
10
|
-
} from "../../chunk-
|
10
|
+
} from "../../chunk-PKLR7UF6.mjs";
|
11
11
|
import {
|
12
12
|
Button,
|
13
13
|
Card,
|
@@ -17,7 +17,7 @@ import {
|
|
17
17
|
CardHeader,
|
18
18
|
CardTitle,
|
19
19
|
cn
|
20
|
-
} from "../../chunk-
|
20
|
+
} from "../../chunk-FYH74ZRQ.mjs";
|
21
21
|
|
22
22
|
// components/blocks/misc/LegalTexts.tsx
|
23
23
|
import React2 from "react";
|
@@ -880,22 +880,33 @@ var Label2 = React15.forwardRef(({ className, hint, hintSide, required, children
|
|
880
880
|
},
|
881
881
|
children,
|
882
882
|
required && /* @__PURE__ */ React15.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
883
|
-
), hint && /* @__PURE__ */ React15.createElement(
|
884
|
-
|
883
|
+
), hint && /* @__PURE__ */ React15.createElement(
|
884
|
+
Tooltip,
|
885
885
|
{
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
strokeLinecap: "round",
|
893
|
-
strokeLinejoin: "round"
|
886
|
+
content: hint,
|
887
|
+
side: hintSide,
|
888
|
+
triggerProps: {
|
889
|
+
tabIndex: -1,
|
890
|
+
onClick: (event) => event.preventDefault()
|
891
|
+
}
|
894
892
|
},
|
895
|
-
/* @__PURE__ */ React15.createElement("
|
896
|
-
|
897
|
-
|
898
|
-
|
893
|
+
/* @__PURE__ */ React15.createElement("div", null, /* @__PURE__ */ React15.createElement(
|
894
|
+
"svg",
|
895
|
+
{
|
896
|
+
xmlns: "http://www.w3.org/2000/svg",
|
897
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
898
|
+
viewBox: "0 0 24 24",
|
899
|
+
fill: "none",
|
900
|
+
stroke: "currentColor",
|
901
|
+
strokeWidth: "2",
|
902
|
+
strokeLinecap: "round",
|
903
|
+
strokeLinejoin: "round"
|
904
|
+
},
|
905
|
+
/* @__PURE__ */ React15.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
906
|
+
/* @__PURE__ */ React15.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
907
|
+
/* @__PURE__ */ React15.createElement("path", { d: "M12 17h.01" })
|
908
|
+
))
|
909
|
+
)));
|
899
910
|
Label2.displayName = "Label";
|
900
911
|
|
901
912
|
// components/elements/radio/Radio.tsx
|
@@ -1,22 +1,22 @@
|
|
1
1
|
import {
|
2
2
|
Chip,
|
3
3
|
ScrollArea
|
4
|
-
} from "../../chunk-
|
4
|
+
} from "../../chunk-OE23TTPS.mjs";
|
5
5
|
import "../../chunk-ZCZ3WARS.mjs";
|
6
6
|
import {
|
7
7
|
Radio
|
8
|
-
} from "../../chunk-
|
8
|
+
} from "../../chunk-2UQWMSFQ.mjs";
|
9
9
|
import {
|
10
10
|
CheckMark,
|
11
11
|
UncheckMark
|
12
|
-
} from "../../chunk-
|
12
|
+
} from "../../chunk-ATUSR6VI.mjs";
|
13
13
|
import {
|
14
14
|
Button,
|
15
15
|
Card,
|
16
16
|
Skeleton,
|
17
17
|
Tooltip,
|
18
18
|
cn
|
19
|
-
} from "../../chunk-
|
19
|
+
} from "../../chunk-FYH74ZRQ.mjs";
|
20
20
|
|
21
21
|
// components/blocks/pricing/PricingPlans.tsx
|
22
22
|
import React8 from "react";
|
@@ -69,22 +69,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
69
69
|
},
|
70
70
|
children,
|
71
71
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
72
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
73
|
-
|
72
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
73
|
+
Tooltip,
|
74
74
|
{
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
strokeLinecap: "round",
|
82
|
-
strokeLinejoin: "round"
|
75
|
+
content: hint,
|
76
|
+
side: hintSide,
|
77
|
+
triggerProps: {
|
78
|
+
tabIndex: -1,
|
79
|
+
onClick: (event) => event.preventDefault()
|
80
|
+
}
|
83
81
|
},
|
84
|
-
/* @__PURE__ */ React2.createElement("
|
85
|
-
|
86
|
-
|
87
|
-
|
82
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
83
|
+
"svg",
|
84
|
+
{
|
85
|
+
xmlns: "http://www.w3.org/2000/svg",
|
86
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
87
|
+
viewBox: "0 0 24 24",
|
88
|
+
fill: "none",
|
89
|
+
stroke: "currentColor",
|
90
|
+
strokeWidth: "2",
|
91
|
+
strokeLinecap: "round",
|
92
|
+
strokeLinejoin: "round"
|
93
|
+
},
|
94
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
95
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
96
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
97
|
+
))
|
98
|
+
)));
|
88
99
|
Label.displayName = "Label";
|
89
100
|
|
90
101
|
// components/elements/skeleton/Skeleton.tsx
|
@@ -72,22 +72,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
72
72
|
},
|
73
73
|
children,
|
74
74
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
75
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
76
|
-
|
75
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
76
|
+
Tooltip,
|
77
77
|
{
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
strokeLinecap: "round",
|
85
|
-
strokeLinejoin: "round"
|
78
|
+
content: hint,
|
79
|
+
side: hintSide,
|
80
|
+
triggerProps: {
|
81
|
+
tabIndex: -1,
|
82
|
+
onClick: (event) => event.preventDefault()
|
83
|
+
}
|
86
84
|
},
|
87
|
-
/* @__PURE__ */ React2.createElement("
|
88
|
-
|
89
|
-
|
90
|
-
|
85
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
86
|
+
"svg",
|
87
|
+
{
|
88
|
+
xmlns: "http://www.w3.org/2000/svg",
|
89
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
90
|
+
viewBox: "0 0 24 24",
|
91
|
+
fill: "none",
|
92
|
+
stroke: "currentColor",
|
93
|
+
strokeWidth: "2",
|
94
|
+
strokeLinecap: "round",
|
95
|
+
strokeLinejoin: "round"
|
96
|
+
},
|
97
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
98
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
99
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
100
|
+
))
|
101
|
+
)));
|
91
102
|
Label.displayName = "Label";
|
92
103
|
|
93
104
|
export {
|
@@ -403,22 +403,33 @@ var Label = React5.forwardRef(({ className, hint, hintSide, required, children,
|
|
403
403
|
},
|
404
404
|
children,
|
405
405
|
required && /* @__PURE__ */ React5.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
406
|
-
), hint && /* @__PURE__ */ React5.createElement(
|
407
|
-
|
406
|
+
), hint && /* @__PURE__ */ React5.createElement(
|
407
|
+
Tooltip,
|
408
408
|
{
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
strokeLinecap: "round",
|
416
|
-
strokeLinejoin: "round"
|
409
|
+
content: hint,
|
410
|
+
side: hintSide,
|
411
|
+
triggerProps: {
|
412
|
+
tabIndex: -1,
|
413
|
+
onClick: (event) => event.preventDefault()
|
414
|
+
}
|
417
415
|
},
|
418
|
-
/* @__PURE__ */ React5.createElement("
|
419
|
-
|
420
|
-
|
421
|
-
|
416
|
+
/* @__PURE__ */ React5.createElement("div", null, /* @__PURE__ */ React5.createElement(
|
417
|
+
"svg",
|
418
|
+
{
|
419
|
+
xmlns: "http://www.w3.org/2000/svg",
|
420
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
421
|
+
viewBox: "0 0 24 24",
|
422
|
+
fill: "none",
|
423
|
+
stroke: "currentColor",
|
424
|
+
strokeWidth: "2",
|
425
|
+
strokeLinecap: "round",
|
426
|
+
strokeLinejoin: "round"
|
427
|
+
},
|
428
|
+
/* @__PURE__ */ React5.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
429
|
+
/* @__PURE__ */ React5.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
430
|
+
/* @__PURE__ */ React5.createElement("path", { d: "M12 17h.01" })
|
431
|
+
))
|
432
|
+
)));
|
422
433
|
Label.displayName = "Label";
|
423
434
|
|
424
435
|
// components/elements/skeleton/Skeleton.tsx
|
@@ -78,22 +78,33 @@ var Label = React2.forwardRef(({ className, hint, hintSide, required, children,
|
|
78
78
|
},
|
79
79
|
children,
|
80
80
|
required && /* @__PURE__ */ React2.createElement("span", { className: "hawa-mx-0.5 hawa-text-red-500" }, "*")
|
81
|
-
), hint && /* @__PURE__ */ React2.createElement(
|
82
|
-
|
81
|
+
), hint && /* @__PURE__ */ React2.createElement(
|
82
|
+
Tooltip,
|
83
83
|
{
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
strokeLinecap: "round",
|
91
|
-
strokeLinejoin: "round"
|
84
|
+
content: hint,
|
85
|
+
side: hintSide,
|
86
|
+
triggerProps: {
|
87
|
+
tabIndex: -1,
|
88
|
+
onClick: (event) => event.preventDefault()
|
89
|
+
}
|
92
90
|
},
|
93
|
-
/* @__PURE__ */ React2.createElement("
|
94
|
-
|
95
|
-
|
96
|
-
|
91
|
+
/* @__PURE__ */ React2.createElement("div", null, /* @__PURE__ */ React2.createElement(
|
92
|
+
"svg",
|
93
|
+
{
|
94
|
+
xmlns: "http://www.w3.org/2000/svg",
|
95
|
+
className: "hawa-h-[14px] hawa-w-[14px] hawa-cursor-help",
|
96
|
+
viewBox: "0 0 24 24",
|
97
|
+
fill: "none",
|
98
|
+
stroke: "currentColor",
|
99
|
+
strokeWidth: "2",
|
100
|
+
strokeLinecap: "round",
|
101
|
+
strokeLinejoin: "round"
|
102
|
+
},
|
103
|
+
/* @__PURE__ */ React2.createElement("circle", { cx: "12", cy: "12", r: "10" }),
|
104
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
105
|
+
/* @__PURE__ */ React2.createElement("path", { d: "M12 17h.01" })
|
106
|
+
))
|
107
|
+
)));
|
97
108
|
Label.displayName = "Label";
|
98
109
|
|
99
110
|
// components/elements/colorPicker/ColorPicker.tsx
|