@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.
@@ -54,7 +54,7 @@ function ImmersiveDialog(props) {
54
54
  footer,
55
55
  showCancel = true,
56
56
  showOk = true,
57
- okLoading,
57
+ confirmLoading,
58
58
  okButtonProps,
59
59
  cancelButtonProps,
60
60
  okText,
@@ -80,7 +80,7 @@ function ImmersiveDialog(props) {
80
80
  "footer",
81
81
  "showCancel",
82
82
  "showOk",
83
- "okLoading",
83
+ "confirmLoading",
84
84
  "okButtonProps",
85
85
  "cancelButtonProps",
86
86
  "okText",
@@ -147,25 +147,26 @@ function ImmersiveDialog(props) {
147
147
  onOk == null ? void 0 : onOk(e);
148
148
  },
149
149
  type: "primary",
150
- loading: okLoading
150
+ loading: confirmLoading
151
151
  }, okButtonProps),
152
152
  _confirmText
153
153
  ) : null));
154
154
  }, [
155
+ initializing,
156
+ footer,
155
157
  footerLeftAction,
156
- _confirmText,
158
+ error,
159
+ showFooterErrorIcon,
160
+ showCancel,
157
161
  cancelButtonProps,
158
162
  _cancelText,
159
- error,
160
- footer,
163
+ showOk,
164
+ confirmLoading,
161
165
  okButtonProps,
162
- okLoading,
163
- onCancel,
164
- onOk,
166
+ _confirmText,
165
167
  popModal,
166
- showCancel,
167
- showOk,
168
- initializing
168
+ onCancel,
169
+ onOk
169
170
  ]);
170
171
  return /* @__PURE__ */ React__default.createElement(
171
172
  Modal,