halo-fe 1.0.29 → 1.0.31
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/assets/{liquidjs-C2HVw1Ra.js → liquidjs-BfOWWjtJ.js} +119 -113
- package/dist/main.js +1472 -1261
- package/dist/style.css +1 -1
- package/esm/apps/AppConstant.d.ts +3 -0
- package/esm/apps/index.d.ts +2 -0
- package/esm/coms/@types/SocketProgressProps.d.ts +4 -0
- package/esm/coms/index.d.ts +1 -0
- package/esm/coms/tags/@types/TagProps.d.ts +7 -0
- package/esm/coms/tags/@types/index.d.ts +2 -0
- package/esm/coms/tags/Index.vue.d.ts +17 -0
- package/esm/coms/tags/index.d.ts +2 -0
- package/esm/drivers/cdns/Cdn.d.ts +6 -2
- package/esm/drivers/cdns/implements/LocalCdn.d.ts +0 -1
- package/esm/drivers/encryptors/Encryptor.d.ts +11 -0
- package/esm/drivers/encryptors/EncryptorFactory.d.ts +13 -0
- package/esm/drivers/encryptors/IEncryptor.d.ts +15 -0
- package/esm/drivers/encryptors/implements/AesEncryptor.d.ts +10 -0
- package/esm/drivers/encryptors/index.d.ts +3 -0
- package/esm/drivers/hashers/Hasher.d.ts +1 -1
- package/esm/drivers/hashers/HasherFactory.d.ts +5 -1
- package/esm/drivers/hashers/IHasher.d.ts +1 -1
- package/esm/drivers/hashers/implement/Md5Hasher.d.ts +1 -1
- package/esm/drivers/hashers/implement/Sha256Hasher.d.ts +1 -1
- package/esm/drivers/https/Http.d.ts +5 -1
- package/esm/drivers/https/HttpFactory.d.ts +2 -2
- package/esm/drivers/https/IHttp.d.ts +2 -2
- package/esm/drivers/https/entities/HttpProgress.d.ts +9 -0
- package/esm/drivers/https/entities/HttpRequest.d.ts +4 -0
- package/esm/drivers/https/entities/index.d.ts +4 -0
- package/esm/drivers/https/implements/DefaultHttp.d.ts +0 -1
- package/esm/drivers/https/implements/EiHttp.d.ts +32 -0
- package/esm/drivers/https/implements/HaloHttp.d.ts +1 -5
- package/esm/drivers/https/implements/MkHttp.d.ts +1 -5
- package/esm/drivers/https/index.d.ts +2 -3
- package/esm/drivers/index.d.ts +1 -0
- package/esm/drivers/sockets/entities/SocketProgress.d.ts +5 -1
- package/esm/drivers/util/implements/ArrayUtil.d.ts +1 -1
- package/esm/drivers/util/implements/JsonUtil.d.ts +1 -1
- package/esm/drivers/util/implements/ObjectUtil.d.ts +8 -0
- package/esm/drivers/util/implements/StringUtil.d.ts +4 -0
- package/esm/drivers/util/implements/TimeUtil.d.ts +2 -2
- package/esm/drivers/util/implements/UrlUtil.d.ts +16 -6
- package/esm/drivers/utilities/implement/EventUtility.d.ts +1 -1
- package/esm/factory/Factories.d.ts +5 -1
- package/esm/factory/Utils.d.ts +1 -2
- package/esm/repos/implements/ModuleRepo.d.ts +18 -1
- package/package.json +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "halo-fe",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.31",
|
4
4
|
"description": "Halo front end sdk",
|
5
5
|
"scripts": {
|
6
6
|
"halo-fe:tsc": "vue-tsc",
|
@@ -33,21 +33,21 @@
|
|
33
33
|
"dependencies": {
|
34
34
|
"clone": "2.1.2",
|
35
35
|
"file-saver": "2.0.5",
|
36
|
-
"liquidjs": "10.
|
36
|
+
"liquidjs": "10.18.0",
|
37
37
|
"moment": "2.30.1",
|
38
38
|
"underscore": "1.13.7",
|
39
39
|
"underscore.string": "3.3.6",
|
40
40
|
"vue": "3.5.12"
|
41
41
|
},
|
42
42
|
"devDependencies": {
|
43
|
-
"@types/node": "22.7.
|
43
|
+
"@types/node": "22.7.7",
|
44
44
|
"@vitejs/plugin-vue": "5.1.4",
|
45
45
|
"@vitejs/plugin-vue-jsx": "4.0.1",
|
46
46
|
"crypto-js": "4.2.0",
|
47
47
|
"echarts": "5.5.1",
|
48
48
|
"monaco-editor": "0.52.0",
|
49
49
|
"quill": "2.0.2",
|
50
|
-
"sass": "1.
|
50
|
+
"sass": "1.80.3",
|
51
51
|
"vite": "5.4.9",
|
52
52
|
"vue-tsc": "2.1.6",
|
53
53
|
"xlsx-js-style": "1.2.0"
|