kui-basic 1.1.131 → 1.1.134
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/Tabs/index.d.ts +17 -17
- package/index.d.ts +17 -17
- package/package.json +1 -1
package/Tabs/index.d.ts
CHANGED
|
@@ -6,23 +6,23 @@ type TabChangeHandlerType = (
|
|
|
6
6
|
value: number
|
|
7
7
|
) => void
|
|
8
8
|
|
|
9
|
-
type TabsIndicatorPositions = "bottom" | "top"
|
|
10
|
-
|
|
11
|
-
interface TabsProps
|
|
12
|
-
extends Omit<
|
|
13
|
-
React.DetailedHTMLProps<
|
|
14
|
-
React.HTMLAttributes<HTMLDivElement>,
|
|
15
|
-
HTMLDivElement
|
|
16
|
-
>,
|
|
17
|
-
"onChange"
|
|
18
|
-
> {
|
|
19
|
-
value: number
|
|
20
|
-
onChange?: TabChangeHandlerType
|
|
21
|
-
indicatorPos?: TabsIndicatorPositions
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
type TabsType = (props: TabsProps) => React.ReactElement
|
|
25
|
-
|
|
9
|
+
type TabsIndicatorPositions = "bottom" | "top"
|
|
10
|
+
|
|
11
|
+
interface TabsProps
|
|
12
|
+
extends Omit<
|
|
13
|
+
React.DetailedHTMLProps<
|
|
14
|
+
React.HTMLAttributes<HTMLDivElement>,
|
|
15
|
+
HTMLDivElement
|
|
16
|
+
>,
|
|
17
|
+
"onChange"
|
|
18
|
+
> {
|
|
19
|
+
value: number
|
|
20
|
+
onChange?: TabChangeHandlerType
|
|
21
|
+
indicatorPos?: TabsIndicatorPositions
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
type TabsType = (props: TabsProps) => React.ReactElement
|
|
25
|
+
|
|
26
26
|
declare const Tabs: TabsType
|
|
27
27
|
|
|
28
28
|
export { TabsIndicatorPositions, TabsProps, TabsType, Tabs as default };
|
package/index.d.ts
CHANGED
|
@@ -695,23 +695,23 @@ 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
|
-
type TabsType = (props: TabsProps) => React.ReactElement
|
|
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
|
+
}
|
|
712
|
+
|
|
713
|
+
type TabsType = (props: TabsProps) => React.ReactElement
|
|
714
|
+
|
|
715
715
|
declare const Tabs: TabsType
|
|
716
716
|
|
|
717
717
|
interface TabsPanelProps
|