@fuf-stack/pixels 0.0.8 → 0.1.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.
Files changed (71) hide show
  1. package/dist/Label/Label.cjs +58 -0
  2. package/dist/Label/Label.cjs.map +1 -0
  3. package/dist/Label/Label.d.cts +24 -0
  4. package/dist/Label/Label.d.ts +24 -0
  5. package/dist/Label/Label.js +7 -0
  6. package/dist/Label/Label.js.map +1 -0
  7. package/dist/Label/index.cjs +63 -0
  8. package/dist/Label/index.cjs.map +1 -0
  9. package/dist/Label/index.d.cts +8 -0
  10. package/dist/Label/index.d.ts +8 -0
  11. package/dist/Label/index.js +10 -0
  12. package/dist/Label/index.js.map +1 -0
  13. package/dist/Menu/Menu.cjs +97 -0
  14. package/dist/Menu/Menu.cjs.map +1 -0
  15. package/dist/Menu/Menu.d.cts +55 -0
  16. package/dist/Menu/Menu.d.ts +55 -0
  17. package/dist/Menu/Menu.js +7 -0
  18. package/dist/Menu/Menu.js.map +1 -0
  19. package/dist/Menu/index.cjs +102 -0
  20. package/dist/Menu/index.cjs.map +1 -0
  21. package/dist/Menu/index.d.cts +7 -0
  22. package/dist/Menu/index.d.ts +7 -0
  23. package/dist/Menu/index.js +10 -0
  24. package/dist/Menu/index.js.map +1 -0
  25. package/dist/Modal/Modal.cjs +86 -0
  26. package/dist/Modal/Modal.cjs.map +1 -0
  27. package/dist/Modal/Modal.d.cts +29 -0
  28. package/dist/Modal/Modal.d.ts +29 -0
  29. package/dist/Modal/Modal.js +9 -0
  30. package/dist/Modal/Modal.js.map +1 -0
  31. package/dist/Modal/index.cjs +85 -0
  32. package/dist/Modal/index.cjs.map +1 -0
  33. package/dist/Modal/index.d.cts +7 -0
  34. package/dist/Modal/index.d.ts +7 -0
  35. package/dist/Modal/index.js +10 -0
  36. package/dist/Modal/index.js.map +1 -0
  37. package/dist/Popover/Popover.cjs +72 -0
  38. package/dist/Popover/Popover.cjs.map +1 -0
  39. package/dist/Popover/Popover.d.cts +31 -0
  40. package/dist/Popover/Popover.d.ts +31 -0
  41. package/dist/Popover/Popover.js +7 -0
  42. package/dist/Popover/Popover.js.map +1 -0
  43. package/dist/Popover/index.cjs +77 -0
  44. package/dist/Popover/index.cjs.map +1 -0
  45. package/dist/Popover/index.d.cts +8 -0
  46. package/dist/Popover/index.d.ts +8 -0
  47. package/dist/Popover/index.js +10 -0
  48. package/dist/Popover/index.js.map +1 -0
  49. package/dist/Tooltip/Tooltip.cjs +68 -0
  50. package/dist/Tooltip/Tooltip.cjs.map +1 -0
  51. package/dist/Tooltip/Tooltip.d.cts +27 -0
  52. package/dist/Tooltip/Tooltip.d.ts +27 -0
  53. package/dist/Tooltip/Tooltip.js +9 -0
  54. package/dist/Tooltip/Tooltip.js.map +1 -0
  55. package/dist/Tooltip/index.cjs +67 -0
  56. package/dist/Tooltip/index.cjs.map +1 -0
  57. package/dist/Tooltip/index.d.cts +7 -0
  58. package/dist/Tooltip/index.d.ts +7 -0
  59. package/dist/Tooltip/index.js +10 -0
  60. package/dist/Tooltip/index.js.map +1 -0
  61. package/dist/chunk-6ZUWYBMG.js +73 -0
  62. package/dist/chunk-6ZUWYBMG.js.map +1 -0
  63. package/dist/chunk-CEUL4NWH.js +28 -0
  64. package/dist/chunk-CEUL4NWH.js.map +1 -0
  65. package/dist/chunk-EYUTNORZ.js +58 -0
  66. package/dist/chunk-EYUTNORZ.js.map +1 -0
  67. package/dist/chunk-ONXXZTZY.js +34 -0
  68. package/dist/chunk-ONXXZTZY.js.map +1 -0
  69. package/dist/chunk-SGAWYTO7.js +42 -0
  70. package/dist/chunk-SGAWYTO7.js.map +1 -0
  71. package/package.json +1 -1
