kui-basic 1.0.37 → 1.0.38
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 +3 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -286,12 +286,9 @@ type HeadingType = (props: HeadingProps) => React.ReactElement
|
|
|
286
286
|
declare const Heading: HeadingType
|
|
287
287
|
|
|
288
288
|
interface InputProps
|
|
289
|
-
extends
|
|
290
|
-
React.
|
|
291
|
-
|
|
292
|
-
HTMLInputElement
|
|
293
|
-
>,
|
|
294
|
-
"ref"
|
|
289
|
+
extends React.DetailedHTMLProps<
|
|
290
|
+
React.InputHTMLAttributes<HTMLInputElement>,
|
|
291
|
+
HTMLInputElement
|
|
295
292
|
>,
|
|
296
293
|
React.AriaAttributes {
|
|
297
294
|
isTextArea?: boolean
|