@wavy/react-ui 0.0.61 → 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 +6 -1
- package/dist/main.js +12 -12
- package/package.json +3 -3
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;
|
|
@@ -1271,6 +1271,8 @@ type TableColumnConfig<T extends string = string> = {
|
|
|
1271
1271
|
|
|
1272
1272
|
type RootStyles = {
|
|
1273
1273
|
gap?: BasicStyleProps["gap"];
|
|
1274
|
+
/**@default "space-between" */
|
|
1275
|
+
justify?: BasicStyleProps["justify"] | "normal";
|
|
1274
1276
|
rowGap?: BasicStyleProps["gap"];
|
|
1275
1277
|
/**@default "onSurface[0.25]" */
|
|
1276
1278
|
separatorColor?: SepProps["color"];
|
|
@@ -2845,6 +2847,8 @@ declare function VerifyButton(props: VerifyButtonProps): react_jsx_runtime.JSX.E
|
|
|
2845
2847
|
interface MoneyDisplayCardProps {
|
|
2846
2848
|
label?: string;
|
|
2847
2849
|
truncateFee?: boolean | ((fee: number) => boolean);
|
|
2850
|
+
/**@default "1.5rem" */
|
|
2851
|
+
padding?: BasicDivProps["padding"];
|
|
2848
2852
|
amount: number;
|
|
2849
2853
|
/**
|
|
2850
2854
|
* @default "JMD"
|
|
@@ -2874,6 +2878,7 @@ interface MoneyDisplayCardProps {
|
|
|
2874
2878
|
slotProps?: Partial<Record<"label" | "fee" | "currency", Partial<{
|
|
2875
2879
|
fontSize: BasicDivProps["fontSize"];
|
|
2876
2880
|
}>>>;
|
|
2881
|
+
style?: BasicDivProps["style"];
|
|
2877
2882
|
children?: JSX$1.Element | JSX$1.Element[];
|
|
2878
2883
|
}
|
|
2879
2884
|
declare function MoneyDisplayCard(props: MoneyDisplayCardProps): react_jsx_runtime.JSX.Element;
|