@prose-reader/core 1.109.0 → 1.110.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/dist/reader.d.ts CHANGED
@@ -328,7 +328,7 @@ export declare const createReader: (inputSettings: CreateReaderOptions) => {
328
328
  load: (options: Required<Pick<ContextState, "manifest" | "containerElement">>) => void;
329
329
  destroy: () => void;
330
330
  pagination: {
331
- state: import('./pagination/Pagination').PaginationInfo;
331
+ getState: () => import('./pagination/Pagination').PaginationInfo;
332
332
  state$: import('rxjs').Observable<import('./pagination/Pagination').PaginationInfo>;
333
333
  };
334
334
  settings: SettingsInterface<NonNullable<CoreInputSettings>, NonNullable<import('./settings/types').CoreOutputSettings | undefined>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prose-reader/core",
3
- "version": "1.109.0",
3
+ "version": "1.110.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -25,7 +25,7 @@
25
25
  "tsc": "tsc"
26
26
  },
27
27
  "dependencies": {
28
- "@prose-reader/shared": "^1.109.0"
28
+ "@prose-reader/shared": "^1.110.0"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "rxjs": "*"
@@ -33,5 +33,5 @@
33
33
  "devDependencies": {
34
34
  "jsdom": "^24.0.0"
35
35
  },
36
- "gitHead": "d43a4215853cb74009804fb224c6483a2a9bafd0"
36
+ "gitHead": "6e6347db9d3399ce79b19a00e81ada1030526223"
37
37
  }