vscode-css-languageservice 6.2.11 → 6.2.13
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/lib/esm/beautify/beautify-css.js +4 -4
- package/lib/esm/data/webCustomData.js +576 -375
- package/lib/esm/parser/lessParser.js +7 -4
- package/lib/esm/parser/scssParser.js +2 -1
- package/lib/esm/services/cssHover.js +18 -11
- package/lib/esm/services/selectorPrinting.js +15 -9
- package/lib/umd/beautify/beautify-css.js +4 -4
- package/lib/umd/data/webCustomData.js +576 -375
- package/lib/umd/parser/lessParser.js +7 -4
- package/lib/umd/parser/scssParser.js +2 -1
- package/lib/umd/services/cssHover.js +18 -11
- package/lib/umd/services/selectorPrinting.js +15 -9
- package/package.json +9 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// copied from js-beautify/js/lib/beautify-css.js
|
|
2
|
-
// version: 1.
|
|
2
|
+
// version: 1.15.1
|
|
3
3
|
/* AUTO-GENERATED. DO NOT MODIFY. */
|
|
4
4
|
/*
|
|
5
5
|
|
|
@@ -570,10 +570,10 @@ function Options(options, merge_child_field) {
|
|
|
570
570
|
|
|
571
571
|
this.indent_empty_lines = this._get_boolean('indent_empty_lines');
|
|
572
572
|
|
|
573
|
-
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty']
|
|
574
|
-
// For now, 'auto' = all off for javascript, all on for html (and inline javascript).
|
|
573
|
+
// valid templating languages ['django', 'erb', 'handlebars', 'php', 'smarty', 'angular']
|
|
574
|
+
// For now, 'auto' = all off for javascript, all except angular on for html (and inline javascript/css).
|
|
575
575
|
// other values ignored
|
|
576
|
-
this.templating = this._get_selection_list('templating', ['auto', 'none', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
|
|
576
|
+
this.templating = this._get_selection_list('templating', ['auto', 'none', 'angular', 'django', 'erb', 'handlebars', 'php', 'smarty'], ['auto']);
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
Options.prototype._get_array = function(name, default_value) {
|