@alosha/xlsx 0.2.0 → 0.3.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/README.md +6 -0
- package/dist/chunk-6XXKAKLS.js +3663 -0
- package/dist/chunk-6XXKAKLS.js.map +1 -0
- package/dist/compat.cjs +4012 -0
- package/dist/compat.cjs.map +1 -0
- package/dist/compat.d.cts +110 -0
- package/dist/compat.d.ts +110 -0
- package/dist/compat.js +302 -0
- package/dist/compat.js.map +1 -0
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -3657
- package/dist/index.js.map +1 -1
- package/package.json +9 -2
package/dist/index.d.cts
CHANGED
|
@@ -773,8 +773,12 @@ declare class InvalidCellValueError extends AloshaXlsxError {
|
|
|
773
773
|
*/
|
|
774
774
|
declare class UnsupportedFeatureError extends AloshaXlsxError {
|
|
775
775
|
readonly feature: string;
|
|
776
|
+
/** Optional pointer appended to the message (e.g. the compat shim's tracking-issue note). */
|
|
777
|
+
readonly detail?: string | undefined;
|
|
776
778
|
readonly code: "UNSUPPORTED_FEATURE";
|
|
777
|
-
constructor(feature: string
|
|
779
|
+
constructor(feature: string,
|
|
780
|
+
/** Optional pointer appended to the message (e.g. the compat shim's tracking-issue note). */
|
|
781
|
+
detail?: string | undefined);
|
|
778
782
|
}
|
|
779
783
|
/**
|
|
780
784
|
* The `.xlsx` package's OPC structure (zip / rels / parts) is missing or malformed: a truncated/corrupt
|
package/dist/index.d.ts
CHANGED
|
@@ -773,8 +773,12 @@ declare class InvalidCellValueError extends AloshaXlsxError {
|
|
|
773
773
|
*/
|
|
774
774
|
declare class UnsupportedFeatureError extends AloshaXlsxError {
|
|
775
775
|
readonly feature: string;
|
|
776
|
+
/** Optional pointer appended to the message (e.g. the compat shim's tracking-issue note). */
|
|
777
|
+
readonly detail?: string | undefined;
|
|
776
778
|
readonly code: "UNSUPPORTED_FEATURE";
|
|
777
|
-
constructor(feature: string
|
|
779
|
+
constructor(feature: string,
|
|
780
|
+
/** Optional pointer appended to the message (e.g. the compat shim's tracking-issue note). */
|
|
781
|
+
detail?: string | undefined);
|
|
778
782
|
}
|
|
779
783
|
/**
|
|
780
784
|
* The `.xlsx` package's OPC structure (zip / rels / parts) is missing or malformed: a truncated/corrupt
|