sass 1.78.0 → 1.79.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: dd5c6aa0f1431fa9fc88bb71a96f832adbc165f5
9
+ // Checksum: 0243e0f7ee85127d6e1bda5c08e363509959e758
10
10
 
11
11
  /**
12
12
  * Deprecation for passing a string directly to meta.call().
@@ -127,6 +127,27 @@ export interface Deprecations {
127
127
  */
128
128
  'feature-exists': Deprecation<'feature-exists'>;
129
129
 
130
+ /**
131
+ * Deprecation for certain uses of built-in sass:color functions.
132
+ *
133
+ * This deprecation became active in Dart Sass 1.79.0.
134
+ */
135
+ 'color-4-api': Deprecation<'color-4-api'>;
136
+
137
+ /**
138
+ * Deprecation for using global color functions instead of sass:color.
139
+ *
140
+ * This deprecation became active in Dart Sass 1.79.0.
141
+ */
142
+ 'color-functions': Deprecation<'color-functions'>;
143
+
144
+ /**
145
+ * Deprecation for legacy JS API.
146
+ *
147
+ * This deprecation became active in Dart Sass 1.79.0.
148
+ */
149
+ 'legacy-js-api': Deprecation<'legacy-js-api'>;
150
+
130
151
  /**
131
152
  * Deprecation for @import rules.
132
153
  *
@@ -134,6 +155,13 @@ export interface Deprecations {
134
155
  */
135
156
  import: Deprecation<'import'>;
136
157
 
158
+ /**
159
+ * Deprecation for global built-in functions that are available in sass: modules.
160
+ *
161
+ * This deprecation is not yet active, but will be soon.
162
+ */
163
+ 'global-builtin': Deprecation<'global-builtin'>;
164
+
137
165
  // END AUTOGENERATED LIST
138
166
 
139
167
  /**
package/types/index.d.ts CHANGED
@@ -45,7 +45,25 @@ export {
45
45
  CalculationOperation,
46
46
  CalculationOperator,
47
47
  CalculationValue,
48
+ ChannelName,
49
+ ChannelNameHsl,
50
+ ChannelNameHwb,
51
+ ChannelNameLch,
52
+ ChannelNameLab,
53
+ ChannelNameRgb,
54
+ ChannelNameXyz,
55
+ ColorSpaceHsl,
56
+ ColorSpaceHwb,
57
+ ColorSpaceLch,
58
+ ColorSpaceLab,
59
+ ColorSpaceRgb,
60
+ ColorSpaceXyz,
61
+ GamutMapMethod,
62
+ HueInterpolationMethod,
63
+ KnownColorSpace,
48
64
  ListSeparator,
65
+ PolarColorSpace,
66
+ RectangularColorSpace,
49
67
  SassArgumentList,
50
68
  SassBoolean,
51
69
  SassCalculation,