@apexcura/ui-components 0.0.14-Beta243 → 0.0.14-Beta244
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -957,7 +957,7 @@ var TableElement = (props) => {
|
|
|
957
957
|
loading: props.loading,
|
|
958
958
|
className: props.className,
|
|
959
959
|
pagination: props.pagination ? {
|
|
960
|
-
|
|
960
|
+
current: props.value && props.value.page && props.value.page,
|
|
961
961
|
showTotal: (total) => `Total: ${total} items`,
|
|
962
962
|
total: props.count,
|
|
963
963
|
showSizeChanger: props.count ? props.count > 10 : 0 > 10,
|
package/dist/index.mjs
CHANGED
|
@@ -891,7 +891,7 @@ var TableElement = (props) => {
|
|
|
891
891
|
loading: props.loading,
|
|
892
892
|
className: props.className,
|
|
893
893
|
pagination: props.pagination ? {
|
|
894
|
-
|
|
894
|
+
current: props.value && props.value.page && props.value.page,
|
|
895
895
|
showTotal: (total) => `Total: ${total} items`,
|
|
896
896
|
total: props.count,
|
|
897
897
|
showSizeChanger: props.count ? props.count > 10 : 0 > 10,
|