@magic-xpa/engine 4.801.0-dev481.232 → 4.801.0-dev481.236

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.
Files changed (117) hide show
  1. package/bundles/magic-xpa-engine.umd.js +153 -167
  2. package/bundles/magic-xpa-engine.umd.js.map +1 -1
  3. package/bundles/magic-xpa-engine.umd.min.js +1 -1
  4. package/bundles/magic-xpa-engine.umd.min.js.map +1 -1
  5. package/esm2015/src/ClientManager.js +2 -2
  6. package/esm2015/src/CurrentClientVersion.js +2 -2
  7. package/esm2015/src/GUIManager.js +2 -2
  8. package/esm2015/src/GuiEventsProcessor.js +5 -5
  9. package/esm2015/src/commands/ClientToServer/BrowserEscEventCommand.js +2 -2
  10. package/esm2015/src/commands/ClientToServer/ClientOriginatedCommand.js +2 -2
  11. package/esm2015/src/commands/ClientToServer/ClientOriginatedCommandSerializer.js +3 -3
  12. package/esm2015/src/commands/ClientToServer/ColumnSortEventCommand.js +2 -2
  13. package/esm2015/src/commands/ClientToServer/ComputeEventCommand.js +2 -2
  14. package/esm2015/src/commands/ClientToServer/ContextTerminationEventCommand.js +2 -2
  15. package/esm2015/src/commands/ClientToServer/ContextTimeoutResetCommand.js +2 -2
  16. package/esm2015/src/commands/ClientToServer/DataviewCommand.js +2 -2
  17. package/esm2015/src/commands/ClientToServer/EvaluateCommand.js +2 -2
  18. package/esm2015/src/commands/ClientToServer/EventCommand.js +2 -2
  19. package/esm2015/src/commands/ClientToServer/ExecOperCommand.js +2 -2
  20. package/esm2015/src/commands/ClientToServer/FetchDataControlValuesEventCommand.js +2 -2
  21. package/esm2015/src/commands/ClientToServer/IndexChangeEventCommand.js +2 -2
  22. package/esm2015/src/commands/ClientToServer/IniputForceWriteCommand.js +2 -2
  23. package/esm2015/src/commands/ClientToServer/NonReversibleExitEventCommand.js +2 -2
  24. package/esm2015/src/commands/ClientToServer/QueryCommand.js +2 -2
  25. package/esm2015/src/commands/ClientToServer/RecomputeCommand.js +2 -2
  26. package/esm2015/src/commands/ClientToServer/RefreshEventCommand.js +2 -2
  27. package/esm2015/src/commands/ClientToServer/RefreshScreenEventCommand.js +2 -2
  28. package/esm2015/src/commands/ClientToServer/RollbackEventCommand.js +2 -2
  29. package/esm2015/src/commands/ClientToServer/SubformOpenEventCommand.js +2 -2
  30. package/esm2015/src/commands/ClientToServer/SubformRefreshEventCommand.js +2 -2
  31. package/esm2015/src/commands/ClientToServer/TransactionCommand.js +2 -2
  32. package/esm2015/src/commands/ClientToServer/WriteMessageToServerLogCommand.js +2 -2
  33. package/esm2015/src/data/DataView.js +2 -2
  34. package/esm2015/src/data/Field.js +2 -2
  35. package/esm2015/src/data/Record.js +4 -4
  36. package/esm2015/src/data/RecordsTable.js +2 -2
  37. package/esm2015/src/data/TaskTransactionManager.js +2 -2
  38. package/esm2015/src/data/XMLBasedDcValuesBuilder.js +3 -3
  39. package/esm2015/src/env/Environment.js +1 -7
  40. package/esm2015/src/event/Event.js +6 -14
  41. package/esm2015/src/event/EventsManager.js +32 -32
  42. package/esm2015/src/event/IEventsManager.js +1 -1
  43. package/esm2015/src/event/RunTimeEvent.js +7 -7
  44. package/esm2015/src/exp/ExpressionEvaluator.js +21 -21
  45. package/esm2015/src/exp/ExpressionLocalJpn.js +3 -3
  46. package/esm2015/src/gui/MgControl.js +1 -1
  47. package/esm2015/src/gui/MgForm.js +9 -9
  48. package/esm2015/src/http/client/HttpClientAsync.js +4 -4
  49. package/esm2015/src/http/client/HttpClientBase.js +4 -4
  50. package/esm2015/src/http/client/HttpClientSync.js +3 -3
  51. package/esm2015/src/remote/RemoteCommandsProcessor.js +7 -8
  52. package/esm2015/src/rt/Boundary.js +4 -4
  53. package/esm2015/src/rt/DataviewHeaderBase.js +1 -1
  54. package/esm2015/src/rt/DataviewHeaderFactory.js +2 -2
  55. package/esm2015/src/rt/DataviewHeadersSaxHandler.js +2 -2
  56. package/esm2015/src/rt/Operation.js +5 -5
  57. package/esm2015/src/rt/RemoteDataviewHeader.js +6 -6
  58. package/esm2015/src/rt/Transaction.js +2 -2
  59. package/esm2015/src/tasks/MGDataCollection.js +3 -3
  60. package/esm2015/src/tasks/RemoteTaskService.js +3 -3
  61. package/esm2015/src/tasks/Task.js +9 -9
  62. package/esm2015/src/tasks/TaskServiceBase.js +1 -1
  63. package/esm2015/src/tasks/sort/SortCollection.js +4 -4
  64. package/esm2015/src/util/FlowMonitorQueue.js +2 -2
  65. package/esm2015/src/util/Process.js +2 -2
  66. package/esm2015/src/util/ReturnResult.js +3 -3
  67. package/fesm2015/magic-xpa-engine.js +153 -167
  68. package/fesm2015/magic-xpa-engine.js.map +1 -1
  69. package/package.json +4 -4
  70. package/src/GuiEventsProcessor.d.ts +1 -1
  71. package/src/commands/ClientToServer/BrowserEscEventCommand.d.ts +1 -2
  72. package/src/commands/ClientToServer/ClientOriginatedCommand.d.ts +1 -2
  73. package/src/commands/ClientToServer/ColumnSortEventCommand.d.ts +1 -2
  74. package/src/commands/ClientToServer/ComputeEventCommand.d.ts +1 -2
  75. package/src/commands/ClientToServer/ContextTerminationEventCommand.d.ts +1 -2
  76. package/src/commands/ClientToServer/ContextTimeoutResetCommand.d.ts +1 -2
  77. package/src/commands/ClientToServer/DataviewCommand.d.ts +1 -2
  78. package/src/commands/ClientToServer/EvaluateCommand.d.ts +1 -2
  79. package/src/commands/ClientToServer/EventCommand.d.ts +1 -2
  80. package/src/commands/ClientToServer/ExecOperCommand.d.ts +1 -2
  81. package/src/commands/ClientToServer/FetchDataControlValuesEventCommand.d.ts +1 -2
  82. package/src/commands/ClientToServer/IndexChangeEventCommand.d.ts +1 -2
  83. package/src/commands/ClientToServer/IniputForceWriteCommand.d.ts +1 -2
  84. package/src/commands/ClientToServer/NonReversibleExitEventCommand.d.ts +1 -2
  85. package/src/commands/ClientToServer/QueryCommand.d.ts +1 -2
  86. package/src/commands/ClientToServer/RecomputeCommand.d.ts +1 -2
  87. package/src/commands/ClientToServer/RefreshEventCommand.d.ts +1 -2
  88. package/src/commands/ClientToServer/RefreshScreenEventCommand.d.ts +1 -2
  89. package/src/commands/ClientToServer/RollbackEventCommand.d.ts +1 -2
  90. package/src/commands/ClientToServer/SubformOpenEventCommand.d.ts +1 -2
  91. package/src/commands/ClientToServer/SubformRefreshEventCommand.d.ts +1 -2
  92. package/src/commands/ClientToServer/TransactionCommand.d.ts +1 -2
  93. package/src/commands/ClientToServer/WriteMessageToServerLogCommand.d.ts +1 -2
  94. package/src/data/RecordsTable.d.ts +1 -2
  95. package/src/data/XMLBasedDcValuesBuilder.d.ts +1 -1
  96. package/src/env/Environment.d.ts +0 -3
  97. package/src/event/Event.d.ts +0 -3
  98. package/src/event/EventsManager.d.ts +7 -8
  99. package/src/event/IEventsManager.d.ts +5 -6
  100. package/src/exp/ExpressionEvaluator.d.ts +2 -2
  101. package/src/exp/ExpressionLocalJpn.d.ts +2 -2
  102. package/src/gui/MgForm.d.ts +4 -4
  103. package/src/http/client/HttpClientAsync.d.ts +2 -2
  104. package/src/http/client/HttpClientBase.d.ts +2 -2
  105. package/src/http/client/HttpClientSync.d.ts +2 -2
  106. package/src/remote/RemoteCommandsProcessor.d.ts +1 -1
  107. package/src/rt/DataviewHeaderBase.d.ts +1 -1
  108. package/src/rt/DataviewHeaderFactory.d.ts +1 -1
  109. package/src/rt/Operation.d.ts +1 -1
  110. package/src/rt/RemoteDataviewHeader.d.ts +1 -2
  111. package/src/rt/Transaction.d.ts +1 -1
  112. package/src/tasks/RemoteTaskService.d.ts +2 -3
  113. package/src/tasks/Task.d.ts +1 -1
  114. package/src/tasks/TaskServiceBase.d.ts +2 -4
  115. package/src/tasks/sort/SortCollection.d.ts +2 -3
  116. package/src/util/FlowMonitorQueue.d.ts +1 -1
  117. package/src/util/Process.d.ts +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.