@prose-reader/core 1.63.0 → 1.65.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.
@@ -5,7 +5,7 @@ export declare abstract class SettingsManager<InputSettings, OutputSettings> imp
5
5
  protected inputSettings: InputSettings;
6
6
  protected outputSettings?: OutputSettings;
7
7
  protected outputSettingsUpdateSubject: Subject<OutputSettings>;
8
- settings$: Observable<OutputSettings>;
8
+ _settings$: Observable<OutputSettings>;
9
9
  constructor(initialSettings: Partial<InputSettings>);
10
10
  _prepareUpdate(settings: Partial<InputSettings>): {
11
11
  hasChanged: boolean;
@@ -16,5 +16,6 @@ export declare abstract class SettingsManager<InputSettings, OutputSettings> imp
16
16
  abstract getDefaultSettings(): InputSettings;
17
17
  update(settings: Partial<InputSettings>): void;
18
18
  get settings(): OutputSettings;
19
+ get settings$(): Observable<OutputSettings>;
19
20
  destroy(): void;
20
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prose-reader/core",
3
- "version": "1.63.0",
3
+ "version": "1.65.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.63.0"
28
+ "@prose-reader/shared": "^1.65.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": "6a122a4d69afc56be49c2625f7c2dbab694e438a"
36
+ "gitHead": "1a0b8dee95b73a2a30f108791e42ea2981abcc5d"
37
37
  }