File tree Expand file tree Collapse file tree 5 files changed +15
-15
lines changed
Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44See [ 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44See [ 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments