lkd-web-kit 0.5.12 → 0.5.13
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/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -389,7 +389,7 @@ export declare interface MyNumberInputProps extends NumberInputProps {
|
|
|
389
389
|
|
|
390
390
|
export declare const MyRadioGroup: ({ options, orientation, gap, ...radioGroupProps }: MyRadioGroupProps) => JSX.Element;
|
|
391
391
|
|
|
392
|
-
export declare interface MyRadioGroupProps extends RadioGroupProps {
|
|
392
|
+
export declare interface MyRadioGroupProps extends Omit<RadioGroupProps, 'children'> {
|
|
393
393
|
options: RadioProps[];
|
|
394
394
|
orientation?: 'horizontal' | 'vertical';
|
|
395
395
|
gap?: MantineSpacing;
|