layerpro 0.0.64 → 0.0.65

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.
Files changed (66) hide show
  1. package/{dist/LICENSE.txt → LICENSE.txt} +0 -0
  2. package/{dist/README.md → README.md} +0 -0
  3. package/{documents/SECURITY.md → SECURITY.md} +0 -0
  4. package/index.js +2 -7
  5. package/index.js.LICENSE.txt +29 -0
  6. package/package.json +3 -1
  7. package/.editorconfig +0 -13
  8. package/.env +0 -3
  9. package/.eslintignore +0 -12
  10. package/.eslintrc.json +0 -110
  11. package/.gitattributes +0 -2
  12. package/.jsbeautifyrc +0 -26
  13. package/.prettierignore +0 -2
  14. package/.prettierrc +0 -7
  15. package/.vscode/launch.json +0 -22
  16. package/.vscode/settings.json +0 -84
  17. package/.vscodeignore +0 -28
  18. package/__mocks__/fileMock.js +0 -3
  19. package/__mocks__/styleMock.js +0 -3
  20. package/babel.config.js +0 -34
  21. package/backup.bat +0 -43
  22. package/coverage/coverage-final.json +0 -1
  23. package/coverage/lcov-report/base.css +0 -224
  24. package/coverage/lcov-report/block-navigation.js +0 -87
  25. package/coverage/lcov-report/favicon.png +0 -0
  26. package/coverage/lcov-report/index.html +0 -101
  27. package/coverage/lcov-report/prettify.css +0 -1
  28. package/coverage/lcov-report/prettify.js +0 -2
  29. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  30. package/coverage/lcov-report/sorter.js +0 -196
  31. package/coverage/lcov.info +0 -0
  32. package/documents/LICENSE.txt +0 -21
  33. package/documents/README.md +0 -7
  34. package/init.js +0 -33
  35. package/jest.config.js +0 -61
  36. package/jsconfig.json +0 -10
  37. package/node/createTag.js +0 -7
  38. package/node/gitDeploy.js +0 -7
  39. package/node/goLive.js +0 -7
  40. package/scripts/genLayer.jsx +0 -234
  41. package/scripts/message.jsx +0 -280
  42. package/scripts/mouseCoords.jsx +0 -45
  43. package/scripts/popup.jsx +0 -612
  44. package/scripts/purge.jsx +0 -29
  45. package/scripts/smoothScroll.js +0 -69
  46. package/scripts/window.js +0 -28
  47. package/styles/dock.scss +0 -100
  48. package/styles/general.scss +0 -241
  49. package/styles/icons.scss +0 -33
  50. package/styles/input.scss +0 -35
  51. package/styles/messages.scss +0 -76
  52. package/styles/resize.scss +0 -99
  53. package/styles/root.scss +0 -14
  54. package/styles/scrollbar.scss +0 -24
  55. package/tests/setupJest.tsx +0 -4
  56. package/tsconfig.json +0 -69
  57. package/typings/cordova.d.ts +0 -12
  58. package/typings/dphelper.d.ts +0 -29
  59. package/typings/image.d.ts +0 -9
  60. package/typings/index.d.ts +0 -7
  61. package/typings/layerpro.d.ts +0 -23
  62. package/typings/menupro.d.ts +0 -18
  63. package/typings/namespace.d.ts +0 -7
  64. package/typings/styles.d.ts +0 -27
  65. package/typings/vscode.d.ts +0 -14724
  66. package/webpack.config.js +0 -239
package/tsconfig.json DELETED
@@ -1,69 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "lib": [
4
- "es2022",
5
- "es2020",
6
- "es2016.array.include",
7
- "es2017.object",
8
- "es5",
9
- "es6",
10
- "dom",
11
- "dom.iterable"
12
- ],
13
- "importHelpers": true,
14
- "skipLibCheck": true,
15
- "allowSyntheticDefaultImports": true,
16
- "forceConsistentCasingInFileNames": true,
17
- "resolveJsonModule": true,
18
- "isolatedModules": true,
19
- "baseUrl": ".",
20
- "outDir": "./dist/",
21
- "module": "commonjs",
22
- "preserveConstEnums": true,
23
- "removeComments": true,
24
- "sourceMap": true,
25
- "target": "es2022",
26
- "moduleResolution": "node",
27
- "allowJs": true,
28
- "noEmit": true,
29
- "strict": true,
30
- "esModuleInterop": true,
31
- "jsx": "react-jsx",
32
- "strictNullChecks": false,
33
- "noImplicitAny": false,
34
- "strictPropertyInitialization": false,
35
- "paths": {
36
- "Config/*": [
37
- "src/config/*"
38
- ],
39
- "Components/*": [
40
- "src/components/*"
41
- ],
42
- "Data/*": [
43
- "src/data/*"
44
- ],
45
- "Layout/*": [
46
- "src/layout/*"
47
- ],
48
- "Pages/*": [
49
- "src/pages/*"
50
- ],
51
- "Scripts/*": [
52
- "src/scripts/*"
53
- ],
54
- "Styles/*": [
55
- "src/styles/*"
56
- ],
57
- "Root/*": [
58
- "src/*"
59
- ]
60
- }
61
- },
62
- "includes": [
63
- "./*"
64
- ],
65
- "exclude": [
66
- "node_modules",
67
- ".OLD"
68
- ]
69
- }
@@ -1,12 +0,0 @@
1
- /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
4
- */
5
-
6
- declare global {
7
- interface Window {
8
- cordova: any
9
- }
10
- }
11
-
12
- cordova = window.cordova || false
@@ -1,29 +0,0 @@
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 || [];
@@ -1,9 +0,0 @@
1
- /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
4
- */
5
-
6
- declare module "*.svg" {
7
- const value: any
8
- export default value
9
- }
@@ -1,7 +0,0 @@
1
- /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
4
- */
5
-
6
- declare module 'jquery'
7
- declare var $: any
@@ -1,23 +0,0 @@
1
- /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
4
- */
5
-
6
- declare module 'layerpro'
7
- declare var layerpro: any
8
-
9
- // Remove popup errors about number of paramentes or existence
10
- declare function confirm(f1?, func1?, func2?)
11
- declare function prompt(f1?, string?)
12
- declare function message(f1?)
13
-
14
- ////////////////////////////////////////////////////////////////
15
-
16
- declare global {
17
- interface Window {
18
- layerpro: any
19
- }
20
- }
21
-
22
- layerpro = window.layerpro || {}
23
-
@@ -1,18 +0,0 @@
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
-
@@ -1,7 +0,0 @@
1
-
2
- declare namespace JSX {
3
- export interface IntrinsicElements {
4
- 'x-foo': any
5
- }
6
- }
7
-
@@ -1,27 +0,0 @@
1
- /*
2
- Copyright: © 2022 Dario Passariello <dariopassariello@gmail.com>
3
- License: CC BY-NC-ND 4.0
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
- declare module '*.js' {
22
- const resource: { [key: string]: string }
23
- export = resource
24
- }
25
-
26
-
27
-