@thenamespace/ens-components 0.0.6-alpha → 0.0.8-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.
- package/dist/index.d.ts +3 -3
- package/dist/index.js +319 -199
- package/dist/index.js.map +1 -1
- package/dist/types/components/atoms/chain-icon/icons/ArbSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/BaseSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/BitcoinSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/CeloSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/EthSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/MaticSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/OpSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/SolSvg.d.ts +6 -0
- package/dist/types/components/atoms/chain-icon/icons/ZoraSvg.d.ts +6 -0
- package/dist/types/constants/records/textConstants.d.ts +1 -1
- package/dist/types/types/chain.d.ts +1 -1
- package/dist/types/utils/resolver.d.ts +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -186,9 +186,9 @@ interface SupportedTextRecord {
|
|
|
186
186
|
category: TextRecordCategory;
|
|
187
187
|
label?: string;
|
|
188
188
|
placeholder?: string;
|
|
189
|
+
socialRecordPrefix?: string;
|
|
189
190
|
}
|
|
190
191
|
declare const supportedTexts: SupportedTextRecord[];
|
|
191
|
-
declare const getSupportedTextMap: () => Record<string, SupportedTextRecord>;
|
|
192
192
|
declare const getSupportedText: (key: string) => SupportedTextRecord | undefined;
|
|
193
193
|
|
|
194
194
|
declare const useWaitForTransaction: ({ chainId: number }: {
|
|
@@ -8558,7 +8558,7 @@ declare enum ContenthashProtocol {
|
|
|
8558
8558
|
Swarm = "swarm"
|
|
8559
8559
|
}
|
|
8560
8560
|
|
|
8561
|
-
type ChainName = "eth" | "arb" | "base" | "bitcoin" | "matic" | "op" | "sol" | "zora";
|
|
8561
|
+
type ChainName = "eth" | "arb" | "base" | "bitcoin" | "matic" | "op" | "sol" | "zora" | "celo";
|
|
8562
8562
|
|
|
8563
8563
|
declare const capitalize: (value: string) => string;
|
|
8564
8564
|
declare const equalsIgnoreCase: (a: string, b: string) => boolean;
|
|
@@ -8650,5 +8650,5 @@ interface ThemeProviderProps {
|
|
|
8650
8650
|
declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
|
|
8651
8651
|
declare const useTheme: () => ThemeContextValue;
|
|
8652
8652
|
|
|
8653
|
-
export { Alert, Button, ChainIcon, ContenthashIcon, ContenthashProtocol, Dropdown, ENS_RESOLVER_ABI, EnsRecordsForm, Icon, Input, MULTICALL, Modal, PendingTransaction, SET_ADDRESS_FUNC, SET_CONTENTHASH_FUNC, SET_TEXT_FUNC, SelectRecordsForm, Text, TextRecordCategory, ThemeProvider, Tooltip, TransactionState, capitalize, convertEVMChainIdToCoinType, deepCopy, equalsIgnoreCase, getEnsRecordsDiff, getSupportedAddressByCoin, getSupportedAddressByName, getSupportedAddressMap, getSupportedChashByProtocol, getSupportedText,
|
|
8653
|
+
export { Alert, Button, ChainIcon, ContenthashIcon, ContenthashProtocol, Dropdown, ENS_RESOLVER_ABI, EnsRecordsForm, Icon, Input, MULTICALL, Modal, PendingTransaction, SET_ADDRESS_FUNC, SET_CONTENTHASH_FUNC, SET_TEXT_FUNC, SelectRecordsForm, Text, TextRecordCategory, ThemeProvider, Tooltip, TransactionState, capitalize, convertEVMChainIdToCoinType, deepCopy, equalsIgnoreCase, getEnsRecordsDiff, getSupportedAddressByCoin, getSupportedAddressByName, getSupportedAddressMap, getSupportedChashByProtocol, getSupportedText, isContenthashValid, supportedAddresses, supportedContenthashRecords, supportedTexts, useTheme, useWaitForTransaction, useWeb3Client };
|
|
8654
8654
|
export type { AlertProps, AlertVariant, ButtonProps, ButtonSize, ButtonVariant, ChainName, DropdownProps, EnsAddressRecord, EnsContenthashRecord, EnsRecords, EnsRecordsDiff, EnsTextRecord, IconName, IconProps, InputProps, InputSize, InputType, ModalProps, ModalSize, SelectRecordsFormProps, SupportedContenthashRecord, SupportedEnsAddress, SupportedTextRecord, TextColor, TextProps, TextSize, TextWeight, ThemeContextValue, ThemeName, ThemeProviderProps, TooltipPosition, TooltipProps };
|