@finos/legend-application 6.0.2 → 7.0.0
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 +8 -7
- package/lib/application/LegendApplication.d.ts.map +1 -1
- package/lib/application/LegendApplication.js +2 -2
- package/lib/application/LegendApplication.js.map +1 -1
- package/lib/{stores → application}/LegendApplicationConfig.d.ts +8 -8
- package/lib/application/LegendApplicationConfig.d.ts.map +1 -0
- package/lib/{stores → application}/LegendApplicationConfig.js +2 -2
- package/lib/application/LegendApplicationConfig.js.map +1 -0
- package/lib/application/LegendApplicationPluginManager.d.ts +4 -4
- package/lib/application/LegendApplicationPluginManager.d.ts.map +1 -1
- package/lib/application/LegendApplicationPluginManager.js.map +1 -1
- package/lib/components/ActionAlert.js +2 -2
- package/lib/components/ActionAlert.js.map +1 -1
- package/lib/components/{LegendApplicationNavigationContextServiceUtils.d.ts → ApplicationNavigationContextServiceUtils.d.ts} +14 -2
- package/lib/components/ApplicationNavigationContextServiceUtils.d.ts.map +1 -0
- package/lib/components/{LegendApplicationNavigationContextServiceUtils.js → ApplicationNavigationContextServiceUtils.js} +15 -3
- package/lib/components/ApplicationNavigationContextServiceUtils.js.map +1 -0
- package/lib/components/ApplicationStoreProvider.d.ts +5 -4
- package/lib/components/ApplicationStoreProvider.d.ts.map +1 -1
- package/lib/components/ApplicationStoreProvider.js +1 -1
- package/lib/components/ApplicationStoreProvider.js.map +1 -1
- package/lib/components/ApplicationStoreProviderTestUtils.d.ts +6 -5
- package/lib/components/ApplicationStoreProviderTestUtils.d.ts.map +1 -1
- package/lib/components/ApplicationStoreProviderTestUtils.js.map +1 -1
- package/lib/components/VirtualAssistant.d.ts.map +1 -1
- package/lib/components/VirtualAssistant.js +5 -6
- package/lib/components/VirtualAssistant.js.map +1 -1
- package/lib/components/shared/PackageableElementOptionRenderer.d.ts +1 -1
- package/lib/components/shared/PackageableElementOptionRenderer.d.ts.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.d.ts +6 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +6 -6
- package/lib/index.js.map +1 -1
- package/lib/stores/{LegendApplicationNavigationContextService.d.ts → ApplicationNavigationContextService.d.ts} +5 -6
- package/lib/stores/ApplicationNavigationContextService.d.ts.map +1 -0
- package/lib/stores/{LegendApplicationNavigationContextService.js → ApplicationNavigationContextService.js} +2 -2
- package/lib/stores/ApplicationNavigationContextService.js.map +1 -0
- package/lib/stores/ApplicationStore.d.ts +14 -12
- package/lib/stores/ApplicationStore.d.ts.map +1 -1
- package/lib/stores/ApplicationStore.js +8 -9
- package/lib/stores/ApplicationStore.js.map +1 -1
- package/lib/stores/ApplicationStoreTestUtils.d.ts +3 -2
- package/lib/stores/ApplicationStoreTestUtils.d.ts.map +1 -1
- package/lib/stores/ApplicationStoreTestUtils.js.map +1 -1
- package/lib/stores/{LegendApplicationAssistantService.d.ts → AssistantService.d.ts} +8 -9
- package/lib/stores/AssistantService.d.ts.map +1 -0
- package/lib/stores/{LegendApplicationAssistantService.js → AssistantService.js} +2 -2
- package/lib/stores/AssistantService.js.map +1 -0
- package/lib/stores/{LegendApplicationDocumentationService.d.ts → DocumentationService.d.ts} +23 -24
- package/lib/stores/DocumentationService.d.ts.map +1 -0
- package/lib/stores/{LegendApplicationDocumentationService.js → DocumentationService.js} +15 -16
- package/lib/stores/DocumentationService.js.map +1 -0
- package/lib/stores/{LegendApplicationEventService.d.ts → EventService.d.ts} +2 -2
- package/lib/stores/EventService.d.ts.map +1 -0
- package/lib/stores/{LegendApplicationEventService.js → EventService.js} +2 -2
- package/lib/stores/EventService.js.map +1 -0
- package/lib/stores/LegendApplicationPlugin.d.ts +20 -5
- package/lib/stores/LegendApplicationPlugin.d.ts.map +1 -1
- package/lib/stores/LegendApplicationPlugin.js +5 -0
- package/lib/stores/LegendApplicationPlugin.js.map +1 -1
- package/lib/stores/shared/ExecutionPlanState.d.ts +3 -4
- package/lib/stores/shared/ExecutionPlanState.d.ts.map +1 -1
- package/lib/stores/shared/ExecutionPlanState.js.map +1 -1
- package/lib/stores/shared/PackageableElementOption.d.ts +1 -1
- package/lib/stores/shared/PackageableElementOption.d.ts.map +1 -1
- package/lib/stores/shared/PackageableElementOption.js.map +1 -1
- package/package.json +11 -13
- package/src/application/LegendApplication.tsx +22 -21
- package/src/{stores → application}/LegendApplicationConfig.ts +16 -19
- package/src/application/LegendApplicationPluginManager.tsx +4 -4
- package/src/components/ActionAlert.tsx +2 -2
- package/src/components/{LegendApplicationNavigationContextServiceUtils.tsx → ApplicationNavigationContextServiceUtils.tsx} +14 -2
- package/src/components/ApplicationStoreProvider.tsx +15 -7
- package/src/components/ApplicationStoreProviderTestUtils.tsx +7 -5
- package/src/components/VirtualAssistant.tsx +5 -6
- package/src/components/shared/PackageableElementOptionRenderer.tsx +1 -1
- package/src/index.ts +6 -6
- package/src/stores/{LegendApplicationNavigationContextService.ts → ApplicationNavigationContextService.ts} +4 -5
- package/src/stores/ApplicationStore.ts +26 -16
- package/src/stores/ApplicationStoreTestUtils.ts +5 -3
- package/src/stores/{LegendApplicationAssistantService.ts → AssistantService.ts} +8 -9
- package/src/stores/{LegendApplicationDocumentationService.ts → DocumentationService.ts} +39 -54
- package/src/stores/{LegendApplicationEventService.ts → EventService.ts} +1 -1
- package/src/stores/LegendApplicationPlugin.ts +27 -9
- package/src/stores/shared/ExecutionPlanState.ts +3 -4
- package/src/stores/shared/PackageableElementOption.ts +3 -3
- package/tsconfig.json +6 -6
- package/lib/components/LegendApplicationNavigationContextServiceUtils.d.ts.map +0 -1
- package/lib/components/LegendApplicationNavigationContextServiceUtils.js.map +0 -1
- package/lib/stores/LegendApplicationAssistantService.d.ts.map +0 -1
- package/lib/stores/LegendApplicationAssistantService.js.map +0 -1
- package/lib/stores/LegendApplicationConfig.d.ts.map +0 -1
- package/lib/stores/LegendApplicationConfig.js.map +0 -1
- package/lib/stores/LegendApplicationDocumentationService.d.ts.map +0 -1
- package/lib/stores/LegendApplicationDocumentationService.js.map +0 -1
- package/lib/stores/LegendApplicationEventService.d.ts.map +0 -1
- package/lib/stores/LegendApplicationEventService.js.map +0 -1
- package/lib/stores/LegendApplicationNavigationContextService.d.ts.map +0 -1
- package/lib/stores/LegendApplicationNavigationContextService.js.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LegendApplicationNavigationContextService.js","sourceRoot":"","sources":["../../src/stores/LegendApplicationNavigationContextService.ts"],"names":[],"mappings":"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"}
|