@prose-reader/core 1.234.0 → 1.235.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.
@@ -0,0 +1,2 @@
1
+ import { Report } from '@prose-reader/shared';
2
+ export declare const navigationReport: Report;
@@ -1,5 +1,5 @@
1
1
  import { LayoutEnhancerOutput } from '../layout/layoutEnhancer';
2
2
  import { EnhancerOutput, RootEnhancer } from '../types/enhancer';
3
3
  import { PaginationEnhancerAPI } from './types';
4
- export type { PaginationEnhancerAPI, EnhancerPaginationInto } from './types';
4
+ export type { EnhancerPaginationInto, PaginationEnhancerAPI } from './types';
5
5
  export declare const paginationEnhancer: <InheritOptions, InheritOutput extends EnhancerOutput<RootEnhancer> & LayoutEnhancerOutput, PaginationOutput extends PaginationEnhancerAPI<InheritOutput>>(next: (options: InheritOptions) => InheritOutput) => (options: InheritOptions) => PaginationOutput;
@@ -1,3 +1,3 @@
1
+ export * from './enhancer';
1
2
  export * from './ResourcesLocator';
2
3
  export * from './types';
3
- export * from './enhancer';
@@ -2,8 +2,8 @@ import { Observable } from 'rxjs';
2
2
  import { PaginationInfo } from '../../pagination/types';
3
3
  import { LayoutEnhancerOutput } from '../layout/layoutEnhancer';
4
4
  import { EnhancerOutput, RootEnhancer } from '../types/enhancer';
5
- import { ResourcesLocator } from './ResourcesLocator';
6
5
  import { ChapterInfo } from './chapters';
6
+ import { ResourcesLocator } from './ResourcesLocator';
7
7
  export type ExtraPaginationInfo = {
8
8
  beginChapterInfo: ChapterInfo | undefined;
9
9
  beginSpineItemReadingDirection: `rtl` | `ltr` | undefined;