sass 1.90.0 → 1.92.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.
@@ -6,7 +6,7 @@
6
6
  */
7
7
  export interface Deprecations {
8
8
  // START AUTOGENERATED LIST
9
- // Checksum: c57ab2eb07ab1df48581b8484ef9bdbad0ddceaa
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
 
@@ -176,6 +178,20 @@ export interface Deprecations {
176
178
  */
177
179
  'compile-string-relative-url': Deprecation<'compile-string-relative-url'>;
178
180
 
181
+ /**
182
+ * Deprecation for a rest parameter before a positional or named parameter.
183
+ *
184
+ * This deprecation became active in Dart Sass 1.91.0.
185
+ */
186
+ 'misplaced-rest': Deprecation<'misplaced-rest'>;
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
+
179
195
  // END AUTOGENERATED LIST
180
196
 
181
197
  /**