enwawa-ui 1.5.3 → 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 +25 -29
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +59 -146
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +58 -145
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2183,22 +2183,6 @@ export interface OrCountryCardProps {
|
|
|
2183
2183
|
onClick?: React.MouseEventHandler<HTMLDivElement>;
|
|
2184
2184
|
}
|
|
2185
2185
|
export const OrCountryCard: React.FC<OrCountryCardProps>;
|
|
2186
|
-
export interface OrCvcInputProps {
|
|
2187
|
-
/**
|
|
2188
|
-
* Disabled input
|
|
2189
|
-
*/
|
|
2190
|
-
disabled?: boolean;
|
|
2191
|
-
/**
|
|
2192
|
-
* Rules for validation
|
|
2193
|
-
* @default []
|
|
2194
|
-
*/
|
|
2195
|
-
rules?: MlFromItemProps['rules'];
|
|
2196
|
-
/**
|
|
2197
|
-
* inputs label
|
|
2198
|
-
*/
|
|
2199
|
-
label?: string | string[];
|
|
2200
|
-
}
|
|
2201
|
-
export const OrCvcInput: React.FC<OrCvcInputProps>;
|
|
2202
2186
|
export interface OrLayoutProps {
|
|
2203
2187
|
/**
|
|
2204
2188
|
* Children component
|
|
@@ -2626,18 +2610,6 @@ export interface OrPhoneInputProps {
|
|
|
2626
2610
|
rules?: MlFromItemProps['rules'];
|
|
2627
2611
|
}
|
|
2628
2612
|
export const OrPhoneInput: React.FC<OrPhoneInputProps>;
|
|
2629
|
-
export interface OrNameInputProps {
|
|
2630
|
-
/**
|
|
2631
|
-
* Rules for validation
|
|
2632
|
-
* @default []
|
|
2633
|
-
*/
|
|
2634
|
-
rules?: MlFromItemProps['rules'];
|
|
2635
|
-
/**
|
|
2636
|
-
* inputs label
|
|
2637
|
-
*/
|
|
2638
|
-
label?: string | string[];
|
|
2639
|
-
}
|
|
2640
|
-
export const OrNameInput: React.FC<OrNameInputProps>;
|
|
2641
2613
|
export interface OrFormInLineItem {
|
|
2642
2614
|
/**
|
|
2643
2615
|
* Type of components available for the form
|
|
@@ -2684,7 +2656,7 @@ export interface OrFormInLineItem {
|
|
|
2684
2656
|
format?: string;
|
|
2685
2657
|
}
|
|
2686
2658
|
export interface OrFormItemsInlineProps {
|
|
2687
|
-
inputs?: OrFormInLineItem[]
|
|
2659
|
+
inputs?: Array<OrFormInLineItem | OrFormInLineItem[]>;
|
|
2688
2660
|
}
|
|
2689
2661
|
export const OrFormItemsInline: React.FC<OrFormItemsInlineProps>;
|
|
2690
2662
|
export interface OrTableModuleLayoutProps {
|
|
@@ -2712,6 +2684,14 @@ export interface OrTableModuleLayoutProps {
|
|
|
2712
2684
|
* padding
|
|
2713
2685
|
*/
|
|
2714
2686
|
padding?: string;
|
|
2687
|
+
/**
|
|
2688
|
+
* whether to show left arrow
|
|
2689
|
+
*/
|
|
2690
|
+
leftArrow?: boolean;
|
|
2691
|
+
/**
|
|
2692
|
+
* left arrow click event
|
|
2693
|
+
*/
|
|
2694
|
+
onClickLeftArrow?: () => void;
|
|
2715
2695
|
}
|
|
2716
2696
|
export const OrTableModuleLayout: React.FC<OrTableModuleLayoutProps>;
|
|
2717
2697
|
export interface OrHeaderBalanceProps {
|
|
@@ -2731,6 +2711,14 @@ export interface OrHeaderBalanceProps {
|
|
|
2731
2711
|
* container padding
|
|
2732
2712
|
*/
|
|
2733
2713
|
padding?: string;
|
|
2714
|
+
/**
|
|
2715
|
+
* whether to show left arrow
|
|
2716
|
+
*/
|
|
2717
|
+
showLeftArrow?: boolean;
|
|
2718
|
+
/**
|
|
2719
|
+
* left arrow click event
|
|
2720
|
+
*/
|
|
2721
|
+
onClickLeftArrow?: () => void;
|
|
2734
2722
|
}
|
|
2735
2723
|
export const OrHeaderBalance: React.FC<OrHeaderBalanceProps>;
|
|
2736
2724
|
type _Size1 = 'large' | 'middle' | 'small';
|
|
@@ -3690,6 +3678,14 @@ export interface TmRechargePageProps {
|
|
|
3690
3678
|
* onChange radio group
|
|
3691
3679
|
*/
|
|
3692
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;
|
|
3693
3689
|
}
|
|
3694
3690
|
export const TmRechargePage: React.FC<TmRechargePageProps>;
|
|
3695
3691
|
export interface OrPaymentCardProps {
|