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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "layerpro",
3
3
  "displayName": "layerpro",
4
- "version": "0.4.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.tsx",
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.tsx",
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": "./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
- "typings/*"
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.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",
@@ -0,0 +1,8 @@
1
+ /*
2
+ Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
+ License: MIT
4
+ */
5
+
6
+ declare module '*.mp3'
7
+ declare module '*.ogg'
8
+ declare module '*.mp3'
@@ -1,6 +1,6 @@
1
1
  /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
2
+ Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
+ License: MIT
4
4
  */
5
5
 
6
6
  declare module '*.htm'
@@ -1,6 +1,6 @@
1
1
  /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
2
+ Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
+ License: MIT
4
4
  */
5
5
 
6
6
  type icon = {}
@@ -0,0 +1,9 @@
1
+ /*
2
+ Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
+ License: MIT
4
+ */
5
+
6
+ declare module "*.svg" {
7
+ const value: any
8
+ export default value
9
+ }
@@ -1,13 +1,13 @@
1
1
  /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
2
+ Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
+ License: MIT
4
4
  */
5
5
 
6
6
  type $ = {}
7
- type JQuery = {}
7
+ type jQuery = {}
8
8
 
9
9
  declare var $: any
10
- declare var JQuery: any
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
- JQuery: any
18
+ jQuery: any
19
19
  }
20
20
  }
21
21
 
22
22
  $ = globalThis.$ || {}
23
- JQuery = globalThis.JQuery || {}
23
+ jQuery = globalThis.jQuery || {}
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
2
+ Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
3
  License: MIT
4
4
  */
5
5
 
@@ -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
+ }