vscode-css-languageservice 6.2.14 → 6.3.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 6.3.0 / 2022-06-24
2
+ ================
3
+ * new optional API `fileSystemProvider.getContent`
4
+
1
5
  6.2.0 / 2022-11-09
2
6
  ================
3
7
  * new API `LanguageService.prepareRename`, returning `Range`
@@ -90,15 +94,15 @@
90
94
 
91
95
  2.1.7 / 2017-09-21
92
96
  ==================
93
- * New API `LanguageService.getColorPresentations` returning presentations for a given color.
97
+ * New API `LanguageService.getColorPresentations` returning presentations for a given color.
94
98
  * New API type `ColorPresentation` added.
95
99
 
96
100
  2.1.4 / 2017-08-28
97
101
  ==================
98
- * New API `LanguageService.findDocumentColors` returning the location and value of all colors in a document.
102
+ * New API `LanguageService.findDocumentColors` returning the location and value of all colors in a document.
99
103
  * New API types `ColorInformation` and `Color` added.
100
104
  * Deprecated `LanguageService.findColorSymbols`. Use `LanguageService.findDocumentColors` instead.
101
-
105
+
102
106
  2.1.3 / 2017-08-15
103
107
  ==================
104
108
  * New argument `documentSettings` to `LanguageService.doValidation` to support resource specific settings. If present, document settings are used instead of the options passed in configure.
@@ -214,6 +214,7 @@ export interface FileStat {
214
214
  export interface FileSystemProvider {
215
215
  stat(uri: DocumentUri): Promise<FileStat>;
216
216
  readDirectory?(uri: DocumentUri): Promise<[string, FileType][]>;
217
+ getContent?(uri: DocumentUri, encoding?: string): Promise<string>;
217
218
  }
218
219
  export interface CSSFormatConfiguration {
219
220
  /** indentation size. Default: 4 */