@nectary/components 5.15.1 → 5.15.2

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/bundle.js CHANGED
@@ -7943,6 +7943,10 @@ class Pagination extends NectaryElement {
7943
7943
  setClass($b, "dots", ellipsis);
7944
7944
  updateAttribute($b, "aria-hidden", ellipsis);
7945
7945
  $b.disabled = ellipsis;
7946
+ } else {
7947
+ setClass($b, "dots", false);
7948
+ updateAttribute($b, "aria-hidden", false);
7949
+ $b.disabled = false;
7946
7950
  }
7947
7951
  setClass($b, "hidden", i >= max);
7948
7952
  const btnText = $b.firstElementChild;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nectary/components",
3
- "version": "5.15.1",
3
+ "version": "5.15.2",
4
4
  "files": [
5
5
  "**/*/*.css",
6
6
  "**/*/*.json",
@@ -87,6 +87,10 @@ class Pagination extends NectaryElement {
87
87
  setClass($b, "dots", ellipsis);
88
88
  updateAttribute($b, "aria-hidden", ellipsis);
89
89
  $b.disabled = ellipsis;
90
+ } else {
91
+ setClass($b, "dots", false);
92
+ updateAttribute($b, "aria-hidden", false);
93
+ $b.disabled = false;
90
94
  }
91
95
  setClass($b, "hidden", i >= max);
92
96
  const btnText = $b.firstElementChild;