layerpro 1.2.3 → 1.5.0
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 +21 -0
- package/index.js +1 -1
- package/package.json +80 -163
package/README.md
CHANGED
|
@@ -49,6 +49,27 @@ require("layerpro");
|
|
|
49
49
|
<script src="https://cdn.jsdelivr.net/npm/layerpro"></script>
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
> [!IMPORTANT]
|
|
55
|
+
> Your project need to have jquery as dependencies
|
|
56
|
+
> Use this on core config
|
|
57
|
+
|
|
58
|
+
### **install jquery**
|
|
59
|
+
|
|
60
|
+
```js
|
|
61
|
+
npm -D install jquery
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### **load jquery in your project**
|
|
65
|
+
|
|
66
|
+
```js
|
|
67
|
+
import $ from "jquery";
|
|
68
|
+
window.$ = window.jQuery = $
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
52
73
|
## How to use it
|
|
53
74
|
|
|
54
75
|
ype layerpro in your console to explore all the available tools you can use globally! You can call these tools from anywhere without needing to import them (just include the import once in your index file).
|