@bigbinary/neetoui 4.4.7 → 4.4.9
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/CHANGELOG.md +4 -4
- package/README.md +9 -3
- package/formik.cjs.js +3 -3
- package/formik.js +5 -5
- package/index.cjs.js +3 -3
- package/index.css +1 -1
- package/index.js +3 -3
- package/layouts.cjs.js +3 -3
- package/layouts.d.ts +6 -3
- package/layouts.js +4 -4
- package/package.json +2 -10
package/layouts.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface AppSwitcherProps {
|
|
|
11
11
|
neetoApps?: {
|
|
12
12
|
name: string;
|
|
13
13
|
description: string;
|
|
14
|
-
url: string
|
|
14
|
+
url: string;
|
|
15
15
|
}[];
|
|
16
16
|
recentApps?: string[];
|
|
17
17
|
isSidebarOpen?: boolean;
|
|
@@ -127,14 +127,17 @@ export interface SidebarProps {
|
|
|
127
127
|
tooltipStyle?: "default" | "featured";
|
|
128
128
|
/** @deprecated Prop removed as footer links in sidebar is no longer supported*/
|
|
129
129
|
footerLinks?: FooterLinkType[];
|
|
130
|
+
helpLinks?: {
|
|
131
|
+
documentationProps?: LinkType;
|
|
132
|
+
keyboardShortcutProps?: LinkType;
|
|
133
|
+
changelogProps?: LinkType;
|
|
134
|
+
};
|
|
130
135
|
profileInfo?: {
|
|
131
136
|
name?: string;
|
|
132
137
|
email?: string;
|
|
133
138
|
topLinks?: LinkType[];
|
|
134
139
|
bottomLinks?: LinkType[];
|
|
135
140
|
customContent?: React.ReactNode;
|
|
136
|
-
changelogProps?: LinkType;
|
|
137
|
-
helpProps?: LinkType;
|
|
138
141
|
"data-cy"?: string;
|
|
139
142
|
} & AvatarProps;
|
|
140
143
|
/** @deprecated Prop removed as expanded state of sidebar is no longer supported */
|