bok-reader 0.4.3 → 0.4.5
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/bok.es.js +1993 -1649
- package/dist/bok.umd.js +13 -13
- package/dist/components/LoadingScreen/LoadingScreen.d.ts +1 -2
- package/dist/hooks/useEpub.d.ts +1 -0
- package/package.json +45 -45
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
type LoadingScreenProps = {
|
|
2
2
|
isLoading: boolean;
|
|
3
|
-
color: string | undefined;
|
|
4
3
|
};
|
|
5
|
-
export default function LoadingScreen({ isLoading,
|
|
4
|
+
export default function LoadingScreen({ isLoading, }: LoadingScreenProps): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
export {};
|
package/dist/hooks/useEpub.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
2
|
+
"name": "bok-reader",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.4.5",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/bok.umd.js",
|
|
7
|
+
"module": "dist/bok.es.js",
|
|
8
|
+
"types": "dist/main.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "vite",
|
|
14
|
+
"build": "rimraf dist && vite build",
|
|
15
|
+
"prepublishOnly": "rimraf dist && vite build",
|
|
16
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
17
|
+
"preview": "vite preview"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"jszip": "^3.10.1",
|
|
21
|
+
"lucide-react": "^0.555.0"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"react": "19.2.1",
|
|
25
|
+
"react-dom": "19.2.1"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^22.14.0",
|
|
29
|
+
"@types/react": "^18.0.0",
|
|
30
|
+
"@types/react-dom": "^18.0.0",
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
32
|
+
"@typescript-eslint/parser": "^7.0.2",
|
|
33
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
34
|
+
"ajv": "^8.17.1",
|
|
35
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
36
|
+
"eslint": "^8.56.0",
|
|
37
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
38
|
+
"eslint-plugin-react-refresh": "^0.4.5",
|
|
39
|
+
"react": "19.2.0",
|
|
40
|
+
"react-dom": "19.2.0",
|
|
41
|
+
"rimraf": "^6.0.1",
|
|
42
|
+
"typescript": "^5.2.2",
|
|
43
|
+
"vite": "^5.1.4",
|
|
44
|
+
"vite-plugin-dts": "^4.5.3",
|
|
45
|
+
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
46
|
+
}
|
|
47
47
|
}
|