@instructure/ui-tabs 9.0.2-snapshot-2 → 9.0.2-snapshot-4
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/CHANGELOG.md +1 -1
- package/es/Tabs/Panel/index.js +4 -4
- package/es/Tabs/Tab/index.js +4 -4
- package/es/Tabs/index.js +4 -4
- package/es/Tabs/theme.js +0 -1
- package/lib/Tabs/Panel/index.js +4 -4
- package/lib/Tabs/Tab/index.js +4 -4
- package/lib/Tabs/index.js +4 -4
- package/lib/Tabs/theme.js +0 -1
- package/package.json +23 -23
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Tabs/Panel/index.d.ts +3 -3
- package/types/Tabs/Tab/index.d.ts +1 -1
- package/types/Tabs/TabsLocator.d.ts +261 -261
- package/types/Tabs/index.d.ts +5 -5
|
@@ -20,12 +20,12 @@ declare class Panel extends Component<TabsPanelProps> {
|
|
|
20
20
|
minHeight?: string | number | undefined;
|
|
21
21
|
id?: string | undefined;
|
|
22
22
|
labelledBy?: string | undefined;
|
|
23
|
-
padding?: import("@instructure/emotion
|
|
23
|
+
padding?: import("@instructure/emotion").Spacing | undefined;
|
|
24
24
|
textAlign?: "start" | "center" | "end" | undefined;
|
|
25
25
|
elementRef?: ((element: HTMLDivElement | null) => void) | undefined;
|
|
26
26
|
active?: boolean | undefined;
|
|
27
27
|
})[];
|
|
28
|
-
static propTypes: import("@instructure/shared-types
|
|
28
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
|
29
29
|
renderTitle: import("react").ReactNode | (() => import("react").ReactNode);
|
|
30
30
|
children?: import("react").ReactNode;
|
|
31
31
|
variant?: "default" | "secondary" | undefined;
|
|
@@ -35,7 +35,7 @@ declare class Panel extends Component<TabsPanelProps> {
|
|
|
35
35
|
minHeight?: string | number | undefined;
|
|
36
36
|
id?: string | undefined;
|
|
37
37
|
labelledBy?: string | undefined;
|
|
38
|
-
padding?: import("@instructure/emotion
|
|
38
|
+
padding?: import("@instructure/emotion").Spacing | undefined;
|
|
39
39
|
textAlign?: "start" | "center" | "end" | undefined;
|
|
40
40
|
elementRef?: ((element: HTMLDivElement | null) => void) | undefined;
|
|
41
41
|
active?: boolean | undefined;
|
|
@@ -27,7 +27,7 @@ declare class Tab extends Component<TabsTabProps> {
|
|
|
27
27
|
}) => void) | undefined;
|
|
28
28
|
children?: import("@instructure/shared-types").Renderable;
|
|
29
29
|
})[];
|
|
30
|
-
static propTypes: import("@instructure/shared-types
|
|
30
|
+
static propTypes: import("@instructure/shared-types").PropValidators<keyof {
|
|
31
31
|
variant?: "default" | "secondary" | undefined;
|
|
32
32
|
id: string;
|
|
33
33
|
index: number;
|