@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.
- package/dist/components/Bonds.js +1 -1
- package/dist/index.d.ts +1 -3
- package/dist/index.js +7 -4
- package/package.json +1 -1
- package/dist/setupTests.d.ts +0 -1
- package/dist/setupTests.js +0 -5
package/dist/components/Bonds.js
CHANGED
|
@@ -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
|
|
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
package/dist/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
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
package/dist/setupTests.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import '@testing-library/jest-dom';
|
package/dist/setupTests.js
DELETED