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

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,14 @@
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.14](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.13...v0.4.21-dev.14) (2026-01-12)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * correct range format for showTime input in configuration ([c81a55e](https://github.com/Vixonic/store-news-internal/commit/c81a55ec3b71ad805cabb184a562b1d014a01111))
11
+ * update news input IDs and types in configuration files ([725fa09](https://github.com/Vixonic/store-news-internal/commit/725fa0913d2be9c729246e1e62e3a25e48280011))
12
+
5
13
  ### [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
14
 
7
15
  ### [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',
@@ -187,7 +187,7 @@
187
187
  "id": "showTime",
188
188
  "label": "Persistencia",
189
189
  "type": "number-input",
190
- "range": "[5:9999:]",
190
+ "range": "[5:9999]",
191
191
  "description": "Tiempo en segundos por noticia. Por defecto 10"
192
192
  },
193
193
  {
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.14",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",