@cloudtower/eagle 0.27.79 → 0.27.82
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/cjs/core/Cascader/index.js +1 -1
- package/dist/cjs/core/DonutChart/index.js +1 -1
- package/dist/cjs/core/Modal/index.js +6 -2
- package/dist/cjs/core/SegmentControl/index.js +1 -1
- package/dist/cjs/core/SidebarMenu/SidebarMenu.js +1 -1
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2435 -2435
- package/dist/esm/core/Cascader/index.js +1 -1
- package/dist/esm/core/DonutChart/index.js +1 -1
- package/dist/esm/core/Modal/index.js +6 -2
- package/dist/esm/core/SegmentControl/index.js +1 -1
- package/dist/esm/core/SidebarMenu/SidebarMenu.js +1 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/DonutChart/index.d.ts +2 -8
- package/dist/src/core/Modal/modal.type.d.ts +8 -0
- package/dist/style.css +2507 -2507
- package/package.json +4 -4
|
@@ -103,21 +103,15 @@ export declare const formatChartData: ({ otherData, data, t, collapseText, }: ID
|
|
|
103
103
|
} | {
|
|
104
104
|
name: string;
|
|
105
105
|
value: number;
|
|
106
|
-
color:
|
|
106
|
+
color: null;
|
|
107
107
|
tooltip: {
|
|
108
108
|
name: string;
|
|
109
109
|
value: number;
|
|
110
110
|
}[];
|
|
111
|
-
})[] | ({
|
|
112
|
-
name: string;
|
|
113
|
-
value: number;
|
|
114
|
-
color?: string | undefined;
|
|
115
|
-
tooltip?: string | undefined;
|
|
116
|
-
onClick?: ((name: string) => void) | undefined;
|
|
117
111
|
} | {
|
|
118
112
|
name: string;
|
|
119
113
|
value: number;
|
|
120
|
-
color:
|
|
114
|
+
color: "#D8DEEB";
|
|
121
115
|
tooltip: {
|
|
122
116
|
name: string;
|
|
123
117
|
value: number;
|
|
@@ -3,7 +3,15 @@ import { ModalProps as AntdModalProps } from "antd/lib/modal";
|
|
|
3
3
|
export type WizardSteps = {
|
|
4
4
|
title: string;
|
|
5
5
|
render: React.ReactNode;
|
|
6
|
+
/**
|
|
7
|
+
* custom prev button text
|
|
8
|
+
*/
|
|
6
9
|
prevText?: string | React.ReactNode;
|
|
10
|
+
/**
|
|
11
|
+
* custom prev button event handler
|
|
12
|
+
* @returns void
|
|
13
|
+
*/
|
|
14
|
+
onPrev?: () => void;
|
|
7
15
|
okText?: string | React.ReactNode;
|
|
8
16
|
onOk?: (e: React.MouseEvent<HTMLElement>) => void;
|
|
9
17
|
disabled?: boolean;
|