@wavy/react-ui 0.0.62 → 0.0.64

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 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;
@@ -2455,14 +2455,17 @@ interface SegmentedControlsProps<ControlType extends string> {
2455
2455
  value?: ControlType;
2456
2456
  width?: SegmentGroupRootProps["width"];
2457
2457
  size?: SegmentGroupRootProps["size"];
2458
- borderColor?: BasicColor$1 | 0;
2458
+ color?: BasicColor$1;
2459
+ selectedColor?: BasicColor$1;
2460
+ indicatorColor?: BasicColor$1;
2459
2461
  backgroundColor?: BasicColor$1;
2462
+ borderColor?: BasicColor$1 | 0;
2460
2463
  fontSize?: BasicDivProps["fontSize"];
2461
- indicatorColor?: BasicColor$1;
2462
- selectedColor?: BasicColor$1;
2463
- color?: BasicColor$1;
2464
+ indicatorStyle?: BasicDivProps["style"];
2465
+ style?: BasicDivProps["style"];
2464
2466
  gap?: keyof typeof CssSpacing | (string & {});
2465
2467
  padding?: keyof typeof CssSpacing | (string & {});
2468
+ itemStyle?: BasicDivProps["style"];
2466
2469
  onChange?: (control: ControlType) => void;
2467
2470
  }
2468
2471
  declare function SegmentedControls<ControlType extends string>(props: SegmentedControlsProps<ControlType>): react_jsx_runtime.JSX.Element;
@@ -2847,6 +2850,8 @@ declare function VerifyButton(props: VerifyButtonProps): react_jsx_runtime.JSX.E
2847
2850
  interface MoneyDisplayCardProps {
2848
2851
  label?: string;
2849
2852
  truncateFee?: boolean | ((fee: number) => boolean);
2853
+ /**@default "1.5rem" */
2854
+ padding?: BasicDivProps["padding"];
2850
2855
  amount: number;
2851
2856
  /**
2852
2857
  * @default "JMD"
@@ -2873,9 +2878,12 @@ interface MoneyDisplayCardProps {
2873
2878
  * @default "md"
2874
2879
  */
2875
2880
  gap?: BasicDivProps["gap"];
2881
+ /**@default "1.5rem" */
2882
+ tileSize?: string;
2876
2883
  slotProps?: Partial<Record<"label" | "fee" | "currency", Partial<{
2877
2884
  fontSize: BasicDivProps["fontSize"];
2878
2885
  }>>>;
2886
+ style?: BasicDivProps["style"];
2879
2887
  children?: JSX$1.Element | JSX$1.Element[];
2880
2888
  }
2881
2889
  declare function MoneyDisplayCard(props: MoneyDisplayCardProps): react_jsx_runtime.JSX.Element;