kui-basic 1.1.153 → 1.1.155
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/Input/index.d.ts +1 -1
- package/InputWithAdornments/index.d.ts +1 -1
- package/InputWithCountryDropdown/index.d.ts +1 -1
- package/InputWithMask/index.d.ts +1 -1
- package/Radio/cjs/index.js +4 -4
- package/Radio/cjs/index.js.map +1 -1
- package/Radio/index.d.ts +2 -0
- package/Radio/index.js +3 -3
- package/Radio/index.js.map +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +3 -2
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { HTMLInputTypeAttribute, ReactElement,
|
|
2
|
+
import { HTMLInputTypeAttribute, ReactElement, ReactNode, SyntheticEvent, RefObject } from 'react';
|
|
3
3
|
import { Placement, OffsetOptions, Strategy } from '@floating-ui/react';
|
|
4
4
|
import { MiddlewareData } from '@floating-ui/core/src/types';
|
|
5
5
|
|
|
@@ -314,7 +314,7 @@ interface InputProps
|
|
|
314
314
|
React.InputHTMLAttributes<HTMLInputElement>,
|
|
315
315
|
HTMLInputElement
|
|
316
316
|
>,
|
|
317
|
-
"value"
|
|
317
|
+
"value" | "onPointerEnterCapture" | "onPointerLeaveCapture"
|
|
318
318
|
>,
|
|
319
319
|
React.AriaAttributes {
|
|
320
320
|
rows?: number
|
|
@@ -427,6 +427,7 @@ interface RadioProps
|
|
|
427
427
|
fullWidth?: boolean
|
|
428
428
|
checked?: boolean
|
|
429
429
|
isSquare?: boolean
|
|
430
|
+
children?: ReactNode
|
|
430
431
|
}
|
|
431
432
|
|
|
432
433
|
type RadioType = (props: RadioProps) => React.ReactElement
|