dphelper 0.8.6 → 0.9.5
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/HISTORY.md +11 -3
- package/index.d.ts +3 -23
- package/index.js +1 -1
- package/package.json +17 -22
- package/{typings → types}/audio.d.ts +1 -1
- package/types/cordova.d.ts +18 -0
- package/types/dphelper.d.ts +42 -0
- package/{typings → types}/files.d.ts +1 -1
- package/{typings → types}/icon.d.ts +2 -2
- package/{typings → types}/image.d.ts +1 -1
- package/{typings → types}/jquery.d.ts +8 -5
- package/{typings → types}/layerpro.d.ts +6 -2
- package/{typings → types}/styles.d.ts +1 -2
- package/types/vscode.d.ts +14724 -0
- package/typings/cordova.d.ts +0 -14
- package/typings/dphelper.d.ts +0 -33
package/HISTORY.md
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
-
## v0.
|
|
3
|
+
## v0.9.0 / 2024-05-24
|
|
4
4
|
|
|
5
5
|
- NPM update [Dario Passariello](https://github.com/passariello) ()
|
|
6
6
|
- Fix some bugs [Dario Passariello](https://github.com/passariello) ()
|
|
7
|
-
- Move to ts files [Dario Passariello](https://github.com/passariello) ()
|
|
8
|
-
- Add type support [Dario Passariello](https://github.com/passariello) ()
|
|
9
7
|
- Compatible state for react [Dario Passariello](https://github.com/passariello) ()
|
|
8
|
+
- Creation of observer [Dario Passariello](https://github.com/passariello) ()
|
|
9
|
+
- Now state use Proxy as event generator [Dario Passariello](https://github.com/passariello) ()
|
|
10
10
|
|
|
11
11
|
## Previous
|
|
12
12
|
|
|
13
|
+
## v0.8.6 / 2024-05-17
|
|
14
|
+
|
|
15
|
+
- NPM update [Dario Passariello](https://github.com/passariello) ()
|
|
16
|
+
- Fix some bugs [Dario Passariello](https://github.com/passariello) ()
|
|
17
|
+
- Move to ts files [Dario Passariello](https://github.com/passariello) ()
|
|
18
|
+
- Add type support [Dario Passariello](https://github.com/passariello) ()
|
|
19
|
+
- Compatible state for react [Dario Passariello](https://github.com/passariello) ()
|
|
20
|
+
|
|
13
21
|
## v0.7.7 / 2024-05-16
|
|
14
22
|
|
|
15
23
|
- NPM update [Dario Passariello](https://github.com/passariello) ()
|
package/index.d.ts
CHANGED
|
@@ -1,27 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright: ©
|
|
2
|
+
Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
|
|
3
3
|
License: MIT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
/// <reference path="./
|
|
7
|
-
/// <reference path="./
|
|
8
|
-
|
|
9
|
-
declare namespace dphelper {
|
|
10
|
-
|
|
11
|
-
export interface GlobalThis {
|
|
12
|
-
dphelper: any
|
|
13
|
-
}
|
|
14
|
-
export interface GlobalThis {
|
|
15
|
-
state: any
|
|
16
|
-
}
|
|
17
|
-
export interface GlobalThis {
|
|
18
|
-
store: any
|
|
19
|
-
}
|
|
20
|
-
export interface GlobalThis {
|
|
21
|
-
cache: any
|
|
22
|
-
}
|
|
23
|
-
export interface GlobalThis {
|
|
24
|
-
api: any
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
}
|
|
6
|
+
/// <reference path="./types/dphelper.d.ts" />
|
|
7
|
+
/// <reference path="./types/jquery.d.ts" />
|