dphelper 1.8.112 → 1.8.114
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 +2 -2
- package/docs/index.md +2 -2
- package/documents/TOOLS.md +1 -1
- package/index.js +1 -1
- package/package.json +12 -4
- package/types/dphelper.d.ts +4 -4
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
|