@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.
- package/lib/application/LegendApplication.d.ts.map +1 -1
- package/lib/application/LegendApplication.js +1 -2
- package/lib/application/LegendApplication.js.map +1 -1
- package/lib/components/ActionAlert.d.ts +1 -0
- package/lib/components/ActionAlert.d.ts.map +1 -1
- package/lib/components/BlockingAlert.d.ts +1 -0
- package/lib/components/BlockingAlert.d.ts.map +1 -1
- package/lib/components/LegendApplicationComponentFrameworkProvider.d.ts +6 -0
- package/lib/components/LegendApplicationComponentFrameworkProvider.d.ts.map +1 -1
- package/lib/components/LegendApplicationComponentFrameworkProvider.js +21 -13
- package/lib/components/LegendApplicationComponentFrameworkProvider.js.map +1 -1
- package/lib/components/NotificationManager.d.ts +1 -0
- package/lib/components/NotificationManager.d.ts.map +1 -1
- package/lib/components/VirtualAssistant.d.ts +1 -0
- package/lib/components/VirtualAssistant.d.ts.map +1 -1
- package/lib/components/shared/TabManager.d.ts +1 -0
- package/lib/components/shared/TabManager.d.ts.map +1 -1
- package/lib/components/shared/TextSearchAdvancedConfigMenu.d.ts +1 -0
- package/lib/components/shared/TextSearchAdvancedConfigMenu.d.ts.map +1 -1
- package/lib/const.d.ts +1 -1
- package/lib/const.d.ts.map +1 -1
- package/lib/const.js +1 -1
- package/lib/const.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/stores/ApplicationEvent.d.ts +1 -0
- package/lib/stores/ApplicationEvent.d.ts.map +1 -1
- package/lib/stores/ApplicationEvent.js +1 -0
- package/lib/stores/ApplicationEvent.js.map +1 -1
- package/lib/stores/ApplicationStore.d.ts +2 -0
- package/lib/stores/ApplicationStore.d.ts.map +1 -1
- package/lib/stores/ApplicationStore.js +3 -0
- package/lib/stores/ApplicationStore.js.map +1 -1
- package/lib/stores/CommandCenter.d.ts +1 -0
- package/lib/stores/CommandCenter.d.ts.map +1 -1
- package/lib/stores/CommandCenter.js.map +1 -1
- package/lib/stores/KeyboardShortcutsService.d.ts +4 -10
- package/lib/stores/KeyboardShortcutsService.d.ts.map +1 -1
- package/lib/stores/KeyboardShortcutsService.js +36 -33
- package/lib/stores/KeyboardShortcutsService.js.map +1 -1
- package/lib/stores/LegendApplicationDocumentation.d.ts +1 -0
- package/lib/stores/LegendApplicationDocumentation.d.ts.map +1 -1
- package/lib/stores/LegendApplicationDocumentation.js +1 -0
- package/lib/stores/LegendApplicationDocumentation.js.map +1 -1
- package/lib/stores/PureLanguageSupport.d.ts.map +1 -1
- package/lib/stores/PureLanguageSupport.js +14 -1
- package/lib/stores/PureLanguageSupport.js.map +1 -1
- package/lib/stores/TerminalService.d.ts +23 -0
- package/lib/stores/TerminalService.d.ts.map +1 -0
- package/lib/stores/TerminalService.js +25 -0
- package/lib/stores/TerminalService.js.map +1 -0
- package/lib/stores/terminal/Terminal.d.ts +155 -0
- package/lib/stores/terminal/Terminal.d.ts.map +1 -0
- package/lib/stores/terminal/Terminal.js +171 -0
- package/lib/stores/terminal/Terminal.js.map +1 -0
- package/lib/stores/terminal/XTerm.d.ts +91 -0
- package/lib/stores/terminal/XTerm.d.ts.map +1 -0
- package/lib/stores/terminal/XTerm.js +693 -0
- package/lib/stores/terminal/XTerm.js.map +1 -0
- package/package.json +19 -13
- package/src/application/LegendApplication.tsx +5 -2
- package/src/components/LegendApplicationComponentFrameworkProvider.tsx +24 -18
- package/src/const.ts +1 -1
- package/src/index.ts +1 -0
- package/src/stores/ApplicationEvent.ts +1 -0
- package/src/stores/ApplicationStore.ts +4 -1
- package/src/stores/CommandCenter.ts +1 -0
- package/src/stores/KeyboardShortcutsService.ts +43 -48
- package/src/stores/LegendApplicationDocumentation.ts +1 -0
- package/src/stores/PureLanguageSupport.ts +15 -1
- package/src/stores/TerminalService.ts +30 -0
- package/src/stores/terminal/Terminal.ts +259 -0
- package/src/stores/terminal/XTerm.ts +880 -0
- 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",
|