@finos/legend-lego 1.2.71 → 2.0.0

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.
Files changed (65) hide show
  1. package/lib/code-editor/CodeDiffView.d.ts +3 -1
  2. package/lib/code-editor/CodeDiffView.d.ts.map +1 -1
  3. package/lib/code-editor/CodeDiffView.js +6 -2
  4. package/lib/code-editor/CodeDiffView.js.map +1 -1
  5. package/lib/code-editor/CodeEditor.d.ts +8 -2
  6. package/lib/code-editor/CodeEditor.d.ts.map +1 -1
  7. package/lib/code-editor/CodeEditor.js +42 -4
  8. package/lib/code-editor/CodeEditor.js.map +1 -1
  9. package/lib/code-editor/index.d.ts +0 -5
  10. package/lib/code-editor/index.d.ts.map +1 -1
  11. package/lib/code-editor/index.js +0 -5
  12. package/lib/code-editor/index.js.map +1 -1
  13. package/lib/index.css +1 -1
  14. package/package.json +29 -29
  15. package/src/code-editor/CodeDiffView.tsx +10 -3
  16. package/src/code-editor/CodeEditor.tsx +69 -4
  17. package/src/code-editor/index.ts +0 -6
  18. package/tsconfig.json +1 -15
  19. package/lib/code-editor/CodeEditorTheme.d.ts +0 -41
  20. package/lib/code-editor/CodeEditorTheme.d.ts.map +0 -1
  21. package/lib/code-editor/CodeEditorTheme.js +0 -99
  22. package/lib/code-editor/CodeEditorTheme.js.map +0 -1
  23. package/lib/code-editor/CodeEditorUtils.d.ts +0 -74
  24. package/lib/code-editor/CodeEditorUtils.d.ts.map +0 -1
  25. package/lib/code-editor/CodeEditorUtils.js +0 -203
  26. package/lib/code-editor/CodeEditorUtils.js.map +0 -1
  27. package/lib/code-editor/PureLanguage.d.ts +0 -38
  28. package/lib/code-editor/PureLanguage.d.ts.map +0 -1
  29. package/lib/code-editor/PureLanguage.js +0 -39
  30. package/lib/code-editor/PureLanguage.js.map +0 -1
  31. package/lib/code-editor/PureLanguageCodeEditorSupport.d.ts +0 -71
  32. package/lib/code-editor/PureLanguageCodeEditorSupport.d.ts.map +0 -1
  33. package/lib/code-editor/PureLanguageCodeEditorSupport.js +0 -238
  34. package/lib/code-editor/PureLanguageCodeEditorSupport.js.map +0 -1
  35. package/lib/code-editor/PureLanguageService.d.ts +0 -19
  36. package/lib/code-editor/PureLanguageService.d.ts.map +0 -1
  37. package/lib/code-editor/PureLanguageService.js +0 -373
  38. package/lib/code-editor/PureLanguageService.js.map +0 -1
  39. package/lib/code-editor/themes/Github-Theme-dark-dimmed.json +0 -613
  40. package/lib/code-editor/themes/Github-Theme-dark.json +0 -513
  41. package/lib/code-editor/themes/Github-Theme-light.json +0 -598
  42. package/lib/code-editor/themes/Material-Theme-Darker.json +0 -816
  43. package/lib/code-editor/themes/Material-Theme-Default.json +0 -816
  44. package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts +0 -31
  45. package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts.map +0 -1
  46. package/lib/code-editor/themes/MonacoEditorThemeUtils.js +0 -88
  47. package/lib/code-editor/themes/MonacoEditorThemeUtils.js.map +0 -1
  48. package/lib/code-editor/themes/OneDark-Pro-darker.json +0 -2061
  49. package/lib/code-editor/themes/OneDark-Pro.json +0 -2090
  50. package/lib/code-editor/themes/solarized-dark-color-theme.json +0 -398
  51. package/src/code-editor/CodeEditorTheme.ts +0 -151
  52. package/src/code-editor/CodeEditorUtils.ts +0 -336
  53. package/src/code-editor/PureLanguage.ts +0 -42
  54. package/src/code-editor/PureLanguageCodeEditorSupport.ts +0 -341
  55. package/src/code-editor/PureLanguageService.ts +0 -416
  56. package/src/code-editor/themes/Github-Theme-dark-dimmed.json +0 -613
  57. package/src/code-editor/themes/Github-Theme-dark.json +0 -513
  58. package/src/code-editor/themes/Github-Theme-light.json +0 -598
  59. package/src/code-editor/themes/Material-Theme-Darker.json +0 -816
  60. package/src/code-editor/themes/Material-Theme-Default.json +0 -816
  61. package/src/code-editor/themes/MonacoEditorThemeUtils.ts +0 -128
  62. package/src/code-editor/themes/OneDark-Pro-darker.json +0 -2061
  63. package/src/code-editor/themes/OneDark-Pro.json +0 -2090
  64. package/src/code-editor/themes/README.md +0 -8
  65. package/src/code-editor/themes/solarized-dark-color-theme.json +0 -423
