@likecoin/epubcheck-ts 0.3.7 → 0.3.9
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/bin/epubcheck.js +1 -1
- package/bin/epubcheck.ts +1 -1
- package/dist/index.cjs +1506 -105
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1506 -105
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -245,6 +245,16 @@ interface ValidationContext {
|
|
|
245
245
|
fragment?: string;
|
|
246
246
|
location: EPUBLocation;
|
|
247
247
|
}[];
|
|
248
|
+
/** Media overlay text link targets in order, for reading order validation (MED-015) */
|
|
249
|
+
overlayTextLinks?: {
|
|
250
|
+
targetResource: string;
|
|
251
|
+
fragment?: string;
|
|
252
|
+
location: EPUBLocation;
|
|
253
|
+
}[];
|
|
254
|
+
/** OPF media:active-class value (if declared) */
|
|
255
|
+
mediaActiveClass?: string;
|
|
256
|
+
/** OPF media:playback-active-class value (if declared) */
|
|
257
|
+
mediaPlaybackActiveClass?: string;
|
|
248
258
|
/** Resources marked with IDPF font obfuscation in encryption.xml */
|
|
249
259
|
obfuscatedResources?: Set<string>;
|
|
250
260
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -245,6 +245,16 @@ interface ValidationContext {
|
|
|
245
245
|
fragment?: string;
|
|
246
246
|
location: EPUBLocation;
|
|
247
247
|
}[];
|
|
248
|
+
/** Media overlay text link targets in order, for reading order validation (MED-015) */
|
|
249
|
+
overlayTextLinks?: {
|
|
250
|
+
targetResource: string;
|
|
251
|
+
fragment?: string;
|
|
252
|
+
location: EPUBLocation;
|
|
253
|
+
}[];
|
|
254
|
+
/** OPF media:active-class value (if declared) */
|
|
255
|
+
mediaActiveClass?: string;
|
|
256
|
+
/** OPF media:playback-active-class value (if declared) */
|
|
257
|
+
mediaPlaybackActiveClass?: string;
|
|
248
258
|
/** Resources marked with IDPF font obfuscation in encryption.xml */
|
|
249
259
|
obfuscatedResources?: Set<string>;
|
|
250
260
|
}
|