Skip to content

Commit 88c97f6

Browse files
committed
chore: merge branch with main
2 parents 780ba43 + 14cc26f commit 88c97f6

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

apps/docs/config/site.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const siteConfig = {
3333
links: {
3434
github: "https://github.com/nextui-org/nextui",
3535
twitter: "https://x.com/getnextui",
36-
docs: "https://nextui-docs-v2.vercel.app",
36+
docs: "https://nextui.org",
3737
discord: "https://discord.gg/9b6yyZKmH4",
3838
sponsor: "https://patreon.com/jrgarciadev",
3939
portfolio: "https://jrgarciadev.com",

apps/docs/content/components/image/blurred.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function App() {
55
<Image
66
isBlurred
77
width={240}
8-
src="https://nextui-docs-v2.vercel.app/images/album-cover.png"
8+
src="https://nextui.org/images/album-cover.png"
99
alt="NextUI Album Cover"
1010
className="m-5"
1111
/>

apps/docs/content/components/image/fallback.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function App() {
55
<Image
66
width={300}
77
height={200}
8-
src="https://app.requestly.io/delay/1000/https://nextui-docs-v2.vercel.app/images/fruit-4.jpeg"
8+
src="https://app.requestly.io/delay/1000/https://nextui.org/images/fruit-4.jpeg"
99
fallbackSrc="https://via.placeholder.com/300x200"
1010
alt="NextUI Image with fallback"
1111
/>

apps/docs/content/components/image/loading.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function App() {
66
width={300}
77
height={200}
88
alt="NextUI hero Image with delay"
9-
src="https://app.requestly.io/delay/5000/https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
9+
src="https://app.requestly.io/delay/5000/https://nextui.org/images/hero-card-complete.jpeg"
1010
/>
1111
);
1212
}`;

apps/docs/content/components/image/nextjs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function App() {
77
as={NextImage}
88
width={300}
99
height={200}
10-
src="https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
10+
src="https://nextui.org/images/hero-card-complete.jpeg"
1111
alt="NextUI hero Image"
1212
/>
1313
);

apps/docs/content/components/image/usage.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default function App() {
55
<Image
66
width={300}
77
alt="NextUI hero Image"
8-
src="https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
8+
src="https://nextui.org/images/hero-card-complete.jpeg"
99
/>
1010
);
1111
}`;

apps/docs/content/components/image/zoomed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function App() {
66
isZoomed
77
width={240}
88
alt="NextUI Fruit Image with Zoom"
9-
src="https://nextui-docs-v2.vercel.app/images/fruit-1.jpeg"
9+
src="https://nextui.org/images/fruit-1.jpeg"
1010
/>
1111
);
1212
}`;

apps/docs/content/docs/components/date-picker.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ import {I18nProvider} from "@react-aria/i18n";
277277
`DatePicker` has the following attributes on the `base` element:
278278

279279
- **data-slot**:
280-
All slots have this prop. which slot the element represents(e.g. `canlendar`).
280+
All slots have this prop. which slot the element represents(e.g. `calendar`).
281281
- **data-open**:
282282
Indicates if the calendar popover is open.
283283
- **data-invalid**:

apps/docs/content/docs/components/select.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Select follows the [Collection Components API](https://react-spectrum.adobe.com/
5454
- **Static**: The usage example above shows the static implementation, which can be used when the full list of options is known ahead of time.
5555
- **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.
5656

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

5959
### Multiple Selection
6060

packages/components/dropdown/__tests__/dropdown.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ describe("Dropdown", () => {
526526
<DropdownTrigger>
527527
<Image
528528
alt="NextUI hero Image"
529-
src="https://nextui-docs-v2.vercel.app/images/hero-card-complete.jpeg"
529+
src="https://nextui.org/images/hero-card-complete.jpeg"
530530
width={300}
531531
/>
532532
</DropdownTrigger>

0 commit comments

Comments
 (0)