@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,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,6 +18,14 @@ 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/provider/index.ts
|
|
@@ -28,14 +38,33 @@ module.exports = __toCommonJS(provider_exports);
|
|
|
28
38
|
|
|
29
39
|
// src/ui/provider/ui-provider.tsx
|
|
30
40
|
var import_system = require("@heroui/system");
|
|
41
|
+
|
|
42
|
+
// src/ui/feedback/toast/toast.tsx
|
|
43
|
+
var import_react = __toESM(require("react"));
|
|
44
|
+
var import_toast = require("@heroui/toast");
|
|
31
45
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
46
|
+
var Toast = import_react.default.forwardRef((props, ref) => {
|
|
47
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_toast.Toast, { ref, ...props });
|
|
48
|
+
});
|
|
49
|
+
Toast.displayName = "TeachInUI.Toast";
|
|
50
|
+
var ToastProvider = (props) => {
|
|
51
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_toast.ToastProvider, { ...props });
|
|
52
|
+
};
|
|
53
|
+
ToastProvider.displayName = "TeachInUI.ToastProvider";
|
|
54
|
+
|
|
55
|
+
// src/ui/provider/ui-provider.tsx
|
|
56
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
32
57
|
function UIProvider({
|
|
33
58
|
children,
|
|
34
59
|
locale = "ru-RU",
|
|
35
60
|
labelPlacement = "outside",
|
|
36
|
-
navigate
|
|
61
|
+
navigate,
|
|
62
|
+
toastProviderProps
|
|
37
63
|
}) {
|
|
38
|
-
return /* @__PURE__ */ (0,
|
|
64
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_system.HeroUIProvider, { labelPlacement, locale, navigate, children: [
|
|
65
|
+
children,
|
|
66
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(ToastProvider, { ...toastProviderProps })
|
|
67
|
+
] });
|
|
39
68
|
}
|
|
40
69
|
// Annotate the CommonJS export names for ESM import in node:
|
|
41
70
|
0 && (module.exports = {
|
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
import "../../chunk-3N5UZODS.mjs";
|
|
3
3
|
import {
|
|
4
4
|
UIProvider
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-FQUYFYMS.mjs";
|
|
6
|
+
import "../../chunk-AR4IYKG5.mjs";
|
|
7
|
+
import "../../chunk-CA2EAK5M.mjs";
|
|
8
|
+
import "../../chunk-U4FAPNVK.mjs";
|
|
9
|
+
import "../../chunk-L6XIUULU.mjs";
|
|
10
|
+
import "../../chunk-JTPBZJ4S.mjs";
|
|
11
|
+
import "../../chunk-WZDFBWUL.mjs";
|
|
12
|
+
import "../../chunk-ZXCQ73RT.mjs";
|
|
13
|
+
import "../../chunk-3BST3PYD.mjs";
|
|
14
|
+
import "../../chunk-TJBXXTYS.mjs";
|
|
15
|
+
import "../../chunk-K3WTHFIG.mjs";
|
|
16
|
+
import "../../chunk-EEGPGLDC.mjs";
|
|
17
|
+
import "../../chunk-V77JZXH7.mjs";
|
|
18
|
+
import "../../chunk-TIFF5WZA.mjs";
|
|
19
|
+
import "../../chunk-Q2ILWL7L.mjs";
|
|
20
|
+
import "../../chunk-7BTEKEON.mjs";
|
|
6
21
|
export {
|
|
7
22
|
UIProvider as TeachInUIProvider,
|
|
8
23
|
UIProvider
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { HeroUIProviderProps } from "@heroui/system";
|
|
2
|
+
import type { ToastProviderProps } from "../feedback";
|
|
2
3
|
interface UIProviderProps extends HeroUIProviderProps {
|
|
4
|
+
toastProviderProps?: ToastProviderProps;
|
|
3
5
|
}
|
|
4
|
-
export declare function UIProvider({ children, locale, labelPlacement, navigate, }: UIProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function UIProvider({ children, locale, labelPlacement, navigate, toastProviderProps, }: UIProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
5
7
|
export {};
|
|
@@ -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,6 +18,14 @@ 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/provider/ui-provider.tsx
|
|
@@ -25,14 +35,33 @@ __export(ui_provider_exports, {
|
|
|
25
35
|
});
|
|
26
36
|
module.exports = __toCommonJS(ui_provider_exports);
|
|
27
37
|
var import_system = require("@heroui/system");
|
|
38
|
+
|
|
39
|
+
// src/ui/feedback/toast/toast.tsx
|
|
40
|
+
var import_react = __toESM(require("react"));
|
|
41
|
+
var import_toast = require("@heroui/toast");
|
|
28
42
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
43
|
+
var Toast = import_react.default.forwardRef((props, ref) => {
|
|
44
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_toast.Toast, { ref, ...props });
|
|
45
|
+
});
|
|
46
|
+
Toast.displayName = "TeachInUI.Toast";
|
|
47
|
+
var ToastProvider = (props) => {
|
|
48
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_toast.ToastProvider, { ...props });
|
|
49
|
+
};
|
|
50
|
+
ToastProvider.displayName = "TeachInUI.ToastProvider";
|
|
51
|
+
|
|
52
|
+
// src/ui/provider/ui-provider.tsx
|
|
53
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
29
54
|
function UIProvider({
|
|
30
55
|
children,
|
|
31
56
|
locale = "ru-RU",
|
|
32
57
|
labelPlacement = "outside",
|
|
33
|
-
navigate
|
|
58
|
+
navigate,
|
|
59
|
+
toastProviderProps
|
|
34
60
|
}) {
|
|
35
|
-
return /* @__PURE__ */ (0,
|
|
61
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(import_system.HeroUIProvider, { labelPlacement, locale, navigate, children: [
|
|
62
|
+
children,
|
|
63
|
+
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(ToastProvider, { ...toastProviderProps })
|
|
64
|
+
] });
|
|
36
65
|
}
|
|
37
66
|
// Annotate the CommonJS export names for ESM import in node:
|
|
38
67
|
0 && (module.exports = {
|
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
UIProvider
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-FQUYFYMS.mjs";
|
|
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";
|
|
10
|
+
import "../../chunk-WZDFBWUL.mjs";
|
|
11
|
+
import "../../chunk-ZXCQ73RT.mjs";
|
|
12
|
+
import "../../chunk-3BST3PYD.mjs";
|
|
13
|
+
import "../../chunk-TJBXXTYS.mjs";
|
|
14
|
+
import "../../chunk-K3WTHFIG.mjs";
|
|
15
|
+
import "../../chunk-EEGPGLDC.mjs";
|
|
16
|
+
import "../../chunk-V77JZXH7.mjs";
|
|
17
|
+
import "../../chunk-TIFF5WZA.mjs";
|
|
18
|
+
import "../../chunk-Q2ILWL7L.mjs";
|
|
19
|
+
import "../../chunk-7BTEKEON.mjs";
|
|
5
20
|
export {
|
|
6
21
|
UIProvider
|
|
7
22
|
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Card as HeroUICard, CardHeader as HeroUICardHeader, CardBody as HeroUICardBody, CardFooter as HeroUICardFooter } from "@heroui/card";
|
|
3
|
+
export type CardProps = React.ComponentProps<typeof HeroUICard>;
|
|
4
|
+
export type CardHeaderProps = React.ComponentProps<typeof HeroUICardHeader>;
|
|
5
|
+
export type CardBodyProps = React.ComponentProps<typeof HeroUICardBody>;
|
|
6
|
+
export type CardFooterProps = React.ComponentProps<typeof HeroUICardFooter>;
|
|
7
|
+
export declare const Card: {
|
|
8
|
+
Root: React.ForwardRefExoticComponent<(Omit<import("@heroui/system").OmitCommonProps<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, keyof import("@heroui/card").CardProps> & import("@heroui/card").CardProps & {
|
|
9
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
10
|
+
}, "ref"> | Omit<import("@heroui/system").OmitCommonProps<Omit<Omit<any, "ref">, never>, keyof import("@heroui/card").CardProps> & import("@heroui/card").CardProps & {
|
|
11
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
12
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
Header: React.ForwardRefExoticComponent<((import("@heroui/system").OmitCommonProps<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "as" | "style" | "title" | "key" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture"> & Omit<import("@heroui/system").PropsOf<"div">, "size" | "color" | "slot" | "ref" | "defaultChecked" | "defaultValue"> & {
|
|
14
|
+
as?: import("@heroui/system").As;
|
|
15
|
+
} & {
|
|
16
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
17
|
+
}) | Omit<import("@heroui/system").OmitCommonProps<Omit<Omit<any, "ref">, never>, "as" | "style" | "title" | "key" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture"> & Omit<import("@heroui/system").PropsOf<"div">, "size" | "color" | "slot" | "ref" | "defaultChecked" | "defaultValue"> & {
|
|
18
|
+
as?: import("@heroui/system").As;
|
|
19
|
+
} & {
|
|
20
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
21
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
Body: React.ForwardRefExoticComponent<((import("@heroui/system").OmitCommonProps<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, "as" | "style" | "title" | "key" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture"> & Omit<import("@heroui/system").PropsOf<"div">, "size" | "color" | "slot" | "ref" | "defaultChecked" | "defaultValue"> & {
|
|
23
|
+
as?: import("@heroui/system").As;
|
|
24
|
+
} & {
|
|
25
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
26
|
+
}) | Omit<import("@heroui/system").OmitCommonProps<Omit<Omit<any, "ref">, never>, "as" | "style" | "title" | "key" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "popover" | "popoverTargetAction" | "popoverTarget" | "inert" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onScrollEnd" | "onScrollEndCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onToggle" | "onBeforeToggle" | "onTransitionCancel" | "onTransitionCancelCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "onTransitionRun" | "onTransitionRunCapture" | "onTransitionStart" | "onTransitionStartCapture"> & Omit<import("@heroui/system").PropsOf<"div">, "size" | "color" | "slot" | "ref" | "defaultChecked" | "defaultValue"> & {
|
|
27
|
+
as?: import("@heroui/system").As;
|
|
28
|
+
} & {
|
|
29
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
30
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
31
|
+
Footer: React.ForwardRefExoticComponent<((import("@heroui/system").OmitCommonProps<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">, keyof import("@heroui/card").CardFooterProps> & import("@heroui/card").CardFooterProps & {
|
|
32
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
33
|
+
}) | Omit<import("@heroui/system").OmitCommonProps<Omit<Omit<any, "ref">, never>, keyof import("@heroui/card").CardFooterProps> & import("@heroui/card").CardFooterProps & {
|
|
34
|
+
as?: import("@heroui/system").As<any> | undefined;
|
|
35
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
36
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
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/surface/card/card.tsx
|
|
32
|
+
var card_exports = {};
|
|
33
|
+
__export(card_exports, {
|
|
34
|
+
Card: () => Card
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(card_exports);
|
|
37
|
+
var import_react = __toESM(require("react"));
|
|
38
|
+
var import_card = require("@heroui/card");
|
|
39
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
|
+
var Root = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
41
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.Card, { ref, ...props, children });
|
|
42
|
+
});
|
|
43
|
+
Root.displayName = "TeachInUI.Card.Root";
|
|
44
|
+
var Header = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
45
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.CardHeader, { ref, ...props, children });
|
|
46
|
+
});
|
|
47
|
+
Header.displayName = "TeachInUI.Card.Header";
|
|
48
|
+
var Body = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
49
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.CardBody, { ref, ...props, children });
|
|
50
|
+
});
|
|
51
|
+
Body.displayName = "TeachInUI.Card.Body";
|
|
52
|
+
var Footer = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
53
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.CardFooter, { ref, ...props, children });
|
|
54
|
+
});
|
|
55
|
+
Footer.displayName = "TeachInUI.Card.Footer";
|
|
56
|
+
var Card = {
|
|
57
|
+
Root,
|
|
58
|
+
Header,
|
|
59
|
+
Body,
|
|
60
|
+
Footer
|
|
61
|
+
};
|
|
62
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
63
|
+
0 && (module.exports = {
|
|
64
|
+
Card
|
|
65
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./card";
|
|
@@ -0,0 +1,67 @@
|
|
|
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/surface/card/index.ts
|
|
32
|
+
var card_exports = {};
|
|
33
|
+
__export(card_exports, {
|
|
34
|
+
Card: () => Card
|
|
35
|
+
});
|
|
36
|
+
module.exports = __toCommonJS(card_exports);
|
|
37
|
+
|
|
38
|
+
// src/ui/surface/card/card.tsx
|
|
39
|
+
var import_react = __toESM(require("react"));
|
|
40
|
+
var import_card = require("@heroui/card");
|
|
41
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
42
|
+
var Root = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
43
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.Card, { ref, ...props, children });
|
|
44
|
+
});
|
|
45
|
+
Root.displayName = "TeachInUI.Card.Root";
|
|
46
|
+
var Header = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
47
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.CardHeader, { ref, ...props, children });
|
|
48
|
+
});
|
|
49
|
+
Header.displayName = "TeachInUI.Card.Header";
|
|
50
|
+
var Body = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
51
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.CardBody, { ref, ...props, children });
|
|
52
|
+
});
|
|
53
|
+
Body.displayName = "TeachInUI.Card.Body";
|
|
54
|
+
var Footer = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
55
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.CardFooter, { ref, ...props, children });
|
|
56
|
+
});
|
|
57
|
+
Footer.displayName = "TeachInUI.Card.Footer";
|
|
58
|
+
var Card = {
|
|
59
|
+
Root,
|
|
60
|
+
Header,
|
|
61
|
+
Body,
|
|
62
|
+
Footer
|
|
63
|
+
};
|
|
64
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
65
|
+
0 && (module.exports = {
|
|
66
|
+
Card
|
|
67
|
+
});
|
package/dist/ui/surface/index.js
CHANGED
|
@@ -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,21 @@ 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/surface/index.ts
|
|
22
32
|
var surface_exports = {};
|
|
23
33
|
__export(surface_exports, {
|
|
24
34
|
Bento: () => Bento,
|
|
35
|
+
Card: () => Card,
|
|
25
36
|
bento: () => bento
|
|
26
37
|
});
|
|
27
38
|
module.exports = __toCommonJS(surface_exports);
|
|
@@ -69,8 +80,36 @@ var Bento = ({ className, ...props }) => {
|
|
|
69
80
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: bento({ ...props, className }), ...props });
|
|
70
81
|
};
|
|
71
82
|
Bento.displayName = "TeachInUI.Bento";
|
|
83
|
+
|
|
84
|
+
// src/ui/surface/card/card.tsx
|
|
85
|
+
var import_react = __toESM(require("react"));
|
|
86
|
+
var import_card = require("@heroui/card");
|
|
87
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
88
|
+
var Root = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
89
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_card.Card, { ref, ...props, children });
|
|
90
|
+
});
|
|
91
|
+
Root.displayName = "TeachInUI.Card.Root";
|
|
92
|
+
var Header = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
93
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_card.CardHeader, { ref, ...props, children });
|
|
94
|
+
});
|
|
95
|
+
Header.displayName = "TeachInUI.Card.Header";
|
|
96
|
+
var Body = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
97
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_card.CardBody, { ref, ...props, children });
|
|
98
|
+
});
|
|
99
|
+
Body.displayName = "TeachInUI.Card.Body";
|
|
100
|
+
var Footer = import_react.default.forwardRef(({ children, ...props }, ref) => {
|
|
101
|
+
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_card.CardFooter, { ref, ...props, children });
|
|
102
|
+
});
|
|
103
|
+
Footer.displayName = "TeachInUI.Card.Footer";
|
|
104
|
+
var Card = {
|
|
105
|
+
Root,
|
|
106
|
+
Header,
|
|
107
|
+
Body,
|
|
108
|
+
Footer
|
|
109
|
+
};
|
|
72
110
|
// Annotate the CommonJS export names for ESM import in node:
|
|
73
111
|
0 && (module.exports = {
|
|
74
112
|
Bento,
|
|
113
|
+
Card,
|
|
75
114
|
bento
|
|
76
115
|
});
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import "../../chunk-
|
|
2
|
+
import "../../chunk-UNBE67YJ.mjs";
|
|
3
3
|
import "../../chunk-PON4ZQKG.mjs";
|
|
4
4
|
import {
|
|
5
5
|
Bento,
|
|
6
6
|
bento
|
|
7
7
|
} from "../../chunk-J3OZNLTZ.mjs";
|
|
8
|
+
import "../../chunk-57JRJHSH.mjs";
|
|
9
|
+
import {
|
|
10
|
+
Card
|
|
11
|
+
} from "../../chunk-UFYLYN5Z.mjs";
|
|
8
12
|
export {
|
|
9
13
|
Bento,
|
|
14
|
+
Card,
|
|
10
15
|
bento
|
|
11
16
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
commonColors
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-SLB2JE3N.mjs";
|
|
6
|
-
import "../../../chunk-XYQVL4EX.mjs";
|
|
4
|
+
} from "../../../chunk-5WDV3PDI.mjs";
|
|
7
5
|
import "../../../chunk-HOVAPYGJ.mjs";
|
|
8
6
|
import "../../../chunk-3LOCA2SP.mjs";
|
|
9
|
-
import "../../../chunk-2OPPNAW2.mjs";
|
|
10
|
-
import "../../../chunk-OW6U64MG.mjs";
|
|
11
7
|
import "../../../chunk-LUERGYYZ.mjs";
|
|
12
8
|
import "../../../chunk-YBQFG6QJ.mjs";
|
|
13
9
|
import "../../../chunk-XKX5LFH7.mjs";
|
|
10
|
+
import "../../../chunk-SLB2JE3N.mjs";
|
|
11
|
+
import "../../../chunk-XYQVL4EX.mjs";
|
|
12
|
+
import "../../../chunk-2OPPNAW2.mjs";
|
|
13
|
+
import "../../../chunk-OW6U64MG.mjs";
|
|
14
14
|
export {
|
|
15
15
|
commonColors
|
|
16
16
|
};
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
colors
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-544SDU73.mjs";
|
|
5
5
|
import {
|
|
6
6
|
semanticColors
|
|
7
|
-
} from "../../../chunk-
|
|
7
|
+
} from "../../../chunk-AFVGHUW2.mjs";
|
|
8
8
|
import "../../../chunk-EJQH6CYW.mjs";
|
|
9
9
|
import {
|
|
10
10
|
commonColors
|
|
11
|
-
} from "../../../chunk-
|
|
12
|
-
import "../../../chunk-SLB2JE3N.mjs";
|
|
13
|
-
import "../../../chunk-XYQVL4EX.mjs";
|
|
11
|
+
} from "../../../chunk-5WDV3PDI.mjs";
|
|
14
12
|
import "../../../chunk-HOVAPYGJ.mjs";
|
|
15
13
|
import "../../../chunk-3LOCA2SP.mjs";
|
|
16
|
-
import "../../../chunk-2OPPNAW2.mjs";
|
|
17
|
-
import "../../../chunk-OW6U64MG.mjs";
|
|
18
14
|
import "../../../chunk-LUERGYYZ.mjs";
|
|
19
15
|
import "../../../chunk-YBQFG6QJ.mjs";
|
|
20
16
|
import "../../../chunk-XKX5LFH7.mjs";
|
|
17
|
+
import "../../../chunk-SLB2JE3N.mjs";
|
|
18
|
+
import "../../../chunk-XYQVL4EX.mjs";
|
|
19
|
+
import "../../../chunk-2OPPNAW2.mjs";
|
|
20
|
+
import "../../../chunk-OW6U64MG.mjs";
|
|
21
21
|
import "../../../chunk-VIPLRFPR.mjs";
|
|
22
22
|
export {
|
|
23
23
|
colors,
|
|
@@ -3,17 +3,17 @@ import {
|
|
|
3
3
|
semanticColors,
|
|
4
4
|
themeColorsDark,
|
|
5
5
|
themeColorsLight
|
|
6
|
-
} from "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-SLB2JE3N.mjs";
|
|
9
|
-
import "../../../chunk-XYQVL4EX.mjs";
|
|
6
|
+
} from "../../../chunk-AFVGHUW2.mjs";
|
|
7
|
+
import "../../../chunk-5WDV3PDI.mjs";
|
|
10
8
|
import "../../../chunk-HOVAPYGJ.mjs";
|
|
11
9
|
import "../../../chunk-3LOCA2SP.mjs";
|
|
12
|
-
import "../../../chunk-2OPPNAW2.mjs";
|
|
13
|
-
import "../../../chunk-OW6U64MG.mjs";
|
|
14
10
|
import "../../../chunk-LUERGYYZ.mjs";
|
|
15
11
|
import "../../../chunk-YBQFG6QJ.mjs";
|
|
16
12
|
import "../../../chunk-XKX5LFH7.mjs";
|
|
13
|
+
import "../../../chunk-SLB2JE3N.mjs";
|
|
14
|
+
import "../../../chunk-XYQVL4EX.mjs";
|
|
15
|
+
import "../../../chunk-2OPPNAW2.mjs";
|
|
16
|
+
import "../../../chunk-OW6U64MG.mjs";
|
|
17
17
|
import "../../../chunk-VIPLRFPR.mjs";
|
|
18
18
|
export {
|
|
19
19
|
semanticColors,
|
package/dist/ui/theme/colors.js
CHANGED