kui-basic 1.1.223 → 1.1.224
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 +13 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -243,19 +243,19 @@ type ButtonType = (props: ButtonProps) => React.ReactElement
|
|
|
243
243
|
|
|
244
244
|
declare const Button: ButtonType
|
|
245
245
|
|
|
246
|
-
interface CheckboxProps
|
|
247
|
-
extends React.DetailedHTMLProps<
|
|
248
|
-
React.InputHTMLAttributes<HTMLInputElement>,
|
|
249
|
-
HTMLInputElement
|
|
250
|
-
>,
|
|
251
|
-
React.AriaAttributes {
|
|
252
|
-
error?: any
|
|
253
|
-
label?: React.ReactElement | string
|
|
254
|
-
inputRef?: React.RefObject<HTMLInputElement>
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
type CheckboxType = (props: CheckboxProps) => React.ReactElement
|
|
258
|
-
|
|
246
|
+
interface CheckboxProps
|
|
247
|
+
extends React.DetailedHTMLProps<
|
|
248
|
+
React.InputHTMLAttributes<HTMLInputElement>,
|
|
249
|
+
HTMLInputElement
|
|
250
|
+
>,
|
|
251
|
+
React.AriaAttributes {
|
|
252
|
+
error?: any
|
|
253
|
+
label?: React.ReactElement | string
|
|
254
|
+
inputRef?: React.RefObject<HTMLInputElement>
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
type CheckboxType = (props: CheckboxProps) => React.ReactElement
|
|
258
|
+
|
|
259
259
|
declare const Checkbox: CheckboxType
|
|
260
260
|
|
|
261
261
|
interface DividerProps
|