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.
- package/boot-remote.d.ts +2 -0
- package/{src/boot-remote.ts → boot-remote.js} +6 -7
- package/boot.d.ts +2 -0
- package/{src/boot.ts → boot.js} +32 -39
- package/code.d.ts +2 -0
- package/{src/code.ts → code.js} +69 -69
- package/convert-xml.d.ts +10 -0
- package/{src/convert-xml.ts → convert-xml.js} +105 -155
- package/enum.d.ts +18 -0
- package/enum.js +59 -0
- package/error.d.ts +5 -0
- package/error.js +13 -0
- package/fn.d.ts +128 -0
- package/fn.js +172 -0
- package/{src/index.ts → index.d.ts} +11 -11
- package/index.js +11 -0
- package/list.d.ts +10 -0
- package/{src/list.ts → list.js} +8 -9
- package/math.d.ts +83 -0
- package/math.js +451 -0
- package/object.d.ts +83 -0
- package/object.js +221 -0
- package/package.json +2 -1
- package/set-ex.d.ts +198 -0
- package/set-ex.js +338 -0
- package/sql.d.ts +1858 -0
- package/sql.js +5025 -0
- package/sqlite.d.ts +32 -0
- package/{src/sqlite.ts → sqlite.js} +53 -52
- package/string.d.ts +17 -0
- package/string.js +105 -0
- package/test-mysql.d.ts +2 -0
- package/{src/test-mysql.ts → test-mysql.js} +135 -126
- package/test-postgresql.d.ts +2 -0
- package/test-postgresql.js +90 -0
- package/test-sqlite.d.ts +1 -0
- package/{src/test-sqlite.ts → test-sqlite.js} +89 -80
- package/test-xml.d.ts +1 -0
- package/{src/test-xml.ts → test-xml.js} +1 -1
- package/test.d.ts +1 -0
- package/test.js +2 -0
- package/wx/base.d.ts +11 -0
- package/wx/base.js +78 -0
- package/wx/mini.d.ts +45 -0
- package/wx/mini.js +102 -0
- package/wx/organ.d.ts +65 -0
- package/wx/organ.js +171 -0
- package/{src/wx/types.ts → wx/types.d.ts} +21 -10
- package/wx/types.js +1 -0
- package/wx.js +3 -0
- package/.eslintignore +0 -7
- package/.eslintrc.cjs +0 -89
- package/.prettierrc +0 -4
- package/ci.js +0 -29
- package/package-cjs.json +0 -17
- package/src/enum.ts +0 -71
- package/src/error.ts +0 -11
- package/src/fn.ts +0 -295
- package/src/math.ts +0 -405
- package/src/object.ts +0 -247
- package/src/set-ex.ts +0 -374
- package/src/sql.ts +0 -5281
- package/src/string.ts +0 -111
- package/src/test-postgresql.ts +0 -79
- package/src/test.ts +0 -2
- package/src/wx/base.ts +0 -76
- package/src/wx/mini.ts +0 -133
- package/src/wx/organ.ts +0 -290
- package/test.json +0 -0
- package/tsconfig.base.json +0 -80
- package/tsconfig.cjs.json +0 -42
- package/tsconfig.json +0 -44
- package/xml/event-report.xml +0 -13
- package/yarn.lock +0 -1493
- /package/{Readme.md → README.md} +0 -0
- /package/{src/wx.ts → wx.d.ts} +0 -0
package/tsconfig.base.json
DELETED
|
@@ -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
|
-
}
|
package/xml/event-report.xml
DELETED
|
@@ -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>
|