antd-management-fast-framework 1.11.47 → 1.11.48
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.
|
@@ -102,11 +102,12 @@ export function buildMenuHeaderRender({ logoDom, collapsed, navTheme, shortName,
|
|
|
102
102
|
export function buildButtonGroup({ buttons }: {
|
|
103
103
|
buttons?: any[] | undefined;
|
|
104
104
|
}): JSX.Element | null;
|
|
105
|
-
export function buildListViewItemExtra({ align, index, imageUrl, emptyImageUrl, }: {
|
|
105
|
+
export function buildListViewItemExtra({ align, index, imageUrl, emptyImageUrl, width, }: {
|
|
106
106
|
align: any;
|
|
107
107
|
index: any;
|
|
108
108
|
imageUrl: any;
|
|
109
109
|
emptyImageUrl: any;
|
|
110
|
+
width?: string | undefined;
|
|
110
111
|
}): JSX.Element;
|
|
111
112
|
export function buildTagList({ list }: {
|
|
112
113
|
list?: any[] | undefined;
|
|
@@ -1374,7 +1374,9 @@ function buildListViewItemExtra(_ref12) {
|
|
|
1374
1374
|
var align = _ref12.align,
|
|
1375
1375
|
index = _ref12.index,
|
|
1376
1376
|
imageUrl = _ref12.imageUrl,
|
|
1377
|
-
emptyImageUrl = _ref12.emptyImageUrl
|
|
1377
|
+
emptyImageUrl = _ref12.emptyImageUrl,
|
|
1378
|
+
_ref12$width = _ref12.width,
|
|
1379
|
+
width = _ref12$width === void 0 ? '100px' : _ref12$width;
|
|
1378
1380
|
return /*#__PURE__*/_react.default.createElement(_VerticalBox.default, {
|
|
1379
1381
|
align: align || 'bottom',
|
|
1380
1382
|
style: {
|
|
@@ -1382,7 +1384,7 @@ function buildListViewItemExtra(_ref12) {
|
|
|
1382
1384
|
}
|
|
1383
1385
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
1384
1386
|
style: {
|
|
1385
|
-
width:
|
|
1387
|
+
width: width
|
|
1386
1388
|
}
|
|
1387
1389
|
}, /*#__PURE__*/_react.default.createElement(_ImageBox.default, {
|
|
1388
1390
|
src: imageUrl || emptyImageUrl,
|