enwawa-ui 1.7.0 → 1.7.1
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 +12 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +35 -9
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +35 -9
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/CHANGELOG.md +0 -750
package/lib/index.d.ts
CHANGED
|
@@ -2944,9 +2944,17 @@ export interface OrLoginLayoutProps {
|
|
|
2944
2944
|
*/
|
|
2945
2945
|
$carouselBackgroundSrc?: string;
|
|
2946
2946
|
/**
|
|
2947
|
-
|
|
2947
|
+
* Images to show into carousel
|
|
2948
|
+
*/
|
|
2949
|
+
carouselImages: string[] | {
|
|
2950
|
+
src?: string;
|
|
2951
|
+
component?: React.ReactNode;
|
|
2952
|
+
text?: string;
|
|
2953
|
+
}[];
|
|
2954
|
+
/**
|
|
2955
|
+
* Carousel text props
|
|
2948
2956
|
*/
|
|
2949
|
-
|
|
2957
|
+
carouselTextProps?: AtTextProps;
|
|
2950
2958
|
/**
|
|
2951
2959
|
* Content to render into layout
|
|
2952
2960
|
*/
|
|
@@ -3671,8 +3679,9 @@ export interface TmRechargePageProps<FormType = any> {
|
|
|
3671
3679
|
*/
|
|
3672
3680
|
onClickLeftArrow?: () => void;
|
|
3673
3681
|
editable?: boolean;
|
|
3682
|
+
rate?: number;
|
|
3674
3683
|
}
|
|
3675
|
-
export const TmRechargePage: <FormType extends Store>({ title, subtitle, balance, cardTitle, fontSize, height, ruleAmount, form, initialValues, onFinish, amountPlaceholder, currenciesOptions, defaultCurrency, amountToPayText, amountToPay, couponText, discount, totalText, taxText, tax, payBtn, drawerTitle, open, paymentMethods, currentPaymentSelectedFields, disabledButton, showPaymentMethods, termsDisclaimer, onCloseDrawer, showLeftArrow, onClickLeftArrow, editable, }: TmRechargePageProps<FormType>) => import("react/jsx-runtime").JSX.Element;
|
|
3684
|
+
export const TmRechargePage: <FormType extends Store>({ title, subtitle, balance, cardTitle, fontSize, height, ruleAmount, form, initialValues, onFinish, amountPlaceholder, currenciesOptions, defaultCurrency, amountToPayText, amountToPay, couponText, discount, totalText, taxText, tax, payBtn, drawerTitle, open, paymentMethods, currentPaymentSelectedFields, disabledButton, showPaymentMethods, termsDisclaimer, onCloseDrawer, showLeftArrow, onClickLeftArrow, editable, rate }: TmRechargePageProps<FormType>) => import("react/jsx-runtime").JSX.Element;
|
|
3676
3685
|
export interface PaymentMethod {
|
|
3677
3686
|
value: string;
|
|
3678
3687
|
icon?: React.ReactNode;
|