antd-management-fast-framework 1.12.26 → 1.12.29
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/es/customComponents/FunctionComponent/index.d.ts +8 -12
- package/es/customComponents/FunctionComponent/index.js +375 -389
- package/es/framework/AuthorizationWrapper/index.js +2 -2
- package/es/framework/Base/index.d.ts +6 -0
- package/es/framework/Base/index.js +37 -0
- package/es/framework/Common/index.d.ts +1 -2
- package/es/framework/Common/index.js +55 -40
- package/es/framework/DataForm/BaseAddForm/index.js +14 -17
- package/es/framework/DataForm/BaseUpdateForm/index.js +10 -12
- package/es/framework/DataOperation/BaseWindow/index.js +10 -12
- package/es/utils/actionAssist.d.ts +7 -6
- package/es/utils/actionAssist.js +41 -20
- package/package.json +2 -2
|
@@ -168,6 +168,14 @@ export function buildCustomSelect({ label, value, separator, size, renderItemFun
|
|
|
168
168
|
onChangeCallback?: null | undefined;
|
|
169
169
|
otherProps?: null | undefined;
|
|
170
170
|
}): JSX.Element;
|
|
171
|
+
export function buildTreeSelect({ value: v, placeholder, onChangeCallback, otherProps, listData, dataConvert, }: {
|
|
172
|
+
value: any;
|
|
173
|
+
placeholder?: string | undefined;
|
|
174
|
+
onChangeCallback?: null | undefined;
|
|
175
|
+
otherProps?: {} | undefined;
|
|
176
|
+
listData?: any[] | undefined;
|
|
177
|
+
dataConvert?: null | undefined;
|
|
178
|
+
}): JSX.Element;
|
|
171
179
|
export function buildFormSelect({ label, name, renderItemFunction, helper, onChangeCallback, formItemLayout, required, otherProps, }: {
|
|
172
180
|
label: any;
|
|
173
181
|
name: any;
|
|
@@ -418,18 +426,6 @@ export function adjustTableExpandConfig({ list, config }: {
|
|
|
418
426
|
expandIcon?: undefined;
|
|
419
427
|
expandedRowRender?: undefined;
|
|
420
428
|
} | null;
|
|
421
|
-
export function buildTreeSelect({ label, name, value, required, helper, innerProps, canOperate, formItemLayout, listData, dataConvert, }: {
|
|
422
|
-
label: any;
|
|
423
|
-
name: any;
|
|
424
|
-
value: any;
|
|
425
|
-
required?: boolean | undefined;
|
|
426
|
-
helper?: null | undefined;
|
|
427
|
-
innerProps?: {} | undefined;
|
|
428
|
-
canOperate?: boolean | undefined;
|
|
429
|
-
formItemLayout?: {} | undefined;
|
|
430
|
-
listData?: any[] | undefined;
|
|
431
|
-
dataConvert?: null | undefined;
|
|
432
|
-
}): JSX.Element;
|
|
433
429
|
/**
|
|
434
430
|
* 占位函数
|
|
435
431
|
*
|