sass 1.99.0 → 1.100.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/package.json +1 -1
- package/sass.dart.js +297 -240
- package/types/deprecations.d.ts +8 -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: 1e05e728d95255e2e9fadbe9696baf751fc7ef66
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Deprecation for passing a string directly to meta.call().
|
|
@@ -207,6 +207,13 @@ export interface Deprecations {
|
|
|
207
207
|
*/
|
|
208
208
|
'function-name': Deprecation<'function-name'>;
|
|
209
209
|
|
|
210
|
+
/**
|
|
211
|
+
* Deprecation for adjacent compound selectors like `[class]a`.
|
|
212
|
+
*
|
|
213
|
+
* This deprecation became active in Dart Sass 1.100.0.
|
|
214
|
+
*/
|
|
215
|
+
'adjacent-compounds': Deprecation<'adjacent-compounds'>;
|
|
216
|
+
|
|
210
217
|
// END AUTOGENERATED LIST
|
|
211
218
|
|
|
212
219
|
/**
|