@prose-reader/react-reader 1.254.0 → 1.256.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/context/ReactReaderProvider.d.ts +2 -6
- package/dist/context/context.d.ts +4 -3
- package/dist/fonts/useFontSizeNotifications.d.ts +4 -0
- package/dist/index.js +664 -643
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/notifications/useNotifications.d.ts +0 -3
- package/dist/settings/types.d.ts +2 -0
- package/package.json +2 -2
package/dist/settings/types.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export type SETTING_SCOPE = "book" | "device" | "global";
|
|
2
|
+
export type SETTING_SCOPE_REFERENCE = "book" | "global" | "mobile" | "tablet" | "desktop";
|
|
2
3
|
export declare const SETTINGS_SCOPES: SETTING_SCOPE[];
|
|
4
|
+
export declare const SETTINGS_SCOPES_REFERENCES: SETTING_SCOPE_REFERENCE[];
|
|
3
5
|
export declare const SCOPE_DEVICE_MOBILE_QUERY = "(max-width: 767px)";
|
|
4
6
|
export declare const SCOPE_DEVICE_TABLET_QUERY = "(max-width: 1023px)";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prose-reader/react-reader",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.256.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"optional": true
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "6a375d0f5be4abe0220fb37c1eef757d80afcef7"
|
|
58
58
|
}
|