@vixoniccom/birthdays 0.5.1 → 0.6.1-dev.1
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 +19 -0
- package/configuration/appearanceGroup/AppearanceInputs.ts +7 -14
- package/configuration/dataGroup/DataInputs.ts +9 -36
- package/configuration/index.ts +1 -2
- package/configuration/standardGroup/{standardInputs.ts → StandardInputs.ts} +25 -25
- package/configuration/standardGroup/index.ts +1 -1
- package/configuration.json +43 -107
- package/package.json +3 -6
- package/build.zip +0 -0
- package/configuration/documentGroup/documentInputs.ts +0 -6
- package/configuration/documentGroup/index.ts +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
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.6.1-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.6.1-dev.0...v0.6.1-dev.1) (2025-05-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* unnecessary config removed ([a11b1c9](https://github.com/Vixonic/store-birthdays/commit/a11b1c9482adf6a181b13a8344c22a181ce776ed))
|
|
11
|
+
|
|
12
|
+
### [0.6.1-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.5.1...v0.6.1-dev.0) (2025-05-20)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* app modified with new service source ([2cb189f](https://github.com/Vixonic/store-birthdays/commit/2cb189f61920cbfc22ebe586600939d2cc3eb8bb))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* app version modified in package.json ([4c6b4a8](https://github.com/Vixonic/store-birthdays/commit/4c6b4a8532764a5be3ed8902c6c956bad9867824))
|
|
23
|
+
|
|
5
24
|
### [0.5.1](https://github.com/Vixonic/store-birthdays/compare/v0.5.1-dev.0...v0.5.1) (2025-04-17)
|
|
6
25
|
|
|
7
26
|
### [0.5.1-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.5.0...v0.5.1-dev.0) (2025-04-03)
|
|
@@ -4,7 +4,6 @@ import {
|
|
|
4
4
|
NumberRangeValue,
|
|
5
5
|
SelectAssetKna,
|
|
6
6
|
SelectInput,
|
|
7
|
-
Switch,
|
|
8
7
|
TextInput,
|
|
9
8
|
} from '@vixoniccom/modules'
|
|
10
9
|
|
|
@@ -32,6 +31,7 @@ export const appearanceInputs = [
|
|
|
32
31
|
{ label: 'Derecha - izquierda', value: 'slideLeft' },
|
|
33
32
|
],
|
|
34
33
|
defaultValue: 'fade',
|
|
34
|
+
description: 'Por defecto, Fundido.'
|
|
35
35
|
}),
|
|
36
36
|
new SelectInput({
|
|
37
37
|
id: 'animationSpeed',
|
|
@@ -46,41 +46,34 @@ export const appearanceInputs = [
|
|
|
46
46
|
new NumberInput({
|
|
47
47
|
id: 'animationTime',
|
|
48
48
|
label: 'Tiempo',
|
|
49
|
-
description: '
|
|
49
|
+
description: 'Duración de cada grupo de datos (en segundos).',
|
|
50
50
|
required: true,
|
|
51
51
|
range: new NumberRangeValue(1, 9999),
|
|
52
52
|
}),
|
|
53
|
-
new Switch({
|
|
54
|
-
id: 'animationOrder',
|
|
55
|
-
label: 'Orden',
|
|
56
|
-
displayOnTrue: 'Invertido',
|
|
57
|
-
displayOnFalse: 'Normal',
|
|
58
|
-
defaultValue: false,
|
|
59
|
-
}),
|
|
60
53
|
|
|
61
54
|
new Label({ label: 'Contenedor' }),
|
|
62
55
|
new NumberInput({
|
|
63
56
|
id: 'containerColumns',
|
|
64
57
|
label: 'Columnas',
|
|
65
|
-
description: 'Cantidad de items horizontales',
|
|
58
|
+
description: 'Cantidad de items horizontales. Por defecto, 1.',
|
|
66
59
|
range: new NumberRangeValue(1, 999),
|
|
67
60
|
}),
|
|
68
61
|
new NumberInput({
|
|
69
62
|
id: 'containerColumnsGap',
|
|
70
63
|
label: 'Separador horizontal',
|
|
71
|
-
description: 'Espacio entre columnas (en porcentaje)',
|
|
64
|
+
description: 'Espacio entre columnas (en porcentaje). Por defecto, 1%.',
|
|
72
65
|
range: new NumberRangeValue(1, 100),
|
|
73
66
|
}),
|
|
74
67
|
new NumberInput({
|
|
75
68
|
id: 'containerRows',
|
|
76
69
|
label: 'Filas',
|
|
77
|
-
description: 'Cantidad de items verticales',
|
|
70
|
+
description: 'Cantidad de items verticales. Por defecto, 3.',
|
|
78
71
|
range: new NumberRangeValue(1, 999),
|
|
79
72
|
}),
|
|
80
73
|
new NumberInput({
|
|
81
74
|
id: 'containerRowsGap',
|
|
82
75
|
label: 'Separador vertical',
|
|
83
|
-
description: 'Espacio entre filas (en porcentaje)',
|
|
76
|
+
description: 'Espacio entre filas (en porcentaje). Por defecto, 5%.',
|
|
84
77
|
range: new NumberRangeValue(1, 100),
|
|
85
78
|
}),
|
|
86
79
|
|
|
@@ -95,6 +88,6 @@ export const appearanceInputs = [
|
|
|
95
88
|
id: 'padding',
|
|
96
89
|
required: false,
|
|
97
90
|
label: 'Márgenes',
|
|
98
|
-
description: 'CSS para dar espacio arriba/derecha/abajo/izquieda',
|
|
91
|
+
description: 'CSS para dar espacio arriba/derecha/abajo/izquieda.',
|
|
99
92
|
}),
|
|
100
93
|
]
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { Label, SelectAssetKna, SelectInput,
|
|
1
|
+
import { Label, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
|
|
2
2
|
import { ShowValidations } from '../utils'
|
|
3
3
|
|
|
4
4
|
export const dataInputs = [
|
|
5
5
|
new Label({ label: 'Datos' }),
|
|
6
|
-
new
|
|
7
|
-
id: '
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
description: 'Ubicación de los datos',
|
|
6
|
+
new ServiceInput({
|
|
7
|
+
id: 'service',
|
|
8
|
+
label: 'Documento',
|
|
9
|
+
serviceType: 'BirthdayAppService'
|
|
11
10
|
}),
|
|
12
11
|
new SelectInput({
|
|
13
12
|
id: 'photosMode',
|
|
@@ -18,19 +17,13 @@ export const dataInputs = [
|
|
|
18
17
|
],
|
|
19
18
|
defaultValue: 'online',
|
|
20
19
|
}),
|
|
21
|
-
new TextInput({
|
|
22
|
-
id: 'photosUrl',
|
|
23
|
-
label: 'Fotos',
|
|
24
|
-
description: 'Ubicación donde se encuentran las fotos',
|
|
25
|
-
required: false,
|
|
26
|
-
show: ShowValidations.onlinePhotos,
|
|
27
|
-
}),
|
|
28
20
|
new SelectAssetKna({
|
|
29
21
|
id: 'photosZip',
|
|
30
22
|
label: 'Archivo Zip',
|
|
31
23
|
extensions: ['zip'],
|
|
32
24
|
show: ShowValidations.zipPhotos,
|
|
33
25
|
}),
|
|
26
|
+
new Label({ label: 'Funcionamiento' }),
|
|
34
27
|
new SelectInput({
|
|
35
28
|
id: 'updateTime',
|
|
36
29
|
label: 'Actualización',
|
|
@@ -44,28 +37,8 @@ export const dataInputs = [
|
|
|
44
37
|
{ label: 'Semanal', value: 604800000 },
|
|
45
38
|
],
|
|
46
39
|
defaultValue: 86400000,
|
|
40
|
+
description: 'Tiempo de actualización de los datos. Por defecto, diario.',
|
|
47
41
|
}),
|
|
48
|
-
|
|
49
|
-
new
|
|
50
|
-
new SelectInput({
|
|
51
|
-
id: 'dataMode',
|
|
52
|
-
label: 'Modo',
|
|
53
|
-
items: [
|
|
54
|
-
{ label: 'Diario', value: 'daily' },
|
|
55
|
-
{ label: 'Semanal', value: 'weekly' },
|
|
56
|
-
{ label: 'Mensual', value: 'monthly' },
|
|
57
|
-
{ label: 'Anual', value: 'yearly' },
|
|
58
|
-
],
|
|
59
|
-
defaultValue: 'monthly',
|
|
60
|
-
}),
|
|
61
|
-
new Switch({
|
|
62
|
-
id: 'excludePast',
|
|
63
|
-
label: 'Filtrar cumpleaños pasados',
|
|
64
|
-
displayOnTrue: 'Los cumpleaños ya pasados no seran mostrados',
|
|
65
|
-
displayOnFalse: 'Se siguen mostrando los cumpleaños pasados',
|
|
66
|
-
defaultValue: true,
|
|
67
|
-
}),
|
|
68
|
-
|
|
69
|
-
new TextInput({ id: 'msj0', label: 'Sin cumpleaños' }),
|
|
70
|
-
new TextFormat({ id: 'formatMjs', label: 'Formato Mensaje sin cumpleaños' }),
|
|
42
|
+
new TextInput({ id: 'defaultMessage', label: 'Sin cumpleaños' }),
|
|
43
|
+
new TextFormat({ id: 'defaultMessageFormat', label: 'Formato Mensaje sin cumpleaños' }),
|
|
71
44
|
]
|
package/configuration/index.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { Configuration } from '@vixoniccom/modules'
|
|
2
2
|
import { dataGroup } from './dataGroup'
|
|
3
3
|
import { appearanceGroup } from './appearanceGroup'
|
|
4
|
-
import { documentGroup } from './documentGroup'
|
|
5
4
|
import { standardGroup } from './standardGroup'
|
|
6
5
|
|
|
7
6
|
export const configuration = new Configuration({
|
|
8
|
-
schema: [
|
|
7
|
+
schema: [dataGroup, appearanceGroup, standardGroup],
|
|
9
8
|
})
|
|
@@ -39,14 +39,14 @@ export const standardInputs = [
|
|
|
39
39
|
new TextInput({
|
|
40
40
|
id: 'textMargin',
|
|
41
41
|
label: 'Margen',
|
|
42
|
-
description: 'Margen derecho de los textos (en porcentaje). Por defecto 4
|
|
42
|
+
description: 'Margen derecho de los textos (en porcentaje). Por defecto 4%.',
|
|
43
43
|
}),
|
|
44
44
|
|
|
45
45
|
new Switch({
|
|
46
46
|
id: 'descriptionEnabled',
|
|
47
|
-
label: '
|
|
48
|
-
displayOnTrue: '
|
|
49
|
-
displayOnFalse: '
|
|
47
|
+
label: 'Descripción',
|
|
48
|
+
displayOnTrue: 'habilitada',
|
|
49
|
+
displayOnFalse: 'deshabilitada',
|
|
50
50
|
defaultValue: true,
|
|
51
51
|
}),
|
|
52
52
|
|
|
@@ -56,9 +56,9 @@ export const standardInputs = [
|
|
|
56
56
|
|
|
57
57
|
new Switch({
|
|
58
58
|
id: 'optionalEnabled',
|
|
59
|
-
label: '
|
|
60
|
-
displayOnTrue: '
|
|
61
|
-
displayOnFalse: '
|
|
59
|
+
label: 'Campo opcional',
|
|
60
|
+
displayOnTrue: 'habilitado',
|
|
61
|
+
displayOnFalse: 'deshabilitado',
|
|
62
62
|
defaultValue: true,
|
|
63
63
|
}),
|
|
64
64
|
|
|
@@ -70,9 +70,9 @@ export const standardInputs = [
|
|
|
70
70
|
new Label({ label: 'Imagen' }),
|
|
71
71
|
new Switch({
|
|
72
72
|
id: 'imageEnabled',
|
|
73
|
-
label: '
|
|
74
|
-
displayOnTrue: '
|
|
75
|
-
displayOnFalse: '
|
|
73
|
+
label: 'Imagen',
|
|
74
|
+
displayOnTrue: 'habilitada',
|
|
75
|
+
displayOnFalse: 'deshabilitada',
|
|
76
76
|
defaultValue: true,
|
|
77
77
|
}),
|
|
78
78
|
new SelectInput({
|
|
@@ -100,7 +100,7 @@ export const standardInputs = [
|
|
|
100
100
|
new SelectInput({
|
|
101
101
|
id: 'imageStyle',
|
|
102
102
|
label: 'Estilo',
|
|
103
|
-
description: 'Forma de enmarcar la fotografía',
|
|
103
|
+
description: 'Forma de enmarcar la fotografía.',
|
|
104
104
|
required: true,
|
|
105
105
|
items: [
|
|
106
106
|
{ label: 'Normal', value: 'normal' },
|
|
@@ -113,13 +113,13 @@ export const standardInputs = [
|
|
|
113
113
|
new TextInput({
|
|
114
114
|
id: 'imageMargin',
|
|
115
115
|
label: 'Margen',
|
|
116
|
-
description: 'Margen derecho de la imagen (en porcentaje). Por defecto 4
|
|
116
|
+
description: 'Margen derecho de la imagen (en porcentaje). Por defecto 4%.',
|
|
117
117
|
show: ShowValidations.imageEnabled,
|
|
118
118
|
}),
|
|
119
119
|
new NumberInput({
|
|
120
120
|
id: 'imageSize',
|
|
121
121
|
label: 'Tamaño',
|
|
122
|
-
description: 'Tamaño de la imagen (en porcentaje)',
|
|
122
|
+
description: 'Tamaño de la imagen (en porcentaje).',
|
|
123
123
|
range: new NumberRangeValue(1, 100),
|
|
124
124
|
show: ShowValidations.imageEnabled,
|
|
125
125
|
}),
|
|
@@ -127,9 +127,9 @@ export const standardInputs = [
|
|
|
127
127
|
new Label({ label: 'Fecha' }),
|
|
128
128
|
new Switch({
|
|
129
129
|
id: 'dateEnabled',
|
|
130
|
-
label: '
|
|
131
|
-
displayOnTrue: '
|
|
132
|
-
displayOnFalse: '
|
|
130
|
+
label: 'Fecha',
|
|
131
|
+
displayOnTrue: 'habilitada',
|
|
132
|
+
displayOnFalse: 'deshabilitada',
|
|
133
133
|
defaultValue: true,
|
|
134
134
|
}),
|
|
135
135
|
new SelectInput({
|
|
@@ -157,7 +157,7 @@ export const standardInputs = [
|
|
|
157
157
|
new SelectInput({
|
|
158
158
|
id: 'dateStyle',
|
|
159
159
|
label: 'Estilo',
|
|
160
|
-
description: 'Forma de enmarcar la fotografía',
|
|
160
|
+
description: 'Forma de enmarcar la fotografía.',
|
|
161
161
|
required: true,
|
|
162
162
|
items: [
|
|
163
163
|
{ label: 'Calendario simple', value: 'calendarFlat' },
|
|
@@ -173,9 +173,9 @@ export const standardInputs = [
|
|
|
173
173
|
new TextFormat({ id: 'dateMonthFormat', label: 'Formato del mes', show: ShowValidations.dateEnabled }),
|
|
174
174
|
new Switch({
|
|
175
175
|
id: 'abbreviatedMonths',
|
|
176
|
-
label: 'Meses
|
|
177
|
-
displayOnTrue: '
|
|
178
|
-
displayOnFalse: '
|
|
176
|
+
label: 'Meses',
|
|
177
|
+
displayOnTrue: 'abreviados',
|
|
178
|
+
displayOnFalse: 'no abreviados',
|
|
179
179
|
defaultValue: false,
|
|
180
180
|
show: ShowValidations.abbreviatedMonthsCondition,
|
|
181
181
|
}),
|
|
@@ -187,16 +187,16 @@ export const standardInputs = [
|
|
|
187
187
|
new TextInput({
|
|
188
188
|
id: 'dateMargin',
|
|
189
189
|
label: 'Margen',
|
|
190
|
-
description: 'Margen derecho de la fecha (en porcentaje). Por defecto 4
|
|
190
|
+
description: 'Margen derecho de la fecha (en porcentaje). Por defecto 4%.',
|
|
191
191
|
show: ShowValidations.dateEnabled,
|
|
192
192
|
}),
|
|
193
193
|
|
|
194
194
|
new Label({ label: 'Separador' }),
|
|
195
195
|
new Switch({
|
|
196
196
|
id: 'separator',
|
|
197
|
-
label: '
|
|
198
|
-
displayOnTrue: '
|
|
199
|
-
displayOnFalse: '
|
|
197
|
+
label: 'Separador',
|
|
198
|
+
displayOnTrue: 'habilitado',
|
|
199
|
+
displayOnFalse: 'deshabilitado',
|
|
200
200
|
defaultValue: true,
|
|
201
201
|
}),
|
|
202
202
|
new NumberInput({ id: 'separatorWidth', label: 'Ancho', show: ShowValidations.separatorEnabled }),
|
|
@@ -204,7 +204,7 @@ export const standardInputs = [
|
|
|
204
204
|
new TextInput({
|
|
205
205
|
id: 'itemMargins',
|
|
206
206
|
label: 'Márgenes',
|
|
207
|
-
description: 'Un
|
|
207
|
+
description: 'Un CSS de longitud de uno o dos valores.',
|
|
208
208
|
pattern: '^(( )?[+-]?[0-9]+.?([0-9]+)?(px|em|ex|%|in|cm|mm|pt|pc)){1,2}$',
|
|
209
209
|
show: ShowValidations.separatorEnabled,
|
|
210
210
|
}),
|
package/configuration.json
CHANGED
|
@@ -1,22 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": [
|
|
3
|
-
{
|
|
4
|
-
"id": "documentGroup",
|
|
5
|
-
"label": "Documento",
|
|
6
|
-
"type": "group",
|
|
7
|
-
"items": [
|
|
8
|
-
{
|
|
9
|
-
"type": "label",
|
|
10
|
-
"label": "Documento"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": "url",
|
|
14
|
-
"label": "Ir al documento",
|
|
15
|
-
"type": "redirect-button",
|
|
16
|
-
"description": "Prueba"
|
|
17
|
-
}
|
|
18
|
-
]
|
|
19
|
-
},
|
|
20
3
|
{
|
|
21
4
|
"id": "dataGroup",
|
|
22
5
|
"label": "Configuración",
|
|
@@ -27,11 +10,10 @@
|
|
|
27
10
|
"label": "Datos"
|
|
28
11
|
},
|
|
29
12
|
{
|
|
30
|
-
"id": "
|
|
31
|
-
"label": "
|
|
32
|
-
"type": "
|
|
33
|
-
"
|
|
34
|
-
"required": true
|
|
13
|
+
"id": "service",
|
|
14
|
+
"label": "Documento",
|
|
15
|
+
"type": "service-input",
|
|
16
|
+
"serviceType": "BirthdayAppService"
|
|
35
17
|
},
|
|
36
18
|
{
|
|
37
19
|
"id": "photosMode",
|
|
@@ -49,14 +31,6 @@
|
|
|
49
31
|
],
|
|
50
32
|
"defaultValue": "online"
|
|
51
33
|
},
|
|
52
|
-
{
|
|
53
|
-
"id": "photosUrl",
|
|
54
|
-
"label": "Fotos",
|
|
55
|
-
"show": "{{photosMode}} === 'online'",
|
|
56
|
-
"type": "text-input",
|
|
57
|
-
"description": "Ubicación donde se encuentran las fotos",
|
|
58
|
-
"required": false
|
|
59
|
-
},
|
|
60
34
|
{
|
|
61
35
|
"id": "photosZip",
|
|
62
36
|
"label": "Archivo Zip",
|
|
@@ -67,10 +41,15 @@
|
|
|
67
41
|
],
|
|
68
42
|
"multiple": false
|
|
69
43
|
},
|
|
44
|
+
{
|
|
45
|
+
"type": "label",
|
|
46
|
+
"label": "Funcionamiento"
|
|
47
|
+
},
|
|
70
48
|
{
|
|
71
49
|
"id": "updateTime",
|
|
72
50
|
"label": "Actualización",
|
|
73
51
|
"type": "select-input",
|
|
52
|
+
"description": "Tiempo de actualización de los datos. Por defecto, diario.",
|
|
74
53
|
"items": [
|
|
75
54
|
{
|
|
76
55
|
"label": "10 minutos",
|
|
@@ -104,48 +83,12 @@
|
|
|
104
83
|
"defaultValue": 86400000
|
|
105
84
|
},
|
|
106
85
|
{
|
|
107
|
-
"
|
|
108
|
-
"label": "Funcionamiento"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"id": "dataMode",
|
|
112
|
-
"label": "Modo",
|
|
113
|
-
"type": "select-input",
|
|
114
|
-
"items": [
|
|
115
|
-
{
|
|
116
|
-
"label": "Diario",
|
|
117
|
-
"value": "daily"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"label": "Semanal",
|
|
121
|
-
"value": "weekly"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"label": "Mensual",
|
|
125
|
-
"value": "monthly"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"label": "Anual",
|
|
129
|
-
"value": "yearly"
|
|
130
|
-
}
|
|
131
|
-
],
|
|
132
|
-
"defaultValue": "monthly"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"id": "excludePast",
|
|
136
|
-
"label": "Filtrar cumpleaños pasados",
|
|
137
|
-
"type": "switch",
|
|
138
|
-
"defaultValue": true,
|
|
139
|
-
"displayOnTrue": "Los cumpleaños ya pasados no seran mostrados",
|
|
140
|
-
"displayOnFalse": "Se siguen mostrando los cumpleaños pasados"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"id": "msj0",
|
|
86
|
+
"id": "defaultMessage",
|
|
144
87
|
"label": "Sin cumpleaños",
|
|
145
88
|
"type": "text-input"
|
|
146
89
|
},
|
|
147
90
|
{
|
|
148
|
-
"id": "
|
|
91
|
+
"id": "defaultMessageFormat",
|
|
149
92
|
"label": "Formato Mensaje sin cumpleaños",
|
|
150
93
|
"type": "text-format"
|
|
151
94
|
}
|
|
@@ -185,6 +128,7 @@
|
|
|
185
128
|
"id": "animationMode",
|
|
186
129
|
"label": "Tipo de animación",
|
|
187
130
|
"type": "select-input",
|
|
131
|
+
"description": "Por defecto, Fundido.",
|
|
188
132
|
"items": [
|
|
189
133
|
{
|
|
190
134
|
"label": "Fundido",
|
|
@@ -227,17 +171,9 @@
|
|
|
227
171
|
"label": "Tiempo",
|
|
228
172
|
"type": "number-input",
|
|
229
173
|
"range": "[1:9999:]",
|
|
230
|
-
"description": "
|
|
174
|
+
"description": "Duración de cada grupo de datos (en segundos).",
|
|
231
175
|
"required": true
|
|
232
176
|
},
|
|
233
|
-
{
|
|
234
|
-
"id": "animationOrder",
|
|
235
|
-
"label": "Orden",
|
|
236
|
-
"type": "switch",
|
|
237
|
-
"defaultValue": false,
|
|
238
|
-
"displayOnTrue": "Invertido",
|
|
239
|
-
"displayOnFalse": "Normal"
|
|
240
|
-
},
|
|
241
177
|
{
|
|
242
178
|
"type": "label",
|
|
243
179
|
"label": "Contenedor"
|
|
@@ -247,28 +183,28 @@
|
|
|
247
183
|
"label": "Columnas",
|
|
248
184
|
"type": "number-input",
|
|
249
185
|
"range": "[1:999:]",
|
|
250
|
-
"description": "Cantidad de items horizontales"
|
|
186
|
+
"description": "Cantidad de items horizontales. Por defecto, 1."
|
|
251
187
|
},
|
|
252
188
|
{
|
|
253
189
|
"id": "containerColumnsGap",
|
|
254
190
|
"label": "Separador horizontal",
|
|
255
191
|
"type": "number-input",
|
|
256
192
|
"range": "[1:100:]",
|
|
257
|
-
"description": "Espacio entre columnas (en porcentaje)"
|
|
193
|
+
"description": "Espacio entre columnas (en porcentaje). Por defecto, 1%."
|
|
258
194
|
},
|
|
259
195
|
{
|
|
260
196
|
"id": "containerRows",
|
|
261
197
|
"label": "Filas",
|
|
262
198
|
"type": "number-input",
|
|
263
199
|
"range": "[1:999:]",
|
|
264
|
-
"description": "Cantidad de items verticales"
|
|
200
|
+
"description": "Cantidad de items verticales. Por defecto, 3."
|
|
265
201
|
},
|
|
266
202
|
{
|
|
267
203
|
"id": "containerRowsGap",
|
|
268
204
|
"label": "Separador vertical",
|
|
269
205
|
"type": "number-input",
|
|
270
206
|
"range": "[1:100:]",
|
|
271
|
-
"description": "Espacio entre filas (en porcentaje)"
|
|
207
|
+
"description": "Espacio entre filas (en porcentaje). Por defecto, 5%."
|
|
272
208
|
},
|
|
273
209
|
{
|
|
274
210
|
"type": "label",
|
|
@@ -289,7 +225,7 @@
|
|
|
289
225
|
"id": "padding",
|
|
290
226
|
"label": "Márgenes",
|
|
291
227
|
"type": "text-input",
|
|
292
|
-
"description": "CSS para dar espacio arriba/derecha/abajo/izquieda",
|
|
228
|
+
"description": "CSS para dar espacio arriba/derecha/abajo/izquieda.",
|
|
293
229
|
"required": false
|
|
294
230
|
}
|
|
295
231
|
]
|
|
@@ -361,15 +297,15 @@
|
|
|
361
297
|
"id": "textMargin",
|
|
362
298
|
"label": "Margen",
|
|
363
299
|
"type": "text-input",
|
|
364
|
-
"description": "Margen derecho de los textos (en porcentaje). Por defecto 4
|
|
300
|
+
"description": "Margen derecho de los textos (en porcentaje). Por defecto 4%."
|
|
365
301
|
},
|
|
366
302
|
{
|
|
367
303
|
"id": "descriptionEnabled",
|
|
368
|
-
"label": "
|
|
304
|
+
"label": "Descripción",
|
|
369
305
|
"type": "switch",
|
|
370
306
|
"defaultValue": true,
|
|
371
|
-
"displayOnTrue": "
|
|
372
|
-
"displayOnFalse": "
|
|
307
|
+
"displayOnTrue": "habilitada",
|
|
308
|
+
"displayOnFalse": "deshabilitada"
|
|
373
309
|
},
|
|
374
310
|
{
|
|
375
311
|
"type": "label",
|
|
@@ -390,11 +326,11 @@
|
|
|
390
326
|
},
|
|
391
327
|
{
|
|
392
328
|
"id": "optionalEnabled",
|
|
393
|
-
"label": "
|
|
329
|
+
"label": "Campo opcional",
|
|
394
330
|
"type": "switch",
|
|
395
331
|
"defaultValue": true,
|
|
396
|
-
"displayOnTrue": "
|
|
397
|
-
"displayOnFalse": "
|
|
332
|
+
"displayOnTrue": "habilitado",
|
|
333
|
+
"displayOnFalse": "deshabilitado"
|
|
398
334
|
},
|
|
399
335
|
{
|
|
400
336
|
"type": "label",
|
|
@@ -417,11 +353,11 @@
|
|
|
417
353
|
},
|
|
418
354
|
{
|
|
419
355
|
"id": "imageEnabled",
|
|
420
|
-
"label": "
|
|
356
|
+
"label": "Imagen",
|
|
421
357
|
"type": "switch",
|
|
422
358
|
"defaultValue": true,
|
|
423
|
-
"displayOnTrue": "
|
|
424
|
-
"displayOnFalse": "
|
|
359
|
+
"displayOnTrue": "habilitada",
|
|
360
|
+
"displayOnFalse": "deshabilitada"
|
|
425
361
|
},
|
|
426
362
|
{
|
|
427
363
|
"id": "imagePosition",
|
|
@@ -470,7 +406,7 @@
|
|
|
470
406
|
"label": "Estilo",
|
|
471
407
|
"show": "{{imageEnabled}} === true",
|
|
472
408
|
"type": "select-input",
|
|
473
|
-
"description": "Forma de enmarcar la fotografía",
|
|
409
|
+
"description": "Forma de enmarcar la fotografía.",
|
|
474
410
|
"items": [
|
|
475
411
|
{
|
|
476
412
|
"label": "Normal",
|
|
@@ -493,7 +429,7 @@
|
|
|
493
429
|
"label": "Margen",
|
|
494
430
|
"show": "{{imageEnabled}} === true",
|
|
495
431
|
"type": "text-input",
|
|
496
|
-
"description": "Margen derecho de la imagen (en porcentaje). Por defecto 4
|
|
432
|
+
"description": "Margen derecho de la imagen (en porcentaje). Por defecto 4%."
|
|
497
433
|
},
|
|
498
434
|
{
|
|
499
435
|
"id": "imageSize",
|
|
@@ -501,7 +437,7 @@
|
|
|
501
437
|
"show": "{{imageEnabled}} === true",
|
|
502
438
|
"type": "number-input",
|
|
503
439
|
"range": "[1:100:]",
|
|
504
|
-
"description": "Tamaño de la imagen (en porcentaje)"
|
|
440
|
+
"description": "Tamaño de la imagen (en porcentaje)."
|
|
505
441
|
},
|
|
506
442
|
{
|
|
507
443
|
"type": "label",
|
|
@@ -509,11 +445,11 @@
|
|
|
509
445
|
},
|
|
510
446
|
{
|
|
511
447
|
"id": "dateEnabled",
|
|
512
|
-
"label": "
|
|
448
|
+
"label": "Fecha",
|
|
513
449
|
"type": "switch",
|
|
514
450
|
"defaultValue": true,
|
|
515
|
-
"displayOnTrue": "
|
|
516
|
-
"displayOnFalse": "
|
|
451
|
+
"displayOnTrue": "habilitada",
|
|
452
|
+
"displayOnFalse": "deshabilitada"
|
|
517
453
|
},
|
|
518
454
|
{
|
|
519
455
|
"id": "datePosition",
|
|
@@ -562,7 +498,7 @@
|
|
|
562
498
|
"label": "Estilo",
|
|
563
499
|
"show": "{{dateEnabled}} === true",
|
|
564
500
|
"type": "select-input",
|
|
565
|
-
"description": "Forma de enmarcar la fotografía",
|
|
501
|
+
"description": "Forma de enmarcar la fotografía.",
|
|
566
502
|
"items": [
|
|
567
503
|
{
|
|
568
504
|
"label": "Calendario simple",
|
|
@@ -602,12 +538,12 @@
|
|
|
602
538
|
},
|
|
603
539
|
{
|
|
604
540
|
"id": "abbreviatedMonths",
|
|
605
|
-
"label": "Meses
|
|
541
|
+
"label": "Meses",
|
|
606
542
|
"show": "{{dateEnabled}} === true && ['calendarFlat', 'calendarText', 'outlines'].indexOf({{dateStyle}}) !== -1",
|
|
607
543
|
"type": "switch",
|
|
608
544
|
"defaultValue": false,
|
|
609
|
-
"displayOnTrue": "
|
|
610
|
-
"displayOnFalse": "
|
|
545
|
+
"displayOnTrue": "abreviados",
|
|
546
|
+
"displayOnFalse": "no abreviados"
|
|
611
547
|
},
|
|
612
548
|
{
|
|
613
549
|
"id": "datePrimaryColor",
|
|
@@ -621,7 +557,7 @@
|
|
|
621
557
|
"label": "Margen",
|
|
622
558
|
"show": "{{dateEnabled}} === true",
|
|
623
559
|
"type": "text-input",
|
|
624
|
-
"description": "Margen derecho de la fecha (en porcentaje). Por defecto 4
|
|
560
|
+
"description": "Margen derecho de la fecha (en porcentaje). Por defecto 4%."
|
|
625
561
|
},
|
|
626
562
|
{
|
|
627
563
|
"type": "label",
|
|
@@ -629,11 +565,11 @@
|
|
|
629
565
|
},
|
|
630
566
|
{
|
|
631
567
|
"id": "separator",
|
|
632
|
-
"label": "
|
|
568
|
+
"label": "Separador",
|
|
633
569
|
"type": "switch",
|
|
634
570
|
"defaultValue": true,
|
|
635
|
-
"displayOnTrue": "
|
|
636
|
-
"displayOnFalse": "
|
|
571
|
+
"displayOnTrue": "habilitado",
|
|
572
|
+
"displayOnFalse": "deshabilitado"
|
|
637
573
|
},
|
|
638
574
|
{
|
|
639
575
|
"id": "separatorWidth",
|
|
@@ -653,7 +589,7 @@
|
|
|
653
589
|
"label": "Márgenes",
|
|
654
590
|
"show": "{{separator}} === true",
|
|
655
591
|
"type": "text-input",
|
|
656
|
-
"description": "Un
|
|
592
|
+
"description": "Un CSS de longitud de uno o dos valores.",
|
|
657
593
|
"pattern": "^(( )?[+-]?[0-9]+.?([0-9]+)?(px|em|ex|%|in|cm|mm|pt|pc)){1,2}$"
|
|
658
594
|
}
|
|
659
595
|
]
|
package/package.json
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"tags": [],
|
|
7
7
|
"license": "ISC",
|
|
8
8
|
"author": {
|
|
9
|
-
"name": ""
|
|
9
|
+
"name": "Lorenzo Alfaro Bravo"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.6.1-dev.1",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublish": "vixonic-module-packager --mode=build",
|
|
14
14
|
"watch": "vixonic-module-packager --mode=watch",
|
|
@@ -21,10 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"animejs": "^3.2.2",
|
|
24
|
-
"axios": "^1.6.0",
|
|
25
24
|
"localforage": "^1.10.0",
|
|
26
|
-
"lodash": "^4.17.21",
|
|
27
|
-
"moment": "^2.29.4",
|
|
28
25
|
"react": "^17.0.2",
|
|
29
26
|
"react-dom": "^17.0.2"
|
|
30
27
|
},
|
|
@@ -34,7 +31,7 @@
|
|
|
34
31
|
"@types/react": "^17.0.35",
|
|
35
32
|
"@types/react-dom": "^17.0.11",
|
|
36
33
|
"@vixoniccom/module-packager": "^2.10.1",
|
|
37
|
-
"@vixoniccom/modules": "^2.20.0",
|
|
34
|
+
"@vixoniccom/modules": "^2.20.0-4dev.0",
|
|
38
35
|
"standard-version": "^9.5.0"
|
|
39
36
|
}
|
|
40
37
|
}
|
package/build.zip
DELETED
|
Binary file
|