star-horse-lowcode 3.0.6 → 3.0.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/README.md +11 -0
- package/dist/api/star_horse_utils.d.ts +3 -3
- package/dist/api/user_func.d.ts +3 -0
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/ShTableListColumn.vue.d.ts +1 -1
- package/dist/components/comp/StarHorseDataView.vue.d.ts +1 -1
- package/dist/components/comp/StarHorseDraggable.vue.d.ts +2 -2
- package/dist/components/comp/StarHorseForm.vue.d.ts +2 -2
- package/dist/components/comp/StarHorseFormList.vue.d.ts +1 -1
- package/dist/components/comp/items/UTableColumn.vue.d.ts +1 -1
- package/dist/components/system/StarHorseEditor.vue.d.ts +1 -1
- package/dist/components/types/ApiUrls.d.ts +5 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +5 -5
- package/dist/store/DesignForm.d.ts +2 -2
- package/dist/store/DesignPage.d.ts +2 -2
- package/dist/store/SelfOperation.d.ts +6 -0
- package/dist/store/StoreManager.d.ts +5464 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -159,9 +159,9 @@ export declare function dynamicUrlOperation(preps: any, queryInfo?: SearchParams
|
|
|
159
159
|
*/
|
|
160
160
|
export declare function createFilter(queryString: string): Promise<(data: SelectOption) => number>;
|
|
161
161
|
/**
|
|
162
|
-
* 公共Api接口
|
|
163
|
-
* @param appName
|
|
164
|
-
* @param urlPrefix api接口前缀
|
|
162
|
+
* 公共 Api 接口
|
|
163
|
+
* @param appName 应用名称或者接口前缀
|
|
164
|
+
* @param urlPrefix api 接口前缀
|
|
165
165
|
* @param condition 条件
|
|
166
166
|
*/
|
|
167
167
|
export declare function apiInstance(appName: string, urlPrefix: string, condition?: Array<any>): ApiUrls;
|