dphelper 1.8.112 → 1.8.120
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/LICENSE.md +3 -15
- package/README.md +2 -2
- package/docs/index.md +2 -2
- package/documents/TOOLS.md +1 -1
- package/index.js +1 -1
- package/package.json +13 -5
- package/types/dphelper.d.ts +4 -4
package/LICENSE.md
CHANGED
|
@@ -2,20 +2,8 @@ MIT License
|
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2019 Dario Passariello
|
|
4
4
|
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
11
6
|
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14
8
|
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ dpHelper is a precise and complete collection of 190+ tools ready to use in all
|
|
|
29
29
|
### Example in React
|
|
30
30
|
|
|
31
31
|
```javascript
|
|
32
|
-
import
|
|
32
|
+
import { useEffect } from 'react';
|
|
33
33
|
import 'dphelper';
|
|
34
34
|
|
|
35
35
|
function App() {
|
|
@@ -228,7 +228,7 @@ store.removeAll() // Output: "ok"
|
|
|
228
228
|
### Example in React
|
|
229
229
|
|
|
230
230
|
```javascript
|
|
231
|
-
import
|
|
231
|
+
import { useEffect } from 'react';
|
|
232
232
|
import 'dphelper';
|
|
233
233
|
|
|
234
234
|
function App() {
|
package/docs/index.md
CHANGED
|
@@ -29,7 +29,7 @@ dpHelper is a precise and complete collection of 190+ tools ready to use in all
|
|
|
29
29
|
### Example in React
|
|
30
30
|
|
|
31
31
|
```javascript
|
|
32
|
-
import
|
|
32
|
+
import { useEffect } from 'react';
|
|
33
33
|
import 'dphelper';
|
|
34
34
|
|
|
35
35
|
function App() {
|
|
@@ -228,7 +228,7 @@ store.removeAll() // Output: "ok"
|
|
|
228
228
|
### Example in React
|
|
229
229
|
|
|
230
230
|
```javascript
|
|
231
|
-
import
|
|
231
|
+
import { useEffect } from 'react';
|
|
232
232
|
import 'dphelper';
|
|
233
233
|
|
|
234
234
|
function App() {
|
package/documents/TOOLS.md
CHANGED
|
@@ -476,7 +476,7 @@ This document provides a comprehensive list of all available functions in the `d
|
|
|
476
476
|
<br> Makes an SVG element draggable.
|
|
477
477
|
- `dphelper.svg.toggle(evt, container, source1, source2)`
|
|
478
478
|
<br> Toggles an SVG element.
|
|
479
|
-
- `dphelper.svg.convert(options
|
|
479
|
+
- `dphelper.svg.convert(options)`
|
|
480
480
|
<br> Converts an SVG element.
|
|
481
481
|
|
|
482
482
|
### System
|