dce-reactkit 3.6.21 → 3.6.23
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 +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/helpers/logClientEvent.d.ts +3 -1
- package/dist/cjs/types/types/LogAction.d.ts +1 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/helpers/logClientEvent.d.ts +3 -1
- package/dist/esm/types/types/LogAction.d.ts +1 -0
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/helpers/logClientEvent.tsx +1 -1
- package/src/types/LogAction.ts +2 -0
package/dist/cjs/index.js
CHANGED
|
@@ -2504,6 +2504,8 @@ var LogAction;
|
|
|
2504
2504
|
LogAction["Halt"] = "Halt";
|
|
2505
2505
|
// Resume a process (resume a halted process)
|
|
2506
2506
|
LogAction["Resume"] = "Resume";
|
|
2507
|
+
// Jump to/seek to/reveal/go to/navigate to a target
|
|
2508
|
+
LogAction["Jump"] = "Jump";
|
|
2507
2509
|
// Unknown action
|
|
2508
2510
|
LogAction["Unknown"] = "Unknown";
|
|
2509
2511
|
})(LogAction || (LogAction = {}));
|