sumba 2.19.2 → 2.19.4

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.
@@ -12,7 +12,7 @@
12
12
  </c:card>
13
13
  <c:grid-row>
14
14
  <c:grid-col col="8-lg 6-md">
15
- <c:wdb-table responsive body-divider strip hover no-details-click />
15
+ <c:wdb-data-table responsive body-divider strip hover no-details-click />
16
16
  <c:div>
17
17
  <c:wdb-pagination />
18
18
  </c:div>
@@ -6,5 +6,5 @@
6
6
  <c:wdb-btn-add href="sumba:/help/trouble-tickets/add"/>
7
7
  </c:grid-col>
8
8
  </c:grid-row>
9
- <c:wdb-table responsive body-divider strip hover details-href="sumba:/help/trouble-tickets/details/:id" />
9
+ <c:wdb-data-table responsive body-divider strip hover details-href="sumba:/help/trouble-tickets/details/:id" />
10
10
  <!-- include waibuDb.partial:/crud/_list-footer.html -->
package/index.js CHANGED
@@ -472,7 +472,7 @@ async function factory (pkgName) {
472
472
  getCountriesValues = async () => {
473
473
  const { getModel } = this.app.dobo
474
474
  const model = getModel('CdbCountry')
475
- const items = await model.findAllRecord()
475
+ const items = await model.findAllRecord({}, { noMagic: true, dataOnly: true })
476
476
  return items.map(item => ({ value: item.id, text: item.name }))
477
477
  }
478
478
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sumba",
3
- "version": "2.19.2",
3
+ "version": "2.19.4",
4
4
  "description": "Biz Suite for Bajo Framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-04-21
4
+
5
+ - [2.19.4] Bug fix in ```getCountriesValues()```
6
+
7
+ ## 2026-04-19
8
+
9
+ - [2.19.3] Update all widgets ```wdb-table``` to ```wdb-data-table```
10
+
3
11
  ## 2026-04-18
4
12
 
5
13
  - [2.19.2] Bug fix in ```sumba:personInCharge``` feature: add email rules