Skip to content

Commit

Permalink
chore: merge branch with main
Browse files Browse the repository at this point in the history
  • Loading branch information
jrgarciadev committed Oct 7, 2024
2 parents 780ba43 + 14cc26f commit 88c97f6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/docs/config/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const siteConfig = {
links: {
github: "https://github.com/nextui-org/nextui",
twitter: "https://x.com/getnextui",
docs: "https://nextui-docs-v2.vercel.app",
docs: "https://nextui.org",
discord: "https://discord.gg/9b6yyZKmH4",
sponsor: "https://patreon.com/jrgarciadev",
portfolio: "https://jrgarciadev.com",
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/image/blurred.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function App() {
<Image
isBlurred
width={240}
src="https://nextui-docs-v2.vercel.app/images/album-cover.png"
src="https://nextui.org/images/album-cover.png"
alt="NextUI Album Cover"
className="m-5"
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/image/fallback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function App() {
<Image
width={300}
height={200}
src="https://app.requestly.io/delay/1000/https://nextui-docs-v2.vercel.app/images/fruit-4.jpeg"
src="https://app.requestly.io/delay/1000/https://nextui.org/images/fruit-4.jpeg"
fallbackSrc="https://via.placeholder.com/300x200"
alt="NextUI Image with fallback"
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/image/loading.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function App() {
width={300}
height={200}
alt="NextUI hero Image with delay"
src="https://app.requestly.io/delay/5000/https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
src="https://app.requestly.io/delay/5000/https://nextui.org/images/hero-card-complete.jpeg"
/>
);
}`;
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/image/nextjs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function App() {
as={NextImage}
width={300}
height={200}
src="https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
src="https://nextui.org/images/hero-card-complete.jpeg"
alt="NextUI hero Image"
/>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/image/usage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function App() {
<Image
width={300}
alt="NextUI hero Image"
src="https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
src="https://nextui.org/images/hero-card-complete.jpeg"
/>
);
}`;
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/components/image/zoomed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function App() {
isZoomed
width={240}
alt="NextUI Fruit Image with Zoom"
src="https://nextui-docs-v2.vercel.app/images/fruit-1.jpeg"
src="https://nextui.org/images/fruit-1.jpeg"
/>
);
}`;
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/date-picker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ import {I18nProvider} from "@react-aria/i18n";
`DatePicker` has the following attributes on the `base` element:

- **data-slot**:
All slots have this prop. which slot the element represents(e.g. `canlendar`).
All slots have this prop. which slot the element represents(e.g. `calendar`).
- **data-open**:
Indicates if the calendar popover is open.
- **data-invalid**:
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/select.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Select follows the [Collection Components API](https://react-spectrum.adobe.com/
- **Static**: The usage example above shows the static implementation, which can be used when the full list of options is known ahead of time.
- **Dynamic**: The example below can be used when the options come from an external data source such as an API call, or update over time.

<CodeDemo title="Dynamic items" highlightedLines="8" files={selectContent.dynamic} />
<CodeDemo title="Dynamic items" highlightedLines="7" files={selectContent.dynamic} />

### Multiple Selection

Expand Down
2 changes: 1 addition & 1 deletion packages/components/dropdown/__tests__/dropdown.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ describe("Dropdown", () => {
<DropdownTrigger>
<Image
alt="NextUI hero Image"
src="https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
src="https://nextui.org/images/hero-card-complete.jpeg"
width={300}
/>
</DropdownTrigger>
Expand Down

0 comments on commit 88c97f6

Please sign in to comment.