@finos/legend-extension-dsl-data-space 9.0.45 → 9.0.47

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 (50) hide show
  1. package/lib/components/DataSpaceViewer.d.ts.map +1 -1
  2. package/lib/components/DataSpaceViewer.js +2 -2
  3. package/lib/components/DataSpaceViewer.js.map +1 -1
  4. package/lib/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.d.ts.map +1 -1
  5. package/lib/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.js +9 -9
  6. package/lib/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.js.map +1 -1
  7. package/lib/components/query/DataSpaceQueryBuilder.d.ts.map +1 -1
  8. package/lib/components/query/DataSpaceQueryBuilder.js +5 -3
  9. package/lib/components/query/DataSpaceQueryBuilder.js.map +1 -1
  10. package/lib/components/query/DataSpaceQueryCreator.d.ts.map +1 -1
  11. package/lib/components/query/DataSpaceQueryCreator.js +1 -1
  12. package/lib/components/query/DataSpaceQueryCreator.js.map +1 -1
  13. package/lib/components/query/DataSpaceQuerySetup.d.ts.map +1 -1
  14. package/lib/components/query/DataSpaceQuerySetup.js +1 -1
  15. package/lib/components/query/DataSpaceQuerySetup.js.map +1 -1
  16. package/lib/graphManager/protocol/pure/v1/V1_DSL_DataSpace_PureGraphManagerExtension.js +1 -1
  17. package/lib/graphManager/protocol/pure/v1/V1_DSL_DataSpace_PureGraphManagerExtension.js.map +1 -1
  18. package/lib/index.css +2 -2
  19. package/lib/index.css.map +1 -1
  20. package/lib/index.d.ts +1 -1
  21. package/lib/index.d.ts.map +1 -1
  22. package/lib/index.js +1 -1
  23. package/lib/index.js.map +1 -1
  24. package/lib/package.json +5 -5
  25. package/lib/stores/DataSpaceViewerState.d.ts +3 -2
  26. package/lib/stores/DataSpaceViewerState.d.ts.map +1 -1
  27. package/lib/stores/DataSpaceViewerState.js +3 -1
  28. package/lib/stores/DataSpaceViewerState.js.map +1 -1
  29. package/lib/stores/query/DataSpaceAdvancedSearchState.d.ts.map +1 -1
  30. package/lib/stores/query/DataSpaceAdvancedSearchState.js +4 -4
  31. package/lib/stores/query/DataSpaceAdvancedSearchState.js.map +1 -1
  32. package/lib/stores/query/DataSpaceQueryBuilderState.js +1 -1
  33. package/lib/stores/query/DataSpaceQueryBuilderState.js.map +1 -1
  34. package/lib/stores/query/DataSpaceQueryCreatorStore.js +5 -5
  35. package/lib/stores/query/DataSpaceQueryCreatorStore.js.map +1 -1
  36. package/lib/stores/query/DataSpaceQuerySetupStore.js +3 -3
  37. package/lib/stores/query/DataSpaceQuerySetupStore.js.map +1 -1
  38. package/package.json +16 -16
  39. package/src/components/DataSpaceViewer.tsx +26 -13
  40. package/src/components/query/DSL_DataSpace_LegendQueryApplicationPlugin.tsx +11 -9
  41. package/src/components/query/DataSpaceQueryBuilder.tsx +13 -4
  42. package/src/components/query/DataSpaceQueryCreator.tsx +3 -1
  43. package/src/components/query/DataSpaceQuerySetup.tsx +3 -1
  44. package/src/graphManager/protocol/pure/v1/V1_DSL_DataSpace_PureGraphManagerExtension.ts +1 -1
  45. package/src/index.ts +4 -2
  46. package/src/stores/DataSpaceViewerState.ts +9 -1
  47. package/src/stores/query/DataSpaceAdvancedSearchState.ts +4 -3
  48. package/src/stores/query/DataSpaceQueryBuilderState.ts +1 -1
  49. package/src/stores/query/DataSpaceQueryCreatorStore.ts +5 -5
  50. package/src/stores/query/DataSpaceQuerySetupStore.ts +3 -3
