@finos/legend-application-studio 22.4.1 → 22.4.3

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.
@@ -15,7 +15,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
15
15
  * limitations under the License.
16
16
  */
17
17
  import { observer } from 'mobx-react-lite';
18
- import { clsx, HammerIcon, SyncIcon, FireIcon, CodeBranchIcon, TerminalIcon, HackerIcon, BrushIcon, CloudUploadIcon, AssistantIcon, ErrorIcon, WarningIcon, } from '@finos/legend-art';
18
+ import { clsx, HammerIcon, SyncIcon, FireIcon, CodeBranchIcon, TerminalIcon, HackerIcon, TrashIcon, CloudUploadIcon, AssistantIcon, ErrorIcon, WarningIcon, } from '@finos/legend-art';
19
19
  import { LEGEND_STUDIO_TEST_ID } from '../LegendStudioTestID.js';
20
20
  import { ACTIVITY_MODE, AUX_PANEL_MODE } from '../../stores/EditorConfig.js';
21
21
  import { generateSetupRoute, } from '../../stores/LegendStudioRouter.js';
@@ -137,7 +137,7 @@ export const StatusBar = observer((props) => {
137
137
  'editor__status-bar__action editor__status-bar__clear__generation-btn--wiggling': editorStore.graphState.graphGenerationState
138
138
  .clearingGenerationEntitiesState.isInProgress,
139
139
  }), disabled: editorStore.graphState.isApplicationUpdateOperationIsRunning ||
140
- actionsDisabled, onClick: emptyGenerationEntities, tabIndex: -1, title: "Clear generation entities", children: _jsx(BrushIcon, {}) }), _jsx("button", { className: clsx('editor__status-bar__action editor__status-bar__compile-btn', {
140
+ actionsDisabled, onClick: emptyGenerationEntities, tabIndex: -1, title: "Clear generation entities", children: _jsx(TrashIcon, {}) }), _jsx("button", { className: clsx('editor__status-bar__action editor__status-bar__compile-btn', {
141
141
  'editor__status-bar__compile-btn--wiggling': editorStore.graphState.isRunningGlobalCompile,
142
142
  }), disabled: editorStore.graphState.isApplicationUpdateOperationIsRunning ||
143
143
  actionsDisabled, onClick: compile, tabIndex: -1, title: "Compile (F9)", children: _jsx(HammerIcon, {}) }), _jsx("button", { className: clsx('editor__status-bar__action editor__status-bar__action__toggler', {
package/lib/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /** @license @finos/legend-application-studio v22.4.1
1
+ /** @license @finos/legend-application-studio v22.4.3
2
2
  * Copyright (c) 2020-present, Goldman Sachs
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-studio",
3
- "version": "22.4.1",
3
+ "version": "22.4.3",
4
4
  "description": "Legend Studio application core",
5
5
  "keywords": [
6
6
  "legend",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-studio",
3
- "version": "22.4.1",
3
+ "version": "22.4.3",
4
4
  "description": "Legend Studio application core",
5
5
  "keywords": [
6
6
  "legend",
@@ -44,14 +44,14 @@
44
44
  "test:watch": "jest --watch"
45
45
  },
46
46
  "dependencies": {
47
- "@finos/legend-application": "10.2.15",
48
- "@finos/legend-art": "5.0.25",
49
- "@finos/legend-graph": "22.2.6",
50
- "@finos/legend-query-builder": "0.6.24",
51
- "@finos/legend-server-depot": "4.3.1",
52
- "@finos/legend-server-sdlc": "4.1.21",
53
- "@finos/legend-shared": "6.2.18",
54
- "@finos/legend-storage": "3.0.33",
47
+ "@finos/legend-application": "10.2.17",
48
+ "@finos/legend-art": "5.0.26",
49
+ "@finos/legend-graph": "22.2.8",
50
+ "@finos/legend-query-builder": "0.6.26",
51
+ "@finos/legend-server-depot": "4.3.2",
52
+ "@finos/legend-server-sdlc": "4.1.22",
53
+ "@finos/legend-shared": "6.2.19",
54
+ "@finos/legend-storage": "3.0.34",
55
55
  "@testing-library/react": "13.4.0",
56
56
  "@types/react": "18.0.28",
57
57
  "@types/react-dom": "18.0.11",
@@ -23,7 +23,7 @@ import {
23
23
  CodeBranchIcon,
24
24
  TerminalIcon,
25
25
  HackerIcon,
26
- BrushIcon,
26
+ TrashIcon,
27
27
  CloudUploadIcon,
28
28
  AssistantIcon,
29
29
  ErrorIcon,
@@ -341,7 +341,7 @@ export const StatusBar = observer((props: { actionsDisabled: boolean }) => {
341
341
  tabIndex={-1}
342
342
  title="Clear generation entities"
343
343
  >
344
- <BrushIcon />
344
+ <TrashIcon />
345
345
  </button>
346
346
  <button
347
347
  className={clsx(