kui-basic 1.1.131 → 1.1.133
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/MenuPanel/cjs/index.js +4 -4
- package/MenuPanel/cjs/index.js.map +1 -1
- package/MenuPanel/index.js +4 -4
- package/MenuPanel/index.js.map +1 -1
- package/Tabs/cjs/index.js +4 -4
- package/Tabs/cjs/index.js.map +1 -1
- package/Tabs/index.d.ts +18 -17
- package/Tabs/index.js +4 -4
- package/Tabs/index.js.map +1 -1
- package/TabsPanel/cjs/index.js +4 -4
- package/TabsPanel/cjs/index.js.map +1 -1
- package/TabsPanel/index.js +4 -4
- package/TabsPanel/index.js.map +1 -1
- package/cjs/index.js +4 -4
- package/cjs/index.js.map +1 -1
- package/index.d.ts +18 -17
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -695,23 +695,24 @@ type TabType = (props: TabProps) => React.ReactElement
|
|
|
695
695
|
|
|
696
696
|
declare const Tab: TabType
|
|
697
697
|
|
|
698
|
-
type TabsIndicatorPositions = "bottom" | "top"
|
|
699
|
-
|
|
700
|
-
interface TabsProps
|
|
701
|
-
extends Omit<
|
|
702
|
-
React.DetailedHTMLProps<
|
|
703
|
-
React.HTMLAttributes<HTMLDivElement>,
|
|
704
|
-
HTMLDivElement
|
|
705
|
-
>,
|
|
706
|
-
"onChange"
|
|
707
|
-
> {
|
|
708
|
-
value: number
|
|
709
|
-
onChange?: TabChangeHandlerType
|
|
710
|
-
indicatorPos?: TabsIndicatorPositions
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
698
|
+
type TabsIndicatorPositions = "bottom" | "top"
|
|
699
|
+
|
|
700
|
+
interface TabsProps
|
|
701
|
+
extends Omit<
|
|
702
|
+
React.DetailedHTMLProps<
|
|
703
|
+
React.HTMLAttributes<HTMLDivElement>,
|
|
704
|
+
HTMLDivElement
|
|
705
|
+
>,
|
|
706
|
+
"onChange"
|
|
707
|
+
> {
|
|
708
|
+
value: number
|
|
709
|
+
onChange?: TabChangeHandlerType
|
|
710
|
+
indicatorPos?: TabsIndicatorPositions
|
|
711
|
+
id?: string
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
type TabsType = (props: TabsProps) => React.ReactElement
|
|
715
|
+
|
|
715
716
|
declare const Tabs: TabsType
|
|
716
717
|
|
|
717
718
|
interface TabsPanelProps
|