@khanacademy/wonder-blocks-tabs 0.0.0-PR2899-20251210235107 → 0.0.0-PR2899-20251210235627

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @khanacademy/wonder-blocks-tabs
2
2
 
3
- ## 0.0.0-PR2899-20251210235107
3
+ ## 0.0.0-PR2899-20251210235627
4
4
 
5
5
  ### Patch Changes
6
6
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Tabs are used to control what content is shown",
4
4
  "author": "Khan Academy",
5
5
  "license": "MIT",
6
- "version": "0.0.0-PR2899-20251210235107",
6
+ "version": "0.0.0-PR2899-20251210235627",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -23,9 +23,9 @@
23
23
  "@phosphor-icons/core": "^2.0.2",
24
24
  "@khanacademy/wonder-blocks-button": "11.2.10",
25
25
  "@khanacademy/wonder-blocks-core": "12.4.2",
26
- "@khanacademy/wonder-blocks-dropdown": "10.6.0",
27
26
  "@khanacademy/wonder-blocks-icon": "5.3.5",
28
27
  "@khanacademy/wonder-blocks-tokens": "14.1.3",
28
+ "@khanacademy/wonder-blocks-dropdown": "10.6.0",
29
29
  "@khanacademy/wonder-blocks-typography": "4.2.27"
30
30
  },
31
31
  "peerDependencies": {
@@ -1,13 +0,0 @@
1
- import * as React from "react";
2
- type ResponsiveTabItem = {
3
- label: string;
4
- id: string;
5
- panel: React.ReactNode;
6
- };
7
- type Props = {
8
- tabs: ResponsiveTabItem[];
9
- selectedTabId: string;
10
- onTabSelected: (id: string) => void;
11
- };
12
- export declare const ResponsiveTabs: (props: Props) => React.JSX.Element;
13
- export {};