@vixoniccom/news-internal 0.4.20-dev.0 → 0.4.20-dev.2
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 +10 -0
- package/build.zip +0 -0
- package/configuration/newsGroup/newsInputs.ts +0 -4
- package/configuration.json +0 -4
- package/package.json +2 -2
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.20-dev.2](https://github.com/Vixonic/store-news-internal/compare/v0.4.20-dev.1...v0.4.20-dev.2) (2025-09-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* remove pattern from textArea inputs ([c8968f5](https://github.com/Vixonic/store-news-internal/commit/c8968f597474fe67826b86f61b10f146d36e1200))
|
|
11
|
+
* return to previous react-quill version ([3f57427](https://github.com/Vixonic/store-news-internal/commit/3f57427282187d96653b8fe990656f7f0f8d3bfc))
|
|
12
|
+
|
|
13
|
+
### [0.4.20-dev.1](https://github.com/Vixonic/store-news-internal/compare/v0.4.20-dev.0...v0.4.20-dev.1) (2025-09-03)
|
|
14
|
+
|
|
5
15
|
### [0.4.20-dev.0](https://github.com/Vixonic/store-news-internal/compare/v0.4.19...v0.4.20-dev.0) (2025-09-03)
|
|
6
16
|
|
|
7
17
|
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -43,7 +43,6 @@ export const newsInputs = [
|
|
|
43
43
|
show: ShowValidations.shortDescriptionEnabled,
|
|
44
44
|
range: new NumberRangeValue(1, 80),
|
|
45
45
|
html: true,
|
|
46
|
-
pattern: '^(?!\\s*$).+',
|
|
47
46
|
}),
|
|
48
47
|
|
|
49
48
|
new TextArea({
|
|
@@ -53,7 +52,6 @@ export const newsInputs = [
|
|
|
53
52
|
show: ShowValidations.mediumDescriptionEnabled,
|
|
54
53
|
range: new NumberRangeValue(1, 180),
|
|
55
54
|
html: true,
|
|
56
|
-
pattern: '^(?!\\s*$).+',
|
|
57
55
|
}),
|
|
58
56
|
|
|
59
57
|
new TextArea({
|
|
@@ -63,7 +61,6 @@ export const newsInputs = [
|
|
|
63
61
|
show: ShowValidations.largeDescriptionEnabled,
|
|
64
62
|
range: new NumberRangeValue(1, 350),
|
|
65
63
|
html: true,
|
|
66
|
-
pattern: '^(?!\\s*$).+',
|
|
67
64
|
}),
|
|
68
65
|
|
|
69
66
|
new TextArea({
|
|
@@ -73,7 +70,6 @@ export const newsInputs = [
|
|
|
73
70
|
show: ShowValidations.extraLargeDescriptionEnabled,
|
|
74
71
|
range: new NumberRangeValue(1, 500),
|
|
75
72
|
html: true,
|
|
76
|
-
pattern: '^(?!\\s*$).+',
|
|
77
73
|
}),
|
|
78
74
|
|
|
79
75
|
new SelectAssetKna({
|
package/configuration.json
CHANGED
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"show": "{{descriptionEnabled}} === true && ({{newsSizeSelect}} === 'short')",
|
|
49
49
|
"type": "text-area",
|
|
50
50
|
"required": true,
|
|
51
|
-
"pattern": "^(?!\\s*$).+",
|
|
52
51
|
"range": "[1:80:]",
|
|
53
52
|
"html": true
|
|
54
53
|
},
|
|
@@ -58,7 +57,6 @@
|
|
|
58
57
|
"show": "{{descriptionEnabled}} === true && ({{newsSizeSelect}} === 'medium')",
|
|
59
58
|
"type": "text-area",
|
|
60
59
|
"required": true,
|
|
61
|
-
"pattern": "^(?!\\s*$).+",
|
|
62
60
|
"range": "[1:180:]",
|
|
63
61
|
"html": true
|
|
64
62
|
},
|
|
@@ -68,7 +66,6 @@
|
|
|
68
66
|
"show": "{{descriptionEnabled}} === true && ({{newsSizeSelect}} === 'large')",
|
|
69
67
|
"type": "text-area",
|
|
70
68
|
"required": true,
|
|
71
|
-
"pattern": "^(?!\\s*$).+",
|
|
72
69
|
"range": "[1:350:]",
|
|
73
70
|
"html": true
|
|
74
71
|
},
|
|
@@ -78,7 +75,6 @@
|
|
|
78
75
|
"show": "{{descriptionEnabled}} === true && ({{newsSizeSelect}} === 'extra-large')",
|
|
79
76
|
"type": "text-area",
|
|
80
77
|
"required": true,
|
|
81
|
-
"pattern": "^(?!\\s*$).+",
|
|
82
78
|
"range": "[1:500:]",
|
|
83
79
|
"html": true
|
|
84
80
|
},
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"author": {
|
|
9
9
|
"name": ""
|
|
10
10
|
},
|
|
11
|
-
"version": "0.4.20-dev.
|
|
11
|
+
"version": "0.4.20-dev.2",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublish": "vixonic-module-packager --mode=build",
|
|
14
14
|
"watch": "vixonic-module-packager --mode=watch",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"react": "^18.3.1",
|
|
26
26
|
"react-dom": "^18.3.1",
|
|
27
27
|
"react-qr-code": "^2.0.18",
|
|
28
|
-
"react-quill": "^
|
|
28
|
+
"react-quill": "^1.3.5",
|
|
29
29
|
"react-transition-group": "^4.4.5",
|
|
30
30
|
"uuid": "^9.0.0"
|
|
31
31
|
},
|