Skip to content

Commit 2039680

Browse files
authored
Merge branch 'main' into cass-gm-1278
2 parents ec8f385 + 2ef8e10 commit 2039680

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

packages/gamut-kit/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [0.6.534](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-kit@0.6.533...@codecademy/gamut-kit@0.6.534) (2025-08-14)
7+
8+
**Note:** Version bump only for package @codecademy/gamut-kit
9+
610
### [0.6.533](https://github.com/Codecademy/gamut/compare/@codecademy/gamut-kit@0.6.532...@codecademy/gamut-kit@0.6.533) (2025-08-12)
711

812
**Note:** Version bump only for package @codecademy/gamut-kit

packages/gamut-kit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@codecademy/gamut-kit",
33
"description": "Styleguide & Component library for Codecademy",
4-
"version": "0.6.533",
4+
"version": "0.6.534",
55
"author": "Codecademy Engineering <dev@codecademy.com>",
66
"dependencies": {
7-
"@codecademy/gamut": "66.0.11",
7+
"@codecademy/gamut": "66.1.0",
88
"@codecademy/gamut-icons": "9.49.0",
99
"@codecademy/gamut-illustrations": "0.54.7",
1010
"@codecademy/gamut-patterns": "0.10.13",

packages/gamut/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [66.1.0](https://github.com/Codecademy/gamut/compare/@codecademy/gamut@66.0.11...@codecademy/gamut@66.1.0) (2025-08-14)
7+
8+
### Features
9+
10+
- **Tabs:** Remove manual keyboard activation ([440cde1](https://github.com/Codecademy/gamut/commit/440cde1432c134d614a6fa9566fff82b62e0c1d1))
11+
612
### [66.0.11](https://github.com/Codecademy/gamut/compare/@codecademy/gamut@66.0.10...@codecademy/gamut@66.0.11) (2025-08-12)
713

814
**Note:** Version bump only for package @codecademy/gamut

packages/gamut/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@codecademy/gamut",
33
"description": "Styleguide & Component library for Codecademy",
4-
"version": "66.0.11",
4+
"version": "66.1.0",
55
"author": "Codecademy Engineering <dev@codecademy.com>",
66
"dependencies": {
77
"@codecademy/gamut-icons": "9.49.0",

packages/gamut/src/Tabs/Tabs.tsx

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,10 @@ export const Tabs: React.FC<TabsProps> = (props) => {
2525
{/* currently only supporting dark mode for the LE variant */}
2626
{props.variant === 'block' ? (
2727
<Background bg="navy-800" height="100%">
28-
<TabsBase
29-
keyboardActivation="manual"
30-
position="relative"
31-
zIndex={0}
32-
{...props}
33-
/>
28+
<TabsBase position="relative" zIndex={0} {...props} />
3429
</Background>
3530
) : (
36-
<TabsBase
37-
keyboardActivation="manual"
38-
position="relative"
39-
zIndex={0}
40-
{...props}
41-
/>
31+
<TabsBase position="relative" zIndex={0} {...props} />
4232
)}
4333
</TabProvider>
4434
);

0 commit comments

Comments
 (0)