@finos/legend-application-pure-ide 6.2.42 → 6.2.43
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/components/editor/aux-panel/TerminalPanel.d.ts.map +1 -1
- package/lib/components/editor/aux-panel/TerminalPanel.js +9 -6
- package/lib/components/editor/aux-panel/TerminalPanel.js.map +1 -1
- package/lib/components/editor/aux-panel/TextSearchPanel.d.ts.map +1 -1
- package/lib/components/editor/aux-panel/TextSearchPanel.js +12 -2
- package/lib/components/editor/aux-panel/TextSearchPanel.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 +6 -6
- package/lib/stores/EditorStore.d.ts.map +1 -1
- package/lib/stores/EditorStore.js +3 -8
- package/lib/stores/EditorStore.js.map +1 -1
- package/lib/stores/FileEditorState.d.ts.map +1 -1
- package/lib/stores/FileEditorState.js +22 -0
- package/lib/stores/FileEditorState.js.map +1 -1
- package/lib/stores/LegendPureIDECommand.d.ts +2 -1
- package/lib/stores/LegendPureIDECommand.d.ts.map +1 -1
- package/lib/stores/LegendPureIDECommand.js +10 -5
- package/lib/stores/LegendPureIDECommand.js.map +1 -1
- package/lib/stores/TextSearchState.d.ts +3 -0
- package/lib/stores/TextSearchState.d.ts.map +1 -1
- package/lib/stores/TextSearchState.js +7 -0
- package/lib/stores/TextSearchState.js.map +1 -1
- package/package.json +12 -12
- package/src/components/editor/aux-panel/TerminalPanel.tsx +32 -5
- package/src/components/editor/aux-panel/TextSearchPanel.tsx +13 -2
- package/src/stores/EditorStore.ts +3 -9
- package/src/stores/FileEditorState.ts +27 -0
- package/src/stores/LegendPureIDECommand.ts +10 -5
- package/src/stores/TextSearchState.ts +10 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TerminalPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TerminalPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;;
|
|
1
|
+
{"version":3,"file":"TerminalPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TerminalPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;;AA0BH,eAAO,MAAM,OAAO;;CAmPlB,CAAC"}
|
|
@@ -15,7 +15,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
15
15
|
* limitations under the License.
|
|
16
16
|
*/
|
|
17
17
|
import { useApplicationStore } from '@finos/legend-application';
|
|
18
|
-
import { ArrowDownIcon, ArrowUpIcon, BlankPanelContent, CaseSensitiveIcon, CloseIcon, clsx, HistoryIcon, QuestionCircleIcon, RegexIcon, TrashIcon, useResizeDetector, WholeWordMatchIcon, } from '@finos/legend-art';
|
|
18
|
+
import { ArrowDownIcon, ArrowUpIcon, BlankPanelContent, CaseSensitiveIcon, CloseIcon, clsx, ContextMenu, CopyIcon, HistoryIcon, MenuContent, MenuContentItem, QuestionCircleIcon, RegexIcon, TrashIcon, useResizeDetector, WholeWordMatchIcon, } from '@finos/legend-art';
|
|
19
19
|
import { observer } from 'mobx-react-lite';
|
|
20
20
|
import { useEffect, useRef } from 'react';
|
|
21
21
|
import { AUX_PANEL_MODE } from '../../../stores/EditorConfig.js';
|
|
@@ -76,6 +76,12 @@ export const Console = observer(() => {
|
|
|
76
76
|
terminal.focus();
|
|
77
77
|
}
|
|
78
78
|
};
|
|
79
|
+
const clear = () => {
|
|
80
|
+
terminal.clear();
|
|
81
|
+
terminal.focus();
|
|
82
|
+
};
|
|
83
|
+
const copy = () => terminal.copy();
|
|
84
|
+
const copyAll = () => terminal.copyAll();
|
|
79
85
|
if (!terminal.isSetup) {
|
|
80
86
|
return (_jsx("div", { className: "terminal-panel", children: _jsx(BlankPanelContent, { children: "Terminal is not set up yet" }) }));
|
|
81
87
|
}
|
|
@@ -91,12 +97,9 @@ export const Console = observer(() => {
|
|
|
91
97
|
: 0} of ${terminal.searchConfig.resultCount}`
|
|
92
98
|
: 'No results' }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Previous Match (Shift+Enter)", disabled: !terminal.searchConfig.resultCount, tabIndex: -1, onClick: goToPreviousSearchMatch, children: _jsx(ArrowUpIcon, { className: "terminal-panel__header__action__icon" }) }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Next Match (Enter)", disabled: !terminal.searchConfig.resultCount, tabIndex: -1, onClick: goToNextSearchMatch, children: _jsx(ArrowDownIcon, { className: "terminal-panel__header__action__icon" }) })] }), _jsx("div", { className: "terminal-panel__header__group__separator" }), _jsxs("div", { className: "terminal-panel__header__group", children: [_jsx("button", { className: clsx('terminal-panel__header__action terminal-panel__header__group__action', {
|
|
93
99
|
'terminal-panel__header__action--active': terminal.preserveLog,
|
|
94
|
-
}), title: "Toggle Preserve Console", tabIndex: -1, onClick: () => terminal.setPreserveLog(!terminal.preserveLog), children: _jsx(HistoryIcon, { className: "terminal-panel__header__action__icon" }) }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Clear Console", tabIndex: -1, onClick: () => {
|
|
95
|
-
terminal.clear();
|
|
96
|
-
terminal.focus();
|
|
97
|
-
}, children: _jsx(TrashIcon, { className: "terminal-panel__header__action__icon" }) }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Show Help", tabIndex: -1, onClick: () => {
|
|
100
|
+
}), title: "Toggle Preserve Console", tabIndex: -1, onClick: () => terminal.setPreserveLog(!terminal.preserveLog), children: _jsx(HistoryIcon, { className: "terminal-panel__header__action__icon" }) }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Copy Text Content", tabIndex: -1, onClick: copyAll, children: _jsx(CopyIcon, { className: "terminal-panel__header__action__icon" }) }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Clear Console", tabIndex: -1, onClick: clear, children: _jsx(TrashIcon, { className: "terminal-panel__header__action__icon" }) }), _jsx("button", { className: "terminal-panel__header__action terminal-panel__header__group__action", title: "Show Help", tabIndex: -1, onClick: () => {
|
|
98
101
|
terminal.showHelp();
|
|
99
102
|
terminal.focus();
|
|
100
|
-
}, children: _jsx(QuestionCircleIcon, { className: "terminal-panel__header__action__icon" }) })] })] }), _jsx("div", { ref: ref, className: "terminal-
|
|
103
|
+
}, children: _jsx(QuestionCircleIcon, { className: "terminal-panel__header__action__icon" }) })] })] }), _jsx(ContextMenu, { className: "terminal-panel__content", content: _jsxs(MenuContent, { children: [_jsx(MenuContentItem, { onClick: copy, children: "Copy" }), _jsx(MenuContentItem, { onClick: copyAll, children: "Copy All" }), _jsx(MenuContentItem, { onClick: clear, children: "Clear" })] }), menuProps: { elevation: 7 }, children: _jsx("div", { ref: ref, className: "terminal-panel__container" }) })] }));
|
|
101
104
|
});
|
|
102
105
|
//# sourceMappingURL=TerminalPanel.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TerminalPanel.js","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TerminalPanel.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"TerminalPanel.js","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TerminalPanel.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextSearchPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TextSearchPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;;AAoPH,eAAO,MAAM,eAAe;;
|
|
1
|
+
{"version":3,"file":"TextSearchPanel.d.ts","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TextSearchPanel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;;AAoPH,eAAO,MAAM,eAAe;;CAuG1B,CAAC"}
|
|
@@ -90,12 +90,22 @@ export const TextSearchPanel = observer(() => {
|
|
|
90
90
|
searchInputRef.current?.select();
|
|
91
91
|
}
|
|
92
92
|
};
|
|
93
|
+
useEffect(() => {
|
|
94
|
+
if (searchInputRef.current) {
|
|
95
|
+
searchState.setSearchInput(searchInputRef.current);
|
|
96
|
+
}
|
|
97
|
+
return () => searchState.setSearchInput(undefined);
|
|
98
|
+
}, [searchState]);
|
|
93
99
|
useEffect(() => {
|
|
94
100
|
if (editorStore.auxPanelDisplayState.isOpen &&
|
|
95
101
|
editorStore.activeAuxPanelMode === AUX_PANEL_MODE.SEARCH) {
|
|
96
|
-
|
|
102
|
+
searchState.focus();
|
|
97
103
|
}
|
|
98
|
-
}, [
|
|
104
|
+
}, [
|
|
105
|
+
searchState,
|
|
106
|
+
editorStore.auxPanelDisplayState.isOpen,
|
|
107
|
+
editorStore.activeAuxPanelMode,
|
|
108
|
+
]);
|
|
99
109
|
return (_jsxs("div", { className: "text-search-panel", children: [_jsx(PanelLoadingIndicator, { isLoading: editorStore.textSearchState.loadState.isInProgress }), _jsx("div", { className: "text-search-panel__header", children: _jsxs("div", { className: "text-search-panel__searcher__input__container", children: [_jsx("input", { ref: searchInputRef, autoFocus: true, className: "text-search-panel__searcher__input input--dark", onChange: onSearchTextChange, onKeyDown: onSearch, value: searchState.text, placeholder: "Search" }), _jsxs("div", { className: "text-search-panel__searcher__input__actions", children: [_jsx("button", { className: clsx('text-search-panel__searcher__input__action', {
|
|
100
110
|
'text-search-panel__searcher__input__action--active': searchState.isCaseSensitive,
|
|
101
111
|
}), tabIndex: -1, title: "Match Case", onClick: toggleCaseSensitive, children: _jsx(CaseSensitiveIcon, {}) }), _jsx("button", { className: clsx('text-search-panel__searcher__input__action', {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextSearchPanel.js","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TextSearchPanel.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"TextSearchPanel.js","sourceRoot":"","sources":["../../../../src/components/editor/aux-panel/TextSearchPanel.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 v6.2.
|
|
1
|
+
/** @license @finos/legend-application-pure-ide v6.2.43
|
|
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}.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;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}.auxiliary-panel{width:100%;position:absolute;top:0;left:0;z-index:1;border-top:.1rem solid var(--color-dark-grey-250)}.auxiliary-panel .panel__header{padding:0 0 0 1rem;height:3.4rem;background:var(--color-dark-grey-50)}.auxiliary-panel .panel__content{height:calc(100% - 3.4rem);background:var(--color-dark-grey-50)}.auxiliary-panel__header__tabs{display:flex;height:3.4rem;color:var(--color-dark-grey-400)}.auxiliary-panel__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)}.auxiliary-panel__header__tab--active{color:var(--color-light-grey-200);border-bottom:.2rem solid var(--color-yellow-300)}.auxiliary-panel__header__tab__icon{display:flex;align-items:center}.auxiliary-panel__header__tab__icon svg{font-size:1.1rem;margin-right:.5rem}.auxiliary-panel__header__tab__title{font-size:1.2rem;font-weight:500;user-select:none}.auxiliary-panel__content__tab{height:100%;color:var(--color-light-grey-400)}.auxiliary-panel__header__actions{display:flex}.auxiliary-panel__header__action{display:flex;align-items:center;justify-content:center;height:3.6rem;width:3.6rem;cursor:pointer}.auxiliary-panel__header__action svg{color:var(--color-light-grey-400);font-size:1.8rem}.auxiliary-panel__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)}.auxiliary-panel__splash-screen__content--hidden,.auxiliary-panel__splash-screen__logo--hidden{display:none}.auxiliary-panel__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.auxiliary-panel__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)}.auxiliary-panel__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.auxiliary-panel__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.auxiliary-panel__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.edit-panel__header{background:var(--color-dark-grey-100);z-index:1;height:3.4rem;min-height:3.4rem;padding:0}.edit-panel__header__action svg{color:var(--color-light-grey-400)}.edit-panel__content{overflow-y:hidden;position:relative;background:var(--color-dark-grey-50);height:calc(100% - 3.4rem)}.edit-panel__header__tabs{display:flex;height:100%;flex:1;overflow:hidden}.edit-panel__header__tab{display:flex;align-items:center}.edit-panel__header__tab__icon--file{color:var(--color-file)}.edit-panel__header__tab__icon--readonly{margin-left:.5rem;font-size:1rem;color:var(--color-dark-grey-350)}.edit-panel__header__tab__label{margin-left:.5rem}.edit-panel__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}.edit-panel__header__actions{display:flex;height:100%}.edit-panel__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)}.edit-panel__splash-screen__logo svg{height:19rem;fill:var(--color-dark-grey-85)}.edit-panel__splash-screen__content--hidden,.edit-panel__splash-screen__logo--hidden{display:none}.edit-panel__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.edit-panel__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)}.edit-panel__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.edit-panel__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.edit-panel__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.edit-panel .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}.editor{height:100%;display:flex;flex-direction:column}.editor__body{display:flex;height:calc(100% - 2.2rem)}.editor__content-container{display:flex;justify-content:center;background:var(--color-dark-grey-80);flex:1 0 auto;width:calc(100% - 5rem)}.editor__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}.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}.auxiliary-panel{width:100%;position:absolute;top:0;left:0;z-index:1;border-top:.1rem solid var(--color-dark-grey-250)}.auxiliary-panel .panel__header{padding:0 0 0 1rem;height:3.4rem;background:var(--color-dark-grey-50)}.auxiliary-panel .panel__content{height:calc(100% - 3.4rem);background:var(--color-dark-grey-50)}.auxiliary-panel__header__tabs{display:flex;height:3.4rem;color:var(--color-dark-grey-400)}.auxiliary-panel__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)}.auxiliary-panel__header__tab--active{color:var(--color-light-grey-200);border-bottom:.2rem solid var(--color-yellow-300)}.auxiliary-panel__header__tab__icon{display:flex;align-items:center}.auxiliary-panel__header__tab__icon svg{font-size:1.1rem;margin-right:.5rem}.auxiliary-panel__header__tab__title{font-size:1.2rem;font-weight:500;user-select:none}.auxiliary-panel__content__tab{height:100%;color:var(--color-light-grey-400)}.auxiliary-panel__header__actions{display:flex}.auxiliary-panel__header__action{display:flex;align-items:center;justify-content:center;height:3.6rem;width:3.6rem;cursor:pointer}.auxiliary-panel__header__action svg{color:var(--color-light-grey-400);font-size:1.8rem}.auxiliary-panel__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)}.auxiliary-panel__splash-screen__content--hidden,.auxiliary-panel__splash-screen__logo--hidden{display:none}.auxiliary-panel__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.auxiliary-panel__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)}.auxiliary-panel__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.auxiliary-panel__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.auxiliary-panel__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.edit-panel__header{background:var(--color-dark-grey-100);z-index:1;height:3.4rem;min-height:3.4rem;padding:0}.edit-panel__header__action svg{color:var(--color-light-grey-400)}.edit-panel__content{overflow-y:hidden;position:relative;background:var(--color-dark-grey-50);height:calc(100% - 3.4rem)}.edit-panel__header__tabs{display:flex;height:100%;flex:1;overflow:hidden}.edit-panel__header__tab{display:flex;align-items:center}.edit-panel__header__tab__icon--file{color:var(--color-file)}.edit-panel__header__tab__icon--readonly{margin-left:.5rem;font-size:1rem;color:var(--color-dark-grey-350)}.edit-panel__header__tab__label{margin-left:.5rem}.edit-panel__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}.edit-panel__header__actions{display:flex;height:100%}.edit-panel__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)}.edit-panel__splash-screen__logo svg{height:19rem;fill:var(--color-dark-grey-85)}.edit-panel__splash-screen__content--hidden,.edit-panel__splash-screen__logo--hidden{display:none}.edit-panel__splash-screen__content__item{display:flex;align-items:center;height:3.4rem}.edit-panel__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)}.edit-panel__splash-screen__content__item__hot-keys{display:flex;align-items:center;height:2.8rem}.edit-panel__splash-screen .hotkey__key{color:var(--color-light-grey-400);background:var(--color-dark-grey-200)}.edit-panel__splash-screen .hotkey__plus svg{color:var(--color-light-grey-400)}.edit-panel .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}.editor{height:100%;display:flex;flex-direction:column}.editor__body{display:flex;height:calc(100% - 2.2rem)}.editor__content-container{display:flex;justify-content:center;background:var(--color-dark-grey-80);flex:1 0 auto;width:calc(100% - 5rem)}.editor__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 */
|
package/lib/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../style/extensions.scss","../style/components/editor/_activity-bar.scss","../../../node_modules/@finos/legend-art/scss/_mixins.scss","../style/components/editor/_status-bar.scss","../style/components/editor/side-bar/_explorer.scss","../style/components/editor/_side-bar.scss","../style/components/editor/_command.scss","../style/components/editor/aux-panel/_terminal-panel.scss","../style/components/editor/aux-panel/_references-panel.scss","../style/components/editor/aux-panel/_text-search-panel.scss","../style/components/editor/aux-panel/_suggestions-panel.scss","../style/components/editor/aux-panel/_test-runner-panel.scss","../style/components/editor/_auxiliary-panel.scss","../style/components/editor/_edit-panel.scss","../style/components/editor/_file-editor.scss","../style/components/editor/_diagram-editor.scss","../style/components/_editor.scss","../style/index.scss"],"names":[],"mappings":"AAgBQ,2DCER,cACE,WACA,sCACA,YACA,kBACA,kBAEA,oBCDA,aACA,mBACA,uBDEE,cACA,qDAGF,qBACE,4BACA,gBACA,kBAGF,oBCdA,aACA,mBACA,uBDeE,YACA,WACA,iCACA,eAGF,wBACE,eAGF,0BACE,gCACA,eAGF,4BACE,gCAGF,yCACE,kBAGF,qCACE,kBACA,iBACA,cAGF,oCC9CA,aACA,mBACA,uBD+CE,iCACA,iCACA,eACA,cACA,gBACA,mBACA,gBACA,gBAGF,6CACE,gBAEA,iDACE,iBAIJ,kDCnEA,aACA,mBACA,uBDoEE,iCACA,iCACA,eACA,cACA,gBACA,mBACA,gBACA,gBAGF,2DACE,gBAEA,+DACE,4BAIJ,0CACE,kBACA,eACA,YACA,kBAGF,6DACE,iCACA,eACA,cAEA,4EACE,iCAIJ,qDACE,mCACA,eACA,cAGF,wEAEE,iBAGF,4CACE,iBACA,oCAIA,qCACE,sCACA,6CACA,gBACA,gBAGF,2CC3HF,aACA,mBD6HI,WACA,eACA,kCACA,cACA,eAGF,iDC3IF,aACA,mBACA,uBD4II,WACA,eAEA,qDACE,eAIJ,qDACE,iCAGF,iEACE,uCAKN,MChKE,aACA,mBACA,uBDiKA,UACE,gCACA,eE3KJ,oBDYE,aACA,mBAiBA,aACA,8BC3BA,cACA,iCACA,gCACA,uBAEA,yCACE,iCAGF,qDAEE,YDHF,aACA,mBCMA,+BDPA,aACA,mBCSE,eACA,YAGF,uCDpBA,aACA,mBACA,uBCqBE,cACA,eACA,eACA,uCACA,gCACA,oBACA,gBACA,eACA,gBAGF,qCD5BA,aACA,mBC+BA,kFAEE,gBACA,eAGF,sFAEE,qBACA,gCAGF,4BDlDA,aACA,mBACA,uBCmDE,eACA,gBACA,YACA,WAGF,kCACE,uCAGF,8EAEE,kCAGF,8FAEE,gCAGF,0BACE,aACA,YAGF,kCD9EA,aACA,mBACA,uBC+EE,eAGF,+BDpFA,aACA,mBACA,uBCqFE,gBACA,gCACA,eACA,gBAEA,6CACE,gCAGF,yCACE,kCAGF,mCACE,iBAIJ,kCDzGA,aACA,mBACA,uBC0GE,gBACA,gCACA,eACA,gBAEA,4CACE,kCAGF,gDACE,uCACA,6BAIJ,2CD3HA,aACA,mBACA,uBC4HE,gBACA,gCACA,eACA,gBAEA,qDACE,kCAGF,yDACE,uCACA,6BAIJ,iCD7IA,aACA,mBACA,uBC8IE,gBACA,gCACA,eACA,gBAEA,2CACE,kCAGF,+CACE,0CACA,6BAKN,sBACE,KACE,+BAGF,GACE,+BAIJ,yBACE,KACE,wBAGF,GACE,yBCtLJ,UACE,WAGE,iCACE,YACA,kCAGF,0FAEE,4CAGF,gCACE,0BAIJ,kBFWA,aACA,8BETE,eACA,sCACA,kCACA,kBAGF,8BACE,YACA,sCAGF,uCFXA,mBACA,uBACA,gBACA,sBACA,gBEUE,YACA,iBACA,eACA,iBACA,iBACA,iBAGF,mBACE,YACA,kBACA,kCACA,gBAGF,8BACE,aACA,WACA,sCACA,eAGF,mCF9CA,aACA,mBEgDE,sBAEA,6CACE,gBACA,gCAGF,yCACE,gBACA,gBAIJ,wBACE,kBAGF,yCACE,mBAGF,+CACE,4CAGF,4GAEE,uCAGF,qEACE,4CAGF,oCACE,WACA,eAGF,sFAEE,WFrFF,aACA,uBEyFE,yEACE,+CAIJ,gDACE,eAGF,4DACE,iBACA,gCACA,4BAGF,mGAGE,6CAGF,qCACE,cACA,iBAEA,0CACE,sCACA,kBACA,oBACA,eACA,oBACA,YACA,iBACA,gBACA,sBAIJ,yCACE,WACA,mBAGF,0BACE,aAEA,gCACE,mBACA,mBAGF,+BFxJF,aACA,mBACA,uBEyJI,WACA,cACA,eACA,iCACA,iCACA,eAIJ,4BACE,iBAIA,sBACE,wBAGF,wBACE,6BAGF,0BACE,kCCtLN,UACE,YAEA,kBACE,cACA,kBACA,sCACA,kCACA,UAGF,kCACE,iBACA,yBACA,gBAGF,4CHbA,aACA,mBACA,uBGcE,iBACA,iCACA,mCACA,YACA,mBACA,oBACA,gBACA,gBACA,eAGF,gDACE,eACA,mBAGF,2BACE,oBAGF,0BACE,kCAGF,wCACE,4CAGF,mBACE,sCACA,kCACA,2BACA,kBAGF,gBACE,YACA,aAGF,wBACE,cAKE,gCACE,eACA,sCACA,kCACA,kBAGF,wCACE,YACA,kCAGF,wGAEE,4CAGF,uCACE,0BAGF,iCACE,YACA,gBACA,sCAIJ,8BHpFF,aACA,mBGsFI,kBAGF,wCHhGF,aACA,mBACA,uBGiGI,kBACA,sCACA,oBACA,oBACA,cACA,eACA,gBACA,eAGF,uBHrFF,aACA,8BAnBA,aACA,mBG0GI,cACA,uBACA,eAEA,WACA,gBAEA,6BACE,4CAGF,wEAEE,uCAKN,gDACE,sCACA,8CAEA,sDACE,yCACA,aAIJ,mDACE,sCACA,8CAEA,yDACE,yCACA,aCzJN,eACE,YACA,cAEA,0BACE,6BAGF,gCACE,8BAGF,6BACE,cACA,iBAGF,qCACE,UAIJ,wBACE,aACA,iBAEA,8BACE,aACA,WACA,cAGF,8BACE,aACA,cACA,eAGF,qCJhCA,aACA,mBACA,uBIiCE,cACA,aACA,uCACA,+CACA,kBACA,iCAGF,wCJ3CA,aACA,mBACA,uBI4CE,cACA,uCACA,+CACA,aACA,kBACA,iCAGF,iCACE,WAGF,gCJ1DA,aACA,mBACA,uBI2DE,cACA,uCACA,+CACA,gBACA,eAGF,+BACE,cAGF,oCJxEA,aACA,mBACA,uBIyEE,kBACA,oBACA,sCACA,kCAEA,wCACE,iBAGF,0CACE,gCAGF,0CACE,0CACA,qBACA,gCAGF,6CACE,iCACA,iCAIJ,oCJpGA,aACA,mBACA,uBIqGE,YACA,kBC9GJ,gBACE,YACA,WACA,aACA,sBAEA,wBLMA,aACA,mBKJE,yBACA,cACA,oDAGF,gCLRA,aACA,mBACA,uBA2BA,YACA,cKlBE,cACA,aAEA,oCACE,iCAKA,sFACE,kCAMF,kGACE,iCAIJ,sCACE,iBAIJ,+BLhCA,aACA,mBKkCE,YACA,gBAEA,0CACE,cACA,+CAGF,uCACE,WAKF,oDACE,YACA,YACA,kBACA,aAGF,yCACE,YACA,WACA,iBACA,mBACA,oBAGF,kDLhEF,aACA,mBKkEI,kBACA,QACA,MAGF,iDL9EF,aACA,mBACA,uBA2BA,YACA,cKoDI,YACA,WAEA,qDACE,iCAGF,wHAEE,kCAIJ,0CLzFF,aACA,mBK2FI,eACA,gBACA,iBAIJ,yBACE,2BACA,WACA,aACA,gBACA,kBAGF,uBACE,YACA,WACA,6BAGA,2CACE,aAGF,iDACE,uCAIA,uDACE,gCAIJ,iDACE,yBACA,+CC5IN,kBACE,YACA,WAEA,2BACE,aACA,sBACA,YACA,WAGF,mCNCA,aACA,mBAiBA,aACA,8BMhBE,qCACA,cACA,oBAEA,0CACE,gBACA,aACA,iBACA,iBAGF,4CNdF,aACA,mBMgBI,WAGF,2CN1BF,aACA,mBACA,uBM2BI,WACA,cACA,iCAEA,iDACE,kCAKN,oCACE,mBACA,2BACA,gBAIA,iCNxCF,aACA,mBAiBA,aACA,8BMyBI,eACA,cACA,kBACA,mBAEA,uCACE,4CAGF,8FACE,aAGF,wFACE,aAIJ,wCN9DF,aACA,mBMgEI,iBACA,wBAGF,kDN3EF,aACA,mBACA,uBM6EE,+CN/EF,aACA,mBACA,uBMgFI,WACA,eACA,mBAGF,iDNvEF,mBACA,uBACA,gBACA,sBACA,gBMuEE,0CACE,aACA,YAGF,yCNhGF,aACA,mBACA,uBMiGI,yBACA,eACA,aAGF,iDACE,aAEA,qDACE,6CAIJ,uDACE,6CAGF,uDACE,cACA,eAGF,kDNzHF,aACA,mBACA,uBM0HI,cACA,iBACA,sCACA,oBACA,eACA,gBACA,cACA,mBACA,iBAIJ,wCNlIA,aACA,mBAiBA,aACA,8BMmHE,WACA,cACA,kBACA,oBACA,eACA,iBACA,kCAEA,8CACE,4CAGF,sGACE,aAGF,+CACE,iBAGF,qDACE,0BAGF,wDN9JF,aACA,mBMiKE,4DACE,iBACA,iBACA,oCACA,iCACA,mBAGF,wDACE,qBACA,mBACA,gBACA,uBACA,gBAGF,8DACE,mBACA,iBACA,oCACA,gBAGF,qEACE,gBACA,4BAGF,iDACE,aACA,YAGF,gDNzMF,aACA,mBACA,uBM0MI,yBACA,eACA,aAEA,oDACE,6CAIJ,wDACE,aAGF,8DACE,6CChON,mBACE,YACA,WAEA,2BPEA,aACA,mBACA,uBODE,WACA,cACA,cAGF,4BACE,aACA,sBACA,2BACA,WAGF,oCPPA,aACA,mBAiBA,aACA,8BORE,qCACA,cACA,oBAEA,2CACE,gBACA,aACA,iBACA,iBAGF,6CPtBF,aACA,mBOwBI,WAGF,4CPlCF,aACA,mBACA,uBOmCI,WACA,cACA,iCAEA,kDACE,kCAKN,qCACE,mBACA,2BACA,gBAIA,kCPhDF,aACA,mBAiBA,aACA,8BOiCI,eACA,cACA,kBACA,mBAEA,wCACE,4CAGF,gGACE,aAGF,0FACE,aAIJ,yCPtEF,aACA,mBOwEI,iBACA,wBAGF,mDPnFF,aACA,mBACA,uBOqFE,gDPvFF,aACA,mBACA,uBOwFI,WACA,eACA,mBAGF,kDP/EF,mBACA,uBACA,gBACA,sBACA,gBO+EE,2CACE,aACA,YAGF,0CPxGF,aACA,mBACA,uBOyGI,yBACA,eACA,aAGF,kDACE,aAEA,sDACE,6CAIJ,wDACE,6CAGF,wDACE,cACA,eAGF,mDPjIF,aACA,mBACA,uBOkII,cACA,iBACA,sCACA,oBACA,eACA,gBACA,cACA,mBACA,iBAIJ,yCP1IA,aACA,mBAiBA,aACA,8BO2HE,WACA,cACA,kBACA,oBACA,eACA,iBACA,kCAEA,+CACE,4CAGF,wGACE,aAGF,gDACE,iBAGF,sDACE,0BAGF,yDPtKF,aACA,mBOyKE,6DACE,iBACA,iBACA,oCACA,iCACA,mBAGF,yDACE,qBACA,mBACA,gBACA,uBACA,gBAGF,+DACE,mBACA,iBACA,oCACA,gBAGF,sEACE,gBACA,4BAGF,kDACE,aACA,YAGF,iDPjNF,aACA,mBACA,uBOkNI,yBACA,eACA,aAEA,qDACE,6CAIJ,yDACE,aAGF,+DACE,6CAKF,+CACE,cACA,WACA,kBACA,aAGF,oCACE,YACA,WACA,qBACA,oBAGF,6CP/OF,aACA,mBOiPI,kBACA,QACA,MAGF,4CP7PF,aACA,mBACA,uBA2BA,YACA,cOmOI,cACA,aAEA,gDACE,iBACA,iCAGF,8GAEE,kCCjRR,mBACE,YACA,WAEA,4BACE,mBACA,YACA,WACA,eAGF,oCACE,gBACA,aACA,iBACA,qCACA,mBACA,iBAGF,0BACE,cAEA,kCRXF,aACA,mBAiBA,aACA,8BQJI,qCACA,eACA,cACA,kBACA,mBACA,mBAEA,gGACE,aAGF,0FACE,aAIJ,yCR/BF,aACA,mBQiCI,iBACA,wBAGF,gDR5CF,aACA,mBACA,uBQ6CI,WACA,eACA,mBAGF,kDRpCF,mBACA,uBACA,gBACA,sBACA,gBQoCE,2CACE,aACA,YAGF,0CR7DF,aACA,mBACA,uBQ8DI,yBACA,eACA,aAGF,kDACE,aAEA,sDACE,6CAIJ,wDACE,6CAIJ,yCR5EA,aACA,mBAiBA,aACA,8BQ6DE,YACA,WACA,gBACA,mBACA,eACA,iBACA,kCAEA,+CACE,4CAGF,wGACE,aAGF,gDACE,iBAGF,sDACE,0BAGF,yDRxGF,aACA,mBQ2GE,6DACE,iBACA,iBACA,oCACA,iCACA,mBAGF,yDACE,qBACA,iBACA,gBACA,uBACA,gBAGF,+DACE,iBACA,iBACA,oCACA,gBAGF,sEACE,gBACA,4BAGF,2DRtHF,aACA,8BQwHI,0BACA,YACA,iBACA,iBAGF,gERvIF,mBACA,uBACA,gBACA,sBACA,gBQsII,UAGF,oER7IF,mBACA,uBACA,gBACA,sBACA,gBQ4II,UACA,eACA,iBACA,iBAGF,kDACE,aACA,YAGF,iDR3KF,aACA,mBACA,uBQ4KI,yBACA,eACA,aAEA,qDACE,6CAIJ,yDACE,aAGF,+DACE,6CClMN,mBACE,YACA,WAEA,4BACE,YACA,WACA,kBAGF,8CACE,kDACA,aACA,iBACA,sCACA,uCAGF,0BACE,YAEA,kCTTF,aACA,mBSWI,iBACA,kCACA,kDAGF,gDACE,sCAGF,8CACE,kCAGF,wDACE,4CAGF,wKAGE,gCAGF,mCACE,qCAGF,6CACE,sCACA,+CAMF,4FACE,gBAIJ,qCACE,aACA,mBAGF,+CACE,aACA,mBAGF,qDTpEA,aACA,mBACA,uBSqEE,kCACA,eACA,cACA,oBACA,gBACA,gBACA,kBACA,iBAEA,4DACE,sCACA,cAGF,6DACE,qCAEA,iEACE,kBACA,iBAIJ,6DACE,qCAEA,iEACE,kBACA,iBAIJ,4DACE,oCAEA,gEACE,kBACA,iBAKN,8CACE,aACA,mBAEA,kDACE,iBACA,kBAIJ,2CT3HA,aACA,mBACA,uBS4HE,iCACA,uCACA,eACA,cACA,oBACA,gBACA,gBACA,kBACA,iBAGF,iCACE,WACA,wBAEA,yCACE,0CAGF,yCACE,4CAGF,uCACE,iDAGF,8CACE,+CAGF,8CACE,gDAGF,4CACE,iDAMF,iGACE,gBAIJ,4CACE,kBACA,qBACA,kBAIA,+DACE,gCAGF,8DACE,+BAGF,+DACE,gCAGF,gEACE,gCACA,4BAIJ,2BACE,YACA,WAEA,oDACE,iBAGF,6CACE,2CAGF,6CACE,0CAKF,wEAEE,iBAKN,+BTzNE,aACA,mBS2NA,qCT5NA,aACA,mBS8NE,iCACA,sCACA,iBACA,oBACA,eACA,gBACA,cACA,gBAGF,qCTzOA,aACA,mBS2OE,cClPJ,iBACE,WACA,kBACA,MACA,OACA,UACA,kDAGE,gCACE,mBACA,cACA,qCAGF,iCACE,2BACA,qCAIJ,+BACE,aACA,cACA,iCAGF,8BVrBA,aACA,mBUuBE,eACA,cACA,iBACA,eACA,gBACA,gBACA,oDACA,iCAGF,sCACE,kCACA,kDAGF,oCVvCA,aACA,mBUyCE,wCACE,iBACA,mBAIJ,qCACE,iBACA,gBACA,iBAGF,+BACE,YACA,kCAGF,kCACE,aAGF,iCVrEA,aACA,mBACA,uBUsEE,cACA,aACA,eAGF,qCACE,kCACA,iBAGF,gCVlFA,aACA,mBACA,uBUmFE,YACA,WACA,sBACA,iBACA,qCAEA,+FAEE,aAGF,+CV1FF,aACA,mBU4FI,cAGF,sDVhGF,aACA,mBUkGI,cACA,gBACA,YACA,yBACA,oBACA,kCAGF,yDV3GF,aACA,mBU6GI,cAIA,6CACE,kCACA,sCAGF,kDACE,kCCnIN,oBACE,sCACA,UACA,cACA,kBACA,UAIA,gCACE,kCAIJ,qBACE,kBACA,kBACA,qCACA,2BAGF,0BACE,aACA,YAEA,OACA,gBAGF,yBXlBA,aACA,mBWqBI,qCACE,wBAGF,yCACE,kBACA,eACA,iCAIJ,gCACE,kBAGF,+BXrCF,aACA,mBWuCI,iCACA,kBACA,oBACA,eACA,gBACA,cACA,gBACA,oCAIJ,6BACE,aACA,YAGF,2BX9DA,aACA,mBACA,uBW+DE,YACA,WACA,sBACA,iBACA,qCAEA,qCACE,aACA,+BAGF,qFAEE,aAGF,0CX3EF,aACA,mBW6EI,cAGF,iDXjFF,aACA,mBWmFI,cACA,gBACA,YACA,yBACA,oBACA,kCAGF,oDX5FF,aACA,mBW8FI,cAIA,wCACE,kCACA,sCAGF,6CACE,kCAKN,sCACE,kDC1HF,qBZWA,aACA,mBYTE,yBACA,cACA,sCACA,6CAGF,8BZEA,aACA,+BYGA,6BZVA,aACA,mBACA,uBA2BA,YACA,cYhBE,cACA,aAEA,iCACE,iCAKA,gFACE,kCAMF,4FACE,iCAMJ,8BACE,iBAIJ,sBACE,kBACA,2BACA,WAIA,+DACE,+BAGF,iDACE,sCACA,kCACA,oBAEA,6EACE,gBAEA,qGACE,8DACA,0DAIJ,sJAEE,kDAMR,yBZrEE,aACA,mBYuEA,YAEA,sCACE,cACA,iBACA,gCACA,eACA,iBACA,eC5FJ,gBACE,YACA,WACA,aACA,sBACA,gBAEA,wBbKA,aACA,mBaHE,yBACA,cACA,sCACA,6CAGF,iCbJA,aACA,mBaME,YAGF,gCbhBA,aACA,mBACA,uBA2BA,YACA,caVE,cACA,aAEA,oCACE,iCAIA,0CACE,kCAMF,kGACE,iCAKN,+BbnCA,aACA,mBaqCE,YACA,gBAEA,0CACE,cACA,gDAGF,uCACE,WAIJ,kCbnDA,aACA,mBaqDE,kBACA,cACA,8CAEA,yCbhEF,aACA,mBACA,uBA2BA,YACA,casCI,YACA,iCACA,gBACA,iBAGF,2Cb1EF,aACA,mBACA,uBA2BA,YACA,cagDI,YACA,eAEA,+CACE,iCAMJ,iDACE,WAGF,mDACE,WAGF,sDbhGF,aACA,mBACA,uBaiGI,WAIJ,yBACE,2BACA,WACA,aACA,kBACA,gBAGF,uBACE,YACA,WACA,aACA,kBAGF,uBbhHA,aACA,mBakHE,sBACA,aACA,YACA,sCACA,cACA,kDAEA,gCbnGF,YACA,caqGI,WACA,oBACA,aACA,sCACA,eAIJ,sBb3IA,aACA,mBACA,uBA2BA,YACA,caiHE,cACA,aACA,oBAEA,8BACE,oBACA,sCACA,yCAIA,gCACE,kCAMF,8EACE,iCAIJ,0BACE,kCAKF,wLAME,iBAGF,+BACE,iBAIJ,wBACE,0BAIA,mCACE,iBAGF,iCACE,eAGF,gCACE,mBAGF,iCACE,eAGF,kCACE,gBAGF,8BACE,YAGF,kCACE,gBAGF,qCACE,mBCzNN,QACE,YACA,aACA,sBAEA,cACE,aACA,2BAGF,2BdFA,aACA,uBcIE,qCACA,cACA,wBAGF,iBACE,kBACA,WCzBJ,MACE,mDACA,8CACA,0CACA,oCAIA,wBACE,mCAGF,yBACE,oCAGF,gBACE,2BAKF,oBACE,8BACA","file":"index.css"}
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../style/extensions.scss","../style/components/editor/_activity-bar.scss","../../../node_modules/@finos/legend-art/scss/_mixins.scss","../style/components/editor/_status-bar.scss","../style/components/editor/side-bar/_explorer.scss","../style/components/editor/_side-bar.scss","../style/components/editor/_command.scss","../style/components/editor/aux-panel/_terminal-panel.scss","../style/components/editor/aux-panel/_references-panel.scss","../style/components/editor/aux-panel/_text-search-panel.scss","../style/components/editor/aux-panel/_suggestions-panel.scss","../style/components/editor/aux-panel/_test-runner-panel.scss","../style/components/editor/_auxiliary-panel.scss","../style/components/editor/_edit-panel.scss","../style/components/editor/_file-editor.scss","../style/components/editor/_diagram-editor.scss","../style/components/_editor.scss","../style/index.scss"],"names":[],"mappings":"AAgBQ,2DCER,cACE,WACA,sCACA,YACA,kBACA,kBAEA,oBCDA,aACA,mBACA,uBDEE,cACA,qDAGF,qBACE,4BACA,gBACA,kBAGF,oBCdA,aACA,mBACA,uBDeE,YACA,WACA,iCACA,eAGF,wBACE,eAGF,0BACE,gCACA,eAGF,4BACE,gCAGF,yCACE,kBAGF,qCACE,kBACA,iBACA,cAGF,oCC9CA,aACA,mBACA,uBD+CE,iCACA,iCACA,eACA,cACA,gBACA,mBACA,gBACA,gBAGF,6CACE,gBAEA,iDACE,iBAIJ,kDCnEA,aACA,mBACA,uBDoEE,iCACA,iCACA,eACA,cACA,gBACA,mBACA,gBACA,gBAGF,2DACE,gBAEA,+DACE,4BAIJ,0CACE,kBACA,eACA,YACA,kBAGF,6DACE,iCACA,eACA,cAEA,4EACE,iCAIJ,qDACE,mCACA,eACA,cAGF,wEAEE,iBAGF,4CACE,iBACA,oCAIA,qCACE,sCACA,6CACA,gBACA,gBAGF,2CC3HF,aACA,mBD6HI,WACA,eACA,kCACA,cACA,eAGF,iDC3IF,aACA,mBACA,uBD4II,WACA,eAEA,qDACE,eAIJ,qDACE,iCAGF,iEACE,uCAKN,MChKE,aACA,mBACA,uBDiKA,UACE,gCACA,eE3KJ,oBDYE,aACA,mBAiBA,aACA,8BC3BA,cACA,iCACA,gCACA,uBAEA,yCACE,iCAGF,qDAEE,YDHF,aACA,mBCMA,+BDPA,aACA,mBCSE,eACA,YAGF,uCDpBA,aACA,mBACA,uBCqBE,cACA,eACA,eACA,uCACA,gCACA,oBACA,gBACA,eACA,gBAGF,qCD5BA,aACA,mBC+BA,kFAEE,gBACA,eAGF,sFAEE,qBACA,gCAGF,4BDlDA,aACA,mBACA,uBCmDE,eACA,gBACA,YACA,WAGF,kCACE,uCAGF,8EAEE,kCAGF,8FAEE,gCAGF,0BACE,aACA,YAGF,kCD9EA,aACA,mBACA,uBC+EE,eAGF,+BDpFA,aACA,mBACA,uBCqFE,gBACA,gCACA,eACA,gBAEA,6CACE,gCAGF,yCACE,kCAGF,mCACE,iBAIJ,kCDzGA,aACA,mBACA,uBC0GE,gBACA,gCACA,eACA,gBAEA,4CACE,kCAGF,gDACE,uCACA,6BAIJ,2CD3HA,aACA,mBACA,uBC4HE,gBACA,gCACA,eACA,gBAEA,qDACE,kCAGF,yDACE,uCACA,6BAIJ,iCD7IA,aACA,mBACA,uBC8IE,gBACA,gCACA,eACA,gBAEA,2CACE,kCAGF,+CACE,0CACA,6BAKN,sBACE,KACE,+BAGF,GACE,+BAIJ,yBACE,KACE,wBAGF,GACE,yBCtLJ,UACE,WAGE,iCACE,YACA,kCAGF,0FAEE,4CAGF,gCACE,0BAIJ,kBFWA,aACA,8BETE,eACA,sCACA,kCACA,kBAGF,8BACE,YACA,sCAGF,uCFXA,mBACA,uBACA,gBACA,sBACA,gBEUE,YACA,iBACA,eACA,iBACA,iBACA,iBAGF,mBACE,YACA,kBACA,kCACA,gBAGF,8BACE,aACA,WACA,sCACA,eAGF,mCF9CA,aACA,mBEgDE,sBAEA,6CACE,gBACA,gCAGF,yCACE,gBACA,gBAIJ,wBACE,kBAGF,yCACE,mBAGF,+CACE,4CAGF,4GAEE,uCAGF,qEACE,4CAGF,oCACE,WACA,eAGF,sFAEE,WFrFF,aACA,uBEyFE,yEACE,+CAIJ,gDACE,eAGF,4DACE,iBACA,gCACA,4BAGF,mGAGE,6CAGF,qCACE,cACA,iBAEA,0CACE,sCACA,kBACA,oBACA,eACA,oBACA,YACA,iBACA,gBACA,sBAIJ,yCACE,WACA,mBAGF,0BACE,aAEA,gCACE,mBACA,mBAGF,+BFxJF,aACA,mBACA,uBEyJI,WACA,cACA,eACA,iCACA,iCACA,eAIJ,4BACE,iBAIA,sBACE,wBAGF,wBACE,6BAGF,0BACE,kCCtLN,UACE,YAEA,kBACE,cACA,kBACA,sCACA,kCACA,UAGF,kCACE,iBACA,yBACA,gBAGF,4CHbA,aACA,mBACA,uBGcE,iBACA,iCACA,mCACA,YACA,mBACA,oBACA,gBACA,gBACA,eAGF,gDACE,eACA,mBAGF,2BACE,oBAGF,0BACE,kCAGF,wCACE,4CAGF,mBACE,sCACA,kCACA,2BACA,kBAGF,gBACE,YACA,aAGF,wBACE,cAKE,gCACE,eACA,sCACA,kCACA,kBAGF,wCACE,YACA,kCAGF,wGAEE,4CAGF,uCACE,0BAGF,iCACE,YACA,gBACA,sCAIJ,8BHpFF,aACA,mBGsFI,kBAGF,wCHhGF,aACA,mBACA,uBGiGI,kBACA,sCACA,oBACA,oBACA,cACA,eACA,gBACA,eAGF,uBHrFF,aACA,8BAnBA,aACA,mBG0GI,cACA,uBACA,eAEA,WACA,gBAEA,6BACE,4CAGF,wEAEE,uCAKN,gDACE,sCACA,8CAEA,sDACE,yCACA,aAIJ,mDACE,sCACA,8CAEA,yDACE,yCACA,aCzJN,eACE,YACA,cAEA,0BACE,6BAGF,gCACE,8BAGF,6BACE,cACA,iBAGF,qCACE,UAIJ,wBACE,aACA,iBAEA,8BACE,aACA,WACA,cAGF,8BACE,aACA,cACA,eAGF,qCJhCA,aACA,mBACA,uBIiCE,cACA,aACA,uCACA,+CACA,kBACA,iCAGF,wCJ3CA,aACA,mBACA,uBI4CE,cACA,uCACA,+CACA,aACA,kBACA,iCAGF,iCACE,WAGF,gCJ1DA,aACA,mBACA,uBI2DE,cACA,uCACA,+CACA,gBACA,eAGF,+BACE,cAGF,oCJxEA,aACA,mBACA,uBIyEE,kBACA,oBACA,sCACA,kCAEA,wCACE,iBAGF,0CACE,gCAGF,0CACE,0CACA,qBACA,gCAGF,6CACE,iCACA,iCAIJ,oCJpGA,aACA,mBACA,uBIqGE,YACA,kBC9GJ,gBACE,YACA,WACA,aACA,sBAEA,wBLMA,aACA,mBKJE,yBACA,cACA,oDAGF,gCLRA,aACA,mBACA,uBA2BA,YACA,cKlBE,cACA,aAEA,oCACE,iCAKA,sFACE,kCAMF,kGACE,iCAIJ,sCACE,iBAIJ,+BLhCA,aACA,mBKkCE,YACA,gBAEA,0CACE,cACA,+CAGF,uCACE,WAKF,oDACE,YACA,YACA,kBACA,aAGF,yCACE,YACA,WACA,iBACA,mBACA,oBAGF,kDLhEF,aACA,mBKkEI,kBACA,QACA,MAGF,iDL9EF,aACA,mBACA,uBA2BA,YACA,cKoDI,YACA,WAEA,qDACE,iCAGF,wHAEE,kCAIJ,0CLzFF,aACA,mBK2FI,eACA,gBACA,iBAIJ,yBACE,2BACA,WACA,aACA,kBAGF,2BACE,YACA,WACA,aACA,gBACA,kBAGF,uBACE,YACA,WACA,6BAGA,2CACE,aAGF,iDACE,uCAIA,uDACE,gCAIJ,iDACE,yBACA,+CCnJN,kBACE,YACA,WAEA,2BACE,aACA,sBACA,YACA,WAGF,mCNCA,aACA,mBAiBA,aACA,8BMhBE,qCACA,cACA,oBAEA,0CACE,gBACA,aACA,iBACA,iBAGF,4CNdF,aACA,mBMgBI,WAGF,2CN1BF,aACA,mBACA,uBM2BI,WACA,cACA,iCAEA,iDACE,kCAKN,oCACE,mBACA,2BACA,gBAIA,iCNxCF,aACA,mBAiBA,aACA,8BMyBI,eACA,cACA,kBACA,mBAEA,uCACE,4CAGF,8FACE,aAGF,wFACE,aAIJ,wCN9DF,aACA,mBMgEI,iBACA,wBAGF,kDN3EF,aACA,mBACA,uBM6EE,+CN/EF,aACA,mBACA,uBMgFI,WACA,eACA,mBAGF,iDNvEF,mBACA,uBACA,gBACA,sBACA,gBMuEE,0CACE,aACA,YAGF,yCNhGF,aACA,mBACA,uBMiGI,yBACA,eACA,aAGF,iDACE,aAEA,qDACE,6CAIJ,uDACE,6CAGF,uDACE,cACA,eAGF,kDNzHF,aACA,mBACA,uBM0HI,cACA,iBACA,sCACA,oBACA,eACA,gBACA,cACA,mBACA,iBAIJ,wCNlIA,aACA,mBAiBA,aACA,8BMmHE,WACA,cACA,kBACA,oBACA,eACA,iBACA,kCAEA,8CACE,4CAGF,sGACE,aAGF,+CACE,iBAGF,qDACE,0BAGF,wDN9JF,aACA,mBMiKE,4DACE,iBACA,iBACA,oCACA,iCACA,mBAGF,wDACE,qBACA,mBACA,gBACA,uBACA,gBAGF,8DACE,mBACA,iBACA,oCACA,gBAGF,qEACE,gBACA,4BAGF,iDACE,aACA,YAGF,gDNzMF,aACA,mBACA,uBM0MI,yBACA,eACA,aAEA,oDACE,6CAIJ,wDACE,aAGF,8DACE,6CChON,mBACE,YACA,WAEA,2BPEA,aACA,mBACA,uBODE,WACA,cACA,cAGF,4BACE,aACA,sBACA,2BACA,WAGF,oCPPA,aACA,mBAiBA,aACA,8BORE,qCACA,cACA,oBAEA,2CACE,gBACA,aACA,iBACA,iBAGF,6CPtBF,aACA,mBOwBI,WAGF,4CPlCF,aACA,mBACA,uBOmCI,WACA,cACA,iCAEA,kDACE,kCAKN,qCACE,mBACA,2BACA,gBAIA,kCPhDF,aACA,mBAiBA,aACA,8BOiCI,eACA,cACA,kBACA,mBAEA,wCACE,4CAGF,gGACE,aAGF,0FACE,aAIJ,yCPtEF,aACA,mBOwEI,iBACA,wBAGF,mDPnFF,aACA,mBACA,uBOqFE,gDPvFF,aACA,mBACA,uBOwFI,WACA,eACA,mBAGF,kDP/EF,mBACA,uBACA,gBACA,sBACA,gBO+EE,2CACE,aACA,YAGF,0CPxGF,aACA,mBACA,uBOyGI,yBACA,eACA,aAGF,kDACE,aAEA,sDACE,6CAIJ,wDACE,6CAGF,wDACE,cACA,eAGF,mDPjIF,aACA,mBACA,uBOkII,cACA,iBACA,sCACA,oBACA,eACA,gBACA,cACA,mBACA,iBAIJ,yCP1IA,aACA,mBAiBA,aACA,8BO2HE,WACA,cACA,kBACA,oBACA,eACA,iBACA,kCAEA,+CACE,4CAGF,wGACE,aAGF,gDACE,iBAGF,sDACE,0BAGF,yDPtKF,aACA,mBOyKE,6DACE,iBACA,iBACA,oCACA,iCACA,mBAGF,yDACE,qBACA,mBACA,gBACA,uBACA,gBAGF,+DACE,mBACA,iBACA,oCACA,gBAGF,sEACE,gBACA,4BAGF,kDACE,aACA,YAGF,iDPjNF,aACA,mBACA,uBOkNI,yBACA,eACA,aAEA,qDACE,6CAIJ,yDACE,aAGF,+DACE,6CAKF,+CACE,cACA,WACA,kBACA,aAGF,oCACE,YACA,WACA,qBACA,oBAGF,6CP/OF,aACA,mBOiPI,kBACA,QACA,MAGF,4CP7PF,aACA,mBACA,uBA2BA,YACA,cOmOI,cACA,aAEA,gDACE,iBACA,iCAGF,8GAEE,kCCjRR,mBACE,YACA,WAEA,4BACE,mBACA,YACA,WACA,eAGF,oCACE,gBACA,aACA,iBACA,qCACA,mBACA,iBAGF,0BACE,cAEA,kCRXF,aACA,mBAiBA,aACA,8BQJI,qCACA,eACA,cACA,kBACA,mBACA,mBAEA,gGACE,aAGF,0FACE,aAIJ,yCR/BF,aACA,mBQiCI,iBACA,wBAGF,gDR5CF,aACA,mBACA,uBQ6CI,WACA,eACA,mBAGF,kDRpCF,mBACA,uBACA,gBACA,sBACA,gBQoCE,2CACE,aACA,YAGF,0CR7DF,aACA,mBACA,uBQ8DI,yBACA,eACA,aAGF,kDACE,aAEA,sDACE,6CAIJ,wDACE,6CAIJ,yCR5EA,aACA,mBAiBA,aACA,8BQ6DE,YACA,WACA,gBACA,mBACA,eACA,iBACA,kCAEA,+CACE,4CAGF,wGACE,aAGF,gDACE,iBAGF,sDACE,0BAGF,yDRxGF,aACA,mBQ2GE,6DACE,iBACA,iBACA,oCACA,iCACA,mBAGF,yDACE,qBACA,iBACA,gBACA,uBACA,gBAGF,+DACE,iBACA,iBACA,oCACA,gBAGF,sEACE,gBACA,4BAGF,2DRtHF,aACA,8BQwHI,0BACA,YACA,iBACA,iBAGF,gERvIF,mBACA,uBACA,gBACA,sBACA,gBQsII,UAGF,oER7IF,mBACA,uBACA,gBACA,sBACA,gBQ4II,UACA,eACA,iBACA,iBAGF,kDACE,aACA,YAGF,iDR3KF,aACA,mBACA,uBQ4KI,yBACA,eACA,aAEA,qDACE,6CAIJ,yDACE,aAGF,+DACE,6CClMN,mBACE,YACA,WAEA,4BACE,YACA,WACA,kBAGF,8CACE,kDACA,aACA,iBACA,sCACA,uCAGF,0BACE,YAEA,kCTTF,aACA,mBSWI,iBACA,kCACA,kDAGF,gDACE,sCAGF,8CACE,kCAGF,wDACE,4CAGF,wKAGE,gCAGF,mCACE,qCAGF,6CACE,sCACA,+CAMF,4FACE,gBAIJ,qCACE,aACA,mBAGF,+CACE,aACA,mBAGF,qDTpEA,aACA,mBACA,uBSqEE,kCACA,eACA,cACA,oBACA,gBACA,gBACA,kBACA,iBAEA,4DACE,sCACA,cAGF,6DACE,qCAEA,iEACE,kBACA,iBAIJ,6DACE,qCAEA,iEACE,kBACA,iBAIJ,4DACE,oCAEA,gEACE,kBACA,iBAKN,8CACE,aACA,mBAEA,kDACE,iBACA,kBAIJ,2CT3HA,aACA,mBACA,uBS4HE,iCACA,uCACA,eACA,cACA,oBACA,gBACA,gBACA,kBACA,iBAGF,iCACE,WACA,wBAEA,yCACE,0CAGF,yCACE,4CAGF,uCACE,iDAGF,8CACE,+CAGF,8CACE,gDAGF,4CACE,iDAMF,iGACE,gBAIJ,4CACE,kBACA,qBACA,kBAIA,+DACE,gCAGF,8DACE,+BAGF,+DACE,gCAGF,gEACE,gCACA,4BAIJ,2BACE,YACA,WAEA,oDACE,iBAGF,6CACE,2CAGF,6CACE,0CAKF,wEAEE,iBAKN,+BTzNE,aACA,mBS2NA,qCT5NA,aACA,mBS8NE,iCACA,sCACA,iBACA,oBACA,eACA,gBACA,cACA,gBAGF,qCTzOA,aACA,mBS2OE,cClPJ,iBACE,WACA,kBACA,MACA,OACA,UACA,kDAGE,gCACE,mBACA,cACA,qCAGF,iCACE,2BACA,qCAIJ,+BACE,aACA,cACA,iCAGF,8BVrBA,aACA,mBUuBE,eACA,cACA,iBACA,eACA,gBACA,gBACA,oDACA,iCAGF,sCACE,kCACA,kDAGF,oCVvCA,aACA,mBUyCE,wCACE,iBACA,mBAIJ,qCACE,iBACA,gBACA,iBAGF,+BACE,YACA,kCAGF,kCACE,aAGF,iCVrEA,aACA,mBACA,uBUsEE,cACA,aACA,eAGF,qCACE,kCACA,iBAGF,gCVlFA,aACA,mBACA,uBUmFE,YACA,WACA,sBACA,iBACA,qCAEA,+FAEE,aAGF,+CV1FF,aACA,mBU4FI,cAGF,sDVhGF,aACA,mBUkGI,cACA,gBACA,YACA,yBACA,oBACA,kCAGF,yDV3GF,aACA,mBU6GI,cAIA,6CACE,kCACA,sCAGF,kDACE,kCCnIN,oBACE,sCACA,UACA,cACA,kBACA,UAIA,gCACE,kCAIJ,qBACE,kBACA,kBACA,qCACA,2BAGF,0BACE,aACA,YAEA,OACA,gBAGF,yBXlBA,aACA,mBWqBI,qCACE,wBAGF,yCACE,kBACA,eACA,iCAIJ,gCACE,kBAGF,+BXrCF,aACA,mBWuCI,iCACA,kBACA,oBACA,eACA,gBACA,cACA,gBACA,oCAIJ,6BACE,aACA,YAGF,2BX9DA,aACA,mBACA,uBW+DE,YACA,WACA,sBACA,iBACA,qCAEA,qCACE,aACA,+BAGF,qFAEE,aAGF,0CX3EF,aACA,mBW6EI,cAGF,iDXjFF,aACA,mBWmFI,cACA,gBACA,YACA,yBACA,oBACA,kCAGF,oDX5FF,aACA,mBW8FI,cAIA,wCACE,kCACA,sCAGF,6CACE,kCAKN,sCACE,kDC1HF,qBZWA,aACA,mBYTE,yBACA,cACA,sCACA,6CAGF,8BZEA,aACA,+BYGA,6BZVA,aACA,mBACA,uBA2BA,YACA,cYhBE,cACA,aAEA,iCACE,iCAKA,gFACE,kCAMF,4FACE,iCAMJ,8BACE,iBAIJ,sBACE,kBACA,2BACA,WAIA,+DACE,+BAGF,iDACE,sCACA,kCACA,oBAEA,6EACE,gBAEA,qGACE,8DACA,0DAIJ,sJAEE,kDAMR,yBZrEE,aACA,mBYuEA,YAEA,sCACE,cACA,iBACA,gCACA,eACA,iBACA,eC5FJ,gBACE,YACA,WACA,aACA,sBACA,gBAEA,wBbKA,aACA,mBaHE,yBACA,cACA,sCACA,6CAGF,iCbJA,aACA,mBaME,YAGF,gCbhBA,aACA,mBACA,uBA2BA,YACA,caVE,cACA,aAEA,oCACE,iCAIA,0CACE,kCAMF,kGACE,iCAKN,+BbnCA,aACA,mBaqCE,YACA,gBAEA,0CACE,cACA,gDAGF,uCACE,WAIJ,kCbnDA,aACA,mBaqDE,kBACA,cACA,8CAEA,yCbhEF,aACA,mBACA,uBA2BA,YACA,casCI,YACA,iCACA,gBACA,iBAGF,2Cb1EF,aACA,mBACA,uBA2BA,YACA,cagDI,YACA,eAEA,+CACE,iCAMJ,iDACE,WAGF,mDACE,WAGF,sDbhGF,aACA,mBACA,uBaiGI,WAIJ,yBACE,2BACA,WACA,aACA,kBACA,gBAGF,uBACE,YACA,WACA,aACA,kBAGF,uBbhHA,aACA,mBakHE,sBACA,aACA,YACA,sCACA,cACA,kDAEA,gCbnGF,YACA,caqGI,WACA,oBACA,aACA,sCACA,eAIJ,sBb3IA,aACA,mBACA,uBA2BA,YACA,caiHE,cACA,aACA,oBAEA,8BACE,oBACA,sCACA,yCAIA,gCACE,kCAMF,8EACE,iCAIJ,0BACE,kCAKF,wLAME,iBAGF,+BACE,iBAIJ,wBACE,0BAIA,mCACE,iBAGF,iCACE,eAGF,gCACE,mBAGF,iCACE,eAGF,kCACE,gBAGF,8BACE,YAGF,kCACE,gBAGF,qCACE,mBCzNN,QACE,YACA,aACA,sBAEA,cACE,aACA,2BAGF,2BdFA,aACA,uBcIE,qCACA,cACA,wBAGF,iBACE,kBACA,WCzBJ,MACE,mDACA,8CACA,0CACA,oCAIA,wBACE,mCAGF,yBACE,oCAGF,gBACE,2BAKF,oBACE,8BACA","file":"index.css"}
|
package/lib/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-application-pure-ide",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.43",
|
|
4
4
|
"description": "Legend Pure IDE application core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"@types/react": "18.0.28",
|
|
52
52
|
"@types/react-dom": "18.0.11",
|
|
53
53
|
"mobx": "6.8.0",
|
|
54
|
-
"mobx-react-lite": "3.4.
|
|
55
|
-
"monaco-editor": "0.36.
|
|
54
|
+
"mobx-react-lite": "3.4.2",
|
|
55
|
+
"monaco-editor": "0.36.1",
|
|
56
56
|
"react": "18.2.0",
|
|
57
57
|
"react-dnd": "16.0.1",
|
|
58
58
|
"react-dom": "18.2.0",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@finos/legend-dev-utils": "workspace:*",
|
|
63
|
-
"@jest/globals": "29.
|
|
63
|
+
"@jest/globals": "29.5.0",
|
|
64
64
|
"cross-env": "7.0.3",
|
|
65
65
|
"eslint": "8.35.0",
|
|
66
|
-
"jest": "29.
|
|
66
|
+
"jest": "29.5.0",
|
|
67
67
|
"npm-run-all": "4.1.5",
|
|
68
|
-
"rimraf": "4.1
|
|
68
|
+
"rimraf": "4.3.1",
|
|
69
69
|
"sass": "1.58.3",
|
|
70
70
|
"typescript": "4.9.5"
|
|
71
71
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditorStore.d.ts","sourceRoot":"","sources":["../../src/stores/EditorStore.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"EditorStore.d.ts","sourceRoot":"","sources":["../../src/stores/EditorStore.ts"],"names":[],"mappings":"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"}
|
|
@@ -292,14 +292,9 @@ export class EditorStore {
|
|
|
292
292
|
this.applicationStore.commandCenter.registerCommand({
|
|
293
293
|
key: LEGEND_PURE_IDE_COMMAND_KEY.SEARCH_TEXT,
|
|
294
294
|
action: () => {
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
}
|
|
299
|
-
else {
|
|
300
|
-
this.setActiveAuxPanelMode(AUX_PANEL_MODE.SEARCH);
|
|
301
|
-
this.auxPanelDisplayState.open();
|
|
302
|
-
}
|
|
295
|
+
this.setActiveAuxPanelMode(AUX_PANEL_MODE.SEARCH);
|
|
296
|
+
this.auxPanelDisplayState.open();
|
|
297
|
+
this.textSearchState.focus();
|
|
303
298
|
},
|
|
304
299
|
});
|
|
305
300
|
this.applicationStore.commandCenter.registerCommand({
|