@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.
- package/dist/components/ExpandableList/ExpandIcon.d.ts +13 -0
- package/dist/components/ExpandableList/ExpandableContainer.d.ts +5 -0
- package/dist/components/ExpandableList/ExpandableItem.d.ts +9 -0
- package/dist/components/ExpandableList/RoundOrder.d.ts +6 -0
- package/dist/components/ExpandableList/__test__/h5_css.test.d.ts +1 -0
- package/dist/components.css +304 -304
- package/dist/esm/stats1.html +1 -1
- package/dist/style.css +133 -133
- package/dist/umd/stats1.html +1 -1
- package/dist/variables.scss +1 -0
- package/package.json +5 -5
|
@@ -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,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 @@
|
|
|
1
|
+
export {};
|