@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.
- package/dist/enhancers/navigation/report.d.ts +2 -0
- package/dist/enhancers/pagination/enhancer.d.ts +1 -1
- package/dist/enhancers/pagination/index.d.ts +1 -1
- package/dist/enhancers/pagination/types.d.ts +1 -1
- package/dist/index.js +3243 -3325
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +54 -54
- package/dist/index.umd.cjs.map +1 -1
- package/dist/report.d.ts +2 -0
- package/dist/settings/SettingsManager.d.ts +2 -2
- package/dist/settings/SettingsManagerOverload.d.ts +1 -1
- package/dist/spine/Pages.d.ts +2 -2
- package/dist/spine/report.d.ts +2 -0
- package/package.json +5 -5
package/dist/report.d.ts
ADDED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable, Subject } from 'rxjs';
|
|
2
|
-
import { SettingsInterface } from './SettingsInterface';
|
|
3
2
|
import { DestroyableClass } from '../utils/DestroyableClass';
|
|
4
|
-
|
|
3
|
+
import { SettingsInterface } from './SettingsInterface';
|
|
4
|
+
export declare abstract class SettingsManager<InputSettings extends object, OutputSettings extends Record<string, unknown>> extends DestroyableClass implements SettingsInterface<InputSettings, OutputSettings> {
|
|
5
5
|
protected inputSettings: InputSettings;
|
|
6
6
|
protected outputSettings?: OutputSettings;
|
|
7
7
|
protected outputSettingsUpdateSubject: Subject<OutputSettings>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Observable, ObservedValueOf, Subject } from 'rxjs';
|
|
2
2
|
import { SettingsInterface } from './SettingsInterface';
|
|
3
3
|
import { CoreInputSettings, CoreOutputSettings } from './types';
|
|
4
|
-
export declare abstract class SettingsManagerOverload<InputSettings, OutputSettings, ParentInputSettings extends CoreInputSettings, ParentOutputSettings extends CoreOutputSettings> implements SettingsInterface<InputSettings & ParentInputSettings, OutputSettings & ParentOutputSettings> {
|
|
4
|
+
export declare abstract class SettingsManagerOverload<InputSettings extends object, OutputSettings extends object, ParentInputSettings extends CoreInputSettings, ParentOutputSettings extends CoreOutputSettings> implements SettingsInterface<InputSettings & ParentInputSettings, OutputSettings & ParentOutputSettings> {
|
|
5
5
|
protected inputSettings: InputSettings;
|
|
6
6
|
protected outputSettings: OutputSettings;
|
|
7
7
|
protected outputSettingsUpdateSubject: Subject<OutputSettings>;
|
package/dist/spine/Pages.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { Context } from '../context/Context';
|
|
3
|
-
import { SpineItem } from '../spineItem/SpineItem';
|
|
4
3
|
import { SpineItemLocator } from '../spineItem/locationResolver';
|
|
4
|
+
import { SpineItem } from '../spineItem/SpineItem';
|
|
5
5
|
import { SpineItemPageLayout } from '../spineItem/types';
|
|
6
6
|
import { ReactiveEntity } from '../utils/ReactiveEntity';
|
|
7
7
|
import { Viewport } from '../viewport/Viewport';
|
|
8
|
+
import { SpineLocator } from './locator/SpineLocator';
|
|
8
9
|
import { SpineItemsManager } from './SpineItemsManager';
|
|
9
10
|
import { SpineLayout } from './SpineLayout';
|
|
10
|
-
import { SpineLocator } from './locator/SpineLocator';
|
|
11
11
|
import { SpineItemPageSpineLayout, SpinePosition } from './types';
|
|
12
12
|
export declare const spinePositionToSpineItemSpineLayout: ({ position, pageSize, }: {
|
|
13
13
|
position: SpinePosition;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prose-reader/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.235.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"tsc": "tsc"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@prose-reader/cfi": "^1.
|
|
27
|
-
"@prose-reader/shared": "^1.
|
|
26
|
+
"@prose-reader/cfi": "^1.235.0",
|
|
27
|
+
"@prose-reader/shared": "^1.235.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"rxjs": "*"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"happy-dom": "
|
|
33
|
+
"happy-dom": "*"
|
|
34
34
|
},
|
|
35
35
|
"madge": {
|
|
36
36
|
"detectiveOptions": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "3dea646d56d3fc05d37fb0139622ada6df27c41c"
|
|
43
43
|
}
|