@deque/cauldron-react 6.3.2-canary.b5ed8b0d → 6.3.2-canary.b72ab511
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/lib/index.js +4 -4
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -2890,9 +2890,9 @@ var Pagination = React__default["default"].forwardRef(function (_a, ref) {
|
|
|
2890
2890
|
}) }, other),
|
|
2891
2891
|
React__default["default"].createElement("ul", null,
|
|
2892
2892
|
React__default["default"].createElement("li", null,
|
|
2893
|
-
React__default["default"].createElement(IconButton, { icon: "chevron-double-left",
|
|
2893
|
+
React__default["default"].createElement(IconButton, { icon: "chevron-double-left", tooltipProps: { placement: tooltipPlacement }, label: firstPageLabel, "aria-disabled": isFirstPage, onClick: isFirstPage ? undefined : onFirstPageClick })),
|
|
2894
2894
|
React__default["default"].createElement("li", null,
|
|
2895
|
-
React__default["default"].createElement(IconButton, { icon: "chevron-left",
|
|
2895
|
+
React__default["default"].createElement(IconButton, { icon: "chevron-left", tooltipProps: { placement: tooltipPlacement }, label: previousPageLabel, "aria-disabled": isFirstPage, onClick: isFirstPage ? undefined : onPreviousPageClick })),
|
|
2896
2896
|
React__default["default"].createElement("li", null,
|
|
2897
2897
|
React__default["default"].createElement("span", { role: "log", "aria-atomic": "true", "aria-live": "polite" }, statusLabel || (React__default["default"].createElement("span", null,
|
|
2898
2898
|
"Showing ",
|
|
@@ -2903,9 +2903,9 @@ var Pagination = React__default["default"].forwardRef(function (_a, ref) {
|
|
|
2903
2903
|
" of ",
|
|
2904
2904
|
React__default["default"].createElement("strong", null, totalItems))))),
|
|
2905
2905
|
React__default["default"].createElement("li", null,
|
|
2906
|
-
React__default["default"].createElement(IconButton, { icon: "chevron-right",
|
|
2906
|
+
React__default["default"].createElement(IconButton, { icon: "chevron-right", tooltipProps: { placement: tooltipPlacement }, label: nextPageLabel, "aria-disabled": isLastPage, onClick: isLastPage ? undefined : onNextPageClick })),
|
|
2907
2907
|
React__default["default"].createElement("li", null,
|
|
2908
|
-
React__default["default"].createElement(IconButton, { icon: "chevron-double-right",
|
|
2908
|
+
React__default["default"].createElement(IconButton, { icon: "chevron-double-right", tooltipProps: { placement: tooltipPlacement }, label: lastPageLabel, "aria-disabled": isLastPage, onClick: isLastPage ? undefined : onLastPageClick })))));
|
|
2909
2909
|
});
|
|
2910
2910
|
Pagination.displayName = 'Pagination';
|
|
2911
2911
|
|
package/package.json
CHANGED