@finos/legend-lego 0.1.12 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/{src/code-editor/CodeEditorConfig.ts → lib/application/ActivityBar.d.ts} +7 -16
- package/lib/application/ActivityBar.d.ts.map +1 -0
- package/lib/application/ActivityBar.js +19 -0
- package/lib/application/ActivityBar.js.map +1 -0
- package/lib/application/index.d.ts +1 -0
- package/lib/application/index.d.ts.map +1 -1
- package/lib/application/index.js +1 -0
- package/lib/application/index.js.map +1 -1
- package/lib/code-editor/CodeDiffView.d.ts +1 -1
- package/lib/code-editor/CodeDiffView.d.ts.map +1 -1
- package/lib/code-editor/CodeDiffView.js +4 -11
- package/lib/code-editor/CodeDiffView.js.map +1 -1
- package/lib/code-editor/CodeEditor.d.ts +5 -2
- package/lib/code-editor/CodeEditor.d.ts.map +1 -1
- package/lib/code-editor/CodeEditor.js +15 -17
- package/lib/code-editor/CodeEditor.js.map +1 -1
- package/lib/code-editor/CodeEditorTheme.d.ts +39 -0
- package/lib/code-editor/CodeEditorTheme.d.ts.map +1 -0
- package/lib/code-editor/CodeEditorTheme.js +72 -0
- package/lib/code-editor/CodeEditorTheme.js.map +1 -0
- package/lib/code-editor/CodeEditorUtils.d.ts +11 -0
- package/lib/code-editor/CodeEditorUtils.d.ts.map +1 -1
- package/lib/code-editor/CodeEditorUtils.js +23 -0
- package/lib/code-editor/CodeEditorUtils.js.map +1 -1
- package/lib/code-editor/PureLanguage.d.ts +38 -0
- package/lib/code-editor/PureLanguage.d.ts.map +1 -0
- package/lib/code-editor/PureLanguage.js +39 -0
- package/lib/code-editor/PureLanguage.js.map +1 -0
- package/lib/code-editor/PureLanguageService.d.ts +0 -22
- package/lib/code-editor/PureLanguageService.d.ts.map +1 -1
- package/lib/code-editor/PureLanguageService.js +3 -48
- package/lib/code-editor/PureLanguageService.js.map +1 -1
- package/lib/code-editor/index.d.ts +3 -2
- package/lib/code-editor/index.d.ts.map +1 -1
- package/lib/code-editor/index.js +3 -2
- package/lib/code-editor/index.js.map +1 -1
- package/lib/code-editor/themes/Github-Theme-dark-dimmed.json +613 -0
- package/lib/code-editor/themes/Github-Theme-dark.json +513 -0
- package/lib/code-editor/themes/Material-Theme-Darker.json +816 -0
- package/lib/code-editor/themes/Material-Theme-Default.json +816 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts +31 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts.map +1 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.js +88 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.js.map +1 -0
- package/lib/code-editor/themes/OneDark-Pro-darker.json +2061 -0
- package/lib/code-editor/themes/OneDark-Pro.json +2090 -0
- package/lib/code-editor/themes/solarized-dark-color-theme.json +398 -0
- package/lib/data-grid/DataGrid.d.ts.map +1 -1
- package/lib/data-grid/DataGrid.js +13 -1
- package/lib/data-grid/DataGrid.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/package.json +7 -7
- package/{lib/code-editor/CodeEditorConfig.d.ts → src/application/ActivityBar.tsx} +16 -15
- package/src/application/index.ts +1 -0
- package/src/code-editor/CodeDiffView.tsx +4 -12
- package/src/code-editor/CodeEditor.tsx +25 -22
- package/src/code-editor/CodeEditorTheme.ts +118 -0
- package/src/code-editor/CodeEditorUtils.ts +55 -0
- package/src/code-editor/PureLanguage.ts +42 -0
- package/src/code-editor/PureLanguageService.ts +3 -56
- package/src/code-editor/index.ts +3 -5
- package/src/code-editor/themes/Github-Theme-dark-dimmed.json +613 -0
- package/src/code-editor/themes/Github-Theme-dark.json +513 -0
- package/src/code-editor/themes/Material-Theme-Darker.json +816 -0
- package/src/code-editor/themes/Material-Theme-Default.json +816 -0
- package/src/code-editor/themes/MonacoEditorThemeUtils.ts +128 -0
- package/src/code-editor/themes/OneDark-Pro-darker.json +2061 -0
- package/src/code-editor/themes/OneDark-Pro.json +2090 -0
- package/src/code-editor/themes/README.md +8 -0
- package/src/code-editor/themes/solarized-dark-color-theme.json +423 -0
- package/src/data-grid/DataGrid.tsx +12 -1
- package/tsconfig.json +12 -2
- package/lib/code-editor/CodeEditorConfig.d.ts.map +0 -1
- package/lib/code-editor/CodeEditorConfig.js +0 -33
- package/lib/code-editor/CodeEditorConfig.js.map +0 -1
@@ -0,0 +1,31 @@
|
|
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
|
@@ -0,0 +1 @@
|
|
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,gBAAgB,YAAY,kBACvB,OAAO,MAAM,EAAE,MAAM,CAAC,iBACvB,gBAAgB,eAAe,EAAE,KAC/C,gBAAgB,oBAQlB,CAAC"}
|
@@ -0,0 +1,88 @@
|
|
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
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"MonacoEditorThemeUtils.js","sourceRoot":"","sources":["../../../src/code-editor/themes/MonacoEditorThemeUtils.ts"],"names":[],"mappings":"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"}
|