sass 1.45.0-rc.2 → 1.46.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.
@@ -1,4 +1,3 @@
1
- import {URL} from 'url';
2
1
  import {RawSourceMap} from 'source-map-js';
3
2
 
4
3
  import {Options, StringOptions} from './options';
@@ -1,5 +1,3 @@
1
- import {URL} from 'url';
2
-
3
1
  import {Syntax} from './options';
4
2
  import {PromiseOr} from './util/promise_or';
5
3
 
package/types/index.d.ts CHANGED
@@ -42,8 +42,9 @@ export {
42
42
  export {LegacyException} from './legacy/exception';
43
43
  export {
44
44
  LegacyAsyncFunction,
45
- LegacySyncFunction,
45
+ LegacyAsyncFunctionDone,
46
46
  LegacyFunction,
47
+ LegacySyncFunction,
47
48
  LegacyValue,
48
49
  types,
49
50
  } from './legacy/function';
@@ -68,9 +68,10 @@ export type LegacySyncFunction = (
68
68
  * });
69
69
  * ```
70
70
  *
71
- * @param args - One argument for each argument that's declared in the signature
72
- * that's passed to [[LegacySharedOptions.functions]]. If the signature [takes
73
- * arbitrary arguments](https://sass-lang.com/documentation/at-rules/function#taking-arbitrary-arguments),
71
+ * This is passed one argument for each argument that's declared in the
72
+ * signature that's passed to [[LegacySharedOptions.functions]]. If the
73
+ * signature [takes arbitrary
74
+ * arguments](https://sass-lang.com/documentation/at-rules/function#taking-arbitrary-arguments),
74
75
  * they're passed as a single argument list in the last argument before the
75
76
  * callback.
76
77
  *
@@ -79,9 +80,73 @@ export type LegacySyncFunction = (
79
80
  * APIs. Use [[CustomFunction]] with [[compile]], [[compileString]],
80
81
  * [[compileAsync]], and [[compileStringAsync]] instead.
81
82
  */
82
- export type LegacyAsyncFunction = (
83
- this: LegacyPluginThis,
84
- ...args: [...LegacyValue[], (result: LegacyValue) => void]
83
+ export type LegacyAsyncFunction =
84
+ | ((this: LegacyPluginThis, done: (result: LegacyValue) => void) => void)
85
+ | ((
86
+ this: LegacyPluginThis,
87
+ arg1: LegacyValue,
88
+ done: LegacyAsyncFunctionDone
89
+ ) => void)
90
+ | ((
91
+ this: LegacyPluginThis,
92
+ arg1: LegacyValue,
93
+ arg2: LegacyValue,
94
+ done: LegacyAsyncFunctionDone
95
+ ) => void)
96
+ | ((
97
+ this: LegacyPluginThis,
98
+ arg1: LegacyValue,
99
+ arg2: LegacyValue,
100
+ arg3: LegacyValue,
101
+ done: LegacyAsyncFunctionDone
102
+ ) => void)
103
+ | ((
104
+ this: LegacyPluginThis,
105
+ arg1: LegacyValue,
106
+ arg2: LegacyValue,
107
+ arg3: LegacyValue,
108
+ arg4: LegacyValue,
109
+ done: LegacyAsyncFunctionDone
110
+ ) => void)
111
+ | ((
112
+ this: LegacyPluginThis,
113
+ arg1: LegacyValue,
114
+ arg2: LegacyValue,
115
+ arg3: LegacyValue,
116
+ arg4: LegacyValue,
117
+ arg5: LegacyValue,
118
+ done: LegacyAsyncFunctionDone
119
+ ) => void)
120
+ | ((
121
+ this: LegacyPluginThis,
122
+ arg1: LegacyValue,
123
+ arg2: LegacyValue,
124
+ arg3: LegacyValue,
125
+ arg4: LegacyValue,
126
+ arg5: LegacyValue,
127
+ arg6: LegacyValue,
128
+ done: LegacyAsyncFunctionDone
129
+ ) => void)
130
+ | ((
131
+ this: LegacyPluginThis,
132
+ ...args: [...LegacyValue[], LegacyAsyncFunctionDone]
133
+ ) => void);
134
+
135
+ /**
136
+ * The function called by a [[LegacyAsyncFunction]] to indicate that it's
137
+ * finished.
138
+ *
139
+ * @param result - If this is a [[LegacyValue]], that indicates that the
140
+ * function call completed successfully. If it's a [[types.Error]], that
141
+ * indicates that the function call failed.
142
+ *
143
+ * @category Legacy
144
+ * @deprecated This only works with the legacy [[render]] and [[renderSync]]
145
+ * APIs. Use [[CustomFunction]] with [[compile]], [[compileString]],
146
+ * [[compileAsync]], and [[compileStringAsync]] instead.
147
+ */
148
+ export type LegacyAsyncFunctionDone = (
149
+ result: LegacyValue | types.Error
85
150
  ) => void;
86
151
 
87
152
  /**
@@ -649,4 +714,13 @@ export namespace types {
649
714
  */
650
715
  getLength(): number;
651
716
  }
717
+
718
+ /**
719
+ * An error that can be returned from a Sass function to signal that it
720
+ * encountered an error. This is the only way to signal an error
721
+ * asynchronously from a [[LegacyAsyncFunction]].
722
+ */
723
+ export class Error {
724
+ constructor(message: string);
725
+ }
652
726
  }
@@ -553,7 +553,7 @@ export interface LegacyFileOptions<sync extends 'sync' | 'async'>
553
553
  *
554
554
  * @category Input
555
555
  */
556
- data: never;
556
+ data?: never;
557
557
  }
558
558
 
559
559
  /**
@@ -13,6 +13,9 @@ export interface LegacyPluginThis {
13
13
  * [[renderSync]].
14
14
  */
15
15
  options: {
16
+ /** The same [[LegacyPluginThis]] instance that contains this object. */
17
+ context: LegacyPluginThis;
18
+
16
19
  /**
17
20
  * The value passed to [[LegacyFileOptions.file]] or
18
21
  * [[LegacyStringOptions.file]].
@@ -1,5 +1,3 @@
1
- import {URL} from 'url';
2
-
3
1
  import {SourceLocation} from './source_location';
4
2
 
5
3
  /**
@@ -1,5 +1,3 @@
1
- import {URL} from 'url';
2
-
3
1
  import {FileImporter, Importer} from './importer';
4
2
  import {Logger} from './logger';
5
3
  import {Value} from './value';