@finos/legend-application 10.2.11 → 10.2.13

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 (78) hide show
  1. package/lib/application/LegendApplication.d.ts.map +1 -1
  2. package/lib/application/LegendApplication.js +1 -2
  3. package/lib/application/LegendApplication.js.map +1 -1
  4. package/lib/components/ActionAlert.d.ts +1 -0
  5. package/lib/components/ActionAlert.d.ts.map +1 -1
  6. package/lib/components/BlockingAlert.d.ts +1 -0
  7. package/lib/components/BlockingAlert.d.ts.map +1 -1
  8. package/lib/components/LegendApplicationComponentFrameworkProvider.d.ts +6 -0
  9. package/lib/components/LegendApplicationComponentFrameworkProvider.d.ts.map +1 -1
  10. package/lib/components/LegendApplicationComponentFrameworkProvider.js +21 -13
  11. package/lib/components/LegendApplicationComponentFrameworkProvider.js.map +1 -1
  12. package/lib/components/NotificationManager.d.ts +1 -0
  13. package/lib/components/NotificationManager.d.ts.map +1 -1
  14. package/lib/components/VirtualAssistant.d.ts +1 -0
  15. package/lib/components/VirtualAssistant.d.ts.map +1 -1
  16. package/lib/components/shared/TabManager.d.ts +1 -0
  17. package/lib/components/shared/TabManager.d.ts.map +1 -1
  18. package/lib/components/shared/TextSearchAdvancedConfigMenu.d.ts +1 -0
  19. package/lib/components/shared/TextSearchAdvancedConfigMenu.d.ts.map +1 -1
  20. package/lib/const.d.ts +1 -1
  21. package/lib/const.d.ts.map +1 -1
  22. package/lib/const.js +1 -1
  23. package/lib/const.js.map +1 -1
  24. package/lib/index.css +2 -2
  25. package/lib/index.css.map +1 -1
  26. package/lib/index.d.ts +1 -0
  27. package/lib/index.d.ts.map +1 -1
  28. package/lib/index.js +1 -0
  29. package/lib/index.js.map +1 -1
  30. package/lib/stores/ApplicationEvent.d.ts +1 -0
  31. package/lib/stores/ApplicationEvent.d.ts.map +1 -1
  32. package/lib/stores/ApplicationEvent.js +1 -0
  33. package/lib/stores/ApplicationEvent.js.map +1 -1
  34. package/lib/stores/ApplicationStore.d.ts +2 -0
  35. package/lib/stores/ApplicationStore.d.ts.map +1 -1
  36. package/lib/stores/ApplicationStore.js +3 -0
  37. package/lib/stores/ApplicationStore.js.map +1 -1
  38. package/lib/stores/CommandCenter.d.ts +1 -0
  39. package/lib/stores/CommandCenter.d.ts.map +1 -1
  40. package/lib/stores/CommandCenter.js.map +1 -1
  41. package/lib/stores/KeyboardShortcutsService.d.ts +4 -10
  42. package/lib/stores/KeyboardShortcutsService.d.ts.map +1 -1
  43. package/lib/stores/KeyboardShortcutsService.js +36 -33
  44. package/lib/stores/KeyboardShortcutsService.js.map +1 -1
  45. package/lib/stores/LegendApplicationDocumentation.d.ts +1 -0
  46. package/lib/stores/LegendApplicationDocumentation.d.ts.map +1 -1
  47. package/lib/stores/LegendApplicationDocumentation.js +1 -0
  48. package/lib/stores/LegendApplicationDocumentation.js.map +1 -1
  49. package/lib/stores/PureLanguageSupport.d.ts.map +1 -1
  50. package/lib/stores/PureLanguageSupport.js +14 -1
  51. package/lib/stores/PureLanguageSupport.js.map +1 -1
  52. package/lib/stores/TerminalService.d.ts +23 -0
  53. package/lib/stores/TerminalService.d.ts.map +1 -0
  54. package/lib/stores/TerminalService.js +25 -0
  55. package/lib/stores/TerminalService.js.map +1 -0
  56. package/lib/stores/terminal/Terminal.d.ts +155 -0
  57. package/lib/stores/terminal/Terminal.d.ts.map +1 -0
  58. package/lib/stores/terminal/Terminal.js +171 -0
  59. package/lib/stores/terminal/Terminal.js.map +1 -0
  60. package/lib/stores/terminal/XTerm.d.ts +91 -0
  61. package/lib/stores/terminal/XTerm.d.ts.map +1 -0
  62. package/lib/stores/terminal/XTerm.js +693 -0
  63. package/lib/stores/terminal/XTerm.js.map +1 -0
  64. package/package.json +19 -13
  65. package/src/application/LegendApplication.tsx +5 -2
  66. package/src/components/LegendApplicationComponentFrameworkProvider.tsx +24 -18
  67. package/src/const.ts +1 -1
  68. package/src/index.ts +1 -0
  69. package/src/stores/ApplicationEvent.ts +1 -0
  70. package/src/stores/ApplicationStore.ts +4 -1
  71. package/src/stores/CommandCenter.ts +1 -0
  72. package/src/stores/KeyboardShortcutsService.ts +43 -48
  73. package/src/stores/LegendApplicationDocumentation.ts +1 -0
  74. package/src/stores/PureLanguageSupport.ts +15 -1
  75. package/src/stores/TerminalService.ts +30 -0
  76. package/src/stores/terminal/Terminal.ts +259 -0
  77. package/src/stores/terminal/XTerm.ts +880 -0
  78. package/tsconfig.json +3 -0
package/tsconfig.json CHANGED
@@ -46,11 +46,14 @@
46
46
  "./src/stores/LegendApplicationPlugin.ts",
47
47
  "./src/stores/PureLanguageSupport.ts",
48
48
  "./src/stores/PureLanguageTextEditorSupport.ts",
49
+ "./src/stores/TerminalService.ts",
49
50
  "./src/stores/WebApplicationNavigator.ts",
50
51
  "./src/stores/WebApplicationRouter.ts",
51
52
  "./src/stores/shared/PackageableElementOption.ts",
52
53
  "./src/stores/shared/TabManagerState.ts",
53
54
  "./src/stores/shared/TextSearchAdvancedConfigState.ts",
55
+ "./src/stores/terminal/Terminal.ts",
56
+ "./src/stores/terminal/XTerm.ts",
54
57
  "./src/application/LegendApplication.tsx",
55
58
  "./src/application/LegendApplicationPluginManager.tsx",
56
59
  "./src/components/ActionAlert.tsx",