@appquality/unguess-design-system 2.11.18 → 2.12.0
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.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { AccordionArgs } from "../../../accordions/_types";
|
|
3
|
+
import { NavItemArgs } from "./_types";
|
|
4
|
+
declare const AccordionItem: import("styled-components").StyledComponent<{
|
|
5
|
+
(props: AccordionArgs): JSX.Element;
|
|
6
|
+
Section: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
Header: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
Label: import("react").ForwardRefExoticComponent<import("react").ButtonHTMLAttributes<HTMLButtonElement> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
9
|
+
Panel: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLElement> & import("react").RefAttributes<HTMLElement>>;
|
|
10
|
+
}, any, AccordionArgs & NavItemArgs, never>;
|
|
11
|
+
export { AccordionItem };
|
|
@@ -18,6 +18,8 @@ export interface SidebarArgs extends NavArgs, WorkspaceDropdownArgs {
|
|
|
18
18
|
tokens?: string;
|
|
19
19
|
tokensLabel?: string;
|
|
20
20
|
isExpanded?: boolean;
|
|
21
|
+
activityLabel?: string;
|
|
22
|
+
walletLabel?: string;
|
|
21
23
|
onToggleMenu?: () => void;
|
|
22
24
|
onNavToggle?: (route: string, parameter?: string) => void;
|
|
23
25
|
isLoading?: boolean;
|
|
@@ -2,3 +2,6 @@ import { IGardenTheme } from "@zendeskgarden/react-theming";
|
|
|
2
2
|
export declare const hex2rgba: (hex: string, alpha?: number) => string;
|
|
3
3
|
export declare const boxShadow: (theme: IGardenTheme) => string;
|
|
4
4
|
export declare const isMac: () => boolean | "" | undefined;
|
|
5
|
+
export declare const opacityTransition: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
export declare const sidebarNavItemExpanded: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
export declare const sidebarNavItemHidden: import("styled-components").FlattenSimpleInterpolation;
|