altair-static 5.0.0 → 5.0.2
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/build/index.d.ts
CHANGED
|
@@ -168,6 +168,10 @@ export interface SettingsState {
|
|
|
168
168
|
* Number of items allowed in history pane
|
|
169
169
|
*/
|
|
170
170
|
historyDepth?: number;
|
|
171
|
+
/**
|
|
172
|
+
* Disable line numbers
|
|
173
|
+
*/
|
|
174
|
+
disableLineNumbers?: boolean;
|
|
171
175
|
/**
|
|
172
176
|
* Theme config object
|
|
173
177
|
*/
|
|
@@ -184,6 +188,10 @@ export interface SettingsState {
|
|
|
184
188
|
* Contains shortcut to action mapping
|
|
185
189
|
*/
|
|
186
190
|
"editor.shortcuts"?: Record<string, string>;
|
|
191
|
+
/**
|
|
192
|
+
* Disable new editor beta
|
|
193
|
+
*/
|
|
194
|
+
"beta.disable.newEditor"?: boolean;
|
|
187
195
|
}
|
|
188
196
|
export interface AltairWindowOptions {
|
|
189
197
|
/**
|
|
@@ -311,6 +319,7 @@ declare class AltairConfig {
|
|
|
311
319
|
"vi-VN": string;
|
|
312
320
|
};
|
|
313
321
|
query_history_depth: number;
|
|
322
|
+
disableLineNumbers: boolean;
|
|
314
323
|
defaultTheme: string;
|
|
315
324
|
themes: string[];
|
|
316
325
|
isTranslateMode: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "altair-static",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "Static package for altair graphql client",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"homepage": "https://github.com/altair-graphql/altair#readme",
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/jest": "^24.0.23",
|
|
34
|
-
"altair-app": "^5.0.
|
|
35
|
-
"altair-graphql-core": "^5.0.
|
|
34
|
+
"altair-app": "^5.0.2",
|
|
35
|
+
"altair-graphql-core": "^5.0.2",
|
|
36
36
|
"dts-bundle-generator": "^6.11.0",
|
|
37
37
|
"esbuild": "^0.14.43",
|
|
38
38
|
"jest": "28.0.0",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"type": "opencollective",
|
|
44
44
|
"url": "https://opencollective.com/altair"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "b33b2f8322eaefacb500b2f67d0c0ee0382cb839"
|
|
47
47
|
}
|