@wavy/react-ui 0.0.63 → 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 +9 -4
- package/dist/main.js +7 -7
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -2455,14 +2455,17 @@ interface SegmentedControlsProps<ControlType extends string> {
|
|
|
2455
2455
|
value?: ControlType;
|
|
2456
2456
|
width?: SegmentGroupRootProps["width"];
|
|
2457
2457
|
size?: SegmentGroupRootProps["size"];
|
|
2458
|
-
|
|
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
|
-
|
|
2462
|
-
|
|
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;
|
|
@@ -2875,6 +2878,8 @@ interface MoneyDisplayCardProps {
|
|
|
2875
2878
|
* @default "md"
|
|
2876
2879
|
*/
|
|
2877
2880
|
gap?: BasicDivProps["gap"];
|
|
2881
|
+
/**@default "1.5rem" */
|
|
2882
|
+
tileSize?: string;
|
|
2878
2883
|
slotProps?: Partial<Record<"label" | "fee" | "currency", Partial<{
|
|
2879
2884
|
fontSize: BasicDivProps["fontSize"];
|
|
2880
2885
|
}>>>;
|