@jsamuel1/pptxgenjs 4.1.0 → 4.1.1
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 +7 -7
- package/dist/pptxgen.bundle.js +7 -7
- package/dist/pptxgen.bundle.js.map +1 -1
- package/dist/pptxgen.cjs.js +208 -13
- package/dist/pptxgen.es.js +208 -13
- package/dist/pptxgen.min.js +8 -8
- package/dist/pptxgen.min.js.map +1 -1
- package/package.json +23 -21
package/README.md
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|

|
|
4
4
|
|
|
5
5
|

|
|
6
|
-

|
|
7
|
-

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
10
|
|
|
11
11
|
## 🚀 Features
|
|
12
12
|
|
|
@@ -64,11 +64,11 @@ Choose your preferred method to install **PptxGenJS**:
|
|
|
64
64
|
### Quick Install (Node-based)
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
npm install pptxgenjs
|
|
67
|
+
npm install @jsamuel1/pptxgenjs
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
|
-
yarn add pptxgenjs
|
|
71
|
+
yarn add @jsamuel1/pptxgenjs
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
### CDN (Browser Usage)
|
|
@@ -122,7 +122,7 @@ PptxGenJS PowerPoint presentations are created via JavaScript by following 4 bas
|
|
|
122
122
|
#### Angular/React, ES6, TypeScript
|
|
123
123
|
|
|
124
124
|
```typescript
|
|
125
|
-
import pptxgen from "pptxgenjs";
|
|
125
|
+
import pptxgen from "@jsamuel1/pptxgenjs";
|
|
126
126
|
|
|
127
127
|
// 1. Create a new Presentation
|
|
128
128
|
let pres = new pptxgen();
|