@cetusprotocol/terminal 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cetus-swap.cjs.js +39 -62
- package/dist/cetus-swap.cjs.js.gz +0 -0
- package/dist/cetus-swap.es.js +14384 -15013
- package/dist/cetus-swap.es.js.gz +0 -0
- package/dist/cetus-swap.umd.js +39 -62
- package/dist/cetus-swap.umd.js.gz +0 -0
- package/dist/shims/react-jsx-runtime.d.ts +8 -0
- package/package.json +3 -3
|
Binary file
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { createElement, Fragment, Key } from 'react';
|
|
2
|
+
type JsxProps = Record<string, unknown> | null;
|
|
3
|
+
type JsxType = Parameters<typeof createElement>[0];
|
|
4
|
+
declare function createJsxElement(type: JsxType, props: JsxProps, key?: Key): import('react').ReactElement<{}, string | import('react').JSXElementConstructor<any>>;
|
|
5
|
+
export { Fragment };
|
|
6
|
+
export declare const jsx: typeof createJsxElement;
|
|
7
|
+
export declare const jsxs: typeof createJsxElement;
|
|
8
|
+
export declare const jsxDEV: typeof createJsxElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cetusprotocol/terminal",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"main": "dist/cetus-swap.cjs.js",
|
|
6
6
|
"module": "dist/cetus-swap.es.js",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"@mysten/dapp-kit": ">=1.0.3",
|
|
11
11
|
"@mysten/sui": ">=2.6.0",
|
|
12
|
-
"react": "
|
|
13
|
-
"react-dom": "
|
|
12
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
13
|
+
"react-dom": "^18.2.0 || ^19.0.0"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"dev": "vite --config html.vite.config.ts",
|