enwawa-ui 1.5.1 → 1.5.3
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 +8 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +8 -3
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +8 -3
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2135,6 +2135,10 @@ export interface OrColProps {
|
|
|
2135
2135
|
* gap between columns
|
|
2136
2136
|
*/
|
|
2137
2137
|
$gap?: number;
|
|
2138
|
+
/**
|
|
2139
|
+
* align items
|
|
2140
|
+
*/
|
|
2141
|
+
$alignItems?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
2138
2142
|
/**
|
|
2139
2143
|
* Container position type (relative, absolute, fixed, sticky)
|
|
2140
2144
|
*/
|
|
@@ -3682,6 +3686,10 @@ export interface TmRechargePageProps {
|
|
|
3682
3686
|
* onCloseDrawer function
|
|
3683
3687
|
*/
|
|
3684
3688
|
onCloseDrawer?: (e: React.MouseEvent | React.KeyboardEvent) => void;
|
|
3689
|
+
/**
|
|
3690
|
+
* onChange radio group
|
|
3691
|
+
*/
|
|
3692
|
+
onChangeRadio?: MlRadioGroupProps['onChange'];
|
|
3685
3693
|
}
|
|
3686
3694
|
export const TmRechargePage: React.FC<TmRechargePageProps>;
|
|
3687
3695
|
export interface OrPaymentCardProps {
|