@wavy/react-ui 0.0.62 → 0.0.63
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/dist/main.d.ts +4 -1
- package/dist/main.js +12 -12
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -1250,7 +1250,7 @@ interface BasicSpanProps extends BasicStyleProps, BasicHtmlElementCoreProps<HTML
|
|
|
1250
1250
|
strikeThrough?: boolean;
|
|
1251
1251
|
underline?: boolean;
|
|
1252
1252
|
textAlign?: TextAlign;
|
|
1253
|
-
ellipsis?: boolean;
|
|
1253
|
+
ellipsis?: boolean | "native";
|
|
1254
1254
|
clickable?: boolean;
|
|
1255
1255
|
sx?: InlineCss;
|
|
1256
1256
|
children?: React.ReactNode;
|
|
@@ -2847,6 +2847,8 @@ declare function VerifyButton(props: VerifyButtonProps): react_jsx_runtime.JSX.E
|
|
|
2847
2847
|
interface MoneyDisplayCardProps {
|
|
2848
2848
|
label?: string;
|
|
2849
2849
|
truncateFee?: boolean | ((fee: number) => boolean);
|
|
2850
|
+
/**@default "1.5rem" */
|
|
2851
|
+
padding?: BasicDivProps["padding"];
|
|
2850
2852
|
amount: number;
|
|
2851
2853
|
/**
|
|
2852
2854
|
* @default "JMD"
|
|
@@ -2876,6 +2878,7 @@ interface MoneyDisplayCardProps {
|
|
|
2876
2878
|
slotProps?: Partial<Record<"label" | "fee" | "currency", Partial<{
|
|
2877
2879
|
fontSize: BasicDivProps["fontSize"];
|
|
2878
2880
|
}>>>;
|
|
2881
|
+
style?: BasicDivProps["style"];
|
|
2879
2882
|
children?: JSX$1.Element | JSX$1.Element[];
|
|
2880
2883
|
}
|
|
2881
2884
|
declare function MoneyDisplayCard(props: MoneyDisplayCardProps): react_jsx_runtime.JSX.Element;
|