@thenamespace/ens-components 2.0.0-alpha → 2.0.0
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/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.js +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -12470,13 +12470,13 @@ const TextRecords = ({
|
|
|
12470
12470
|
className: "ns-text-suggestion",
|
|
12471
12471
|
onClick: () => handleTextAdded(record.key),
|
|
12472
12472
|
children: [
|
|
12473
|
-
/* @__PURE__ */ jsx(Icon, { size:
|
|
12473
|
+
/* @__PURE__ */ jsx(Icon, { size: 16, color: "grey", name: record.icon }),
|
|
12474
12474
|
/* @__PURE__ */ jsx(Text, { className: "ns-mt-1", size: "xs", weight: "medium", children: record.label })
|
|
12475
12475
|
]
|
|
12476
12476
|
}
|
|
12477
12477
|
) }, record.key)),
|
|
12478
12478
|
isGeneralCategory && /* @__PURE__ */ jsx("div", { className: "col col-lg-3 col-sm-6 col-6", children: /* @__PURE__ */ jsxs("div", { className: "ns-text-suggestion", onClick: handleAddCustomDraft, children: [
|
|
12479
|
-
/* @__PURE__ */ jsx(Icon, { size:
|
|
12479
|
+
/* @__PURE__ */ jsx(Icon, { size: 16, color: "grey", name: "circle-help" }),
|
|
12480
12480
|
/* @__PURE__ */ jsx(Text, { className: "ns-mt-1", size: "xs", weight: "medium", children: "Custom" })
|
|
12481
12481
|
] }) })
|
|
12482
12482
|
] })
|
|
@@ -12610,7 +12610,7 @@ const AddressRecords = ({
|
|
|
12610
12610
|
className: "ns-text-suggestion",
|
|
12611
12611
|
onClick: () => handleAddressAdded(record.coinType),
|
|
12612
12612
|
children: [
|
|
12613
|
-
/* @__PURE__ */ jsx(ChainIcon, { size:
|
|
12613
|
+
/* @__PURE__ */ jsx(ChainIcon, { size: 16, chain: record.chainName }),
|
|
12614
12614
|
/* @__PURE__ */ jsx(Text, { className: "ns-mt-1", size: "xs", weight: "medium", children: record.label })
|
|
12615
12615
|
]
|
|
12616
12616
|
}
|
|
@@ -12682,7 +12682,7 @@ const ContenthashRecord = ({
|
|
|
12682
12682
|
className: "ns-text-suggestion",
|
|
12683
12683
|
onClick: () => onContenthashAdded(record.protocol),
|
|
12684
12684
|
children: [
|
|
12685
|
-
/* @__PURE__ */ jsx(ContenthashIcon, { size:
|
|
12685
|
+
/* @__PURE__ */ jsx(ContenthashIcon, { size: 16, protocol: record.protocol }),
|
|
12686
12686
|
/* @__PURE__ */ jsx(Text, { className: "ns-mt-1", size: "xs", weight: "medium", children: record.label })
|
|
12687
12687
|
]
|
|
12688
12688
|
}
|