antd-management-fast-component 2.7.52 → 2.7.53
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.
|
@@ -217,7 +217,7 @@ export function buildListViewItemExtra({ align, imageUrl, emptyImageUrl, width,
|
|
|
217
217
|
* @param {Object} option.extra statusBar extra component.
|
|
218
218
|
* @param {Object} option.statusBarWrapperStyle statusBar style.
|
|
219
219
|
*/
|
|
220
|
-
export function buildListViewItemInner({ image, title, descriptionList, actionList, extra, statusBarWrapperStyle, }: Object): React.JSX.Element;
|
|
220
|
+
export function buildListViewItemInner({ layout, image, title, descriptionList, actionList, extra, statusBarWrapperStyle, }: Object): React.JSX.Element;
|
|
221
221
|
/**
|
|
222
222
|
* @param {Object} options
|
|
223
223
|
* @param {Object} option.title title config like { label:'',text:'' }.
|
|
@@ -226,7 +226,7 @@ export function buildListViewItemInner({ image, title, descriptionList, actionLi
|
|
|
226
226
|
* @param {Object} option.extra the params for buildDropdownButton.
|
|
227
227
|
* @param {Object} option.statusBarWrapperStyle statusBar
|
|
228
228
|
*/
|
|
229
|
-
export function buildListViewItemInnerWithDropdownButton({ image, title, descriptionList, actionList, extra, statusBarWrapperStyle, }: Object): React.JSX.Element;
|
|
229
|
+
export function buildListViewItemInnerWithDropdownButton({ layout, image, title, descriptionList, actionList, extra, statusBarWrapperStyle, }: Object): React.JSX.Element;
|
|
230
230
|
/**
|
|
231
231
|
* @param {Object} options
|
|
232
232
|
* @param {Object} option.title title config like { label:'',text:'' }.
|
|
@@ -236,14 +236,14 @@ export function buildListViewItemInnerWithDropdownButton({ image, title, descrip
|
|
|
236
236
|
* @param {Object} option.selectData the data selected .
|
|
237
237
|
* @param {Function} option.selectCallback the callback after selected, like (data)=>{}.
|
|
238
238
|
*/
|
|
239
|
-
export function buildListViewItemInnerWithSelectButton({ image, title, descriptionList, actionList, confirm, selectData, selectCallback, }: Object): React.JSX.Element;
|
|
239
|
+
export function buildListViewItemInnerWithSelectButton({ layout, image, title, descriptionList, actionList, confirm, selectButtonType, selectData, selectCallback, }: Object): React.JSX.Element;
|
|
240
240
|
/**
|
|
241
241
|
* @param {Object} options
|
|
242
242
|
* @param {Boolean} option.confirm whether confirm select.
|
|
243
243
|
* @param {Object} option.selectData the data selected .
|
|
244
244
|
* @param {Function} option.selectCallback the callback after selected, like (data)=>{}.
|
|
245
245
|
*/
|
|
246
|
-
export function buildListViewItemActionSelect({ confirm, selectData, selectCallback, }: Object): React.JSX.Element;
|
|
246
|
+
export function buildListViewItemActionSelect({ confirm, selectData, selectButtonType, selectCallback, }: Object): React.JSX.Element;
|
|
247
247
|
/**
|
|
248
248
|
* @param {Object} options
|
|
249
249
|
* @param {string} option.value the value will display.
|