@gravitee/graphene-core 2.45.0-monaco-base.11a7a3d → 2.45.0-renovate-react.0dddcc2
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/dist/index.d.ts.map +1 -1
- package/dist/index.js +10794 -9050
- package/dist/styles/globals.css +1 -1
- package/dist/tokens/component.css +0 -18
- package/package.json +2 -16
- package/dist/Skeleton-C30qULzD.js +0 -1745
- package/dist/code-editor/index.d.ts +0 -2
- package/dist/code-editor/index.d.ts.map +0 -1
- package/dist/code-editor/index.js +0 -228
- package/dist/composed/CodeEditor/CodeEditor.d.ts +0 -29
- package/dist/composed/CodeEditor/CodeEditor.d.ts.map +0 -1
- package/dist/composed/CodeEditor/index.d.ts +0 -6
- package/dist/composed/CodeEditor/index.d.ts.map +0 -1
- package/dist/composed/CodeEditor/models/index.d.ts +0 -16
- package/dist/composed/CodeEditor/models/index.d.ts.map +0 -1
- package/dist/composed/CodeEditor/setupCodeEditor.d.ts +0 -65
- package/dist/composed/CodeEditor/setupCodeEditor.d.ts.map +0 -1
- package/dist/composed/CodeEditor/theme/buildTheme.d.ts +0 -49
- package/dist/composed/CodeEditor/theme/buildTheme.d.ts.map +0 -1
|
@@ -37,17 +37,6 @@
|
|
|
37
37
|
--badge-success-foreground: var(--graphene-green-700);
|
|
38
38
|
--badge-warning-foreground: var(--graphene-amber-800);
|
|
39
39
|
--badge-highlight-foreground: var(--graphene-violet-700);
|
|
40
|
-
|
|
41
|
-
/* ── CodeEditor ──────────────────────────────────
|
|
42
|
-
Syntax token colors consumed by the Monaco-based `CodeEditor`.
|
|
43
|
-
Component-scoped so themes (and `.dark`) can override them
|
|
44
|
-
without touching the editor code.
|
|
45
|
-
*/
|
|
46
|
-
--code-editor-string: var(--graphene-teal-700);
|
|
47
|
-
--code-editor-keyword: var(--graphene-violet-600);
|
|
48
|
-
--code-editor-number: var(--graphene-solaris-700);
|
|
49
|
-
--code-editor-type: var(--graphene-blue-500);
|
|
50
|
-
--code-editor-special: var(--graphene-green-700);
|
|
51
40
|
}
|
|
52
41
|
|
|
53
42
|
.dark {
|
|
@@ -56,11 +45,4 @@
|
|
|
56
45
|
--badge-success-foreground: var(--graphene-green-300);
|
|
57
46
|
--badge-warning-foreground: var(--graphene-amber-200);
|
|
58
47
|
--badge-highlight-foreground: var(--graphene-violet-300);
|
|
59
|
-
|
|
60
|
-
/* ── CodeEditor — lighter shades for dark surfaces ── */
|
|
61
|
-
--code-editor-string: var(--graphene-teal-400);
|
|
62
|
-
--code-editor-keyword: var(--graphene-violet-400);
|
|
63
|
-
--code-editor-number: var(--graphene-solaris-300);
|
|
64
|
-
--code-editor-type: var(--graphene-blue-400);
|
|
65
|
-
--code-editor-special: var(--graphene-green-500);
|
|
66
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravitee/graphene-core",
|
|
3
|
-
"version": "2.45.0-
|
|
3
|
+
"version": "2.45.0-renovate-react.0dddcc2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Gravitee's Graphene design system: accessible React components, design tokens, icons, and shared ESLint/TypeScript configs. Built on shadcn/ui and Tailwind.",
|
|
6
6
|
"keywords": [
|
|
@@ -41,10 +41,6 @@
|
|
|
41
41
|
"types": "./dist/testing/index.d.ts",
|
|
42
42
|
"import": "./dist/testing/index.js"
|
|
43
43
|
},
|
|
44
|
-
"./code-editor": {
|
|
45
|
-
"types": "./dist/code-editor/index.d.ts",
|
|
46
|
-
"import": "./dist/code-editor/index.js"
|
|
47
|
-
},
|
|
48
44
|
"./styles": "./dist/styles/globals.css",
|
|
49
45
|
"./tailwind-theme": "./dist/styles/tailwind-theme.css",
|
|
50
46
|
"./fonts": "./dist/fonts.js",
|
|
@@ -95,8 +91,7 @@
|
|
|
95
91
|
},
|
|
96
92
|
"peerDependencies": {
|
|
97
93
|
"@fontsource/dm-sans": ">=5.0.0",
|
|
98
|
-
"@gravitee/graphene-core": "2.45.0-
|
|
99
|
-
"@monaco-editor/react": "^4.7.0",
|
|
94
|
+
"@gravitee/graphene-core": "2.45.0-renovate-react.0dddcc2",
|
|
100
95
|
"@tanstack/react-table": "^8.0.0",
|
|
101
96
|
"@testing-library/dom": ">=10.0.0",
|
|
102
97
|
"@testing-library/react": ">=16.0.0",
|
|
@@ -112,7 +107,6 @@
|
|
|
112
107
|
"eslint-plugin-react": ">=7.0.0",
|
|
113
108
|
"eslint-plugin-react-hooks": ">=4.0.0",
|
|
114
109
|
"eslint-plugin-unused-imports": ">=3.0.0",
|
|
115
|
-
"monaco-editor": ">=0.50.0 <1",
|
|
116
110
|
"react": "^19.0.0",
|
|
117
111
|
"react-dom": "^19.0.0",
|
|
118
112
|
"react-hook-form": "^7.0.0",
|
|
@@ -120,9 +114,6 @@
|
|
|
120
114
|
"typescript-eslint": ">=8.0.0"
|
|
121
115
|
},
|
|
122
116
|
"peerDependenciesMeta": {
|
|
123
|
-
"@monaco-editor/react": {
|
|
124
|
-
"optional": true
|
|
125
|
-
},
|
|
126
117
|
"@testing-library/dom": {
|
|
127
118
|
"optional": true
|
|
128
119
|
},
|
|
@@ -144,9 +135,6 @@
|
|
|
144
135
|
"eslint-plugin-import-x": {
|
|
145
136
|
"optional": true
|
|
146
137
|
},
|
|
147
|
-
"monaco-editor": {
|
|
148
|
-
"optional": true
|
|
149
|
-
},
|
|
150
138
|
"tailwindcss": {
|
|
151
139
|
"optional": true
|
|
152
140
|
},
|
|
@@ -156,8 +144,6 @@
|
|
|
156
144
|
},
|
|
157
145
|
"devDependencies": {
|
|
158
146
|
"@hookform/resolvers": "5.4.0",
|
|
159
|
-
"@monaco-editor/react": "4.7.0",
|
|
160
|
-
"monaco-editor": "0.52.2",
|
|
161
147
|
"react-hook-form": "7.78.0",
|
|
162
148
|
"shadcn": "4.11.0",
|
|
163
149
|
"vitest": "4.1.8",
|