@vixoniccom/news-internal 0.4.21-dev.13 → 0.4.21-dev.15

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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.4.21-dev.15](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.14...v0.4.21-dev.15) (2026-01-12)
6
+
7
+ ### [0.4.21-dev.14](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.13...v0.4.21-dev.14) (2026-01-12)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * correct range format for showTime input in configuration ([c81a55e](https://github.com/Vixonic/store-news-internal/commit/c81a55ec3b71ad805cabb184a562b1d014a01111))
13
+ * update news input IDs and types in configuration files ([725fa09](https://github.com/Vixonic/store-news-internal/commit/725fa0913d2be9c729246e1e62e3a25e48280011))
14
+
5
15
  ### [0.4.21-dev.13](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.12...v0.4.21-dev.13) (2026-01-12)
6
16
 
7
17
  ### [0.4.21-dev.12](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.11...v0.4.21-dev.12) (2026-01-12)
package/build.zip CHANGED
Binary file
@@ -1,4 +1,4 @@
1
- import { List } from '@vixoniccom/modules'
1
+ import { List, NumberRangeValue } from '@vixoniccom/modules'
2
2
  import { newsInputs } from './newsInputs'
3
3
 
4
4
  export const newsGroup = new List({
@@ -7,6 +7,7 @@ export const newsGroup = new List({
7
7
  description: 'Lista de noticias',
8
8
  sortable: true,
9
9
  itemSchema: [...newsInputs],
10
+ range: new NumberRangeValue(1, 200),
10
11
  itemDisplayClass: '2-lines',
11
12
  itemDisplayAttributes: {
12
13
  title: 'title',
@@ -119,6 +119,7 @@
119
119
  }
120
120
  ],
121
121
  "description": "Lista de noticias",
122
+ "range": "[0:200]",
122
123
  "itemDisplayClass": "2-lines",
123
124
  "itemDisplayAttributes": {
124
125
  "title": "title",
@@ -187,7 +188,7 @@
187
188
  "id": "showTime",
188
189
  "label": "Persistencia",
189
190
  "type": "number-input",
190
- "range": "[5:9999:]",
191
+ "range": "[5:9999]",
191
192
  "description": "Tiempo en segundos por noticia. Por defecto 10"
192
193
  },
193
194
  {
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": ""
10
10
  },
11
- "version": "0.4.21-dev.13",
11
+ "version": "0.4.21-dev.15",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",