@@ -1,128 +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
-
17
- import {
18
- getNonNullableEntry,
19
- isNonNullable,
20
- isString,
21
- } from '@finos/legend-shared';
22
- import type { editor as monacoEditorAPI } from 'monaco-editor';
23
-
24
- type VSCodeThemeData = {
25
- colors: Record<string, string | string[]>;
26
- tokenColors: {
27
- name?: string;
28
- scope?: string[] | string;
29
- settings?: {
30
- foreground?: string;
31
- background?: string;
32
- fontStyle?: string;
33
- };
34
- }[];
35
- };
36
-
37
- const parseVSCodeTheme = (
38
- rawData: VSCodeThemeData,
39
- ): monacoEditorAPI.IStandaloneThemeData => {
40
- const rules: monacoEditorAPI.ITokenThemeRule[] = [];
41
-
42
- rawData.tokenColors.forEach((tokenColor) => {
43
- if (!tokenColor.settings) {
44
- return;
45
- }
46
-
47
- let scopes: string[] = [];
48
-
49
- if (isString(tokenColor.scope)) {
50
- scopes = tokenColor.scope
51
- .replace(/^[,]+/, '')
52
- .replace(/[,]+$/, '')
53
- .split(',')
54
- .map((scope) => scope.trim());
55
- } else if (Array.isArray(tokenColor.scope)) {
56
- scopes = tokenColor.scope;
57
- } else {
58
- scopes = [''];
59
- }
60
-
61
- const baseRule: Omit<monacoEditorAPI.ITokenThemeRule, 'token'> = {};
62
-
63
- if (
64
- tokenColor.settings.foreground &&
65
- isString(tokenColor.settings.foreground)
66
- ) {
67
- baseRule.foreground = tokenColor.settings.foreground;
68
- }
69
-
70
- if (
71
- tokenColor.settings.background &&
72
- isString(tokenColor.settings.background)
73
- ) {
74
- baseRule.background = tokenColor.settings.background;
75
- }
76
-
77
- if (
78
- tokenColor.settings.fontStyle &&
79
- isString(tokenColor.settings.fontStyle)
80
- ) {
81
- baseRule.fontStyle = tokenColor.settings.fontStyle;
82
- }
83
-
84
- scopes.forEach((scope) => {
85
- if (isNonNullable(scope) || !Object.keys(baseRule).length) {
86
- return;
87
- }
88
- const rule = {
89
- ...baseRule,
90
- token: scope,
91
- };
92
- rules.push(rule);
93
- });
94
- });
95
-
96
- const colors: monacoEditorAPI.IColors = {};
97
- Object.entries(rawData.colors).forEach(([key, value]) => {
98
- if (Array.isArray(value)) {
99
- if (value.length) {
100
- colors[key] = getNonNullableEntry(value, 0);
101
- }
102
- } else {
103
- colors[key] = value;
104
- }
105
- });
106
-
107
- return {
108
- base: 'vs-dark',
109
- inherit: true,
110
- rules: rules,
111
- colors,
112
- };
113
- };
114
-
115
- export const buildCodeEditorTheme = (
116
- vscodeThemeData: VSCodeThemeData,
117
- baseTheme: monacoEditorAPI.BuiltinTheme,
118
- colorsOverride: Record<string, string>,
119
- rulesOverride: monacoEditorAPI.ITokenThemeRule[],
120
- ): monacoEditorAPI.IStandaloneThemeData => {
121
- const baseThemeData = parseVSCodeTheme(vscodeThemeData);
122
- return {
123
- ...baseThemeData,
124
- base: baseTheme,
125
- colors: { ...baseThemeData.colors, ...colorsOverride },
126
- rules: [...baseThemeData.rules, ...rulesOverride],
127
- };
128
- };