@vixoniccom/news-internal 0.4.21-dev.12 → 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,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.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
+
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)
14
+
5
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)
6
16
 
7
17
  ### [0.4.21-dev.11](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.10...v0.4.21-dev.11) (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',
@@ -13,7 +13,7 @@
13
13
  "type": "text-input",
14
14
  "required": true,
15
15
  "pattern": "^(?!\\s*$).+",
16
- "range": "[1:25:]"
16
+ "range": "[1:25]"
17
17
  },
18
18
  {
19
19
  "id": "titleMedium",
@@ -22,7 +22,7 @@
22
22
  "type": "text-input",
23
23
  "required": true,
24
24
  "pattern": "^(?!\\s*$).+",
25
- "range": "[1:40:]"
25
+ "range": "[1:40]"
26
26
  },
27
27
  {
28
28
  "id": "titleLarge",
@@ -31,7 +31,7 @@
31
31
  "type": "text-input",
32
32
  "required": true,
33
33
  "pattern": "^(?!\\s*$).+",
34
- "range": "[1:50:]"
34
+ "range": "[1:50]"
35
35
  },
36
36
  {
37
37
  "id": "titleExtraLarge",
@@ -40,7 +40,7 @@
40
40
  "type": "text-input",
41
41
  "required": true,
42
42
  "pattern": "^(?!\\s*$).+",
43
- "range": "[1:70:]"
43
+ "range": "[1:70]"
44
44
  },
45
45
  {
46
46
  "id": "descriptionShort",
@@ -49,7 +49,7 @@
49
49
  "type": "text-area",
50
50
  "required": true,
51
51
  "pattern": "^(?!\\s*$).+",
52
- "range": "[1:80:]",
52
+ "range": "[1:80]",
53
53
  "html": true
54
54
  },
55
55
  {
@@ -59,7 +59,7 @@
59
59
  "type": "text-area",
60
60
  "required": true,
61
61
  "pattern": "^(?!\\s*$).+",
62
- "range": "[1:180:]",
62
+ "range": "[1:180]",
63
63
  "html": true
64
64
  },
65
65
  {
@@ -69,7 +69,7 @@
69
69
  "type": "text-area",
70
70
  "required": true,
71
71
  "pattern": "^(?!\\s*$).+",
72
- "range": "[1:350:]",
72
+ "range": "[1:350]",
73
73
  "html": true
74
74
  },
75
75
  {
@@ -79,7 +79,7 @@
79
79
  "type": "text-area",
80
80
  "required": true,
81
81
  "pattern": "^(?!\\s*$).+",
82
- "range": "[1:500:]",
82
+ "range": "[1:500]",
83
83
  "html": true
84
84
  },
85
85
  {
@@ -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
  {
@@ -271,7 +271,7 @@
271
271
  "label": "Altura de línea",
272
272
  "show": "{{titleEnabled}} === true",
273
273
  "type": "number-input",
274
- "range": "[0.8:100:]"
274
+ "range": "[0.8:100]"
275
275
  },
276
276
  {
277
277
  "id": "descriptionEnabled",
@@ -290,7 +290,7 @@
290
290
  "label": "Altura de línea",
291
291
  "show": "{{descriptionEnabled}} === true",
292
292
  "type": "number-input",
293
- "range": "[0.8:100:]"
293
+ "range": "[0.8:100]"
294
294
  },
295
295
  {
296
296
  "id": "textSeparation",
@@ -337,7 +337,7 @@
337
337
  "label": "Tamaño personalizado",
338
338
  "show": "{{imageEnabled}} === true && ( ( {{template}} === 'gallery' ) === false ) && ( ( {{template}} === 'gradient' ) === false ) && ( {{imageSize}} === 'custom' )",
339
339
  "type": "number-input",
340
- "range": "[1:100:]",
340
+ "range": "[1:100]",
341
341
  "description": "En porcentaje.",
342
342
  "required": true
343
343
  },
@@ -443,7 +443,7 @@
443
443
  "label": "Porcentje de degradado",
444
444
  "show": "{{template}} === 'gradient'",
445
445
  "type": "number-input",
446
- "range": "[1:100:]",
446
+ "range": "[1:100]",
447
447
  "description": "Por defecto 50"
448
448
  },
449
449
  {
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": ""
10
10
  },
11
- "version": "0.4.21-dev.12",
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",