baja-lite 1.1.4 → 1.1.8

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 (76) hide show
  1. package/boot-remote.d.ts +2 -0
  2. package/{src/boot-remote.ts → boot-remote.js} +6 -7
  3. package/boot.d.ts +2 -0
  4. package/{src/boot.ts → boot.js} +32 -39
  5. package/code.d.ts +2 -0
  6. package/{src/code.ts → code.js} +69 -69
  7. package/convert-xml.d.ts +10 -0
  8. package/{src/convert-xml.ts → convert-xml.js} +105 -155
  9. package/enum.d.ts +18 -0
  10. package/enum.js +59 -0
  11. package/error.d.ts +5 -0
  12. package/error.js +13 -0
  13. package/fn.d.ts +128 -0
  14. package/fn.js +172 -0
  15. package/{src/index.ts → index.d.ts} +11 -11
  16. package/index.js +11 -0
  17. package/list.d.ts +10 -0
  18. package/{src/list.ts → list.js} +8 -9
  19. package/math.d.ts +83 -0
  20. package/math.js +451 -0
  21. package/object.d.ts +83 -0
  22. package/object.js +221 -0
  23. package/package.json +2 -1
  24. package/set-ex.d.ts +198 -0
  25. package/set-ex.js +338 -0
  26. package/sql.d.ts +1858 -0
  27. package/sql.js +5025 -0
  28. package/sqlite.d.ts +32 -0
  29. package/{src/sqlite.ts → sqlite.js} +53 -52
  30. package/string.d.ts +17 -0
  31. package/string.js +105 -0
  32. package/test-mysql.d.ts +2 -0
  33. package/{src/test-mysql.ts → test-mysql.js} +135 -126
  34. package/test-postgresql.d.ts +2 -0
  35. package/test-postgresql.js +90 -0
  36. package/test-sqlite.d.ts +1 -0
  37. package/{src/test-sqlite.ts → test-sqlite.js} +89 -80
  38. package/test-xml.d.ts +1 -0
  39. package/{src/test-xml.ts → test-xml.js} +1 -1
  40. package/test.d.ts +1 -0
  41. package/test.js +2 -0
  42. package/wx/base.d.ts +11 -0
  43. package/wx/base.js +78 -0
  44. package/wx/mini.d.ts +45 -0
  45. package/wx/mini.js +102 -0
  46. package/wx/organ.d.ts +65 -0
  47. package/wx/organ.js +171 -0
  48. package/{src/wx/types.ts → wx/types.d.ts} +21 -10
  49. package/wx/types.js +1 -0
  50. package/wx.js +3 -0
  51. package/.eslintignore +0 -7
  52. package/.eslintrc.cjs +0 -89
  53. package/.prettierrc +0 -4
  54. package/ci.js +0 -29
  55. package/package-cjs.json +0 -17
  56. package/src/enum.ts +0 -71
  57. package/src/error.ts +0 -11
  58. package/src/fn.ts +0 -295
  59. package/src/math.ts +0 -405
  60. package/src/object.ts +0 -247
  61. package/src/set-ex.ts +0 -374
  62. package/src/sql.ts +0 -5281
  63. package/src/string.ts +0 -111
  64. package/src/test-postgresql.ts +0 -79
  65. package/src/test.ts +0 -2
  66. package/src/wx/base.ts +0 -76
  67. package/src/wx/mini.ts +0 -133
  68. package/src/wx/organ.ts +0 -290
  69. package/test.json +0 -0
  70. package/tsconfig.base.json +0 -80
  71. package/tsconfig.cjs.json +0 -42
  72. package/tsconfig.json +0 -44
  73. package/xml/event-report.xml +0 -13
  74. package/yarn.lock +0 -1493
  75. /package/{Readme.md → README.md} +0 -0
  76. /package/{src/wx.ts → wx.d.ts} +0 -0
