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/Radio/cjs/index.js +9 -3
- package/Radio/cjs/index.js.map +1 -1
- package/Radio/index.d.ts +15 -12
- package/Radio/index.js +9 -3
- package/Radio/index.js.map +1 -1
- package/cjs/index.js +3 -3
- package/cjs/index.js.map +1 -1
- package/index.d.ts +15 -12
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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"
|