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.
- package/dist/cjs/index.js +9 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/types/LogAction.d.ts +2 -0
- package/dist/esm/index.js +9 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/types/LogAction.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/Modal.tsx +8 -1
- package/src/types/LogAction.ts +5 -1
- package/src/types/LogType.ts +1 -1
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",
|
|
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 = {}));
|