@updog/data-editor-wc 0.1.89 → 0.1.90
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/index.d.ts +5 -0
- package/index.js +4720 -4668
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1176,6 +1176,11 @@ type RowImportMeta = {
|
|
|
1176
1176
|
mapping: Record<string, string | undefined>;
|
|
1177
1177
|
/** The `context` prop, untouched. */
|
|
1178
1178
|
context: unknown;
|
|
1179
|
+
/**
|
|
1180
|
+
* Aborted when the import is cancelled and when the chunk's 30-second
|
|
1181
|
+
* timeout fires; hand it to your own fetch.
|
|
1182
|
+
*/
|
|
1183
|
+
signal: AbortSignal;
|
|
1179
1184
|
};
|
|
1180
1185
|
/**
|
|
1181
1186
|
* Chunk in, chunk out. The returned array is positional: element `i` answers
|