@gearbox-protocol/permissionless-ui 1.2.24 → 1.2.26

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.
@@ -29,7 +29,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
29
29
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
30
  var expendable_card_exports = {};
31
31
  __export(expendable_card_exports, {
32
- ExpendableCard: () => ExpendableCard
32
+ ExpandableCard: () => ExpandableCard
33
33
  });
34
34
  module.exports = __toCommonJS(expendable_card_exports);
35
35
  var import_jsx_runtime = require("react/jsx-runtime");
@@ -37,7 +37,7 @@ var import_lucide_react = require("lucide-react");
37
37
  var React = __toESM(require("react"));
38
38
  var import_utils = __toESM(require('../../utils/index.js'));
39
39
  var import_card = require('./card.js');
40
- function ExpendableCard({ header, children }) {
40
+ function ExpandableCard({ header, children }) {
41
41
  const [isExpanded, setIsExpanded] = React.useState(false);
42
42
  return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_card.Card, { children: [
43
43
  /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
@@ -68,5 +68,5 @@ function ExpendableCard({ header, children }) {
68
68
  }
69
69
  // Annotate the CommonJS export names for ESM import in node:
70
70
  0 && (module.exports = {
71
- ExpendableCard
71
+ ExpandableCard
72
72
  });
@@ -17,10 +17,10 @@ var cards_exports = {};
17
17
  module.exports = __toCommonJS(cards_exports);
18
18
  __reExport(cards_exports, require('./card.js'), module.exports);
19
19
  __reExport(cards_exports, require('./danger-zone.js'), module.exports);
20
- __reExport(cards_exports, require('./expendable-card.js'), module.exports);
20
+ __reExport(cards_exports, require('./Expandable-card.js'), module.exports);
21
21
  // Annotate the CommonJS export names for ESM import in node:
22
22
  0 && (module.exports = {
23
23
  ...require('./card.js'),
24
24
  ...require('./danger-zone.js'),
25
- ...require('./expendable-card.js')
25
+ ...require('./Expandable-card.js')
26
26
  });
@@ -53,7 +53,7 @@ function TableCellAsset({
53
53
  size: "sm",
54
54
  className: "text-muted-foreground hover:text-white p-0 h-auto",
55
55
  onClick: () => window.open(`${explorerUrl}/address/${assetAddress}`, "_blank"),
56
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ExternalLink, { className: "h-3 w-3" })
56
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ExternalLink, {})
57
57
  }
58
58
  )
59
59
  ] })
@@ -4,7 +4,7 @@ import { ChevronDown } from "lucide-react";
4
4
  import * as React from "react";
5
5
  import cn from "../../utils/index.js";
6
6
  import { Card, CardContent } from "./card.js";
7
- function ExpendableCard({ header, children }) {
7
+ function ExpandableCard({ header, children }) {
8
8
  const [isExpanded, setIsExpanded] = React.useState(false);
9
9
  return /* @__PURE__ */ jsxs(Card, { children: [
10
10
  /* @__PURE__ */ jsxs(
@@ -34,5 +34,5 @@ function ExpendableCard({ header, children }) {
34
34
  ] });
35
35
  }
36
36
  export {
37
- ExpendableCard
37
+ ExpandableCard
38
38
  };
@@ -1,3 +1,3 @@
1
1
  export * from "./card.js";
2
2
  export * from "./danger-zone.js";
3
- export * from "./expendable-card.js";
3
+ export * from "./Expandable-card.js";
@@ -28,7 +28,7 @@ function TableCellAsset({
28
28
  size: "sm",
29
29
  className: "text-muted-foreground hover:text-white p-0 h-auto",
30
30
  onClick: () => window.open(`${explorerUrl}/address/${assetAddress}`, "_blank"),
31
- children: /* @__PURE__ */ jsx(ExternalLink, { className: "h-3 w-3" })
31
+ children: /* @__PURE__ */ jsx(ExternalLink, {})
32
32
  }
33
33
  )
34
34
  ] })
@@ -1,7 +1,7 @@
1
1
  import * as React from "react";
2
- interface ExpendableCardProps {
2
+ interface ExpandableCardProps {
3
3
  header: React.ReactNode;
4
4
  children: React.ReactNode;
5
5
  }
6
- declare function ExpendableCard({ header, children }: ExpendableCardProps): import("react/jsx-runtime").JSX.Element;
7
- export { ExpendableCard };
6
+ declare function ExpandableCard({ header, children }: ExpandableCardProps): import("react/jsx-runtime").JSX.Element;
7
+ export { ExpandableCard };
@@ -1,3 +1,3 @@
1
1
  export * from "./card";
2
2
  export * from "./danger-zone";
3
- export * from "./expendable-card";
3
+ export * from "./Expandable-card";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/permissionless-ui",
3
- "version": "1.2.24",
3
+ "version": "1.2.26",
4
4
  "description": "Internal UI components",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/index.js",