@cloudtower/eagle 0.26.13 → 0.26.14

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,13 @@
1
+ import React from "react";
2
+ interface IProps {
3
+ isActive?: boolean;
4
+ header?: React.ReactNode;
5
+ className?: string;
6
+ style?: React.CSSProperties;
7
+ showArrow?: boolean;
8
+ forceRender?: boolean;
9
+ disabled?: boolean;
10
+ extra?: React.ReactNode;
11
+ }
12
+ declare const ExpandIcon: (props: IProps) => JSX.Element;
13
+ export default ExpandIcon;
@@ -0,0 +1,5 @@
1
+ import { PropsWithChildren } from "react";
2
+ interface IProps {
3
+ }
4
+ declare const ExpandableContainer: (props: PropsWithChildren<IProps>) => JSX.Element;
5
+ export default ExpandableContainer;
@@ -0,0 +1,9 @@
1
+ import React, { PropsWithChildren } from "react";
2
+ interface IProps {
3
+ header?: React.ReactNode;
4
+ order?: number;
5
+ disableExpand?: boolean;
6
+ defaultActive?: boolean;
7
+ }
8
+ declare const ExpandableItem: (props: PropsWithChildren<IProps>) => JSX.Element;
9
+ export default ExpandableItem;
@@ -0,0 +1,6 @@
1
+ import { PropsWithChildren } from "react";
2
+ interface IProps {
3
+ order?: number;
4
+ }
5
+ declare const RoundedOrder: (props: PropsWithChildren<IProps>) => JSX.Element;
6
+ export default RoundedOrder;