@vue-start/pro 0.5.64 → 0.5.65
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/dist/index.d.ts +5 -2
- package/dist/index.es.js +1300 -1289
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -790,7 +790,7 @@ interface IProConfigProvide {
|
|
|
790
790
|
* form组件集(使用FormItem包裹的组件集合)
|
|
791
791
|
*/
|
|
792
792
|
formElementMap?: TElementMap;
|
|
793
|
-
formExtraMap?: TFormExtraMap
|
|
793
|
+
formExtraMap?: ComputedRef<TFormExtraMap>;
|
|
794
794
|
/**
|
|
795
795
|
* 注册的全局状态
|
|
796
796
|
*/
|
|
@@ -1302,6 +1302,9 @@ declare const proFormProps: () => {
|
|
|
1302
1302
|
operate: {
|
|
1303
1303
|
type: PropType<TProFormOperate>;
|
|
1304
1304
|
};
|
|
1305
|
+
opeItems: {
|
|
1306
|
+
type: PropType<() => IOpeItem[]>;
|
|
1307
|
+
};
|
|
1305
1308
|
submitLoading: {
|
|
1306
1309
|
type: BooleanConstructor;
|
|
1307
1310
|
};
|
|
@@ -3275,7 +3278,7 @@ interface IProCurdProvide {
|
|
|
3275
3278
|
tableColumns: Ref<TColumns>;
|
|
3276
3279
|
searchColumns: Ref<TColumns>;
|
|
3277
3280
|
sendCurdEvent: (event: TCurdActionEvent) => void;
|
|
3278
|
-
operates: ICurdOperateOpts[]
|
|
3281
|
+
operates: ComputedRef$1<ICurdOperateOpts[]>;
|
|
3279
3282
|
getOperate: (action: ICurdAction) => ICurdOperateOpts | undefined;
|
|
3280
3283
|
refreshList: (extra?: Record<string, any>) => void;
|
|
3281
3284
|
defaultAddRecord?: ComputedRef$1<Record<string, any> | undefined>;
|