kui-basic 1.1.93 → 1.1.95

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/index.d.ts CHANGED
@@ -411,18 +411,21 @@ type ModalType = (props: ModalProps) => React.ReactElement
411
411
 
412
412
  declare const Modal: ModalType
413
413
 
414
- interface RadioProps
415
- extends React.DetailedHTMLProps<
416
- React.InputHTMLAttributes<HTMLInputElement>,
417
- HTMLInputElement
418
- >,
419
- React.AriaAttributes {
420
- label?: React.ReactElement | string
421
- inputRef?: React.RefObject<HTMLInputElement>
422
- }
423
-
424
- type RadioType = (props: RadioProps) => React.ReactElement
425
-
414
+ interface RadioProps
415
+ extends React.DetailedHTMLProps<
416
+ React.InputHTMLAttributes<HTMLInputElement>,
417
+ HTMLInputElement
418
+ >,
419
+ React.AriaAttributes {
420
+ label?: React.ReactElement | string
421
+ inputRef?: React.RefObject<HTMLInputElement>
422
+ fullWidth?: boolean
423
+ checked?: boolean
424
+ isSquare?: boolean
425
+ }
426
+
427
+ type RadioType = (props: RadioProps) => React.ReactElement
428
+
426
429
  declare const Radio: RadioType
427
430
 
428
431
  type SwitchSizes = "s" | "m" | "l"