@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.
@@ -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: "#D8DEEB";
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: null;
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;