@vixoniccom/birthdays 0.7.10-dev.3 → 0.7.10-dev.5
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
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.7.10-dev.5](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.4...v0.7.10-dev.5) (2026-04-24)
|
|
6
|
+
|
|
7
|
+
### [0.7.10-dev.4](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.3...v0.7.10-dev.4) (2026-04-23)
|
|
8
|
+
|
|
5
9
|
### [0.7.10-dev.3](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.1...v0.7.10-dev.3) (2026-04-23)
|
|
6
10
|
|
|
7
11
|
### [0.7.10-dev.2](https://github.com/Vixonic/store-birthdays/compare/v0.7.10-dev.1...v0.7.10-dev.2) (2026-04-23)
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
NumberRangeValue,
|
|
5
5
|
SelectAssetKna,
|
|
6
6
|
SelectInput,
|
|
7
|
+
Switch,
|
|
7
8
|
TextInput,
|
|
8
9
|
} from '@vixoniccom/modules'
|
|
9
10
|
|
|
@@ -90,4 +91,13 @@ export const appearanceInputs = [
|
|
|
90
91
|
label: 'Márgenes',
|
|
91
92
|
description: 'CSS para dar espacio arriba/derecha/abajo/izquieda.',
|
|
92
93
|
}),
|
|
94
|
+
|
|
95
|
+
new Label({ label: 'Visualizador de error' }),
|
|
96
|
+
new Switch({
|
|
97
|
+
id: 'showApiError',
|
|
98
|
+
label: 'Mensaje de error',
|
|
99
|
+
displayOnTrue: 'mensaje de la API',
|
|
100
|
+
displayOnFalse: 'mensaje por defecto',
|
|
101
|
+
defaultValue: false,
|
|
102
|
+
}),
|
|
93
103
|
]
|
|
@@ -55,21 +55,6 @@ export const dataInputs = [
|
|
|
55
55
|
show: serviceEnabled.birthdayAppServiceEnabled
|
|
56
56
|
}),
|
|
57
57
|
new Label({ label: 'Funcionamiento' }),
|
|
58
|
-
new SelectInput({
|
|
59
|
-
id: 'updateTime',
|
|
60
|
-
label: 'Actualización',
|
|
61
|
-
items: [
|
|
62
|
-
{ label: '10 minutos', value: 600000 },
|
|
63
|
-
{ label: '30 minutos', value: 1800000 },
|
|
64
|
-
{ label: '1 hora', value: 3600000 },
|
|
65
|
-
{ label: '6 horas', value: 21600000 },
|
|
66
|
-
{ label: '12 horas', value: 43200000 },
|
|
67
|
-
{ label: 'Diario', value: 86400000 },
|
|
68
|
-
{ label: 'Semanal', value: 604800000 },
|
|
69
|
-
],
|
|
70
|
-
defaultValue: 86400000,
|
|
71
|
-
description: 'Tiempo de actualización de los datos. Por defecto, diario.',
|
|
72
|
-
}),
|
|
73
58
|
new TextInput({ id: 'defaultMessage', label: 'Sin cumpleaños' }),
|
|
74
59
|
new TextFormat({ id: 'defaultMessageFormat', label: 'Formato Mensaje sin cumpleaños' }),
|
|
75
60
|
]
|
package/configuration.json
CHANGED
|
@@ -87,43 +87,6 @@
|
|
|
87
87
|
"type": "label",
|
|
88
88
|
"label": "Funcionamiento"
|
|
89
89
|
},
|
|
90
|
-
{
|
|
91
|
-
"id": "updateTime",
|
|
92
|
-
"label": "Actualización",
|
|
93
|
-
"type": "select-input",
|
|
94
|
-
"description": "Tiempo de actualización de los datos. Por defecto, diario.",
|
|
95
|
-
"items": [
|
|
96
|
-
{
|
|
97
|
-
"label": "10 minutos",
|
|
98
|
-
"value": 600000
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"label": "30 minutos",
|
|
102
|
-
"value": 1800000
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"label": "1 hora",
|
|
106
|
-
"value": 3600000
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"label": "6 horas",
|
|
110
|
-
"value": 21600000
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"label": "12 horas",
|
|
114
|
-
"value": 43200000
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"label": "Diario",
|
|
118
|
-
"value": 86400000
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"label": "Semanal",
|
|
122
|
-
"value": 604800000
|
|
123
|
-
}
|
|
124
|
-
],
|
|
125
|
-
"defaultValue": 86400000
|
|
126
|
-
},
|
|
127
90
|
{
|
|
128
91
|
"id": "defaultMessage",
|
|
129
92
|
"label": "Sin cumpleaños",
|
|
@@ -269,6 +232,18 @@
|
|
|
269
232
|
"type": "text-input",
|
|
270
233
|
"description": "CSS para dar espacio arriba/derecha/abajo/izquieda.",
|
|
271
234
|
"required": false
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"type": "label",
|
|
238
|
+
"label": "Visualizador de error"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "showApiError",
|
|
242
|
+
"label": "Mensaje de error",
|
|
243
|
+
"type": "switch",
|
|
244
|
+
"defaultValue": false,
|
|
245
|
+
"displayOnTrue": "mensaje de la API",
|
|
246
|
+
"displayOnFalse": "mensaje por defecto"
|
|
272
247
|
}
|
|
273
248
|
]
|
|
274
249
|
},
|
package/package.json
CHANGED