quirk-ui 0.0.431 → 0.0.432
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core.d.ts +1 -1
- package/dist/main.d.ts +1 -1
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -859,7 +859,7 @@ declare type MultiSelectProps = {
|
|
|
859
859
|
export declare function Navbar({ renderText, title, logo, items, groups, utilityItems, isSticky, showSearch, showLocaleSelect, alignment, variant, navigationType, searchComponent, localeSelectComponent, className, }: NavbarProps): JSX.Element;
|
|
860
860
|
|
|
861
861
|
declare type NavbarProps = {
|
|
862
|
-
renderText?: (content: unknown) => default_2.ReactNode;
|
|
862
|
+
renderText?: (content: RichContent | string | unknown) => default_2.ReactNode;
|
|
863
863
|
title?: string;
|
|
864
864
|
logo?: default_2.ReactNode;
|
|
865
865
|
items?: NavItem[];
|
package/dist/main.d.ts
CHANGED
|
@@ -1254,7 +1254,7 @@ declare type MultiSelectProps = {
|
|
|
1254
1254
|
export declare function Navbar({ renderText, title, logo, items, groups, utilityItems, isSticky, showSearch, showLocaleSelect, alignment, variant, navigationType, searchComponent, localeSelectComponent, className, }: NavbarProps): JSX.Element;
|
|
1255
1255
|
|
|
1256
1256
|
declare type NavbarProps = {
|
|
1257
|
-
renderText?: (content: unknown) => default_2.ReactNode;
|
|
1257
|
+
renderText?: (content: RichContent | string | unknown) => default_2.ReactNode;
|
|
1258
1258
|
title?: string;
|
|
1259
1259
|
logo?: default_2.ReactNode;
|
|
1260
1260
|
items?: NavItem[];
|