enwawa-ui 1.5.4 → 1.6.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/lib/index.d.ts CHANGED
@@ -2684,6 +2684,14 @@ export interface OrTableModuleLayoutProps {
2684
2684
  * padding
2685
2685
  */
2686
2686
  padding?: string;
2687
+ /**
2688
+ * whether to show left arrow
2689
+ */
2690
+ leftArrow?: boolean;
2691
+ /**
2692
+ * left arrow click event
2693
+ */
2694
+ onClickLeftArrow?: () => void;
2687
2695
  }
2688
2696
  export const OrTableModuleLayout: React.FC<OrTableModuleLayoutProps>;
2689
2697
  export interface OrHeaderBalanceProps {
@@ -2703,6 +2711,14 @@ export interface OrHeaderBalanceProps {
2703
2711
  * container padding
2704
2712
  */
2705
2713
  padding?: string;
2714
+ /**
2715
+ * whether to show left arrow
2716
+ */
2717
+ showLeftArrow?: boolean;
2718
+ /**
2719
+ * left arrow click event
2720
+ */
2721
+ onClickLeftArrow?: () => void;
2706
2722
  }
2707
2723
  export const OrHeaderBalance: React.FC<OrHeaderBalanceProps>;
2708
2724
  type _Size1 = 'large' | 'middle' | 'small';
@@ -3662,6 +3678,14 @@ export interface TmRechargePageProps {
3662
3678
  * onChange radio group
3663
3679
  */
3664
3680
  onChangeRadio?: MlRadioGroupProps['onChange'];
3681
+ /**
3682
+ * whether to show left arrow
3683
+ */
3684
+ showLeftArrow?: boolean;
3685
+ /**
3686
+ * left arrow click event
3687
+ */
3688
+ onClickLeftArrow?: () => void;
3665
3689
  }
3666
3690
  export const TmRechargePage: React.FC<TmRechargePageProps>;
3667
3691
  export interface OrPaymentCardProps {