@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
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
"use client";
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
|
|
22
|
+
// src/ui/inputs/switch/favorite-switch.tsx
|
|
23
|
+
var favorite_switch_exports = {};
|
|
24
|
+
__export(favorite_switch_exports, {
|
|
25
|
+
FavoriteSwitch: () => FavoriteSwitch
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(favorite_switch_exports);
|
|
28
|
+
var import_switch = require("@heroui/switch");
|
|
29
|
+
var import_lucide_react = require("lucide-react");
|
|
30
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
31
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
32
|
+
var bookmarkVariants = (0, import_tailwind_variants.tv)({
|
|
33
|
+
base: "size-6 stroke-default-400 group-hover:fill-primary-100 group-hover:stroke-default-400",
|
|
34
|
+
variants: {
|
|
35
|
+
isSelected: {
|
|
36
|
+
true: "stroke-primary fill-primary-100"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
function FavoriteSwitch({ isSelected, onValueChange }) {
|
|
41
|
+
const { Component, slots, getBaseProps, getInputProps, getWrapperProps } = (0, import_switch.useSwitch)({
|
|
42
|
+
isSelected,
|
|
43
|
+
onValueChange
|
|
44
|
+
});
|
|
45
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(Component, { ...getBaseProps(), children: [
|
|
46
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "sr-only", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("input", { ...getInputProps() }) }),
|
|
47
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
48
|
+
"div",
|
|
49
|
+
{
|
|
50
|
+
...getWrapperProps(),
|
|
51
|
+
className: slots.wrapper({
|
|
52
|
+
class: "flex h-8 w-8 cursor-pointer items-center justify-center rounded-sm !bg-transparent"
|
|
53
|
+
}),
|
|
54
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Bookmark, { className: bookmarkVariants({ isSelected }) })
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
] });
|
|
58
|
+
}
|
|
59
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
60
|
+
0 && (module.exports = {
|
|
61
|
+
FavoriteSwitch
|
|
62
|
+
});
|
|
@@ -31,6 +31,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
31
31
|
// src/ui/inputs/switch/index.ts
|
|
32
32
|
var switch_exports = {};
|
|
33
33
|
__export(switch_exports, {
|
|
34
|
+
FavoriteSwitch: () => FavoriteSwitch,
|
|
34
35
|
Switch: () => Switch
|
|
35
36
|
});
|
|
36
37
|
module.exports = __toCommonJS(switch_exports);
|
|
@@ -43,7 +44,41 @@ var Switch = import_react.default.forwardRef(({ ...props }, ref) => {
|
|
|
43
44
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_switch.Switch, { ref, ...props });
|
|
44
45
|
});
|
|
45
46
|
Switch.displayName = "TeachInUI.Switch";
|
|
47
|
+
|
|
48
|
+
// src/ui/inputs/switch/favorite-switch.tsx
|
|
49
|
+
var import_switch2 = require("@heroui/switch");
|
|
50
|
+
var import_lucide_react = require("lucide-react");
|
|
51
|
+
var import_tailwind_variants = require("tailwind-variants");
|
|
52
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
53
|
+
var bookmarkVariants = (0, import_tailwind_variants.tv)({
|
|
54
|
+
base: "size-6 stroke-default-400 group-hover:fill-primary-100 group-hover:stroke-default-400",
|
|
55
|
+
variants: {
|
|
56
|
+
isSelected: {
|
|
57
|
+
true: "stroke-primary fill-primary-100"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
function FavoriteSwitch({ isSelected, onValueChange }) {
|
|
62
|
+
const { Component, slots, getBaseProps, getInputProps, getWrapperProps } = (0, import_switch2.useSwitch)({
|
|
63
|
+
isSelected,
|
|
64
|
+
onValueChange
|
|
65
|
+
});
|
|
66
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(Component, { ...getBaseProps(), children: [
|
|
67
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: "sr-only", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("input", { ...getInputProps() }) }),
|
|
68
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
69
|
+
"div",
|
|
70
|
+
{
|
|
71
|
+
...getWrapperProps(),
|
|
72
|
+
className: slots.wrapper({
|
|
73
|
+
class: "flex h-8 w-8 cursor-pointer items-center justify-center rounded-sm !bg-transparent"
|
|
74
|
+
}),
|
|
75
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_lucide_react.Bookmark, { className: bookmarkVariants({ isSelected }) })
|
|
76
|
+
}
|
|
77
|
+
)
|
|
78
|
+
] });
|
|
79
|
+
}
|
|
46
80
|
// Annotate the CommonJS export names for ESM import in node:
|
|
47
81
|
0 && (module.exports = {
|
|
82
|
+
FavoriteSwitch,
|
|
48
83
|
Switch
|
|
49
84
|
});
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "../../../chunk-
|
|
2
|
+
import "../../../chunk-LLP2PTPK.mjs";
|
|
3
|
+
import {
|
|
4
|
+
FavoriteSwitch
|
|
5
|
+
} from "../../../chunk-E5QSNLSR.mjs";
|
|
3
6
|
import {
|
|
4
7
|
Switch
|
|
5
8
|
} from "../../../chunk-N3EAW6UO.mjs";
|
|
6
9
|
export {
|
|
10
|
+
FavoriteSwitch,
|
|
7
11
|
Switch
|
|
8
12
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Accordion as HeroUIAccordion, AccordionItem as HeroUIAccordionItem } from "@heroui/accordion";
|
|
2
|
+
export type AccordionProps = React.ComponentProps<typeof HeroUIAccordion>;
|
|
3
|
+
export type AccordionItemProps = React.ComponentProps<typeof HeroUIAccordionItem>;
|
|
4
|
+
declare const Accordion: import("@heroui/system").InternalForwardRefRenderFunction<"div", import("@heroui/accordion").AccordionProps, never> & {
|
|
5
|
+
displayName: string;
|
|
6
|
+
};
|
|
7
|
+
declare const AccordionItem: ((props: import("@heroui/accordion").AccordionItemProps) => JSX.Element) & {
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
10
|
+
export { Accordion, AccordionItem };
|
|
@@ -0,0 +1,35 @@
|
|
|
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/layout/accordion/accordion.tsx
|
|
22
|
+
var accordion_exports = {};
|
|
23
|
+
__export(accordion_exports, {
|
|
24
|
+
Accordion: () => Accordion,
|
|
25
|
+
AccordionItem: () => AccordionItem
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(accordion_exports);
|
|
28
|
+
var import_accordion = require("@heroui/accordion");
|
|
29
|
+
var Accordion = Object.assign(import_accordion.Accordion, { displayName: "TeachInUI.Accordion" });
|
|
30
|
+
var AccordionItem = Object.assign(import_accordion.AccordionItem, { displayName: "TeachInUI.AccordionItem" });
|
|
31
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
32
|
+
0 && (module.exports = {
|
|
33
|
+
Accordion,
|
|
34
|
+
AccordionItem
|
|
35
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./accordion";
|
|
@@ -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/layout/accordion/index.ts
|
|
22
|
+
var accordion_exports = {};
|
|
23
|
+
__export(accordion_exports, {
|
|
24
|
+
Accordion: () => Accordion,
|
|
25
|
+
AccordionItem: () => AccordionItem
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(accordion_exports);
|
|
28
|
+
|
|
29
|
+
// src/ui/layout/accordion/accordion.tsx
|
|
30
|
+
var import_accordion = require("@heroui/accordion");
|
|
31
|
+
var Accordion = Object.assign(import_accordion.Accordion, { displayName: "TeachInUI.Accordion" });
|
|
32
|
+
var AccordionItem = Object.assign(import_accordion.AccordionItem, { displayName: "TeachInUI.AccordionItem" });
|
|
33
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
+
0 && (module.exports = {
|
|
35
|
+
Accordion,
|
|
36
|
+
AccordionItem
|
|
37
|
+
});
|
|
@@ -1,94 +1,73 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
Container
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-773RYGHT.mjs";
|
|
5
|
+
import "../../../chunk-BGNMWHME.mjs";
|
|
6
|
+
import "../../../chunk-OZSO3C5Q.mjs";
|
|
7
|
+
import "../../../chunk-NVLF7L4R.mjs";
|
|
8
|
+
import "../../../chunk-VWGY6KWP.mjs";
|
|
7
9
|
import "../../../chunk-NDQAHQFL.mjs";
|
|
8
10
|
import "../../../chunk-W6NKLZ73.mjs";
|
|
9
11
|
import "../../../chunk-CRPCWBXA.mjs";
|
|
10
|
-
import "../../../chunk-SPED4RBS.mjs";
|
|
11
12
|
import "../../../chunk-25XG46X6.mjs";
|
|
12
13
|
import "../../../chunk-Q4TQYK6N.mjs";
|
|
13
14
|
import "../../../chunk-DBQTFBA3.mjs";
|
|
15
|
+
import "../../../chunk-SPED4RBS.mjs";
|
|
16
|
+
import "../../../chunk-JUIVZCH7.mjs";
|
|
17
|
+
import "../../../chunk-M5F723W7.mjs";
|
|
18
|
+
import "../../../chunk-N7GOJBLM.mjs";
|
|
19
|
+
import "../../../chunk-QUMDPADZ.mjs";
|
|
14
20
|
import "../../../chunk-Q6XJI7Q2.mjs";
|
|
15
|
-
import "../../../chunk-
|
|
21
|
+
import "../../../chunk-LOMRTWX5.mjs";
|
|
22
|
+
import "../../../chunk-UNBE67YJ.mjs";
|
|
16
23
|
import "../../../chunk-PON4ZQKG.mjs";
|
|
17
24
|
import "../../../chunk-J3OZNLTZ.mjs";
|
|
25
|
+
import "../../../chunk-57JRJHSH.mjs";
|
|
26
|
+
import "../../../chunk-UFYLYN5Z.mjs";
|
|
18
27
|
import "../../../chunk-EVQFKHCM.mjs";
|
|
19
28
|
import "../../../chunk-XAW35UDV.mjs";
|
|
20
29
|
import "../../../chunk-NBFOX367.mjs";
|
|
21
|
-
import "../../../chunk-
|
|
30
|
+
import "../../../chunk-WFNNN6WU.mjs";
|
|
22
31
|
import "../../../chunk-JWMPI5AZ.mjs";
|
|
23
|
-
import "../../../chunk-
|
|
24
|
-
import "../../../chunk-
|
|
32
|
+
import "../../../chunk-544SDU73.mjs";
|
|
33
|
+
import "../../../chunk-AFVGHUW2.mjs";
|
|
25
34
|
import "../../../chunk-EJQH6CYW.mjs";
|
|
26
|
-
import "../../../chunk-
|
|
27
|
-
import "../../../chunk-SLB2JE3N.mjs";
|
|
28
|
-
import "../../../chunk-XYQVL4EX.mjs";
|
|
35
|
+
import "../../../chunk-5WDV3PDI.mjs";
|
|
29
36
|
import "../../../chunk-HOVAPYGJ.mjs";
|
|
30
37
|
import "../../../chunk-3LOCA2SP.mjs";
|
|
31
|
-
import "../../../chunk-2OPPNAW2.mjs";
|
|
32
|
-
import "../../../chunk-OW6U64MG.mjs";
|
|
33
38
|
import "../../../chunk-LUERGYYZ.mjs";
|
|
34
39
|
import "../../../chunk-YBQFG6QJ.mjs";
|
|
35
40
|
import "../../../chunk-XKX5LFH7.mjs";
|
|
41
|
+
import "../../../chunk-SLB2JE3N.mjs";
|
|
42
|
+
import "../../../chunk-XYQVL4EX.mjs";
|
|
43
|
+
import "../../../chunk-2OPPNAW2.mjs";
|
|
44
|
+
import "../../../chunk-OW6U64MG.mjs";
|
|
36
45
|
import "../../../chunk-VIPLRFPR.mjs";
|
|
37
|
-
import "../../../chunk-OEHJDT6R.mjs";
|
|
38
|
-
import "../../../chunk-I5AMV7H7.mjs";
|
|
39
|
-
import "../../../chunk-T57H3CGO.mjs";
|
|
40
|
-
import "../../../chunk-3N5UZODS.mjs";
|
|
41
|
-
import "../../../chunk-6WK4W5LL.mjs";
|
|
42
|
-
import "../../../chunk-LOMRTWX5.mjs";
|
|
43
|
-
import "../../../chunk-5HUR2CNH.mjs";
|
|
44
|
-
import "../../../chunk-25ISU6R3.mjs";
|
|
45
|
-
import "../../../chunk-7T3JFARO.mjs";
|
|
46
|
-
import "../../../chunk-5IHVMMCK.mjs";
|
|
47
|
-
import "../../../chunk-NZI5NBXF.mjs";
|
|
48
|
-
import "../../../chunk-CXAZBWS4.mjs";
|
|
49
|
-
import "../../../chunk-UHLC7GOU.mjs";
|
|
50
|
-
import "../../../chunk-3ZTXXJSO.mjs";
|
|
51
|
-
import "../../../chunk-26RHRVH2.mjs";
|
|
52
|
-
import "../../../chunk-LN7WH3OB.mjs";
|
|
53
|
-
import "../../../chunk-BUVPBB4J.mjs";
|
|
54
|
-
import "../../../chunk-6NZ4IHNU.mjs";
|
|
55
|
-
import "../../../chunk-4QSIBIUI.mjs";
|
|
56
|
-
import "../../../chunk-HZ5YAOU6.mjs";
|
|
57
|
-
import "../../../chunk-5UKTT75Y.mjs";
|
|
58
|
-
import "../../../chunk-TYMUQULA.mjs";
|
|
59
|
-
import "../../../chunk-54ZSBA6H.mjs";
|
|
60
|
-
import "../../../chunk-KH4D2C2T.mjs";
|
|
61
|
-
import "../../../chunk-O5T4GUJH.mjs";
|
|
62
|
-
import "../../../chunk-UTZUYZZL.mjs";
|
|
63
|
-
import "../../../chunk-IZEJE6V2.mjs";
|
|
64
|
-
import "../../../chunk-UURZJWWV.mjs";
|
|
65
|
-
import "../../../chunk-WZDFBWUL.mjs";
|
|
66
|
-
import "../../../chunk-ZXCQ73RT.mjs";
|
|
67
|
-
import "../../../chunk-3BST3PYD.mjs";
|
|
68
|
-
import "../../../chunk-TJBXXTYS.mjs";
|
|
69
|
-
import "../../../chunk-K3WTHFIG.mjs";
|
|
70
|
-
import "../../../chunk-ONQIPN3G.mjs";
|
|
71
|
-
import "../../../chunk-V77JZXH7.mjs";
|
|
72
|
-
import "../../../chunk-TIFF5WZA.mjs";
|
|
73
46
|
import "../../../chunk-VOG5HJID.mjs";
|
|
74
47
|
import "../../../chunk-FXXWSYJA.mjs";
|
|
75
|
-
import "../../../chunk-
|
|
48
|
+
import "../../../chunk-Q6JSJOU4.mjs";
|
|
49
|
+
import "../../../chunk-JDFRAN4S.mjs";
|
|
50
|
+
import "../../../chunk-W2A6C27Y.mjs";
|
|
51
|
+
import "../../../chunk-NLHQDWUK.mjs";
|
|
52
|
+
import "../../../chunk-EC3NSPHR.mjs";
|
|
76
53
|
import "../../../chunk-CETCW7DS.mjs";
|
|
77
54
|
import "../../../chunk-V4HKGJYK.mjs";
|
|
78
55
|
import "../../../chunk-S3ET5HKP.mjs";
|
|
79
|
-
import "../../../chunk-
|
|
56
|
+
import "../../../chunk-MCZBJUTN.mjs";
|
|
80
57
|
import "../../../chunk-7GHK5XYK.mjs";
|
|
81
58
|
import "../../../chunk-R7LDL5CU.mjs";
|
|
82
|
-
import "../../../chunk-
|
|
83
|
-
import "../../../chunk-
|
|
84
|
-
import "../../../chunk-EC3NSPHR.mjs";
|
|
85
|
-
import "../../../chunk-5YMUHF45.mjs";
|
|
86
|
-
import "../../../chunk-5HK7HRTR.mjs";
|
|
87
|
-
import "../../../chunk-HJUZTISD.mjs";
|
|
88
|
-
import "../../../chunk-5EWHMXCP.mjs";
|
|
89
|
-
import "../../../chunk-N3EAW6UO.mjs";
|
|
59
|
+
import "../../../chunk-A3AAC7PF.mjs";
|
|
60
|
+
import "../../../chunk-CZEO3U25.mjs";
|
|
90
61
|
import "../../../chunk-DUQFM3QS.mjs";
|
|
91
62
|
import "../../../chunk-KTUGFQWJ.mjs";
|
|
63
|
+
import "../../../chunk-RRA7GWP2.mjs";
|
|
64
|
+
import "../../../chunk-NOXFF2KJ.mjs";
|
|
65
|
+
import "../../../chunk-2SNKT7I4.mjs";
|
|
66
|
+
import "../../../chunk-LLP2PTPK.mjs";
|
|
67
|
+
import "../../../chunk-E5QSNLSR.mjs";
|
|
68
|
+
import "../../../chunk-N3EAW6UO.mjs";
|
|
69
|
+
import "../../../chunk-5HK7HRTR.mjs";
|
|
70
|
+
import "../../../chunk-HJUZTISD.mjs";
|
|
92
71
|
import "../../../chunk-V2HNFTTX.mjs";
|
|
93
72
|
import "../../../chunk-IAJ6G633.mjs";
|
|
94
73
|
import "../../../chunk-V3KKDSQP.mjs";
|
|
@@ -96,12 +75,69 @@ import "../../../chunk-LJIVY6GU.mjs";
|
|
|
96
75
|
import "../../../chunk-ZRHEFEFS.mjs";
|
|
97
76
|
import "../../../chunk-V2G5QHZZ.mjs";
|
|
98
77
|
import "../../../chunk-AQ3ISJKU.mjs";
|
|
99
|
-
import "../../../chunk-
|
|
78
|
+
import "../../../chunk-3YOW5DEZ.mjs";
|
|
100
79
|
import "../../../chunk-WYJW5NNA.mjs";
|
|
101
80
|
import "../../../chunk-C3MURCMZ.mjs";
|
|
102
|
-
import "../../../chunk-
|
|
103
|
-
import "../../../chunk-
|
|
104
|
-
import "../../../chunk-
|
|
81
|
+
import "../../../chunk-UUKS7JYX.mjs";
|
|
82
|
+
import "../../../chunk-C4PCTOGM.mjs";
|
|
83
|
+
import "../../../chunk-N3QOXWJI.mjs";
|
|
84
|
+
import "../../../chunk-J3GK2CGQ.mjs";
|
|
85
|
+
import "../../../chunk-MJTSZFLC.mjs";
|
|
86
|
+
import "../../../chunk-ZSYIKEXW.mjs";
|
|
87
|
+
import "../../../chunk-FKHR6G3R.mjs";
|
|
88
|
+
import "../../../chunk-TSD6GU35.mjs";
|
|
89
|
+
import "../../../chunk-25ISU6R3.mjs";
|
|
90
|
+
import "../../../chunk-7T3JFARO.mjs";
|
|
91
|
+
import "../../../chunk-AT6DX4DN.mjs";
|
|
92
|
+
import "../../../chunk-SAYYLTIE.mjs";
|
|
93
|
+
import "../../../chunk-UON5ACST.mjs";
|
|
94
|
+
import "../../../chunk-ICRO6HS3.mjs";
|
|
95
|
+
import "../../../chunk-YNCISHAU.mjs";
|
|
96
|
+
import "../../../chunk-I5AMV7H7.mjs";
|
|
97
|
+
import "../../../chunk-T57H3CGO.mjs";
|
|
98
|
+
import "../../../chunk-UT5RUCAT.mjs";
|
|
99
|
+
import "../../../chunk-PSK7I7V4.mjs";
|
|
100
|
+
import "../../../chunk-3N5UZODS.mjs";
|
|
101
|
+
import "../../../chunk-FQUYFYMS.mjs";
|
|
102
|
+
import "../../../chunk-AR4IYKG5.mjs";
|
|
103
|
+
import "../../../chunk-CA2EAK5M.mjs";
|
|
104
|
+
import "../../../chunk-U4FAPNVK.mjs";
|
|
105
|
+
import "../../../chunk-L6XIUULU.mjs";
|
|
106
|
+
import "../../../chunk-JTPBZJ4S.mjs";
|
|
107
|
+
import "../../../chunk-WZDFBWUL.mjs";
|
|
108
|
+
import "../../../chunk-ZXCQ73RT.mjs";
|
|
109
|
+
import "../../../chunk-3BST3PYD.mjs";
|
|
110
|
+
import "../../../chunk-TJBXXTYS.mjs";
|
|
111
|
+
import "../../../chunk-K3WTHFIG.mjs";
|
|
112
|
+
import "../../../chunk-EEGPGLDC.mjs";
|
|
113
|
+
import "../../../chunk-V77JZXH7.mjs";
|
|
114
|
+
import "../../../chunk-TIFF5WZA.mjs";
|
|
115
|
+
import "../../../chunk-5IHVMMCK.mjs";
|
|
116
|
+
import "../../../chunk-BUVPBB4J.mjs";
|
|
117
|
+
import "../../../chunk-6NZ4IHNU.mjs";
|
|
118
|
+
import "../../../chunk-4QSIBIUI.mjs";
|
|
119
|
+
import "../../../chunk-NZI5NBXF.mjs";
|
|
120
|
+
import "../../../chunk-CXAZBWS4.mjs";
|
|
121
|
+
import "../../../chunk-UHLC7GOU.mjs";
|
|
122
|
+
import "../../../chunk-3ZTXXJSO.mjs";
|
|
123
|
+
import "../../../chunk-Q2ILWL7L.mjs";
|
|
124
|
+
import "../../../chunk-7BTEKEON.mjs";
|
|
125
|
+
import "../../../chunk-HZ5YAOU6.mjs";
|
|
126
|
+
import "../../../chunk-5UKTT75Y.mjs";
|
|
127
|
+
import "../../../chunk-TYMUQULA.mjs";
|
|
128
|
+
import "../../../chunk-3C4DPNCD.mjs";
|
|
129
|
+
import "../../../chunk-54FA62HL.mjs";
|
|
130
|
+
import "../../../chunk-PKZZEODR.mjs";
|
|
131
|
+
import "../../../chunk-CTKWGSNJ.mjs";
|
|
132
|
+
import "../../../chunk-XHCXM5MU.mjs";
|
|
133
|
+
import "../../../chunk-UTZUYZZL.mjs";
|
|
134
|
+
import "../../../chunk-IZEJE6V2.mjs";
|
|
135
|
+
import "../../../chunk-DRZAPJZH.mjs";
|
|
136
|
+
import "../../../chunk-4N3FFVKQ.mjs";
|
|
137
|
+
import "../../../chunk-KH4D2C2T.mjs";
|
|
138
|
+
import "../../../chunk-O5T4GUJH.mjs";
|
|
139
|
+
import "../../../chunk-26RHRVH2.mjs";
|
|
140
|
+
import "../../../chunk-LN7WH3OB.mjs";
|
|
105
141
|
export {
|
|
106
142
|
Container
|
|
107
143
|
};
|