star-horse-lowcode 2.7.66 → 2.7.67
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/README.md +2 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +363 -192
- package/dist/types/index.d.ts +30 -0
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -960,6 +960,18 @@ isDesign: boolean;
|
|
|
960
960
|
showFormItem: boolean;
|
|
961
961
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
962
962
|
|
|
963
|
+
/**
|
|
964
|
+
* base64转字符串
|
|
965
|
+
* @param param
|
|
966
|
+
*/
|
|
967
|
+
export declare function base64Decode(param: string): string;
|
|
968
|
+
|
|
969
|
+
/**
|
|
970
|
+
* 字符串转base64
|
|
971
|
+
* @param param
|
|
972
|
+
*/
|
|
973
|
+
export declare function base64Encode(param: string): string;
|
|
974
|
+
|
|
963
975
|
/**
|
|
964
976
|
* 批量列表数据默认值
|
|
965
977
|
* @param datas
|
|
@@ -4177,6 +4189,12 @@ isDesign: boolean;
|
|
|
4177
4189
|
showFormItem: boolean;
|
|
4178
4190
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4179
4191
|
|
|
4192
|
+
/**
|
|
4193
|
+
* 对象转base64
|
|
4194
|
+
* @param object
|
|
4195
|
+
*/
|
|
4196
|
+
export declare function objectToBase64(object: any): string;
|
|
4197
|
+
|
|
4180
4198
|
export declare const operationConfirm: (msg: string) => Promise<boolean>;
|
|
4181
4199
|
|
|
4182
4200
|
/**
|
|
@@ -8776,6 +8794,18 @@ showFormItem: boolean;
|
|
|
8776
8794
|
*/
|
|
8777
8795
|
export declare function uploadRequest(url: string, data: Array<any>): Promise<AxiosResponse<any, any>>;
|
|
8778
8796
|
|
|
8797
|
+
/**
|
|
8798
|
+
* 参数解码
|
|
8799
|
+
* @param param
|
|
8800
|
+
*/
|
|
8801
|
+
export declare function uriDecode(param: string): string;
|
|
8802
|
+
|
|
8803
|
+
/**
|
|
8804
|
+
* 参数编码
|
|
8805
|
+
* @param param
|
|
8806
|
+
*/
|
|
8807
|
+
export declare function uriEncode(param: string | number | boolean): string;
|
|
8808
|
+
|
|
8779
8809
|
/**
|
|
8780
8810
|
* 用户权限控制
|
|
8781
8811
|
*/
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "star-horse-lowcode",
|
|
3
3
|
"private": false,
|
|
4
4
|
"author": "l_1019@163.com",
|
|
5
|
-
"version": "2.7.
|
|
5
|
+
"version": "2.7.67",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "星马低代码核心库,提供了低代码平台的基础功能和组件库。此库可引用到您的项目中,快速构建表单和列表。",
|
|
8
8
|
"keywords": [
|
|
@@ -100,8 +100,8 @@
|
|
|
100
100
|
"@types/prismjs": "^1.26.5",
|
|
101
101
|
"@types/sortablejs": "^1.15.8",
|
|
102
102
|
"@types/uuid": "^10.0.0",
|
|
103
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
104
|
-
"@typescript-eslint/parser": "^8.
|
|
103
|
+
"@typescript-eslint/eslint-plugin": "^8.39.0",
|
|
104
|
+
"@typescript-eslint/parser": "^8.39.0",
|
|
105
105
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
106
106
|
"eslint": "^9.32.0",
|
|
107
107
|
"eslint-config-prettier": "^10.1.8",
|