@@ -128,6 +128,68 @@ export const HorizontalTabsOverflow = (): JSX.Element => {
128128 ) ;
129129} ;
130130
131+ export const HorizontalTabOverflowScrollCheck = ( ) : JSX . Element => {
132+ const selectedId = useUID ( ) ;
133+ const uniqueBaseID = useUID ( ) ;
134+ return (
135+ < Box maxWidth = "size80" >
136+ < Box height = "1800px" />
137+ < Tabs selectedId = { selectedId } baseId = { `${ uniqueBaseID } -horizontal-tabs-example` } >
138+ < TabList aria-label = "LGBTQ+ Projects" >
139+ < Tab > Inside Out</ Tab >
140+ < Tab > Transgender District</ Tab >
141+ < Tab > Transgender District</ Tab >
142+ < Tab > Transgender District</ Tab >
143+ < Tab > Transgender District</ Tab >
144+ < Tab > Transgender District</ Tab >
145+ < Tab id = { selectedId } > Transgender District</ Tab >
146+ < Tab > Audre Lorde Project</ Tab >
147+ < Tab disabled > Coming soon...</ Tab >
148+ </ TabList >
149+ < TabPanels >
150+ < TabPanel >
151+ < Heading as = "h2" variant = "heading20" >
152+ Inside Out
153+ </ Heading >
154+ < Paragraph >
155+ Inside Out empowers, educates, and advocates for LGBTQ+ of youth from the Pikes Peak Region in Southern
156+ Colorado. Inside Out does this by creating safe spaces, support systems and teaching life skills to all
157+ youth in the community and working to make the community safer and more accepting of gender and sexual
158+ orientation diversity.
159+ </ Paragraph >
160+ < Anchor href = "https://insideoutys.org/" > Support Inside Out</ Anchor >
161+ </ TabPanel >
162+ < TabPanel >
163+ < Heading as = "h2" variant = "heading20" >
164+ Transgender District
165+ </ Heading >
166+ < Paragraph >
167+ The mission of the Transgender District is to create an urban environment that fosters the rich history,
168+ culture, legacy, and empowerment of transgender people and its deep roots in the southeastern Tenderloin
169+ neighborhood. The transgender district aims to stabilize and economically empower the transgender
170+ community through ownership of homes, businesses, historic and cultural sites, and safe community spaces.
171+ </ Paragraph >
172+ < Anchor href = "https://www.transgenderdistrictsf.com/" > Support The Transgender District</ Anchor >
173+ </ TabPanel >
174+ < TabPanel >
175+ < Heading as = "h2" variant = "heading20" >
176+ Audre Lorde Project
177+ </ Heading >
178+ < Paragraph >
179+ The Audre Lorde Project is a Lesbian, Gay, Bisexual, Two Spirit, Trans and Gender Non Conforming People of
180+ Color center for community organizing, focusing on the New York City area. Through mobilization, education
181+ and capacity-building, they work for community wellness and progressive social and economic justice.
182+ Committed to struggling across differences, they seek to responsibly reflect, represent and serve their
183+ various communities.
184+ </ Paragraph >
185+ < Anchor href = "https://alp.org/" > Support The Audre Lorde Project</ Anchor >
186+ </ TabPanel >
187+ </ TabPanels >
188+ </ Tabs >
189+ </ Box >
190+ ) ;
191+ } ;
192+
131193export const FittedTabs = ( ) : JSX . Element => {
132194 const selectedId = useUID ( ) ;
133195 const uniqueBaseID = useUID ( ) ;
@@ -236,6 +298,63 @@ export const VerticalTabs = (): JSX.Element => {
236298 ) ;
237299} ;
238300
301+ export const VerticalTabsScrollCheck = ( ) : JSX . Element => {
302+ const selectedId = useUID ( ) ;
303+ const uniqueBaseID = useUID ( ) ;
304+ return (
305+ < Box >
306+ < Box height = "1800px" />
307+ < Tabs orientation = "vertical" selectedId = { selectedId } baseId = { `${ uniqueBaseID } -vertical-tabs-example` } >
308+ < TabList aria-label = "LGBTQ+ Projects" >
309+ < Tab id = { selectedId } > Inside Out</ Tab >
310+ < Tab > Transgender District</ Tab >
311+ < Tab > Audre Lorde Project</ Tab >
312+ < Tab disabled > Coming soon...</ Tab >
313+ </ TabList >
314+ < TabPanels >
315+ < TabPanel >
316+ < Heading as = "h2" variant = "heading20" >
317+ Inside Out
318+ </ Heading >
319+ < Paragraph >
320+ Inside Out empowers, educates, and advocates for LGBTQ+ of youth from the Pikes Peak Region in Southern
321+ Colorado. Inside Out does this by creating safe spaces, support systems and teaching life skills to all
322+ youth in the community and working to make the community safer and more accepting of gender and sexual
323+ orientation diversity.
324+ </ Paragraph >
325+ < Anchor href = "https://insideoutys.org/" > Support Inside Out</ Anchor >
326+ </ TabPanel >
327+ < TabPanel >
328+ < Heading as = "h2" variant = "heading20" >
329+ Transgender District
330+ </ Heading >
331+ < Paragraph >
332+ The mission of the Transgender District is to create an urban environment that fosters the rich history,
333+ culture, legacy, and empowerment of transgender people and its deep roots in the southeastern Tenderloin
334+ neighborhood. The transgender district aims to stabilize and economically empower the transgender
335+ community through ownership of homes, businesses, historic and cultural sites, and safe community spaces.
336+ </ Paragraph >
337+ < Anchor href = "https://www.transgenderdistrictsf.com/" > Support The Transgender District</ Anchor >
338+ </ TabPanel >
339+ < TabPanel >
340+ < Heading as = "h2" variant = "heading20" >
341+ Audre Lorde Project
342+ </ Heading >
343+ < Paragraph >
344+ The Audre Lorde Project is a Lesbian, Gay, Bisexual, Two Spirit, Trans and Gender Non Conforming People of
345+ Color center for community organizing, focusing on the New York City area. Through mobilization, education
346+ and capacity-building, they work for community wellness and progressive social and economic justice.
347+ Committed to struggling across differences, they seek to responsibly reflect, represent and serve their
348+ various communities.
349+ </ Paragraph >
350+ < Anchor href = "https://alp.org/" > Support The Audre Lorde Project</ Anchor >
351+ </ TabPanel >
352+ </ TabPanels >
353+ </ Tabs >
354+ </ Box >
355+ ) ;
356+ } ;
357+
239358export const VerticalTabsOverflow = ( ) : JSX . Element => {
240359 const selectedId = useUID ( ) ;
241360 const uniqueBaseID = useUID ( ) ;
0 commit comments