@@ -0,0 +1,86 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/Modal/Modal.tsx
31
+ var Modal_exports = {};
32
+ __export(Modal_exports, {
33
+ ModalSizeOptions: () => ModalSizeOptions,
34
+ default: () => Modal_default
35
+ });
36
+ module.exports = __toCommonJS(Modal_exports);
37
+ var import_modal = require("@nextui-org/modal");
38
+ var import_classnames = __toESM(require("classnames"), 1);
39
+ var import_debug = __toESM(require("debug"), 1);
40
+ var import_jsx_runtime = require("react/jsx-runtime");
41
+ var debug = (0, import_debug.default)("component:Modal");
42
+ var ModalSizeOptions = ["sm", "md", "lg"];
43
+ var Modal = ({
44
+ children = null,
45
+ className = void 0,
46
+ footer = void 0,
47
+ isOpen,
48
+ onClose,
49
+ size = "md",
50
+ testId = void 0,
51
+ title = void 0
52
+ }) => {
53
+ debug("Modal", { size });
54
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: (0, import_classnames.default)(className), "data-testid": testId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
55
+ import_modal.Modal,
56
+ {
57
+ backdrop: "opaque",
58
+ classNames: {
59
+ base: (0, import_classnames.default)(
60
+ {
61
+ "lg:w-11/12": size === "lg",
62
+ "w-2/12": size === "sm",
63
+ "w-6/12": size === "md"
64
+ },
65
+ // overwrite !rounded-none from nextui
66
+ "!rounded-lg"
67
+ )
68
+ },
69
+ isOpen,
70
+ onClose,
71
+ scrollBehavior: "inside",
72
+ size: "full",
73
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalContent, { "data-testid": testId ? `${testId}_modal` : "modal", children: () => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
74
+ title && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalHeader, { children: title }),
75
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalBody, { className: "bg-ex-background", children }),
76
+ footer && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalFooter, { children: footer })
77
+ ] }) })
78
+ }
79
+ ) });
80
+ };
81
+ var Modal_default = Modal;
82
+ // Annotate the CommonJS export names for ESM import in node:
83
+ 0 && (module.exports = {
84
+ ModalSizeOptions
85
+ });
86
+ //# sourceMappingURL=Modal.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/Modal/Modal.tsx"],"sourcesContent":["import type { ReactNode } from 'react';\n\nimport {\n Modal as NextModal,\n ModalBody as NextModalBody,\n ModalContent as NextModalContent,\n ModalFooter as NextModalFooter,\n ModalHeader as NextModalHeader,\n} from '@nextui-org/modal';\nimport cn from 'classnames';\nimport createDebug from 'debug';\n\nconst debug = createDebug('component:Modal');\n\nexport const ModalSizeOptions = ['sm', 'md', 'lg'] as const;\ntype ModalSize = (typeof ModalSizeOptions)[number];\n\nexport interface ModalProps {\n /** child components */\n children?: ReactNode;\n /** CSS class name */\n className?: string | string[];\n /** HTML data-testid attribute used in e2e tests */\n footer?: ReactNode;\n /** open state (controlled) */\n isOpen: boolean;\n /** close event handler */\n onClose: () => void;\n /** modal size */\n size?: ModalSize;\n /** e2e test id */\n testId?: string;\n /** modal header */\n title?: ReactNode;\n}\n\n/**\n * Modal component based on [NextUI Modal](https://nextui.org/docs/components/modal)\n */\nconst Modal = ({\n children = null,\n className = undefined,\n footer = undefined,\n isOpen,\n onClose,\n size = 'md',\n testId = undefined,\n title = undefined,\n}: ModalProps) => {\n debug('Modal', { size });\n return (\n <div className={cn(className)} data-testid={testId}>\n <NextModal\n backdrop=\"opaque\"\n classNames={{\n base: cn(\n {\n 'lg:w-11/12': size === 'lg',\n 'w-2/12': size === 'sm',\n 'w-6/12': size === 'md',\n },\n // overwrite !rounded-none from nextui\n '!rounded-lg',\n ),\n }}\n isOpen={isOpen}\n onClose={onClose}\n scrollBehavior=\"inside\"\n size=\"full\"\n >\n <NextModalContent data-testid={testId ? `${testId}_modal` : 'modal'}>\n {() => (\n <>\n {title && <NextModalHeader>{title}</NextModalHeader>}\n <NextModalBody className=\"bg-ex-background\">\n {children}\n </NextModalBody>\n {footer && <NextModalFooter>{footer}</NextModalFooter>}\n </>\n )}\n </NextModalContent>\n </NextModal>\n </div>\n );\n};\n\nexport default Modal;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,mBAMO;AACP,wBAAe;AACf,mBAAwB;AA8DZ;AA5DZ,IAAM,YAAQ,aAAAA,SAAY,iBAAiB;AAEpC,IAAM,mBAAmB,CAAC,MAAM,MAAM,IAAI;AAyBjD,IAAM,QAAQ,CAAC;AAAA,EACb,WAAW;AAAA,EACX,YAAY;AAAA,EACZ,SAAS;AAAA,EACT;AAAA,EACA;AAAA,EACA,OAAO;AAAA,EACP,SAAS;AAAA,EACT,QAAQ;AACV,MAAkB;AAChB,QAAM,SAAS,EAAE,KAAK,CAAC;AACvB,SACE,4CAAC,SAAI,eAAW,kBAAAC,SAAG,SAAS,GAAG,eAAa,QAC1C;AAAA,IAAC,aAAAC;AAAA,IAAA;AAAA,MACC,UAAS;AAAA,MACT,YAAY;AAAA,QACV,UAAM,kBAAAD;AAAA,UACJ;AAAA,YACE,cAAc,SAAS;AAAA,YACvB,UAAU,SAAS;AAAA,YACnB,UAAU,SAAS;AAAA,UACrB;AAAA;AAAA,UAEA;AAAA,QACF;AAAA,MACF;AAAA,MACA;AAAA,MACA;AAAA,MACA,gBAAe;AAAA,MACf,MAAK;AAAA,MAEL,sDAAC,aAAAE,cAAA,EAAiB,eAAa,SAAS,GAAG,MAAM,WAAW,SACzD,gBACC,4EACG;AAAA,iBAAS,4CAAC,aAAAC,aAAA,EAAiB,iBAAM;AAAA,QAClC,4CAAC,aAAAC,WAAA,EAAc,WAAU,oBACtB,UACH;AAAA,QACC,UAAU,4CAAC,aAAAC,aAAA,EAAiB,kBAAO;AAAA,SACtC,GAEJ;AAAA;AAAA,EACF,GACF;AAEJ;AAEA,IAAO,gBAAQ;","names":["createDebug","cn","NextModal","NextModalContent","NextModalHeader","NextModalBody","NextModalFooter"]}
@@ -0,0 +1,29 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ReactNode } from 'react';
3
+
4
+ declare const ModalSizeOptions: readonly ["sm", "md", "lg"];
5
+ type ModalSize = (typeof ModalSizeOptions)[number];
6
+ interface ModalProps {
7
+ /** child components */
8
+ children?: ReactNode;
9
+ /** CSS class name */
10
+ className?: string | string[];
11
+ /** HTML data-testid attribute used in e2e tests */
12
+ footer?: ReactNode;
13
+ /** open state (controlled) */
14
+ isOpen: boolean;
15
+ /** close event handler */
16
+ onClose: () => void;
17
+ /** modal size */
18
+ size?: ModalSize;
19
+ /** e2e test id */
20
+ testId?: string;
21
+ /** modal header */
22
+ title?: ReactNode;
23
+ }
24
+ /**
25
+ * Modal component based on [NextUI Modal](https://nextui.org/docs/components/modal)
26
+ */
27
+ declare const Modal: ({ children, className, footer, isOpen, onClose, size, testId, title, }: ModalProps) => react_jsx_runtime.JSX.Element;
28
+
29
+ export { type ModalProps, ModalSizeOptions, Modal as default };
@@ -0,0 +1,29 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ReactNode } from 'react';
3
+
4
+ declare const ModalSizeOptions: readonly ["sm", "md", "lg"];
5
+ type ModalSize = (typeof ModalSizeOptions)[number];
6
+ interface ModalProps {
7
+ /** child components */
8
+ children?: ReactNode;
9
+ /** CSS class name */
10
+ className?: string | string[];
11
+ /** HTML data-testid attribute used in e2e tests */
12
+ footer?: ReactNode;
13
+ /** open state (controlled) */
14
+ isOpen: boolean;
15
+ /** close event handler */
16
+ onClose: () => void;
17
+ /** modal size */
18
+ size?: ModalSize;
19
+ /** e2e test id */
20
+ testId?: string;
21
+ /** modal header */
22
+ title?: ReactNode;
23
+ }
24
+ /**
25
+ * Modal component based on [NextUI Modal](https://nextui.org/docs/components/modal)
26
+ */
27
+ declare const Modal: ({ children, className, footer, isOpen, onClose, size, testId, title, }: ModalProps) => react_jsx_runtime.JSX.Element;
28
+
29
+ export { type ModalProps, ModalSizeOptions, Modal as default };
@@ -0,0 +1,9 @@
1
+ import {
2
+ ModalSizeOptions,
3
+ Modal_default
4
+ } from "../chunk-EYUTNORZ.js";
5
+ export {
6
+ ModalSizeOptions,
7
+ Modal_default as default
8
+ };
9
+ //# sourceMappingURL=Modal.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/Modal/index.ts
31
+ var Modal_exports = {};
32
+ __export(Modal_exports, {
33
+ default: () => Modal_default2
34
+ });
35
+ module.exports = __toCommonJS(Modal_exports);
36
+
37
+ // src/Modal/Modal.tsx
38
+ var import_modal = require("@nextui-org/modal");
39
+ var import_classnames = __toESM(require("classnames"), 1);
40
+ var import_debug = __toESM(require("debug"), 1);
41
+ var import_jsx_runtime = require("react/jsx-runtime");
42
+ var debug = (0, import_debug.default)("component:Modal");
43
+ var Modal = ({
44
+ children = null,
45
+ className = void 0,
46
+ footer = void 0,
47
+ isOpen,
48
+ onClose,
49
+ size = "md",
50
+ testId = void 0,
51
+ title = void 0
52
+ }) => {
53
+ debug("Modal", { size });
54
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: (0, import_classnames.default)(className), "data-testid": testId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
55
+ import_modal.Modal,
56
+ {
57
+ backdrop: "opaque",
58
+ classNames: {
59
+ base: (0, import_classnames.default)(
60
+ {
61
+ "lg:w-11/12": size === "lg",
62
+ "w-2/12": size === "sm",
63
+ "w-6/12": size === "md"
64
+ },
65
+ // overwrite !rounded-none from nextui
66
+ "!rounded-lg"
67
+ )
68
+ },
69
+ isOpen,
70
+ onClose,
71
+ scrollBehavior: "inside",
72
+ size: "full",
73
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalContent, { "data-testid": testId ? `${testId}_modal` : "modal", children: () => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
74
+ title && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalHeader, { children: title }),
75
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalBody, { className: "bg-ex-background", children }),
76
+ footer && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_modal.ModalFooter, { children: footer })
77
+ ] }) })
78
+ }
79
+ ) });
80
+ };
81
+ var Modal_default = Modal;
82
+
83
+ // src/Modal/index.ts
84
+ var Modal_default2 = Modal_default;
85
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/Modal/index.ts","../../src/Modal/Modal.tsx"],"sourcesContent":["import Modal from './Modal';\n\nexport default Modal;\n","import type { ReactNode } from 'react';\n\nimport {\n Modal as NextModal,\n ModalBody as NextModalBody,\n ModalContent as NextModalContent,\n ModalFooter as NextModalFooter,\n ModalHeader as NextModalHeader,\n} from '@nextui-org/modal';\nimport cn from 'classnames';\nimport createDebug from 'debug';\n\nconst debug = createDebug('component:Modal');\n\nexport const ModalSizeOptions = ['sm', 'md', 'lg'] as const;\ntype ModalSize = (typeof ModalSizeOptions)[number];\n\nexport interface ModalProps {\n /** child components */\n children?: ReactNode;\n /** CSS class name */\n className?: string | string[];\n /** HTML data-testid attribute used in e2e tests */\n footer?: ReactNode;\n /** open state (controlled) */\n isOpen: boolean;\n /** close event handler */\n onClose: () => void;\n /** modal size */\n size?: ModalSize;\n /** e2e test id */\n testId?: string;\n /** modal header */\n title?: ReactNode;\n}\n\n/**\n * Modal component based on [NextUI Modal](https://nextui.org/docs/components/modal)\n */\nconst Modal = ({\n children = null,\n className = undefined,\n footer = undefined,\n isOpen,\n onClose,\n size = 'md',\n testId = undefined,\n title = undefined,\n}: ModalProps) => {\n debug('Modal', { size });\n return (\n <div className={cn(className)} data-testid={testId}>\n <NextModal\n backdrop=\"opaque\"\n classNames={{\n base: cn(\n {\n 'lg:w-11/12': size === 'lg',\n 'w-2/12': size === 'sm',\n 'w-6/12': size === 'md',\n },\n // overwrite !rounded-none from nextui\n '!rounded-lg',\n ),\n }}\n isOpen={isOpen}\n onClose={onClose}\n scrollBehavior=\"inside\"\n size=\"full\"\n >\n <NextModalContent data-testid={testId ? `${testId}_modal` : 'modal'}>\n {() => (\n <>\n {title && <NextModalHeader>{title}</NextModalHeader>}\n <NextModalBody className=\"bg-ex-background\">\n {children}\n </NextModalBody>\n {footer && <NextModalFooter>{footer}</NextModalFooter>}\n </>\n )}\n </NextModalContent>\n </NextModal>\n </div>\n );\n};\n\nexport default Modal;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,iBAAAA;AAAA;AAAA;;;ACEA,mBAMO;AACP,wBAAe;AACf,mBAAwB;AA8DZ;AA5DZ,IAAM,YAAQ,aAAAC,SAAY,iBAAiB;AA2B3C,IAAM,QAAQ,CAAC;AAAA,EACb,WAAW;AAAA,EACX,YAAY;AAAA,EACZ,SAAS;AAAA,EACT;AAAA,EACA;AAAA,EACA,OAAO;AAAA,EACP,SAAS;AAAA,EACT,QAAQ;AACV,MAAkB;AAChB,QAAM,SAAS,EAAE,KAAK,CAAC;AACvB,SACE,4CAAC,SAAI,eAAW,kBAAAC,SAAG,SAAS,GAAG,eAAa,QAC1C;AAAA,IAAC,aAAAC;AAAA,IAAA;AAAA,MACC,UAAS;AAAA,MACT,YAAY;AAAA,QACV,UAAM,kBAAAD;AAAA,UACJ;AAAA,YACE,cAAc,SAAS;AAAA,YACvB,UAAU,SAAS;AAAA,YACnB,UAAU,SAAS;AAAA,UACrB;AAAA;AAAA,UAEA;AAAA,QACF;AAAA,MACF;AAAA,MACA;AAAA,MACA;AAAA,MACA,gBAAe;AAAA,MACf,MAAK;AAAA,MAEL,sDAAC,aAAAE,cAAA,EAAiB,eAAa,SAAS,GAAG,MAAM,WAAW,SACzD,gBACC,4EACG;AAAA,iBAAS,4CAAC,aAAAC,aAAA,EAAiB,iBAAM;AAAA,QAClC,4CAAC,aAAAC,WAAA,EAAc,WAAU,oBACtB,UACH;AAAA,QACC,UAAU,4CAAC,aAAAC,aAAA,EAAiB,kBAAO;AAAA,SACtC,GAEJ;AAAA;AAAA,EACF,GACF;AAEJ;AAEA,IAAO,gBAAQ;;;ADpFf,IAAOC,iBAAQ;","names":["Modal_default","createDebug","cn","NextModal","NextModalContent","NextModalHeader","NextModalBody","NextModalFooter","Modal_default"]}
@@ -0,0 +1,7 @@
1
+ import Modal from './Modal.cjs';
2
+ import 'react/jsx-runtime';
3
+ import 'react';
4
+
5
+
6
+
7
+ export { Modal as default };
@@ -0,0 +1,7 @@
1
+ import Modal from './Modal.js';
2
+ import 'react/jsx-runtime';
3
+ import 'react';
4
+
5
+
6
+
7
+ export { Modal as default };
@@ -0,0 +1,10 @@
1
+ import {
2
+ Modal_default
3
+ } from "../chunk-EYUTNORZ.js";
4
+
5
+ // src/Modal/index.ts
6
+ var Modal_default2 = Modal_default;
7
+ export {
8
+ Modal_default2 as default
9
+ };
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/Modal/index.ts"],"sourcesContent":["import Modal from './Modal';\n\nexport default Modal;\n"],"mappings":";;;;;AAEA,IAAOA,iBAAQ;","names":["Modal_default"]}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/Popover/Popover.tsx
31
+ var Popover_exports = {};
32
+ __export(Popover_exports, {
33
+ default: () => Popover_default
34
+ });
35
+ module.exports = __toCommonJS(Popover_exports);
36
+ var import_popover = require("@nextui-org/popover");
37
+ var import_classnames = __toESM(require("classnames"), 1);
38
+ var import_debug = __toESM(require("debug"), 1);
39
+ var import_jsx_runtime = require("react/jsx-runtime");
40
+ var debug = (0, import_debug.default)("component:Popover");
41
+ var Popover_default = ({
42
+ children = null,
43
+ className = void 0,
44
+ content,
45
+ contentTestId = void 0,
46
+ placement = "top",
47
+ openControlled = void 0,
48
+ testId = void 0,
49
+ title = void 0
50
+ }) => {
51
+ debug("Popover");
52
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
53
+ import_popover.Popover,
54
+ {
55
+ placement,
56
+ radius: "sm",
57
+ showArrow: true,
58
+ ...openControlled ? { isOpen: openControlled.open, onOpenChange: openControlled.setOpen } : {},
59
+ children: [
60
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_popover.PopoverTrigger, { className: (0, import_classnames.default)(className), "data-testid": testId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", { children }) }),
61
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_popover.PopoverContent, { "data-testid": contentTestId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "max-h-[80vh] overflow-y-auto", children: [
62
+ title && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { children: [
63
+ title,
64
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("hr", {})
65
+ ] }),
66
+ content
67
+ ] }) })
68
+ ]
69
+ }
70
+ );
71
+ };
72
+ //# sourceMappingURL=Popover.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/Popover/Popover.tsx"],"sourcesContent":["import type { PopoverProps as NextPopoverProps } from '@nextui-org/popover';\nimport type { ReactNode } from 'react';\n\nimport { Popover, PopoverContent, PopoverTrigger } from '@nextui-org/popover';\nimport cn from 'classnames';\nimport createDebug from 'debug';\n\nconst debug = createDebug('component:Popover');\n\nexport interface PopoverProps {\n /** child components */\n children?: ReactNode;\n /** CSS class name */\n className?: string | string[];\n /** content of the popover */\n content: ReactNode;\n /** HTML data-testid attribute used in e2e tests */\n contentTestId?: string;\n /** placement of the popover relative to its trigger reference */\n placement?: NextPopoverProps['placement'];\n /** use as controlled component */\n openControlled?: { open: boolean; setOpen: (open: boolean) => void };\n /** HTML data-testid attribute used in e2e tests */\n testId?: string;\n /** popover title */\n title?: ReactNode;\n}\n\n/**\n * Popover component based on [NextUI Card](https://nextui.org/docs/components/popover)\n */\nexport default ({\n children = null,\n className = undefined,\n content,\n contentTestId = undefined,\n placement = 'top',\n openControlled = undefined,\n testId = undefined,\n title = undefined,\n}: PopoverProps) => {\n debug('Popover');\n\n return (\n <Popover\n placement={placement}\n radius=\"sm\"\n showArrow\n {...(openControlled\n ? { isOpen: openControlled.open, onOpenChange: openControlled.setOpen }\n : {})}\n >\n <PopoverTrigger className={cn(className)} data-testid={testId}>\n {/* NOTE: type and aria properties are injected by PopoverTrigger */}\n {/* eslint-disable-next-line react/button-has-type */}\n <button>{children}</button>\n </PopoverTrigger>\n <PopoverContent data-testid={contentTestId}>\n <div className=\"max-h-[80vh] overflow-y-auto\">\n {title && (\n <div>\n {title}\n <hr />\n </div>\n )}\n {content}\n </div>\n </PopoverContent>\n </Popover>\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,qBAAwD;AACxD,wBAAe;AACf,mBAAwB;AAkDhB;AAhDR,IAAM,YAAQ,aAAAA,SAAY,mBAAmB;AAwB7C,IAAO,kBAAQ,CAAC;AAAA,EACd,WAAW;AAAA,EACX,YAAY;AAAA,EACZ;AAAA,EACA,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,iBAAiB;AAAA,EACjB,SAAS;AAAA,EACT,QAAQ;AACV,MAAoB;AAClB,QAAM,SAAS;AAEf,SACE;AAAA,IAAC;AAAA;AAAA,MACC;AAAA,MACA,QAAO;AAAA,MACP,WAAS;AAAA,MACR,GAAI,iBACD,EAAE,QAAQ,eAAe,MAAM,cAAc,eAAe,QAAQ,IACpE,CAAC;AAAA,MAEL;AAAA,oDAAC,iCAAe,eAAW,kBAAAC,SAAG,SAAS,GAAG,eAAa,QAGrD,sDAAC,YAAQ,UAAS,GACpB;AAAA,QACA,4CAAC,iCAAe,eAAa,eAC3B,uDAAC,SAAI,WAAU,gCACZ;AAAA,mBACC,6CAAC,SACE;AAAA;AAAA,YACD,4CAAC,QAAG;AAAA,aACN;AAAA,UAED;AAAA,WACH,GACF;AAAA;AAAA;AAAA,EACF;AAEJ;","names":["createDebug","cn"]}
@@ -0,0 +1,31 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { PopoverProps as PopoverProps$1 } from '@nextui-org/popover';
3
+ import { ReactNode } from 'react';
4
+
5
+ interface PopoverProps {
6
+ /** child components */
7
+ children?: ReactNode;
8
+ /** CSS class name */
9
+ className?: string | string[];
10
+ /** content of the popover */
11
+ content: ReactNode;
12
+ /** HTML data-testid attribute used in e2e tests */
13
+ contentTestId?: string;
14
+ /** placement of the popover relative to its trigger reference */
15
+ placement?: PopoverProps$1['placement'];
16
+ /** use as controlled component */
17
+ openControlled?: {
18
+ open: boolean;
19
+ setOpen: (open: boolean) => void;
20
+ };
21
+ /** HTML data-testid attribute used in e2e tests */
22
+ testId?: string;
23
+ /** popover title */
24
+ title?: ReactNode;
25
+ }
26
+ /**
27
+ * Popover component based on [NextUI Card](https://nextui.org/docs/components/popover)
28
+ */
29
+ declare const _default: ({ children, className, content, contentTestId, placement, openControlled, testId, title, }: PopoverProps) => react_jsx_runtime.JSX.Element;
30
+
31
+ export { type PopoverProps, _default as default };
@@ -0,0 +1,31 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { PopoverProps as PopoverProps$1 } from '@nextui-org/popover';
3
+ import { ReactNode } from 'react';
4
+
5
+ interface PopoverProps {
6
+ /** child components */
7
+ children?: ReactNode;
8
+ /** CSS class name */
9
+ className?: string | string[];
10
+ /** content of the popover */
11
+ content: ReactNode;
12
+ /** HTML data-testid attribute used in e2e tests */
13
+ contentTestId?: string;
14
+ /** placement of the popover relative to its trigger reference */
15
+ placement?: PopoverProps$1['placement'];
16
+ /** use as controlled component */
17
+ openControlled?: {
18
+ open: boolean;
19
+ setOpen: (open: boolean) => void;
20
+ };
21
+ /** HTML data-testid attribute used in e2e tests */
22
+ testId?: string;
23
+ /** popover title */
24
+ title?: ReactNode;
25
+ }
26
+ /**
27
+ * Popover component based on [NextUI Card](https://nextui.org/docs/components/popover)
28
+ */
29
+ declare const _default: ({ children, className, content, contentTestId, placement, openControlled, testId, title, }: PopoverProps) => react_jsx_runtime.JSX.Element;
30
+
31
+ export { type PopoverProps, _default as default };
@@ -0,0 +1,7 @@
1
+ import {
2
+ Popover_default
3
+ } from "../chunk-SGAWYTO7.js";
4
+ export {
5
+ Popover_default as default
6
+ };
7
+ //# sourceMappingURL=Popover.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/Popover/index.ts
31
+ var Popover_exports = {};
32
+ __export(Popover_exports, {
33
+ default: () => Popover_default2
34
+ });
35
+ module.exports = __toCommonJS(Popover_exports);
36
+
37
+ // src/Popover/Popover.tsx
38
+ var import_popover = require("@nextui-org/popover");
39
+ var import_classnames = __toESM(require("classnames"), 1);
40
+ var import_debug = __toESM(require("debug"), 1);
41
+ var import_jsx_runtime = require("react/jsx-runtime");
42
+ var debug = (0, import_debug.default)("component:Popover");
43
+ var Popover_default = ({
44
+ children = null,
45
+ className = void 0,
46
+ content,
47
+ contentTestId = void 0,
48
+ placement = "top",
49
+ openControlled = void 0,
50
+ testId = void 0,
51
+ title = void 0
52
+ }) => {
53
+ debug("Popover");
54
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
55
+ import_popover.Popover,
56
+ {
57
+ placement,
58
+ radius: "sm",
59
+ showArrow: true,
60
+ ...openControlled ? { isOpen: openControlled.open, onOpenChange: openControlled.setOpen } : {},
61
+ children: [
62
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_popover.PopoverTrigger, { className: (0, import_classnames.default)(className), "data-testid": testId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("button", { children }) }),
63
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_popover.PopoverContent, { "data-testid": contentTestId, children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "max-h-[80vh] overflow-y-auto", children: [
64
+ title && /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { children: [
65
+ title,
66
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("hr", {})
67
+ ] }),
68
+ content
69
+ ] }) })
70
+ ]
71
+ }
72
+ );
73
+ };
74
+
75
+ // src/Popover/index.ts
76
+ var Popover_default2 = Popover_default;
77
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/Popover/index.ts","../../src/Popover/Popover.tsx"],"sourcesContent":["import Popover from './Popover';\n\nexport default Popover;\n","import type { PopoverProps as NextPopoverProps } from '@nextui-org/popover';\nimport type { ReactNode } from 'react';\n\nimport { Popover, PopoverContent, PopoverTrigger } from '@nextui-org/popover';\nimport cn from 'classnames';\nimport createDebug from 'debug';\n\nconst debug = createDebug('component:Popover');\n\nexport interface PopoverProps {\n /** child components */\n children?: ReactNode;\n /** CSS class name */\n className?: string | string[];\n /** content of the popover */\n content: ReactNode;\n /** HTML data-testid attribute used in e2e tests */\n contentTestId?: string;\n /** placement of the popover relative to its trigger reference */\n placement?: NextPopoverProps['placement'];\n /** use as controlled component */\n openControlled?: { open: boolean; setOpen: (open: boolean) => void };\n /** HTML data-testid attribute used in e2e tests */\n testId?: string;\n /** popover title */\n title?: ReactNode;\n}\n\n/**\n * Popover component based on [NextUI Card](https://nextui.org/docs/components/popover)\n */\nexport default ({\n children = null,\n className = undefined,\n content,\n contentTestId = undefined,\n placement = 'top',\n openControlled = undefined,\n testId = undefined,\n title = undefined,\n}: PopoverProps) => {\n debug('Popover');\n\n return (\n <Popover\n placement={placement}\n radius=\"sm\"\n showArrow\n {...(openControlled\n ? { isOpen: openControlled.open, onOpenChange: openControlled.setOpen }\n : {})}\n >\n <PopoverTrigger className={cn(className)} data-testid={testId}>\n {/* NOTE: type and aria properties are injected by PopoverTrigger */}\n {/* eslint-disable-next-line react/button-has-type */}\n <button>{children}</button>\n </PopoverTrigger>\n <PopoverContent data-testid={contentTestId}>\n <div className=\"max-h-[80vh] overflow-y-auto\">\n {title && (\n <div>\n {title}\n <hr />\n </div>\n )}\n {content}\n </div>\n </PopoverContent>\n </Popover>\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,iBAAAA;AAAA;AAAA;;;ACGA,qBAAwD;AACxD,wBAAe;AACf,mBAAwB;AAkDhB;AAhDR,IAAM,YAAQ,aAAAC,SAAY,mBAAmB;AAwB7C,IAAO,kBAAQ,CAAC;AAAA,EACd,WAAW;AAAA,EACX,YAAY;AAAA,EACZ;AAAA,EACA,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,iBAAiB;AAAA,EACjB,SAAS;AAAA,EACT,QAAQ;AACV,MAAoB;AAClB,QAAM,SAAS;AAEf,SACE;AAAA,IAAC;AAAA;AAAA,MACC;AAAA,MACA,QAAO;AAAA,MACP,WAAS;AAAA,MACR,GAAI,iBACD,EAAE,QAAQ,eAAe,MAAM,cAAc,eAAe,QAAQ,IACpE,CAAC;AAAA,MAEL;AAAA,oDAAC,iCAAe,eAAW,kBAAAC,SAAG,SAAS,GAAG,eAAa,QAGrD,sDAAC,YAAQ,UAAS,GACpB;AAAA,QACA,4CAAC,iCAAe,eAAa,eAC3B,uDAAC,SAAI,WAAU,gCACZ;AAAA,mBACC,6CAAC,SACE;AAAA;AAAA,YACD,4CAAC,QAAG;AAAA,aACN;AAAA,UAED;AAAA,WACH,GACF;AAAA;AAAA;AAAA,EACF;AAEJ;;;ADpEA,IAAOC,mBAAQ;","names":["Popover_default","createDebug","cn","Popover_default"]}
@@ -0,0 +1,8 @@
1
+ import _default from './Popover.cjs';
2
+ import 'react/jsx-runtime';
3
+ import '@nextui-org/popover';
4
+ import 'react';
5
+
6
+
7
+
8
+ export { _default as default };
@@ -0,0 +1,8 @@
1
+ import _default from './Popover.js';
2
+ import 'react/jsx-runtime';
3
+ import '@nextui-org/popover';
4
+ import 'react';
5
+
6
+
7
+
8
+ export { _default as default };
@@ -0,0 +1,10 @@
1
+ import {
2
+ Popover_default
3
+ } from "../chunk-SGAWYTO7.js";
4
+
5
+ // src/Popover/index.ts
6
+ var Popover_default2 = Popover_default;
7
+ export {
8
+ Popover_default2 as default
9
+ };
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/Popover/index.ts"],"sourcesContent":["import Popover from './Popover';\n\nexport default Popover;\n"],"mappings":";;;;;AAEA,IAAOA,mBAAQ;","names":["Popover_default"]}
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/Tooltip/Tooltip.tsx
31
+ var Tooltip_exports = {};
32
+ __export(Tooltip_exports, {
33
+ PlacementOptions: () => PlacementOptions,
34
+ default: () => Tooltip_default
35
+ });
36
+ module.exports = __toCommonJS(Tooltip_exports);
37
+ var import_tooltip = require("@nextui-org/tooltip");
38
+ var import_classnames = __toESM(require("classnames"), 1);
39
+ var import_jsx_runtime = require("react/jsx-runtime");
40
+ var PlacementOptions = ["top", "bottom", "left", "right"];
41
+ var Tooltip = ({
42
+ children,
43
+ className = void 0,
44
+ content,
45
+ placement = "top",
46
+ defaultOpen = false,
47
+ onOpenChange = void 0,
48
+ containerPadding = 0
49
+ }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
50
+ import_tooltip.Tooltip,
51
+ {
52
+ className: (0, import_classnames.default)(className),
53
+ containerPadding,
54
+ content,
55
+ defaultOpen,
56
+ onOpenChange,
57
+ placement,
58
+ shouldFlip: true,
59
+ showArrow: true,
60
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "cursor-pointer", children })
61
+ }
62
+ );
63
+ var Tooltip_default = Tooltip;
64
+ // Annotate the CommonJS export names for ESM import in node:
65
+ 0 && (module.exports = {
66
+ PlacementOptions
67
+ });
68
+ //# sourceMappingURL=Tooltip.cjs.map