@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.
@@ -6,7 +6,6 @@ export interface AccordionProps {
6
6
  glyphColor?: string;
7
7
  className?: string;
8
8
  timeout?: number;
9
- transitionClassnames?: string;
10
9
  description?: string;
11
10
  shouldOpenOnMount?: boolean;
12
11
  }
@@ -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
- declare const TapBar: import("styled-components").StyledComponent<"div", any, {
8
- shouldOpen: boolean;
9
- }, never>;
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 Content: import("styled-components").StyledComponent<"div", any, {}, never>;
14
- export { Content, TapBar, Top, Text, Arrow, Left, Right, Description };
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, };