@@ -124,7 +124,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
124
124
  ),
125
125
  (dataSpaceInfo: DataSpaceInfo) => {
126
126
  if (dataSpaceInfo.defaultExecutionContext) {
127
- this.applicationStore.navigator.goToLocation(
127
+ this.applicationStore.navigationService.navigator.goToLocation(
128
128
  generateDataSpaceQueryCreatorRoute(
129
129
  dataSpaceInfo.groupId,
130
130
  dataSpaceInfo.artifactId,
@@ -136,7 +136,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
136
136
  ),
137
137
  );
138
138
  } else {
139
- this.applicationStore.notifyWarning(
139
+ this.applicationStore.notificationService.notifyWarning(
140
140
  `Can't switch data space: default execution context not specified`,
141
141
  );
142
142
  }
@@ -147,7 +147,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
147
147
  queryBuilderState.runtimeValue,
148
148
  RuntimePointer,
149
149
  );
150
- this.applicationStore.navigator.updateCurrentLocation(
150
+ this.applicationStore.navigationService.navigator.updateCurrentLocation(
151
151
  generateDataSpaceQueryCreatorRoute(
152
152
  this.groupId,
153
153
  this.artifactId,
@@ -164,7 +164,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
164
164
  },
165
165
  (runtimeValue: Runtime) => {
166
166
  const runtimePointer = guaranteeType(runtimeValue, RuntimePointer);
167
- queryBuilderState.applicationStore.navigator.updateCurrentLocation(
167
+ queryBuilderState.applicationStore.navigationService.navigator.updateCurrentLocation(
168
168
  generateDataSpaceQueryCreatorRoute(
169
169
  queryBuilderState.groupId,
170
170
  queryBuilderState.artifactId,
@@ -185,7 +185,7 @@ export class DataSpaceQueryCreatorStore extends QueryEditorStore {
185
185
  queryBuilderState.runtimeValue,
186
186
  RuntimePointer,
187
187
  );
188
- queryBuilderState.applicationStore.navigator.updateCurrentLocation(
188
+ queryBuilderState.applicationStore.navigationService.navigator.updateCurrentLocation(
189
189
  generateDataSpaceQueryCreatorRoute(
190
190
  queryBuilderState.groupId,
191
191
  queryBuilderState.artifactId,
@@ -145,7 +145,7 @@ export class DataSpaceQuerySetupState extends QueryBuilderState {
145
145
  } catch (error) {
146
146
  assertErrorThrown(error);
147
147
  this.loadDataSpacesState.fail();
148
- this.applicationStore.notifyError(error);
148
+ this.applicationStore.notificationService.notifyError(error);
149
149
  }
150
150
  }
151
151
  }
@@ -174,7 +174,7 @@ export class DataSpaceQuerySetupStore extends QueryEditorStore {
174
174
  this.depotServerClient,
175
175
  (dataSpaceInfo: DataSpaceInfo) => {
176
176
  if (dataSpaceInfo.defaultExecutionContext) {
177
- this.applicationStore.navigator.goToLocation(
177
+ this.applicationStore.navigationService.navigator.goToLocation(
178
178
  generateDataSpaceQueryCreatorRoute(
179
179
  dataSpaceInfo.groupId,
180
180
  dataSpaceInfo.artifactId,
@@ -186,7 +186,7 @@ export class DataSpaceQuerySetupStore extends QueryEditorStore {
186
186
  ),
187
187
  );
188
188
  } else {
189
- this.applicationStore.notifyWarning(
189
+ this.applicationStore.notificationService.notifyWarning(
190
190
  `Can't switch data space: default execution context not specified`,
191
191
  );
192
192
  }