@cloudtower/eagle 0.34.19 → 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.
@@ -61,7 +61,7 @@ function ImmersiveDialog(props) {
61
61
  footer,
62
62
  showCancel = true,
63
63
  showOk = true,
64
- okLoading,
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
- "okLoading",
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: okLoading
157
+ loading: confirmLoading
158
158
  }, okButtonProps),
159
159
  _confirmText
160
160
  ) : null));
161
161
  }, [
162
+ initializing,
163
+ footer,
162
164
  footerLeftAction,
163
- _confirmText,
165
+ error,
166
+ showFooterErrorIcon,
167
+ showCancel,
164
168
  cancelButtonProps,
165
169
  _cancelText,
166
- error,
167
- footer,
170
+ showOk,
171
+ confirmLoading,
168
172
  okButtonProps,
169
- okLoading,
170
- onCancel,
171
- onOk,
173
+ _confirmText,
172
174
  popModal,
173
- showCancel,
174
- showOk,
175
- initializing
175
+ onCancel,
176
+ onOk
176
177
  ]);
177
178
  return /* @__PURE__ */ React__default.default.createElement(
178
179
  antd.Modal,