dce-reactkit 3.6.18 → 3.6.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.
@@ -18,6 +18,8 @@ declare enum LogAction {
18
18
  Activate = "Activate",
19
19
  Deactivate = "Deactivate",
20
20
  Peek = "Peek",
21
+ Halt = "Halt",
22
+ Resume = "Resume",
21
23
  Unknown = "Unknown"
22
24
  }
23
25
  export default LogAction;
package/dist/esm/index.js CHANGED
@@ -595,7 +595,11 @@ const Modal = (props) => {
595
595
  React__default.createElement("h5", { className: "modal-title", style: {
596
596
  fontWeight: 'bold',
597
597
  } }, title),
598
- onClose && (React__default.createElement("button", { type: "button", className: "btn-close", "aria-label": "Close", onClick: () => {
598
+ onClose && (React__default.createElement("button", { type: "button", className: "Modal-x-button btn-close", "aria-label": "Close", style: {
599
+ backgroundColor: (isDarkModeOn()
600
+ ? 'white'
601
+ : undefined),
602
+ }, onClick: () => {
599
603
  // Handle close
600
604
  handleClose(ModalButtonType$1.Cancel);
601
605
  } }))),
@@ -2443,6 +2447,10 @@ var LogAction;
2443
2447
  LogAction["Deactivate"] = "Deactivate";
2444
2448
  // User showed interest in a target (hover, peek, etc.)
2445
2449
  LogAction["Peek"] = "Peek";
2450
+ // Halt a process (pause, etc.)
2451
+ LogAction["Halt"] = "Halt";
2452
+ // Resume a process (resume a halted process)
2453
+ LogAction["Resume"] = "Resume";
2446
2454
  // Unknown action
2447
2455
  LogAction["Unknown"] = "Unknown";
2448
2456
  })(LogAction || (LogAction = {}));