kui-basic 1.1.129 → 1.1.131
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 +1 -0
- package/Modal/index.js +4 -4
- package/Modal/index.js.map +1 -1
- package/TabsPanel/cjs/index.js +4 -4
- package/TabsPanel/cjs/index.js.map +1 -1
- package/TabsPanel/index.d.ts +1 -0
- package/TabsPanel/index.js +1 -1
- package/TabsPanel/index.js.map +1 -1
- package/Tooltip/cjs/index.js +2 -2
- package/Tooltip/cjs/index.js.map +1 -1
- package/Tooltip/index.js +2 -2
- package/Tooltip/index.js.map +1 -1
- package/cjs/index.js +4 -4
- package/cjs/index.js.map +1 -1
- package/index.d.ts +2 -0
- package/index.js +4 -4
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -410,6 +410,7 @@ interface ModalProps
|
|
|
410
410
|
isScrollable?: boolean
|
|
411
411
|
description?: string
|
|
412
412
|
isHasHeader?: boolean
|
|
413
|
+
withAutoClosing?: boolean
|
|
413
414
|
}
|
|
414
415
|
|
|
415
416
|
type ModalType = (props: ModalProps) => React.ReactElement
|
|
@@ -729,6 +730,7 @@ interface TabsPanelProps
|
|
|
729
730
|
indicatorPos?: TabsIndicatorPositions
|
|
730
731
|
endComponent?: ReactNode
|
|
731
732
|
navigate?: (state: string) => void
|
|
733
|
+
tabsPanelId?: string
|
|
732
734
|
}
|
|
733
735
|
|
|
734
736
|
type TabsPanelType = (props: TabsPanelProps) => React.ReactElement
|