@vixoniccom/news-internal 0.4.21-dev.2 → 0.4.21-dev.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/CHANGELOG.md +4 -0
- package/build.zip +0 -0
- package/configuration/newsGroup/newsInputs.ts +3 -3
- package/configuration.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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.4](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.3...v0.4.21-dev.4) (2026-01-12)
|
|
6
|
+
|
|
7
|
+
### [0.4.21-dev.3](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.2...v0.4.21-dev.3) (2026-01-12)
|
|
8
|
+
|
|
5
9
|
### [0.4.21-dev.2](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.1...v0.4.21-dev.2) (2026-01-12)
|
|
6
10
|
|
|
7
11
|
### [0.4.21-dev.1](https://github.com/Vixonic/store-news-internal/compare/v0.4.21-dev.0...v0.4.21-dev.1) (2026-01-12)
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -14,7 +14,7 @@ export const newsInputs = [
|
|
|
14
14
|
id: 'title',
|
|
15
15
|
label: 'Título mediano',
|
|
16
16
|
required: true,
|
|
17
|
-
show: ShowValidations.
|
|
17
|
+
show: ShowValidations.titleEnabled,
|
|
18
18
|
range: new NumberRangeValue(1, 40),
|
|
19
19
|
pattern: '^(?!\\s*$).+',
|
|
20
20
|
}),
|
|
@@ -87,7 +87,7 @@ export const newsInputs = [
|
|
|
87
87
|
new TextInput({
|
|
88
88
|
id: 'qrCodeUrl',
|
|
89
89
|
label: 'URL código QR',
|
|
90
|
-
required:
|
|
90
|
+
required: true,
|
|
91
91
|
show: ShowValidations.qrCodeEnabled,
|
|
92
92
|
pattern: '^(?!\\s*$).+',
|
|
93
93
|
}),
|
|
@@ -95,7 +95,7 @@ export const newsInputs = [
|
|
|
95
95
|
new TextInput({
|
|
96
96
|
id: 'qrCodeTitle',
|
|
97
97
|
label: 'Título código QR',
|
|
98
|
-
required:
|
|
98
|
+
required: false,
|
|
99
99
|
show: ShowValidations.qrCodeEnabled,
|
|
100
100
|
pattern: '^(?!\\s*$).+',
|
|
101
101
|
}),
|
package/configuration.json
CHANGED
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"label": "URL código QR",
|
|
102
102
|
"show": "{{qrCodeEnabled}} === true",
|
|
103
103
|
"type": "text-input",
|
|
104
|
-
"required":
|
|
104
|
+
"required": true,
|
|
105
105
|
"pattern": "^(?!\\s*$).+"
|
|
106
106
|
},
|
|
107
107
|
{
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"label": "Título código QR",
|
|
110
110
|
"show": "{{qrCodeEnabled}} === true",
|
|
111
111
|
"type": "text-input",
|
|
112
|
-
"required":
|
|
112
|
+
"required": false,
|
|
113
113
|
"pattern": "^(?!\\s*$).+"
|
|
114
114
|
},
|
|
115
115
|
{
|