@quandis/qbo4.ui 4.0.1-CI-20250106-192639 → 4.0.1-CI-20250106-195358

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Quandis, Inc.",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "version": "4.0.1-CI-20250106-192639",
6
+ "version": "4.0.1-CI-20250106-195358",
7
7
  "workspaces": [
8
8
  "code"
9
9
  ],
@@ -92,13 +92,13 @@ let QboPaginate = class QboPaginate extends LitElement {
92
92
  <nav aria-label="Page navigation">
93
93
  <ul class="qbo-paginate">
94
94
  <li class="${this.currentPage === 1 ? 'disabled' : ''}">
95
- <a aria-label="Previous" @click="${(e) => this.goToPage(--this.currentPage)}">
95
+ <a aria-label="Previous" @click="${(e) => this.goToPage(this.currentPage - 1)}">
96
96
  <span aria-hidden="true">&laquo;</span>
97
97
  </a>
98
98
  </li>
99
99
  ${this.renderPageNumbers()}
100
100
  <li class="${this.currentPage === this.maxPage ? 'disabled' : ''}">
101
- <a aria-label="Next" @click="${(e) => this.goToPage(++this.currentPage)}">
101
+ <a aria-label="Next" @click="${(e) => this.goToPage(this.currentPage + 1)}">
102
102
  <span aria-hidden="true">&raquo;</span>
103
103
  </a>
104
104
  </li>
@@ -107,13 +107,13 @@ export class QboPaginate extends LitElement {
107
107
  <nav aria-label="Page navigation">
108
108
  <ul class="qbo-paginate">
109
109
  <li class="${this.currentPage === 1 ? 'disabled' : ''}">
110
- <a aria-label="Previous" @click="${(e) => this.goToPage(--this.currentPage) }">
110
+ <a aria-label="Previous" @click="${(e) => this.goToPage(this.currentPage-1) }">
111
111
  <span aria-hidden="true">&laquo;</span>
112
112
  </a>
113
113
  </li>
114
114
  ${this.renderPageNumbers()}
115
115
  <li class="${this.currentPage === this.maxPage ? 'disabled' : ''}">
116
- <a aria-label="Next" @click="${(e) => this.goToPage(++this.currentPage)}">
116
+ <a aria-label="Next" @click="${(e) => this.goToPage(this.currentPage+1)}">
117
117
  <span aria-hidden="true">&raquo;</span>
118
118
  </a>
119
119
  </li>