@guihz/trading-vue-editor-tes 0.0.282 → 0.0.284

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 (30) hide show
  1. package/lib/assets/{parserTccWorker--eB15KAG.js → parserTccWorker-BpGt27P2.js} +88 -89
  2. package/lib/assets/{scriptsRunWorker-BlzKPqZx.js → scriptsRunWorker-BzJrckV5.js} +42 -42
  3. package/lib/components/editor/parseScript/buildInConstants.d.ts +2 -0
  4. package/lib/components/editor/parseScript/buildInFuncNamespace/array.d.ts +32 -79
  5. package/lib/components/editor/parseScript/buildInFuncNamespace/box.d.ts +33 -27
  6. package/lib/components/editor/parseScript/buildInFuncNamespace/chartPoint.d.ts +11 -2
  7. package/lib/components/editor/parseScript/buildInFuncNamespace/index.d.ts +6 -6
  8. package/lib/components/editor/parseScript/buildInFuncNamespace/label.d.ts +21 -17
  9. package/lib/components/editor/parseScript/buildInFuncNamespace/line.d.ts +27 -18
  10. package/lib/components/editor/parseScript/buildInFuncNamespace/linefill.d.ts +16 -7
  11. package/lib/components/editor/parseScript/buildInFuncNamespace/log.d.ts +4 -4
  12. package/lib/components/editor/parseScript/buildInFuncNamespace/map.d.ts +38 -29
  13. package/lib/components/editor/parseScript/buildInFuncNamespace/math.d.ts +19 -19
  14. package/lib/components/editor/parseScript/buildInFuncNamespace/matrix.d.ts +32 -82
  15. package/lib/components/editor/parseScript/buildInFuncNamespace/polyline.d.ts +6 -3
  16. package/lib/components/editor/parseScript/buildInFuncNamespace/request.d.ts +0 -1
  17. package/lib/components/editor/parseScript/buildInFuncNamespace/strategy.d.ts +1 -0
  18. package/lib/components/editor/parseScript/buildInFuncNamespace/string.d.ts +2 -2
  19. package/lib/components/editor/parseScript/buildInFuncNamespace/ta.d.ts +1 -2
  20. package/lib/components/editor/parseScript/buildInFuncNamespace/table.d.ts +29 -21
  21. package/lib/components/editor/parseScript/buildInFunction.d.ts +6 -1
  22. package/lib/components/editor/parseScript/enum.d.ts +13 -0
  23. package/lib/components/editor/parseScript/type.d.ts +10 -0
  24. package/lib/components/editor/parseScript/userTypeClass.d.ts +4 -3
  25. package/lib/components/editor/parseScript/utils.d.ts +2 -1
  26. package/lib/components/editor/parseScript/visitorParser.d.ts +2 -0
  27. package/lib/components/editor/type/index.d.ts +2 -0
  28. package/lib/trading-vue-editor.es.packages.js +963 -959
  29. package/lib/trading-vue-editor.umd.packages.mjs +21 -21
  30. package/package.json +64 -64
