monaco-yql-languages 2.0.0 → 2.0.3

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.
@@ -1,4 +1,3 @@
1
1
  import { languages } from '../fillers/monaco-editor-core';
2
- export declare const LANGUAGE_ID = "s-expressions";
3
2
  export declare const conf: languages.LanguageConfiguration;
4
3
  export declare const language: languages.IMonarchLanguage & Record<string, unknown>;
@@ -1,5 +1,4 @@
1
1
  import YQLsMonarch from './YQLs.monarch.json';
2
- export const LANGUAGE_ID = 's-expressions';
3
2
  export const conf = {
4
3
  comments: {
5
4
  lineComment: '#',
@@ -75,8 +75,8 @@ export class YQLAutocomplete {
75
75
  let simpleTypesSuggestions = [];
76
76
  let pragmasSuggestions = [];
77
77
  let entitySettingsSuggestions = [];
78
- let columnsSuggestions = [];
79
78
  let variableSuggestions = [];
79
+ let columnsSuggestions = [];
80
80
  const rangeToInsertSuggestion = getRangeToInsertSuggestion(input, offset);
81
81
  const cursorPrefix = getCursorPrefix(input, offset);
82
82
  if (parseResult.suggestSimpleTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-yql-languages",
3
- "version": "2.0.0",
3
+ "version": "2.0.3",
4
4
  "description": "YQL languages for the Monaco Editor, based on monaco-languages.",
5
5
  "author": "YDB",
6
6
  "license": "MIT",