@finos/legend-application-pure-ide 8.0.217 → 8.0.219
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/LegendPureIDE.d.ts.map +1 -1
- package/lib/application/LegendPureIDE.js +0 -2
- package/lib/application/LegendPureIDE.js.map +1 -1
- package/lib/components/StatusBar.d.ts.map +1 -1
- package/lib/components/StatusBar.js +2 -5
- package/lib/components/StatusBar.js.map +1 -1
- package/lib/components/editor-group/PureFileEditor.d.ts.map +1 -1
- package/lib/components/editor-group/PureFileEditor.js +5 -5
- package/lib/components/editor-group/PureFileEditor.js.map +1 -1
- package/lib/components/side-bar/ConceptTreeExplorer.d.ts.map +1 -1
- package/lib/components/side-bar/ConceptTreeExplorer.js +1 -1
- package/lib/components/side-bar/ConceptTreeExplorer.js.map +1 -1
- package/lib/components/side-bar/DirectoryTreeExplorer.d.ts.map +1 -1
- package/lib/components/side-bar/DirectoryTreeExplorer.js +1 -1
- package/lib/components/side-bar/DirectoryTreeExplorer.js.map +1 -1
- package/lib/extensions.css +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/package.json +2 -2
- package/lib/stores/DirectoryTreeState.d.ts.map +1 -1
- package/lib/stores/DirectoryTreeState.js +6 -1
- package/lib/stores/DirectoryTreeState.js.map +1 -1
- package/lib/stores/FileEditorState.d.ts.map +1 -1
- package/lib/stores/FileEditorState.js +1 -0
- package/lib/stores/FileEditorState.js.map +1 -1
- package/lib/stores/PureFileEditorUtils.d.ts +1 -1
- package/lib/stores/PureFileEditorUtils.d.ts.map +1 -1
- package/lib/stores/PureFileEditorUtils.js +27 -17
- package/lib/stores/PureFileEditorUtils.js.map +1 -1
- package/lib/stores/PureIDEStore.d.ts.map +1 -1
- package/lib/stores/PureIDEStore.js +13 -3
- package/lib/stores/PureIDEStore.js.map +1 -1
- package/package.json +7 -7
- package/src/application/LegendPureIDE.tsx +0 -2
- package/src/components/StatusBar.tsx +1 -22
- package/src/components/editor-group/PureFileEditor.tsx +4 -7
- package/src/components/side-bar/ConceptTreeExplorer.tsx +1 -0
- package/src/components/side-bar/DirectoryTreeExplorer.tsx +1 -0
- package/src/stores/DirectoryTreeState.ts +9 -5
- package/src/stores/FileEditorState.ts +1 -0
- package/src/stores/PureFileEditorUtils.ts +18 -6
- package/src/stores/PureIDEStore.ts +16 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LegendPureIDE.d.ts","sourceRoot":"","sources":["../../src/application/LegendPureIDE.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,mCAAmC,EACxC,iBAAiB,EAIlB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,8BAA8B,EAC9B,KAAK,kCAAkC,EACxC,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"LegendPureIDE.d.ts","sourceRoot":"","sources":["../../src/application/LegendPureIDE.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,mCAAmC,EACxC,iBAAiB,EAIlB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,8BAA8B,EAC9B,KAAK,kCAAkC,EACxC,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAG7E,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAEzF,qBAAa,aAAc,SAAQ,iBAAiB;IAC1C,MAAM,EAAE,8BAA8B,CAAC;IACvC,aAAa,EAAE,0BAA0B,CAAC;IAElD,MAAM,CAAC,MAAM,IAAI,aAAa;IASxB,oBAAoB,CACxB,KAAK,EAAE,mCAAmC,CAAC,kCAAkC,CAAC,GAC7E,OAAO,CAAC,uBAAuB,CAAC;IAI7B,eAAe,CACnB,gBAAgB,EAAE,6BAA6B,GAC9C,OAAO,CAAC,IAAI,CAAC;CAOjB"}
|
|
@@ -18,7 +18,6 @@ import { createRoot } from 'react-dom/client';
|
|
|
18
18
|
import { LegendApplication, ApplicationStoreProvider, Core_LegendApplicationPlugin, getApplicationRootElement, } from '@finos/legend-application';
|
|
19
19
|
import { LegendPureIDEApplicationConfig, } from './LegendPureIDEApplicationConfig.js';
|
|
20
20
|
import { LegendPureIDEPluginManager } from './LegendPureIDEPluginManager.js';
|
|
21
|
-
import { DSL_Diagram_GraphManagerPreset } from '@finos/legend-extension-dsl-diagram/graph';
|
|
22
21
|
import { LegendPureIDEWebApplication } from '../components/LegendPureIDEApplication.js';
|
|
23
22
|
import { Core_LegendPureIDEApplicationPlugin } from '../components/Core_LegendPureIDEApplicationPlugin.js';
|
|
24
23
|
export class LegendPureIDE extends LegendApplication {
|
|
@@ -28,7 +27,6 @@ export class LegendPureIDE extends LegendApplication {
|
|
|
28
27
|
new Core_LegendApplicationPlugin(),
|
|
29
28
|
new Core_LegendPureIDEApplicationPlugin(),
|
|
30
29
|
]);
|
|
31
|
-
application.withBasePresets([new DSL_Diagram_GraphManagerPreset()]);
|
|
32
30
|
return application;
|
|
33
31
|
}
|
|
34
32
|
async configureApplication(input) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LegendPureIDE.js","sourceRoot":"","sources":["../../src/application/LegendPureIDE.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAGL,iBAAiB,EACjB,wBAAwB,EACxB,4BAA4B,EAC5B,yBAAyB,GAC1B,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,8BAA8B,GAE/B,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAC7E,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"LegendPureIDE.js","sourceRoot":"","sources":["../../src/application/LegendPureIDE.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAGL,iBAAiB,EACjB,wBAAwB,EACxB,4BAA4B,EAC5B,yBAAyB,GAC1B,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,8BAA8B,GAE/B,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAC7E,OAAO,EAAE,2BAA2B,EAAE,MAAM,2CAA2C,CAAC;AACxF,OAAO,EAAE,mCAAmC,EAAE,MAAM,sDAAsD,CAAC;AAG3G,MAAM,OAAO,aAAc,SAAQ,iBAAiB;IAIlD,MAAM,CAAC,MAAM;QACX,MAAM,WAAW,GAAG,IAAI,aAAa,CAAC,0BAA0B,CAAC,MAAM,EAAE,CAAC,CAAC;QAC3E,WAAW,CAAC,eAAe,CAAC;YAC1B,IAAI,4BAA4B,EAAE;YAClC,IAAI,mCAAmC,EAAE;SAC1C,CAAC,CAAC;QACH,OAAO,WAAW,CAAC;IACrB,CAAC;IAED,KAAK,CAAC,oBAAoB,CACxB,KAA8E;QAE9E,OAAO,IAAI,8BAA8B,CAAC,KAAK,CAAC,CAAC;IACnD,CAAC;IAED,KAAK,CAAC,eAAe,CACnB,gBAA+C;QAE/C,UAAU,CAAC,yBAAyB,EAAE,CAAC,CAAC,MAAM,CAC5C,KAAC,wBAAwB,IAAC,KAAK,EAAE,gBAAgB,YAC/C,KAAC,2BAA2B,IAAC,OAAO,EAAE,IAAI,CAAC,WAAW,GAAI,GACjC,CAC5B,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StatusBar.d.ts","sourceRoot":"","sources":["../../src/components/StatusBar.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;
|
|
1
|
+
{"version":3,"file":"StatusBar.d.ts","sourceRoot":"","sources":["../../src/components/StatusBar.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAyCH,eAAO,MAAM,SAAS;;CA2DpB,CAAC"}
|
|
@@ -17,7 +17,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
17
17
|
import { observer } from 'mobx-react-lite';
|
|
18
18
|
import { flowResult } from 'mobx';
|
|
19
19
|
import { useApplicationStore } from '@finos/legend-application';
|
|
20
|
-
import {
|
|
20
|
+
import { clsx, HammerIcon, TerminalIcon } from '@finos/legend-art';
|
|
21
21
|
import { usePureIDEStore } from './PureIDEStoreProvider.js';
|
|
22
22
|
import { FileEditorState } from '../stores/FileEditorState.js';
|
|
23
23
|
const FileEditorStatusBar = observer((props) => {
|
|
@@ -38,14 +38,11 @@ export const StatusBar = observer(() => {
|
|
|
38
38
|
const executeGo = () => {
|
|
39
39
|
flowResult(ideStore.executeGo()).catch(applicationStore.alertUnhandledError);
|
|
40
40
|
};
|
|
41
|
-
const toggleAssistant = () => applicationStore.assistantService.toggleAssistant();
|
|
42
41
|
return (_jsxs("div", { className: "editor__status-bar", children: [_jsx("div", { className: "editor__status-bar__left", children: _jsx("div", { className: "editor__status-bar__workspace" }) }), _jsxs("div", { className: "editor__status-bar__right", children: [ideStore.tabManagerState.currentTab instanceof FileEditorState && (_jsx(FileEditorStatusBar, { fileEditorState: ideStore.tabManagerState.currentTab })), _jsx("button", { className: clsx('editor__status-bar__action editor__status-bar__compile-btn', {
|
|
43
42
|
'editor__status-bar__compile-btn--wiggling': ideStore.executionState.isInProgress,
|
|
44
43
|
}), disabled: ideStore.initState.isInInitialState ||
|
|
45
44
|
ideStore.executionState.isInProgress, onClick: executeGo, tabIndex: -1, title: "Execute (F9)", children: _jsx(HammerIcon, {}) }), _jsx("button", { className: clsx('editor__status-bar__action editor__status-bar__action__toggler', {
|
|
46
45
|
'editor__status-bar__action__toggler--active': Boolean(ideStore.panelGroupDisplayState.isOpen),
|
|
47
|
-
}), onClick: togglePanelGroup, tabIndex: -1, title: "Toggle panel", children: _jsx(TerminalIcon, {}) })
|
|
48
|
-
'editor__status-bar__action__toggler--active': !applicationStore.assistantService.isHidden,
|
|
49
|
-
}), onClick: toggleAssistant, tabIndex: -1, title: "Toggle assistant", children: _jsx(AssistantIcon, {}) })] })] }));
|
|
46
|
+
}), onClick: togglePanelGroup, tabIndex: -1, title: "Toggle panel", children: _jsx(TerminalIcon, {}) })] })] }));
|
|
50
47
|
});
|
|
51
48
|
//# sourceMappingURL=StatusBar.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StatusBar.js","sourceRoot":"","sources":["../../src/components/StatusBar.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,
|
|
1
|
+
{"version":3,"file":"StatusBar.js","sourceRoot":"","sources":["../../src/components/StatusBar.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PureFileEditor.d.ts","sourceRoot":"","sources":["../../../src/components/editor-group/PureFileEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAWH,OAAO,KAAK,EAEV,eAAe,EAChB,MAAM,iCAAiC,CAAC;
|
|
1
|
+
{"version":3,"file":"PureFileEditor.d.ts","sourceRoot":"","sources":["../../../src/components/editor-group/PureFileEditor.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAWH,OAAO,KAAK,EAEV,eAAe,EAChB,MAAM,iCAAiC,CAAC;AAiHzC,eAAO,MAAM,cAAc,WACjB;IAAE,WAAW,EAAE,eAAe,CAAA;CAAE;;CA0fzC,CAAC"}
|
|
@@ -21,7 +21,7 @@ import { useApplicationStore, useCommands } from '@finos/legend-application';
|
|
|
21
21
|
import { CODE_EDITOR_LANGUAGE, CODE_EDITOR_THEME, getInlineSnippetSuggestions, getParserElementSnippetSuggestions, getParserKeywordSuggestions, isTokenOneOf, PURE_GRAMMAR_TOKEN, getBaseCodeEditorOptions, moveCursorToPosition, } from '@finos/legend-lego/code-editor';
|
|
22
22
|
import { clsx, Dialog, WordWrapIcon } from '@finos/legend-art';
|
|
23
23
|
import { usePureIDEStore } from '../PureIDEStoreProvider.js';
|
|
24
|
-
import { collectExtraInlineSnippetSuggestions, collectParserElementSnippetSuggestions, collectParserKeywordSuggestions, getArrowFunctionSuggestions, getAttributeSuggestions, getCastingClassSuggestions, getConstructorClassSuggestions, getCopyrightHeaderSuggestions,
|
|
24
|
+
import { collectExtraInlineSnippetSuggestions, collectParserElementSnippetSuggestions, collectParserKeywordSuggestions, getArrowFunctionSuggestions, getAttributeSuggestions, getCastingClassSuggestions, getConstructorClassSuggestions, getCopyrightHeaderSuggestions, getIncompletePathSuggestions, getVariableSuggestions, } from '../../stores/PureFileEditorUtils.js';
|
|
25
25
|
import { guaranteeNonNullable } from '@finos/legend-shared';
|
|
26
26
|
import { flowResult } from 'mobx';
|
|
27
27
|
import { FileCoordinate } from '../../server/models/File.js';
|
|
@@ -259,7 +259,7 @@ export const PureFileEditor = observer((props) => {
|
|
|
259
259
|
switch (context.triggerCharacter) {
|
|
260
260
|
// special commands: copyright header, etc.
|
|
261
261
|
case '/': {
|
|
262
|
-
suggestions = suggestions.concat(getCopyrightHeaderSuggestions());
|
|
262
|
+
suggestions = suggestions.concat(getCopyrightHeaderSuggestions(position, model));
|
|
263
263
|
break;
|
|
264
264
|
}
|
|
265
265
|
// parser section header
|
|
@@ -321,13 +321,13 @@ export const PureFileEditor = observer((props) => {
|
|
|
321
321
|
if (context.triggerKind ===
|
|
322
322
|
monacoLanguagesAPI.CompletionTriggerKind.Invoke) {
|
|
323
323
|
// copyright header
|
|
324
|
-
suggestions = suggestions.concat(getCopyrightHeaderSuggestions());
|
|
324
|
+
suggestions = suggestions.concat(getCopyrightHeaderSuggestions(position, model));
|
|
325
325
|
// suggestions for parser element snippets
|
|
326
326
|
suggestions = suggestions.concat(getParserElementSnippetSuggestions(position, model, (parserName) => collectParserElementSnippetSuggestions(parserName)));
|
|
327
327
|
// code snippet suggestions
|
|
328
328
|
suggestions = suggestions.concat(getInlineSnippetSuggestions(position, model, collectExtraInlineSnippetSuggestions()));
|
|
329
|
-
//
|
|
330
|
-
|
|
329
|
+
// TODO: support contextual suggestions with just the identifier, i.e. auto-complete
|
|
330
|
+
// which Pure IDE server has not supported at the moment
|
|
331
331
|
}
|
|
332
332
|
return { suggestions };
|
|
333
333
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PureFileEditor.js","sourceRoot":"","sources":["../../../src/components/editor-group/PureFileEditor.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"PureFileEditor.js","sourceRoot":"","sources":["../../../src/components/editor-group/PureFileEditor.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConceptTreeExplorer.d.ts","sourceRoot":"","sources":["../../../src/components/side-bar/ConceptTreeExplorer.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAoHH,oBAAY,qBAAqB;IAC/B,WAAW,gBAAgB;IAC3B,KAAK,UAAU;CAChB;
|
|
1
|
+
{"version":3,"file":"ConceptTreeExplorer.d.ts","sourceRoot":"","sources":["../../../src/components/side-bar/ConceptTreeExplorer.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAoHH,oBAAY,qBAAqB;IAC/B,WAAW,gBAAgB;IAC3B,KAAK,UAAU;CAChB;AA6OD,eAAO,MAAM,mBAAmB;;CAuE9B,CAAC"}
|
|
@@ -107,7 +107,7 @@ const ConceptTreeNodeContainer = (props) => {
|
|
|
107
107
|
: CONCEPT_TREE_DND_TYPE.UNSUPPORTED,
|
|
108
108
|
item: node.data,
|
|
109
109
|
}), [node]);
|
|
110
|
-
return (_jsx(ContextMenu, { content: _jsx(ConceptExplorerContextMenu, { node: node, viewConceptSource: viewConceptSource }), menuProps: { elevation: 7 }, onOpen: onContextMenuOpen, onClose: onContextMenuClose, children: _jsxs("div", { className: clsx('tree-view__node__container explorer__package-tree__node__container', {
|
|
110
|
+
return (_jsx(ContextMenu, { content: _jsx(ConceptExplorerContextMenu, { node: node, viewConceptSource: viewConceptSource }), menuProps: { elevation: 7 }, onOpen: onContextMenuOpen, onClose: onContextMenuClose, children: _jsxs("div", { id: node.id, className: clsx('tree-view__node__container explorer__package-tree__node__container', {
|
|
111
111
|
'explorer__package-tree__node__container--selected-from-context-menu': !node.isSelected && isSelectedFromContextMenu,
|
|
112
112
|
}, {
|
|
113
113
|
'explorer__package-tree__node__container--selected': node.isSelected,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConceptTreeExplorer.js","sourceRoot":"","sources":["../../../src/components/side-bar/ConceptTreeExplorer.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ConceptTreeExplorer.js","sourceRoot":"","sources":["../../../src/components/side-bar/ConceptTreeExplorer.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DirectoryTreeExplorer.d.ts","sourceRoot":"","sources":["../../../src/components/side-bar/DirectoryTreeExplorer.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;
|
|
1
|
+
{"version":3,"file":"DirectoryTreeExplorer.d.ts","sourceRoot":"","sources":["../../../src/components/side-bar/DirectoryTreeExplorer.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAiTH,eAAO,MAAM,qBAAqB;;CAgFhC,CAAC"}
|
|
@@ -98,7 +98,7 @@ const FileTreeNodeContainer = (props) => {
|
|
|
98
98
|
onNodeOpen(node);
|
|
99
99
|
}
|
|
100
100
|
};
|
|
101
|
-
return (_jsx(ContextMenu, { content: _jsx(FileExplorerContextMenu, { node: node }), menuProps: { elevation: 7 }, onOpen: onContextMenuOpen, onClose: onContextMenuClose, children: _jsxs("div", { className: clsx('tree-view__node__container explorer__package-tree__node__container', {
|
|
101
|
+
return (_jsx(ContextMenu, { content: _jsx(FileExplorerContextMenu, { node: node }), menuProps: { elevation: 7 }, onOpen: onContextMenuOpen, onClose: onContextMenuClose, children: _jsxs("div", { id: node.id, className: clsx('tree-view__node__container explorer__package-tree__node__container', {
|
|
102
102
|
'explorer__package-tree__node__container--selected-from-context-menu': !node.isSelected && isSelectedFromContextMenu,
|
|
103
103
|
}, {
|
|
104
104
|
'explorer__package-tree__node__container--selected': node.isSelected,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DirectoryTreeExplorer.js","sourceRoot":"","sources":["../../../src/components/side-bar/DirectoryTreeExplorer.tsx"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"DirectoryTreeExplorer.js","sourceRoot":"","sources":["../../../src/components/side-bar/DirectoryTreeExplorer.tsx"],"names":[],"mappings":"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"}
|
package/lib/extensions.css
CHANGED
package/lib/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license @finos/legend-application-pure-ide v8.0.
|
|
1
|
+
/** @license @finos/legend-application-pure-ide v8.0.219
|
|
2
2
|
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
3
|
*
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -14,4 +14,4 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
|
-
@import"@finos/legend-extension-dsl-diagram/lib/index.css";.activity-bar{width:5rem;background:var(--color-dark-grey-250);height:100%;overflow-x:hidden;overflow-y:hidden}.activity-bar__logo{display:flex;align-items:center;justify-content:center;height:6.2rem;border-bottom:.1rem solid var(--color-dark-grey-100)}.activity-bar__items{height:calc(100% - 11.2rem);overflow-y:auto;overflow-x:hidden}.activity-bar__item{display:flex;align-items:center;justify-content:center;height:5rem;width:5rem;color:var(--color-dark-grey-400);cursor:pointer;position:relative}.activity-bar__item svg{font-size:2rem}.activity-bar__item:hover{color:var(--color-light-grey-0);cursor:pointer}.activity-bar__item--active{color:var(--color-light-grey-0)}.activity-bar__item__icon-with-indicator{position:relative}.activity-bar__item__icon__indicator{position:absolute;min-width:1.6rem;height:1.6rem}.activity-bar__local-change-counter{display:flex;align-items:center;justify-content:center;background:var(--color-blue-100);color:var(--color-light-grey-50);bottom:-0.5rem;right:-0.7rem;padding:0 .5rem;border-radius:1rem;font-size:.9rem;font-weight:500}.activity-bar__local-change-counter--waiting{padding:0 .2rem}.activity-bar__local-change-counter--waiting svg{font-size:1.2rem}.activity-bar__conflict-resolution-change-counter{display:flex;align-items:center;justify-content:center;background:var(--color-conflict);color:var(--color-light-grey-50);bottom:-0.4rem;right:-0.3rem;padding:0 .5rem;border-radius:1rem;font-size:.9rem;font-weight:500}.activity-bar__conflict-resolution-change-counter--waiting{padding:0 .2rem}.activity-bar__conflict-resolution-change-counter--waiting svg{font-size:1.2rem !important}.activity-bar__item__icon__indicator__dot{position:absolute;min-width:1rem;height:1rem;border-radius:50%}.activity-bar__item__icon__project-latest-changes__indicator{background:var(--color-blue-100);bottom:-0.4rem;right:-0.4rem}.activity-bar__item__icon__project-latest-changes__indicator--has-conflicts{background:var(--color-conflict)}.activity-bar__item__icon__review-changes__indicator{background:var(--color-yellow-200);bottom:-0.3rem;right:-0.3rem}.activity-bar__review-icon svg,.activity-bar__project-overview-icon svg{font-size:2.3rem}.activity-bar__conflict-resolution-icon svg{font-size:2.4rem;transform:rotate(180deg) scaleX(-1)}.activity-bar__setting__context-menu{background:var(--color-dark-grey-100);border:.1rem solid var(--color-dark-grey-50);padding:.5rem 0;min-width:20rem}.activity-bar__setting__context-menu__item{display:flex;align-items:center;width:100%;cursor:default;color:var(--color-light-grey-400);height:2.8rem;padding:0 1rem}.activity-bar__setting__context-menu__item__icon{display:flex;align-items:center;justify-content:center;width:3rem;min-width:3rem}.activity-bar__setting__context-menu__item__icon svg{font-size:1rem}.activity-bar__setting__context-menu__item[disabled]{color:var(--color-dark-grey-400)}.activity-bar__setting__context-menu__item:not([disabled]):hover{background:var(--color-light-blue-450)}.logo{display:flex;align-items:center;justify-content:center}.logo svg{color:var(--color-light-grey-0);font-size:3rem}.editor__status-bar{display:flex;align-items:center;display:flex;justify-content:space-between;height:2.2rem;background:var(--color-blue-100);color:var(--color-light-grey-0);padding:0 .5rem 0 1rem}.editor__status-bar--conflict-resolution{background:var(--color-conflict)}.editor__status-bar__right,.editor__status-bar__left{height:100%;display:flex;align-items:center}.editor__status-bar__workspace{display:flex;align-items:center;cursor:default;height:100%}.editor__status-bar__workspace__status{display:flex;align-items:center;justify-content:center;height:1.6rem;cursor:pointer;font-size:1rem;background:var(--color-dark-shade-300);color:var(--color-light-grey-0);border-radius:.3rem;padding:0 .5rem;margin:0 .5rem;font-weight:500}.editor__status-bar__workspace__icon{display:flex;align-items:center}.editor__status-bar__workspace__project,.editor__status-bar__workspace__workspace{padding:0 .5rem;cursor:default}.editor__status-bar__workspace__project a,.editor__status-bar__workspace__workspace a{text-decoration:none;color:var(--color-light-grey-0)}.editor__status-bar__action{display:flex;align-items:center;justify-content:center;cursor:pointer;background:none;height:100%;width:3rem}.editor__status-bar__action:hover{background:var(--color-light-shade-50)}.editor__status-bar__action__toggler,.editor__status-bar__action__toggler svg{color:var(--color-dark-shade-300)}.editor__status-bar__action__toggler--active,.editor__status-bar__action__toggler--active svg{color:var(--color-light-grey-0)}.editor__status-bar__sync{display:flex;height:100%}.editor__status-bar__sync__status{display:flex;align-items:center;justify-content:center;cursor:default}.editor__status-bar__sync__btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__sync__btn--spinning svg{animation:spin 1s infinite ease}.editor__status-bar__sync__btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__sync__btn svg{font-size:1.6rem}.editor__status-bar__generate-btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__generate-btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__generate-btn--wiggling svg{animation:flame-rise .5s infinite ease;transform-origin:bottom left}.editor__status-bar__clear__generation-btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__clear__generation-btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__clear__generation-btn--wiggling svg{animation:flame-rise .5s infinite ease;transform-origin:bottom left}.editor__status-bar__compile-btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__compile-btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__compile-btn--wiggling svg{animation:hammer-wiggle .5s infinite ease;transform-origin:bottom left}@keyframes flame-rise{from{transform:translateY(-0.05rem)}to{transform:translateY(0.05rem)}}@keyframes hammer-wiggle{from{transform:rotate(-7deg)}to{transform:rotate(10deg)}}.explorer{width:100%}.explorer .panel__header__action{height:100%;color:var(--color-light-grey-400)}.explorer .panel__header__action[disabled],.explorer .panel__header__action[disabled] svg{color:var(--color-dark-grey-300) !important}.explorer .panel__header__title{width:calc(100% - 3.4rem)}.explorer__header{display:flex;justify-content:space-between;min-width:9rem;background:var(--color-dark-grey-200);color:var(--color-light-grey-200);padding-left:1rem}.explorer__content__container{height:100%;background:var(--color-dark-grey-100)}.explorer__content__container__message{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;height:3rem;line-height:3rem;padding:0 1rem;font-size:1.3rem;margin-top:.5rem;user-select:none}.explorer__content{height:100%;overflow-x:hidden;color:var(--color-light-grey-400);padding:.5rem 0}.explorer__content__separator{height:.1rem;width:100%;background:var(--color-dark-grey-250);margin:.5rem 0}.explorer__content__failure-notice{display:flex;align-items:center;flex-direction:column}.explorer__content__failure-notice__icon svg{font-size:11rem;color:var(--color-dark-grey-80)}.explorer__content__failure-notice__text{margin-top:1rem;font-weight:500}.explorer__config__icon{padding-left:2rem}.explorer__package-tree__node__container{padding-right:1rem}.explorer__package-tree__node__container:hover{background:var(--color-dark-blue-shade-100)}.explorer__package-tree__node__container--selected,.explorer__package-tree__node__container--selected:hover{background:var(--color-light-blue-450)}.explorer__package-tree__node__container--selected-from-context-menu{background:var(--color-dark-blue-shade-100)}.explorer__package-tree__node__icon{width:4rem;min-width:4rem}.explorer__package-tree__node__icon__expand,.explorer__package-tree__node__icon__type{width:2rem;display:flex;justify-content:center}.explorer__package-tree__node__icon__type--property-from-association svg{color:var(--color-pure-association) !important}.explorer__package-tree__node__icon__expand svg{font-size:1rem}.explorer__package-tree__node__icon__expand--is-loading svg{font-size:1.1rem;animation:spin 1s infinite ease;color:var(--color-blue-200)}.explorer__package-tree__node__container--selected .explorer__package-tree__node__icon__expand svg{color:var(--color-light-grey-400) !important}.explorer__package-tree__node__label{color:inherit;user-select:none}.explorer__package-tree__node__label__tag{background:var(--color-dark-grey-280);margin-left:.5rem;border-radius:.2rem;font-size:1rem;padding:.2rem .3rem;height:2rem;line-height:2rem;font-weight:500;vertical-align:middle}.explorer__new-element-modal__name-input{width:100%;margin-bottom:1rem}.explorer__content--empty{padding:2rem}.explorer__content--empty__text{margin-bottom:1rem;line-height:1.8rem}.explorer__content--empty__btn{display:flex;align-items:center;justify-content:center;width:100%;height:3.4rem;padding:0 1rem;background:var(--color-blue-200);color:var(--color-light-grey-50);cursor:pointer}.explorer__btn__refresh svg{font-size:1.8rem}.explorer__icon--file{color:var(--color-file)}.explorer__icon--folder{color:var(--color-yellow-80)}.explorer__icon--readonly{color:var(--color-light-grey-400)}.side-bar{height:100%}.side-bar__header{height:3.4rem;min-height:3.4rem;background:var(--color-dark-grey-100);color:var(--color-light-grey-400);z-index:0}.side-bar__header__title__content{font-size:1.2rem;text-transform:uppercase;font-weight:500}.side-bar__header__title__viewer-mode-badge{display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--color-dark-grey-280);background:var(--color-yellow-200);height:2rem;margin-right:.5rem;border-radius:.3rem;font-weight:700;padding:0 .7rem;cursor:default}.side-bar__header__title__viewer-mode-badge svg{font-size:1rem;margin-right:.3rem}.side-bar__header__actions{padding-right:.5rem}.side-bar__header__action{color:var(--color-light-grey-400)}.side-bar__header__action[disabled] svg{color:var(--color-dark-grey-400) !important}.side-bar__content{background:var(--color-dark-grey-100);color:var(--color-light-grey-400);height:calc(100% - 3.4rem);overflow-y:hidden}.side-bar__view{height:100%;display:none}.side-bar__view--active{display:block}.side-bar__panel .panel__header{min-width:9rem;background:var(--color-dark-grey-200);color:var(--color-light-grey-200);padding-left:1rem}.side-bar__panel .panel__header__action{height:100%;color:var(--color-light-grey-400)}.side-bar__panel .panel__header__action[disabled],.side-bar__panel .panel__header__action[disabled] svg{color:var(--color-dark-grey-300) !important}.side-bar__panel .panel__header__title{width:calc(100% - 3.4rem)}.side-bar__panel .panel__content{height:100%;padding:.5rem 0;background:var(--color-dark-grey-100)}.side-bar__panel__title__info{display:flex;align-items:center;margin-left:.5rem}.side-bar__panel__header__changes-count{display:flex;align-items:center;justify-content:center;margin-right:1rem;background:var(--color-dark-grey-300);border-radius:.8rem;padding:.3rem .7rem;height:1.6rem;font-size:1rem;font-weight:500;cursor:default}.side-bar__panel__item{display:flex;justify-content:space-between;display:flex;align-items:center;height:2.2rem;padding:0 .5rem 0 1rem;cursor:pointer;width:100%;text-align:left}.side-bar__panel__item:hover{background:var(--color-dark-blue-shade-100)}.side-bar__panel__item--selected,.side-bar__panel__item--selected:hover{background:var(--color-light-blue-450)}.side-bar .panel__content__form__section__input{background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-200)}.side-bar .panel__content__form__section__input:focus{border:.1rem solid var(--color-blue-200);outline:none}.side-bar .panel__content__form__section__textarea{background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-200)}.side-bar .panel__content__form__section__textarea:focus{border:.1rem solid var(--color-blue-200);outline:none}.command-modal{width:60rem;padding:.5rem}.command-modal__container{overflow-y:hidden !important}.command-modal__inner-container{overflow-y:initial !important}.command-modal .modal__title{padding:.3rem;font-size:1.6rem}.command-modal .selector-input__menu{z-index:1}.command-modal__content{display:flex;margin-top:.5rem}.command-modal__content__form{display:flex;width:100%;height:2.8rem}.command-modal__content__type{display:flex;height:2.8rem;cursor:pointer}.command-modal__content__type__label{display:flex;align-items:center;justify-content:center;height:2.8rem;width:3.5rem;background:var(--color-light-grey-100);border:.1rem solid var(--color-light-grey-200);border-right:none;color:var(--color-dark-grey-300)}.command-modal__content__type__selector{display:flex;align-items:center;justify-content:center;height:2.8rem;background:var(--color-light-grey-100);border:.1rem solid var(--color-light-grey-200);width:1.5rem;border-right:none;color:var(--color-dark-grey-300)}.command-modal__content__options{width:5rem}.command-modal__content__option{display:flex;align-items:center;justify-content:center;height:2.8rem;background:var(--color-light-grey-100);border:.1rem solid var(--color-light-grey-200);border-top:none;cursor:pointer}.command-modal__content__input{flex:1 0 auto}.command-modal__content__config-btn{display:flex;align-items:center;justify-content:center;margin-left:.5rem;border-radius:.1rem;background:var(--color-dark-grey-200);color:var(--color-light-grey-400)}.command-modal__content__config-btn svg{font-size:1.7rem}.command-modal__content__config-btn:hover{color:var(--color-light-grey-0)}.command-modal__content__config-btn:focus{outline:.1rem solid var(--color-blue-200);outline-offset:.1rem;color:var(--color-light-grey-0)}.command-modal__content__config-btn--toggled{background:var(--color-blue-200);color:var(--color-light-grey-50)}.command-modal__content__submit-btn{display:flex;align-items:center;justify-content:center;width:10rem;margin-left:.5rem}.terminal-panel{height:100%;width:100%;display:flex;flex-direction:column}.terminal-panel__header{display:flex;align-items:center;justify-content:flex-end;height:2.8rem;border-bottom:.1rem solid var(--color-dark-grey-85)}.terminal-panel__header__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.terminal-panel__header__action svg{color:var(--color-dark-grey-400)}.terminal-panel__header__action:hover svg,.terminal-panel__header__action--active svg{color:var(--color-light-grey-300)}.terminal-panel__header__action[disabled] svg,.terminal-panel__header__action[disabled]:hover svg{color:var(--color-dark-grey-300)}.terminal-panel__header__action__icon{font-size:1.2rem}.terminal-panel__header__group{display:flex;align-items:center;height:100%;padding:0 .5rem}.terminal-panel__header__group__separator{height:1.6rem;border:.05rem solid var(--color-dark-grey-100)}.terminal-panel__header__group__action{width:2rem}.terminal-panel__header__searcher__input__container{height:2rem;width:23rem;position:relative;display:flex}.terminal-panel__header__searcher__input{height:100%;width:100%;font-size:1.2rem;padding-right:8rem;border-radius:.1rem}.terminal-panel__header__searcher__input__actions{display:flex;align-items:center;position:absolute;right:0;top:0}.terminal-panel__header__searcher__input__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2rem;width:2rem}.terminal-panel__header__searcher__input__action svg{color:var(--color-dark-grey-400)}.terminal-panel__header__searcher__input__action--active svg,.terminal-panel__header__searcher__input__action:hover svg{color:var(--color-light-grey-300)}.terminal-panel__header__searcher__result{display:flex;align-items:center;min-width:9rem;padding:0 .5rem;font-size:1.2rem}.terminal-panel__content{height:calc(100% - 2.8rem);width:100%;display:flex;position:relative}.terminal-panel__container{height:100%;width:100%;display:flex;overflow:hidden;position:relative}.terminal-panel .xterm{height:100%;width:100%;padding:.5rem 0 .5rem 1.5rem}.terminal-panel .xterm ::-webkit-scrollbar{width:1.4rem}.terminal-panel .xterm ::-webkit-scrollbar-thumb{background:var(--color-light-shade-50)}.terminal-panel .xterm:hover ::-webkit-scrollbar-thumb{background:rgba(121,121,121,.4)}.terminal-panel .xterm ::-webkit-scrollbar-track{background:rgba(0,0,0,0);border:.05rem solid var(--color-dark-grey-200)}.references-panel{height:100%;width:100%}.references-panel__content{display:flex;flex-direction:column;height:100%;width:100%}.references-panel__content__header{display:flex;align-items:center;display:flex;justify-content:space-between;background:var(--color-dark-grey-85);height:2.8rem;padding-right:.5rem}.references-panel__content__header__title{font-weight:500;padding:1rem;user-select:none;font-size:1.2rem}.references-panel__content__header__actions{display:flex;align-items:center;width:6rem}.references-panel__content__header__action{display:flex;align-items:center;justify-content:center;width:2rem;height:2.8rem;color:var(--color-dark-grey-400)}.references-panel__content__header__action:hover{color:var(--color-light-grey-500)}.references-panel__content__results{overflow-y:overlay;height:calc(100% - 2.8rem);padding:.5rem 0}.references-panel__entry__header{display:flex;align-items:center;display:flex;justify-content:space-between;cursor:pointer;height:2.2rem;min-height:2.2rem;padding-left:.5rem}.references-panel__entry__header:hover{background:var(--color-dark-blue-shade-100)}.references-panel__entry__header:hover .references-panel__entry__header__action--with-counter{display:none}.references-panel__entry__header:hover .references-panel__entry__header__action--hidden{display:flex}.references-panel__entry__header__title{display:flex;align-items:center;user-select:none;width:calc(100% - 5rem)}.references-panel__entry__header__title__expander{display:flex;align-items:center;justify-content:center}.references-panel__entry__header__title__label{display:flex;align-items:center;justify-content:center;width:2rem;min-width:2rem;margin-right:.5rem}.references-panel__entry__header__title__content{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left}.references-panel__entry__header__actions{display:flex;height:100%}.references-panel__entry__header__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.references-panel__entry__header__action--hidden{display:none}.references-panel__entry__header__action--hidden svg{color:var(--color-light-grey-400) !important}.references-panel__entry__header__action[disabled] svg{color:var(--color-light-grey-400) !important}.references-panel__entry__header__action--with-counter{width:initial;cursor:default}.references-panel__entry__header__action__counter{display:flex;align-items:center;justify-content:center;height:1.8rem;min-width:1.8rem;background:var(--color-dark-grey-300);border-radius:.9rem;font-size:1rem;font-weight:500;padding:.5rem;margin-right:.5rem;user-select:none}.references-panel__entry__content__item{display:flex;align-items:center;display:flex;justify-content:space-between;width:100%;height:2.2rem;min-height:2.2rem;padding-left:1.5rem;cursor:pointer;font-size:1.2rem;color:var(--color-light-grey-400)}.references-panel__entry__content__item:hover{background:var(--color-dark-blue-shade-100)}.references-panel__entry__content__item:hover .references-panel__entry__content__item__action--hidden{display:flex}.references-panel__entry__content__item__label{user-select:none}.references-panel__entry__content__item__label--full{width:calc(100% - 2.8rem)}.references-panel__entry__content__item__label__content{display:flex;align-items:center}.references-panel__entry__content__item__label__coordinates{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;color:var(--color-dark-grey-300);margin-right:.5rem}.references-panel__entry__content__item__label__preview{display:inline-block;line-height:2.2rem;overflow:hidden;text-overflow:ellipsis;white-space:pre}.references-panel__entry__content__item__label__preview__text{line-height:2.2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;white-space:pre}.references-panel__entry__content__item__label__preview__text--found{font-weight:700;color:var(--color-blue-150)}.references-panel__entry__content__item__actions{display:flex;height:100%}.references-panel__entry__content__item__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.references-panel__entry__content__item__action svg{color:var(--color-light-grey-400) !important}.references-panel__entry__content__item__action--hidden{display:none}.references-panel__entry__content__item__action[disabled] svg{color:var(--color-light-grey-400) !important}.text-search-panel{height:100%;width:100%}.text-search-panel__header{display:flex;align-items:center;justify-content:center;width:100%;height:3.8rem;padding:.5rem}.text-search-panel__content{display:flex;flex-direction:column;height:calc(100% - 3.8rem);width:100%}.text-search-panel__content__header{display:flex;align-items:center;display:flex;justify-content:space-between;background:var(--color-dark-grey-85);height:2.8rem;padding-right:.5rem}.text-search-panel__content__header__title{font-weight:500;padding:1rem;user-select:none;font-size:1.2rem}.text-search-panel__content__header__actions{display:flex;align-items:center;width:6rem}.text-search-panel__content__header__action{display:flex;align-items:center;justify-content:center;width:2rem;height:2.8rem;color:var(--color-dark-grey-400)}.text-search-panel__content__header__action:hover{color:var(--color-light-grey-500)}.text-search-panel__content__results{overflow-y:overlay;height:calc(100% - 2.8rem);padding:.5rem 0}.text-search-panel__entry__header{display:flex;align-items:center;display:flex;justify-content:space-between;cursor:pointer;height:2.2rem;min-height:2.2rem;padding-left:.5rem}.text-search-panel__entry__header:hover{background:var(--color-dark-blue-shade-100)}.text-search-panel__entry__header:hover .text-search-panel__entry__header__action--with-counter{display:none}.text-search-panel__entry__header:hover .text-search-panel__entry__header__action--hidden{display:flex}.text-search-panel__entry__header__title{display:flex;align-items:center;user-select:none;width:calc(100% - 5rem)}.text-search-panel__entry__header__title__expander{display:flex;align-items:center;justify-content:center}.text-search-panel__entry__header__title__label{display:flex;align-items:center;justify-content:center;width:2rem;min-width:2rem;margin-right:.5rem}.text-search-panel__entry__header__title__content{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left}.text-search-panel__entry__header__actions{display:flex;height:100%}.text-search-panel__entry__header__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.text-search-panel__entry__header__action--hidden{display:none}.text-search-panel__entry__header__action--hidden svg{color:var(--color-light-grey-400) !important}.text-search-panel__entry__header__action[disabled] svg{color:var(--color-light-grey-400) !important}.text-search-panel__entry__header__action--with-counter{width:initial;cursor:default}.text-search-panel__entry__header__action__counter{display:flex;align-items:center;justify-content:center;height:1.8rem;min-width:1.8rem;background:var(--color-dark-grey-300);border-radius:.9rem;font-size:1rem;font-weight:500;padding:.5rem;margin-right:.5rem;user-select:none}.text-search-panel__entry__content__item{display:flex;align-items:center;display:flex;justify-content:space-between;width:100%;height:2.2rem;min-height:2.2rem;padding-left:1.5rem;cursor:pointer;font-size:1.2rem;color:var(--color-light-grey-400)}.text-search-panel__entry__content__item:hover{background:var(--color-dark-blue-shade-100)}.text-search-panel__entry__content__item:hover .text-search-panel__entry__content__item__action--hidden{display:flex}.text-search-panel__entry__content__item__label{user-select:none}.text-search-panel__entry__content__item__label--full{width:calc(100% - 2.8rem)}.text-search-panel__entry__content__item__label__content{display:flex;align-items:center}.text-search-panel__entry__content__item__label__coordinates{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;color:var(--color-dark-grey-300);margin-right:.5rem}.text-search-panel__entry__content__item__label__preview{display:inline-block;line-height:2.2rem;overflow:hidden;text-overflow:ellipsis;white-space:pre}.text-search-panel__entry__content__item__label__preview__text{line-height:2.2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;white-space:pre}.text-search-panel__entry__content__item__label__preview__text--found{font-weight:700;color:var(--color-blue-150)}.text-search-panel__entry__content__item__actions{display:flex;height:100%}.text-search-panel__entry__content__item__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.text-search-panel__entry__content__item__action svg{color:var(--color-light-grey-400) !important}.text-search-panel__entry__content__item__action--hidden{display:none}.text-search-panel__entry__content__item__action[disabled] svg{color:var(--color-light-grey-400) !important}.text-search-panel__searcher__input__container{height:2.8rem;width:100%;position:relative;display:flex}.text-search-panel__searcher__input{height:100%;width:100%;padding-right:5.6rem;border-radius:.1rem}.text-search-panel__searcher__input__actions{display:flex;align-items:center;position:absolute;right:0;top:0}.text-search-panel__searcher__input__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.text-search-panel__searcher__input__action svg{font-size:1.6rem;color:var(--color-dark-grey-400)}.text-search-panel__searcher__input__action--active svg,.text-search-panel__searcher__input__action:hover svg{color:var(--color-light-grey-300)}.suggestions-panel{height:100%;width:100%}.suggestions-panel__content{overflow-y:overlay;height:100%;width:100%;padding:1.5rem}.suggestions-panel__content__header{font-weight:500;padding:1rem;line-height:2rem;background:var(--color-dark-grey-85);margin-bottom:1rem;user-select:none}.suggestions-panel__entry{margin:1rem 0}.suggestions-panel__entry__header{display:flex;align-items:center;display:flex;justify-content:space-between;background:var(--color-dark-grey-85);cursor:default;height:2.8rem;min-height:2.8rem;padding-left:.5rem;margin-bottom:1rem}.suggestions-panel__entry__header:hover .suggestions-panel__entry__header__action--with-counter{display:none}.suggestions-panel__entry__header:hover .suggestions-panel__entry__header__action--hidden{display:flex}.suggestions-panel__entry__header__title{display:flex;align-items:center;user-select:none;width:calc(100% - 5rem)}.suggestions-panel__entry__header__title__label{display:flex;align-items:center;justify-content:center;width:2rem;min-width:2rem;margin-right:.5rem}.suggestions-panel__entry__header__title__content{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left}.suggestions-panel__entry__header__actions{display:flex;height:100%}.suggestions-panel__entry__header__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.suggestions-panel__entry__header__action--hidden{display:none}.suggestions-panel__entry__header__action--hidden svg{color:var(--color-light-grey-400) !important}.suggestions-panel__entry__header__action[disabled] svg{color:var(--color-light-grey-400) !important}.suggestions-panel__entry__content__item{display:flex;align-items:center;display:flex;justify-content:space-between;height:2rem;width:100%;min-height:2rem;padding-left:.5rem;cursor:pointer;font-size:1.2rem;color:var(--color-light-grey-400)}.suggestions-panel__entry__content__item:hover{background:var(--color-dark-blue-shade-100)}.suggestions-panel__entry__content__item:hover .suggestions-panel__entry__content__item__action--hidden{display:flex}.suggestions-panel__entry__content__item__label{user-select:none}.suggestions-panel__entry__content__item__label--full{width:calc(100% - 2.8rem)}.suggestions-panel__entry__content__item__label__content{display:flex;align-items:center}.suggestions-panel__entry__content__item__label__coordinates{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;color:var(--color-dark-grey-300);margin-right:.5rem}.suggestions-panel__entry__content__item__label__preview{display:inline-block;line-height:2rem;overflow:hidden;text-overflow:ellipsis;white-space:pre}.suggestions-panel__entry__content__item__label__preview__text{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;white-space:pre}.suggestions-panel__entry__content__item__label__preview__text--found{font-weight:700;color:var(--color-blue-150)}.suggestions-panel__entry__content__item__label__candidate{display:flex;justify-content:space-between;width:calc(100% - 5.6rem);height:2rem;line-height:2rem;user-select:none}.suggestions-panel__entry__content__item__label__candidate-name{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;width:60%}.suggestions-panel__entry__content__item__label__candidate-location{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;width:40%;padding:0 1rem;text-align:right;font-size:1.2rem}.suggestions-panel__entry__content__item__actions{display:flex;height:100%}.suggestions-panel__entry__content__item__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.suggestions-panel__entry__content__item__action svg{color:var(--color-light-grey-400) !important}.suggestions-panel__entry__content__item__action--hidden{display:none}.suggestions-panel__entry__content__item__action[disabled] svg{color:var(--color-light-grey-400) !important}.test-runner-panel{height:100%;width:100%}.test-runner-panel__content{height:100%;width:100%;position:relative}.test-runner-panel__content .Resizer.vertical{background:padding-box var(--color-dark-grey-100);width:1.1rem;min-width:1.1rem;border-left:.5rem solid rgba(0,0,0,0);border-right:.5rem solid rgba(0,0,0,0)}.test-runner-panel .panel{height:100%}.test-runner-panel .panel__header{display:flex;align-items:center;font-weight:bold;color:var(--color-light-grey-100);border-top:.1rem solid var(--color-dark-grey-100)}.test-runner-panel .panel__header__title__label{background:var(--color-dark-grey-200)}.test-runner-panel .panel__header__action svg{color:var(--color-light-grey-400)}.test-runner-panel .panel__header__action[disabled] svg{color:var(--color-dark-grey-250) !important}.test-runner-panel .panel__header__action:hover svg,.test-runner-panel .panel__header__action--active svg,.test-runner-panel .panel__header__action[disabled]:hover svg{color:var(--color-light-grey-0)}.test-runner-panel .panel__content{background:var(--color-dark-grey-50)}.test-runner-panel .panel__content--dnd-over{filter:brightness(105%) blur(0.05rem);border:.1rem solid var(--color-light-blue-200)}.test-runner-panel__explorer .panel__content,.test-runner-panel__parameters .panel__content{padding:.5rem 0}.test-runner-panel__explorer__report{display:flex;align-items:center}.test-runner-panel__explorer__report__overview{display:flex;align-items:center}.test-runner-panel__explorer__report__overview__stat{display:flex;align-items:center;justify-content:center;color:var(--color-light-grey-100);font-size:1rem;height:1.8rem;border-radius:.1rem;padding:0 .4rem;font-weight:500;margin-left:.5rem;user-select:none}.test-runner-panel__explorer__report__overview__stat--total{background:var(--color-dark-grey-250);margin-left:0}.test-runner-panel__explorer__report__overview__stat--failed{background:var(--color-test--failed)}.test-runner-panel__explorer__report__overview__stat--failed svg{margin-left:.3rem;font-size:1.1rem}.test-runner-panel__explorer__report__overview__stat--passed{background:var(--color-test--passed)}.test-runner-panel__explorer__report__overview__stat--passed svg{margin-left:.3rem;font-size:1.1rem}.test-runner-panel__explorer__report__overview__stat--error{background:var(--color-test--error)}.test-runner-panel__explorer__report__overview__stat--error svg{margin-left:.3rem;font-size:1.1rem}.test-runner-panel__explorer__report__summary{display:flex;align-items:center}.test-runner-panel__explorer__report__summary svg{font-size:1.5rem;margin-right:1rem}.test-runner-panel__explorer__report__time{display:flex;align-items:center;justify-content:center;color:var(--color-dark-grey-100);background:var(--color-light-grey-400);font-size:1rem;height:1.8rem;border-radius:.1rem;padding:0 .4rem;font-weight:500;margin-left:.5rem;user-select:none}.test-runner-panel__progress-bar{width:100%;height:.4rem !important}.test-runner-panel__progress-bar--failed{background:var(--color-red-50) !important}.test-runner-panel__progress-bar--passed{background:var(--color-green-80) !important}.test-runner-panel__progress-bar--none{background:var(--color-dark-grey-200) !important}.test-runner-panel__progress-bar__bar--failed{background:var(--color-test--error) !important}.test-runner-panel__progress-bar__bar--passed{background:var(--color-test--passed) !important}.test-runner-panel__progress-bar__bar--none{background:var(--color-dark-grey-200) !important}.test-runner-panel__parameters .panel__header,.test-runner-panel__expected-result .panel__header{border-top:none}.test-runner-panel__expected-result__editor{overflow-y:hidden;padding:0 !important;position:relative}.test-runner-panel__explorer__package-tree__status--passed svg{color:var(--color-test--passed)}.test-runner-panel__explorer__package-tree__status--error svg{color:var(--color-test--error)}.test-runner-panel__explorer__package-tree__status--failed svg{color:var(--color-test--failed)}.test-runner-panel__explorer__package-tree__status--running svg{animation:spin 1s infinite ease;color:var(--color-blue-200)}.test-runner-panel__result{height:100%;width:100%}.test-runner-panel__result__header__icon--text-wrap{font-size:1.8rem}.test-runner-panel__result__content--success{color:var(--color-test--passed) !important}.test-runner-panel__result__content--failure{color:var(--color-test--error) !important}.test-runner-panel__icon--tree-view,.test-runner-panel__icon--list-view{font-size:1.8rem}.test-runner-list__item__label{display:flex;align-items:center}.test-runner-list__item__label__path{display:flex;align-items:center;color:var(--color-dark-grey-250);background:var(--color-dark-grey-400);margin-left:1rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500}.test-runner-list__item__label__name{display:flex;align-items:center;height:1.8rem}.panel-group{width:100%;position:absolute;top:0;left:0;z-index:1;border-top:.1rem solid var(--color-dark-grey-250)}.panel-group .panel__header{padding:0 0 0 1rem;height:3.4rem;background:var(--color-dark-grey-50)}.panel-group .panel__content{height:calc(100% - 3.4rem);background:var(--color-dark-grey-50)}.panel-group__header__tabs{display:flex;height:3.4rem;color:var(--color-dark-grey-400)}.panel-group__header__tab{display:flex;align-items:center;cursor:pointer;height:3.4rem;font-size:1.2rem;margin:0 .5rem;padding:0 .5rem;font-weight:500;border-bottom:.2rem solid var(--color-dark-grey-50);color:var(--color-dark-grey-400)}.panel-group__header__tab--active{color:var(--color-light-grey-200);border-bottom:.2rem solid var(--color-yellow-300)}.panel-group__header__tab__icon{display:flex;align-items:center}.panel-group__header__tab__icon svg{font-size:1.1rem;margin-right:.5rem}.panel-group__header__tab__title{font-size:1.2rem;font-weight:500;user-select:none}.panel-group__content__tab{height:100%;color:var(--color-light-grey-400)}.panel-group__header__actions{display:flex}.panel-group__header__action{display:flex;align-items:center;justify-content:center;height:3.6rem;width:3.6rem;cursor:pointer}.panel-group__header__action svg{color:var(--color-light-grey-400);font-size:1.8rem}.panel-group__splash-screen{display:flex;align-items:center;justify-content:center;height:100%;width:100%;flex-direction:column;user-select:none;background:var(--color-dark-grey-50)}.panel-group__splash-screen__content--hidden,.panel-group__splash-screen__logo--hidden{display:none}.panel-group__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.panel-group__splash-screen__content__item__label{display:flex;align-items:center;height:2.8rem;font-weight:500;width:20rem;justify-content:flex-end;margin-right:1.5rem;color:var(--color-light-grey-400)}.panel-group__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.panel-group__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.panel-group__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.editor-group__header{background:var(--color-dark-grey-100);z-index:1;height:3.4rem;min-height:3.4rem;padding:0}.editor-group__header__action svg{color:var(--color-light-grey-400)}.editor-group__content{overflow-y:hidden;position:relative;background:var(--color-dark-grey-50);height:calc(100% - 3.4rem)}.editor-group__header__tabs{display:flex;height:100%;flex:1;overflow:hidden}.editor-group__header__tab{display:flex;align-items:center}.editor-group__header__tab__icon--file{color:var(--color-file)}.editor-group__header__tab__icon--readonly{margin-left:.5rem;font-size:1rem;color:var(--color-dark-grey-350)}.editor-group__header__tab__label{margin-left:.5rem}.editor-group__header__tab__path{display:flex;align-items:center;color:var(--color-dark-grey-350);margin-left:.5rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500;font-family:"Roboto Mono",monospace}.editor-group__header__actions{display:flex;height:100%}.editor-group__splash-screen{display:flex;align-items:center;justify-content:center;height:100%;width:100%;flex-direction:column;user-select:none;background:var(--color-dark-grey-50)}.editor-group__splash-screen__logo svg{height:19rem;fill:var(--color-dark-grey-85)}.editor-group__splash-screen__content--hidden,.editor-group__splash-screen__logo--hidden{display:none}.editor-group__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.editor-group__splash-screen__content__item__label{display:flex;align-items:center;height:2.8rem;font-weight:500;width:20rem;justify-content:flex-end;margin-right:1.5rem;color:var(--color-light-grey-400)}.editor-group__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.editor-group__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.editor-group__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.editor-group .tab-manager__tab--active{border-bottom:.1rem solid var(--color-yellow-400)}.file-editor__header{display:flex;align-items:center;justify-content:flex-end;height:2.8rem;background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-85)}.file-editor__header__actions{display:flex;align-items:center;height:100%}.file-editor__header__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.file-editor__header__action svg{color:var(--color-dark-grey-400)}.file-editor__header__action:hover svg,.file-editor__header__action--active svg{color:var(--color-light-grey-300)}.file-editor__header__action[disabled] svg,.file-editor__header__action[disabled]:hover svg{color:var(--color-dark-grey-300)}.file-editor__icon--text-wrap{font-size:1.8rem}.file-editor__content{position:relative;height:calc(100% - 2.8rem);width:100%}.file-editor .monaco-menu-container .monaco-scrollable-element{border-radius:.2rem !important}.file-editor .monaco-menu-container .monaco-menu{background:var(--color-dark-grey-100);color:var(--color-light-grey-400);border-radius:.2rem}.file-editor .monaco-menu-container .monaco-menu .monaco-action-bar.vertical{padding:.5rem 0}.file-editor .monaco-menu-container .monaco-menu .monaco-action-bar.vertical .action-label.separator{border-bottom:1px solid var(--color-dark-grey-250) !important;border-bottom-color:var(--color-dark-grey-250) !important}.file-editor .monaco-menu-container .monaco-menu .action-item.focused:hover>a,.file-editor .monaco-menu-container .monaco-menu .action-item.focused>a{background:var(--color-light-blue-450) !important}.file-editor__status-bar{display:flex;align-items:center;height:100%}.file-editor__status-bar__cursor-info{width:initial;font-size:1.2rem;color:var(--color-light-grey-0);cursor:pointer;user-select:none;padding:0 1rem}.diagram-editor{height:100%;width:100%;display:flex;flex-direction:column;overflow:hidden}.diagram-editor__header{display:flex;align-items:center;justify-content:flex-end;height:2.8rem;background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-85)}.diagram-editor__header__actions{display:flex;align-items:center;height:100%}.diagram-editor__header__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.diagram-editor__header__action svg{color:var(--color-dark-grey-400)}.diagram-editor__header__action:hover svg{color:var(--color-light-grey-300)}.diagram-editor__header__action[disabled] svg,.diagram-editor__header__action[disabled]:hover svg{color:var(--color-dark-grey-300)}.diagram-editor__header__group{display:flex;align-items:center;height:100%;padding:0 .5rem}.diagram-editor__header__group__separator{height:1.6rem;border:.05rem solid var(--color-dark-shade-100)}.diagram-editor__header__group__action{width:2rem}.diagram-editor__header__dropdown{display:flex;align-items:center;margin-left:.3rem;height:1.8rem;border:.1rem solid var(--color-dark-grey-300)}.diagram-editor__header__dropdown__label{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;color:var(--color-dark-grey-500);font-weight:500;font-size:1.2rem}.diagram-editor__header__dropdown__trigger{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;cursor:pointer}.diagram-editor__header__dropdown__trigger svg{color:var(--color-dark-grey-500)}.diagram-editor__header__zoomer__dropdown__label{width:5rem}.diagram-editor__header__zoomer__dropdown__trigger{width:2rem}.diagram-editor__header__zoomer__dropdown__menu__item{display:flex;align-items:center;justify-content:center;width:7rem}.diagram-editor__content{height:calc(100% - 2.8rem);width:100%;display:flex;position:relative;overflow:hidden}.diagram-editor__stage{height:100%;width:100%;display:flex;position:relative}.diagram-editor__tools{display:flex;align-items:center;flex-direction:column;width:4.4rem;height:100%;background:var(--color-dark-grey-200);padding:.5rem;border-left:.1rem solid var(--color-dark-grey-85)}.diagram-editor__tools__divider{flex-grow:0;flex-shrink:0;width:100%;border-radius:.1rem;height:.2rem;background:var(--color-dark-grey-300);margin:.5rem 0}.diagram-editor__tool{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:3.4rem;width:3.4rem;border-radius:.2rem}.diagram-editor__tool--active{border-radius:.2rem;background:var(--color-dark-grey-100);border:.1rem solid var(--color-blue-200)}.diagram-editor__tool:hover svg{color:var(--color-light-grey-100)}.diagram-editor__tool:hover[disabled] svg,.diagram-editor__tool[disabled] svg{color:var(--color-dark-grey-400)}.diagram-editor__tool svg{color:var(--color-light-grey-300)}.diagram-editor__icon--layout,.diagram-editor__icon--pan,.diagram-editor__icon--add-class,.diagram-editor__icon--sidebar,.diagram-editor__icon--zoom-in,.diagram-editor__icon--zoom-out{font-size:1.8rem}.diagram-editor__icon--aligner{font-size:1.4rem}.diagram-editor__canvas{width:calc(100% - 4.4rem)}.diagram-editor__cursor--crosshair{cursor:crosshair}.diagram-editor__cursor--pointer{cursor:pointer}.diagram-editor__cursor--resize{cursor:nwse-resize}.diagram-editor__cursor--zoom-in{cursor:zoom-in}.diagram-editor__cursor--zoom-out{cursor:zoom-out}.diagram-editor__cursor--grab{cursor:grab}.diagram-editor__cursor--grabbing{cursor:grabbing}.diagram-editor__cursor--not-allowed{cursor:not-allowed}.ide{height:100%;display:flex;flex-direction:column}.ide__body{display:flex;height:calc(100% - 2.2rem)}.ide__content-container{display:flex;justify-content:center;background:var(--color-dark-grey-80);flex:1 0 auto;width:calc(100% - 5rem)}.ide__content{position:relative;width:100%}:root{--color-pure-association: var(--color-magenta-100);--color-native-function: var(--color-lime-75);--color-diagram: var(--color-magenta-100);--color-file: var(--color-blue-150)}.color--native-function{color:var(--color-native-function)}.color--pure-association{color:var(--color-pure-association)}.color--diagram{color:var(--color-diagram)}.icon--database svg{color:var(--color-yellow-100);font-size:1.2rem}/*# sourceMappingURL=index.css.map */
|
|
17
|
+
@import"@finos/legend-extension-dsl-diagram/lib/index.css";.activity-bar{width:5rem;background:var(--color-dark-grey-250);height:100%;overflow-x:hidden;overflow-y:hidden}.activity-bar__logo{display:flex;align-items:center;justify-content:center;height:6.2rem;border-bottom:.1rem solid var(--color-dark-grey-100)}.activity-bar__items{height:calc(100% - 11.2rem);overflow-y:auto;overflow-x:hidden}.activity-bar__item{display:flex;align-items:center;justify-content:center;height:5rem;width:5rem;color:var(--color-dark-grey-400);cursor:pointer;position:relative}.activity-bar__item svg{font-size:2rem}.activity-bar__item:hover{color:var(--color-light-grey-0);cursor:pointer}.activity-bar__item--active{color:var(--color-light-grey-0)}.activity-bar__item__icon-with-indicator{position:relative}.activity-bar__item__icon__indicator{position:absolute;min-width:1.6rem;height:1.6rem}.activity-bar__local-change-counter{display:flex;align-items:center;justify-content:center;background:var(--color-blue-100);color:var(--color-light-grey-50);bottom:-0.5rem;right:-0.7rem;padding:0 .5rem;border-radius:1rem;font-size:.9rem;font-weight:500}.activity-bar__local-change-counter--waiting{padding:0 .2rem}.activity-bar__local-change-counter--waiting svg{font-size:1.2rem}.activity-bar__conflict-resolution-change-counter{display:flex;align-items:center;justify-content:center;background:var(--color-conflict);color:var(--color-light-grey-50);bottom:-0.4rem;right:-0.3rem;padding:0 .5rem;border-radius:1rem;font-size:.9rem;font-weight:500}.activity-bar__conflict-resolution-change-counter--waiting{padding:0 .2rem}.activity-bar__conflict-resolution-change-counter--waiting svg{font-size:1.2rem !important}.activity-bar__item__icon__indicator__dot{position:absolute;min-width:1rem;height:1rem;border-radius:50%}.activity-bar__item__icon__project-latest-changes__indicator{background:var(--color-blue-100);bottom:-0.4rem;right:-0.4rem}.activity-bar__item__icon__project-latest-changes__indicator--has-conflicts{background:var(--color-conflict)}.activity-bar__item__icon__review-changes__indicator{background:var(--color-yellow-200);bottom:-0.3rem;right:-0.3rem}.activity-bar__review-icon svg,.activity-bar__project-overview-icon svg{font-size:2.3rem}.activity-bar__conflict-resolution-icon svg{font-size:2.4rem;transform:rotate(180deg) scaleX(-1)}.activity-bar__setting__context-menu{background:var(--color-dark-grey-100);border:.1rem solid var(--color-dark-grey-50);padding:.5rem 0;min-width:20rem}.activity-bar__setting__context-menu__item{display:flex;align-items:center;width:100%;cursor:default;color:var(--color-light-grey-400);height:2.8rem;padding:0 1rem}.activity-bar__setting__context-menu__item__icon{display:flex;align-items:center;justify-content:center;width:3rem;min-width:3rem}.activity-bar__setting__context-menu__item__icon svg{font-size:1rem}.activity-bar__setting__context-menu__item[disabled]{color:var(--color-dark-grey-400)}.activity-bar__setting__context-menu__item:not([disabled]):hover{background:var(--color-light-blue-450)}.logo{display:flex;align-items:center;justify-content:center}.logo svg{color:var(--color-light-grey-0);font-size:3rem}.editor__status-bar{display:flex;align-items:center;display:flex;justify-content:space-between;height:2.2rem;background:var(--color-blue-100);color:var(--color-light-grey-0);padding:0 .5rem 0 1rem}.editor__status-bar--conflict-resolution{background:var(--color-conflict)}.editor__status-bar__right,.editor__status-bar__left{height:100%;display:flex;align-items:center}.editor__status-bar__workspace{display:flex;align-items:center;cursor:default;height:100%}.editor__status-bar__workspace__status{display:flex;align-items:center;justify-content:center;height:1.6rem;cursor:pointer;font-size:1rem;background:var(--color-dark-shade-300);color:var(--color-light-grey-0);border-radius:.3rem;padding:0 .5rem;margin:0 .5rem;font-weight:500}.editor__status-bar__workspace__icon{display:flex;align-items:center}.editor__status-bar__workspace__project,.editor__status-bar__workspace__workspace{padding:0 .5rem;cursor:default}.editor__status-bar__workspace__project a,.editor__status-bar__workspace__workspace a{text-decoration:none;color:var(--color-light-grey-0)}.editor__status-bar__action{display:flex;align-items:center;justify-content:center;cursor:pointer;background:none;height:100%;width:3rem}.editor__status-bar__action:hover{background:var(--color-light-shade-50)}.editor__status-bar__action__toggler,.editor__status-bar__action__toggler svg{color:var(--color-dark-shade-300)}.editor__status-bar__action__toggler--active,.editor__status-bar__action__toggler--active svg{color:var(--color-light-grey-0)}.editor__status-bar__sync{display:flex;height:100%}.editor__status-bar__sync__status{display:flex;align-items:center;justify-content:center;cursor:default}.editor__status-bar__sync__btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__sync__btn--spinning svg{animation:spin 1s infinite ease}.editor__status-bar__sync__btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__sync__btn svg{font-size:1.6rem}.editor__status-bar__generate-btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__generate-btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__generate-btn--wiggling svg{animation:flame-rise .5s infinite ease;transform-origin:bottom left}.editor__status-bar__clear__generation-btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__clear__generation-btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__clear__generation-btn--wiggling svg{animation:flame-rise .5s infinite ease;transform-origin:bottom left}.editor__status-bar__compile-btn{display:flex;align-items:center;justify-content:center;background:none;color:var(--color-light-grey-0);cursor:pointer;padding:0 .5rem}.editor__status-bar__compile-btn[disabled]{color:var(--color-dark-shade-300)}.editor__status-bar__compile-btn--wiggling svg{animation:hammer-wiggle .5s infinite ease;transform-origin:bottom left}@keyframes flame-rise{from{transform:translateY(-0.05rem)}to{transform:translateY(0.05rem)}}@keyframes hammer-wiggle{from{transform:rotate(-7deg)}to{transform:rotate(10deg)}}.explorer{width:100%}.explorer .panel__header__action{height:100%;color:var(--color-light-grey-400)}.explorer .panel__header__action[disabled],.explorer .panel__header__action[disabled] svg{color:var(--color-dark-grey-300) !important}.explorer .panel__header__title{width:calc(100% - 3.4rem)}.explorer__header{display:flex;justify-content:space-between;min-width:9rem;background:var(--color-dark-grey-200);color:var(--color-light-grey-200);padding-left:1rem}.explorer__content__container{height:100%;background:var(--color-dark-grey-100)}.explorer__content__container__message{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;height:3rem;line-height:3rem;padding:0 1rem;font-size:1.3rem;margin-top:.5rem;user-select:none}.explorer__content{height:100%;overflow-x:hidden;color:var(--color-light-grey-400);padding:.5rem 0 5rem}.explorer__content__separator{height:.1rem;width:100%;background:var(--color-dark-grey-250);margin:.5rem 0}.explorer__content__failure-notice{display:flex;align-items:center;flex-direction:column}.explorer__content__failure-notice__icon svg{font-size:11rem;color:var(--color-dark-grey-80)}.explorer__content__failure-notice__text{margin-top:1rem;font-weight:500}.explorer__config__icon{padding-left:2rem}.explorer__package-tree__node__container{padding-right:1rem}.explorer__package-tree__node__container:hover{background:var(--color-dark-blue-shade-100)}.explorer__package-tree__node__container--selected,.explorer__package-tree__node__container--selected:hover{background:var(--color-light-blue-450)}.explorer__package-tree__node__container--selected-from-context-menu{background:var(--color-dark-blue-shade-100)}.explorer__package-tree__node__icon{width:4rem;min-width:4rem}.explorer__package-tree__node__icon__expand,.explorer__package-tree__node__icon__type{width:2rem;display:flex;justify-content:center}.explorer__package-tree__node__icon__type--property-from-association svg{color:var(--color-pure-association) !important}.explorer__package-tree__node__icon__expand svg{font-size:1rem}.explorer__package-tree__node__icon__expand--is-loading svg{font-size:1.1rem;animation:spin 1s infinite ease;color:var(--color-blue-200)}.explorer__package-tree__node__container--selected .explorer__package-tree__node__icon__expand svg{color:var(--color-light-grey-400) !important}.explorer__package-tree__node__label{color:inherit;user-select:none}.explorer__package-tree__node__label__tag{background:var(--color-dark-grey-280);margin-left:.5rem;border-radius:.2rem;font-size:1rem;padding:.2rem .3rem;height:2rem;line-height:2rem;font-weight:500;vertical-align:middle}.explorer__new-element-modal__name-input{width:100%;margin-bottom:1rem}.explorer__content--empty{padding:2rem}.explorer__content--empty__text{margin-bottom:1rem;line-height:1.8rem}.explorer__content--empty__btn{display:flex;align-items:center;justify-content:center;width:100%;height:3.4rem;padding:0 1rem;background:var(--color-blue-200);color:var(--color-light-grey-50);cursor:pointer}.explorer__btn__refresh svg{font-size:1.8rem}.explorer__icon--file{color:var(--color-file)}.explorer__icon--folder{color:var(--color-yellow-80)}.explorer__icon--readonly{color:var(--color-light-grey-400)}.side-bar{height:100%}.side-bar__header{height:3.4rem;min-height:3.4rem;background:var(--color-dark-grey-100);color:var(--color-light-grey-400);z-index:0}.side-bar__header__title__content{font-size:1.2rem;text-transform:uppercase;font-weight:500}.side-bar__header__title__viewer-mode-badge{display:flex;align-items:center;justify-content:center;font-size:1.2rem;color:var(--color-dark-grey-280);background:var(--color-yellow-200);height:2rem;margin-right:.5rem;border-radius:.3rem;font-weight:700;padding:0 .7rem;cursor:default}.side-bar__header__title__viewer-mode-badge svg{font-size:1rem;margin-right:.3rem}.side-bar__header__actions{padding-right:.5rem}.side-bar__header__action{color:var(--color-light-grey-400)}.side-bar__header__action[disabled] svg{color:var(--color-dark-grey-400) !important}.side-bar__content{background:var(--color-dark-grey-100);color:var(--color-light-grey-400);height:calc(100% - 3.4rem);overflow-y:hidden}.side-bar__view{height:100%;display:none}.side-bar__view--active{display:block}.side-bar__panel .panel__header{min-width:9rem;background:var(--color-dark-grey-200);color:var(--color-light-grey-200);padding-left:1rem}.side-bar__panel .panel__header__action{height:100%;color:var(--color-light-grey-400)}.side-bar__panel .panel__header__action[disabled],.side-bar__panel .panel__header__action[disabled] svg{color:var(--color-dark-grey-300) !important}.side-bar__panel .panel__header__title{width:calc(100% - 3.4rem)}.side-bar__panel .panel__content{height:100%;padding:.5rem 0;background:var(--color-dark-grey-100)}.side-bar__panel__title__info{display:flex;align-items:center;margin-left:.5rem}.side-bar__panel__header__changes-count{display:flex;align-items:center;justify-content:center;margin-right:1rem;background:var(--color-dark-grey-300);border-radius:.8rem;padding:.3rem .7rem;height:1.6rem;font-size:1rem;font-weight:500;cursor:default}.side-bar__panel__item{display:flex;justify-content:space-between;display:flex;align-items:center;height:2.2rem;padding:0 .5rem 0 1rem;cursor:pointer;width:100%;text-align:left}.side-bar__panel__item:hover{background:var(--color-dark-blue-shade-100)}.side-bar__panel__item--selected,.side-bar__panel__item--selected:hover{background:var(--color-light-blue-450)}.side-bar .panel__content__form__section__input{background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-200)}.side-bar .panel__content__form__section__input:focus{border:.1rem solid var(--color-blue-200);outline:none}.side-bar .panel__content__form__section__textarea{background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-200)}.side-bar .panel__content__form__section__textarea:focus{border:.1rem solid var(--color-blue-200);outline:none}.command-modal{width:60rem;padding:.5rem}.command-modal__container{overflow-y:hidden !important}.command-modal__inner-container{overflow-y:initial !important}.command-modal .modal__title{padding:.3rem;font-size:1.6rem}.command-modal .selector-input__menu{z-index:1}.command-modal__content{display:flex;margin-top:.5rem}.command-modal__content__form{display:flex;width:100%;height:2.8rem}.command-modal__content__type{display:flex;height:2.8rem;cursor:pointer}.command-modal__content__type__label{display:flex;align-items:center;justify-content:center;height:2.8rem;width:3.5rem;background:var(--color-light-grey-100);border:.1rem solid var(--color-light-grey-200);border-right:none;color:var(--color-dark-grey-300)}.command-modal__content__type__selector{display:flex;align-items:center;justify-content:center;height:2.8rem;background:var(--color-light-grey-100);border:.1rem solid var(--color-light-grey-200);width:1.5rem;border-right:none;color:var(--color-dark-grey-300)}.command-modal__content__options{width:5rem}.command-modal__content__option{display:flex;align-items:center;justify-content:center;height:2.8rem;background:var(--color-light-grey-100);border:.1rem solid var(--color-light-grey-200);border-top:none;cursor:pointer}.command-modal__content__input{flex:1 0 auto}.command-modal__content__config-btn{display:flex;align-items:center;justify-content:center;margin-left:.5rem;border-radius:.1rem;background:var(--color-dark-grey-200);color:var(--color-light-grey-400)}.command-modal__content__config-btn svg{font-size:1.7rem}.command-modal__content__config-btn:hover{color:var(--color-light-grey-0)}.command-modal__content__config-btn:focus{outline:.1rem solid var(--color-blue-200);outline-offset:.1rem;color:var(--color-light-grey-0)}.command-modal__content__config-btn--toggled{background:var(--color-blue-200);color:var(--color-light-grey-50)}.command-modal__content__submit-btn{display:flex;align-items:center;justify-content:center;width:10rem;margin-left:.5rem}.terminal-panel{height:100%;width:100%;display:flex;flex-direction:column}.terminal-panel__header{display:flex;align-items:center;justify-content:flex-end;height:2.8rem;border-bottom:.1rem solid var(--color-dark-grey-85)}.terminal-panel__header__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.terminal-panel__header__action svg{color:var(--color-dark-grey-400)}.terminal-panel__header__action:hover svg,.terminal-panel__header__action--active svg{color:var(--color-light-grey-300)}.terminal-panel__header__action[disabled] svg,.terminal-panel__header__action[disabled]:hover svg{color:var(--color-dark-grey-300)}.terminal-panel__header__action__icon{font-size:1.2rem}.terminal-panel__header__group{display:flex;align-items:center;height:100%;padding:0 .5rem}.terminal-panel__header__group__separator{height:1.6rem;border:.05rem solid var(--color-dark-grey-100)}.terminal-panel__header__group__action{width:2rem}.terminal-panel__header__searcher__input__container{height:2rem;width:23rem;position:relative;display:flex}.terminal-panel__header__searcher__input{height:100%;width:100%;font-size:1.2rem;padding-right:8rem;border-radius:.1rem}.terminal-panel__header__searcher__input__actions{display:flex;align-items:center;position:absolute;right:0;top:0}.terminal-panel__header__searcher__input__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2rem;width:2rem}.terminal-panel__header__searcher__input__action svg{color:var(--color-dark-grey-400)}.terminal-panel__header__searcher__input__action--active svg,.terminal-panel__header__searcher__input__action:hover svg{color:var(--color-light-grey-300)}.terminal-panel__header__searcher__result{display:flex;align-items:center;min-width:9rem;padding:0 .5rem;font-size:1.2rem}.terminal-panel__content{height:calc(100% - 2.8rem);width:100%;display:flex;position:relative}.terminal-panel__container{height:100%;width:100%;display:flex;overflow:hidden;position:relative}.terminal-panel .xterm{height:100%;width:100%;padding:.5rem 0 .5rem 1.5rem}.terminal-panel .xterm ::-webkit-scrollbar{width:1.4rem}.terminal-panel .xterm ::-webkit-scrollbar-thumb{background:var(--color-light-shade-50)}.terminal-panel .xterm:hover ::-webkit-scrollbar-thumb{background:rgba(121,121,121,.4)}.terminal-panel .xterm ::-webkit-scrollbar-track{background:rgba(0,0,0,0);border:.05rem solid var(--color-dark-grey-200)}.references-panel{height:100%;width:100%}.references-panel__content{display:flex;flex-direction:column;height:100%;width:100%}.references-panel__content__header{display:flex;align-items:center;display:flex;justify-content:space-between;background:var(--color-dark-grey-85);height:2.8rem;padding-right:.5rem}.references-panel__content__header__title{font-weight:500;padding:1rem;user-select:none;font-size:1.2rem}.references-panel__content__header__actions{display:flex;align-items:center;width:6rem}.references-panel__content__header__action{display:flex;align-items:center;justify-content:center;width:2rem;height:2.8rem;color:var(--color-dark-grey-400)}.references-panel__content__header__action:hover{color:var(--color-light-grey-500)}.references-panel__content__results{overflow-y:overlay;height:calc(100% - 2.8rem);padding:.5rem 0}.references-panel__entry__header{display:flex;align-items:center;display:flex;justify-content:space-between;cursor:pointer;height:2.2rem;min-height:2.2rem;padding-left:.5rem}.references-panel__entry__header:hover{background:var(--color-dark-blue-shade-100)}.references-panel__entry__header:hover .references-panel__entry__header__action--with-counter{display:none}.references-panel__entry__header:hover .references-panel__entry__header__action--hidden{display:flex}.references-panel__entry__header__title{display:flex;align-items:center;user-select:none;width:calc(100% - 5rem)}.references-panel__entry__header__title__expander{display:flex;align-items:center;justify-content:center}.references-panel__entry__header__title__label{display:flex;align-items:center;justify-content:center;width:2rem;min-width:2rem;margin-right:.5rem}.references-panel__entry__header__title__content{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left}.references-panel__entry__header__actions{display:flex;height:100%}.references-panel__entry__header__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.references-panel__entry__header__action--hidden{display:none}.references-panel__entry__header__action--hidden svg{color:var(--color-light-grey-400) !important}.references-panel__entry__header__action[disabled] svg{color:var(--color-light-grey-400) !important}.references-panel__entry__header__action--with-counter{width:initial;cursor:default}.references-panel__entry__header__action__counter{display:flex;align-items:center;justify-content:center;height:1.8rem;min-width:1.8rem;background:var(--color-dark-grey-300);border-radius:.9rem;font-size:1rem;font-weight:500;padding:.5rem;margin-right:.5rem;user-select:none}.references-panel__entry__content__item{display:flex;align-items:center;display:flex;justify-content:space-between;width:100%;height:2.2rem;min-height:2.2rem;padding-left:1.5rem;cursor:pointer;font-size:1.2rem;color:var(--color-light-grey-400)}.references-panel__entry__content__item:hover{background:var(--color-dark-blue-shade-100)}.references-panel__entry__content__item:hover .references-panel__entry__content__item__action--hidden{display:flex}.references-panel__entry__content__item__label{user-select:none}.references-panel__entry__content__item__label--full{width:calc(100% - 2.8rem)}.references-panel__entry__content__item__label__content{display:flex;align-items:center}.references-panel__entry__content__item__label__coordinates{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;color:var(--color-dark-grey-300);margin-right:.5rem}.references-panel__entry__content__item__label__preview{display:inline-block;line-height:2.2rem;overflow:hidden;text-overflow:ellipsis;white-space:pre}.references-panel__entry__content__item__label__preview__text{line-height:2.2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;white-space:pre}.references-panel__entry__content__item__label__preview__text--found{font-weight:700;color:var(--color-blue-150)}.references-panel__entry__content__item__actions{display:flex;height:100%}.references-panel__entry__content__item__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.references-panel__entry__content__item__action svg{color:var(--color-light-grey-400) !important}.references-panel__entry__content__item__action--hidden{display:none}.references-panel__entry__content__item__action[disabled] svg{color:var(--color-light-grey-400) !important}.text-search-panel{height:100%;width:100%}.text-search-panel__header{display:flex;align-items:center;justify-content:center;width:100%;height:3.8rem;padding:.5rem}.text-search-panel__content{display:flex;flex-direction:column;height:calc(100% - 3.8rem);width:100%}.text-search-panel__content__header{display:flex;align-items:center;display:flex;justify-content:space-between;background:var(--color-dark-grey-85);height:2.8rem;padding-right:.5rem}.text-search-panel__content__header__title{font-weight:500;padding:1rem;user-select:none;font-size:1.2rem}.text-search-panel__content__header__actions{display:flex;align-items:center;width:6rem}.text-search-panel__content__header__action{display:flex;align-items:center;justify-content:center;width:2rem;height:2.8rem;color:var(--color-dark-grey-400)}.text-search-panel__content__header__action:hover{color:var(--color-light-grey-500)}.text-search-panel__content__results{overflow-y:overlay;height:calc(100% - 2.8rem);padding:.5rem 0}.text-search-panel__entry__header{display:flex;align-items:center;display:flex;justify-content:space-between;cursor:pointer;height:2.2rem;min-height:2.2rem;padding-left:.5rem}.text-search-panel__entry__header:hover{background:var(--color-dark-blue-shade-100)}.text-search-panel__entry__header:hover .text-search-panel__entry__header__action--with-counter{display:none}.text-search-panel__entry__header:hover .text-search-panel__entry__header__action--hidden{display:flex}.text-search-panel__entry__header__title{display:flex;align-items:center;user-select:none;width:calc(100% - 5rem)}.text-search-panel__entry__header__title__expander{display:flex;align-items:center;justify-content:center}.text-search-panel__entry__header__title__label{display:flex;align-items:center;justify-content:center;width:2rem;min-width:2rem;margin-right:.5rem}.text-search-panel__entry__header__title__content{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left}.text-search-panel__entry__header__actions{display:flex;height:100%}.text-search-panel__entry__header__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.text-search-panel__entry__header__action--hidden{display:none}.text-search-panel__entry__header__action--hidden svg{color:var(--color-light-grey-400) !important}.text-search-panel__entry__header__action[disabled] svg{color:var(--color-light-grey-400) !important}.text-search-panel__entry__header__action--with-counter{width:initial;cursor:default}.text-search-panel__entry__header__action__counter{display:flex;align-items:center;justify-content:center;height:1.8rem;min-width:1.8rem;background:var(--color-dark-grey-300);border-radius:.9rem;font-size:1rem;font-weight:500;padding:.5rem;margin-right:.5rem;user-select:none}.text-search-panel__entry__content__item{display:flex;align-items:center;display:flex;justify-content:space-between;width:100%;height:2.2rem;min-height:2.2rem;padding-left:1.5rem;cursor:pointer;font-size:1.2rem;color:var(--color-light-grey-400)}.text-search-panel__entry__content__item:hover{background:var(--color-dark-blue-shade-100)}.text-search-panel__entry__content__item:hover .text-search-panel__entry__content__item__action--hidden{display:flex}.text-search-panel__entry__content__item__label{user-select:none}.text-search-panel__entry__content__item__label--full{width:calc(100% - 2.8rem)}.text-search-panel__entry__content__item__label__content{display:flex;align-items:center}.text-search-panel__entry__content__item__label__coordinates{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;color:var(--color-dark-grey-300);margin-right:.5rem}.text-search-panel__entry__content__item__label__preview{display:inline-block;line-height:2.2rem;overflow:hidden;text-overflow:ellipsis;white-space:pre}.text-search-panel__entry__content__item__label__preview__text{line-height:2.2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;white-space:pre}.text-search-panel__entry__content__item__label__preview__text--found{font-weight:700;color:var(--color-blue-150)}.text-search-panel__entry__content__item__actions{display:flex;height:100%}.text-search-panel__entry__content__item__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.text-search-panel__entry__content__item__action svg{color:var(--color-light-grey-400) !important}.text-search-panel__entry__content__item__action--hidden{display:none}.text-search-panel__entry__content__item__action[disabled] svg{color:var(--color-light-grey-400) !important}.text-search-panel__searcher__input__container{height:2.8rem;width:100%;position:relative;display:flex}.text-search-panel__searcher__input{height:100%;width:100%;padding-right:5.6rem;border-radius:.1rem}.text-search-panel__searcher__input__actions{display:flex;align-items:center;position:absolute;right:0;top:0}.text-search-panel__searcher__input__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.text-search-panel__searcher__input__action svg{font-size:1.6rem;color:var(--color-dark-grey-400)}.text-search-panel__searcher__input__action--active svg,.text-search-panel__searcher__input__action:hover svg{color:var(--color-light-grey-300)}.suggestions-panel{height:100%;width:100%}.suggestions-panel__content{overflow-y:overlay;height:100%;width:100%;padding:1.5rem}.suggestions-panel__content__header{font-weight:500;padding:1rem;line-height:2rem;background:var(--color-dark-grey-85);margin-bottom:1rem;user-select:none}.suggestions-panel__entry{margin:1rem 0}.suggestions-panel__entry__header{display:flex;align-items:center;display:flex;justify-content:space-between;background:var(--color-dark-grey-85);cursor:default;height:2.8rem;min-height:2.8rem;padding-left:.5rem;margin-bottom:1rem}.suggestions-panel__entry__header:hover .suggestions-panel__entry__header__action--with-counter{display:none}.suggestions-panel__entry__header:hover .suggestions-panel__entry__header__action--hidden{display:flex}.suggestions-panel__entry__header__title{display:flex;align-items:center;user-select:none;width:calc(100% - 5rem)}.suggestions-panel__entry__header__title__label{display:flex;align-items:center;justify-content:center;width:2rem;min-width:2rem;margin-right:.5rem}.suggestions-panel__entry__header__title__content{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left}.suggestions-panel__entry__header__actions{display:flex;height:100%}.suggestions-panel__entry__header__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.suggestions-panel__entry__header__action--hidden{display:none}.suggestions-panel__entry__header__action--hidden svg{color:var(--color-light-grey-400) !important}.suggestions-panel__entry__header__action[disabled] svg{color:var(--color-light-grey-400) !important}.suggestions-panel__entry__content__item{display:flex;align-items:center;display:flex;justify-content:space-between;height:2rem;width:100%;min-height:2rem;padding-left:.5rem;cursor:pointer;font-size:1.2rem;color:var(--color-light-grey-400)}.suggestions-panel__entry__content__item:hover{background:var(--color-dark-blue-shade-100)}.suggestions-panel__entry__content__item:hover .suggestions-panel__entry__content__item__action--hidden{display:flex}.suggestions-panel__entry__content__item__label{user-select:none}.suggestions-panel__entry__content__item__label--full{width:calc(100% - 2.8rem)}.suggestions-panel__entry__content__item__label__content{display:flex;align-items:center}.suggestions-panel__entry__content__item__label__coordinates{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;color:var(--color-dark-grey-300);margin-right:.5rem}.suggestions-panel__entry__content__item__label__preview{display:inline-block;line-height:2rem;overflow:hidden;text-overflow:ellipsis;white-space:pre}.suggestions-panel__entry__content__item__label__preview__text{line-height:2rem;font-size:1.2rem;font-family:"Roboto Mono",monospace;white-space:pre}.suggestions-panel__entry__content__item__label__preview__text--found{font-weight:700;color:var(--color-blue-150)}.suggestions-panel__entry__content__item__label__candidate{display:flex;justify-content:space-between;width:calc(100% - 5.6rem);height:2rem;line-height:2rem;user-select:none}.suggestions-panel__entry__content__item__label__candidate-name{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;width:60%}.suggestions-panel__entry__content__item__label__candidate-location{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;word-break:break-word;text-align:left;width:40%;padding:0 1rem;text-align:right;font-size:1.2rem}.suggestions-panel__entry__content__item__actions{display:flex;height:100%}.suggestions-panel__entry__content__item__action{display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0);cursor:pointer;width:2.8rem}.suggestions-panel__entry__content__item__action svg{color:var(--color-light-grey-400) !important}.suggestions-panel__entry__content__item__action--hidden{display:none}.suggestions-panel__entry__content__item__action[disabled] svg{color:var(--color-light-grey-400) !important}.test-runner-panel{height:100%;width:100%}.test-runner-panel__content{height:100%;width:100%;position:relative}.test-runner-panel__content .Resizer.vertical{background:padding-box var(--color-dark-grey-100);width:1.1rem;min-width:1.1rem;border-left:.5rem solid rgba(0,0,0,0);border-right:.5rem solid rgba(0,0,0,0)}.test-runner-panel .panel{height:100%}.test-runner-panel .panel__header{display:flex;align-items:center;font-weight:bold;color:var(--color-light-grey-100);border-top:.1rem solid var(--color-dark-grey-100)}.test-runner-panel .panel__header__title__label{background:var(--color-dark-grey-200)}.test-runner-panel .panel__header__action svg{color:var(--color-light-grey-400)}.test-runner-panel .panel__header__action[disabled] svg{color:var(--color-dark-grey-250) !important}.test-runner-panel .panel__header__action:hover svg,.test-runner-panel .panel__header__action--active svg,.test-runner-panel .panel__header__action[disabled]:hover svg{color:var(--color-light-grey-0)}.test-runner-panel .panel__content{background:var(--color-dark-grey-50)}.test-runner-panel .panel__content--dnd-over{filter:brightness(105%) blur(0.05rem);border:.1rem solid var(--color-light-blue-200)}.test-runner-panel__explorer .panel__content,.test-runner-panel__parameters .panel__content{padding:.5rem 0}.test-runner-panel__explorer__report{display:flex;align-items:center}.test-runner-panel__explorer__report__overview{display:flex;align-items:center}.test-runner-panel__explorer__report__overview__stat{display:flex;align-items:center;justify-content:center;color:var(--color-light-grey-100);font-size:1rem;height:1.8rem;border-radius:.1rem;padding:0 .4rem;font-weight:500;margin-left:.5rem;user-select:none}.test-runner-panel__explorer__report__overview__stat--total{background:var(--color-dark-grey-250);margin-left:0}.test-runner-panel__explorer__report__overview__stat--failed{background:var(--color-test--failed)}.test-runner-panel__explorer__report__overview__stat--failed svg{margin-left:.3rem;font-size:1.1rem}.test-runner-panel__explorer__report__overview__stat--passed{background:var(--color-test--passed)}.test-runner-panel__explorer__report__overview__stat--passed svg{margin-left:.3rem;font-size:1.1rem}.test-runner-panel__explorer__report__overview__stat--error{background:var(--color-test--error)}.test-runner-panel__explorer__report__overview__stat--error svg{margin-left:.3rem;font-size:1.1rem}.test-runner-panel__explorer__report__summary{display:flex;align-items:center}.test-runner-panel__explorer__report__summary svg{font-size:1.5rem;margin-right:1rem}.test-runner-panel__explorer__report__time{display:flex;align-items:center;justify-content:center;color:var(--color-dark-grey-100);background:var(--color-light-grey-400);font-size:1rem;height:1.8rem;border-radius:.1rem;padding:0 .4rem;font-weight:500;margin-left:.5rem;user-select:none}.test-runner-panel__progress-bar{width:100%;height:.4rem !important}.test-runner-panel__progress-bar--failed{background:var(--color-red-50) !important}.test-runner-panel__progress-bar--passed{background:var(--color-green-80) !important}.test-runner-panel__progress-bar--none{background:var(--color-dark-grey-200) !important}.test-runner-panel__progress-bar__bar--failed{background:var(--color-test--error) !important}.test-runner-panel__progress-bar__bar--passed{background:var(--color-test--passed) !important}.test-runner-panel__progress-bar__bar--none{background:var(--color-dark-grey-200) !important}.test-runner-panel__parameters .panel__header,.test-runner-panel__expected-result .panel__header{border-top:none}.test-runner-panel__expected-result__editor{overflow-y:hidden;padding:0 !important;position:relative}.test-runner-panel__explorer__package-tree__status--passed svg{color:var(--color-test--passed)}.test-runner-panel__explorer__package-tree__status--error svg{color:var(--color-test--error)}.test-runner-panel__explorer__package-tree__status--failed svg{color:var(--color-test--failed)}.test-runner-panel__explorer__package-tree__status--running svg{animation:spin 1s infinite ease;color:var(--color-blue-200)}.test-runner-panel__result{height:100%;width:100%}.test-runner-panel__result__header__icon--text-wrap{font-size:1.8rem}.test-runner-panel__result__content--success{color:var(--color-test--passed) !important}.test-runner-panel__result__content--failure{color:var(--color-test--error) !important}.test-runner-panel__icon--tree-view,.test-runner-panel__icon--list-view{font-size:1.8rem}.test-runner-list__item__label{display:flex;align-items:center}.test-runner-list__item__label__path{display:flex;align-items:center;color:var(--color-dark-grey-250);background:var(--color-dark-grey-400);margin-left:1rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500}.test-runner-list__item__label__name{display:flex;align-items:center;height:1.8rem}.panel-group{width:100%;position:absolute;top:0;left:0;z-index:1;border-top:.1rem solid var(--color-dark-grey-250)}.panel-group .panel__header{padding:0 0 0 1rem;height:3.4rem;background:var(--color-dark-grey-50)}.panel-group .panel__content{height:calc(100% - 3.4rem);background:var(--color-dark-grey-50)}.panel-group__header__tabs{display:flex;height:3.4rem;color:var(--color-dark-grey-400)}.panel-group__header__tab{display:flex;align-items:center;cursor:pointer;height:3.4rem;font-size:1.2rem;margin:0 .5rem;padding:0 .5rem;font-weight:500;border-bottom:.2rem solid var(--color-dark-grey-50);color:var(--color-dark-grey-400)}.panel-group__header__tab--active{color:var(--color-light-grey-200);border-bottom:.2rem solid var(--color-yellow-300)}.panel-group__header__tab__icon{display:flex;align-items:center}.panel-group__header__tab__icon svg{font-size:1.1rem;margin-right:.5rem}.panel-group__header__tab__title{font-size:1.2rem;font-weight:500;user-select:none}.panel-group__content__tab{height:100%;color:var(--color-light-grey-400)}.panel-group__header__actions{display:flex}.panel-group__header__action{display:flex;align-items:center;justify-content:center;height:3.6rem;width:3.6rem;cursor:pointer}.panel-group__header__action svg{color:var(--color-light-grey-400);font-size:1.8rem}.panel-group__splash-screen{display:flex;align-items:center;justify-content:center;height:100%;width:100%;flex-direction:column;user-select:none;background:var(--color-dark-grey-50)}.panel-group__splash-screen__content--hidden,.panel-group__splash-screen__logo--hidden{display:none}.panel-group__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.panel-group__splash-screen__content__item__label{display:flex;align-items:center;height:2.8rem;font-weight:500;width:20rem;justify-content:flex-end;margin-right:1.5rem;color:var(--color-light-grey-400)}.panel-group__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.panel-group__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.panel-group__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.editor-group__header{background:var(--color-dark-grey-100);z-index:1;height:3.4rem;min-height:3.4rem;padding:0}.editor-group__header__action svg{color:var(--color-light-grey-400)}.editor-group__content{overflow-y:hidden;position:relative;background:var(--color-dark-grey-50);height:calc(100% - 3.4rem)}.editor-group__header__tabs{display:flex;height:100%;flex:1;overflow:hidden}.editor-group__header__tab{display:flex;align-items:center}.editor-group__header__tab__icon--file{color:var(--color-file)}.editor-group__header__tab__icon--readonly{margin-left:.5rem;font-size:1rem;color:var(--color-dark-grey-350)}.editor-group__header__tab__label{margin-left:.5rem}.editor-group__header__tab__path{display:flex;align-items:center;color:var(--color-dark-grey-350);margin-left:.5rem;border-radius:.2rem;font-size:1rem;padding:0 .5rem;height:1.6rem;font-weight:500;font-family:"Roboto Mono",monospace}.editor-group__header__actions{display:flex;height:100%}.editor-group__splash-screen{display:flex;align-items:center;justify-content:center;height:100%;width:100%;flex-direction:column;user-select:none;background:var(--color-dark-grey-50)}.editor-group__splash-screen__logo svg{height:19rem;fill:var(--color-dark-grey-85)}.editor-group__splash-screen__content--hidden,.editor-group__splash-screen__logo--hidden{display:none}.editor-group__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.editor-group__splash-screen__content__item__label{display:flex;align-items:center;height:2.8rem;font-weight:500;width:20rem;justify-content:flex-end;margin-right:1.5rem;color:var(--color-light-grey-400)}.editor-group__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.editor-group__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.editor-group__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.editor-group .tab-manager__tab--active{border-bottom:.1rem solid var(--color-yellow-400)}.file-editor__header{display:flex;align-items:center;justify-content:flex-end;height:2.8rem;background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-85);z-index:0}.file-editor__header__actions{display:flex;align-items:center;height:100%}.file-editor__header__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.file-editor__header__action svg{color:var(--color-dark-grey-400)}.file-editor__header__action:hover svg,.file-editor__header__action--active svg{color:var(--color-light-grey-300)}.file-editor__header__action[disabled] svg,.file-editor__header__action[disabled]:hover svg{color:var(--color-dark-grey-300)}.file-editor__icon--text-wrap{font-size:1.8rem}.file-editor__content{position:relative;height:calc(100% - 2.8rem);width:100%}.file-editor .code-editor__body{background:var(--color-dark-grey-100)}.file-editor .monaco-menu-container .monaco-scrollable-element{border-radius:.2rem !important}.file-editor .monaco-menu-container .monaco-menu{background:var(--color-dark-grey-100);color:var(--color-light-grey-400);border-radius:.2rem}.file-editor .monaco-menu-container .monaco-menu .monaco-action-bar.vertical{padding:.5rem 0}.file-editor .monaco-menu-container .monaco-menu .monaco-action-bar.vertical .action-label.separator{border-bottom:1px solid var(--color-dark-grey-250) !important;border-bottom-color:var(--color-dark-grey-250) !important}.file-editor .monaco-menu-container .monaco-menu .action-item.focused:hover>a,.file-editor .monaco-menu-container .monaco-menu .action-item.focused>a{background:var(--color-light-blue-450) !important}.file-editor__status-bar{display:flex;align-items:center;height:100%}.file-editor__status-bar__cursor-info{width:initial;font-size:1.2rem;color:var(--color-light-grey-0);cursor:pointer;user-select:none;padding:0 1rem}.diagram-editor{height:100%;width:100%;display:flex;flex-direction:column;overflow:hidden}.diagram-editor__header{display:flex;align-items:center;justify-content:flex-end;height:2.8rem;background:var(--color-dark-grey-200);border:.1rem solid var(--color-dark-grey-85)}.diagram-editor__header__actions{display:flex;align-items:center;height:100%}.diagram-editor__header__action{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:2.8rem;width:2.8rem}.diagram-editor__header__action svg{color:var(--color-dark-grey-400)}.diagram-editor__header__action:hover svg{color:var(--color-light-grey-300)}.diagram-editor__header__action[disabled] svg,.diagram-editor__header__action[disabled]:hover svg{color:var(--color-dark-grey-300)}.diagram-editor__header__group{display:flex;align-items:center;height:100%;padding:0 .5rem}.diagram-editor__header__group__separator{height:1.6rem;border:.05rem solid var(--color-dark-shade-100)}.diagram-editor__header__group__action{width:2rem}.diagram-editor__header__dropdown{display:flex;align-items:center;margin-left:.3rem;height:1.8rem;border:.1rem solid var(--color-dark-grey-300)}.diagram-editor__header__dropdown__label{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;color:var(--color-dark-grey-500);font-weight:500;font-size:1.2rem}.diagram-editor__header__dropdown__trigger{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:100%;cursor:pointer}.diagram-editor__header__dropdown__trigger svg{color:var(--color-dark-grey-500)}.diagram-editor__header__zoomer__dropdown__label{width:5rem}.diagram-editor__header__zoomer__dropdown__trigger{width:2rem}.diagram-editor__header__zoomer__dropdown__menu__item{display:flex;align-items:center;justify-content:center;width:7rem}.diagram-editor__content{height:calc(100% - 2.8rem);width:100%;display:flex;position:relative;overflow:hidden}.diagram-editor__stage{height:100%;width:100%;display:flex;position:relative}.diagram-editor__tools{display:flex;align-items:center;flex-direction:column;width:4.4rem;height:100%;background:var(--color-dark-grey-200);padding:.5rem;border-left:.1rem solid var(--color-dark-grey-85)}.diagram-editor__tools__divider{flex-grow:0;flex-shrink:0;width:100%;border-radius:.1rem;height:.2rem;background:var(--color-dark-grey-300);margin:.5rem 0}.diagram-editor__tool{display:flex;align-items:center;justify-content:center;flex-grow:0;flex-shrink:0;height:3.4rem;width:3.4rem;border-radius:.2rem}.diagram-editor__tool--active{border-radius:.2rem;background:var(--color-dark-grey-100);border:.1rem solid var(--color-blue-200)}.diagram-editor__tool:hover svg{color:var(--color-light-grey-100)}.diagram-editor__tool:hover[disabled] svg,.diagram-editor__tool[disabled] svg{color:var(--color-dark-grey-400)}.diagram-editor__tool svg{color:var(--color-light-grey-300)}.diagram-editor__icon--layout,.diagram-editor__icon--pan,.diagram-editor__icon--add-class,.diagram-editor__icon--sidebar,.diagram-editor__icon--zoom-in,.diagram-editor__icon--zoom-out{font-size:1.8rem}.diagram-editor__icon--aligner{font-size:1.4rem}.diagram-editor__canvas{width:calc(100% - 4.4rem)}.diagram-editor__cursor--crosshair{cursor:crosshair}.diagram-editor__cursor--pointer{cursor:pointer}.diagram-editor__cursor--resize{cursor:nwse-resize}.diagram-editor__cursor--zoom-in{cursor:zoom-in}.diagram-editor__cursor--zoom-out{cursor:zoom-out}.diagram-editor__cursor--grab{cursor:grab}.diagram-editor__cursor--grabbing{cursor:grabbing}.diagram-editor__cursor--not-allowed{cursor:not-allowed}.ide{height:100%;display:flex;flex-direction:column}.ide__body{display:flex;height:calc(100% - 2.2rem)}.ide__content-container{display:flex;justify-content:center;background:var(--color-dark-grey-80);flex:1 0 auto;width:calc(100% - 5rem)}.ide__content{position:relative;width:100%}:root{--color-pure-association: var(--color-magenta-100);--color-native-function: var(--color-lime-75);--color-diagram: var(--color-magenta-100);--color-file: var(--color-blue-150)}.color--native-function{color:var(--color-native-function)}.color--pure-association{color:var(--color-pure-association)}.color--diagram{color:var(--color-diagram)}.icon--database svg{color:var(--color-yellow-100);font-size:1.2rem}/*# sourceMappingURL=index.css.map */
|