package/package.json CHANGED
@@ -1,64 +1,64 @@
1
- {
2
- "name": "@guihz/trading-vue-editor-tes",
3
- "version": "0.0.282",
4
- "type": "module",
5
- "files": [
6
- "lib"
7
- ],
8
- "main": "./lib/trading-vue-editor.cjs.packages.mjs",
9
- "module": "./lib/trading-vue-editor.es.packages.js",
10
- "jsdelivr": "./lib/trading-vue-editor.es.packages.js",
11
- "unpkg": "./lib/trading-vue-editor.es.packages.js",
12
- "typings": "./lib/packages/index.d.ts",
13
- "scripts": {
14
- "dev": "vite",
15
- "build": "vite build",
16
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
17
- "preview": "vite preview",
18
- "push": "vite build && yalc push",
19
- "watch": "nodemon --ignore lib/ --ignore node_modules/ --watch tradingeditor/ -C -e js,vue,ts,tsx,scss --debug -x npm run push"
20
- },
21
- "dependencies": {
22
- "@monaco-editor/react": "^4.6.0",
23
- "antlr4": "4.13.0",
24
- "axios": "^1.6.5",
25
- "big.js": "^6.2.2",
26
- "comlink": "^4.4.1",
27
- "diff": "^5.2.0",
28
- "i18next": "^23.16.5",
29
- "i18next-browser-languagedetector": "^8.0.0",
30
- "ky": "^1.7.2",
31
- "lodash": "^4.17.21",
32
- "mathjs": "^12.4.1",
33
- "ml-matrix": "^6.11.0",
34
- "moment-timezone": "^0.5.46",
35
- "react-copy-to-clipboard": "^5.1.0",
36
- "react-i18next": "^15.1.1",
37
- "terser": "^5.31.0"
38
- },
39
- "devDependencies": {
40
- "@rollup/plugin-typescript": "^11.1.6",
41
- "@types/big.js": "^6.2.2",
42
- "@types/crypto-js": "^4.2.2",
43
- "@types/diff": "^5.2.0",
44
- "@types/lodash": "^4.14.202",
45
- "@types/node": "^20.12.7",
46
- "@types/react": "^18.2.43",
47
- "@types/react-copy-to-clipboard": "^5.0.7",
48
- "@types/react-dom": "^18.2.17",
49
- "@types/uglify-js": "^3.17.5",
50
- "@typescript-eslint/eslint-plugin": "^6.14.0",
51
- "@typescript-eslint/parser": "^6.14.0",
52
- "@vitejs/plugin-react": "^4.2.1",
53
- "eslint": "^8.55.0",
54
- "eslint-plugin-react-hooks": "^4.6.0",
55
- "eslint-plugin-react-refresh": "^0.4.5",
56
- "monaco-editor": "^0.45.0",
57
- "react": "^18.2.0",
58
- "react-dom": "^18.2.0",
59
- "tslib": "^2.6.2",
60
- "typescript": "^5.2.2",
61
- "vite": "^5.0.8",
62
- "vite-plugin-css-injected-by-js": "^3.5.1"
63
- }
64
- }
1
+ {
2
+ "name": "@guihz/trading-vue-editor-tes",
3
+ "version": "0.0.284",
4
+ "type": "module",
5
+ "files": [
6
+ "lib"
7
+ ],
8
+ "main": "./lib/trading-vue-editor.cjs.packages.mjs",
9
+ "module": "./lib/trading-vue-editor.es.packages.js",
10
+ "jsdelivr": "./lib/trading-vue-editor.es.packages.js",
11
+ "unpkg": "./lib/trading-vue-editor.es.packages.js",
12
+ "typings": "./lib/packages/index.d.ts",
13
+ "scripts": {
14
+ "dev": "vite",
15
+ "build": "vite build",
16
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
17
+ "preview": "vite preview",
18
+ "push": "vite build && yalc push",
19
+ "watch": "nodemon --ignore lib/ --ignore node_modules/ --watch tradingeditor/ -C -e js,vue,ts,tsx,scss --debug -x npm run push"
20
+ },
21
+ "dependencies": {
22
+ "@monaco-editor/react": "^4.6.0",
23
+ "antlr4": "4.13.0",
24
+ "axios": "^1.6.5",
25
+ "big.js": "^6.2.2",
26
+ "comlink": "^4.4.1",
27
+ "diff": "^5.2.0",
28
+ "i18next": "^23.16.5",
29
+ "i18next-browser-languagedetector": "^8.0.0",
30
+ "ky": "^1.7.2",
31
+ "lodash": "^4.17.21",
32
+ "mathjs": "^12.4.1",
33
+ "ml-matrix": "^6.11.0",
34
+ "moment-timezone": "^0.5.46",
35
+ "react-copy-to-clipboard": "^5.1.0",
36
+ "react-i18next": "^15.1.1",
37
+ "terser": "^5.31.0"
38
+ },
39
+ "devDependencies": {
40
+ "@rollup/plugin-typescript": "^11.1.6",
41
+ "@types/big.js": "^6.2.2",
42
+ "@types/crypto-js": "^4.2.2",
43
+ "@types/diff": "^5.2.0",
44
+ "@types/lodash": "^4.14.202",
45
+ "@types/node": "^20.12.7",
46
+ "@types/react": "^18.2.43",
47
+ "@types/react-copy-to-clipboard": "^5.0.7",
48
+ "@types/react-dom": "^18.2.17",
49
+ "@types/uglify-js": "^3.17.5",
50
+ "@typescript-eslint/eslint-plugin": "^6.14.0",
51
+ "@typescript-eslint/parser": "^6.14.0",
52
+ "@vitejs/plugin-react": "^4.2.1",
53
+ "eslint": "^8.55.0",
54
+ "eslint-plugin-react-hooks": "^4.6.0",
55
+ "eslint-plugin-react-refresh": "^0.4.5",
56
+ "monaco-editor": "^0.45.0",
57
+ "react": "^18.2.0",
58
+ "react-dom": "^18.2.0",
59
+ "tslib": "^2.6.2",
60
+ "typescript": "^5.2.2",
61
+ "vite": "^5.0.8",
62
+ "vite-plugin-css-injected-by-js": "^3.5.1"
63
+ }
64
+ }