@pqina/pintura 8.58.1 → 8.58.2
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 +19 -6
- package/package.json +1 -1
- package/pintura-iife.js +2 -2
- package/pintura-umd.js +2 -2
- package/pintura.css +2 -2
- package/pintura.js +2 -2
- package/pintura.module.css +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,18 @@ This package is for testing Pintura in your project. This version of Pintura wil
|
|
|
4
4
|
|
|
5
5
|
Documentation: https://pqina.nl/pintura/docs/
|
|
6
6
|
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @pqina/pintura
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
If you're using Svelte, Vue, React, or Angular, you can install the matching adapter components like this.
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @pqina/svelte-pintura
|
|
17
|
+
```
|
|
18
|
+
|
|
7
19
|
## Example implementations
|
|
8
20
|
|
|
9
21
|
Use one of the example projects below as a starting point or guideline.
|
|
@@ -29,6 +41,9 @@ Frameworks:
|
|
|
29
41
|
- [NextJS](https://github.com/pqina/pintura-example-nextjs)
|
|
30
42
|
- [React Native](https://github.com/pqina/pintura-example-react-native)
|
|
31
43
|
- [React Native TypeScript](https://github.com/pqina/pintura-example-react-native-typescript)
|
|
44
|
+
- [Cordova](https://github.com/pqina/pintura-example-cordova)
|
|
45
|
+
- [Capacitor](https://github.com/pqina/pintura-example-capacitor)
|
|
46
|
+
- [Ionic 6](https://github.com/pqina/pintura-example-ionic-6)
|
|
32
47
|
|
|
33
48
|
File upload libraries:
|
|
34
49
|
|
|
@@ -38,7 +53,9 @@ File upload libraries:
|
|
|
38
53
|
- [Dropzone](https://github.com/pqina/pintura-example-dropzone)
|
|
39
54
|
- [Uppy](https://github.com/pqina/pintura-example-uppy)
|
|
40
55
|
|
|
41
|
-
##
|
|
56
|
+
## Components and Adapters
|
|
57
|
+
|
|
58
|
+
Individual components can be found below:
|
|
42
59
|
|
|
43
60
|
- [PinturaInput](https://github.com/pqina/pintura-component-pintura-input)
|
|
44
61
|
- [Vue](https://github.com/pqina/pintura-component-vue)
|
|
@@ -47,17 +64,13 @@ File upload libraries:
|
|
|
47
64
|
- [Svelte](https://github.com/pqina/pintura-component-svelte)
|
|
48
65
|
- [React Native](https://github.com/pqina/pintura-component-react-native)
|
|
49
66
|
|
|
50
|
-
|
|
67
|
+
Adapters can be found here:
|
|
51
68
|
|
|
52
69
|
- [jQuery](https://github.com/pqina/pintura-adapter-jquery)
|
|
53
70
|
- [FilePond](https://github.com/pqina/filepond-plugin-image-editor)
|
|
54
71
|
- [Uppy](https://github.com/pqina/pintura-adapter-uppy)
|
|
55
72
|
- [Dropzone](https://github.com/pqina/pintura-adapter-dropzone)
|
|
56
73
|
|
|
57
|
-
## License key
|
|
58
|
-
|
|
59
|
-
The license key is only used for registering the purchase and gaining access to the PQINA customer portal, it doesn't have to be used in the JavaScript package itself.
|
|
60
|
-
|
|
61
74
|
## Compatibility
|
|
62
75
|
|
|
63
76
|
Pintura works on all modern browsers and devices.
|
package/package.json
CHANGED