@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
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../../../chunk-CRPCWBXA.mjs";
|
|
3
|
-
import {
|
|
4
|
-
PageLoading
|
|
5
|
-
} from "../../../chunk-SPED4RBS.mjs";
|
|
6
3
|
import {
|
|
7
4
|
SectionLoading
|
|
8
5
|
} from "../../../chunk-25XG46X6.mjs";
|
|
@@ -19,15 +16,24 @@ import {
|
|
|
19
16
|
Title
|
|
20
17
|
} from "../../../chunk-Q4TQYK6N.mjs";
|
|
21
18
|
import "../../../chunk-DBQTFBA3.mjs";
|
|
22
|
-
import
|
|
19
|
+
import {
|
|
20
|
+
PageLoading
|
|
21
|
+
} from "../../../chunk-SPED4RBS.mjs";
|
|
22
|
+
import "../../../chunk-AR4IYKG5.mjs";
|
|
23
|
+
import "../../../chunk-CA2EAK5M.mjs";
|
|
24
|
+
import "../../../chunk-U4FAPNVK.mjs";
|
|
25
|
+
import "../../../chunk-L6XIUULU.mjs";
|
|
26
|
+
import "../../../chunk-JTPBZJ4S.mjs";
|
|
23
27
|
import "../../../chunk-WZDFBWUL.mjs";
|
|
24
28
|
import "../../../chunk-ZXCQ73RT.mjs";
|
|
25
29
|
import "../../../chunk-3BST3PYD.mjs";
|
|
26
30
|
import "../../../chunk-TJBXXTYS.mjs";
|
|
27
31
|
import "../../../chunk-K3WTHFIG.mjs";
|
|
28
|
-
import "../../../chunk-
|
|
32
|
+
import "../../../chunk-EEGPGLDC.mjs";
|
|
29
33
|
import "../../../chunk-V77JZXH7.mjs";
|
|
30
34
|
import "../../../chunk-TIFF5WZA.mjs";
|
|
35
|
+
import "../../../chunk-Q2ILWL7L.mjs";
|
|
36
|
+
import "../../../chunk-7BTEKEON.mjs";
|
|
31
37
|
export {
|
|
32
38
|
Actions,
|
|
33
39
|
Body,
|
|
@@ -2,15 +2,21 @@
|
|
|
2
2
|
import {
|
|
3
3
|
PageLoading
|
|
4
4
|
} from "../../../chunk-SPED4RBS.mjs";
|
|
5
|
-
import "../../../chunk-
|
|
5
|
+
import "../../../chunk-AR4IYKG5.mjs";
|
|
6
|
+
import "../../../chunk-CA2EAK5M.mjs";
|
|
7
|
+
import "../../../chunk-U4FAPNVK.mjs";
|
|
8
|
+
import "../../../chunk-L6XIUULU.mjs";
|
|
9
|
+
import "../../../chunk-JTPBZJ4S.mjs";
|
|
6
10
|
import "../../../chunk-WZDFBWUL.mjs";
|
|
7
11
|
import "../../../chunk-ZXCQ73RT.mjs";
|
|
8
12
|
import "../../../chunk-3BST3PYD.mjs";
|
|
9
13
|
import "../../../chunk-TJBXXTYS.mjs";
|
|
10
14
|
import "../../../chunk-K3WTHFIG.mjs";
|
|
11
|
-
import "../../../chunk-
|
|
15
|
+
import "../../../chunk-EEGPGLDC.mjs";
|
|
12
16
|
import "../../../chunk-V77JZXH7.mjs";
|
|
13
17
|
import "../../../chunk-TIFF5WZA.mjs";
|
|
18
|
+
import "../../../chunk-Q2ILWL7L.mjs";
|
|
19
|
+
import "../../../chunk-7BTEKEON.mjs";
|
|
14
20
|
export {
|
|
15
21
|
PageLoading
|
|
16
22
|
};
|
|
@@ -2,15 +2,21 @@
|
|
|
2
2
|
import {
|
|
3
3
|
SectionLoading
|
|
4
4
|
} from "../../../chunk-25XG46X6.mjs";
|
|
5
|
-
import "../../../chunk-
|
|
5
|
+
import "../../../chunk-AR4IYKG5.mjs";
|
|
6
|
+
import "../../../chunk-CA2EAK5M.mjs";
|
|
7
|
+
import "../../../chunk-U4FAPNVK.mjs";
|
|
8
|
+
import "../../../chunk-L6XIUULU.mjs";
|
|
9
|
+
import "../../../chunk-JTPBZJ4S.mjs";
|
|
6
10
|
import "../../../chunk-WZDFBWUL.mjs";
|
|
7
11
|
import "../../../chunk-ZXCQ73RT.mjs";
|
|
8
12
|
import "../../../chunk-3BST3PYD.mjs";
|
|
9
13
|
import "../../../chunk-TJBXXTYS.mjs";
|
|
10
14
|
import "../../../chunk-K3WTHFIG.mjs";
|
|
11
|
-
import "../../../chunk-
|
|
15
|
+
import "../../../chunk-EEGPGLDC.mjs";
|
|
12
16
|
import "../../../chunk-V77JZXH7.mjs";
|
|
13
17
|
import "../../../chunk-TIFF5WZA.mjs";
|
|
18
|
+
import "../../../chunk-Q2ILWL7L.mjs";
|
|
19
|
+
import "../../../chunk-7BTEKEON.mjs";
|
|
14
20
|
export {
|
|
15
21
|
SectionLoading
|
|
16
22
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./scroll-shadow";
|
|
@@ -0,0 +1,49 @@
|
|
|
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/layout/scroll-shadow/index.ts
|
|
32
|
+
var scroll_shadow_exports = {};
|
|
33
|
+
__export(scroll_shadow_exports, {
|
|
34
|
+
ScrollShadow: () => ScrollShadow
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(scroll_shadow_exports);
|
|
37
|
+
|
|
38
|
+
// src/ui/layout/scroll-shadow/scroll-shadow.tsx
|
|
39
|
+
var import_react = __toESM(require("react"));
|
|
40
|
+
var import_scroll_shadow = require("@heroui/scroll-shadow");
|
|
41
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
42
|
+
var ScrollShadow = import_react.default.forwardRef((props, ref) => {
|
|
43
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_scroll_shadow.ScrollShadow, { ref, ...props });
|
|
44
|
+
});
|
|
45
|
+
ScrollShadow.displayName = "TeachInUI.ScrollShadow";
|
|
46
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
47
|
+
0 && (module.exports = {
|
|
48
|
+
ScrollShadow
|
|
49
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ScrollShadow as HeroUIScrollShadow } from "@heroui/scroll-shadow";
|
|
3
|
+
export type ScrollShadowProps = React.ComponentProps<typeof HeroUIScrollShadow>;
|
|
4
|
+
declare const ScrollShadow: React.ForwardRefExoticComponent<(Omit<import("@heroui/system").OmitCommonProps<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, keyof import("@heroui/scroll-shadow").ScrollShadowProps> & import("@heroui/scroll-shadow").ScrollShadowProps & {
|
|
5
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
6
|
+
}, "ref"> | Omit<import("@heroui/system").OmitCommonProps<Omit<Omit<any, "ref">, never>, keyof import("@heroui/scroll-shadow").ScrollShadowProps> & import("@heroui/scroll-shadow").ScrollShadowProps & {
|
|
7
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
8
|
+
}, "ref">) & React.RefAttributes<HTMLElement>>;
|
|
9
|
+
export { ScrollShadow };
|
|
@@ -0,0 +1,47 @@
|
|
|
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/layout/scroll-shadow/scroll-shadow.tsx
|
|
32
|
+
var scroll_shadow_exports = {};
|
|
33
|
+
__export(scroll_shadow_exports, {
|
|
34
|
+
ScrollShadow: () => ScrollShadow
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(scroll_shadow_exports);
|
|
37
|
+
var import_react = __toESM(require("react"));
|
|
38
|
+
var import_scroll_shadow = require("@heroui/scroll-shadow");
|
|
39
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
|
+
var ScrollShadow = import_react.default.forwardRef((props, ref) => {
|
|
41
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_scroll_shadow.ScrollShadow, { ref, ...props });
|
|
42
|
+
});
|
|
43
|
+
ScrollShadow.displayName = "TeachInUI.ScrollShadow";
|
|
44
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
45
|
+
0 && (module.exports = {
|
|
46
|
+
ScrollShadow
|
|
47
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Breadcrumbs as HeroUIBreadcrumbs, BreadcrumbItem as HeroUIBreadcrumbItem } from "@heroui/breadcrumbs";
|
|
2
|
+
export type BreadcrumbsProps = React.ComponentProps<typeof HeroUIBreadcrumbs>;
|
|
3
|
+
export type BreadcrumbItemProps = React.ComponentProps<typeof HeroUIBreadcrumbItem>;
|
|
4
|
+
declare const Breadcrumbs: import("@heroui/system").InternalForwardRefRenderFunction<"div", import("@heroui/breadcrumbs").BreadcrumbsProps, never> & {
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
declare const BreadcrumbItem: import("@heroui/system").InternalForwardRefRenderFunction<"li", import("@heroui/breadcrumbs").BreadcrumbItemProps, never> & {
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export { Breadcrumbs, BreadcrumbItem };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/ui/navigation/breadcrumbs/breadcrumbs.tsx
|
|
22
|
+
var breadcrumbs_exports = {};
|
|
23
|
+
__export(breadcrumbs_exports, {
|
|
24
|
+
BreadcrumbItem: () => BreadcrumbItem,
|
|
25
|
+
Breadcrumbs: () => Breadcrumbs
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(breadcrumbs_exports);
|
|
28
|
+
var import_breadcrumbs = require("@heroui/breadcrumbs");
|
|
29
|
+
var Breadcrumbs = Object.assign(import_breadcrumbs.Breadcrumbs, { displayName: "TeachInUI.Breadcrumbs" });
|
|
30
|
+
var BreadcrumbItem = Object.assign(import_breadcrumbs.BreadcrumbItem, {
|
|
31
|
+
displayName: "TeachInUI.BreadcrumbItem"
|
|
32
|
+
});
|
|
33
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
+
0 && (module.exports = {
|
|
35
|
+
BreadcrumbItem,
|
|
36
|
+
Breadcrumbs
|
|
37
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./breadcrumbs";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/ui/navigation/breadcrumbs/index.ts
|
|
22
|
+
var breadcrumbs_exports = {};
|
|
23
|
+
__export(breadcrumbs_exports, {
|
|
24
|
+
BreadcrumbItem: () => BreadcrumbItem,
|
|
25
|
+
Breadcrumbs: () => Breadcrumbs
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(breadcrumbs_exports);
|
|
28
|
+
|
|
29
|
+
// src/ui/navigation/breadcrumbs/breadcrumbs.tsx
|
|
30
|
+
var import_breadcrumbs = require("@heroui/breadcrumbs");
|
|
31
|
+
var Breadcrumbs = Object.assign(import_breadcrumbs.Breadcrumbs, { displayName: "TeachInUI.Breadcrumbs" });
|
|
32
|
+
var BreadcrumbItem = Object.assign(import_breadcrumbs.BreadcrumbItem, {
|
|
33
|
+
displayName: "TeachInUI.BreadcrumbItem"
|
|
34
|
+
});
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
BreadcrumbItem,
|
|
38
|
+
Breadcrumbs
|
|
39
|
+
});
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
"use strict";
|
|
3
|
+
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
8
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
9
|
var __export = (target, all) => {
|
|
8
10
|
for (var name in all)
|
|
@@ -16,12 +18,30 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
18
|
}
|
|
17
19
|
return to;
|
|
18
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
|
+
));
|
|
19
29
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
30
|
|
|
21
31
|
// src/ui/navigation/index.ts
|
|
22
32
|
var navigation_exports = {};
|
|
23
33
|
__export(navigation_exports, {
|
|
24
|
-
|
|
34
|
+
BreadcrumbItem: () => BreadcrumbItem,
|
|
35
|
+
Breadcrumbs: () => Breadcrumbs,
|
|
36
|
+
Link: () => Link,
|
|
37
|
+
Navbar: () => Navbar,
|
|
38
|
+
NavbarBrand: () => NavbarBrand,
|
|
39
|
+
NavbarContent: () => NavbarContent,
|
|
40
|
+
NavbarItem: () => NavbarItem,
|
|
41
|
+
NavbarMenu: () => NavbarMenu,
|
|
42
|
+
NavbarMenuItem: () => NavbarMenuItem,
|
|
43
|
+
NavbarMenuToggle: () => NavbarMenuToggle,
|
|
44
|
+
Tabs: () => Tabs
|
|
25
45
|
});
|
|
26
46
|
module.exports = __toCommonJS(navigation_exports);
|
|
27
47
|
|
|
@@ -32,7 +52,73 @@ function Link({ children, ...props }) {
|
|
|
32
52
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_link.Link, { ...props, children });
|
|
33
53
|
}
|
|
34
54
|
Link.displayName = "TeachInUI.Link";
|
|
55
|
+
|
|
56
|
+
// src/ui/navigation/tabs/tabs.tsx
|
|
57
|
+
var import_react = __toESM(require("react"));
|
|
58
|
+
var import_tabs = require("@heroui/tabs");
|
|
59
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
60
|
+
var Root = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
61
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_tabs.Tabs, { ref, ...props, children });
|
|
62
|
+
});
|
|
63
|
+
Root.displayName = "TeachInUI.Tabs.Root";
|
|
64
|
+
var Tab = Object.assign(import_tabs.Tab, {
|
|
65
|
+
displayName: "TeachInUI.Tabs.Tab"
|
|
66
|
+
});
|
|
67
|
+
var Tabs = {
|
|
68
|
+
Root,
|
|
69
|
+
Tab
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
// src/ui/navigation/navbar/navbar.tsx
|
|
73
|
+
var import_react2 = __toESM(require("react"));
|
|
74
|
+
var import_navbar = require("@heroui/navbar");
|
|
75
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
76
|
+
var Navbar = import_react2.default.forwardRef((props, ref) => {
|
|
77
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.Navbar, { ref, ...props });
|
|
78
|
+
});
|
|
79
|
+
Navbar.displayName = "TeachInUI.Navbar";
|
|
80
|
+
var NavbarBrand = import_react2.default.forwardRef((props, ref) => {
|
|
81
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.NavbarBrand, { ref, ...props });
|
|
82
|
+
});
|
|
83
|
+
NavbarBrand.displayName = "TeachInUI.NavbarBrand";
|
|
84
|
+
var NavbarContent = import_react2.default.forwardRef((props, ref) => {
|
|
85
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.NavbarContent, { ref, ...props });
|
|
86
|
+
});
|
|
87
|
+
NavbarContent.displayName = "TeachInUI.NavbarContent";
|
|
88
|
+
var NavbarItem = import_react2.default.forwardRef((props, ref) => {
|
|
89
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.NavbarItem, { ref, ...props });
|
|
90
|
+
});
|
|
91
|
+
NavbarItem.displayName = "TeachInUI.NavbarItem";
|
|
92
|
+
var NavbarMenu = import_react2.default.forwardRef((props, ref) => {
|
|
93
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.NavbarMenu, { ref, ...props });
|
|
94
|
+
});
|
|
95
|
+
NavbarMenu.displayName = "TeachInUI.NavbarMenu";
|
|
96
|
+
var NavbarMenuItem = import_react2.default.forwardRef((props, ref) => {
|
|
97
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.NavbarMenuItem, { ref, ...props });
|
|
98
|
+
});
|
|
99
|
+
NavbarMenuItem.displayName = "TeachInUI.NavbarMenuItem";
|
|
100
|
+
var NavbarMenuToggle = import_react2.default.forwardRef((props, ref) => {
|
|
101
|
+
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_navbar.NavbarMenuToggle, { ref, ...props });
|
|
102
|
+
});
|
|
103
|
+
NavbarMenuToggle.displayName = "TeachInUI.NavbarMenuToggle";
|
|
104
|
+
|
|
105
|
+
// src/ui/navigation/breadcrumbs/breadcrumbs.tsx
|
|
106
|
+
var import_breadcrumbs = require("@heroui/breadcrumbs");
|
|
107
|
+
var Breadcrumbs = Object.assign(import_breadcrumbs.Breadcrumbs, { displayName: "TeachInUI.Breadcrumbs" });
|
|
108
|
+
var BreadcrumbItem = Object.assign(import_breadcrumbs.BreadcrumbItem, {
|
|
109
|
+
displayName: "TeachInUI.BreadcrumbItem"
|
|
110
|
+
});
|
|
35
111
|
// Annotate the CommonJS export names for ESM import in node:
|
|
36
112
|
0 && (module.exports = {
|
|
37
|
-
|
|
113
|
+
BreadcrumbItem,
|
|
114
|
+
Breadcrumbs,
|
|
115
|
+
Link,
|
|
116
|
+
Navbar,
|
|
117
|
+
NavbarBrand,
|
|
118
|
+
NavbarContent,
|
|
119
|
+
NavbarItem,
|
|
120
|
+
NavbarMenu,
|
|
121
|
+
NavbarMenuItem,
|
|
122
|
+
NavbarMenuToggle,
|
|
123
|
+
Tabs
|
|
38
124
|
});
|
|
@@ -1,9 +1,38 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "../../chunk-
|
|
2
|
+
import "../../chunk-J3GK2CGQ.mjs";
|
|
3
|
+
import "../../chunk-MJTSZFLC.mjs";
|
|
4
|
+
import {
|
|
5
|
+
Tabs
|
|
6
|
+
} from "../../chunk-ZSYIKEXW.mjs";
|
|
7
|
+
import "../../chunk-FKHR6G3R.mjs";
|
|
8
|
+
import {
|
|
9
|
+
BreadcrumbItem,
|
|
10
|
+
Breadcrumbs
|
|
11
|
+
} from "../../chunk-TSD6GU35.mjs";
|
|
3
12
|
import "../../chunk-25ISU6R3.mjs";
|
|
4
13
|
import {
|
|
5
14
|
Link
|
|
6
15
|
} from "../../chunk-7T3JFARO.mjs";
|
|
16
|
+
import "../../chunk-AT6DX4DN.mjs";
|
|
17
|
+
import {
|
|
18
|
+
Navbar,
|
|
19
|
+
NavbarBrand,
|
|
20
|
+
NavbarContent,
|
|
21
|
+
NavbarItem,
|
|
22
|
+
NavbarMenu,
|
|
23
|
+
NavbarMenuItem,
|
|
24
|
+
NavbarMenuToggle
|
|
25
|
+
} from "../../chunk-SAYYLTIE.mjs";
|
|
7
26
|
export {
|
|
8
|
-
|
|
27
|
+
BreadcrumbItem,
|
|
28
|
+
Breadcrumbs,
|
|
29
|
+
Link,
|
|
30
|
+
Navbar,
|
|
31
|
+
NavbarBrand,
|
|
32
|
+
NavbarContent,
|
|
33
|
+
NavbarItem,
|
|
34
|
+
NavbarMenu,
|
|
35
|
+
NavbarMenuItem,
|
|
36
|
+
NavbarMenuToggle,
|
|
37
|
+
Tabs
|
|
9
38
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./navbar";
|
|
@@ -0,0 +1,85 @@
|
|
|
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/navigation/navbar/index.ts
|
|
32
|
+
var navbar_exports = {};
|
|
33
|
+
__export(navbar_exports, {
|
|
34
|
+
Navbar: () => Navbar,
|
|
35
|
+
NavbarBrand: () => NavbarBrand,
|
|
36
|
+
NavbarContent: () => NavbarContent,
|
|
37
|
+
NavbarItem: () => NavbarItem,
|
|
38
|
+
NavbarMenu: () => NavbarMenu,
|
|
39
|
+
NavbarMenuItem: () => NavbarMenuItem,
|
|
40
|
+
NavbarMenuToggle: () => NavbarMenuToggle
|
|
41
|
+
});
|
|
42
|
+
module.exports = __toCommonJS(navbar_exports);
|
|
43
|
+
|
|
44
|
+
// src/ui/navigation/navbar/navbar.tsx
|
|
45
|
+
var import_react = __toESM(require("react"));
|
|
46
|
+
var import_navbar = require("@heroui/navbar");
|
|
47
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
48
|
+
var Navbar = import_react.default.forwardRef((props, ref) => {
|
|
49
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.Navbar, { ref, ...props });
|
|
50
|
+
});
|
|
51
|
+
Navbar.displayName = "TeachInUI.Navbar";
|
|
52
|
+
var NavbarBrand = import_react.default.forwardRef((props, ref) => {
|
|
53
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.NavbarBrand, { ref, ...props });
|
|
54
|
+
});
|
|
55
|
+
NavbarBrand.displayName = "TeachInUI.NavbarBrand";
|
|
56
|
+
var NavbarContent = import_react.default.forwardRef((props, ref) => {
|
|
57
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.NavbarContent, { ref, ...props });
|
|
58
|
+
});
|
|
59
|
+
NavbarContent.displayName = "TeachInUI.NavbarContent";
|
|
60
|
+
var NavbarItem = import_react.default.forwardRef((props, ref) => {
|
|
61
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.NavbarItem, { ref, ...props });
|
|
62
|
+
});
|
|
63
|
+
NavbarItem.displayName = "TeachInUI.NavbarItem";
|
|
64
|
+
var NavbarMenu = import_react.default.forwardRef((props, ref) => {
|
|
65
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.NavbarMenu, { ref, ...props });
|
|
66
|
+
});
|
|
67
|
+
NavbarMenu.displayName = "TeachInUI.NavbarMenu";
|
|
68
|
+
var NavbarMenuItem = import_react.default.forwardRef((props, ref) => {
|
|
69
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.NavbarMenuItem, { ref, ...props });
|
|
70
|
+
});
|
|
71
|
+
NavbarMenuItem.displayName = "TeachInUI.NavbarMenuItem";
|
|
72
|
+
var NavbarMenuToggle = import_react.default.forwardRef((props, ref) => {
|
|
73
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_navbar.NavbarMenuToggle, { ref, ...props });
|
|
74
|
+
});
|
|
75
|
+
NavbarMenuToggle.displayName = "TeachInUI.NavbarMenuToggle";
|
|
76
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
77
|
+
0 && (module.exports = {
|
|
78
|
+
Navbar,
|
|
79
|
+
NavbarBrand,
|
|
80
|
+
NavbarContent,
|
|
81
|
+
NavbarItem,
|
|
82
|
+
NavbarMenu,
|
|
83
|
+
NavbarMenuItem,
|
|
84
|
+
NavbarMenuToggle
|
|
85
|
+
});
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "../../../chunk-AT6DX4DN.mjs";
|
|
3
|
+
import {
|
|
4
|
+
Navbar,
|
|
5
|
+
NavbarBrand,
|
|
6
|
+
NavbarContent,
|
|
7
|
+
NavbarItem,
|
|
8
|
+
NavbarMenu,
|
|
9
|
+
NavbarMenuItem,
|
|
10
|
+
NavbarMenuToggle
|
|
11
|
+
} from "../../../chunk-SAYYLTIE.mjs";
|
|
12
|
+
export {
|
|
13
|
+
Navbar,
|
|
14
|
+
NavbarBrand,
|
|
15
|
+
NavbarContent,
|
|
16
|
+
NavbarItem,
|
|
17
|
+
NavbarMenu,
|
|
18
|
+
NavbarMenuItem,
|
|
19
|
+
NavbarMenuToggle
|
|
20
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { NavbarProps as HeroUINavbarProps, NavbarBrandProps as HeroUINavbarBrandProps, NavbarContentProps as HeroUINavbarContentProps, NavbarItemProps as HeroUINavbarItemProps, NavbarMenuProps as HeroUINavbarMenuProps, NavbarMenuItemProps as HeroUINavbarMenuItemProps, NavbarMenuToggleProps as HeroUINavbarMenuToggleProps } from "@heroui/navbar";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { Navbar as HeroUINavbar, NavbarBrand as HeroUINavbarBrand, NavbarContent as HeroUINavbarContent, NavbarItem as HeroUINavbarItem, NavbarMenu as HeroUINavbarMenu, NavbarMenuItem as HeroUINavbarMenuItem, NavbarMenuToggle as HeroUINavbarMenuToggle } from "@heroui/navbar";
|
|
4
|
+
export type NavbarProps = HeroUINavbarProps;
|
|
5
|
+
export type NavbarBrandProps = HeroUINavbarBrandProps;
|
|
6
|
+
export type NavbarContentProps = HeroUINavbarContentProps;
|
|
7
|
+
export type NavbarItemProps = HeroUINavbarItemProps;
|
|
8
|
+
export type NavbarMenuProps = HeroUINavbarMenuProps;
|
|
9
|
+
export type NavbarMenuItemProps = HeroUINavbarMenuItemProps;
|
|
10
|
+
export type NavbarMenuToggleProps = HeroUINavbarMenuToggleProps;
|
|
11
|
+
type HeroUINavbarElement = React.ComponentRef<typeof HeroUINavbar>;
|
|
12
|
+
type HeroUINavbarBrandElement = React.ComponentRef<typeof HeroUINavbarBrand>;
|
|
13
|
+
type HeroUINavbarContentElement = React.ComponentRef<typeof HeroUINavbarContent>;
|
|
14
|
+
type HeroUINavbarItemElement = React.ComponentRef<typeof HeroUINavbarItem>;
|
|
15
|
+
type HeroUINavbarMenuElement = React.ComponentRef<typeof HeroUINavbarMenu>;
|
|
16
|
+
type HeroUINavbarMenuItemElement = React.ComponentRef<typeof HeroUINavbarMenuItem>;
|
|
17
|
+
type HeroUINavbarMenuToggleElement = React.ComponentRef<typeof HeroUINavbarMenuToggle>;
|
|
18
|
+
type ForwardRefComponent<Element, Props> = React.ForwardRefExoticComponent<Props & React.RefAttributes<Element>>;
|
|
19
|
+
declare const Navbar: ForwardRefComponent<HeroUINavbarElement, NavbarProps>;
|
|
20
|
+
declare const NavbarBrand: ForwardRefComponent<HeroUINavbarBrandElement, NavbarBrandProps>;
|
|
21
|
+
declare const NavbarContent: ForwardRefComponent<HeroUINavbarContentElement, NavbarContentProps>;
|
|
22
|
+
declare const NavbarItem: ForwardRefComponent<HeroUINavbarItemElement, NavbarItemProps>;
|
|
23
|
+
declare const NavbarMenu: ForwardRefComponent<HeroUINavbarMenuElement, NavbarMenuProps>;
|
|
24
|
+
declare const NavbarMenuItem: ForwardRefComponent<HeroUINavbarMenuItemElement, NavbarMenuItemProps>;
|
|
25
|
+
declare const NavbarMenuToggle: ForwardRefComponent<HeroUINavbarMenuToggleElement, NavbarMenuToggleProps>;
|
|
26
|
+
export { Navbar, NavbarBrand, NavbarContent, NavbarItem, NavbarMenu, NavbarMenuItem, NavbarMenuToggle, };
|