layerpro 0.4.0 → 0.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/index.d.ts +4 -12
- package/index.js +1 -1
- package/package.json +6 -6
- package/types/audio.d.ts +8 -0
- package/{typings → types}/files.d.ts +2 -2
- package/{typings → types}/icon.d.ts +2 -2
- package/types/image.d.ts +9 -0
- package/{typings → types}/jquery.d.ts +6 -6
- package/{typings → types}/layerpro.d.ts +1 -1
- package/types/styles.d.ts +21 -0
- package/types/vscode.d.ts +14724 -0
- package/typings/audio.d.ts +0 -8
- package/typings/image.d.ts +0 -9
- package/typings/styles.d.ts +0 -22
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "layerpro",
|
|
3
3
|
"displayName": "layerpro",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"description": "Manage your popups and customize them",
|
|
6
6
|
"copyright": "Dario Passariello",
|
|
7
7
|
"deprecated": false,
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"homepage": "https://github.com/passariello/layerpro",
|
|
10
10
|
"targets": "web",
|
|
11
|
-
"main": "./index.
|
|
11
|
+
"main": "./index.ts",
|
|
12
12
|
"preferGlobal": true,
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "Dario Passariello",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"type": "beta",
|
|
55
55
|
"folder": "/",
|
|
56
56
|
"appPort": "",
|
|
57
|
-
"main": "index.
|
|
57
|
+
"main": "index.ts",
|
|
58
58
|
"target": "web",
|
|
59
59
|
"proxy": {},
|
|
60
60
|
"api": {
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"android"
|
|
82
82
|
]
|
|
83
83
|
},
|
|
84
|
-
"typings": "./
|
|
84
|
+
"typings": "./types/*",
|
|
85
85
|
"globals": {
|
|
86
86
|
"jQuery": {},
|
|
87
87
|
"$": {},
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"url": "https://github.com/passariello/layerpro/issues"
|
|
131
131
|
},
|
|
132
132
|
"typing": [
|
|
133
|
-
"
|
|
133
|
+
"types/*"
|
|
134
134
|
],
|
|
135
135
|
"scripts": {
|
|
136
136
|
"make-dist": "webpack --env NAME=LAYERPRO --env MODE=PROD --config webpack.ts && cd dist",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"concurrently": "8.2.2",
|
|
170
170
|
"copy-webpack-plugin": "12.0.2",
|
|
171
171
|
"css": "3.0.0",
|
|
172
|
-
"css-loader": "7.1.
|
|
172
|
+
"css-loader": "7.1.2",
|
|
173
173
|
"dotenv": "16.4.5",
|
|
174
174
|
"file-loader": "6.2.0",
|
|
175
175
|
"fs": "0.0.1-security",
|
package/types/audio.d.ts
ADDED
package/types/image.d.ts
ADDED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright: ©
|
|
3
|
-
License:
|
|
2
|
+
Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: MIT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
type $ = {}
|
|
7
|
-
type
|
|
7
|
+
type jQuery = {}
|
|
8
8
|
|
|
9
9
|
declare var $: any
|
|
10
|
-
declare var
|
|
10
|
+
declare var jQuery: any
|
|
11
11
|
declare module 'jquery'
|
|
12
12
|
|
|
13
13
|
// ////////////////////////////////////////////////////////////////
|
|
@@ -15,9 +15,9 @@ declare module 'jquery'
|
|
|
15
15
|
declare global {
|
|
16
16
|
interface globalThis {
|
|
17
17
|
$: any
|
|
18
|
-
|
|
18
|
+
jQuery: any
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
$ = globalThis.$ || {}
|
|
23
|
-
|
|
23
|
+
jQuery = globalThis.jQuery || {}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: MIT
|
|
4
|
+
*/
|
|
5
|
+
declare module '*.less' {
|
|
6
|
+
const resource: { [key: string]: any }
|
|
7
|
+
export = resource
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
////////////////////////////////////////////////////////////////
|
|
11
|
+
|
|
12
|
+
declare module '*.scss' {
|
|
13
|
+
const resource: { [key: string]: any }
|
|
14
|
+
export = resource
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
////////////////////////////////////////////////////////////////
|
|
18
|
+
declare module '*.sass' {
|
|
19
|
+
const resource: { [key: string]: any }
|
|
20
|
+
export = resource
|
|
21
|
+
}
|