Skip to content

Commit 7bca0e3

Browse files
committed
docs: Fix ZIP download, CodeSandbox, and StackBlitz
1 parent b374cbe commit 7bca0e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+332
-75
lines changed

packages/@react-spectrum/s2/src/Tabs.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,11 @@ const tabPanel = style({
448448
marginTop: 4,
449449
color: 'gray-800',
450450
flexGrow: 1,
451-
minHeight: 0
451+
minHeight: 0,
452+
display: {
453+
default: 'block',
454+
isInert: 'none'
455+
}
452456
}, getAllowedOverrides({height: true}));
453457

454458
export function TabPanel(props: TabPanelProps): ReactNode | null {

packages/dev/s2-docs/pages/react-aria/examples/EmojiPicker/EmojiPicker.tsx

Lines changed: 0 additions & 50 deletions
This file was deleted.

packages/dev/s2-docs/pages/react-aria/examples/crud.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export default Layout;
33

44
import '../../../tailwind/tailwind.css';
55

6-
import {App} from './plants/App';
6+
import App from './plants/App';
77
import {ExampleApp} from '../../../src/ExampleApp';
88
import {ComponentList} from '../../../src/ComponentCard';
99

@@ -18,7 +18,7 @@ export const description = 'Table with search, filters, column resizing, and for
1818

1919
<App />
2020

21-
<ExampleApp dir="packages/dev/s2-docs/pages/react-aria/examples/plants" defaultSelected="App.tsx" />
21+
<ExampleApp dir="packages/dev/s2-docs/pages/react-aria/examples/plants" defaultSelected="App.tsx" type="tailwind" />
2222

2323
## Components
2424

0 commit comments

Comments
 (0)