@gearbox-protocol/permissionless-ui 1.2.8 → 1.2.10

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.
@@ -62,7 +62,7 @@ function Footer({
62
62
  appName,
63
63
  legalReferences
64
64
  }) {
65
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("footer", { className: "border-t border-gray-800 bg-background px-4 py-8 mt-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-8 items-top", children: [
65
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("footer", { className: "border-t border-gray-800 bg-background px-4 py-2 mt-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-8 items-top", children: [
66
66
  /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex flex-col gap-8 h-full justify-between", children: [
67
67
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_app_logo.AppLogo, { appName, size: "small" }),
68
68
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_legal_disclaimer.LegalDisclaimer, { hrefs: legalReferences })
@@ -41,7 +41,7 @@ module.exports = __toCommonJS(table_exports);
41
41
  var import_jsx_runtime = require("react/jsx-runtime");
42
42
  var React = __toESM(require("react"));
43
43
  var import_utils = __toESM(require('../utils/index.js'));
44
- const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
44
+ const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "rounded-xl border relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
45
45
  "table",
46
46
  {
47
47
  ref,
@@ -47,6 +47,7 @@ function TokenIcon({ symbol, size = 48 }) {
47
47
  alt: `${symbol} icon`,
48
48
  width: size,
49
49
  height: size,
50
+ className: "rounded-full",
50
51
  onError: () => setSrc(defaultSrc)
51
52
  }
52
53
  );
@@ -29,7 +29,7 @@ function Footer({
29
29
  appName,
30
30
  legalReferences
31
31
  }) {
32
- return /* @__PURE__ */ jsx("footer", { className: "border-t border-gray-800 bg-background px-4 py-8 mt-auto", children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-8 items-top", children: [
32
+ return /* @__PURE__ */ jsx("footer", { className: "border-t border-gray-800 bg-background px-4 py-2 mt-auto", children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-8 items-top", children: [
33
33
  /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-8 h-full justify-between", children: [
34
34
  /* @__PURE__ */ jsx(AppLogo, { appName, size: "small" }),
35
35
  /* @__PURE__ */ jsx(LegalDisclaimer, { hrefs: legalReferences })
@@ -1,7 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
  import cn from "../utils/index.js";
4
- const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
4
+ const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "rounded-xl border relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
5
5
  "table",
6
6
  {
7
7
  ref,
@@ -14,6 +14,7 @@ function TokenIcon({ symbol, size = 48 }) {
14
14
  alt: `${symbol} icon`,
15
15
  width: size,
16
16
  height: size,
17
+ className: "rounded-full",
17
18
  onError: () => setSrc(defaultSrc)
18
19
  }
19
20
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/permissionless-ui",
3
- "version": "1.2.8",
3
+ "version": "1.2.10",
4
4
  "description": "Internal UI components",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/index.js",