@ape.swap/bonds-sdk 1.0.39 → 1.0.40

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.
@@ -91,6 +91,6 @@ var Bonds = function (_a) {
91
91
  }
92
92
  });
93
93
  }); };
94
- return (_jsx("div", { children: _jsx("button", __assign({ onClick: handleApprove }, { children: "Approve USDT..." })) }));
94
+ return (_jsx("div", { children: _jsx("button", __assign({ onClick: handleApprove }, { children: "Approve USD TEST" })) }));
95
95
  };
96
96
  export default Bonds;
package/dist/index.d.ts CHANGED
@@ -1,3 +1 @@
1
- import MyComponent from './components/MyComponent';
2
- import Bonds from './components/Bonds';
3
- export { MyComponent, Bonds };
1
+ import './index.css';
package/dist/index.js CHANGED
@@ -1,4 +1,7 @@
1
- // src/index.ts
2
- import MyComponent from './components/MyComponent';
3
- import Bonds from './components/Bonds';
4
- export { MyComponent, Bonds };
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import React from 'react';
3
+ import ReactDOM from 'react-dom/client';
4
+ import './index.css';
5
+ import App from './App';
6
+ var root = ReactDOM.createRoot(document.getElementById('root'));
7
+ root.render(_jsx(React.StrictMode, { children: _jsx(App, {}) }));
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ape Bond SDK",
4
4
  "author": "Ape Bond",
5
5
  "license": "MIT",
6
- "version": "1.0.39",
6
+ "version": "1.0.40",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.es.js",
9
9
  "types": "dist/index.d.ts",
@@ -1 +0,0 @@
1
- import '@testing-library/jest-dom';
@@ -1,5 +0,0 @@
1
- // jest-dom adds custom jest matchers for asserting on DOM nodes.
2
- // allows you to do things like:
3
- // expect(element).toHaveTextContent(/react/i)
4
- // learn more: https://github.com/testing-library/jest-dom
5
- import '@testing-library/jest-dom';