prlg-ui 1.8.280 → 1.8.281
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/prlg-ui.css +1 -1
- package/dist/reka-ui/index.cjs.js +3 -3
- package/dist/reka-ui/index.es.js +326 -334
- package/dist/rekaUI.d.ts +7 -1
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -2682,6 +2682,10 @@ declare interface IPopoverContentProps extends PopoverContentProps {
|
|
|
2682
2682
|
width?: number;
|
|
2683
2683
|
}
|
|
2684
2684
|
|
|
2685
|
+
declare interface IRadioGroupItemProps extends RadioGroupItemProps {
|
|
2686
|
+
size?: 'small' | 'default' | 'large';
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2685
2689
|
declare interface IScrollAreaRootProps extends ScrollAreaRootProps {
|
|
2686
2690
|
maxHeight?: number | string;
|
|
2687
2691
|
}
|
|
@@ -2774,7 +2778,9 @@ export declare const priceFormat: (price: string | number, returnHtml?: boolean)
|
|
|
2774
2778
|
[key: string]: any;
|
|
2775
2779
|
}>;
|
|
2776
2780
|
|
|
2777
|
-
export declare const RadioGroupItem: DefineComponent<
|
|
2781
|
+
export declare const RadioGroupItem: DefineComponent<IRadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IRadioGroupItemProps> & Readonly<{}>, {
|
|
2782
|
+
size: "small" | "default" | "large";
|
|
2783
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2778
2784
|
|
|
2779
2785
|
export { RadioGroupRoot }
|
|
2780
2786
|
|