@@ -1,80 +0,0 @@
1
- // {
2
- // "files": [],
3
- // "extends": [],
4
- // "include": [
5
- // "src/**/*"
6
- // ],
7
- // "exclude": [
8
- // "node_modules",
9
- // "dist",
10
- // "test/**/*",
11
- // "*.spec.ts"
12
- // ],
13
- // "references": [],
14
- // "compilerOptions": {
15
- // "alwaysStrict": true,
16
- // "allowJs": false,
17
- // "baseUrl": "./src",
18
- // "declaration": true,
19
- // "emitDecoratorMetadata": true,
20
- // "experimentalDecorators": true,
21
- // "esModuleInterop": true,
22
- // "noPropertyAccessFromIndexSignature": true,
23
- // "noUncheckedIndexedAccess": true,
24
- // "importHelpers": true,
25
- // "module": "ES2022",
26
- // "noImplicitAny": false,
27
- // "outDir": "./dist",
28
- // "paths": {},
29
- // "removeComments": false,
30
- // "rootDir": "./src",
31
- // "skipLibCheck": false,
32
- // "sourceMap": false,
33
- // "strict": true,
34
- // "strictNullChecks": true,
35
- // "target": "ES2022",
36
- // "useUnknownInCatchVariables": false
37
- // }
38
- // }
39
- {
40
- "include": [
41
- "src/**/*"
42
- ],
43
- "exclude": [
44
- "node_modules",
45
- "dist",
46
- "test/**/*",
47
- "*.spec.ts"
48
- ],
49
- "compilerOptions": {
50
- "outDir": "dist",
51
- "target": "ES2020",
52
- "module": "esnext",
53
- "baseUrl": "./src",
54
- "rootDir": "./src",
55
- "sourceMap": false,
56
- "moduleResolution": "node",
57
- "allowJs": false,
58
- "strict": true,
59
- "declaration": true,
60
- "noUnusedLocals": true,
61
- "emitDecoratorMetadata": true,
62
- "strictNullChecks": true,
63
- "composite": true,
64
- "experimentalDecorators": true,
65
- "resolveJsonModule": true,
66
- "allowSyntheticDefaultImports": true,
67
- "noPropertyAccessFromIndexSignature": true,
68
- "useUnknownInCatchVariables": false,
69
- "noUncheckedIndexedAccess": true,
70
- "noImplicitAny": false,
71
- "esModuleInterop": true,
72
- "removeComments": false,
73
- "types": [],
74
- "paths": {
75
- "@element-plus/*": [
76
- "packages/*"
77
- ]
78
- }
79
- }
80
- }
package/tsconfig.cjs.json DELETED
@@ -1,42 +0,0 @@
1
- {
2
- "include": [
3
- "src/**/*"
4
- ],
5
- "exclude": [
6
- "node_modules",
7
- "dist",
8
- "test/**/*",
9
- "*.spec.ts"
10
- ],
11
- "compilerOptions": {
12
- "target": "ES2020",
13
- "baseUrl": "./src",
14
- "rootDir": "./src",
15
- "sourceMap": false,
16
- "moduleResolution": "node",
17
- "allowJs": false,
18
- "strict": true,
19
- "declaration": true,
20
- "noUnusedLocals": true,
21
- "emitDecoratorMetadata": true,
22
- "strictNullChecks": true,
23
- "composite": true,
24
- "experimentalDecorators": true,
25
- "resolveJsonModule": true,
26
- "allowSyntheticDefaultImports": true,
27
- "noPropertyAccessFromIndexSignature": true,
28
- "useUnknownInCatchVariables": false,
29
- "noUncheckedIndexedAccess": true,
30
- "noImplicitAny": false,
31
- "esModuleInterop": true,
32
- "removeComments": false,
33
- "types": [],
34
- "paths": {
35
- "@element-plus/*": [
36
- "packages/*"
37
- ]
38
- },
39
- "module": "commonjs",
40
- "outDir": "./dist-cjs"
41
- }
42
- }
package/tsconfig.json DELETED
@@ -1,44 +0,0 @@
1
- {
2
- "include": [
3
- "src/**/*"
4
- ],
5
- "exclude": [
6
- "node_modules",
7
- "dist",
8
- "test/**/*",
9
- "*.spec.ts"
10
- ],
11
- "compilerOptions": {
12
- "target": "ES2020",
13
- "module": "esnext",
14
- "baseUrl": "./src",
15
- "rootDir": "./src",
16
- "sourceMap": false,
17
- "moduleResolution": "node",
18
- "allowJs": false,
19
- "strict": true,
20
- "declaration": true,
21
- "noUnusedLocals": true,
22
- "emitDecoratorMetadata": true,
23
- "strictNullChecks": true,
24
- "composite": true,
25
- "experimentalDecorators": true,
26
- "resolveJsonModule": true,
27
- "allowSyntheticDefaultImports": true,
28
- "noPropertyAccessFromIndexSignature": true,
29
- "useUnknownInCatchVariables": false,
30
- "noUncheckedIndexedAccess": true,
31
- "noImplicitAny": false,
32
- "esModuleInterop": true,
33
- "removeComments": false,
34
- "paths": {
35
- "@element-plus/*": [
36
- "packages/*"
37
- ]
38
- },
39
- "lib": ["ESNext"],
40
- "types": ["node"],
41
- "skipLibCheck": true,
42
- "outDir": "./dist"
43
- }
44
- }
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3
- <mapper namespace="org.jeecg.modules.system.mapper.SysUserDataPermissionMapper">
4
- <insert id="addDataPermissionByDataId">
5
- insert into sys_user_data_permission (eventh_user_id,data_id,user_id,data_type)
6
- <foreach collection="dataPermission.userIds" open="(" close=")" item="userId" separator="),(" >
7
- UUID_SHORT(),#{dataPermission.dataId},#{userId},#{dataPermission.dataType}
8
- </foreach>
9
- </insert>
10
- <select id="getDataPermissionByDataId" resultType="java.lang.String">
11
- select user_id from sys_user_data_permission where #{dataId}
12
- </select>
13
- </mapper>