@aveonline/ui-react 2.19.3 → 2.19.5
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.
|
@@ -1,2 +1,9 @@
|
|
|
1
1
|
import { IPropsPie } from '.';
|
|
2
|
-
|
|
2
|
+
interface PieData {
|
|
3
|
+
name: string;
|
|
4
|
+
value: number;
|
|
5
|
+
}
|
|
6
|
+
export default function Pie<T extends PieData>({ data, width, height, innerRadius, outerRadius, cx, cy, paddingAngle, cornerRadius, dataKey, isLoading, minValue }: IPropsPie<T> & {
|
|
7
|
+
minValue?: number;
|
|
8
|
+
}): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
import type { IPropsModal } from './IModal';
|
|
2
|
-
|
|
3
|
-
* Molecule: Modal
|
|
4
|
-
* Modals are overlays that require merchants to take an action before they can continue interacting with the rest of Shopify. They can be disruptive and should be used thoughtfully and sparingly.
|
|
5
|
-
*/
|
|
6
|
-
declare function Modal({ title, iconTitle, subtitle, footer, isOpen, hasBorder, showClose, onClose, className, children }: IPropsModal): JSX.Element;
|
|
2
|
+
declare function Modal({ title, iconTitle, subtitle, footer, isOpen, hasBorder, showClose, onClose, className, disableOverlayClick, children }: IPropsModal): JSX.Element;
|
|
7
3
|
export default Modal;
|