@guzuro/guz-lib-test 0.0.6 → 0.0.7

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.
@@ -0,0 +1,14 @@
1
+ import { Button } from "antd";
2
+ import { jsx } from "react/jsx-runtime";
3
+ //#region src/components/Button/index.tsx
4
+ var Button$1 = ({ children, onClick }) => {
5
+ return /* @__PURE__ */ jsx(Button, {
6
+ className: "rounded-lg",
7
+ onClick,
8
+ children
9
+ });
10
+ };
11
+ //#endregion
12
+ export { Button$1 as Button };
13
+
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../../src/components/Button/index.tsx"],"sourcesContent":["import { Button as AntButton } from \"antd\";\nimport type { FC, ReactNode } from \"react\";\n\nexport interface ButtonProps {\n children: ReactNode;\n onClick?: () => void;\n}\n\nexport const Button: FC<ButtonProps> = ({ children, onClick }) => {\n return (\n <AntButton className=\"rounded-lg\" onClick={onClick}>\n {children}\n </AntButton>\n );\n};\n"],"mappings":";;;AAQA,IAAa,YAA2B,EAAE,UAAU,cAAc;AAChE,QACE,oBAAC,QAAD;EAAW,WAAU;EAAsB;EACxC;EACS,CAAA"}
@@ -0,0 +1,15 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ //#region src/components/Card/index.tsx
3
+ var Card = ({ title, children }) => {
4
+ return /* @__PURE__ */ jsxs("div", {
5
+ className: "p-4 border rounded-2xl shadow-sm",
6
+ children: [/* @__PURE__ */ jsx("h3", {
7
+ className: "text-lg font-semibold mb-2",
8
+ children: title
9
+ }), /* @__PURE__ */ jsx("div", { children })]
10
+ });
11
+ };
12
+ //#endregion
13
+ export { Card };
14
+
15
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../../src/components/Card/index.tsx"],"sourcesContent":["import type { FC, ReactNode } from \"react\";\n\nexport interface CardProps {\n title: string;\n children: ReactNode;\n}\n\nexport const Card: FC<CardProps> = ({ title, children }) => {\n return (\n <div className=\"p-4 border rounded-2xl shadow-sm\">\n <h3 className=\"text-lg font-semibold mb-2\">{title}</h3>\n <div>{children}</div>\n </div>\n );\n};\n"],"mappings":";;AAOA,IAAa,QAAuB,EAAE,OAAO,eAAe;AAC1D,QACE,qBAAC,OAAD;EAAK,WAAU;YAAf,CACE,oBAAC,MAAD;GAAI,WAAU;aAA8B;GAAW,CAAA,EACvD,oBAAC,OAAD,EAAM,UAAe,CAAA,CACjB"}
@@ -0,0 +1,23 @@
1
+ import { Button } from "../Button/index.js";
2
+ import { Card } from "../Card/index.js";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/components/TestComposite/index.tsx
5
+ var TestComposite = () => {
6
+ return /* @__PURE__ */ jsx(Card, {
7
+ title: "Test component",
8
+ children: /* @__PURE__ */ jsxs("div", {
9
+ className: "flex gap-2",
10
+ children: [/* @__PURE__ */ jsx(Button, {
11
+ onClick: () => console.log("Click 1"),
12
+ children: "Click me"
13
+ }), /* @__PURE__ */ jsx(Button, {
14
+ onClick: () => console.log("Click 2"),
15
+ children: "Or me"
16
+ })]
17
+ })
18
+ });
19
+ };
20
+ //#endregion
21
+ export { TestComposite };
22
+
23
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../../src/components/TestComposite/index.tsx"],"sourcesContent":["import type { FC } from \"react\";\nimport { Button } from \"../Button\";\nimport { Card } from \"../Card\";\n\nexport const TestComposite: FC = () => {\n return (\n <Card title=\"Test component\">\n <div className=\"flex gap-2\">\n <Button onClick={() => console.log(\"Click 1\")}>Click me</Button>\n\n <Button onClick={() => console.log(\"Click 2\")}>Or me</Button>\n </div>\n </Card>\n );\n};\n"],"mappings":";;;;AAIA,IAAa,sBAA0B;AACrC,QACE,oBAAC,MAAD;EAAM,OAAM;YACV,qBAAC,OAAD;GAAK,WAAU;aAAf,CACE,oBAAC,QAAD;IAAQ,eAAe,QAAQ,IAAI,UAAU;cAAE;IAAiB,CAAA,EAEhE,oBAAC,QAAD;IAAQ,eAAe,QAAQ,IAAI,UAAU;cAAE;IAAc,CAAA,CACzD;;EACD,CAAA"}
@@ -1,2 +1,3 @@
1
- @tailwind base;@tailwind components;@tailwind utilities;
2
- /*$vite$:1*/
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;/*$vite$:1*/
package/dist/index.d.ts CHANGED
@@ -1,3 +1,20 @@
1
- export * from './components/Button';
2
- export * from './components/Card';
3
- export * from './components/TestComposite';
1
+ import { FC } from 'react';
2
+ import { ReactNode } from 'react';
3
+
4
+ export declare const Button: FC<ButtonProps>;
5
+
6
+ export declare interface ButtonProps {
7
+ children: ReactNode;
8
+ onClick?: () => void;
9
+ }
10
+
11
+ export declare const Card: FC<CardProps>;
12
+
13
+ export declare interface CardProps {
14
+ title: string;
15
+ children: ReactNode;
16
+ }
17
+
18
+ export declare const TestComposite: FC;
19
+
20
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ /* empty css */
2
+ import { Button } from "./components/Button/index.js";
3
+ import { Card } from "./components/Card/index.js";
4
+ import { TestComposite } from "./components/TestComposite/index.js";
5
+ export { Button, Card, TestComposite };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@guzuro/guz-lib-test",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "files": [
5
5
  "dist"
