@cloudtower/eagle 0.27.81 → 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/DonutChart/index.js +1 -1
- package/dist/cjs/core/Modal/index.js +6 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2600 -2600
- package/dist/esm/core/DonutChart/index.js +1 -1
- package/dist/esm/core/Modal/index.js +6 -2
- 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 +2432 -2432
- package/package.json +4 -4
|
@@ -77,7 +77,7 @@ const formatChartData = ({
|
|
|
77
77
|
}, {
|
|
78
78
|
name: t("components.other"),
|
|
79
79
|
value: (_e = formatCollapse(otherData)) == null ? void 0 : _e.value,
|
|
80
|
-
color:
|
|
80
|
+
color: color.Color.gray["gray-40"],
|
|
81
81
|
tooltip: (_f = formatCollapse(otherData)) == null ? void 0 : _f.tooltip
|
|
82
82
|
}];
|
|
83
83
|
}
|
|
@@ -152,8 +152,12 @@ const Modal = (props) => {
|
|
|
152
152
|
{
|
|
153
153
|
className: "prev-step",
|
|
154
154
|
onClick: () => {
|
|
155
|
-
var _a2;
|
|
156
|
-
|
|
155
|
+
var _a2, _b2, _c, _d;
|
|
156
|
+
if (typeof wizard === "object" && ((_a2 = wizard.steps[wizard.step]) == null ? void 0 : _a2.onPrev)) {
|
|
157
|
+
(_c = (_b2 = wizard.steps[wizard.step]).onPrev) == null ? void 0 : _c.call(_b2);
|
|
158
|
+
return;
|
|
159
|
+
}
|
|
160
|
+
(_d = wizard.onStepChange) == null ? void 0 : _d.call(wizard, wizard.step - 1);
|
|
157
161
|
}
|
|
158
162
|
},
|
|
159
163
|
prevText
|