@vixoniccom/news-internal 0.4.7 → 0.4.8-beta.0

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,13 @@
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.8-beta.0](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.7...v0.4.8-beta.0) (2021-11-29)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **release:** max limit characters conditions were updated to titles and descriptions ([3b39797](https://gitlab.com/mandomedio/vixonic/news-internal/commit/3b39797689c48c7b27a0707aa934fe01a047e3d0))
11
+
5
12
  ### [0.4.7](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.7-beta.4...v0.4.7) (2021-11-12)
6
13
 
7
14
  ### [0.4.7-beta.4](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.7-beta.3...v0.4.7-beta.4) (2021-10-29)
package/build.zip CHANGED
Binary file
@@ -13,7 +13,7 @@ const newsList = new List({
13
13
  label: 'Título corto',
14
14
  required: true,
15
15
  show: ShowValidations.shortTitleEnabled,
16
- range: new NumberRangeValue(1, 20)
16
+ range: new NumberRangeValue(1, 25)
17
17
  }),
18
18
  new TextInput({
19
19
  id: 'title',
@@ -27,7 +27,7 @@ const newsList = new List({
27
27
  label: 'Título largo',
28
28
  required: true,
29
29
  show: ShowValidations.largeTitleEnabled,
30
- range: new NumberRangeValue(1, 80)
30
+ range: new NumberRangeValue(1, 70)
31
31
  }),
32
32
 
33
33
  new TextArea({
@@ -53,7 +53,7 @@ const newsList = new List({
53
53
  label: 'Descripción larga',
54
54
  required: true,
55
55
  show: ShowValidations.largeDescriptionEnabled,
56
- range: new NumberRangeValue(1, 650),
56
+ range: new NumberRangeValue(1, 500),
57
57
  html: true
58
58
  }),
59
59
 
@@ -12,7 +12,7 @@
12
12
  "show": "{{titleEnabled}} === true && ({{newsSizeSelect}} === 'short')",
13
13
  "type": "text-input",
14
14
  "required": true,
15
- "range": "[1:20]"
15
+ "range": "[1:25]"
16
16
  },
17
17
  {
18
18
  "id": "title",
@@ -28,7 +28,7 @@
28
28
  "show": "{{titleEnabled}} === true && ({{newsSizeSelect}} === 'large')",
29
29
  "type": "text-input",
30
30
  "required": true,
31
- "range": "[1:80]"
31
+ "range": "[1:70]"
32
32
  },
33
33
  {
34
34
  "id": "description",
@@ -54,7 +54,7 @@
54
54
  "show": "{{descriptionEnabled}} === true && ({{newsSizeSelect}} === 'large')",
55
55
  "type": "text-area",
56
56
  "required": true,
57
- "range": "[1:650]",
57
+ "range": "[1:500]",
58
58
  "html": true
59
59
  },
60
60
  {
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "author": {
8
8
  "name": ""
9
9
  },
10
- "version": "0.4.7",
10
+ "version": "0.4.8-beta.0",
11
11
  "scripts": {
12
12
  "prepublishOnly": "vixonic-module-packager --mode=build",
13
13
  "watch": "vixonic-module-packager --mode=watch",