6
6
  ],
7
- "main": "dist/src/index.js",
8
- "module": "dist/src/index.js",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
10
10
  "sideEffects": false,
11
11
  "scripts": {
@@ -1,7 +0,0 @@
1
- //#region \0rolldown/runtime.js
2
- var e = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), t = /* @__PURE__ */ ((e) => typeof require < "u" ? require : typeof Proxy < "u" ? new Proxy(e, { get: (e, t) => (typeof require < "u" ? require : e)[t] }) : e)(function(e) {
3
- if (typeof require < "u") return require.apply(this, arguments);
4
- throw Error("Calling `require` for \"" + e + "\" in an environment that doesn't expose the `require` function. See https://rolldown.rs/in-depth/bundling-cjs#require-external-modules for more details.");
5
- });
6
- //#endregion
7
- export { e as __commonJSMin, t as __require };
@@ -1,6 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- export interface ButtonProps {
3
- children: ReactNode;
4
- onClick?: () => void;
5
- }
6
- export declare const Button: FC<ButtonProps>;
@@ -1,6 +0,0 @@
1
- import { FC, ReactNode } from 'react';
2
- export interface CardProps {
3
- title: string;
4
- children: ReactNode;
5
- }
6
- export declare const Card: FC<CardProps>;
@@ -1,2 +0,0 @@
1
- import { FC } from 'react';
2
- export declare const TestComposite: FC;
@@ -1,166 +0,0 @@
1
- import { __commonJSMin as e, __require as t } from "../../../_virtual/_rolldown/runtime.js";
2
- //#region node_modules/react/cjs/react-jsx-runtime.development.js
3
- var n = /* @__PURE__ */ e(((e) => {
4
- process.env.NODE_ENV !== "production" && (function() {
5
- function n(e) {
6
- if (e == null) return null;
7
- if (typeof e == "function") return e.$$typeof === k ? null : e.displayName || e.name || null;
8
- if (typeof e == "string") return e;
9
- switch (e) {
10
- case v: return "Fragment";
11
- case b: return "Profiler";
12
- case y: return "StrictMode";
13
- case w: return "Suspense";
14
- case T: return "SuspenseList";
15
- case O: return "Activity";
16
- }
17
- if (typeof e == "object") switch (typeof e.tag == "number" && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), e.$$typeof) {
18
- case _: return "Portal";
19
- case S: return e.displayName || "Context";
20
- case x: return (e._context.displayName || "Context") + ".Consumer";
21
- case C:
22
- var t = e.render;
23
- return e = e.displayName, e ||= (e = t.displayName || t.name || "", e === "" ? "ForwardRef" : "ForwardRef(" + e + ")"), e;
24
- case E: return t = e.displayName || null, t === null ? n(e.type) || "Memo" : t;
25
- case D:
26
- t = e._payload, e = e._init;
27
- try {
28
- return n(e(t));
29
- } catch {}
30
- }
31
- return null;
32
- }
33
- function r(e) {
34
- return "" + e;
35
- }
36
- function i(e) {
37
- try {
38
- r(e);
39
- var t = !1;
40
- } catch {
41
- t = !0;
42
- }
43
- if (t) {
44
- t = console;
45
- var n = t.error, i = typeof Symbol == "function" && Symbol.toStringTag && e[Symbol.toStringTag] || e.constructor.name || "Object";
46
- return n.call(t, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", i), r(e);
47
- }
48
- }
49
- function a(e) {
50
- if (e === v) return "<>";
51
- if (typeof e == "object" && e && e.$$typeof === D) return "<...>";
52
- try {
53
- var t = n(e);
54
- return t ? "<" + t + ">" : "<...>";
55
- } catch {
56
- return "<...>";
57
- }
58
- }
59
- function o() {
60
- var e = A.A;
61
- return e === null ? null : e.getOwner();
62
- }
63
- function s() {
64
- return Error("react-stack-top-frame");
65
- }
66
- function c(e) {
67
- if (j.call(e, "key")) {
68
- var t = Object.getOwnPropertyDescriptor(e, "key").get;
69
- if (t && t.isReactWarning) return !1;
70
- }
71
- return e.key !== void 0;
72
- }
73
- function l(e, t) {
74
- function n() {
75
- P || (P = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", t));
76
- }
77
- n.isReactWarning = !0, Object.defineProperty(e, "key", {
78
- get: n,
79
- configurable: !0
80
- });
81
- }
82
- function u() {
83
- var e = n(this.type);
84
- return F[e] || (F[e] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")), e = this.props.ref, e === void 0 ? null : e;
85
- }
86
- function d(e, t, n, r, i, a) {
87
- var o = n.ref;
88
- return e = {
89
- $$typeof: g,
90
- type: e,
91
- key: t,
92
- props: n,
93
- _owner: r
94
- }, (o === void 0 ? null : o) === null ? Object.defineProperty(e, "ref", {
95
- enumerable: !1,
96
- value: null
97
- }) : Object.defineProperty(e, "ref", {
98
- enumerable: !1,
99
- get: u
100
- }), e._store = {}, Object.defineProperty(e._store, "validated", {
101
- configurable: !1,
102
- enumerable: !1,
103
- writable: !0,
104
- value: 0
105
- }), Object.defineProperty(e, "_debugInfo", {
106
- configurable: !1,
107
- enumerable: !1,
108
- writable: !0,
109
- value: null
110
- }), Object.defineProperty(e, "_debugStack", {
111
- configurable: !1,
112
- enumerable: !1,
113
- writable: !0,
114
- value: i
115
- }), Object.defineProperty(e, "_debugTask", {
116
- configurable: !1,
117
- enumerable: !1,
118
- writable: !0,
119
- value: a
120
- }), Object.freeze && (Object.freeze(e.props), Object.freeze(e)), e;
121
- }
122
- function f(e, t, r, a, s, u) {
123
- var f = t.children;
124
- if (f !== void 0) if (a) if (M(f)) {
125
- for (a = 0; a < f.length; a++) p(f[a]);
126
- Object.freeze && Object.freeze(f);
127
- } else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
128
- else p(f);
129
- if (j.call(t, "key")) {
130
- f = n(e);
131
- var m = Object.keys(t).filter(function(e) {
132
- return e !== "key";
133
- });
134
- a = 0 < m.length ? "{key: someKey, " + m.join(": ..., ") + ": ...}" : "{key: someKey}", R[f + a] || (m = 0 < m.length ? "{" + m.join(": ..., ") + ": ...}" : "{}", console.error("A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />", a, f, m, f), R[f + a] = !0);
135
- }
136
- if (f = null, r !== void 0 && (i(r), f = "" + r), c(t) && (i(t.key), f = "" + t.key), "key" in t) for (var h in r = {}, t) h !== "key" && (r[h] = t[h]);
137
- else r = t;
138
- return f && l(r, typeof e == "function" ? e.displayName || e.name || "Unknown" : e), d(e, f, r, o(), s, u);
139
- }
140
- function p(e) {
141
- m(e) ? e._store && (e._store.validated = 1) : typeof e == "object" && e && e.$$typeof === D && (e._payload.status === "fulfilled" ? m(e._payload.value) && e._payload.value._store && (e._payload.value._store.validated = 1) : e._store && (e._store.validated = 1));
142
- }
143
- function m(e) {
144
- return typeof e == "object" && !!e && e.$$typeof === g;
145
- }
146
- var h = t("react"), g = Symbol.for("react.transitional.element"), _ = Symbol.for("react.portal"), v = Symbol.for("react.fragment"), y = Symbol.for("react.strict_mode"), b = Symbol.for("react.profiler"), x = Symbol.for("react.consumer"), S = Symbol.for("react.context"), C = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), T = Symbol.for("react.suspense_list"), E = Symbol.for("react.memo"), D = Symbol.for("react.lazy"), O = Symbol.for("react.activity"), k = Symbol.for("react.client.reference"), A = h.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, j = Object.prototype.hasOwnProperty, M = Array.isArray, N = console.createTask ? console.createTask : function() {
147
- return null;
148
- };
149
- h = { react_stack_bottom_frame: function(e) {
150
- return e();
151
- } };
152
- var P, F = {}, I = h.react_stack_bottom_frame.bind(h, s)(), L = N(a(s)), R = {};
153
- e.Fragment = v, e.jsx = function(e, t, n) {
154
- var r = 1e4 > A.recentlyCreatedOwnerStacks++;
155
- return f(e, t, n, !1, r ? Error("react-stack-top-frame") : I, r ? N(a(e)) : L);
156
- }, e.jsxs = function(e, t, n) {
157
- var r = 1e4 > A.recentlyCreatedOwnerStacks++;
158
- return f(e, t, n, !0, r ? Error("react-stack-top-frame") : I, r ? N(a(e)) : L);
159
- };
160
- })();
161
- }));
162
- //#endregion
163
- export default n();
164
- export { n as require_react_jsx_runtime_development };
165
-
166
- //# sourceMappingURL=react-jsx-runtime.development.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"react-jsx-runtime.development.js","names":[],"sources":["../../../../node_modules/react/cjs/react-jsx-runtime.development.js"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\n\"production\" !== process.env.NODE_ENV &&\n (function () {\n function getComponentNameFromType(type) {\n if (null == type) return null;\n if (\"function\" === typeof type)\n return type.$$typeof === REACT_CLIENT_REFERENCE\n ? null\n : type.displayName || type.name || null;\n if (\"string\" === typeof type) return type;\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return \"Fragment\";\n case REACT_PROFILER_TYPE:\n return \"Profiler\";\n case REACT_STRICT_MODE_TYPE:\n return \"StrictMode\";\n case REACT_SUSPENSE_TYPE:\n return \"Suspense\";\n case REACT_SUSPENSE_LIST_TYPE:\n return \"SuspenseList\";\n case REACT_ACTIVITY_TYPE:\n return \"Activity\";\n }\n if (\"object\" === typeof type)\n switch (\n (\"number\" === typeof type.tag &&\n console.error(\n \"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"\n ),\n type.$$typeof)\n ) {\n case REACT_PORTAL_TYPE:\n return \"Portal\";\n case REACT_CONTEXT_TYPE:\n return type.displayName || \"Context\";\n case REACT_CONSUMER_TYPE:\n return (type._context.displayName || \"Context\") + \".Consumer\";\n case REACT_FORWARD_REF_TYPE:\n var innerType = type.render;\n type = type.displayName;\n type ||\n ((type = innerType.displayName || innerType.name || \"\"),\n (type = \"\" !== type ? \"ForwardRef(\" + type + \")\" : \"ForwardRef\"));\n return type;\n case REACT_MEMO_TYPE:\n return (\n (innerType = type.displayName || null),\n null !== innerType\n ? innerType\n : getComponentNameFromType(type.type) || \"Memo\"\n );\n case REACT_LAZY_TYPE:\n innerType = type._payload;\n type = type._init;\n try {\n return getComponentNameFromType(type(innerType));\n } catch (x) {}\n }\n return null;\n }\n function testStringCoercion(value) {\n return \"\" + value;\n }\n function checkKeyStringCoercion(value) {\n try {\n testStringCoercion(value);\n var JSCompiler_inline_result = !1;\n } catch (e) {\n JSCompiler_inline_result = !0;\n }\n if (JSCompiler_inline_result) {\n JSCompiler_inline_result = console;\n var JSCompiler_temp_const = JSCompiler_inline_result.error;\n var JSCompiler_inline_result$jscomp$0 =\n (\"function\" === typeof Symbol &&\n Symbol.toStringTag &&\n value[Symbol.toStringTag]) ||\n value.constructor.name ||\n \"Object\";\n JSCompiler_temp_const.call(\n JSCompiler_inline_result,\n \"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.\",\n JSCompiler_inline_result$jscomp$0\n );\n return testStringCoercion(value);\n }\n }\n function getTaskName(type) {\n if (type === REACT_FRAGMENT_TYPE) return \"<>\";\n if (\n \"object\" === typeof type &&\n null !== type &&\n type.$$typeof === REACT_LAZY_TYPE\n )\n return \"<...>\";\n try {\n var name = getComponentNameFromType(type);\n return name ? \"<\" + name + \">\" : \"<...>\";\n } catch (x) {\n return \"<...>\";\n }\n }\n function getOwner() {\n var dispatcher = ReactSharedInternals.A;\n return null === dispatcher ? null : dispatcher.getOwner();\n }\n function UnknownOwner() {\n return Error(\"react-stack-top-frame\");\n }\n function hasValidKey(config) {\n if (hasOwnProperty.call(config, \"key\")) {\n var getter = Object.getOwnPropertyDescriptor(config, \"key\").get;\n if (getter && getter.isReactWarning) return !1;\n }\n return void 0 !== config.key;\n }\n function defineKeyPropWarningGetter(props, displayName) {\n function warnAboutAccessingKey() {\n specialPropKeyWarningShown ||\n ((specialPropKeyWarningShown = !0),\n console.error(\n \"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)\",\n displayName\n ));\n }\n warnAboutAccessingKey.isReactWarning = !0;\n Object.defineProperty(props, \"key\", {\n get: warnAboutAccessingKey,\n configurable: !0\n });\n }\n function elementRefGetterWithDeprecationWarning() {\n var componentName = getComponentNameFromType(this.type);\n didWarnAboutElementRef[componentName] ||\n ((didWarnAboutElementRef[componentName] = !0),\n console.error(\n \"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.\"\n ));\n componentName = this.props.ref;\n return void 0 !== componentName ? componentName : null;\n }\n function ReactElement(type, key, props, owner, debugStack, debugTask) {\n var refProp = props.ref;\n type = {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n props: props,\n _owner: owner\n };\n null !== (void 0 !== refProp ? refProp : null)\n ? Object.defineProperty(type, \"ref\", {\n enumerable: !1,\n get: elementRefGetterWithDeprecationWarning\n })\n : Object.defineProperty(type, \"ref\", { enumerable: !1, value: null });\n type._store = {};\n Object.defineProperty(type._store, \"validated\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: 0\n });\n Object.defineProperty(type, \"_debugInfo\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: null\n });\n Object.defineProperty(type, \"_debugStack\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugStack\n });\n Object.defineProperty(type, \"_debugTask\", {\n configurable: !1,\n enumerable: !1,\n writable: !0,\n value: debugTask\n });\n Object.freeze && (Object.freeze(type.props), Object.freeze(type));\n return type;\n }\n function jsxDEVImpl(\n type,\n config,\n maybeKey,\n isStaticChildren,\n debugStack,\n debugTask\n ) {\n var children = config.children;\n if (void 0 !== children)\n if (isStaticChildren)\n if (isArrayImpl(children)) {\n for (\n isStaticChildren = 0;\n isStaticChildren < children.length;\n isStaticChildren++\n )\n validateChildKeys(children[isStaticChildren]);\n Object.freeze && Object.freeze(children);\n } else\n console.error(\n \"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\"\n );\n else validateChildKeys(children);\n if (hasOwnProperty.call(config, \"key\")) {\n children = getComponentNameFromType(type);\n var keys = Object.keys(config).filter(function (k) {\n return \"key\" !== k;\n });\n isStaticChildren =\n 0 < keys.length\n ? \"{key: someKey, \" + keys.join(\": ..., \") + \": ...}\"\n : \"{key: someKey}\";\n didWarnAboutKeySpread[children + isStaticChildren] ||\n ((keys =\n 0 < keys.length ? \"{\" + keys.join(\": ..., \") + \": ...}\" : \"{}\"),\n console.error(\n 'A props object containing a \"key\" prop is being spread into JSX:\\n let props = %s;\\n <%s {...props} />\\nReact keys must be passed directly to JSX without using spread:\\n let props = %s;\\n <%s key={someKey} {...props} />',\n isStaticChildren,\n children,\n keys,\n children\n ),\n (didWarnAboutKeySpread[children + isStaticChildren] = !0));\n }\n children = null;\n void 0 !== maybeKey &&\n (checkKeyStringCoercion(maybeKey), (children = \"\" + maybeKey));\n hasValidKey(config) &&\n (checkKeyStringCoercion(config.key), (children = \"\" + config.key));\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n children &&\n defineKeyPropWarningGetter(\n maybeKey,\n \"function\" === typeof type\n ? type.displayName || type.name || \"Unknown\"\n : type\n );\n return ReactElement(\n type,\n children,\n maybeKey,\n getOwner(),\n debugStack,\n debugTask\n );\n }\n function validateChildKeys(node) {\n isValidElement(node)\n ? node._store && (node._store.validated = 1)\n : \"object\" === typeof node &&\n null !== node &&\n node.$$typeof === REACT_LAZY_TYPE &&\n (\"fulfilled\" === node._payload.status\n ? isValidElement(node._payload.value) &&\n node._payload.value._store &&\n (node._payload.value._store.validated = 1)\n : node._store && (node._store.validated = 1));\n }\n function isValidElement(object) {\n return (\n \"object\" === typeof object &&\n null !== object &&\n object.$$typeof === REACT_ELEMENT_TYPE\n );\n }\n var React = require(\"react\"),\n REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\"),\n REACT_STRICT_MODE_TYPE = Symbol.for(\"react.strict_mode\"),\n REACT_PROFILER_TYPE = Symbol.for(\"react.profiler\"),\n REACT_CONSUMER_TYPE = Symbol.for(\"react.consumer\"),\n REACT_CONTEXT_TYPE = Symbol.for(\"react.context\"),\n REACT_FORWARD_REF_TYPE = Symbol.for(\"react.forward_ref\"),\n REACT_SUSPENSE_TYPE = Symbol.for(\"react.suspense\"),\n REACT_SUSPENSE_LIST_TYPE = Symbol.for(\"react.suspense_list\"),\n REACT_MEMO_TYPE = Symbol.for(\"react.memo\"),\n REACT_LAZY_TYPE = Symbol.for(\"react.lazy\"),\n REACT_ACTIVITY_TYPE = Symbol.for(\"react.activity\"),\n REACT_CLIENT_REFERENCE = Symbol.for(\"react.client.reference\"),\n ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,\n hasOwnProperty = Object.prototype.hasOwnProperty,\n isArrayImpl = Array.isArray,\n createTask = console.createTask\n ? console.createTask\n : function () {\n return null;\n };\n React = {\n react_stack_bottom_frame: function (callStackForError) {\n return callStackForError();\n }\n };\n var specialPropKeyWarningShown;\n var didWarnAboutElementRef = {};\n var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(\n React,\n UnknownOwner\n )();\n var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));\n var didWarnAboutKeySpread = {};\n exports.Fragment = REACT_FRAGMENT_TYPE;\n exports.jsx = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !1,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n exports.jsxs = function (type, config, maybeKey) {\n var trackActualOwner =\n 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;\n return jsxDEVImpl(\n type,\n config,\n maybeKey,\n !0,\n trackActualOwner\n ? Error(\"react-stack-top-frame\")\n : unknownOwnerDebugStack,\n trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask\n );\n };\n })();\n"],"x_google_ignoreList":[0],"mappings":"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"}
@@ -1,23 +0,0 @@
1
- import { __commonJSMin as e } from "../../../_virtual/_rolldown/runtime.js";
2
- //#region node_modules/react/cjs/react-jsx-runtime.production.js
3
- var t = /* @__PURE__ */ e(((e) => {
4
- var t = Symbol.for("react.transitional.element"), n = Symbol.for("react.fragment");
5
- function r(e, n, r) {
6
- var i = null;
7
- if (r !== void 0 && (i = "" + r), n.key !== void 0 && (i = "" + n.key), "key" in n) for (var a in r = {}, n) a !== "key" && (r[a] = n[a]);
8
- else r = n;
9
- return n = r.ref, {
10
- $$typeof: t,
11
- type: e,
12
- key: i,
13
- ref: n === void 0 ? null : n,
14
- props: r
15
- };
16
- }
17
- e.Fragment = n, e.jsx = r, e.jsxs = r;
18
- }));
19
- //#endregion
20
- export default t();
21
- export { t as require_react_jsx_runtime_production };
22
-
23
- //# sourceMappingURL=react-jsx-runtime.production.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"react-jsx-runtime.production.js","names":[],"sources":["../../../../node_modules/react/cjs/react-jsx-runtime.production.js"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n"],"x_google_ignoreList":[0],"mappings":";;;CAWA,IAAI,IAAqB,OAAO,IAAI,6BAA6B,EAC/D,IAAsB,OAAO,IAAI,iBAAiB;CACpD,SAAS,EAAQ,GAAM,GAAQ,GAAU;EACvC,IAAI,IAAM;AAGV,MAFW,MAAX,KAAK,MAAmB,IAAM,KAAK,IACxB,EAAO,QAAlB,KAAK,MAAqB,IAAM,KAAK,EAAO,MACxC,SAAS,EAEX,MAAK,IAAI,KADT,IAAW,EAAE,EACQ,EACnB,CAAU,MAAV,UAAuB,EAAS,KAAY,EAAO;MAChD,KAAW;AAElB,SADA,IAAS,EAAS,KACX;GACL,UAAU;GACJ;GACD;GACL,KAAgB,MAAX,KAAK,IAAwB,OAAT;GACzB,OAAO;GACR;;AAIH,CAFA,EAAQ,WAAW,GACnB,EAAQ,MAAM,GACd,EAAQ,OAAO"}
@@ -1,12 +0,0 @@
1
- import { __commonJSMin as e } from "../../_virtual/_rolldown/runtime.js";
2
- import { require_react_jsx_runtime_production as t } from "./cjs/react-jsx-runtime.production.js";
3
- import { require_react_jsx_runtime_development as n } from "./cjs/react-jsx-runtime.development.js";
4
- //#region node_modules/react/jsx-runtime.js
5
- var r = /* @__PURE__ */ e(((e, r) => {
6
- process.env.NODE_ENV === "production" ? r.exports = t() : r.exports = n();
7
- }));
8
- //#endregion
9
- export default r();
10
- export { r as require_jsx_runtime };
11
-
12
- //# sourceMappingURL=jsx-runtime.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsx-runtime.js","names":[],"sources":["../../../node_modules/react/jsx-runtime.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n"],"x_google_ignoreList":[0],"mappings":";;;;;AAEA,CAAA,QAAA,IAAA,aAA6B,eAC3B,EAAO,UAAA,GAAA,GAEP,EAAO,UAAA,GAAA"}
@@ -1,12 +0,0 @@
1
- import { require_jsx_runtime as e } from "../../../node_modules/react/jsx-runtime.js";
2
- import { Button as t } from "antd";
3
- //#region src/components/Button/index.tsx
4
- var n = e(), r = ({ children: e, onClick: r }) => /* @__PURE__ */ (0, n.jsx)(t, {
5
- className: "rounded-lg",
6
- onClick: r,
7
- children: e
8
- });
9
- //#endregion
10
- export { r as Button };
11
-
12
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../../../src/components/Button/index.tsx"],"sourcesContent":["import { Button as AntButton } from \"antd\";\nimport type { FC, ReactNode } from \"react\";\n\nexport interface ButtonProps {\n children: ReactNode;\n onClick?: () => void;\n}\n\nexport const Button: FC<ButtonProps> = ({ children, onClick }) => {\n return (\n <AntButton className=\"rounded-lg\" onClick={onClick}>\n {children}\n </AntButton>\n );\n};\n"],"mappings":";;;aAQa,KAA2B,EAAE,aAAU,iBAEhD,iBAAA,GAAA,EAAA,KAAC,GAAD;CAAW,WAAU;CAAsB;CACxC;CACS,CAAA"}
@@ -1,13 +0,0 @@
1
- import { require_jsx_runtime as e } from "../../../node_modules/react/jsx-runtime.js";
2
- //#region src/components/Card/index.tsx
3
- var t = e(), n = ({ title: e, children: n }) => /* @__PURE__ */ (0, t.jsxs)("div", {
4
- className: "p-4 border rounded-2xl shadow-sm",
5
- children: [/* @__PURE__ */ (0, t.jsx)("h3", {
6
- className: "text-lg font-semibold mb-2",
7
- children: e
8
- }), /* @__PURE__ */ (0, t.jsx)("div", { children: n })]
9
- });
10
- //#endregion
11
- export { n as Card };
12
-
13
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../../../src/components/Card/index.tsx"],"sourcesContent":["import type { FC, ReactNode } from \"react\";\n\nexport interface CardProps {\n title: string;\n children: ReactNode;\n}\n\nexport const Card: FC<CardProps> = ({ title, children }) => {\n return (\n <div className=\"p-4 border rounded-2xl shadow-sm\">\n <h3 className=\"text-lg font-semibold mb-2\">{title}</h3>\n <div>{children}</div>\n </div>\n );\n};\n"],"mappings":";;aAOa,KAAuB,EAAE,UAAO,kBAEzC,iBAAA,GAAA,EAAA,MAAC,OAAD;CAAK,WAAU;WAAf,CACE,iBAAA,GAAA,EAAA,KAAC,MAAD;EAAI,WAAU;YAA8B;EAAW,CAAA,EACvD,iBAAA,GAAA,EAAA,KAAC,OAAD,EAAM,aAAe,CAAA,CACjB"}
@@ -1,21 +0,0 @@
1
- import { require_jsx_runtime as e } from "../../../node_modules/react/jsx-runtime.js";
2
- import { Button as t } from "../Button/index.js";
3
- import { Card as n } from "../Card/index.js";
4
- //#region src/components/TestComposite/index.tsx
5
- var r = e(), i = () => /* @__PURE__ */ (0, r.jsx)(n, {
6
- title: "Test component",
7
- children: /* @__PURE__ */ (0, r.jsxs)("div", {
8
- className: "flex gap-2",
9
- children: [/* @__PURE__ */ (0, r.jsx)(t, {
10
- onClick: () => console.log("Click 1"),
11
- children: "Click me"
12
- }), /* @__PURE__ */ (0, r.jsx)(t, {
13
- onClick: () => console.log("Click 2"),
14
- children: "Or me"
15
- })]
16
- })
17
- });
18
- //#endregion
19
- export { i as TestComposite };
20
-
21
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../../../src/components/TestComposite/index.tsx"],"sourcesContent":["import type { FC } from \"react\";\nimport { Button } from \"../Button\";\nimport { Card } from \"../Card\";\n\nexport const TestComposite: FC = () => {\n return (\n <Card title=\"Test component\">\n <div className=\"flex gap-2\">\n <Button onClick={() => console.log(\"Click 1\")}>Click me</Button>\n\n <Button onClick={() => console.log(\"Click 2\")}>Or me</Button>\n </div>\n </Card>\n );\n};\n"],"mappings":";;;;aAIa,UAET,iBAAA,GAAA,EAAA,KAAC,GAAD;CAAM,OAAM;WACV,iBAAA,GAAA,EAAA,MAAC,OAAD;EAAK,WAAU;YAAf,CACE,iBAAA,GAAA,EAAA,KAAC,GAAD;GAAQ,eAAe,QAAQ,IAAI,UAAU;aAAE;GAAiB,CAAA,EAEhE,iBAAA,GAAA,EAAA,KAAC,GAAD;GAAQ,eAAe,QAAQ,IAAI,UAAU;aAAE;GAAc,CAAA,CACzD;;CACD,CAAA"}
package/dist/src/index.js DELETED
@@ -1,5 +0,0 @@
1
- /* empty css */
2
- import { Button as e } from "./components/Button/index.js";
3
- import { Card as t } from "./components/Card/index.js";
4
- import { TestComposite as n } from "./components/TestComposite/index.js";
5
- export { e as Button, t as Card, n as TestComposite };