star-horse-lowcode 3.0.9 → 3.1.0
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/WebSocketUtils.d.ts +0 -3
- package/dist/api/form_utils.d.ts +7 -0
- package/dist/api/valid_utils.d.ts +2 -1
- package/dist/assets/index.css +1 -1
- package/dist/components/comp/StarHorseDataSelector.vue.d.ts +1 -58
- package/dist/components/comp/StarHorseTableColumn.vue.d.ts +14 -4
- package/dist/components/comp/app/MenuShot.vue.d.ts +15 -0
- package/dist/components/comp/items/groupItem.vue.d.ts +23 -0
- package/dist/components/comp/items/{tableColumn.vue.d.ts → tableColumnItem.vue.d.ts} +12 -2
- package/dist/components/comp/utils/DataPicker.vue.d.ts +1 -1
- package/dist/components/comp/utils/DataSelectorUtils.d.ts +23 -0
- package/dist/components/formcomp/items/description-item.vue.d.ts +19 -0
- package/dist/components/formcomp/items/index.d.ts +6 -0
- package/dist/components/formcomp/items/link-item.vue.d.ts +19 -0
- package/dist/components/formcomp/items/location-item.vue.d.ts +19 -0
- package/dist/components/formcomp/items/org-item.vue.d.ts +19 -0
- package/dist/components/formcomp/items/progress-item.vue.d.ts +19 -0
- package/dist/components/formcomp/items/starhorse-form-item.vue.d.ts +3 -3
- package/dist/components/formcomp/items/tree-select-item.vue.d.ts +19 -0
- package/dist/components/formcomp/utils/EditDataDialog.vue.d.ts +2 -2
- package/dist/components/formcomp/utils/FormulaEngine.d.ts +129 -0
- package/dist/components/formcomp/utils/ItemRelationEventUtils.d.ts +6 -22
- package/dist/components/help.vue.d.ts +2 -2
- package/dist/components/types/ItemPreps.d.ts +4 -0
- package/dist/components/types/PageFieldInfo.d.ts +4 -0
- package/dist/index.es.js +6 -6
- package/dist/lang/en_US.d.ts +141 -0
- package/dist/lang/zh_CN.d.ts +141 -0
- package/dist/store/FormDataCache.d.ts +6 -0
- package/dist/store/StoreManager.d.ts +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/api/form_utils.d.ts
CHANGED
|
@@ -138,3 +138,10 @@ export declare function filterProperties(obj: any, keysToRemove: string[]): void
|
|
|
138
138
|
* @param item
|
|
139
139
|
*/
|
|
140
140
|
export declare function labelVisibleCheck(item: any): any;
|
|
141
|
+
/**
|
|
142
|
+
* 处理属性
|
|
143
|
+
* @param fieldList
|
|
144
|
+
* @param parentKey
|
|
145
|
+
* @param result
|
|
146
|
+
*/
|
|
147
|
+
export declare const processFieldList: (fieldList: any[], parentKey: string, result: any[]) => void;
|
|
@@ -2,6 +2,7 @@ import { SelectOption } from '../components/types/SearchProps';
|
|
|
2
2
|
export declare const validRulesList: Array<SelectOption>;
|
|
3
3
|
/**
|
|
4
4
|
* 获取验证类型
|
|
5
|
-
* @param type
|
|
5
|
+
* @param type 验证类型名称
|
|
6
|
+
* @param options 参数选项(dataLength: {min, max}, decimal: {intLen, decLen}, numberRange: {min, max})
|
|
6
7
|
*/
|
|
7
8
|
export declare function getValidType(type: any, options?: any): any;
|