@7onic-ui/react 0.2.5 → 0.2.6

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 CHANGED
@@ -4919,9 +4919,8 @@ var PaginationRoot = React26.forwardRef(
4919
4919
  color = "default",
4920
4920
  radius = "md",
4921
4921
  disabled = false,
4922
- // Pre-declared API; conditional auto-rendering is tracked in COMPONENT-IMPROVEMENTS.md.
4923
- withControls: _withControls = true,
4924
- withEdges: _withEdges = false,
4922
+ withControls = true,
4923
+ withEdges = false,
4925
4924
  loop = false,
4926
4925
  children,
4927
4926
  ...props
@@ -4959,7 +4958,7 @@ var PaginationRoot = React26.forwardRef(
4959
4958
  className: cn("", className),
4960
4959
  ...props
4961
4960
  },
4962
- children
4961
+ children ?? /* @__PURE__ */ React26.createElement(PaginationContent, null, withEdges && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationFirst, null)), withControls && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationPrevious, null)), /* @__PURE__ */ React26.createElement(PaginationItems, null), withControls && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationNext, null)), withEdges && /* @__PURE__ */ React26.createElement(PaginationItem, null, /* @__PURE__ */ React26.createElement(PaginationLast, null)))
4963
4962
  ));
4964
4963
  }
4965
4964
  );