@wavy/react-ui 0.0.65 → 0.0.66
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 +1 -0
- package/dist/main.js +6 -6
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -2466,6 +2466,7 @@ interface SegmentedControlsProps<ControlType extends string> {
|
|
|
2466
2466
|
gap?: keyof typeof CssSpacing | (string & {});
|
|
2467
2467
|
padding?: keyof typeof CssSpacing | (string & {});
|
|
2468
2468
|
itemStyle?: BasicDivProps["style"];
|
|
2469
|
+
formatControl?: (control: ControlType) => string;
|
|
2469
2470
|
onChange?: (control: ControlType) => void;
|
|
2470
2471
|
}
|
|
2471
2472
|
declare function SegmentedControls<ControlType extends string>(props: SegmentedControlsProps<ControlType>): react_jsx_runtime.JSX.Element;
|