sumba 2.19.3 → 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.
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.3",
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,9 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-04-21
4
+
5
+ - [2.19.4] Bug fix in ```getCountriesValues()```
6
+
3
7
  ## 2026-04-19
4
8
 
5
9
  - [2.19.3] Update all widgets ```wdb-table``` to ```wdb-data-table```