layerpro 0.0.60 → 0.0.61
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/init.js +0 -2
- package/package.json +1 -1
- package/typings/cordova.d.ts +12 -0
- package/typings/dphelper.d.ts +29 -0
- package/typings/layerpro.d.ts +2 -1
- package/typings/menupro.d.ts +18 -0
- package/typings/namespace.d.ts +7 -0
package/init.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: CC BY-NC-ND 4.0
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
declare module 'dphelper'
|
|
7
|
+
declare var dphelper: any
|
|
8
|
+
declare var store: any
|
|
9
|
+
declare var state: any
|
|
10
|
+
// declare var _dph: any;
|
|
11
|
+
|
|
12
|
+
declare module 'jquery'
|
|
13
|
+
declare var $: any
|
|
14
|
+
|
|
15
|
+
////////////////////////////////////////////////////////////////
|
|
16
|
+
|
|
17
|
+
declare global {
|
|
18
|
+
interface Window {
|
|
19
|
+
dphelper: any
|
|
20
|
+
store: any
|
|
21
|
+
state: any
|
|
22
|
+
//_dph:any
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
dphelper = window.dphelper || []
|
|
27
|
+
store = window.store || []
|
|
28
|
+
state = window.state || []
|
|
29
|
+
//_dph = window._dph || [];
|
package/typings/layerpro.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ License: CC BY-NC-ND 4.0
|
|
|
6
6
|
declare module 'layerpro'
|
|
7
7
|
declare var layerpro: any
|
|
8
8
|
|
|
9
|
-
// Remove
|
|
9
|
+
// Remove popup errors about number of paramentes or existence
|
|
10
10
|
declare function confirm(f1?, func1?, func2?)
|
|
11
11
|
declare function prompt(f1?, string?)
|
|
12
12
|
declare function message(f1?)
|
|
@@ -20,3 +20,4 @@ declare global {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
layerpro = window.layerpro || {}
|
|
23
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: CC BY-NC-ND 4.0
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
declare module 'menupro'
|
|
7
|
+
declare var menupro: any
|
|
8
|
+
|
|
9
|
+
////////////////////////////////////////////////////////////////
|
|
10
|
+
|
|
11
|
+
declare global {
|
|
12
|
+
interface Window {
|
|
13
|
+
menupro: any
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
menupro = window.menupro || {}
|
|
18
|
+
|