@bluxcc/core 0.1.16 → 0.1.18

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Blux Wallet Kit - The Missing Piece for Stellar dApps
2
2
 
3
- ![image](https://blux.cc/bluxProduct.svg)
3
+ ![image](https://blux.cc/bluxIntro.jpg)
4
4
 
5
5
  Blux is a **comprehensive authentication and wallet connect kit** designed for Stellar dApps.
6
6
  It simplifies onboarding by integrating multiple authentication methods, including **wallets, email, passkey, and socials**.
@@ -28,3 +28,6 @@ export declare const WalletConnectLogo: ({ fill, background, }: {
28
28
  background?: string;
29
29
  }) => import("react/jsx-runtime").JSX.Element;
30
30
  export declare const KleverLogo: () => import("react/jsx-runtime").JSX.Element;
31
+ export declare const LedgerLogo: ({ fill }: {
32
+ fill?: string;
33
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ type ButtonCardProps = {
3
+ size?: 'small' | 'medium';
4
+ startIcon: React.ReactNode;
5
+ endArrow?: boolean;
6
+ isRecent?: boolean;
7
+ label?: string;
8
+ onClick?: () => void;
9
+ };
10
+ declare const ButtonCard: ({ size, startIcon, endArrow, isRecent, label, onClick, }: ButtonCardProps) => import("react/jsx-runtime").JSX.Element;
11
+ export default ButtonCard;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ type InputCardProps = {
3
+ startIcon: React.ReactNode;
4
+ onChange?: (value: string) => void;
5
+ onEnter?: (value: string) => void;
6
+ onSubmit?: (value: string) => void;
7
+ inputType?: 'text' | 'password' | 'number' | 'email' | string;
8
+ };
9
+ declare const InputCard: ({ startIcon, onChange, onEnter, onSubmit, inputType, }: InputCardProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default InputCard;
package/dist/enums.d.ts CHANGED
@@ -7,7 +7,8 @@ export declare enum SupportedWallet {
7
7
  Hana = "Hana",
8
8
  WalletConnect = "Wallet Connect",
9
9
  Hot = "Hot",
10
- Klever = "Klever"
10
+ Klever = "Klever",
11
+ Ledger = "Ledger"
11
12
  }
12
13
  export declare enum StellarNetwork {
13
14
  PUBLIC = "Public Global Stellar Network ; September 2015",