@thenamespace/ens-components 0.0.6-alpha → 0.0.7-alpha

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.
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface ArbSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const ArbSvg: React.FC<ArbSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface BaseSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const BaseSvg: React.FC<BaseSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface BitcoinSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const BitcoinSvg: React.FC<BitcoinSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface CeloSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const CeloSvg: React.FC<CeloSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface EthSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const EthSvg: React.FC<EthSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface MaticSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const MaticSvg: React.FC<MaticSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface OpSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const OpSvg: React.FC<OpSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface SolSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const SolSvg: React.FC<SolSvgProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface ZoraSvgProps extends React.SVGProps<SVGSVGElement> {
3
+ size?: number;
4
+ }
5
+ export declare const ZoraSvg: React.FC<ZoraSvgProps>;
6
+ export {};
@@ -10,7 +10,7 @@ export interface SupportedTextRecord {
10
10
  category: TextRecordCategory;
11
11
  label?: string;
12
12
  placeholder?: string;
13
+ socialRecordPrefix?: string;
13
14
  }
14
15
  export declare const supportedTexts: SupportedTextRecord[];
15
- export declare const getSupportedTextMap: () => Record<string, SupportedTextRecord>;
16
16
  export declare const getSupportedText: (key: string) => SupportedTextRecord | undefined;
@@ -1 +1 @@
1
- export type ChainName = "eth" | "arb" | "base" | "bitcoin" | "matic" | "op" | "sol" | "zora";
1
+ export type ChainName = "eth" | "arb" | "base" | "bitcoin" | "matic" | "op" | "sol" | "zora" | "celo";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thenamespace/ens-components",
3
- "version": "0.0.6-alpha",
3
+ "version": "0.0.7-alpha",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -15,7 +15,7 @@
15
15
  "@ensdomains/address-encoder": "^1.1.4",
16
16
  "@ensdomains/content-hash": "^3.0.0",
17
17
  "@tanstack/react-query": "^5.87.0",
18
- "lucide-react": "^0.542.0",
18
+ "lucide-react": ">=0.525.0",
19
19
  "react": ">=18",
20
20
  "react-dom": ">=18",
21
21
  "viem": "^2.36.0",