@veeqo/ui 0.1.24 → 0.1.25
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.
|
@@ -4,11 +4,22 @@ declare const Left: import("styled-components").StyledComponent<"div", any, {
|
|
|
4
4
|
glyphColor: string;
|
|
5
5
|
}, never>;
|
|
6
6
|
declare const Right: import("styled-components").StyledComponent<any, any, object, string | number | symbol>;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
/**
|
|
8
|
+
* Due to unique behaviour observed in Safari, we override the outline property when
|
|
9
|
+
* the accordion is focussed.
|
|
10
|
+
*/
|
|
11
|
+
declare const AccordionSummary: import("styled-components").StyledComponent<"summary", any, {}, never>;
|
|
10
12
|
declare const Top: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
|
-
declare const Arrow: import("styled-components").StyledComponent<(props: any) => import("react").JSX.Element, any, {}, never>;
|
|
12
13
|
declare const Description: import("styled-components").StyledComponent<"span", any, {} & import("../Text/types").TextProps, never>;
|
|
13
|
-
declare const
|
|
14
|
-
|
|
14
|
+
declare const AccordionContent: import("styled-components").StyledComponent<import("framer-motion").CustomDomComponent<{
|
|
15
|
+
[x: string]: any;
|
|
16
|
+
[x: number]: any;
|
|
17
|
+
[x: symbol]: any;
|
|
18
|
+
} & {
|
|
19
|
+
theme?: any;
|
|
20
|
+
} & {
|
|
21
|
+
as?: string | import("react").ComponentType<any> | undefined;
|
|
22
|
+
forwardedAs?: string | import("react").ComponentType<any> | undefined;
|
|
23
|
+
}>, any, {}, never>;
|
|
24
|
+
declare const AccordionDetails: import("styled-components").StyledComponent<"details", any, {}, never>;
|
|
25
|
+
export { AccordionSummary, Top, Text, Left, Right, Description, AccordionDetails, AccordionContent, };
|