kui-basic 1.1.118 → 1.1.119
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/Modal/cjs/index.js +4 -4
- package/Modal/cjs/index.js.map +1 -1
- package/Modal/index.d.ts +19 -18
- package/Modal/index.js +4 -4
- package/Modal/index.js.map +1 -1
- package/cjs/index.js +3 -3
- package/cjs/index.js.map +1 -1
- package/index.d.ts +19 -18
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -392,24 +392,25 @@ type InputWithMaskType = (
|
|
|
392
392
|
|
|
393
393
|
declare const InputWithMask: InputWithMaskType
|
|
394
394
|
|
|
395
|
-
type ModalSizes = "small" | "large"
|
|
396
|
-
|
|
397
|
-
interface ModalProps
|
|
398
|
-
extends React.DetailedHTMLProps<
|
|
399
|
-
React.HTMLAttributes<HTMLDivElement>,
|
|
400
|
-
HTMLDivElement
|
|
401
|
-
> {
|
|
402
|
-
isOpen?: boolean
|
|
403
|
-
handleClose?: () => void
|
|
404
|
-
title?: string
|
|
405
|
-
size?: ModalSizes
|
|
406
|
-
icon?: ReactElement
|
|
407
|
-
isScrollable?: boolean
|
|
408
|
-
description?: string
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
395
|
+
type ModalSizes = "small" | "large"
|
|
396
|
+
|
|
397
|
+
interface ModalProps
|
|
398
|
+
extends React.DetailedHTMLProps<
|
|
399
|
+
React.HTMLAttributes<HTMLDivElement>,
|
|
400
|
+
HTMLDivElement
|
|
401
|
+
> {
|
|
402
|
+
isOpen?: boolean
|
|
403
|
+
handleClose?: () => void
|
|
404
|
+
title?: string
|
|
405
|
+
size?: ModalSizes
|
|
406
|
+
icon?: ReactElement
|
|
407
|
+
isScrollable?: boolean
|
|
408
|
+
description?: string
|
|
409
|
+
isHasHeader?: boolean
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
type ModalType = (props: ModalProps) => React.ReactElement
|
|
413
|
+
|
|
413
414
|
declare const Modal: ModalType
|
|
414
415
|
|
|
415
416
|
interface RadioProps
|