@vixoniccom/birthdays 0.5.1-dev.0 → 0.6.1-dev.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 +14 -0
- package/build.zip +0 -0
- package/configuration/dataGroup/DataInputs.ts +6 -27
- package/configuration/index.ts +1 -2
- package/configuration.json +8 -58
- package/package.json +3 -6
- package/configuration/documentGroup/documentInputs.ts +0 -6
- package/configuration/documentGroup/index.ts +0 -8
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.0](https://github.com/Vixonic/store-birthdays/compare/v0.5.1...v0.6.1-dev.0) (2025-05-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* app modified with new service source ([2cb189f](https://github.com/Vixonic/store-birthdays/commit/2cb189f61920cbfc22ebe586600939d2cc3eb8bb))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* app version modified in package.json ([4c6b4a8](https://github.com/Vixonic/store-birthdays/commit/4c6b4a8532764a5be3ed8902c6c956bad9867824))
|
|
16
|
+
|
|
17
|
+
### [0.5.1](https://github.com/Vixonic/store-birthdays/compare/v0.5.1-dev.0...v0.5.1) (2025-04-17)
|
|
18
|
+
|
|
5
19
|
### [0.5.1-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.5.0...v0.5.1-dev.0) (2025-04-03)
|
|
6
20
|
|
|
7
21
|
|
package/build.zip
CHANGED
|
Binary file
|
|
@@ -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',
|
|
@@ -31,6 +30,7 @@ export const dataInputs = [
|
|
|
31
30
|
extensions: ['zip'],
|
|
32
31
|
show: ShowValidations.zipPhotos,
|
|
33
32
|
}),
|
|
33
|
+
new Label({ label: 'Funcionamiento' }),
|
|
34
34
|
new SelectInput({
|
|
35
35
|
id: 'updateTime',
|
|
36
36
|
label: 'Actualización',
|
|
@@ -45,27 +45,6 @@ export const dataInputs = [
|
|
|
45
45
|
],
|
|
46
46
|
defaultValue: 86400000,
|
|
47
47
|
}),
|
|
48
|
-
|
|
49
|
-
new Label({ label: 'Funcionamiento' }),
|
|
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
48
|
new TextInput({ id: 'msj0', label: 'Sin cumpleaños' }),
|
|
70
49
|
new TextFormat({ id: 'formatMjs', label: 'Formato Mensaje sin cumpleaños' }),
|
|
71
50
|
]
|
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
|
})
|
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",
|
|
@@ -67,6 +49,10 @@
|
|
|
67
49
|
],
|
|
68
50
|
"multiple": false
|
|
69
51
|
},
|
|
52
|
+
{
|
|
53
|
+
"type": "label",
|
|
54
|
+
"label": "Funcionamiento"
|
|
55
|
+
},
|
|
70
56
|
{
|
|
71
57
|
"id": "updateTime",
|
|
72
58
|
"label": "Actualización",
|
|
@@ -103,42 +89,6 @@
|
|
|
103
89
|
],
|
|
104
90
|
"defaultValue": 86400000
|
|
105
91
|
},
|
|
106
|
-
{
|
|
107
|
-
"type": "label",
|
|
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
92
|
{
|
|
143
93
|
"id": "msj0",
|
|
144
94
|
"label": "Sin cumpleaños",
|
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.0",
|
|
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
|
}
|