@bigbinary/neetoui 3.7.0-beta.13 → 3.7.0-beta.16
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 +8 -0
- package/formik.js +4 -14
- package/index.css +1 -1
- package/index.d.ts +50 -21
- package/index.js +4 -14
- package/layouts.d.ts +2 -1
- package/layouts.js +5 -5
- package/molecules.js +4 -4
- package/package.json +25 -26
- package/index.esm.js +0 -34
package/layouts.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import { NavLinkProps } from "react-router-dom";
|
|
|
3
3
|
import { AvatarProps, InputProps } from "./index";
|
|
4
4
|
|
|
5
5
|
export interface AppSwitcherProps {
|
|
6
|
-
size?: "lg" | "sm";
|
|
7
6
|
isOpen?: boolean;
|
|
8
7
|
className?: string;
|
|
9
8
|
closeOnEsc?: boolean;
|
|
@@ -83,6 +82,7 @@ export interface SidebarProps {
|
|
|
83
82
|
};
|
|
84
83
|
navLinks?: NavLinkItemType[];
|
|
85
84
|
tooltipStyle?: "default" | "featured";
|
|
85
|
+
/** @deprecated Prop removed as footer links in sidebar is no longer supported*/
|
|
86
86
|
footerLinks?: FooterLinkType[];
|
|
87
87
|
profileInfo?: {
|
|
88
88
|
name?: string;
|
|
@@ -94,6 +94,7 @@ export interface SidebarProps {
|
|
|
94
94
|
helpProps?: LinkType;
|
|
95
95
|
"data-cy"?: string;
|
|
96
96
|
} & AvatarProps;
|
|
97
|
+
/** @deprecated Prop removed as expanded state of sidebar is no longer supported */
|
|
97
98
|
isCollapsed?: boolean;
|
|
98
99
|
showAppSwitcher?: boolean;
|
|
99
100
|
onAppSwitcherToggle?: React.MouseEventHandler<HTMLButtonElement>;
|