Skip to content

Commit 26fc514

Browse files
authored
refactor: remove unnecessary props types (heroui-inc#4530)
* refactor(docs): remove string type as it is included in ReactNode * refactor: remove unnecessary types * feat(changeset): add changeset * chore: remove changeset * refactor: remove null since ReactNode unions it already
1 parent fcdf24a commit 26fc514

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

apps/docs/content/docs/components/accordion.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -327,19 +327,19 @@ Here's an example of how to customize the accordion styles:
327327
data={[
328328
{
329329
attribute: "children",
330-
type: "ReactNode | string",
330+
type: "ReactNode",
331331
description: "The content of the component.",
332332
default: "-"
333333
},
334334
{
335335
attribute: "title",
336-
type: "ReactNode | string",
336+
type: "ReactNode",
337337
description: "The accordion item title.",
338338
default: "-"
339339
},
340340
{
341341
attribute: "subtitle",
342-
type: "ReactNode | string",
342+
type: "ReactNode",
343343
description: "The accordion item subtitle.",
344344
default: "-"
345345
},

apps/docs/content/docs/components/navbar.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ When the `NavbarItem` is active, it will have a `data-active` attribute. You can
412412
data={[
413413
{
414414
attribute: "icon",
415-
type: "ReactNode | ((isOpen: boolean | undefined) => ReactNode | null)",
415+
type: "ReactNode | ((isOpen: boolean | undefined) => ReactNode)",
416416
description: "The icon to render as the navbar menu toggle.",
417417
default: "-"
418418
},

packages/components/accordion/src/accordion-item.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const AccordionItem = forwardRef<"button", AccordionItemProps>((props, ref) => {
4040

4141
const willChange = useWillChange();
4242

43-
const indicatorContent = useMemo<ReactNode | null>(() => {
43+
const indicatorContent = useMemo<ReactNode>(() => {
4444
if (typeof indicator === "function") {
4545
return indicator({indicator: <ChevronIcon />, isOpen, isDisabled});
4646
}

packages/components/accordion/src/base/accordion-item-base.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ export interface Props<T extends object = {}>
3333
/**
3434
* The content of the component.
3535
*/
36-
children?: ReactNode | null;
36+
children?: ReactNode;
3737
/**
3838
* The accordion item title.
3939
*/
40-
title?: ReactNode | string;
40+
title?: ReactNode;
4141
/**
4242
* The accordion item subtitle.
4343
*/
44-
subtitle?: ReactNode | string;
44+
subtitle?: ReactNode;
4545
/**
4646
* The accordion item `expanded` indicator, it's usually an arrow icon.
4747
* If you pass a function, NextUI will expose the current indicator and the open status,

packages/components/listbox/src/base/listbox-item-base.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ interface Props<T extends object = {}> extends Omit<ItemProps<"li", T>, "childre
2525
/**
2626
* The content of the component.
2727
*/
28-
children?: ReactNode | null;
28+
children?: ReactNode;
2929
/**
3030
* The listbox item title.
3131
*/
32-
title?: ReactNode | string;
32+
title?: ReactNode;
3333
/**
3434
* The listbox item subtitle.
3535
*/
36-
description?: ReactNode | string;
36+
description?: ReactNode;
3737
/**
3838
* The listbox item start content.
3939
*/

packages/components/listbox/src/listbox-item.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const ListboxItem = (props: ListboxItemProps) => {
2929
getSelectedIconProps,
3030
} = useListboxItem(props);
3131

32-
const selectedContent = useMemo<ReactNode | null>(() => {
32+
const selectedContent = useMemo<ReactNode>(() => {
3333
const defaultIcon = (
3434
<ListboxSelectedIcon disableAnimation={disableAnimation} isSelected={isSelected} />
3535
);

packages/components/menu/src/base/menu-item-base.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ interface Props<T extends object = {}> extends Omit<ItemProps<"li", T>, "childre
2525
/**
2626
* The content of the component.
2727
*/
28-
children?: ReactNode | null;
28+
children?: ReactNode;
2929
/**
3030
* The menu item title.
3131
*/
32-
title?: ReactNode | string;
32+
title?: ReactNode;
3333
/**
3434
* The menu item subtitle.
3535
*/
36-
description?: ReactNode | string;
36+
description?: ReactNode;
3737
/**
3838
* The menu item keyboard shortcut.
3939
*/
40-
shortcut?: ReactNode | string;
40+
shortcut?: ReactNode;
4141
/**
4242
* The menu item start content.
4343
*/

packages/components/menu/src/menu-item.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const MenuItem = (props: MenuItemProps) => {
3232
getSelectedIconProps,
3333
} = useMenuItem(props);
3434

35-
const selectedContent = useMemo<ReactNode | null>(() => {
35+
const selectedContent = useMemo<ReactNode>(() => {
3636
const defaultIcon = (
3737
<MenuSelectedIcon disableAnimation={disableAnimation} isSelected={isSelected} />
3838
);

packages/components/snippet/src/use-snippet.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface UseSnippetProps extends Omit<HTMLNextUIProps, "onCopy">, Snippe
2424
* The content of the snippet.
2525
* if `string[]` is passed, it will be rendered as a multi-line snippet.
2626
*/
27-
children?: React.ReactNode | string | string[];
27+
children?: React.ReactNode | string[];
2828
/**
2929
* The symbol to show before the snippet.
3030
* @default "$"

packages/components/tabs/src/base/tab-item-base.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ interface Props<T extends object = {}> extends Omit<ItemProps<"button", T>, "chi
44
/**
55
* The content of the component.
66
*/
7-
children?: ReactNode | null;
7+
children?: ReactNode;
88
/**
99
* The title of the component.
1010
*/
11-
title?: ReactNode | null;
11+
title?: ReactNode;
1212
/**
1313
* A string representation of the item's contents. Use this when the title is not readable.
1414
* This will be used as native `title` attribute.

packages/components/user/src/use-user.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ interface Props {
1717
/**
1818
* The user name.
1919
*/
20-
name: ReactNode | string;
20+
name: ReactNode;
2121
/**
2222
* The user information, like email, phone, etc.
2323
*/
24-
description?: ReactNode | string;
24+
description?: ReactNode;
2525
/**
2626
* Whether the user can be focused.
2727
* @default false

0 commit comments

Comments
 (0)