primereact 8.6.0 → 8.6.1

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/primereact.all.js CHANGED
@@ -10704,14 +10704,15 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
10704
10704
  'pi-chevron-left': !isVertical,
10705
10705
  'pi-chevron-up': isVertical
10706
10706
  });
10707
- return /*#__PURE__*/React__namespace.createElement(Button, {
10707
+ return /*#__PURE__*/React__namespace.createElement("button", {
10708
10708
  type: "button",
10709
10709
  className: _className,
10710
- icon: iconClassName,
10711
10710
  onClick: navBackward,
10712
10711
  disabled: isDisabled,
10713
10712
  "aria-label": ariaLabel('previousPageLabel')
10714
- });
10713
+ }, /*#__PURE__*/React__namespace.createElement("span", {
10714
+ className: iconClassName
10715
+ }), /*#__PURE__*/React__namespace.createElement(Ripple, null));
10715
10716
  }
10716
10717
 
10717
10718
  return null;
@@ -10729,14 +10730,15 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
10729
10730
  'pi-chevron-right': !isVertical,
10730
10731
  'pi-chevron-down': isVertical
10731
10732
  });
10732
- return /*#__PURE__*/React__namespace.createElement(Button, {
10733
+ return /*#__PURE__*/React__namespace.createElement("button", {
10733
10734
  type: "button",
10734
10735
  className: _className2,
10735
- icon: iconClassName,
10736
10736
  onClick: navForward,
10737
10737
  disabled: isDisabled,
10738
10738
  "aria-label": ariaLabel('nextPageLabel')
10739
- });
10739
+ }, /*#__PURE__*/React__namespace.createElement("span", {
10740
+ className: iconClassName
10741
+ }), /*#__PURE__*/React__namespace.createElement(Ripple, null));
10740
10742
  }
10741
10743
 
10742
10744
  return null;
@@ -10751,14 +10753,14 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
10751
10753
  return /*#__PURE__*/React__namespace.createElement("li", {
10752
10754
  key: key,
10753
10755
  className: className
10754
- }, /*#__PURE__*/React__namespace.createElement(Button, {
10756
+ }, /*#__PURE__*/React__namespace.createElement("button", {
10755
10757
  type: "button",
10756
10758
  className: "p-link",
10757
10759
  onClick: function onClick(e) {
10758
10760
  return onDotClick(e, index);
10759
10761
  },
10760
10762
  "aria-label": "".concat(ariaLabel('pageLabel'), " ").concat(index + 1)
10761
- }));
10763
+ }, /*#__PURE__*/React__namespace.createElement(Ripple, null)));
10762
10764
  };
10763
10765
 
10764
10766
  var createIndicators = function createIndicators() {
@@ -14748,14 +14750,15 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
14748
14750
  'p-disabled': props.disabled
14749
14751
  });
14750
14752
  var iconClassName = 'p-paginator-icon pi pi-angle-double-left';
14751
- var element = /*#__PURE__*/React__namespace.createElement(Button, {
14753
+ var element = /*#__PURE__*/React__namespace.createElement("button", {
14752
14754
  type: "button",
14753
14755
  className: className,
14754
- icon: iconClassName,
14755
14756
  onClick: props.onClick,
14756
14757
  disabled: props.disabled,
14757
14758
  "aria-label": ariaLabel('firstPageLabel')
14758
- });
14759
+ }, /*#__PURE__*/React__namespace.createElement("span", {
14760
+ className: iconClassName
14761
+ }), /*#__PURE__*/React__namespace.createElement(Ripple, null));
14759
14762
 
14760
14763
  if (props.template) {
14761
14764
  var defaultOptions = {
@@ -15968,14 +15971,15 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
15968
15971
  'p-disabled': props.disabled
15969
15972
  });
15970
15973
  var iconClassName = 'p-paginator-icon pi pi-angle-double-right';
15971
- var element = /*#__PURE__*/React__namespace.createElement(Button, {
15974
+ var element = /*#__PURE__*/React__namespace.createElement("button", {
15972
15975
  type: "button",
15973
15976
  className: className,
15974
- icon: iconClassName,
15975
15977
  onClick: props.onClick,
15976
15978
  disabled: props.disabled,
15977
15979
  "aria-label": ariaLabel('lastPageLabel')
15978
- });
15980
+ }, /*#__PURE__*/React__namespace.createElement("span", {
15981
+ className: iconClassName
15982
+ }), /*#__PURE__*/React__namespace.createElement(Ripple, null));
15979
15983
 
15980
15984
  if (props.template) {
15981
15985
  var defaultOptions = {
@@ -16004,14 +16008,15 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
16004
16008
  'p-disabled': props.disabled
16005
16009
  });
16006
16010
  var iconClassName = 'p-paginator-icon pi pi-angle-right';
16007
- var element = /*#__PURE__*/React__namespace.createElement(Button, {
16011
+ var element = /*#__PURE__*/React__namespace.createElement("button", {
16008
16012
  type: "button",
16009
16013
  className: className,
16010
- icon: iconClassName,
16011
16014
  onClick: props.onClick,
16012
16015
  disabled: props.disabled,
16013
16016
  "aria-label": ariaLabel('nextPageLabel')
16014
- });
16017
+ }, /*#__PURE__*/React__namespace.createElement("span", {
16018
+ className: iconClassName
16019
+ }), /*#__PURE__*/React__namespace.createElement(Ripple, null));
16015
16020
 
16016
16021
  if (props.template) {
16017
16022
  var defaultOptions = {
@@ -16058,14 +16063,14 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
16058
16063
  'p-paginator-page-end': pageLink === endPageInView,
16059
16064
  'p-highlight': pageLink - 1 === props.page
16060
16065
  });
16061
- var element = /*#__PURE__*/React__namespace.createElement(Button, {
16066
+ var element = /*#__PURE__*/React__namespace.createElement("button", {
16062
16067
  type: "button",
16063
16068
  className: className,
16064
16069
  onClick: function onClick(e) {
16065
16070
  return onPageLinkClick(e, pageLink);
16066
16071
  },
16067
16072
  "aria-label": "".concat(ariaLabel('pageLabel'), " ").concat(pageLink + 1)
16068
- }, pageLink);
16073
+ }, pageLink, /*#__PURE__*/React__namespace.createElement(Ripple, null));
16069
16074
 
16070
16075
  if (props.template) {
16071
16076
  var defaultOptions = {
@@ -16112,14 +16117,15 @@ var primereact = (function (exports, React, reactTransitionGroup, ReactDOM) {
16112
16117
  'p-disabled': props.disabled
16113
16118
  });
16114
16119
  var iconClassName = 'p-paginator-icon pi pi-angle-left';
16115
- var element = /*#__PURE__*/React__namespace.createElement(Button, {
16120
+ var element = /*#__PURE__*/React__namespace.createElement("button", {
16116
16121
  type: "button",
16117
16122
  className: className,
16118
- icon: iconClassName,
16119
16123
  onClick: props.onClick,
16120
16124
  disabled: props.disabled,
16121
16125
  "aria-label": ariaLabel('previousPageLabel')
16122
- });
16126
+ }, /*#__PURE__*/React__namespace.createElement("span", {
16127
+ className: iconClassName
16128
+ }), /*#__PURE__*/React__namespace.createElement(Ripple, null));
16123
16129
 
16124
16130
  if (props.template) {
16125
16131
  var defaultOptions = {