@vixoniccom/birthdays 0.6.1-dev.0 → 0.6.1-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 +14 -0
- package/configuration/appearanceGroup/AppearanceInputs.ts +7 -14
- package/configuration/dataGroup/DataInputs.ts +3 -9
- package/configuration/standardGroup/{standardInputs.ts → StandardInputs.ts} +25 -25
- package/configuration/standardGroup/index.ts +1 -1
- package/configuration.json +35 -49
- package/package.json +1 -1
- package/build.zip +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.2](https://github.com/Vixonic/store-birthdays/compare/v0.6.1-dev.1...v0.6.1-dev.2) (2025-05-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* build files removed from ignore ([8ac86d5](https://github.com/Vixonic/store-birthdays/commit/8ac86d536a0850a0f8dcc45ae0dc95344c1f4d8d))
|
|
11
|
+
|
|
12
|
+
### [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)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* unnecessary config removed ([a11b1c9](https://github.com/Vixonic/store-birthdays/commit/a11b1c9482adf6a181b13a8344c22a181ce776ed))
|
|
18
|
+
|
|
5
19
|
### [0.6.1-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.5.1...v0.6.1-dev.0) (2025-05-20)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -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
|
]
|
|
@@ -17,13 +17,6 @@ export const dataInputs = [
|
|
|
17
17
|
],
|
|
18
18
|
defaultValue: 'online',
|
|
19
19
|
}),
|
|
20
|
-
new TextInput({
|
|
21
|
-
id: 'photosUrl',
|
|
22
|
-
label: 'Fotos',
|
|
23
|
-
description: 'Ubicación donde se encuentran las fotos',
|
|
24
|
-
required: false,
|
|
25
|
-
show: ShowValidations.onlinePhotos,
|
|
26
|
-
}),
|
|
27
20
|
new SelectAssetKna({
|
|
28
21
|
id: 'photosZip',
|
|
29
22
|
label: 'Archivo Zip',
|
|
@@ -44,7 +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
|
-
new TextInput({ id: '
|
|
49
|
-
new TextFormat({ id: '
|
|
42
|
+
new TextInput({ id: 'defaultMessage', label: 'Sin cumpleaños' }),
|
|
43
|
+
new TextFormat({ id: 'defaultMessageFormat', label: 'Formato Mensaje sin cumpleaños' }),
|
|
50
44
|
]
|
|
@@ -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
|
@@ -31,14 +31,6 @@
|
|
|
31
31
|
],
|
|
32
32
|
"defaultValue": "online"
|
|
33
33
|
},
|
|
34
|
-
{
|
|
35
|
-
"id": "photosUrl",
|
|
36
|
-
"label": "Fotos",
|
|
37
|
-
"show": "{{photosMode}} === 'online'",
|
|
38
|
-
"type": "text-input",
|
|
39
|
-
"description": "Ubicación donde se encuentran las fotos",
|
|
40
|
-
"required": false
|
|
41
|
-
},
|
|
42
34
|
{
|
|
43
35
|
"id": "photosZip",
|
|
44
36
|
"label": "Archivo Zip",
|
|
@@ -57,6 +49,7 @@
|
|
|
57
49
|
"id": "updateTime",
|
|
58
50
|
"label": "Actualización",
|
|
59
51
|
"type": "select-input",
|
|
52
|
+
"description": "Tiempo de actualización de los datos. Por defecto, diario.",
|
|
60
53
|
"items": [
|
|
61
54
|
{
|
|
62
55
|
"label": "10 minutos",
|
|
@@ -90,12 +83,12 @@
|
|
|
90
83
|
"defaultValue": 86400000
|
|
91
84
|
},
|
|
92
85
|
{
|
|
93
|
-
"id": "
|
|
86
|
+
"id": "defaultMessage",
|
|
94
87
|
"label": "Sin cumpleaños",
|
|
95
88
|
"type": "text-input"
|
|
96
89
|
},
|
|
97
90
|
{
|
|
98
|
-
"id": "
|
|
91
|
+
"id": "defaultMessageFormat",
|
|
99
92
|
"label": "Formato Mensaje sin cumpleaños",
|
|
100
93
|
"type": "text-format"
|
|
101
94
|
}
|
|
@@ -135,6 +128,7 @@
|
|
|
135
128
|
"id": "animationMode",
|
|
136
129
|
"label": "Tipo de animación",
|
|
137
130
|
"type": "select-input",
|
|
131
|
+
"description": "Por defecto, Fundido.",
|
|
138
132
|
"items": [
|
|
139
133
|
{
|
|
140
134
|
"label": "Fundido",
|
|
@@ -177,17 +171,9 @@
|
|
|
177
171
|
"label": "Tiempo",
|
|
178
172
|
"type": "number-input",
|
|
179
173
|
"range": "[1:9999:]",
|
|
180
|
-
"description": "
|
|
174
|
+
"description": "Duración de cada grupo de datos (en segundos).",
|
|
181
175
|
"required": true
|
|
182
176
|
},
|
|
183
|
-
{
|
|
184
|
-
"id": "animationOrder",
|
|
185
|
-
"label": "Orden",
|
|
186
|
-
"type": "switch",
|
|
187
|
-
"defaultValue": false,
|
|
188
|
-
"displayOnTrue": "Invertido",
|
|
189
|
-
"displayOnFalse": "Normal"
|
|
190
|
-
},
|
|
191
177
|
{
|
|
192
178
|
"type": "label",
|
|
193
179
|
"label": "Contenedor"
|
|
@@ -197,28 +183,28 @@
|
|
|
197
183
|
"label": "Columnas",
|
|
198
184
|
"type": "number-input",
|
|
199
185
|
"range": "[1:999:]",
|
|
200
|
-
"description": "Cantidad de items horizontales"
|
|
186
|
+
"description": "Cantidad de items horizontales. Por defecto, 1."
|
|
201
187
|
},
|
|
202
188
|
{
|
|
203
189
|
"id": "containerColumnsGap",
|
|
204
190
|
"label": "Separador horizontal",
|
|
205
191
|
"type": "number-input",
|
|
206
192
|
"range": "[1:100:]",
|
|
207
|
-
"description": "Espacio entre columnas (en porcentaje)"
|
|
193
|
+
"description": "Espacio entre columnas (en porcentaje). Por defecto, 1%."
|
|
208
194
|
},
|
|
209
195
|
{
|
|
210
196
|
"id": "containerRows",
|
|
211
197
|
"label": "Filas",
|
|
212
198
|
"type": "number-input",
|
|
213
199
|
"range": "[1:999:]",
|
|
214
|
-
"description": "Cantidad de items verticales"
|
|
200
|
+
"description": "Cantidad de items verticales. Por defecto, 3."
|
|
215
201
|
},
|
|
216
202
|
{
|
|
217
203
|
"id": "containerRowsGap",
|
|
218
204
|
"label": "Separador vertical",
|
|
219
205
|
"type": "number-input",
|
|
220
206
|
"range": "[1:100:]",
|
|
221
|
-
"description": "Espacio entre filas (en porcentaje)"
|
|
207
|
+
"description": "Espacio entre filas (en porcentaje). Por defecto, 5%."
|
|
222
208
|
},
|
|
223
209
|
{
|
|
224
210
|
"type": "label",
|
|
@@ -239,7 +225,7 @@
|
|
|
239
225
|
"id": "padding",
|
|
240
226
|
"label": "Márgenes",
|
|
241
227
|
"type": "text-input",
|
|
242
|
-
"description": "CSS para dar espacio arriba/derecha/abajo/izquieda",
|
|
228
|
+
"description": "CSS para dar espacio arriba/derecha/abajo/izquieda.",
|
|
243
229
|
"required": false
|
|
244
230
|
}
|
|
245
231
|
]
|
|
@@ -311,15 +297,15 @@
|
|
|
311
297
|
"id": "textMargin",
|
|
312
298
|
"label": "Margen",
|
|
313
299
|
"type": "text-input",
|
|
314
|
-
"description": "Margen derecho de los textos (en porcentaje). Por defecto 4
|
|
300
|
+
"description": "Margen derecho de los textos (en porcentaje). Por defecto 4%."
|
|
315
301
|
},
|
|
316
302
|
{
|
|
317
303
|
"id": "descriptionEnabled",
|
|
318
|
-
"label": "
|
|
304
|
+
"label": "Descripción",
|
|
319
305
|
"type": "switch",
|
|
320
306
|
"defaultValue": true,
|
|
321
|
-
"displayOnTrue": "
|
|
322
|
-
"displayOnFalse": "
|
|
307
|
+
"displayOnTrue": "habilitada",
|
|
308
|
+
"displayOnFalse": "deshabilitada"
|
|
323
309
|
},
|
|
324
310
|
{
|
|
325
311
|
"type": "label",
|
|
@@ -340,11 +326,11 @@
|
|
|
340
326
|
},
|
|
341
327
|
{
|
|
342
328
|
"id": "optionalEnabled",
|
|
343
|
-
"label": "
|
|
329
|
+
"label": "Campo opcional",
|
|
344
330
|
"type": "switch",
|
|
345
331
|
"defaultValue": true,
|
|
346
|
-
"displayOnTrue": "
|
|
347
|
-
"displayOnFalse": "
|
|
332
|
+
"displayOnTrue": "habilitado",
|
|
333
|
+
"displayOnFalse": "deshabilitado"
|
|
348
334
|
},
|
|
349
335
|
{
|
|
350
336
|
"type": "label",
|
|
@@ -367,11 +353,11 @@
|
|
|
367
353
|
},
|
|
368
354
|
{
|
|
369
355
|
"id": "imageEnabled",
|
|
370
|
-
"label": "
|
|
356
|
+
"label": "Imagen",
|
|
371
357
|
"type": "switch",
|
|
372
358
|
"defaultValue": true,
|
|
373
|
-
"displayOnTrue": "
|
|
374
|
-
"displayOnFalse": "
|
|
359
|
+
"displayOnTrue": "habilitada",
|
|
360
|
+
"displayOnFalse": "deshabilitada"
|
|
375
361
|
},
|
|
376
362
|
{
|
|
377
363
|
"id": "imagePosition",
|
|
@@ -420,7 +406,7 @@
|
|
|
420
406
|
"label": "Estilo",
|
|
421
407
|
"show": "{{imageEnabled}} === true",
|
|
422
408
|
"type": "select-input",
|
|
423
|
-
"description": "Forma de enmarcar la fotografía",
|
|
409
|
+
"description": "Forma de enmarcar la fotografía.",
|
|
424
410
|
"items": [
|
|
425
411
|
{
|
|
426
412
|
"label": "Normal",
|
|
@@ -443,7 +429,7 @@
|
|
|
443
429
|
"label": "Margen",
|
|
444
430
|
"show": "{{imageEnabled}} === true",
|
|
445
431
|
"type": "text-input",
|
|
446
|
-
"description": "Margen derecho de la imagen (en porcentaje). Por defecto 4
|
|
432
|
+
"description": "Margen derecho de la imagen (en porcentaje). Por defecto 4%."
|
|
447
433
|
},
|
|
448
434
|
{
|
|
449
435
|
"id": "imageSize",
|
|
@@ -451,7 +437,7 @@
|
|
|
451
437
|
"show": "{{imageEnabled}} === true",
|
|
452
438
|
"type": "number-input",
|
|
453
439
|
"range": "[1:100:]",
|
|
454
|
-
"description": "Tamaño de la imagen (en porcentaje)"
|
|
440
|
+
"description": "Tamaño de la imagen (en porcentaje)."
|
|
455
441
|
},
|
|
456
442
|
{
|
|
457
443
|
"type": "label",
|
|
@@ -459,11 +445,11 @@
|
|
|
459
445
|
},
|
|
460
446
|
{
|
|
461
447
|
"id": "dateEnabled",
|
|
462
|
-
"label": "
|
|
448
|
+
"label": "Fecha",
|
|
463
449
|
"type": "switch",
|
|
464
450
|
"defaultValue": true,
|
|
465
|
-
"displayOnTrue": "
|
|
466
|
-
"displayOnFalse": "
|
|
451
|
+
"displayOnTrue": "habilitada",
|
|
452
|
+
"displayOnFalse": "deshabilitada"
|
|
467
453
|
},
|
|
468
454
|
{
|
|
469
455
|
"id": "datePosition",
|
|
@@ -512,7 +498,7 @@
|
|
|
512
498
|
"label": "Estilo",
|
|
513
499
|
"show": "{{dateEnabled}} === true",
|
|
514
500
|
"type": "select-input",
|
|
515
|
-
"description": "Forma de enmarcar la fotografía",
|
|
501
|
+
"description": "Forma de enmarcar la fotografía.",
|
|
516
502
|
"items": [
|
|
517
503
|
{
|
|
518
504
|
"label": "Calendario simple",
|
|
@@ -552,12 +538,12 @@
|
|
|
552
538
|
},
|
|
553
539
|
{
|
|
554
540
|
"id": "abbreviatedMonths",
|
|
555
|
-
"label": "Meses
|
|
541
|
+
"label": "Meses",
|
|
556
542
|
"show": "{{dateEnabled}} === true && ['calendarFlat', 'calendarText', 'outlines'].indexOf({{dateStyle}}) !== -1",
|
|
557
543
|
"type": "switch",
|
|
558
544
|
"defaultValue": false,
|
|
559
|
-
"displayOnTrue": "
|
|
560
|
-
"displayOnFalse": "
|
|
545
|
+
"displayOnTrue": "abreviados",
|
|
546
|
+
"displayOnFalse": "no abreviados"
|
|
561
547
|
},
|
|
562
548
|
{
|
|
563
549
|
"id": "datePrimaryColor",
|
|
@@ -571,7 +557,7 @@
|
|
|
571
557
|
"label": "Margen",
|
|
572
558
|
"show": "{{dateEnabled}} === true",
|
|
573
559
|
"type": "text-input",
|
|
574
|
-
"description": "Margen derecho de la fecha (en porcentaje). Por defecto 4
|
|
560
|
+
"description": "Margen derecho de la fecha (en porcentaje). Por defecto 4%."
|
|
575
561
|
},
|
|
576
562
|
{
|
|
577
563
|
"type": "label",
|
|
@@ -579,11 +565,11 @@
|
|
|
579
565
|
},
|
|
580
566
|
{
|
|
581
567
|
"id": "separator",
|
|
582
|
-
"label": "
|
|
568
|
+
"label": "Separador",
|
|
583
569
|
"type": "switch",
|
|
584
570
|
"defaultValue": true,
|
|
585
|
-
"displayOnTrue": "
|
|
586
|
-
"displayOnFalse": "
|
|
571
|
+
"displayOnTrue": "habilitado",
|
|
572
|
+
"displayOnFalse": "deshabilitado"
|
|
587
573
|
},
|
|
588
574
|
{
|
|
589
575
|
"id": "separatorWidth",
|
|
@@ -603,7 +589,7 @@
|
|
|
603
589
|
"label": "Márgenes",
|
|
604
590
|
"show": "{{separator}} === true",
|
|
605
591
|
"type": "text-input",
|
|
606
|
-
"description": "Un
|
|
592
|
+
"description": "Un CSS de longitud de uno o dos valores.",
|
|
607
593
|
"pattern": "^(( )?[+-]?[0-9]+.?([0-9]+)?(px|em|ex|%|in|cm|mm|pt|pc)){1,2}$"
|
|
608
594
|
}
|
|
609
595
|
]
|
package/package.json
CHANGED
package/build.zip
DELETED
|
Binary file
|