Skip to content

Commit

Permalink
Temporarily revert demo label changes to test Argos
Browse files Browse the repository at this point in the history
  • Loading branch information
DiegoAndai committed Jun 28, 2024
1 parent ab05dc7 commit 23dfe2b
Show file tree
Hide file tree
Showing 48 changed files with 139 additions and 146 deletions.
6 changes: 3 additions & 3 deletions docs/data/joy/components/grid/AutoGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ export default function AutoGrid() {
return (
<Grid container spacing={3} sx={{ flexGrow: 1 }}>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
);
Expand Down
6 changes: 3 additions & 3 deletions docs/data/joy/components/grid/AutoGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ export default function AutoGrid() {
return (
<Grid container spacing={3} sx={{ flexGrow: 1 }}>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
);
Expand Down
6 changes: 3 additions & 3 deletions docs/data/joy/components/grid/AutoGrid.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Grid container spacing={3} sx={{ flexGrow: 1 }}>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
8 changes: 4 additions & 4 deletions docs/data/joy/components/grid/BasicGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ export default function BasicGrid() {
return (
<Grid container spacing={2} sx={{ flexGrow: 1 }}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
);
Expand Down
8 changes: 4 additions & 4 deletions docs/data/joy/components/grid/BasicGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ export default function BasicGrid() {
return (
<Grid container spacing={2} sx={{ flexGrow: 1 }}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
);
Expand Down
8 changes: 4 additions & 4 deletions docs/data/joy/components/grid/BasicGrid.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Grid container spacing={2} sx={{ flexGrow: 1 }}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
8 changes: 4 additions & 4 deletions docs/data/joy/components/grid/CSSGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ export default function CSSGrid() {
<Box sx={{ width: 1 }}>
<Box sx={{ display: 'grid', gridTemplateColumns: 'repeat(12, 1fr)', gap: 2 }}>
<Box sx={{ gridColumn: 'span 8' }}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Box>
<Box sx={{ gridColumn: 'span 4' }}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Box>
<Box sx={{ gridColumn: 'span 4' }}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Box>
<Box sx={{ gridColumn: 'span 8' }}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Box>
</Box>
</Box>
Expand Down
8 changes: 4 additions & 4 deletions docs/data/joy/components/grid/CSSGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ export default function CSSGrid() {
<Box sx={{ width: 1 }}>
<Box sx={{ display: 'grid', gridTemplateColumns: 'repeat(12, 1fr)', gap: 2 }}>
<Box sx={{ gridColumn: 'span 8' }}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Box>
<Box sx={{ gridColumn: 'span 4' }}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Box>
<Box sx={{ gridColumn: 'span 4' }}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Box>
<Box sx={{ gridColumn: 'span 8' }}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Box>
</Box>
</Box>
Expand Down
8 changes: 4 additions & 4 deletions docs/data/joy/components/grid/CSSGrid.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Box sx={{ display: 'grid', gridTemplateColumns: 'repeat(12, 1fr)', gap: 2 }}>
<Box sx={{ gridColumn: 'span 8' }}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Box>
<Box sx={{ gridColumn: 'span 4' }}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Box>
<Box sx={{ gridColumn: 'span 4' }}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Box>
<Box sx={{ gridColumn: 'span 8' }}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Box>
</Box>
4 changes: 2 additions & 2 deletions docs/data/joy/components/grid/ColumnsGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export default function ColumnsGrid() {
return (
<Grid container spacing={2} columns={16} sx={{ flexGrow: 1 }}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
);
Expand Down
4 changes: 2 additions & 2 deletions docs/data/joy/components/grid/ColumnsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export default function ColumnsGrid() {
return (
<Grid container spacing={2} columns={16} sx={{ flexGrow: 1 }}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
);
Expand Down
4 changes: 2 additions & 2 deletions docs/data/joy/components/grid/ColumnsGrid.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Grid container spacing={2} columns={16} sx={{ flexGrow: 1 }}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
2 changes: 1 addition & 1 deletion docs/data/joy/components/grid/ResponsiveGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function ResponsiveGrid() {
>
{Array.from(Array(6)).map((_, index) => (
<Grid key={index} size={{ xs: 2, sm: 4, md: 4 }}>
<Item>{index + 1}</Item>
<Item>xs=2</Item>
</Grid>
))}
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion docs/data/joy/components/grid/ResponsiveGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function ResponsiveGrid() {
>
{Array.from(Array(6)).map((_, index) => (
<Grid key={index} size={{ xs: 2, sm: 4, md: 4 }}>
<Item>{index + 1}</Item>
<Item>xs=2</Item>
</Grid>
))}
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion docs/data/joy/components/grid/ResponsiveGrid.tsx.preview
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
>
{Array.from(Array(6)).map((_, index) => (
<Grid key={index} size={{ xs: 2, sm: 4, md: 4 }}>
<Item>{index + 1}</Item>
<Item>xs=2</Item>
</Grid>
))}
</Grid>
6 changes: 3 additions & 3 deletions docs/data/joy/components/grid/VariableWidthGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ export default function VariableWidthGrid() {
return (
<Grid container spacing={3} sx={{ flexGrow: 1 }}>
<Grid size="auto">
<Item>size=auto</Item>
<Item>variable width content</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
);
Expand Down
6 changes: 3 additions & 3 deletions docs/data/joy/components/grid/VariableWidthGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ export default function VariableWidthGrid() {
return (
<Grid container spacing={3} sx={{ flexGrow: 1 }}>
<Grid size="auto">
<Item>size=auto</Item>
<Item>variable width content</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
);
Expand Down
6 changes: 3 additions & 3 deletions docs/data/joy/components/grid/VariableWidthGrid.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Grid container spacing={3} sx={{ flexGrow: 1 }}>
<Grid size="auto">
<Item>size=auto</Item>
<Item>variable width content</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
6 changes: 3 additions & 3 deletions docs/data/material/components/grid2/AutoGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ export default function AutoGrid() {
<Box sx={{ flexGrow: 1 }}>
<Grid container spacing={3}>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
</Box>
Expand Down
6 changes: 3 additions & 3 deletions docs/data/material/components/grid2/AutoGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ export default function AutoGrid() {
<Box sx={{ flexGrow: 1 }}>
<Grid container spacing={3}>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
</Box>
Expand Down
6 changes: 3 additions & 3 deletions docs/data/material/components/grid2/AutoGrid.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Grid container spacing={3}>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
<Grid size={6}>
<Item>size=6</Item>
<Item>xs=6</Item>
</Grid>
<Grid size="grow">
<Item>size=grow</Item>
<Item>xs</Item>
</Grid>
</Grid>
8 changes: 4 additions & 4 deletions docs/data/material/components/grid2/BasicGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ export default function BasicGrid() {
<Box sx={{ flexGrow: 1 }}>
<Grid container spacing={2}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
</Box>
Expand Down
8 changes: 4 additions & 4 deletions docs/data/material/components/grid2/BasicGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ export default function BasicGrid() {
<Box sx={{ flexGrow: 1 }}>
<Grid container spacing={2}>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={4}>
<Item>size=4</Item>
<Item>xs=4</Item>
</Grid>
<Grid size={8}>
<Item>size=8</Item>
<Item>xs=8</Item>
</Grid>
</Grid>
</Box>
Expand Down
Loading

0 comments on commit 23dfe2b

Please sign in to comment.