@d-i-t-a/reader 3.0.0-alpha.18 → 3.0.0-alpha.19
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/dist/esm/index.js +4 -3
- package/dist/esm/index.js.map +2 -2
- package/dist/reader.js +1 -1
- package/dist/reader.js.map +2 -2
- package/dist/types/reader.d.ts +3 -2
- package/package.json +1 -1
package/dist/types/reader.d.ts
CHANGED
|
@@ -212,8 +212,9 @@ export default class D2Reader {
|
|
|
212
212
|
get atEnd(): boolean;
|
|
213
213
|
snapToSelector: (selector: any) => Promise<void>;
|
|
214
214
|
/**
|
|
215
|
-
*
|
|
216
|
-
*
|
|
215
|
+
* Update the navigator `IFrameAttributes` after the reader has been initialized.
|
|
216
|
+
* Use this to change `margin`, `iframe.padding`, `safeArea`, or fixed-layout
|
|
217
|
+
* attributes at runtime. The navigator re-applies them on the next resize.
|
|
217
218
|
*/
|
|
218
219
|
applyAttributes: (value: IFrameAttributes) => void;
|
|
219
220
|
applyLineFocusSettings(userSettings: any): Promise<void>;
|