mtxuilib 0.0.172 → 0.0.176

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,2 @@
1
+ declare const App: () => import("react").JSX.Element;
2
+ export default App;
@@ -0,0 +1,6 @@
1
+ const App = () => {
2
+ return (<div>
3
+
4
+ </div>);
5
+ };
6
+ export default App;
@@ -0,0 +1,2 @@
1
+ import * as React from "react";
2
+ export declare const Button: ({ children }: React.PropsWithChildren) => React.JSX.Element;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ console.log("mt-react-comp-pack(button src loaded)");
3
+ export const Button = ({ children }) => {
4
+ return (<button>
5
+ <span>demobutton6</span>
6
+ {children}
7
+ </button>);
8
+ };
@@ -0,0 +1 @@
1
+ export declare const hellofoo: () => string;
@@ -0,0 +1,3 @@
1
+ export const hellofoo = () => {
2
+ return "hello";
3
+ };
@@ -1 +1 @@
1
- export declare const HelloButton;
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import ReactDOM from "react-dom";
3
+ import App from "./App";
4
+ ReactDOM.render(<React.StrictMode>
5
+ <App />
6
+ </React.StrictMode>, document.getElementById('root'));
@@ -0,0 +1 @@
1
+ export { Button } from './components/button/Button';
@@ -0,0 +1,2 @@
1
+ export { Button } from './components/button/Button';
2
+ console.log("mt-react-comp-pack lib loaded");
package/dist/hello.js ADDED
@@ -0,0 +1,66 @@
1
+ /*
2
+ * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
3
+ * This devtool is neither made for production nor for readable output files.
4
+ * It uses "eval()" calls to create a separate source file in the browser devtools.
5
+ * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
6
+ * or disable the default devtool with "devtool: false".
7
+ * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
8
+ */
9
+ /******/ (() => { // webpackBootstrap
10
+ /******/ "use strict";
11
+ /******/ var __webpack_modules__ = ({
12
+
13
+ /***/ "./src/hello.ts":
14
+ /*!**********************!*\
15
+ !*** ./src/hello.ts ***!
16
+ \**********************/
17
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
18
+
19
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ hellofoo: () => (/* binding */ hellofoo)\n/* harmony export */ });\nconst hellofoo = () => {\n return \"hello\";\n};\n\n\n//# sourceURL=webpack://mtxuilib/./src/hello.ts?");
20
+
21
+ /***/ })
22
+
23
+ /******/ });
24
+ /************************************************************************/
25
+ /******/ // The require scope
26
+ /******/ var __webpack_require__ = {};
27
+ /******/
28
+ /************************************************************************/
29
+ /******/ /* webpack/runtime/define property getters */
30
+ /******/ (() => {
31
+ /******/ // define getter functions for harmony exports
32
+ /******/ __webpack_require__.d = (exports, definition) => {
33
+ /******/ for(var key in definition) {
34
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
35
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
36
+ /******/ }
37
+ /******/ }
38
+ /******/ };
39
+ /******/ })();
40
+ /******/
41
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
42
+ /******/ (() => {
43
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
44
+ /******/ })();
45
+ /******/
46
+ /******/ /* webpack/runtime/make namespace object */
47
+ /******/ (() => {
48
+ /******/ // define __esModule on exports
49
+ /******/ __webpack_require__.r = (exports) => {
50
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
51
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
52
+ /******/ }
53
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
54
+ /******/ };
55
+ /******/ })();
56
+ /******/
57
+ /************************************************************************/
58
+ /******/
59
+ /******/ // startup
60
+ /******/ // Load entry module and return exports
61
+ /******/ // This entry module can't be inlined because the eval devtool is used.
62
+ /******/ var __webpack_exports__ = {};
63
+ /******/ __webpack_modules__["./src/hello.ts"](0, __webpack_exports__, __webpack_require__);
64
+ /******/
65
+ /******/ })()
66
+ ;
package/dist/lib.js ADDED
@@ -0,0 +1,118 @@
1
+ /*
2
+ * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
3
+ * This devtool is neither made for production nor for readable output files.
4
+ * It uses "eval()" calls to create a separate source file in the browser devtools.
5
+ * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
6
+ * or disable the default devtool with "devtool: false".
7
+ * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
8
+ */
9
+ /******/ (() => { // webpackBootstrap
10
+ /******/ "use strict";
11
+ /******/ var __webpack_modules__ = ({
12
+
13
+ /***/ "./src/components/button/Button.tsx":
14
+ /*!******************************************!*\
15
+ !*** ./src/components/button/Button.tsx ***!
16
+ \******************************************/
17
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
18
+
19
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Button: () => (/* binding */ Button)\n/* harmony export */ });\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ \"react\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);\n\nconsole.log(\"mt-react-comp-pack(button src loaded)\");\nconst Button = ({ children }) => {\n return (react__WEBPACK_IMPORTED_MODULE_0__.createElement(\"button\", null,\n react__WEBPACK_IMPORTED_MODULE_0__.createElement(\"span\", null, \"demobutton6\"),\n children));\n};\n\n\n//# sourceURL=webpack://mtxuilib/./src/components/button/Button.tsx?");
20
+
21
+ /***/ }),
22
+
23
+ /***/ "./src/lib.tsx":
24
+ /*!*********************!*\
25
+ !*** ./src/lib.tsx ***!
26
+ \*********************/
27
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
28
+
29
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Button: () => (/* reexport safe */ _components_button_Button__WEBPACK_IMPORTED_MODULE_0__.Button)\n/* harmony export */ });\n/* harmony import */ var _components_button_Button__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/button/Button */ \"./src/components/button/Button.tsx\");\n\n// 参考: https://github.com/aroomforimprovement/react-comp-pack/tree/1-tiny-npm-component-package\nconsole.log(\"mt-react-comp-pack lib loaded\");\n\n\n//# sourceURL=webpack://mtxuilib/./src/lib.tsx?");
30
+
31
+ /***/ }),
32
+
33
+ /***/ "react":
34
+ /*!**************************************************************************************!*\
35
+ !*** external {"commonjs":"react","commonjs2":"react","amd":"React","root":"React"} ***!
36
+ \**************************************************************************************/
37
+ /***/ ((module) => {
38
+
39
+ module.exports = undefined;
40
+
41
+ /***/ })
42
+
43
+ /******/ });
44
+ /************************************************************************/
45
+ /******/ // The module cache
46
+ /******/ var __webpack_module_cache__ = {};
47
+ /******/
48
+ /******/ // The require function
49
+ /******/ function __webpack_require__(moduleId) {
50
+ /******/ // Check if module is in cache
51
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
52
+ /******/ if (cachedModule !== undefined) {
53
+ /******/ return cachedModule.exports;
54
+ /******/ }
55
+ /******/ // Create a new module (and put it into the cache)
56
+ /******/ var module = __webpack_module_cache__[moduleId] = {
57
+ /******/ // no module.id needed
58
+ /******/ // no module.loaded needed
59
+ /******/ exports: {}
60
+ /******/ };
61
+ /******/
62
+ /******/ // Execute the module function
63
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
64
+ /******/
65
+ /******/ // Return the exports of the module
66
+ /******/ return module.exports;
67
+ /******/ }
68
+ /******/
69
+ /************************************************************************/
70
+ /******/ /* webpack/runtime/compat get default export */
71
+ /******/ (() => {
72
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
73
+ /******/ __webpack_require__.n = (module) => {
74
+ /******/ var getter = module && module.__esModule ?
75
+ /******/ () => (module['default']) :
76
+ /******/ () => (module);
77
+ /******/ __webpack_require__.d(getter, { a: getter });
78
+ /******/ return getter;
79
+ /******/ };
80
+ /******/ })();
81
+ /******/
82
+ /******/ /* webpack/runtime/define property getters */
83
+ /******/ (() => {
84
+ /******/ // define getter functions for harmony exports
85
+ /******/ __webpack_require__.d = (exports, definition) => {
86
+ /******/ for(var key in definition) {
87
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
88
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
89
+ /******/ }
90
+ /******/ }
91
+ /******/ };
92
+ /******/ })();
93
+ /******/
94
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
95
+ /******/ (() => {
96
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
97
+ /******/ })();
98
+ /******/
99
+ /******/ /* webpack/runtime/make namespace object */
100
+ /******/ (() => {
101
+ /******/ // define __esModule on exports
102
+ /******/ __webpack_require__.r = (exports) => {
103
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
104
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
105
+ /******/ }
106
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
107
+ /******/ };
108
+ /******/ })();
109
+ /******/
110
+ /************************************************************************/
111
+ /******/
112
+ /******/ // startup
113
+ /******/ // Load entry module and return exports
114
+ /******/ // This entry module can't be inlined because the eval devtool is used.
115
+ /******/ var __webpack_exports__ = __webpack_require__("./src/lib.tsx");
116
+ /******/
117
+ /******/ })()
118
+ ;
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.webworker.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.esnext.object.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.4.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/App.tsx","../src/hello.ts","../../../node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.11/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.8/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.2.67/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.2.22/node_modules/@types/react-dom/index.d.ts","../src/index.tsx","../src/components/button/Button.tsx","../src/lib.tsx","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.11.29/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.12/node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"db88e2781075c7bca86634724f38a132de718ddf3a470a3a2cdb182f4364af9e","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"07a3b95ac73eb0286495270a467ef783107afba1cfc31662168c3e601bbdbb56","signature":"e1bb9e8ea4ca2b2829cbce96c3367931a6d84bce6d09122ddf16dcd63fea2860"},{"version":"882da0ca988d8ec24fe678e27b3714e311307159d0e25e47ac06546719a3be0c","signature":"995d56a012ea674589d98870c48d1cda85db6392462cbb95f71b987b8fb7e697"},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","9ed09d4538e25fc79cefc5e7b5bfbae0464f06d2984f19da009f85d13656c211","b1bf87add0ccfb88472cd4c6013853d823a7efb791c10bb7a11679526be91eda",{"version":"fa519cc7186714fddd1dd619ec14f80ecb911fc8da38c795130ef704a12d1515","affectsGlobalScope":true},"7ac7ef12f7ece6464d83d2d56fea727260fb954fdd51a967e94f97b8595b714b",{"version":"dc988a000ff8647c93b63e18f03146e4721fd728a87ab20372d77a1772c0f923","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0f6d1d891c13d82ed59239cc115a32486f51e77b914026a17de9a45c1dc96c4a","signature":"98ac33c704e70b04c51216f185a754aea033f7a75c5d5100b9d9e27de02f7fda"},{"version":"0da695a3e1169cc4247ade67e031b3a10005dc9e6deb0273609d43ff8b7f86dc","signature":"abf3047146785b2a709bfc2fa2aa3d21ba78d7a882964fd410653030f2587de2"},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true}],"root":[71,72,[79,81]],"options":{"allowImportingTsExtensions":false,"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./esm","removeComments":true,"rootDir":"../src","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[171],[173,176],[82],[118],[119,124,152],[120,131,132,139,149,160],[120,121,131,139],[122,161],[123,124,132,140],[124,149,157],[125,127,131,139],[118,126],[127,128],[131],[129,131],[118,131],[131,132,133,149,160],[131,132,133,146,149,152],[116,119,165],[127,131,134,139,149,160],[131,132,134,135,139,149,157,160],[134,136,149,157,160],[82,83,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167],[131,137],[138,160,165],[127,131,139,149],[140],[141],[118,142],[143,159,165],[144],[145],[131,146,147],[146,148,161,163],[119,131,149,150,151,152],[119,149,151],[149,150],[152],[153],[118,149],[131,155,156],[155,156],[124,139,149,157],[158],[139,159],[119,134,145,160],[124,161],[149,162],[138,163],[164],[119,124,131,133,142,149,160,163,165],[149,166],[77],[73,74,75,76],[169,175],[173],[170,174],[172],[93,97,160],[93,149,160],[88],[90,93,157,160],[139,157],[168],[88,168],[90,93,139,160],[85,86,89,92,119,131,149,160],[85,91],[89,93,119,152,160,168],[119,168],[109,119,168],[87,88,168],[93],[87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115],[93,100,101],[91,93,101,102],[92],[85,88,93],[93,97,101,102],[97],[91,93,96,160],[85,90,91,93,97,100],[119,149],[88,93,109,119,165,168],[71,77,78],[80]],"referencedMap":[[172,1],[177,2],[82,3],[83,3],[118,4],[119,5],[120,6],[121,7],[122,8],[123,9],[124,10],[125,11],[126,12],[127,13],[128,13],[130,14],[129,15],[131,16],[132,17],[133,18],[117,19],[134,20],[135,21],[136,22],[168,23],[137,24],[138,25],[139,26],[140,27],[141,28],[142,29],[143,30],[144,31],[145,32],[146,33],[147,33],[148,34],[149,35],[151,36],[150,37],[152,38],[153,39],[154,40],[155,41],[156,42],[157,43],[158,44],[159,45],[160,46],[161,47],[162,48],[163,49],[164,50],[165,51],[166,52],[78,53],[77,54],[176,55],[174,56],[175,57],[173,58],[100,59],[107,60],[99,59],[114,61],[91,62],[90,63],[113,64],[108,65],[111,66],[93,67],[92,68],[88,69],[87,70],[110,71],[89,72],[94,73],[98,73],[116,74],[115,73],[102,75],[103,76],[105,77],[101,78],[104,79],[109,64],[96,80],[97,81],[106,82],[86,83],[112,84],[80,53],[79,85],[81,86]],"exportedModulesMap":[[172,1],[177,2],[82,3],[83,3],[118,4],[119,5],[120,6],[121,7],[122,8],[123,9],[124,10],[125,11],[126,12],[127,13],[128,13],[130,14],[129,15],[131,16],[132,17],[133,18],[117,19],[134,20],[135,21],[136,22],[168,23],[137,24],[138,25],[139,26],[140,27],[141,28],[142,29],[143,30],[144,31],[145,32],[146,33],[147,33],[148,34],[149,35],[151,36],[150,37],[152,38],[153,39],[154,40],[155,41],[156,42],[157,43],[158,44],[159,45],[160,46],[161,47],[162,48],[163,49],[164,50],[165,51],[166,52],[78,53],[77,54],[176,55],[174,56],[175,57],[173,58],[100,59],[107,60],[99,59],[114,61],[91,62],[90,63],[113,64],[108,65],[111,66],[93,67],[92,68],[88,69],[87,70],[110,71],[89,72],[94,73],[98,73],[116,74],[115,73],[102,75],[103,76],[105,77],[101,78],[104,79],[109,64],[96,80],[97,81],[106,82],[86,83],[112,84],[71,53],[80,53],[81,86]],"semanticDiagnosticsPerFile":[169,172,171,177,82,83,118,119,120,121,122,123,124,125,126,127,128,130,129,131,132,133,117,167,134,135,136,168,137,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,75,78,73,77,76,84,170,74,176,174,175,173,69,70,12,13,16,15,2,17,18,19,20,21,22,23,24,3,25,4,26,30,27,28,29,31,32,33,5,34,35,36,37,6,41,38,39,40,42,7,43,48,49,44,45,46,47,8,53,50,51,52,54,9,55,56,57,60,58,59,61,62,10,1,63,11,67,65,64,68,66,14,100,107,99,114,91,90,113,108,111,93,92,88,87,110,89,94,95,98,85,116,115,102,103,105,101,104,109,96,97,106,86,112,71,80,72,79,81]},"version":"5.4.2"}
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "mtxuilib",
3
- "version": "0.0.172",
4
- "license": "MIT",
5
- "type": "module",
6
- "main-": "src/index.ts",
7
- "types-": "src/index.ts",
3
+ "version": "0.0.176",
8
4
  "publishConfig": {
9
5
  "access": "public"
10
6
  },
7
+ "main": "dist/lib.js",
8
+ "module": "dist/lib.js",
9
+ "license": "ISC",
11
10
  "typesVersions": {
12
11
  "*": {
13
12
  "*": [
@@ -36,288 +35,50 @@
36
35
  "files": [
37
36
  "dist/**/*"
38
37
  ],
39
- "dependencies": {
40
- "@bufbuild/protobuf": "^1.7.2",
41
- "@bufbuild/protoplugin": "^1.7.2",
42
- "@connectrpc/connect": "^1.4.0",
43
- "@connectrpc/connect-web": "^1.4.0",
44
- "@emotion/react": "^11.10.4",
45
- "@emotion/styled": "^11.10.4",
46
- "@headlessui/react": "^1.7.17",
47
- "@heyputer/kv.js": "^0.1.5",
48
- "@hookform/resolvers": "^3.3.2",
49
- "@monaco-editor/react": "^4.5.1",
50
- "@portive/client": "^10.0.3",
51
- "@radix-ui/react-accessible-icon": "^1.0.3",
52
- "@radix-ui/react-accordion": "^1.1.2",
53
- "@radix-ui/react-alert-dialog": "^1.0.4",
54
- "@radix-ui/react-aspect-ratio": "^1.0.3",
55
- "@radix-ui/react-avatar": "^1.0.3",
56
- "@radix-ui/react-checkbox": "^1.0.4",
57
- "@radix-ui/react-collapsible": "^1.0.3",
58
- "@radix-ui/react-context-menu": "^2.1.4",
59
- "@radix-ui/react-dialog": "^1.0.4",
60
- "@radix-ui/react-dropdown-menu": "^2.0.5",
61
- "@radix-ui/react-hover-card": "^1.0.6",
62
- "@radix-ui/react-icons": "^1.3.0",
63
- "@radix-ui/react-label": "^2.0.2",
64
- "@radix-ui/react-menubar": "^1.0.3",
65
- "@radix-ui/react-navigation-menu": "^1.1.3",
66
- "@radix-ui/react-popover": "^1.0.6",
67
- "@radix-ui/react-progress": "^1.0.3",
68
- "@radix-ui/react-radio-group": "^1.1.3",
69
- "@radix-ui/react-scroll-area": "^1.0.4",
70
- "@radix-ui/react-select": "^1.2.2",
71
- "@radix-ui/react-separator": "^1.0.3",
72
- "@radix-ui/react-slider": "^1.1.2",
73
- "@radix-ui/react-slot": "^1.0.2",
74
- "@radix-ui/react-switch": "^1.0.3",
75
- "@radix-ui/react-tabs": "^1.0.4",
76
- "@radix-ui/react-toast": "^1.1.4",
77
- "@radix-ui/react-toggle": "^1.0.3",
78
- "@radix-ui/react-toggle-group": "^1.0.4",
79
- "@radix-ui/react-toolbar": "^1.0.4",
80
- "@radix-ui/react-tooltip": "^1.0.6",
81
- "@syncfusion/ej2-react-grids": "*",
82
- "@tanstack/react-query": "^5.28.0",
83
- "@tanstack/react-query-devtools": "^5.28.0",
84
- "@tanstack/react-query-next-experimental": "^5.26.3",
85
- "@tiptap/core": "^2.2.4",
86
- "@tiptap/extension-code-block-lowlight": "^2.2.4",
87
- "@tiptap/extension-color": "^2.2.4",
88
- "@tiptap/extension-document": "^2.2.4",
89
- "@tiptap/extension-dropcursor": "^2.2.4",
90
- "@tiptap/extension-highlight": "^2.2.4",
91
- "@tiptap/extension-horizontal-rule": "^2.2.4",
92
- "@tiptap/extension-image": "^2.2.4",
93
- "@tiptap/extension-link": "^2.2.4",
94
- "@tiptap/extension-list-item": "^2.2.4",
95
- "@tiptap/extension-paragraph": "^2.2.4",
96
- "@tiptap/extension-placeholder": "^2.2.4",
97
- "@tiptap/extension-task-item": "^2.2.4",
98
- "@tiptap/extension-task-list": "^2.2.4",
99
- "@tiptap/extension-text": "^2.2.4",
100
- "@tiptap/extension-text-style": "^2.2.4",
101
- "@tiptap/extension-underline": "^2.2.4",
102
- "@tiptap/pm": "^2.2.4",
103
- "@tiptap/react": "^2.2.4",
104
- "@tiptap/starter-kit": "^2.2.4",
105
- "@tiptap/suggestion": "^2.2.4",
106
- "@upstash/ratelimit": "^0.4.3",
107
- "@vercel/analytics": "^1.0.1",
108
- "@vercel/blob": "^0.9.2",
109
- "@vercel/kv": "^0.2.1",
110
- "ai": "^2.2.33",
111
- "browserify-zlib": "^0.2.0",
112
- "cheerio": "latest",
113
- "class-variance-authority": "^0.7.0",
114
- "clsx": "^2.1.0",
115
- "cmdk": "^0.2.1",
116
- "cookies-next": "^4.1.0",
117
- "crawlee": "^3.8.1",
118
- "cross-env": "^7.0.3",
119
- "date-fns": "^2.30.0",
120
- "devalue": "^4.3.2",
121
- "edge-runtime": "^2.5.9",
122
- "eventsource-parser": "^0.1.0",
123
- "geist": "^1.1.0",
124
- "highlight.js": "^11.9.0",
125
- "hono": "^3.12.12",
126
- "html-react-parser": "^5.1.8",
127
- "html-webpack-plugin": "^5.5.3",
128
- "htmlparser2": "^9.1.0",
129
- "immer": "^10.0.3",
130
- "input-otp": "^1.0.1",
131
- "is-hotkey": "^0.2.0",
132
- "jotai": "2.7.0",
133
- "less": "^4.1.3",
134
- "less-loader": "11.1.0",
135
- "lodash": "^4.17.21",
136
- "lowlight": "^3.1.0",
137
- "lru-cache": "^10.2.0",
138
- "lucide-react": "^0.344.0",
139
- "mini-css-extract-plugin": "^2.7.6",
140
- "nanoid": "^5.0.4",
141
- "next": "^14.1.0",
142
- "next-json": "^0.2.2",
143
- "next-nprogress-bar": "2.3.4",
144
- "next-themes": "^0.2.1",
145
- "novel": "^0.2.13",
146
- "nprogress": "^0.2.0",
147
- "octokit": "^3.1.2",
148
- "openai": "^4.27.0",
149
- "path-to-regexp": "6.2.1",
150
- "prism-react-renderer": "^2.3.1",
151
- "prismjs": "^1.29.0",
38
+ "peerDependencies": {
152
39
  "react": "^18.2.0",
153
- "react-day-picker": "^8.9.1",
154
- "react-dnd": "^16.0.1",
155
- "react-dnd-html5-backend": "^16.0.1",
156
- "react-dom": "^18.2.0",
157
- "react-easy-infinite-scroll-hook": "^2.1.4",
158
- "react-error-boundary": "^4.0.11",
159
- "react-hook-form": "^7.49.3",
160
- "react-hotkeys-hook": "^4.5.0",
161
- "react-lite-youtube-embed": "^2.4.0",
162
- "react-markdown": "9.0.1",
163
- "react-moveable": "^0.56.0",
164
- "react-refresh": "^0.14.0",
165
- "react-resizable-panels": "^1.0.6",
166
- "react-syntax-highlighter": "^15.5.0",
167
- "react-tweet": "^3.2.0",
168
- "rehype-external-links": "^3.0.0",
169
- "rehype-sanitize": "^6.0.0",
170
- "remark-gfm": "^4.0.0",
171
- "slate": "^0.101.5",
172
- "slate-history": "^0.100.0",
173
- "slate-react": "^0.101.5",
174
- "sonner": "^1.4.3",
175
- "stable-hash": "^0.0.4",
176
- "superjson": "latest",
177
- "tippy.js": "^6.3.7",
178
- "tiptap-markdown": "^0.8.9",
179
- "ts-pattern": "^5.0.6",
180
- "tunnel-rat": "^0.1.2",
181
- "use-debounce": "^9.0.3",
182
- "vaul": "^0.8.0",
183
- "video.js": "^8.9.0",
184
- "zod": "^3.22.2",
185
- "zod-to-json-schema": "^3.22.4",
186
- "zustand": "^4.4.7"
40
+ "react-dom": "^18.2.0"
187
41
  },
188
42
  "devDependencies": {
189
- "@babel/core": "^7.24.0",
190
- "@babel/preset-env": "^7.19.1",
191
- "@babel/preset-react": "^7.18.6",
192
- "@bufbuild/buf": "^1.29.0",
193
- "@bufbuild/jest-environment-jsdom": "^0.1.1",
194
- "@bufbuild/protobuf": "^1.7.2",
195
- "@bufbuild/protoc-gen-es": "^1.7.2",
196
- "@changesets/cli": "^2.27.1",
197
- "@changesets/get-github-info": "^0.6.0",
198
- "@chromatic-com/storybook": "^1.2.18",
199
- "@cloudflare/kv-asset-handler": "^0.2.0",
200
- "@cloudflare/workers-types": "^4.20240222.0",
201
- "@connectrpc/connect": "^1.4.0",
202
- "@connectrpc/connect-web": "^1.4.0",
203
- "@connectrpc/protoc-gen-connect-es": "^1.4.0",
204
- "@edge-runtime/jest-environment": "^2.3.10",
205
- "@edge-runtime/jest-expect": "^1.2.0",
206
- "@edge-runtime/ponyfill": "^2.4.2",
207
- "@jest/globals": "^29.7.0",
208
- "@netlify/plugin-nextjs": "^4.29.2",
209
- "@playwright/test": "^1.28.1",
210
- "@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
211
- "@storybook/addon-essentials": "^8.0.0",
212
- "@storybook/addon-interactions": "^8.0.0",
213
- "@storybook/addon-links": "^8.0.0",
214
- "@storybook/addon-onboarding": "^8.0.0",
215
- "@storybook/addon-themes": "^8.0.0",
216
- "@storybook/blocks": "^8.0.0",
217
- "@storybook/client-logger": "next",
218
- "@storybook/nextjs": "^8.0.0",
219
- "@storybook/react": "^8.0.0",
220
- "@storybook/test": "^8.0.0",
221
- "@storybook/test-runner": "^0.17.0",
43
+ "@babel/core": "^7.17.9",
44
+ "@babel/preset-env": "^7.16.11",
45
+ "@babel/preset-react": "^7.16.7",
222
46
  "@tailwindcss/forms": "^0.5.3",
223
47
  "@tailwindcss/typography": "^0.5.10",
224
- "@tanstack/react-table": "^8.9.1",
225
- "@testing-library/dom": "^9.3.4",
226
- "@testing-library/jest-dom": "^6.4.2",
227
- "@testing-library/react": "^14.2.1",
228
- "@testing-library/user-event": "^14.5.2",
229
- "@types/jest": "^29.5.8",
230
- "@types/lodash": "^4.14.202",
231
- "@types/node": "^20.11.25",
232
- "@types/nprogress": "^0.2.3",
233
- "@types/prismjs": "^1.26.3",
234
- "@types/react": "^18.2.64",
235
- "@types/react-dom": "^18",
236
- "@types/react-syntax-highlighter": "^15.5.11",
237
- "@types/video.js": "^7.3.56",
238
- "@types/webpack-env": "^1.18.0",
239
- "@typescript-eslint/eslint-plugin": "^6.0.0",
240
- "@typescript-eslint/parser": "^6.0.0",
241
- "autoprefixer": "^10.0.1",
242
- "babel-jest": "^29.7.0",
243
- "babel-loader": "^8.2.5",
244
- "bundle-declarations-webpack-plugin": "^5.1.1",
245
- "clean-webpack-plugin": "^4.0.0",
246
- "concurrently": "^7.6.0",
247
- "copy-webpack-plugin": "^12.0.2",
248
- "cross-env": "^7.0.3",
249
- "css-loader": "^6.10.0",
250
- "dotenv": "^16.4.5",
251
- "dotenv-cli": "^7.4.1",
252
- "esbuild": "^0.19.8",
253
- "eslint": "^8.54.0",
254
- "eslint-config-next": "^14.1.0",
255
- "eslint-config-prettier": "latest",
256
- "eslint-import-resolver-alias": "^1.1.2",
257
- "eslint-plugin-import": "^2.26.0",
258
- "eslint-plugin-jest": "latest",
259
- "eslint-plugin-next-on-pages": "latest",
260
- "eslint-plugin-prettier": "latest",
261
- "eslint-plugin-react": "^7.31.10",
262
- "eslint-plugin-react-hooks": "latest",
263
- "eslint-plugin-storybook": "^0.8.0",
264
- "eslint-plugin-tailwindcss": "latest",
265
- "eslint-plugin-testing-library": "latest",
266
- "eslint-plugin-unused-imports": "latest",
267
- "extract-files": "^13.0.0",
268
- "file-loader": "^6.2.0",
269
- "fork-ts-checker-webpack-plugin": "^7.2.13",
270
- "http-server": "^14.1.1",
271
- "jest": "^29.7.0",
272
- "jest-environment-jsdom": "^29.7.0",
273
- "jest-environment-node": "^29.7.0",
274
- "jest-puppeteer": "^10.0.1",
275
- "jsdom": "^24.0.0",
276
- "less": "^4.1.3",
277
- "less-loader": "^11.1.0",
278
- "mini-css-extract-plugin": "^2.7.6",
279
- "monaco-editor": "0.45.0",
280
- "playwright": "^1.28.1",
281
- "postcss": "^8",
282
- "postcss-loader": "^6.2.1",
283
- "postcss-preset-env": "^9.3.0",
284
- "prettier": "^3.2.5",
285
- "prettier-plugin-tailwindcss": "^0.3.0",
286
- "puppeteer": "^22.4.1",
287
- "react-refresh": "^0.14.0",
288
- "react-test-renderer": "^18.2.0",
289
- "rimraf": "^5.0.5",
290
- "sass": "^1.55.0",
291
- "sass-loader": "^13.1.0",
292
- "slate-hyperscript": "^0.100.0",
293
- "storybook": "^8.0.0",
294
- "style-loader": "^3.3.4",
295
- "tailwind-merge": "^2.2.1",
296
- "tailwindcss": "^3.3.0",
297
- "tailwindcss-animate": "^1.0.7",
298
- "ts-jest": "^29.0.3",
48
+ "babel-loader": "^8.2.4",
49
+ "css-loader": "^6.7.1",
50
+ "react": "^18.2.0",
51
+ "react-dom": "^18.2.0",
52
+ "run-script-os": "^1.1.6",
53
+ "sass": "^1.50.0",
54
+ "sass-loader": "^12.6.0",
55
+ "style-loader": "^3.3.1",
299
56
  "ts-loader": "^9.5.1",
300
- "ts-node": "^10.9.1",
301
57
  "tsc-alias": "^1.8.8",
302
58
  "typescript": "^5.4.2",
303
- "typescript-declaration-webpack-plugin": "^0.3.0",
304
- "vite": "^5.1.4",
305
- "vitest": "1.3.1",
306
- "wait-on": "^7.2.0",
307
- "webpack": "^5.89.0",
308
- "webpack-cli": "^5.1.4",
309
- "wrangler": "^3.32.0"
59
+ "webpack": "^5.72.0",
60
+ "webpack-cli": "^5.1.4"
310
61
  },
311
- "other": {
312
- "@connectrpc/connect-next": "^1.4.0",
313
- "jotai": "^2.6.4",
314
- "jotai-x": "^1.2.1",
315
- "@babel/plugin-transform-private-methods": "^7.23.3",
316
- "whatwg-fetch": "^3.6.20",
317
- "whatwg-url": "^14.0.0",
318
- "preset": "link:@storybook/nextjs/preset"
62
+ "browserslist": {
63
+ "production": [
64
+ ">0.2%",
65
+ "not dead",
66
+ "not op_mini all"
67
+ ],
68
+ "development": [
69
+ "last 1 chrome version",
70
+ "last 1 firefox version",
71
+ "last 1 safari version"
72
+ ]
73
+ },
74
+ "dependencies": {
75
+ "uuid": "^8.3.2"
319
76
  },
320
77
  "scripts": {
321
- "build": "webpack --mode production"
78
+ "build": "rimraf ./dist/ && pnpm run build:tsc && webpack --mode development",
79
+ "build:tsc": "npx tsc --project tsconfig.build.json --module esnext && tsc-alias --project tsconfig.build.json && echo 'tsc Build complete'",
80
+ "build-dev": "webpack --mode development",
81
+ "build-prod": "webpack --mode production",
82
+ "start-server": "webpack serve --hot --mode development"
322
83
  }
323
84
  }
package/dist/esm/index.js DELETED
@@ -1 +0,0 @@
1
- !function(e,t){if("object"==typeof exports&&"object"==typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var o=t();for(var l in o)("object"==typeof exports?exports:e)[l]=o[l]}}(self,()=>(()=>{"use strict";var e={d:(t,o)=>{for(var l in o)e.o(o,l)&&!e.o(t,l)&&Object.defineProperty(t,l,{enumerable:!0,get:o[l]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{MtxuilibButton:()=>l,default:()=>n,foo:()=>o});const o=()=>(console.log("foo at mtxuilib"),"foo at mtxuilib"),l=()=>React.createElement(React.Fragment,null,React.createElement("button",null,"MtxuilibButton"));console.log("mtxuilib loaded......");const n={HelloButton:()=>React.createElement("div",{className:"hello-wrapper"},"Hello world!",React.createElement("button",null,"hello button")),foo:o,value1:"value1"};return t})());
package/dist/index.html DELETED
@@ -1 +0,0 @@
1
- <!doctype html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script><script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script><link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/20.3.47/material.css"/><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-base/dist/ej2-base.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-data/dist/ej2-data.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-buttons/dist/ej2-buttons.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-splitbuttons/dist/ej2-splitbuttons.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-popups/dist/ej2-popups.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-navigations/dist/ej2-navigations.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-inputs/dist/ej2-inputs.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-dropdowns/dist/ej2-dropdowns.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-calendars/dist/ej2-calendars.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-lists/dist/ej2-lists.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-excel-export/dist/ej2-excel-export.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-pdf-export/dist/ej2-pdf-export.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-file-utils/dist/ej2-file-utils.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-compression/dist/ej2-compression.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-grids/dist/ej2-grids.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-react-base/dist/ej2-react-base.min.js"></script><script src="https://cdn.syncfusion.com/ej2/20.3.47/ej2-react-grids/dist/ej2-react-grids.min.js"></script><title>Document</title><script defer="defer" src="esm/index.js"></script></head><body><div id="root"></div></body></html>