Skip to content

Commit

Permalink
Merge pull request #512 from nextui-org/next
Browse files Browse the repository at this point in the history
v1.0.0-beta.8
  • Loading branch information
jrgarciadev committed Jun 6, 2022
2 parents f511493 + 7115bb6 commit a488bed
Show file tree
Hide file tree
Showing 192 changed files with 8,920 additions and 3,660 deletions.
10 changes: 5 additions & 5 deletions apps/docs/content/components/card/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,20 @@ export default function App() {
<Grid.Container gap={2} justify="flex-start">
{list.map((item, index) => (
<Grid xs={6} sm={3} key={index}>
<Card hoverable clickable>
<Card isPressable>
<Card.Body css={{ p: 0 }}>
<Card.Image
src={"https://nextui.org" + item.img}
objectFit="cover"
src={'https://nextui.org' + item.img}
width="100%"
height={140}
alt={item.title}
/>
</Card.Body>
<Card.Footer justify="flex-start">
<Row wrap="wrap" justify="space-between">
<Card.Footer css={{ justifyItems: "flex-start" }}>
<Row wrap="wrap" justify="space-between" align="center">
<Text b>{item.title}</Text>
<Text css={{ color: "$accents4", fontWeight: "$semibold" }}>
<Text css={{ color: "$accents7", fontWeight: "$semibold", fontSize: "$sm" }}>
{item.price}
</Text>
</Row>
Expand Down
17 changes: 0 additions & 17 deletions apps/docs/content/components/card/bordered.ts

This file was deleted.

17 changes: 0 additions & 17 deletions apps/docs/content/components/card/clickable.ts

This file was deleted.

39 changes: 0 additions & 39 deletions apps/docs/content/components/card/color.ts

This file was deleted.

43 changes: 24 additions & 19 deletions apps/docs/content/components/card/cover.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const Card1 = `import { Card, Col, Text } from "@nextui-org/react";
export const Card1 = () => (
<Card cover>
<Card>
<Card.Header css={{ position: "absolute", zIndex: 1, top: 5 }}>
<Col>
<Text size={12} weight="bold" transform="uppercase" color="#ffffffAA">
Expand All @@ -14,8 +14,9 @@ export const Card1 = () => (
</Card.Header>
<Card.Image
src="https://nextui.org/images/card-example-4.jpeg"
height={340}
objectFit="cover"
width="100%"
height={340}
alt="Card image background"
/>
</Card>
Expand All @@ -24,7 +25,7 @@ export const Card1 = () => (
const Card2 = `import { Card, Col, Text } from "@nextui-org/react";
export const Card2 = () => (
<Card width="100%" cover>
<Card css={{ w: "100%" }}>
<Card.Header css={{ position: "absolute", zIndex: 1, top: 5 }}>
<Col>
<Text size={12} weight="bold" transform="uppercase" color="#ffffffAA">
Expand All @@ -37,8 +38,9 @@ export const Card2 = () => (
</Card.Header>
<Card.Image
src="https://nextui.org/images/card-example-3.jpeg"
height={340}
width="100%"
height={340}
objectFit="cover"
alt="Card image background"
/>
</Card>
Expand All @@ -47,7 +49,7 @@ export const Card2 = () => (
const Card3 = `import { Card, Col, Text } from "@nextui-org/react";
export const Card3 = () => (
<Card cover css={{ bg: "$black", w: "100%" }}>
<Card css={{ bg: "$black", w: "100%" }}>
<Card.Header css={{ position: "absolute", zIndex: 1, top: 5 }}>
<Col>
<Text size={12} weight="bold" transform="uppercase" color="#ffffffAA">
Expand All @@ -60,8 +62,9 @@ export const Card3 = () => (
</Card.Header>
<Card.Image
src="https://nextui.org/images/card-example-2.jpeg"
height={340}
width="100%"
height={340}
objectFit="cover"
alt="Card image background"
/>
</Card>
Expand All @@ -70,7 +73,7 @@ export const Card3 = () => (
const Card4 = `import { Card, Col, Row, Button, Text } from "@nextui-org/react";
export const Card4 = () => (
<Card cover css={{ w: "100%" }}>
<Card css={{ w: "100%", h: "400px" }}>
<Card.Header css={{ position: "absolute", zIndex: 1, top: 5 }}>
<Col>
<Text size={12} weight="bold" transform="uppercase" color="#ffffffAA">
Expand All @@ -81,19 +84,20 @@ export const Card4 = () => (
</Text>
</Col>
</Card.Header>
<Card.Body>
<Card.Body css={{ p: 0 }}>
<Card.Image
src="https://nextui.org/images/card-example-6.jpeg"
height={400}
width="100%"
height="100%"
objectFit="cover"
alt="Card example background"
/>
</Card.Body>
<Card.Footer
blur
isBlurred
css={{
position: "absolute",
bgBlur: "#ffffff",
bgBlur: "#ffffff66",
borderTop: "$borderWeights$light solid rgba(255, 255, 255, 0.2)",
bottom: 0,
zIndex: 1,
Expand Down Expand Up @@ -130,7 +134,7 @@ export const Card4 = () => (
const Card5 = `import { Card, Col, Row, Button, Text } from "@nextui-org/react";
export const Card5 = () => (
<Card cover css={{ w: "100%", p: 0 }}>
<Card css={{ w: "100%", h: "400px" }}>
<Card.Header css={{ position: "absolute", zIndex: 1, top: 5 }}>
<Col>
<Text size={12} weight="bold" transform="uppercase" color="#9E9E9E">
Expand All @@ -141,20 +145,21 @@ export const Card5 = () => (
</Text>
</Col>
</Card.Header>
<Card.Body>
<Card.Body css={{ p: 0 }}>
<Card.Image
src="https://nextui.org/images/card-example-5.jpeg"
height={400}
objectFit="cover"
width="100%"
height="100%"
alt="Relaxing app background"
/>
</Card.Body>
<Card.Footer
blur
isBlurred
css={{
position: "absolute",
bgBlur: "#0f1114",
borderTop: "$borderWeights$light solid $gray700",
bgBlur: "#0f111466",
borderTop: "$borderWeights$light solid $gray800",
bottom: 0,
zIndex: 1,
}}
Expand All @@ -164,8 +169,8 @@ export const Card5 = () => (
<Row>
<Col span={3}>
<Card.Image
src="/images/breathing-app-icon.jpeg"
css={{ background: "black" }}
src="https://nextui.org/images/breathing-app-icon.jpeg"
css={{ bg: "black", br: "50%" }}
height={40}
width={40}
alt="Breathing app icon"
Expand Down
4 changes: 3 additions & 1 deletion apps/docs/content/components/card/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ const App = `import { Card } from "@nextui-org/react";
export default function App() {
return (
<Card css={{ mw: "400px" }}>
<p>A basic card.</p>
<Card.Body>
<Text>A basic card</Text>
</Card.Body>
</Card>
);
}`;
Expand Down
10 changes: 5 additions & 5 deletions apps/docs/content/components/card/divider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const App = `import { Card, Grid, Text, Divider, Button, Row } from "@nextui-org/react";
const App = `import { Card, Grid, Text, Button, Row } from "@nextui-org/react";
export default function App() {
return (
Expand All @@ -8,14 +8,14 @@ export default function App() {
<Card.Header>
<Text b>Card Title</Text>
</Card.Header>
<Divider />
<Card.Divider />
<Card.Body css={{ py: "$10" }}>
<Text>
Some quick example text to build on the card title and make up the
bulk of the card's content.
</Text>
</Card.Body>
<Divider />
<Card.Divider />
<Card.Footer>
<Row justify="flex-end">
<Button size="sm" light>
Expand All @@ -31,14 +31,14 @@ export default function App() {
<Card.Header>
<Text b>Card Title</Text>
</Card.Header>
<Divider />
<Card.Divider />
<Card.Body css={{ py: "$10" }}>
<Text>
Some quick example text to build on the card title and make up the
bulk of the card's content.
</Text>
</Card.Body>
<Divider />
<Card.Divider />
<Card.Footer>
<Row justify="flex-end">
<Button size="sm" light>
Expand Down
69 changes: 35 additions & 34 deletions apps/docs/content/components/card/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,41 @@ const App = `import { Card, Grid, Text, Link } from "@nextui-org/react";
export default function App() {
return (
<Grid.Container gap={2}>
<Grid sm={12} md={5}>
<Card css={{ mw: "330px" }}>
<Text h4>Next UI</Text>
<Text>🚀 Beautiful and modern React UI library.</Text>
<Card.Footer>
<Link
color="primary"
target="_blank"
href="https://github.com/nextui-org/nextui"
>
Visit source code on GitHub.
</Link>
</Card.Footer>
</Card>
</Grid>
<Grid sm={12} md={5}>
<Card css={{ mw: "330px" }} color="primary">
<Text h4 color="white">
Next UI
</Text>
<Text color="white">🚀 Beautiful and modern React UI library.</Text>
<Card.Footer>
<Link
target="_blank"
css={{ color: "white" }}
href="https://github.com/nextui-org/nextui"
>
Visit source code on GitHub.
</Link>
</Card.Footer>
</Card>
</Grid>
</Grid.Container>
<Card css={{ p: "$6", mw: "400px" }}>
<Card.Header>
<img
alt="nextui logo"
src="https://avatars.githubusercontent.com/u/86160567?s=200&v=4"
width="34px"
height="34px"
/>
<Grid.Container css={{ pl: "$6" }}>
<Grid xs={12}>
<Text h4 css={{ lineHeight: "$xs" }}>
Next UI
</Text>
</Grid>
<Grid xs={12}>
<Text css={{ color: "$accents8" }}>nextui.org</Text>
</Grid>
</Grid.Container>
</Card.Header>
<Card.Body css={{ py: "$2" }}>
<Text>
Make beautiful websites regardless of your design experience.
</Text>
</Card.Body>
<Card.Footer>
<Link
icon
color="primary"
target="_blank"
href="https://github.com/nextui-org/nextui"
>
Visit source code on GitHub.
</Link>
</Card.Footer>
</Card>
);
}`;

Expand Down
17 changes: 0 additions & 17 deletions apps/docs/content/components/card/hover.ts

This file was deleted.

1 comment on commit a488bed

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for nextui-docs ready!

✅ Preview
https://nextui-docs-8k36io8dj-nextui-org.vercel.app

Built with commit a488bed.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.