@cloudtower/eagle 0.34.18 → 0.34.20
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/ImmersiveDialog/index.js +13 -12
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +3477 -3478
- package/dist/esm/core/ImmersiveDialog/index.js +13 -12
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +3786 -3787
- package/dist/src/core/ImmersiveDialog/type.d.ts +0 -2
- package/dist/stories/docs/core/ImmersiveDialog.stories.d.ts +0 -1
- package/dist/stories/docs/core/WizardDialog.stories.d.ts +0 -1
- package/dist/style.css +3477 -3478
- package/package.json +4 -4
|
@@ -61,7 +61,7 @@ function ImmersiveDialog(props) {
|
|
|
61
61
|
footer,
|
|
62
62
|
showCancel = true,
|
|
63
63
|
showOk = true,
|
|
64
|
-
|
|
64
|
+
confirmLoading,
|
|
65
65
|
okButtonProps,
|
|
66
66
|
cancelButtonProps,
|
|
67
67
|
okText,
|
|
@@ -87,7 +87,7 @@ function ImmersiveDialog(props) {
|
|
|
87
87
|
"footer",
|
|
88
88
|
"showCancel",
|
|
89
89
|
"showOk",
|
|
90
|
-
"
|
|
90
|
+
"confirmLoading",
|
|
91
91
|
"okButtonProps",
|
|
92
92
|
"cancelButtonProps",
|
|
93
93
|
"okText",
|
|
@@ -154,25 +154,26 @@ function ImmersiveDialog(props) {
|
|
|
154
154
|
onOk == null ? void 0 : onOk(e);
|
|
155
155
|
},
|
|
156
156
|
type: "primary",
|
|
157
|
-
loading:
|
|
157
|
+
loading: confirmLoading
|
|
158
158
|
}, okButtonProps),
|
|
159
159
|
_confirmText
|
|
160
160
|
) : null));
|
|
161
161
|
}, [
|
|
162
|
+
initializing,
|
|
163
|
+
footer,
|
|
162
164
|
footerLeftAction,
|
|
163
|
-
|
|
165
|
+
error,
|
|
166
|
+
showFooterErrorIcon,
|
|
167
|
+
showCancel,
|
|
164
168
|
cancelButtonProps,
|
|
165
169
|
_cancelText,
|
|
166
|
-
|
|
167
|
-
|
|
170
|
+
showOk,
|
|
171
|
+
confirmLoading,
|
|
168
172
|
okButtonProps,
|
|
169
|
-
|
|
170
|
-
onCancel,
|
|
171
|
-
onOk,
|
|
173
|
+
_confirmText,
|
|
172
174
|
popModal,
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
initializing
|
|
175
|
+
onCancel,
|
|
176
|
+
onOk
|
|
176
177
|
]);
|
|
177
178
|
return /* @__PURE__ */ React__default.default.createElement(
|
|
178
179
|
antd.Modal,
|