layerpro 0.9.44 → 0.9.55
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 -0
- package/docs/index.md +2 -0
- package/index.js +4 -4
- package/package.json +2 -2
- package/types/layerpro.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "layerpro",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.55",
|
|
4
4
|
"description": "Custom popups, alert, confirmn, prompt... by Dario Passariello",
|
|
5
5
|
"copyright": "Dario Passariello",
|
|
6
6
|
"license": "MIT",
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"ts-node": "10.9.2",
|
|
171
171
|
"typescript": "5.7.2",
|
|
172
172
|
"webpack": "^5.97.1",
|
|
173
|
-
"webpack-cli": "
|
|
173
|
+
"webpack-cli": "6.0.1",
|
|
174
174
|
"webpack-dev-server": "^5.2.0"
|
|
175
175
|
}
|
|
176
176
|
}
|
package/types/layerpro.d.ts
CHANGED
|
@@ -94,7 +94,6 @@ interface _layerpro {
|
|
|
94
94
|
readonly confirm: (txt: String, function_: Function, noFunction_: Function) => any
|
|
95
95
|
readonly purge: (document: Document) => any
|
|
96
96
|
readonly credits: (txt: String) => any
|
|
97
|
-
|
|
98
97
|
readonly popup: {
|
|
99
98
|
|
|
100
99
|
[key: string]: any
|
|
@@ -118,6 +117,9 @@ interface _layerpro {
|
|
|
118
117
|
// readonly index: (value: any) => {}
|
|
119
118
|
// readonly zIndex: (value: any) => {}
|
|
120
119
|
}
|
|
120
|
+
|
|
121
|
+
SmoothScroll: (target: any, speed: any, smooth: any) => any
|
|
122
|
+
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
declare var layerpro: _layerpro
|