menupro 0.0.8 → 0.1.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 +15 -0
- package/index.js +1 -1
- package/menupro-0.1.0.tgz +0 -0
- package/package.json +158 -127
- package/typings/files.d.ts +11 -0
- package/typings/image.d.ts +9 -0
- package/typings/jquery.d.ts +18 -0
- package/typings/menupro.d.ts +27 -0
- package/typings/styles.d.ts +22 -0
- package/typings/vscode.d.ts +14724 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,128 +1,159 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
2
|
+
"name": "menupro",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Generate nested menu like desktop apps",
|
|
5
|
+
"deprecated": false,
|
|
6
|
+
"appCode": "menupro",
|
|
7
|
+
"appCodeRelease": "menupro",
|
|
8
|
+
"appName": "menupro",
|
|
9
|
+
"appType": "beta",
|
|
10
|
+
"appFolder": "/",
|
|
11
|
+
"appAPI": "api",
|
|
12
|
+
"apiDev": "",
|
|
13
|
+
"apiProd": "",
|
|
14
|
+
"main": "index.ts",
|
|
15
|
+
"npmName": "menupro",
|
|
16
|
+
"npmFileMap": [
|
|
17
|
+
{
|
|
18
|
+
"basePath": "/dist/",
|
|
19
|
+
"files": [
|
|
20
|
+
"*.js"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"exports": {
|
|
25
|
+
".": "./index.ts"
|
|
26
|
+
},
|
|
27
|
+
"types": "./index.ts",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"exports": {
|
|
30
|
+
".": "./index.ts"
|
|
31
|
+
},
|
|
32
|
+
"types": "./index.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"targets": {
|
|
35
|
+
"main": {
|
|
36
|
+
"includeNodeModules": {
|
|
37
|
+
"react": false,
|
|
38
|
+
"react-dom": false
|
|
39
|
+
},
|
|
40
|
+
"isLibrary": true
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"globals": {
|
|
44
|
+
"jQuery": {},
|
|
45
|
+
"$": {},
|
|
46
|
+
"dphelper": {},
|
|
47
|
+
"layerpro": {},
|
|
48
|
+
"menupro": {}
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=0.10.0"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"make-dist": "webpack --progress --color --mode production --config webpack.config.js && cd dist && npm pack",
|
|
55
|
+
"backup": "cd mcp/backup && run.bat",
|
|
56
|
+
"git": "cd mcp/node && node gitDeploy",
|
|
57
|
+
"update": "cd mcp/node && node npmUpdate",
|
|
58
|
+
"lint": "eslint --ext .ts,.tsx,.js,.jsx --fix"
|
|
59
|
+
},
|
|
60
|
+
"eslintConfig": {
|
|
61
|
+
"globals": {
|
|
62
|
+
"window": true,
|
|
63
|
+
"menupro": true
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"author": {
|
|
67
|
+
"name": "Dario Passariello",
|
|
68
|
+
"website": "https://dario.passariello.ca",
|
|
69
|
+
"email": "dariopassariello@gmail.com"
|
|
70
|
+
},
|
|
71
|
+
"license": "MIT",
|
|
72
|
+
"contributors": [
|
|
73
|
+
{
|
|
74
|
+
"name": "Dario Passariello",
|
|
75
|
+
"email": "dariopassariello@gmail.com"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "Valeria Cala Scaglitta",
|
|
79
|
+
"email": "valeriacalascaglitta@gmail.com"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"keywords": [
|
|
83
|
+
"application",
|
|
84
|
+
"top",
|
|
85
|
+
"menu",
|
|
86
|
+
"array",
|
|
87
|
+
"nav",
|
|
88
|
+
"json",
|
|
89
|
+
"passariello"
|
|
90
|
+
],
|
|
91
|
+
"homepage": "https://github.com/passariello/menupro",
|
|
92
|
+
"funding": [
|
|
93
|
+
{
|
|
94
|
+
"type": "individual",
|
|
95
|
+
"url": "https://www.paypal.com/donate/?business=HC7LJ2ZXRRNDL&no_recurring=0&item_name=I+am+a+software+developer.+Just+a+donation+can+help+me+to+have+more+time+to+dedicate+on+this+project¤cy_code=CAD"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "patreon",
|
|
99
|
+
"url": "https://www.patreon.com/passariello"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"repository": {
|
|
103
|
+
"type": "git",
|
|
104
|
+
"url": "https://github.com/passariello/menupro.git",
|
|
105
|
+
"help": "https://github.com/passariello/menupro.git#readme"
|
|
106
|
+
},
|
|
107
|
+
"bugs": {
|
|
108
|
+
"url": "https://github.com/passariello/menupro/issues"
|
|
109
|
+
},
|
|
110
|
+
"devDependencies": {
|
|
111
|
+
"@babel/cli": "7.23.9",
|
|
112
|
+
"@babel/core": "7.23.9",
|
|
113
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
114
|
+
"@babel/plugin-transform-class-properties": "7.23.3",
|
|
115
|
+
"@babel/plugin-transform-for-of": "^7.23.6",
|
|
116
|
+
"@babel/plugin-transform-object-rest-spread": "7.23.4",
|
|
117
|
+
"@babel/plugin-transform-runtime": "7.23.9",
|
|
118
|
+
"@babel/preset-env": "7.23.9",
|
|
119
|
+
"@babel/preset-react": "7.23.3",
|
|
120
|
+
"@babel/preset-typescript": "7.23.3",
|
|
121
|
+
"@babel/runtime": "^7.23.9",
|
|
122
|
+
"@testing-library/user-event": "^14.5.2",
|
|
123
|
+
"@types/node": "20.11.17",
|
|
124
|
+
"@types/react": "^18.2.55",
|
|
125
|
+
"@types/react-dom": "^18.2.19",
|
|
126
|
+
"@types/react-redux": "^7.1.33",
|
|
127
|
+
"@types/redux": "^3.6.31",
|
|
128
|
+
"@types/webpack-env": "1.18.4",
|
|
129
|
+
"@typescript-eslint/eslint-plugin": "7.0.1",
|
|
130
|
+
"@typescript-eslint/parser": "7.0.1",
|
|
131
|
+
"babel-loader": "9.1.3",
|
|
132
|
+
"babel-polyfill": "^6.26.0",
|
|
133
|
+
"babel-preset-env": "1.7.0",
|
|
134
|
+
"babel-preset-stage-0": "^6.24.1",
|
|
135
|
+
"compression-webpack-plugin": "^11.0.0",
|
|
136
|
+
"copy-webpack-plugin": "^12.0.2",
|
|
137
|
+
"css-loader": "^6.10.0",
|
|
138
|
+
"eslint": "8.56.0",
|
|
139
|
+
"file-loader": "^6.2.0",
|
|
140
|
+
"html-webpack-plugin": "^5.6.0",
|
|
141
|
+
"jquery": "3.7.1",
|
|
142
|
+
"npm-check-updates": "^16.14.15",
|
|
143
|
+
"progress-bar-webpack-plugin": "^2.1.0",
|
|
144
|
+
"react": "^18.2.0",
|
|
145
|
+
"react-dom": "^18.2.0",
|
|
146
|
+
"react-redux": "^9.1.0",
|
|
147
|
+
"react-router": "^6.22.0",
|
|
148
|
+
"react-router-dom": "^6.22.0",
|
|
149
|
+
"sass": "^1.70.0",
|
|
150
|
+
"sass-loader": "^14.1.0",
|
|
151
|
+
"style-loader": "^3.3.4",
|
|
152
|
+
"terser-webpack-plugin": "^5.3.10",
|
|
153
|
+
"typescript": "^5.3.3",
|
|
154
|
+
"url-loader": "^4.1.1",
|
|
155
|
+
"webpack": "^5.90.1",
|
|
156
|
+
"webpack-cli": "^5.1.4",
|
|
157
|
+
"webpack-dev-server": "^5.0.0"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: MIT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
declare var $: any
|
|
7
|
+
declare module 'jquery'
|
|
8
|
+
declare var jQuery: any
|
|
9
|
+
|
|
10
|
+
// ////////////////////////////////////////////////////////////////
|
|
11
|
+
|
|
12
|
+
declare global {
|
|
13
|
+
interface window {
|
|
14
|
+
$: any
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
window.$ = window.jQuery = require('jquery')
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: MIT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
declare module 'menupro'
|
|
7
|
+
declare module 'Menupro'
|
|
8
|
+
|
|
9
|
+
declare var menupro: any
|
|
10
|
+
declare var Menupro: any
|
|
11
|
+
|
|
12
|
+
////////////////////////////////////////////////////////////////
|
|
13
|
+
|
|
14
|
+
declare global {
|
|
15
|
+
interface window {
|
|
16
|
+
menupro: any,
|
|
17
|
+
Menupro: any
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
if (typeof window === 'undefined') global.window = {}
|
|
22
|
+
|
|
23
|
+
window.menupro = window.menupro || {}
|
|
24
|
+
Menupro = window.menupro
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
+
License: MIT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
declare module '*.less' {
|
|
7
|
+
const resource: { [key: string]: string }
|
|
8
|
+
export = resource
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare module '*.scss' {
|
|
12
|
+
const resource: { [key: string]: string }
|
|
13
|
+
export = resource
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare module '*.sass' {
|
|
17
|
+
const resource: { [key: string]: string }
|
|
18
|
+
export = resource
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|