sass 1.91.0 → 1.92.1
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/package.json +1 -1
- package/sass.dart.js +2217 -2105
- package/types/deprecations.d.ts +10 -1
package/types/deprecations.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export interface Deprecations {
|
|
8
8
|
// START AUTOGENERATED LIST
|
|
9
|
-
// Checksum:
|
|
9
|
+
// Checksum: 0d3df25297a4e76b865aee1e908baf355e26d665
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Deprecation for passing a string directly to meta.call().
|
|
@@ -117,6 +117,7 @@ export interface Deprecations {
|
|
|
117
117
|
* Deprecation for declarations after or between nested rules.
|
|
118
118
|
*
|
|
119
119
|
* This deprecation became active in Dart Sass 1.77.7.
|
|
120
|
+
* It became obsolete in Dart Sass 1.92.0.
|
|
120
121
|
*/
|
|
121
122
|
'mixed-decls': Deprecation<'mixed-decls'>;
|
|
122
123
|
|
|
@@ -166,6 +167,7 @@ export interface Deprecations {
|
|
|
166
167
|
* Deprecation for functions named "type".
|
|
167
168
|
*
|
|
168
169
|
* This deprecation became active in Dart Sass 1.86.0.
|
|
170
|
+
* It became obsolete in Dart Sass 1.92.0.
|
|
169
171
|
*/
|
|
170
172
|
'type-function': Deprecation<'type-function'>;
|
|
171
173
|
|
|
@@ -183,6 +185,13 @@ export interface Deprecations {
|
|
|
183
185
|
*/
|
|
184
186
|
'misplaced-rest': Deprecation<'misplaced-rest'>;
|
|
185
187
|
|
|
188
|
+
/**
|
|
189
|
+
* Deprecation for configuring private variables in @use, @forward, or load-css().
|
|
190
|
+
*
|
|
191
|
+
* This deprecation became active in Dart Sass 1.92.0.
|
|
192
|
+
*/
|
|
193
|
+
'with-private': Deprecation<'with-private'>;
|
|
194
|
+
|
|
186
195
|
// END AUTOGENERATED LIST
|
|
187
196
|
|
|
188
197
|
/**
|