star-horse-lowcode 3.1.9 → 3.1.10
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 +5 -0
- package/dist/api/star_horse_utils.d.ts +2 -2
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/StarHorseTableComp.vue.d.ts +1 -0
- package/dist/components/formcomp/utils/ItemRelationEventUtils.d.ts +17 -2
- package/dist/components/system/code-editor/index.d.ts +1 -1
- package/dist/components/types/ItemPreps.d.ts +3 -3
- package/dist/components/types/PreOrPendType.d.ts +31 -0
- package/dist/index.es.js +6 -6
- package/dist/lang/en_US.d.ts +4 -0
- package/dist/lang/zh_CN.d.ts +4 -0
- package/dist/types/api/star_horse_utils.d.ts +2 -2
- package/dist/types/components/comp/StarHorseDataView.vue.d.ts +1 -1
- package/dist/types/components/comp/StarHorseStaticTable.vue.d.ts +1 -1
- package/dist/types/components/comp/StarHorseTableComp.vue.d.ts +1 -0
- package/dist/types/components/formcomp/utils/ItemRelationEventUtils.d.ts +17 -2
- package/dist/types/components/system/code-editor/index.d.ts +1 -1
- package/dist/types/components/types/ItemPreps.d.ts +3 -3
- package/dist/types/components/types/PreOrPendType.d.ts +31 -0
- package/dist/types/lang/en_US.d.ts +4 -0
- package/dist/types/lang/zh_CN.d.ts +4 -0
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ export declare function dynamicUrlOperation(preps: any, queryInfo?: SearchParams
|
|
|
158
158
|
* 创建过滤器
|
|
159
159
|
* @param queryString 查询参数
|
|
160
160
|
*/
|
|
161
|
-
export declare function createFilter(queryString: string):
|
|
161
|
+
export declare function createFilter(queryString: string): (data: SelectOption) => number;
|
|
162
162
|
/**
|
|
163
163
|
* 公共 Api 接口
|
|
164
164
|
* @param appName 应用名称或者接口前缀
|
|
@@ -200,7 +200,7 @@ export declare function base64Decode(param: string): string;
|
|
|
200
200
|
* @param images 图片URL数组或单个URL
|
|
201
201
|
*/
|
|
202
202
|
export { ImagePreview, imagesPreview } from '../utils/ImagePreview';
|
|
203
|
-
export type { ImagePreviewOptions, ImageTransition } from '../utils/ImagePreview';
|
|
203
|
+
export type { ImagePreviewOptions, ImageTransition, } from '../utils/ImagePreview';
|
|
204
204
|
/**
|
|
205
205
|
* 设置css 全局变量
|
|
206
206
|
* @param name 变量名称
|