epub-flow 0.0.2 → 0.0.3
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/README.md +3 -13
- package/epub-flow-0.0.3.tgz +0 -0
- package/fesm2022/epub-flow.mjs +156 -84
- package/fesm2022/epub-flow.mjs.map +1 -1
- package/lib/add-notes/add-notes.component.d.ts +3 -3
- package/lib/epub-common-popup/epub-common-popup.component.d.ts +5 -5
- package/lib/epub-notification/notification-toast.component.d.ts +14 -0
- package/lib/epub-notification/notification.service.d.ts +21 -0
- package/lib/epub-reader.module.d.ts +5 -8
- package/lib/reader-main/reader-main.component.d.ts +3 -3
- package/package.json +2 -4
- package/public-api.d.ts +2 -0
- package/epub-flow-0.0.2.tgz +0 -0
package/README.md
CHANGED
|
@@ -15,10 +15,8 @@ A premium, feature-rich EPUB reader library for Angular applications. Built with
|
|
|
15
15
|
|
|
16
16
|
## 🚀 Installation
|
|
17
17
|
|
|
18
|
-
Install the package and its peer dependencies:
|
|
19
|
-
|
|
20
18
|
```bash
|
|
21
|
-
npm install epub-flow
|
|
19
|
+
npm install epub-flow ngx-editor epubjs
|
|
22
20
|
```
|
|
23
21
|
|
|
24
22
|
## 🛠 Setup
|
|
@@ -39,16 +37,8 @@ import { EpubReaderModule } from 'epub-flow';
|
|
|
39
37
|
export class AppModule { }
|
|
40
38
|
```
|
|
41
39
|
|
|
42
|
-
### 2.
|
|
43
|
-
|
|
44
|
-
Add PrimeNG and PrimeIcons styles to your `angular.json` or `styles.scss`:
|
|
45
|
-
|
|
46
|
-
```scss
|
|
47
|
-
/* In styles.scss */
|
|
48
|
-
@import "primeicons/primeicons.css";
|
|
49
|
-
@import "primeng/resources/themes/lara-light-blue/theme.css";
|
|
50
|
-
@import "primeng/resources/primeng.min.css";
|
|
51
|
-
```
|
|
40
|
+
### 2. Required Styles
|
|
41
|
+
The package is designed to be standalone. You only need to ensure your global `styles.scss` is set up for your application. No external UI library styles are required.
|
|
52
42
|
|
|
53
43
|
## 📖 Usage
|
|
54
44
|
|
|
Binary file
|