@finos/legend-lego 1.2.72 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/code-editor/CodeDiffView.d.ts +3 -1
- package/lib/code-editor/CodeDiffView.d.ts.map +1 -1
- package/lib/code-editor/CodeDiffView.js +6 -2
- package/lib/code-editor/CodeDiffView.js.map +1 -1
- package/lib/code-editor/CodeEditor.d.ts +8 -2
- package/lib/code-editor/CodeEditor.d.ts.map +1 -1
- package/lib/code-editor/CodeEditor.js +42 -4
- package/lib/code-editor/CodeEditor.js.map +1 -1
- package/lib/code-editor/index.d.ts +0 -5
- package/lib/code-editor/index.d.ts.map +1 -1
- package/lib/code-editor/index.js +0 -5
- package/lib/code-editor/index.js.map +1 -1
- package/lib/data-grid/DataGrid.d.ts.map +1 -1
- package/lib/data-grid/DataGrid.js +1 -13
- package/lib/data-grid/DataGrid.js.map +1 -1
- package/lib/index.css +1 -1
- package/package.json +29 -29
- package/src/code-editor/CodeDiffView.tsx +10 -3
- package/src/code-editor/CodeEditor.tsx +69 -4
- package/src/code-editor/index.ts +0 -6
- package/src/data-grid/DataGrid.tsx +0 -6
- package/tsconfig.json +1 -15
- package/lib/code-editor/CodeEditorTheme.d.ts +0 -41
- package/lib/code-editor/CodeEditorTheme.d.ts.map +0 -1
- package/lib/code-editor/CodeEditorTheme.js +0 -99
- package/lib/code-editor/CodeEditorTheme.js.map +0 -1
- package/lib/code-editor/CodeEditorUtils.d.ts +0 -74
- package/lib/code-editor/CodeEditorUtils.d.ts.map +0 -1
- package/lib/code-editor/CodeEditorUtils.js +0 -203
- package/lib/code-editor/CodeEditorUtils.js.map +0 -1
- package/lib/code-editor/PureLanguage.d.ts +0 -38
- package/lib/code-editor/PureLanguage.d.ts.map +0 -1
- package/lib/code-editor/PureLanguage.js +0 -39
- package/lib/code-editor/PureLanguage.js.map +0 -1
- package/lib/code-editor/PureLanguageCodeEditorSupport.d.ts +0 -71
- package/lib/code-editor/PureLanguageCodeEditorSupport.d.ts.map +0 -1
- package/lib/code-editor/PureLanguageCodeEditorSupport.js +0 -238
- package/lib/code-editor/PureLanguageCodeEditorSupport.js.map +0 -1
- package/lib/code-editor/PureLanguageService.d.ts +0 -19
- package/lib/code-editor/PureLanguageService.d.ts.map +0 -1
- package/lib/code-editor/PureLanguageService.js +0 -373
- package/lib/code-editor/PureLanguageService.js.map +0 -1
- package/lib/code-editor/themes/Github-Theme-dark-dimmed.json +0 -613
- package/lib/code-editor/themes/Github-Theme-dark.json +0 -513
- package/lib/code-editor/themes/Github-Theme-light.json +0 -598
- package/lib/code-editor/themes/Material-Theme-Darker.json +0 -816
- package/lib/code-editor/themes/Material-Theme-Default.json +0 -816
- package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts +0 -31
- package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts.map +0 -1
- package/lib/code-editor/themes/MonacoEditorThemeUtils.js +0 -88
- package/lib/code-editor/themes/MonacoEditorThemeUtils.js.map +0 -1
- package/lib/code-editor/themes/OneDark-Pro-darker.json +0 -2061
- package/lib/code-editor/themes/OneDark-Pro.json +0 -2090
- package/lib/code-editor/themes/solarized-dark-color-theme.json +0 -398
- package/src/code-editor/CodeEditorTheme.ts +0 -151
- package/src/code-editor/CodeEditorUtils.ts +0 -336
- package/src/code-editor/PureLanguage.ts +0 -42
- package/src/code-editor/PureLanguageCodeEditorSupport.ts +0 -341
- package/src/code-editor/PureLanguageService.ts +0 -416
- package/src/code-editor/themes/Github-Theme-dark-dimmed.json +0 -613
- package/src/code-editor/themes/Github-Theme-dark.json +0 -513
- package/src/code-editor/themes/Github-Theme-light.json +0 -598
- package/src/code-editor/themes/Material-Theme-Darker.json +0 -816
- package/src/code-editor/themes/Material-Theme-Default.json +0 -816
- package/src/code-editor/themes/MonacoEditorThemeUtils.ts +0 -128
- package/src/code-editor/themes/OneDark-Pro-darker.json +0 -2061
- package/src/code-editor/themes/OneDark-Pro.json +0 -2090
- package/src/code-editor/themes/README.md +0 -8
- package/src/code-editor/themes/solarized-dark-color-theme.json +0 -423
@@ -1,31 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
3
|
-
*
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
* you may not use this file except in compliance with the License.
|
6
|
-
* You may obtain a copy of the License at
|
7
|
-
*
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
*
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
* See the License for the specific language governing permissions and
|
14
|
-
* limitations under the License.
|
15
|
-
*/
|
16
|
-
import type { editor as monacoEditorAPI } from 'monaco-editor';
|
17
|
-
type VSCodeThemeData = {
|
18
|
-
colors: Record<string, string | string[]>;
|
19
|
-
tokenColors: {
|
20
|
-
name?: string;
|
21
|
-
scope?: string[] | string;
|
22
|
-
settings?: {
|
23
|
-
foreground?: string;
|
24
|
-
background?: string;
|
25
|
-
fontStyle?: string;
|
26
|
-
};
|
27
|
-
}[];
|
28
|
-
};
|
29
|
-
export declare const buildCodeEditorTheme: (vscodeThemeData: VSCodeThemeData, baseTheme: monacoEditorAPI.BuiltinTheme, colorsOverride: Record<string, string>, rulesOverride: monacoEditorAPI.ITokenThemeRule[]) => monacoEditorAPI.IStandaloneThemeData;
|
30
|
-
export {};
|
31
|
-
//# sourceMappingURL=MonacoEditorThemeUtils.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"MonacoEditorThemeUtils.d.ts","sourceRoot":"","sources":["../../../src/code-editor/themes/MonacoEditorThemeUtils.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAOH,OAAO,KAAK,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,eAAe,CAAC;AAE/D,KAAK,eAAe,GAAG;IACrB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC,CAAC;IAC1C,WAAW,EAAE;QACX,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC;QAC1B,QAAQ,CAAC,EAAE;YACT,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,UAAU,CAAC,EAAE,MAAM,CAAC;YACpB,SAAS,CAAC,EAAE,MAAM,CAAC;SACpB,CAAC;KACH,EAAE,CAAC;CACL,CAAC;AAgFF,eAAO,MAAM,oBAAoB,oBACd,eAAe,aACrB,eAAe,CAAC,YAAY,kBACvB,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,iBACvB,eAAe,CAAC,eAAe,EAAE,KAC/C,eAAe,CAAC,oBAQlB,CAAC"}
|
@@ -1,88 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright (c) 2020-present, Goldman Sachs
|
3
|
-
*
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
* you may not use this file except in compliance with the License.
|
6
|
-
* You may obtain a copy of the License at
|
7
|
-
*
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
*
|
10
|
-
* Unless required by applicable law or agreed to in writing, software
|
11
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
* See the License for the specific language governing permissions and
|
14
|
-
* limitations under the License.
|
15
|
-
*/
|
16
|
-
import { getNonNullableEntry, isNonNullable, isString, } from '@finos/legend-shared';
|
17
|
-
const parseVSCodeTheme = (rawData) => {
|
18
|
-
const rules = [];
|
19
|
-
rawData.tokenColors.forEach((tokenColor) => {
|
20
|
-
if (!tokenColor.settings) {
|
21
|
-
return;
|
22
|
-
}
|
23
|
-
let scopes = [];
|
24
|
-
if (isString(tokenColor.scope)) {
|
25
|
-
scopes = tokenColor.scope
|
26
|
-
.replace(/^[,]+/, '')
|
27
|
-
.replace(/[,]+$/, '')
|
28
|
-
.split(',')
|
29
|
-
.map((scope) => scope.trim());
|
30
|
-
}
|
31
|
-
else if (Array.isArray(tokenColor.scope)) {
|
32
|
-
scopes = tokenColor.scope;
|
33
|
-
}
|
34
|
-
else {
|
35
|
-
scopes = [''];
|
36
|
-
}
|
37
|
-
const baseRule = {};
|
38
|
-
if (tokenColor.settings.foreground &&
|
39
|
-
isString(tokenColor.settings.foreground)) {
|
40
|
-
baseRule.foreground = tokenColor.settings.foreground;
|
41
|
-
}
|
42
|
-
if (tokenColor.settings.background &&
|
43
|
-
isString(tokenColor.settings.background)) {
|
44
|
-
baseRule.background = tokenColor.settings.background;
|
45
|
-
}
|
46
|
-
if (tokenColor.settings.fontStyle &&
|
47
|
-
isString(tokenColor.settings.fontStyle)) {
|
48
|
-
baseRule.fontStyle = tokenColor.settings.fontStyle;
|
49
|
-
}
|
50
|
-
scopes.forEach((scope) => {
|
51
|
-
if (isNonNullable(scope) || !Object.keys(baseRule).length) {
|
52
|
-
return;
|
53
|
-
}
|
54
|
-
const rule = {
|
55
|
-
...baseRule,
|
56
|
-
token: scope,
|
57
|
-
};
|
58
|
-
rules.push(rule);
|
59
|
-
});
|
60
|
-
});
|
61
|
-
const colors = {};
|
62
|
-
Object.entries(rawData.colors).forEach(([key, value]) => {
|
63
|
-
if (Array.isArray(value)) {
|
64
|
-
if (value.length) {
|
65
|
-
colors[key] = getNonNullableEntry(value, 0);
|
66
|
-
}
|
67
|
-
}
|
68
|
-
else {
|
69
|
-
colors[key] = value;
|
70
|
-
}
|
71
|
-
});
|
72
|
-
return {
|
73
|
-
base: 'vs-dark',
|
74
|
-
inherit: true,
|
75
|
-
rules: rules,
|
76
|
-
colors,
|
77
|
-
};
|
78
|
-
};
|
79
|
-
export const buildCodeEditorTheme = (vscodeThemeData, baseTheme, colorsOverride, rulesOverride) => {
|
80
|
-
const baseThemeData = parseVSCodeTheme(vscodeThemeData);
|
81
|
-
return {
|
82
|
-
...baseThemeData,
|
83
|
-
base: baseTheme,
|
84
|
-
colors: { ...baseThemeData.colors, ...colorsOverride },
|
85
|
-
rules: [...baseThemeData.rules, ...rulesOverride],
|
86
|
-
};
|
87
|
-
};
|
88
|
-
//# sourceMappingURL=MonacoEditorThemeUtils.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"MonacoEditorThemeUtils.js","sourceRoot":"","sources":["../../../src/code-editor/themes/MonacoEditorThemeUtils.ts"],"names":[],"mappings":"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"}
|