@teach-in/react 0.2.0 → 0.4.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.
- package/dist/chunk-2SNKT7I4.mjs +9 -0
- package/dist/chunk-3YOW5DEZ.mjs +45 -0
- package/dist/chunk-4N3FFVKQ.mjs +14 -0
- package/dist/{chunk-PFLROV3C.mjs → chunk-544SDU73.mjs} +2 -2
- package/dist/chunk-7BTEKEON.mjs +11 -0
- package/dist/{chunk-X7ER4IDJ.mjs → chunk-AFVGHUW2.mjs} +2 -2
- package/dist/chunk-C4PCTOGM.mjs +12 -0
- package/dist/chunk-CA2EAK5M.mjs +40 -0
- package/dist/chunk-E5QSNLSR.mjs +38 -0
- package/dist/chunk-EEGPGLDC.mjs +26 -0
- package/dist/chunk-FKHR6G3R.mjs +1 -0
- package/dist/chunk-FQUYFYMS.mjs +24 -0
- package/dist/chunk-ICRO6HS3.mjs +1 -0
- package/dist/chunk-J3GK2CGQ.mjs +1 -0
- package/dist/chunk-JTPBZJ4S.mjs +14 -0
- package/dist/chunk-L6XIUULU.mjs +14 -0
- package/dist/chunk-LLP2PTPK.mjs +1 -0
- package/dist/{chunk-6UIBJVXP.mjs → chunk-MCZBJUTN.mjs} +1 -1
- package/dist/chunk-MJTSZFLC.mjs +1 -0
- package/dist/{chunk-WTXPB253.mjs → chunk-N3QOXWJI.mjs} +1 -1
- package/dist/chunk-N7GOJBLM.mjs +1 -0
- package/dist/{chunk-GEJLG5RP.mjs → chunk-NLHQDWUK.mjs} +3 -2
- package/dist/chunk-NOXFF2KJ.mjs +16 -0
- package/dist/chunk-NVLF7L4R.mjs +1 -0
- package/dist/chunk-OZSO3C5Q.mjs +14 -0
- package/dist/chunk-PKZZEODR.mjs +29 -0
- package/dist/chunk-PSK7I7V4.mjs +30 -0
- package/dist/chunk-Q2ILWL7L.mjs +1 -0
- package/dist/chunk-Q6JSJOU4.mjs +1 -0
- package/dist/chunk-QUMDPADZ.mjs +14 -0
- package/dist/chunk-RRA7GWP2.mjs +1 -0
- package/dist/chunk-SAYYLTIE.mjs +52 -0
- package/dist/chunk-TSD6GU35.mjs +16 -0
- package/dist/chunk-U4FAPNVK.mjs +1 -0
- package/dist/chunk-UFYLYN5Z.mjs +37 -0
- package/dist/chunk-UNBE67YJ.mjs +1 -0
- package/dist/chunk-UON5ACST.mjs +1 -0
- package/dist/chunk-UT5RUCAT.mjs +1 -0
- package/dist/chunk-UUKS7JYX.mjs +1 -0
- package/dist/chunk-VWGY6KWP.mjs +15 -0
- package/dist/chunk-W2A6C27Y.mjs +35 -0
- package/dist/{chunk-545OBZ4O.mjs → chunk-WFNNN6WU.mjs} +1 -1
- package/dist/chunk-XHCXM5MU.mjs +14 -0
- package/dist/chunk-YNCISHAU.mjs +27 -0
- package/dist/chunk-ZSYIKEXW.mjs +21 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +606 -193
- package/dist/index.mjs +261 -112
- package/dist/ui/data/image/image.d.ts +6 -0
- package/dist/ui/data/image/image.js +47 -0
- package/dist/ui/data/image/image.mjs +7 -0
- package/dist/ui/data/image/index.d.ts +1 -0
- package/dist/ui/data/image/index.js +49 -0
- package/dist/ui/data/image/index.mjs +8 -0
- package/dist/ui/data/index.d.ts +3 -0
- package/dist/ui/data/index.js +48 -2
- package/dist/ui/data/index.mjs +32 -5
- package/dist/ui/data/table/index.d.ts +1 -0
- package/dist/ui/data/table/index.js +52 -0
- package/dist/ui/data/table/index.mjs +20 -0
- package/dist/ui/data/table/table.d.ts +23 -0
- package/dist/ui/data/table/table.js +50 -0
- package/dist/ui/data/table/table.mjs +19 -0
- package/dist/ui/data/user/index.d.ts +1 -0
- package/dist/ui/data/user/index.js +49 -0
- package/dist/ui/data/user/index.mjs +8 -0
- package/dist/ui/data/user/user.d.ts +6 -0
- package/dist/ui/data/user/user.js +47 -0
- package/dist/ui/data/user/user.mjs +7 -0
- package/dist/ui/feedback/chip/chip.js +18 -1
- package/dist/ui/feedback/chip/chip.mjs +3 -1
- package/dist/ui/feedback/chip/index.js +18 -1
- package/dist/ui/feedback/chip/index.mjs +3 -1
- package/dist/ui/feedback/index.d.ts +2 -0
- package/dist/ui/feedback/index.js +85 -11
- package/dist/ui/feedback/index.mjs +32 -3
- package/dist/ui/feedback/progress/circular-progress.d.ts +9 -0
- package/dist/ui/feedback/progress/circular-progress.js +47 -0
- package/dist/ui/feedback/progress/circular-progress.mjs +7 -0
- package/dist/ui/feedback/progress/index.d.ts +2 -0
- package/dist/ui/feedback/progress/index.js +60 -0
- package/dist/ui/feedback/progress/index.mjs +12 -0
- package/dist/ui/feedback/progress/progress.d.ts +9 -0
- package/dist/ui/feedback/progress/progress.js +47 -0
- package/dist/ui/feedback/progress/progress.mjs +7 -0
- package/dist/ui/feedback/toast/index.d.ts +1 -0
- package/dist/ui/feedback/toast/index.js +73 -0
- package/dist/ui/feedback/toast/index.mjs +21 -0
- package/dist/ui/feedback/toast/toast.d.ts +17 -0
- package/dist/ui/feedback/toast/toast.js +71 -0
- package/dist/ui/feedback/toast/toast.mjs +21 -0
- package/dist/ui/form/index.js +106 -53
- package/dist/ui/form/index.mjs +30 -21
- package/dist/ui/form/rhf/fields/autocomplete-field.mjs +13 -8
- package/dist/ui/form/rhf/fields/checkbox-field.js +1 -1
- package/dist/ui/form/rhf/fields/checkbox-field.mjs +14 -9
- package/dist/ui/form/rhf/fields/date-picker-field.mjs +13 -8
- package/dist/ui/form/rhf/fields/email-field.mjs +13 -8
- package/dist/ui/form/rhf/fields/index.d.ts +1 -0
- package/dist/ui/form/rhf/fields/index.js +102 -49
- package/dist/ui/form/rhf/fields/index.mjs +28 -19
- package/dist/ui/form/rhf/fields/input-field.mjs +13 -8
- package/dist/ui/form/rhf/fields/radio-field.d.ts +10 -0
- package/dist/ui/form/rhf/fields/radio-field.js +78 -0
- package/dist/ui/form/rhf/fields/radio-field.mjs +31 -0
- package/dist/ui/form/rhf/fields/select-field.d.ts +8 -3
- package/dist/ui/form/rhf/fields/select-field.js +23 -10
- package/dist/ui/form/rhf/fields/select-field.mjs +14 -9
- package/dist/ui/form/rhf/fields/switch-field.mjs +13 -8
- package/dist/ui/form/rhf/fields/text-field.mjs +13 -8
- package/dist/ui/form/rhf/fields/textarea-field.mjs +13 -8
- package/dist/ui/form/rhf/index.js +102 -49
- package/dist/ui/form/rhf/index.mjs +28 -19
- package/dist/ui/format/index.mjs +9 -9
- package/dist/ui/index.js +604 -193
- package/dist/ui/index.mjs +258 -112
- package/dist/ui/inputs/checkbox/checkbox-group.d.ts +9 -0
- package/dist/ui/inputs/checkbox/checkbox-group.js +45 -0
- package/dist/ui/inputs/checkbox/checkbox-group.mjs +7 -0
- package/dist/ui/inputs/checkbox/checkbox.js +1 -1
- package/dist/ui/inputs/checkbox/checkbox.mjs +1 -1
- package/dist/ui/inputs/checkbox/index.d.ts +1 -0
- package/dist/ui/inputs/checkbox/index.js +12 -3
- package/dist/ui/inputs/checkbox/index.mjs +7 -3
- package/dist/ui/inputs/index.d.ts +1 -0
- package/dist/ui/inputs/index.js +114 -39
- package/dist/ui/inputs/index.mjs +28 -11
- package/dist/ui/inputs/radio/index.d.ts +2 -0
- package/dist/ui/inputs/radio/index.js +57 -0
- package/dist/ui/inputs/radio/index.mjs +12 -0
- package/dist/ui/inputs/radio/radio-group.d.ts +9 -0
- package/dist/ui/inputs/radio/radio-group.js +49 -0
- package/dist/ui/inputs/radio/radio-group.mjs +7 -0
- package/dist/ui/inputs/radio/radio.d.ts +6 -0
- package/dist/ui/inputs/radio/radio.js +32 -0
- package/dist/ui/inputs/radio/radio.mjs +7 -0
- package/dist/ui/inputs/select/index.js +21 -9
- package/dist/ui/inputs/select/index.mjs +1 -1
- package/dist/ui/inputs/select/select.d.ts +18 -5
- package/dist/ui/inputs/select/select.js +21 -9
- package/dist/ui/inputs/select/select.mjs +1 -1
- package/dist/ui/inputs/switch/favorite-switch.d.ts +6 -0
- package/dist/ui/inputs/switch/favorite-switch.js +62 -0
- package/dist/ui/inputs/switch/favorite-switch.mjs +8 -0
- package/dist/ui/inputs/switch/index.d.ts +1 -0
- package/dist/ui/inputs/switch/index.js +35 -0
- package/dist/ui/inputs/switch/index.mjs +5 -1
- package/dist/ui/layout/accordion/accordion.d.ts +10 -0
- package/dist/ui/layout/accordion/accordion.js +35 -0
- package/dist/ui/layout/accordion/accordion.mjs +9 -0
- package/dist/ui/layout/accordion/index.d.ts +1 -0
- package/dist/ui/layout/accordion/index.js +37 -0
- package/dist/ui/layout/accordion/index.mjs +10 -0
- package/dist/ui/layout/container/container.mjs +99 -63
- package/dist/ui/layout/container/index.mjs +99 -63
- package/dist/ui/layout/divider/divider.d.ts +6 -0
- package/dist/ui/layout/divider/divider.js +48 -0
- package/dist/ui/layout/divider/divider.mjs +7 -0
- package/dist/ui/layout/divider/index.d.ts +1 -0
- package/dist/ui/layout/divider/index.js +50 -0
- package/dist/ui/layout/divider/index.mjs +8 -0
- package/dist/ui/layout/index.d.ts +3 -0
- package/dist/ui/layout/index.js +32 -0
- package/dist/ui/layout/index.mjs +113 -66
- package/dist/ui/layout/page/index.mjs +11 -5
- package/dist/ui/layout/page/page-loading.mjs +8 -2
- package/dist/ui/layout/page/section-loading.mjs +8 -2
- package/dist/ui/layout/scroll-shadow/index.d.ts +1 -0
- package/dist/ui/layout/scroll-shadow/index.js +49 -0
- package/dist/ui/layout/scroll-shadow/index.mjs +8 -0
- package/dist/ui/layout/scroll-shadow/scroll-shadow.d.ts +9 -0
- package/dist/ui/layout/scroll-shadow/scroll-shadow.js +47 -0
- package/dist/ui/layout/scroll-shadow/scroll-shadow.mjs +7 -0
- package/dist/ui/navigation/breadcrumbs/breadcrumbs.d.ts +10 -0
- package/dist/ui/navigation/breadcrumbs/breadcrumbs.js +37 -0
- package/dist/ui/navigation/breadcrumbs/breadcrumbs.mjs +9 -0
- package/dist/ui/navigation/breadcrumbs/index.d.ts +1 -0
- package/dist/ui/navigation/breadcrumbs/index.js +39 -0
- package/dist/ui/navigation/breadcrumbs/index.mjs +10 -0
- package/dist/ui/navigation/index.d.ts +3 -0
- package/dist/ui/navigation/index.js +88 -2
- package/dist/ui/navigation/index.mjs +31 -2
- package/dist/ui/navigation/navbar/index.d.ts +1 -0
- package/dist/ui/navigation/navbar/index.js +85 -0
- package/dist/ui/navigation/navbar/index.mjs +20 -0
- package/dist/ui/navigation/navbar/navbar.d.ts +26 -0
- package/dist/ui/navigation/navbar/navbar.js +83 -0
- package/dist/ui/navigation/navbar/navbar.mjs +19 -0
- package/dist/ui/navigation/tabs/index.d.ts +1 -0
- package/dist/ui/navigation/tabs/index.js +56 -0
- package/dist/ui/navigation/tabs/index.mjs +8 -0
- package/dist/ui/navigation/tabs/tabs.d.ts +7 -0
- package/dist/ui/navigation/tabs/tabs.js +54 -0
- package/dist/ui/navigation/tabs/tabs.mjs +7 -0
- package/dist/ui/overlays/dropdown/dropdown.d.ts +28 -0
- package/dist/ui/overlays/dropdown/dropdown.js +48 -0
- package/dist/ui/overlays/dropdown/dropdown.mjs +15 -0
- package/dist/ui/overlays/dropdown/index.d.ts +1 -0
- package/dist/ui/overlays/dropdown/index.js +50 -0
- package/dist/ui/overlays/dropdown/index.mjs +16 -0
- package/dist/ui/overlays/index.d.ts +2 -0
- package/dist/ui/overlays/index.js +47 -2
- package/dist/ui/overlays/index.mjs +20 -2
- package/dist/ui/overlays/popover/index.d.ts +1 -0
- package/dist/ui/overlays/popover/index.js +51 -0
- package/dist/ui/overlays/popover/index.mjs +8 -0
- package/dist/ui/overlays/popover/popover.d.ts +10 -0
- package/dist/ui/overlays/popover/popover.js +49 -0
- package/dist/ui/overlays/popover/popover.mjs +7 -0
- package/dist/ui/provider/index.js +31 -2
- package/dist/ui/provider/index.mjs +16 -1
- package/dist/ui/provider/ui-provider.d.ts +3 -1
- package/dist/ui/provider/ui-provider.js +31 -2
- package/dist/ui/provider/ui-provider.mjs +16 -1
- package/dist/ui/surface/card/card.d.ts +36 -0
- package/dist/ui/surface/card/card.js +65 -0
- package/dist/ui/surface/card/card.mjs +7 -0
- package/dist/ui/surface/card/index.d.ts +1 -0
- package/dist/ui/surface/card/index.js +67 -0
- package/dist/ui/surface/card/index.mjs +8 -0
- package/dist/ui/surface/index.d.ts +1 -0
- package/dist/ui/surface/index.js +39 -0
- package/dist/ui/surface/index.mjs +6 -1
- package/dist/ui/theme/colors/common.mjs +5 -5
- package/dist/ui/theme/colors/index.js +1 -1
- package/dist/ui/theme/colors/index.mjs +7 -7
- package/dist/ui/theme/colors/semantic.js +1 -1
- package/dist/ui/theme/colors/semantic.mjs +6 -6
- package/dist/ui/theme/colors.js +1 -1
- package/dist/ui/theme/colors.mjs +7 -7
- package/dist/ui/theme/index.js +1 -1
- package/dist/ui/theme/index.mjs +8 -8
- package/dist/ui/theme/theme.js +1 -1
- package/dist/ui/theme/theme.mjs +8 -8
- package/dist/utils/extend-variants.d.ts +41 -0
- package/dist/utils/extend-variants.js +34 -0
- package/dist/utils/extend-variants.mjs +7 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +36 -0
- package/dist/utils/index.mjs +8 -0
- package/package.json +18 -3
- package/dist/chunk-6WK4W5LL.mjs +0 -17
- package/dist/chunk-GQ3LBZ2Q.mjs +0 -33
- package/dist/chunk-ONQIPN3G.mjs +0 -14
- package/dist/{chunk-54ZSBA6H.mjs → chunk-3C4DPNCD.mjs} +0 -0
- package/dist/{chunk-5EWHMXCP.mjs → chunk-54FA62HL.mjs} +0 -0
- package/dist/{chunk-5HUR2CNH.mjs → chunk-57JRJHSH.mjs} +0 -0
- package/dist/{chunk-NCM6KIQH.mjs → chunk-5WDV3PDI.mjs} +12 -12
- /package/dist/{chunk-IZ5KKF6P.mjs → chunk-773RYGHT.mjs} +0 -0
- /package/dist/{chunk-5YMUHF45.mjs → chunk-AR4IYKG5.mjs} +0 -0
- /package/dist/{chunk-CAJWTQDB.mjs → chunk-AT6DX4DN.mjs} +0 -0
- /package/dist/{chunk-JJHHWDZT.mjs → chunk-BGNMWHME.mjs} +0 -0
- /package/dist/{chunk-OEHJDT6R.mjs → chunk-CTKWGSNJ.mjs} +0 -0
- /package/dist/{chunk-UURZJWWV.mjs → chunk-CZEO3U25.mjs} +0 -0
- /package/dist/{chunk-WJXIRSSW.mjs → chunk-DRZAPJZH.mjs} +0 -0
package/dist/ui/index.mjs
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
Container
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-773RYGHT.mjs";
|
|
5
|
+
import "../chunk-BGNMWHME.mjs";
|
|
6
6
|
import {
|
|
7
|
-
|
|
8
|
-
} from "../chunk-
|
|
7
|
+
ScrollShadow
|
|
8
|
+
} from "../chunk-OZSO3C5Q.mjs";
|
|
9
|
+
import "../chunk-NVLF7L4R.mjs";
|
|
10
|
+
import {
|
|
11
|
+
Divider
|
|
12
|
+
} from "../chunk-VWGY6KWP.mjs";
|
|
9
13
|
import "../chunk-NDQAHQFL.mjs";
|
|
10
14
|
import {
|
|
11
15
|
Grid
|
|
12
16
|
} from "../chunk-W6NKLZ73.mjs";
|
|
13
17
|
import "../chunk-CRPCWBXA.mjs";
|
|
14
|
-
import {
|
|
15
|
-
PageLoading
|
|
16
|
-
} from "../chunk-SPED4RBS.mjs";
|
|
17
18
|
import {
|
|
18
19
|
SectionLoading
|
|
19
20
|
} from "../chunk-25XG46X6.mjs";
|
|
@@ -30,13 +31,32 @@ import {
|
|
|
30
31
|
Title
|
|
31
32
|
} from "../chunk-Q4TQYK6N.mjs";
|
|
32
33
|
import "../chunk-DBQTFBA3.mjs";
|
|
34
|
+
import {
|
|
35
|
+
PageLoading
|
|
36
|
+
} from "../chunk-SPED4RBS.mjs";
|
|
37
|
+
import "../chunk-JUIVZCH7.mjs";
|
|
38
|
+
import {
|
|
39
|
+
Flex
|
|
40
|
+
} from "../chunk-M5F723W7.mjs";
|
|
41
|
+
import "../chunk-N7GOJBLM.mjs";
|
|
42
|
+
import {
|
|
43
|
+
Accordion,
|
|
44
|
+
AccordionItem
|
|
45
|
+
} from "../chunk-QUMDPADZ.mjs";
|
|
33
46
|
import "../chunk-Q6XJI7Q2.mjs";
|
|
34
|
-
import
|
|
47
|
+
import {
|
|
48
|
+
cn
|
|
49
|
+
} from "../chunk-LOMRTWX5.mjs";
|
|
50
|
+
import "../chunk-UNBE67YJ.mjs";
|
|
35
51
|
import "../chunk-PON4ZQKG.mjs";
|
|
36
52
|
import {
|
|
37
53
|
Bento,
|
|
38
54
|
bento
|
|
39
55
|
} from "../chunk-J3OZNLTZ.mjs";
|
|
56
|
+
import "../chunk-57JRJHSH.mjs";
|
|
57
|
+
import {
|
|
58
|
+
Card
|
|
59
|
+
} from "../chunk-UFYLYN5Z.mjs";
|
|
40
60
|
import "../chunk-EVQFKHCM.mjs";
|
|
41
61
|
import "../chunk-XAW35UDV.mjs";
|
|
42
62
|
import {
|
|
@@ -44,101 +64,37 @@ import {
|
|
|
44
64
|
} from "../chunk-NBFOX367.mjs";
|
|
45
65
|
import {
|
|
46
66
|
theme
|
|
47
|
-
} from "../chunk-
|
|
67
|
+
} from "../chunk-WFNNN6WU.mjs";
|
|
48
68
|
import "../chunk-JWMPI5AZ.mjs";
|
|
49
|
-
import "../chunk-
|
|
50
|
-
import "../chunk-
|
|
69
|
+
import "../chunk-544SDU73.mjs";
|
|
70
|
+
import "../chunk-AFVGHUW2.mjs";
|
|
51
71
|
import "../chunk-EJQH6CYW.mjs";
|
|
52
|
-
import "../chunk-
|
|
53
|
-
import "../chunk-SLB2JE3N.mjs";
|
|
54
|
-
import "../chunk-XYQVL4EX.mjs";
|
|
72
|
+
import "../chunk-5WDV3PDI.mjs";
|
|
55
73
|
import "../chunk-HOVAPYGJ.mjs";
|
|
56
74
|
import "../chunk-3LOCA2SP.mjs";
|
|
57
|
-
import "../chunk-2OPPNAW2.mjs";
|
|
58
|
-
import "../chunk-OW6U64MG.mjs";
|
|
59
75
|
import "../chunk-LUERGYYZ.mjs";
|
|
60
76
|
import "../chunk-YBQFG6QJ.mjs";
|
|
61
77
|
import "../chunk-XKX5LFH7.mjs";
|
|
78
|
+
import "../chunk-SLB2JE3N.mjs";
|
|
79
|
+
import "../chunk-XYQVL4EX.mjs";
|
|
80
|
+
import "../chunk-2OPPNAW2.mjs";
|
|
81
|
+
import "../chunk-OW6U64MG.mjs";
|
|
62
82
|
import "../chunk-VIPLRFPR.mjs";
|
|
63
|
-
import "../chunk-
|
|
64
|
-
import "../chunk-
|
|
65
|
-
import
|
|
66
|
-
Modal
|
|
67
|
-
} from "../chunk-T57H3CGO.mjs";
|
|
68
|
-
import "../chunk-3N5UZODS.mjs";
|
|
69
|
-
import {
|
|
70
|
-
UIProvider
|
|
71
|
-
} from "../chunk-6WK4W5LL.mjs";
|
|
72
|
-
import {
|
|
73
|
-
cn
|
|
74
|
-
} from "../chunk-LOMRTWX5.mjs";
|
|
75
|
-
import "../chunk-5HUR2CNH.mjs";
|
|
76
|
-
import "../chunk-25ISU6R3.mjs";
|
|
77
|
-
import {
|
|
78
|
-
Link
|
|
79
|
-
} from "../chunk-7T3JFARO.mjs";
|
|
80
|
-
import "../chunk-5IHVMMCK.mjs";
|
|
81
|
-
import {
|
|
82
|
-
Number
|
|
83
|
-
} from "../chunk-NZI5NBXF.mjs";
|
|
84
|
-
import {
|
|
85
|
-
Percent
|
|
86
|
-
} from "../chunk-CXAZBWS4.mjs";
|
|
87
|
-
import {
|
|
88
|
-
Plural
|
|
89
|
-
} from "../chunk-UHLC7GOU.mjs";
|
|
90
|
-
import {
|
|
91
|
-
Time
|
|
92
|
-
} from "../chunk-3ZTXXJSO.mjs";
|
|
93
|
-
import {
|
|
94
|
-
Boolean
|
|
95
|
-
} from "../chunk-26RHRVH2.mjs";
|
|
96
|
-
import {
|
|
97
|
-
Currency
|
|
98
|
-
} from "../chunk-LN7WH3OB.mjs";
|
|
99
|
-
import {
|
|
100
|
-
DateFormat
|
|
101
|
-
} from "../chunk-BUVPBB4J.mjs";
|
|
102
|
-
import {
|
|
103
|
-
Datetime
|
|
104
|
-
} from "../chunk-6NZ4IHNU.mjs";
|
|
105
|
-
import {
|
|
106
|
-
Duration
|
|
107
|
-
} from "../chunk-4QSIBIUI.mjs";
|
|
108
|
-
import "../chunk-HZ5YAOU6.mjs";
|
|
109
|
-
import "../chunk-5UKTT75Y.mjs";
|
|
110
|
-
import {
|
|
111
|
-
Button
|
|
112
|
-
} from "../chunk-TYMUQULA.mjs";
|
|
113
|
-
import "../chunk-54ZSBA6H.mjs";
|
|
114
|
-
import "../chunk-KH4D2C2T.mjs";
|
|
115
|
-
import {
|
|
116
|
-
Pagination
|
|
117
|
-
} from "../chunk-O5T4GUJH.mjs";
|
|
118
|
-
import "../chunk-UTZUYZZL.mjs";
|
|
119
|
-
import {
|
|
120
|
-
Avatar
|
|
121
|
-
} from "../chunk-IZEJE6V2.mjs";
|
|
122
|
-
import "../chunk-UURZJWWV.mjs";
|
|
123
|
-
import "../chunk-WZDFBWUL.mjs";
|
|
83
|
+
import "../chunk-VOG5HJID.mjs";
|
|
84
|
+
import "../chunk-FXXWSYJA.mjs";
|
|
85
|
+
import "../chunk-Q6JSJOU4.mjs";
|
|
124
86
|
import {
|
|
125
|
-
|
|
126
|
-
} from "../chunk-
|
|
127
|
-
import "../chunk-3BST3PYD.mjs";
|
|
87
|
+
InputField
|
|
88
|
+
} from "../chunk-JDFRAN4S.mjs";
|
|
128
89
|
import {
|
|
129
|
-
|
|
130
|
-
} from "../chunk-
|
|
131
|
-
import "../chunk-K3WTHFIG.mjs";
|
|
90
|
+
RadioField
|
|
91
|
+
} from "../chunk-W2A6C27Y.mjs";
|
|
132
92
|
import {
|
|
133
|
-
|
|
134
|
-
} from "../chunk-
|
|
135
|
-
import "../chunk-V77JZXH7.mjs";
|
|
93
|
+
SelectField
|
|
94
|
+
} from "../chunk-NLHQDWUK.mjs";
|
|
136
95
|
import {
|
|
137
|
-
|
|
138
|
-
} from "../chunk-
|
|
139
|
-
import "../chunk-VOG5HJID.mjs";
|
|
140
|
-
import "../chunk-FXXWSYJA.mjs";
|
|
141
|
-
import "../chunk-JJHHWDZT.mjs";
|
|
96
|
+
SwitchField
|
|
97
|
+
} from "../chunk-EC3NSPHR.mjs";
|
|
142
98
|
import {
|
|
143
99
|
TextField
|
|
144
100
|
} from "../chunk-CETCW7DS.mjs";
|
|
@@ -150,7 +106,7 @@ import {
|
|
|
150
106
|
} from "../chunk-S3ET5HKP.mjs";
|
|
151
107
|
import {
|
|
152
108
|
CheckboxField
|
|
153
|
-
} from "../chunk-
|
|
109
|
+
} from "../chunk-MCZBJUTN.mjs";
|
|
154
110
|
import {
|
|
155
111
|
DatePickerField
|
|
156
112
|
} from "../chunk-7GHK5XYK.mjs";
|
|
@@ -158,27 +114,31 @@ import {
|
|
|
158
114
|
EmailField
|
|
159
115
|
} from "../chunk-R7LDL5CU.mjs";
|
|
160
116
|
import {
|
|
161
|
-
|
|
162
|
-
} from "../chunk-
|
|
117
|
+
Form
|
|
118
|
+
} from "../chunk-A3AAC7PF.mjs";
|
|
119
|
+
import "../chunk-CZEO3U25.mjs";
|
|
120
|
+
import "../chunk-DUQFM3QS.mjs";
|
|
163
121
|
import {
|
|
164
|
-
|
|
165
|
-
} from "../chunk-
|
|
122
|
+
Text
|
|
123
|
+
} from "../chunk-KTUGFQWJ.mjs";
|
|
124
|
+
import "../chunk-RRA7GWP2.mjs";
|
|
166
125
|
import {
|
|
167
|
-
|
|
168
|
-
} from "../chunk-
|
|
169
|
-
import "../chunk-5YMUHF45.mjs";
|
|
170
|
-
import "../chunk-5HK7HRTR.mjs";
|
|
126
|
+
RadioGroup
|
|
127
|
+
} from "../chunk-NOXFF2KJ.mjs";
|
|
171
128
|
import {
|
|
172
|
-
|
|
173
|
-
} from "../chunk-
|
|
174
|
-
import "../chunk-
|
|
129
|
+
Radio
|
|
130
|
+
} from "../chunk-2SNKT7I4.mjs";
|
|
131
|
+
import "../chunk-LLP2PTPK.mjs";
|
|
132
|
+
import {
|
|
133
|
+
FavoriteSwitch
|
|
134
|
+
} from "../chunk-E5QSNLSR.mjs";
|
|
175
135
|
import {
|
|
176
136
|
Switch
|
|
177
137
|
} from "../chunk-N3EAW6UO.mjs";
|
|
178
|
-
import "../chunk-
|
|
138
|
+
import "../chunk-5HK7HRTR.mjs";
|
|
179
139
|
import {
|
|
180
|
-
|
|
181
|
-
} from "../chunk-
|
|
140
|
+
Textarea
|
|
141
|
+
} from "../chunk-HJUZTISD.mjs";
|
|
182
142
|
import "../chunk-V2HNFTTX.mjs";
|
|
183
143
|
import {
|
|
184
144
|
DatePicker
|
|
@@ -194,19 +154,162 @@ import {
|
|
|
194
154
|
import "../chunk-AQ3ISJKU.mjs";
|
|
195
155
|
import {
|
|
196
156
|
Select
|
|
197
|
-
} from "../chunk-
|
|
157
|
+
} from "../chunk-3YOW5DEZ.mjs";
|
|
198
158
|
import "../chunk-WYJW5NNA.mjs";
|
|
199
159
|
import {
|
|
200
160
|
Autocomplete
|
|
201
161
|
} from "../chunk-C3MURCMZ.mjs";
|
|
202
|
-
import "../chunk-
|
|
162
|
+
import "../chunk-UUKS7JYX.mjs";
|
|
163
|
+
import {
|
|
164
|
+
CheckboxGroup
|
|
165
|
+
} from "../chunk-C4PCTOGM.mjs";
|
|
203
166
|
import {
|
|
204
167
|
Checkbox
|
|
205
|
-
} from "../chunk-
|
|
168
|
+
} from "../chunk-N3QOXWJI.mjs";
|
|
169
|
+
import "../chunk-J3GK2CGQ.mjs";
|
|
170
|
+
import "../chunk-MJTSZFLC.mjs";
|
|
206
171
|
import {
|
|
207
|
-
|
|
208
|
-
} from "../chunk-
|
|
172
|
+
Tabs
|
|
173
|
+
} from "../chunk-ZSYIKEXW.mjs";
|
|
174
|
+
import "../chunk-FKHR6G3R.mjs";
|
|
175
|
+
import {
|
|
176
|
+
BreadcrumbItem,
|
|
177
|
+
Breadcrumbs
|
|
178
|
+
} from "../chunk-TSD6GU35.mjs";
|
|
179
|
+
import "../chunk-25ISU6R3.mjs";
|
|
180
|
+
import {
|
|
181
|
+
Link
|
|
182
|
+
} from "../chunk-7T3JFARO.mjs";
|
|
183
|
+
import "../chunk-AT6DX4DN.mjs";
|
|
184
|
+
import {
|
|
185
|
+
Navbar,
|
|
186
|
+
NavbarBrand,
|
|
187
|
+
NavbarContent,
|
|
188
|
+
NavbarItem,
|
|
189
|
+
NavbarMenu,
|
|
190
|
+
NavbarMenuItem,
|
|
191
|
+
NavbarMenuToggle
|
|
192
|
+
} from "../chunk-SAYYLTIE.mjs";
|
|
193
|
+
import "../chunk-UON5ACST.mjs";
|
|
194
|
+
import "../chunk-ICRO6HS3.mjs";
|
|
195
|
+
import {
|
|
196
|
+
Dropdown,
|
|
197
|
+
DropdownItem,
|
|
198
|
+
DropdownMenu,
|
|
199
|
+
DropdownSection,
|
|
200
|
+
DropdownTrigger
|
|
201
|
+
} from "../chunk-YNCISHAU.mjs";
|
|
202
|
+
import "../chunk-I5AMV7H7.mjs";
|
|
203
|
+
import {
|
|
204
|
+
Modal
|
|
205
|
+
} from "../chunk-T57H3CGO.mjs";
|
|
206
|
+
import "../chunk-UT5RUCAT.mjs";
|
|
207
|
+
import {
|
|
208
|
+
Popover
|
|
209
|
+
} from "../chunk-PSK7I7V4.mjs";
|
|
210
|
+
import "../chunk-3N5UZODS.mjs";
|
|
211
|
+
import {
|
|
212
|
+
UIProvider
|
|
213
|
+
} from "../chunk-FQUYFYMS.mjs";
|
|
214
|
+
import "../chunk-AR4IYKG5.mjs";
|
|
215
|
+
import {
|
|
216
|
+
Toast,
|
|
217
|
+
ToastProvider,
|
|
218
|
+
addToast,
|
|
219
|
+
closeAll,
|
|
220
|
+
closeToast,
|
|
221
|
+
getToastQueue,
|
|
222
|
+
isToastClosing,
|
|
223
|
+
useToast
|
|
224
|
+
} from "../chunk-CA2EAK5M.mjs";
|
|
225
|
+
import "../chunk-U4FAPNVK.mjs";
|
|
226
|
+
import {
|
|
227
|
+
CircularProgress
|
|
228
|
+
} from "../chunk-L6XIUULU.mjs";
|
|
229
|
+
import {
|
|
230
|
+
Progress
|
|
231
|
+
} from "../chunk-JTPBZJ4S.mjs";
|
|
232
|
+
import "../chunk-WZDFBWUL.mjs";
|
|
233
|
+
import {
|
|
234
|
+
Spinner
|
|
235
|
+
} from "../chunk-ZXCQ73RT.mjs";
|
|
236
|
+
import "../chunk-3BST3PYD.mjs";
|
|
237
|
+
import {
|
|
238
|
+
Tooltip
|
|
239
|
+
} from "../chunk-TJBXXTYS.mjs";
|
|
240
|
+
import "../chunk-K3WTHFIG.mjs";
|
|
241
|
+
import {
|
|
242
|
+
Chip
|
|
243
|
+
} from "../chunk-EEGPGLDC.mjs";
|
|
244
|
+
import "../chunk-V77JZXH7.mjs";
|
|
245
|
+
import {
|
|
246
|
+
Alert
|
|
247
|
+
} from "../chunk-TIFF5WZA.mjs";
|
|
248
|
+
import "../chunk-5IHVMMCK.mjs";
|
|
249
|
+
import {
|
|
250
|
+
DateFormat
|
|
251
|
+
} from "../chunk-BUVPBB4J.mjs";
|
|
252
|
+
import {
|
|
253
|
+
Datetime
|
|
254
|
+
} from "../chunk-6NZ4IHNU.mjs";
|
|
255
|
+
import {
|
|
256
|
+
Duration
|
|
257
|
+
} from "../chunk-4QSIBIUI.mjs";
|
|
258
|
+
import {
|
|
259
|
+
Number
|
|
260
|
+
} from "../chunk-NZI5NBXF.mjs";
|
|
261
|
+
import {
|
|
262
|
+
Percent
|
|
263
|
+
} from "../chunk-CXAZBWS4.mjs";
|
|
264
|
+
import {
|
|
265
|
+
Plural
|
|
266
|
+
} from "../chunk-UHLC7GOU.mjs";
|
|
267
|
+
import {
|
|
268
|
+
Time
|
|
269
|
+
} from "../chunk-3ZTXXJSO.mjs";
|
|
270
|
+
import "../chunk-Q2ILWL7L.mjs";
|
|
271
|
+
import "../chunk-7BTEKEON.mjs";
|
|
272
|
+
import "../chunk-HZ5YAOU6.mjs";
|
|
273
|
+
import "../chunk-5UKTT75Y.mjs";
|
|
274
|
+
import {
|
|
275
|
+
Button
|
|
276
|
+
} from "../chunk-TYMUQULA.mjs";
|
|
277
|
+
import "../chunk-3C4DPNCD.mjs";
|
|
278
|
+
import "../chunk-54FA62HL.mjs";
|
|
279
|
+
import {
|
|
280
|
+
Table,
|
|
281
|
+
TableBody,
|
|
282
|
+
TableCell,
|
|
283
|
+
TableColumn,
|
|
284
|
+
TableHeader,
|
|
285
|
+
TableRow,
|
|
286
|
+
getKeyValue
|
|
287
|
+
} from "../chunk-PKZZEODR.mjs";
|
|
288
|
+
import "../chunk-CTKWGSNJ.mjs";
|
|
289
|
+
import {
|
|
290
|
+
User
|
|
291
|
+
} from "../chunk-XHCXM5MU.mjs";
|
|
292
|
+
import "../chunk-UTZUYZZL.mjs";
|
|
293
|
+
import {
|
|
294
|
+
Avatar
|
|
295
|
+
} from "../chunk-IZEJE6V2.mjs";
|
|
296
|
+
import "../chunk-DRZAPJZH.mjs";
|
|
297
|
+
import {
|
|
298
|
+
Image
|
|
299
|
+
} from "../chunk-4N3FFVKQ.mjs";
|
|
300
|
+
import "../chunk-KH4D2C2T.mjs";
|
|
301
|
+
import {
|
|
302
|
+
Pagination
|
|
303
|
+
} from "../chunk-O5T4GUJH.mjs";
|
|
304
|
+
import {
|
|
305
|
+
Boolean
|
|
306
|
+
} from "../chunk-26RHRVH2.mjs";
|
|
307
|
+
import {
|
|
308
|
+
Currency
|
|
309
|
+
} from "../chunk-LN7WH3OB.mjs";
|
|
209
310
|
export {
|
|
311
|
+
Accordion,
|
|
312
|
+
AccordionItem,
|
|
210
313
|
Actions,
|
|
211
314
|
Alert,
|
|
212
315
|
Autocomplete,
|
|
@@ -214,15 +317,27 @@ export {
|
|
|
214
317
|
Avatar,
|
|
215
318
|
Bento,
|
|
216
319
|
Body,
|
|
320
|
+
BreadcrumbItem,
|
|
321
|
+
Breadcrumbs,
|
|
217
322
|
Button,
|
|
323
|
+
Card,
|
|
218
324
|
Checkbox,
|
|
219
325
|
CheckboxField,
|
|
326
|
+
CheckboxGroup,
|
|
220
327
|
Chip,
|
|
328
|
+
CircularProgress,
|
|
221
329
|
Container,
|
|
222
330
|
DatePicker,
|
|
223
331
|
DatePickerField,
|
|
332
|
+
Divider,
|
|
333
|
+
Dropdown,
|
|
334
|
+
DropdownItem,
|
|
335
|
+
DropdownMenu,
|
|
336
|
+
DropdownSection,
|
|
337
|
+
DropdownTrigger,
|
|
224
338
|
Email,
|
|
225
339
|
EmailField,
|
|
340
|
+
FavoriteSwitch,
|
|
226
341
|
Flex,
|
|
227
342
|
Form,
|
|
228
343
|
Boolean as FormatBoolean,
|
|
@@ -236,14 +351,28 @@ export {
|
|
|
236
351
|
Time as FormatTime,
|
|
237
352
|
Grid,
|
|
238
353
|
Header,
|
|
354
|
+
Image,
|
|
239
355
|
Input,
|
|
240
356
|
InputField,
|
|
241
357
|
Link,
|
|
242
358
|
Modal,
|
|
359
|
+
Navbar,
|
|
360
|
+
NavbarBrand,
|
|
361
|
+
NavbarContent,
|
|
362
|
+
NavbarItem,
|
|
363
|
+
NavbarMenu,
|
|
364
|
+
NavbarMenuItem,
|
|
365
|
+
NavbarMenuToggle,
|
|
243
366
|
PageContent,
|
|
244
367
|
PageLoading,
|
|
245
368
|
Pagination,
|
|
369
|
+
Popover,
|
|
370
|
+
Progress,
|
|
371
|
+
Radio,
|
|
372
|
+
RadioField,
|
|
373
|
+
RadioGroup,
|
|
246
374
|
Root,
|
|
375
|
+
ScrollShadow,
|
|
247
376
|
Section,
|
|
248
377
|
SectionActions,
|
|
249
378
|
SectionHeader,
|
|
@@ -254,16 +383,33 @@ export {
|
|
|
254
383
|
Spinner,
|
|
255
384
|
Switch,
|
|
256
385
|
SwitchField,
|
|
386
|
+
Table,
|
|
387
|
+
TableBody,
|
|
388
|
+
TableCell,
|
|
389
|
+
TableColumn,
|
|
390
|
+
TableHeader,
|
|
391
|
+
TableRow,
|
|
392
|
+
Tabs,
|
|
257
393
|
UIProvider as TeachInUIProvider,
|
|
258
394
|
Text,
|
|
259
395
|
TextField,
|
|
260
396
|
Textarea,
|
|
261
397
|
TextareaField,
|
|
262
398
|
Title,
|
|
399
|
+
Toast,
|
|
400
|
+
ToastProvider,
|
|
263
401
|
Tooltip,
|
|
264
402
|
UIProvider,
|
|
403
|
+
User,
|
|
404
|
+
addToast,
|
|
265
405
|
bento,
|
|
266
406
|
breakpoints,
|
|
407
|
+
closeAll,
|
|
408
|
+
closeToast,
|
|
267
409
|
cn,
|
|
268
|
-
|
|
410
|
+
getKeyValue,
|
|
411
|
+
getToastQueue,
|
|
412
|
+
isToastClosing,
|
|
413
|
+
theme,
|
|
414
|
+
useToast
|
|
269
415
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CheckboxGroup as HeroUICheckboxGroup } from "@heroui/checkbox";
|
|
3
|
+
export type CheckboxGroupProps = React.ComponentProps<typeof HeroUICheckboxGroup>;
|
|
4
|
+
declare const CheckboxGroup: React.ForwardRefExoticComponent<(Omit<import("@heroui/system").OmitCommonProps<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, keyof import("@heroui/checkbox").CheckboxGroupProps> & import("@heroui/checkbox").CheckboxGroupProps & {
|
|
5
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
6
|
+
}, "ref"> | Omit<import("@heroui/system").OmitCommonProps<Omit<Omit<any, "ref">, never>, keyof import("@heroui/checkbox").CheckboxGroupProps> & import("@heroui/checkbox").CheckboxGroupProps & {
|
|
7
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
8
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export { CheckboxGroup };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __export = (target, all) => {
|
|
10
|
+
for (var name in all)
|
|
11
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
12
|
+
};
|
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
15
|
+
for (let key of __getOwnPropNames(from))
|
|
16
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
17
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
18
|
+
}
|
|
19
|
+
return to;
|
|
20
|
+
};
|
|
21
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
26
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
27
|
+
mod
|
|
28
|
+
));
|
|
29
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
|
+
|
|
31
|
+
// src/ui/inputs/checkbox/checkbox-group.tsx
|
|
32
|
+
var checkbox_group_exports = {};
|
|
33
|
+
__export(checkbox_group_exports, {
|
|
34
|
+
CheckboxGroup: () => CheckboxGroup
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(checkbox_group_exports);
|
|
37
|
+
var import_react = __toESM(require("react"));
|
|
38
|
+
var import_checkbox = require("@heroui/checkbox");
|
|
39
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
|
+
var CheckboxGroup = import_react.default.forwardRef((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_checkbox.CheckboxGroup, { ref, ...props }));
|
|
41
|
+
CheckboxGroup.displayName = "TeachInUI.CheckboxGroup";
|
|
42
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
43
|
+
0 && (module.exports = {
|
|
44
|
+
CheckboxGroup
|
|
45
|
+
});
|
|
@@ -39,7 +39,7 @@ var import_react = __toESM(require("react"));
|
|
|
39
39
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
40
|
var Checkbox = import_react.default.forwardRef(
|
|
41
41
|
({ label, ...props }, ref) => {
|
|
42
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_checkbox.Checkbox, { ref,
|
|
42
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_checkbox.Checkbox, { ref, ...props, children: label });
|
|
43
43
|
}
|
|
44
44
|
);
|
|
45
45
|
Checkbox.displayName = "TeachInUI.Checkbox";
|
|
@@ -31,7 +31,8 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
// src/ui/inputs/checkbox/index.ts
|
|
32
32
|
var checkbox_exports = {};
|
|
33
33
|
__export(checkbox_exports, {
|
|
34
|
-
Checkbox: () => Checkbox
|
|
34
|
+
Checkbox: () => Checkbox,
|
|
35
|
+
CheckboxGroup: () => CheckboxGroup
|
|
35
36
|
});
|
|
36
37
|
module.exports = __toCommonJS(checkbox_exports);
|
|
37
38
|
|
|
@@ -41,11 +42,19 @@ var import_react = __toESM(require("react"));
|
|
|
41
42
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
42
43
|
var Checkbox = import_react.default.forwardRef(
|
|
43
44
|
({ label, ...props }, ref) => {
|
|
44
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_checkbox.Checkbox, { ref,
|
|
45
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_checkbox.Checkbox, { ref, ...props, children: label });
|
|
45
46
|
}
|
|
46
47
|
);
|
|
47
48
|
Checkbox.displayName = "TeachInUI.Checkbox";
|
|
49
|
+
|
|
50
|
+
// src/ui/inputs/checkbox/checkbox-group.tsx
|
|
51
|
+
var import_react2 = __toESM(require("react"));
|
|
52
|
+
var import_checkbox2 = require("@heroui/checkbox");
|
|
53
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
54
|
+
var CheckboxGroup = import_react2.default.forwardRef((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_checkbox2.CheckboxGroup, { ref, ...props }));
|
|
55
|
+
CheckboxGroup.displayName = "TeachInUI.CheckboxGroup";
|
|
48
56
|
// Annotate the CommonJS export names for ESM import in node:
|
|
49
57
|
0 && (module.exports = {
|
|
50
|
-
Checkbox
|
|
58
|
+
Checkbox,
|
|
59
|
+
CheckboxGroup
|
|
51
60
|
});
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "../../../chunk-
|
|
2
|
+
import "../../../chunk-UUKS7JYX.mjs";
|
|
3
|
+
import {
|
|
4
|
+
CheckboxGroup
|
|
5
|
+
} from "../../../chunk-C4PCTOGM.mjs";
|
|
3
6
|
import {
|
|
4
7
|
Checkbox
|
|
5
|
-
} from "../../../chunk-
|
|
8
|
+
} from "../../../chunk-N3QOXWJI.mjs";
|
|
6
9
|
export {
|
|
7
|
-
Checkbox
|
|
10
|
+
Checkbox,
|
|
11
|
+
CheckboxGroup
|
|
8
12
|
};
|