wargerm 0.7.61 → 0.7.62
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.esm.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -7201,10 +7201,10 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7201
7201
|
return obj;
|
7202
7202
|
}))),
|
7203
7203
|
search: false,
|
7204
|
-
pagination:
|
7204
|
+
pagination: pagination !== null && pagination !== void 0 ? pagination : {
|
7205
7205
|
showSizeChanger: true,
|
7206
|
-
|
7207
|
-
}
|
7206
|
+
defaultPageSize: 10
|
7207
|
+
}
|
7208
7208
|
}, extraProps))));
|
7209
7209
|
};
|
7210
7210
|
var index$3 = /*#__PURE__*/React.forwardRef(TabelCard);
|
package/dist/index.js
CHANGED
@@ -7245,10 +7245,10 @@ var TabelCard = function TabelCard(props, ref) {
|
|
7245
7245
|
return obj;
|
7246
7246
|
}))),
|
7247
7247
|
search: false,
|
7248
|
-
pagination:
|
7248
|
+
pagination: pagination !== null && pagination !== void 0 ? pagination : {
|
7249
7249
|
showSizeChanger: true,
|
7250
|
-
|
7251
|
-
}
|
7250
|
+
defaultPageSize: 10
|
7251
|
+
}
|
7252
7252
|
}, extraProps))));
|
7253
7253
|
};
|
7254
7254
|
var index$3 = /*#__PURE__*/React__default['default'].forwardRef(TabelCard);
|