@vixoniccom/news-internal 0.4.6-beta.5 → 0.4.7-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 +3 -22
- package/build.zip +0 -0
- package/configuration/appearanceGroup/elementsInputs.ts +1 -1
- package/configuration.json +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,33 +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.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
* **release:** classname was added to div in text container ([8bbbe44](https://gitlab.com/mandomedio/vixonic/news-internal/commit/8bbbe44f5992a47e8fba84eca4ecca8413c64359))
|
|
11
|
-
|
|
12
|
-
### [0.4.6-beta.4](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.6-beta.3...v0.4.6-beta.4) (2021-10-21)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### Bug Fixes
|
|
16
|
-
|
|
17
|
-
* **release:** update styles in textContainer ([a6f9404](https://gitlab.com/mandomedio/vixonic/news-internal/commit/a6f94042cd9d6e21e909fe8d88bc229f3809e873))
|
|
18
|
-
|
|
19
|
-
### [0.4.6-beta.3](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.6-beta.2...v0.4.6-beta.3) (2021-10-20)
|
|
5
|
+
### [0.4.7-beta.0](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.6...v0.4.7-beta.0) (2021-10-29)
|
|
20
6
|
|
|
21
7
|
|
|
22
8
|
### Features
|
|
23
9
|
|
|
24
|
-
* **release:** react
|
|
25
|
-
|
|
26
|
-
### [0.4.6-beta.2](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.6-beta.1...v0.4.6-beta.2) (2021-10-20)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### Features
|
|
10
|
+
* **release:** react quill options were added to the app and also FormattedHtmlText component was created ([84e8113](https://gitlab.com/mandomedio/vixonic/news-internal/commit/84e81136f319f833bfd3db3ff0a2d08fe417c62f))
|
|
30
11
|
|
|
31
|
-
|
|
12
|
+
### [0.4.6](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.6-beta.1...v0.4.6) (2021-10-22)
|
|
32
13
|
|
|
33
14
|
### [0.4.6-beta.1](https://gitlab.com/mandomedio/vixonic/news-internal/compare/v0.4.6-beta.0...v0.4.6-beta.1) (2021-10-15)
|
|
34
15
|
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -14,7 +14,7 @@ const createTextInputs = (scope: string, label: string, show: string) => {
|
|
|
14
14
|
export const elementsInputs = [
|
|
15
15
|
new Label({ label: 'Elementos' }),
|
|
16
16
|
...createTextInputs('title', 'Título', ShowValidations.titleEnabled),
|
|
17
|
-
|
|
17
|
+
...createTextInputs('description', 'Descripción', ShowValidations.descriptionEnabled),
|
|
18
18
|
new NumberInput({ id: 'textSeparation', label: 'Separación de textos', description: 'En pixeles.',
|
|
19
19
|
show: ShowValidations.titleAndDescription }),
|
|
20
20
|
new Switch({ id: 'imageEnabled', label: 'Imagen', defaultValue: true, show: ShowValidations.isNotGradient }),
|
package/configuration.json
CHANGED
|
@@ -242,6 +242,19 @@
|
|
|
242
242
|
"type": "switch",
|
|
243
243
|
"defaultValue": true
|
|
244
244
|
},
|
|
245
|
+
{
|
|
246
|
+
"id": "descriptionFormat",
|
|
247
|
+
"label": "Formato",
|
|
248
|
+
"show": "{{descriptionEnabled}} === true",
|
|
249
|
+
"type": "text-format"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "descriptionLineHeight",
|
|
253
|
+
"label": "Altura de línea",
|
|
254
|
+
"show": "{{descriptionEnabled}} === true",
|
|
255
|
+
"type": "number-input",
|
|
256
|
+
"range": "[0.8:100:]"
|
|
257
|
+
},
|
|
245
258
|
{
|
|
246
259
|
"id": "textSeparation",
|
|
247
260
|
"label": "Separación de textos",
|