@facter/ds-core 1.24.0 → 1.25.0
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.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1870,7 +1870,7 @@ var DataTablePagination = React10__namespace.memo(function DataTablePagination2(
|
|
|
1870
1870
|
value: `${pageSize}`,
|
|
1871
1871
|
onValueChange: handlePageSizeChange,
|
|
1872
1872
|
selectSize: "sm",
|
|
1873
|
-
children: pageSizes.map((size) => /* @__PURE__ */ jsxRuntime.jsx(SelectItem, { value: `${size}`, children: size }, size))
|
|
1873
|
+
children: [.../* @__PURE__ */ new Set([pageSize, ...pageSizes])].sort((a, b) => a - b).map((size) => /* @__PURE__ */ jsxRuntime.jsx(SelectItem, { value: `${size}`, children: size }, size))
|
|
1874
1874
|
}
|
|
1875
1875
|
)
|
|
1876
1876
|
] }),
|