@@ -18,167 +18,118 @@ enum Deprecation {
18
18
// Checksum: c57ab2eb07ab1df48581b8484ef9bdbad0ddceaa
19
19
20
20
/// Deprecation for passing a string directly to meta.call().
21
- callString (
22
- 'call-string' ,
23
- deprecatedIn: '0.0.0' ,
24
- description: 'Passing a string directly to meta.call().' ,
25
- ),
21
+ callString ('call-string' ,
22
+ deprecatedIn: '0.0.0' ,
23
+ description: 'Passing a string directly to meta.call().' ),
26
24
27
25
/// Deprecation for @elseif.
28
26
elseif ('elseif' , deprecatedIn: '1.3.2' , description: '@elseif.' ),
29
27
30
28
/// Deprecation for @-moz-document.
31
- mozDocument (
32
- 'moz-document' ,
33
- deprecatedIn: '1.7.2' ,
34
- description: '@-moz-document.' ,
35
- ),
29
+ mozDocument ('moz-document' ,
30
+ deprecatedIn: '1.7.2' , description: '@-moz-document.' ),
36
31
37
32
/// Deprecation for imports using relative canonical URLs.
38
- relativeCanonical (
39
- 'relative-canonical' ,
40
- deprecatedIn: '1.14.2' ,
41
- description: 'Imports using relative canonical URLs.' ,
42
- ),
33
+ relativeCanonical ('relative-canonical' ,
34
+ deprecatedIn: '1.14.2' ,
35
+ description: 'Imports using relative canonical URLs.' ),
43
36
44
37
/// Deprecation for declaring new variables with !global.
45
- newGlobal (
46
- 'new-global' ,
47
- deprecatedIn: '1.17.2' ,
48
- description: 'Declaring new variables with !global.' ,
49
- ),
38
+ newGlobal ('new-global' ,
39
+ deprecatedIn: '1.17.2' ,
40
+ description: 'Declaring new variables with !global.' ),
50
41
51
42
/// Deprecation for using color module functions in place of plain CSS functions.
52
- colorModuleCompat (
53
- 'color-module-compat' ,
54
- deprecatedIn: '1.23.0' ,
55
- description:
56
- 'Using color module functions in place of plain CSS functions.' ,
57
- ),
43
+ colorModuleCompat ('color-module-compat' ,
44
+ deprecatedIn: '1.23.0' ,
45
+ description:
46
+ 'Using color module functions in place of plain CSS functions.' ),
58
47
59
48
/// Deprecation for / operator for division.
60
- slashDiv (
61
- 'slash-div' ,
62
- deprecatedIn: '1.33.0' ,
63
- description: '/ operator for division.' ,
64
- ),
49
+ slashDiv ('slash-div' ,
50
+ deprecatedIn: '1.33.0' , description: '/ operator for division.' ),
65
51
66
52
/// Deprecation for leading, trailing, and repeated combinators.
67
- bogusCombinators (
68
- 'bogus-combinators' ,
69
- deprecatedIn: '1.54.0' ,
70
- description: 'Leading, trailing, and repeated combinators.' ,
71
- ),
53
+ bogusCombinators ('bogus-combinators' ,
54
+ deprecatedIn: '1.54.0' ,
55
+ description: 'Leading, trailing, and repeated combinators.' ),
72
56
73
57
/// Deprecation for ambiguous + and - operators.
74
- strictUnary (
75
- 'strict-unary' ,
76
- deprecatedIn: '1.55.0' ,
77
- description: 'Ambiguous + and - operators.' ,
78
- ),
58
+ strictUnary ('strict-unary' ,
59
+ deprecatedIn: '1.55.0' , description: 'Ambiguous + and - operators.' ),
79
60
80
61
/// Deprecation for passing invalid units to built-in functions.
81
- functionUnits (
82
- 'function-units' ,
83
- deprecatedIn: '1.56.0' ,
84
- description: 'Passing invalid units to built-in functions.' ,
85
- ),
62
+ functionUnits ('function-units' ,
63
+ deprecatedIn: '1.56.0' ,
64
+ description: 'Passing invalid units to built-in functions.' ),
86
65
87
66
/// Deprecation for using !default or !global multiple times for one variable.
88
- duplicateVarFlags (
89
- 'duplicate-var-flags' ,
90
- deprecatedIn: '1.62.0' ,
91
- description: 'Using !default or !global multiple times for one variable.' ,
92
- ),
67
+ duplicateVarFlags ('duplicate-var-flags' ,
68
+ deprecatedIn: '1.62.0' ,
69
+ description:
70
+ 'Using !default or !global multiple times for one variable.' ),
93
71
94
72
/// Deprecation for passing null as alpha in the ${isJS ? 'JS': 'Dart'} API.
95
- nullAlpha (
96
- 'null-alpha' ,
97
- deprecatedIn: '1.62.3' ,
98
- description: 'Passing null as alpha in the ${isJS ? 'JS' : 'Dart' } API.' ,
99
- ),
73
+ nullAlpha ('null-alpha' ,
74
+ deprecatedIn: '1.62.3' ,
75
+ description: 'Passing null as alpha in the ${isJS ? 'JS' : 'Dart' } API.' ),
100
76
101
77
/// Deprecation for passing percentages to the Sass abs() function.
102
- absPercent (
103
- 'abs-percent' ,
104
- deprecatedIn: '1.65.0' ,
105
- description: 'Passing percentages to the Sass abs() function.' ,
106
- ),
78
+ absPercent ('abs-percent' ,
79
+ deprecatedIn: '1.65.0' ,
80
+ description: 'Passing percentages to the Sass abs() function.' ),
107
81
108
82
/// Deprecation for using the current working directory as an implicit load path.
109
- fsImporterCwd (
110
- 'fs-importer-cwd' ,
111
- deprecatedIn: '1.73.0' ,
112
- description:
113
- 'Using the current working directory as an implicit load path.' ,
114
- ),
83
+ fsImporterCwd ('fs-importer-cwd' ,
84
+ deprecatedIn: '1.73.0' ,
85
+ description:
86
+ 'Using the current working directory as an implicit load path.' ),
115
87
116
88
/// Deprecation for function and mixin names beginning with --.
117
- cssFunctionMixin (
118
- 'css-function-mixin' ,
119
- deprecatedIn: '1.76.0' ,
120
- description: 'Function and mixin names beginning with --.' ,
121
- ),
89
+ cssFunctionMixin ('css-function-mixin' ,
90
+ deprecatedIn: '1.76.0' ,
91
+ description: 'Function and mixin names beginning with --.' ),
122
92
123
93
/// Deprecation for declarations after or between nested rules.
124
- mixedDecls (
125
- 'mixed-decls' ,
126
- deprecatedIn: '1.77.7' ,
127
- description: 'Declarations after or between nested rules.' ,
128
- ),
94
+ mixedDecls ('mixed-decls' ,
95
+ deprecatedIn: '1.77.7' ,
96
+ description: 'Declarations after or between nested rules.' ),
129
97
130
98
/// Deprecation for meta.feature-exists
131
- featureExists (
132
- 'feature-exists' ,
133
- deprecatedIn: '1.78.0' ,
134
- description: 'meta.feature-exists' ,
135
- ),
99
+ featureExists ('feature-exists' ,
100
+ deprecatedIn: '1.78.0' , description: 'meta.feature-exists' ),
136
101
137
102
/// Deprecation for certain uses of built-in sass:color functions.
138
- color4Api (
139
- 'color-4-api' ,
140
- deprecatedIn: '1.79.0' ,
141
- description: 'Certain uses of built-in sass:color functions.' ,
142
- ),
103
+ color4Api ('color-4-api' ,
104
+ deprecatedIn: '1.79.0' ,
105
+ description: 'Certain uses of built-in sass:color functions.' ),
143
106
144
107
/// Deprecation for using global color functions instead of sass:color.
145
- colorFunctions (
146
- 'color-functions' ,
147
- deprecatedIn: '1.79.0' ,
148
- description: 'Using global color functions instead of sass:color.' ,
149
- ),
108
+ colorFunctions ('color-functions' ,
109
+ deprecatedIn: '1.79.0' ,
110
+ description: 'Using global color functions instead of sass:color.' ),
150
111
151
112
/// Deprecation for legacy JS API.
152
- legacyJsApi (
153
- 'legacy-js-api' ,
154
- deprecatedIn: '1.79.0' ,
155
- description: 'Legacy JS API.' ,
156
- ),
113
+ legacyJsApi ('legacy-js-api' ,
114
+ deprecatedIn: '1.79.0' , description: 'Legacy JS API.' ),
157
115
158
116
/// Deprecation for @import rules.
159
117
import ('import' , deprecatedIn: '1.80.0' , description: '@import rules.' ),
160
118
161
119
/// Deprecation for global built-in functions that are available in sass: modules.
162
- globalBuiltin (
163
- 'global-builtin' ,
164
- deprecatedIn: '1.80.0' ,
165
- description:
166
- 'Global built-in functions that are available in sass: modules.' ,
167
- ),
120
+ globalBuiltin ('global-builtin' ,
121
+ deprecatedIn: '1.80.0' ,
122
+ description:
123
+ 'Global built-in functions that are available in sass: modules.' ),
168
124
169
125
/// Deprecation for functions named "type".
170
- typeFunction (
171
- 'type-function' ,
172
- deprecatedIn: '1.86.0' ,
173
- description: 'Functions named "type".' ,
174
- ),
126
+ typeFunction ('type-function' ,
127
+ deprecatedIn: '1.86.0' , description: 'Functions named "type".' ),
175
128
176
129
/// Deprecation for passing a relative url to compileString().
177
- compileStringRelativeUrl (
178
- 'compile-string-relative-url' ,
179
- deprecatedIn: '1.88.0' ,
180
- description: 'Passing a relative url to compileString().' ,
181
- ),
130
+ compileStringRelativeUrl ('compile-string-relative-url' ,
131
+ deprecatedIn: '1.88.0' ,
132
+ description: 'Passing a relative url to compileString().' ),
182
133
183
134
// END AUTOGENERATED CODE
184
135
0 commit comments