@vixoniccom/birthdays 0.6.1-dev.2 → 0.6.1-dev.4
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 +1 -12
- package/configuration/utils.ts +0 -2
- package/configuration.json +1 -18
- package/package.json +2 -2
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.4](https://github.com/Vixonic/store-birthdays/compare/v0.6.1-dev.3...v0.6.1-dev.4) (2025-05-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* configuration modified and update method fixed ([f6d4d57](https://github.com/Vixonic/store-birthdays/commit/f6d4d575e9abb97f992d48982ef640252cc9c022))
|
|
11
|
+
|
|
12
|
+
### [0.6.1-dev.3](https://github.com/Vixonic/store-birthdays/compare/v0.6.1-dev.2...v0.6.1-dev.3) (2025-05-22)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* git ignore modified ([55165b9](https://github.com/Vixonic/store-birthdays/commit/55165b9c82f35a7983430209198045a94cea54d6))
|
|
18
|
+
|
|
5
19
|
### [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
20
|
|
|
7
21
|
|
package/build.zip
ADDED
|
Binary file
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Label, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
|
|
2
|
-
import { ShowValidations } from '../utils'
|
|
3
2
|
|
|
4
3
|
export const dataInputs = [
|
|
5
4
|
new Label({ label: 'Datos' }),
|
|
@@ -8,20 +7,10 @@ export const dataInputs = [
|
|
|
8
7
|
label: 'Documento',
|
|
9
8
|
serviceType: 'BirthdayAppService'
|
|
10
9
|
}),
|
|
11
|
-
new SelectInput({
|
|
12
|
-
id: 'photosMode',
|
|
13
|
-
label: 'Modo de fotos',
|
|
14
|
-
items: [
|
|
15
|
-
{ label: 'Zip', value: 'zip' },
|
|
16
|
-
{ label: 'En línea', value: 'online' },
|
|
17
|
-
],
|
|
18
|
-
defaultValue: 'online',
|
|
19
|
-
}),
|
|
20
10
|
new SelectAssetKna({
|
|
21
11
|
id: 'photosZip',
|
|
22
|
-
label: 'Archivo Zip',
|
|
12
|
+
label: 'Archivo Zip para fotos',
|
|
23
13
|
extensions: ['zip'],
|
|
24
|
-
show: ShowValidations.zipPhotos,
|
|
25
14
|
}),
|
|
26
15
|
new Label({ label: 'Funcionamiento' }),
|
|
27
16
|
new SelectInput({
|
package/configuration/utils.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
export const ShowValidations = {
|
|
2
|
-
onlinePhotos: "{{photosMode}} === 'online'",
|
|
3
|
-
zipPhotos: "{{photosMode}} === 'zip'",
|
|
4
2
|
descriptionEnabled: '{{descriptionEnabled}} === true',
|
|
5
3
|
optionalEnabled: '{{optionalEnabled}} === true',
|
|
6
4
|
imageEnabled: '{{imageEnabled}} === true',
|
package/configuration.json
CHANGED
|
@@ -15,26 +15,9 @@
|
|
|
15
15
|
"type": "service-input",
|
|
16
16
|
"serviceType": "BirthdayAppService"
|
|
17
17
|
},
|
|
18
|
-
{
|
|
19
|
-
"id": "photosMode",
|
|
20
|
-
"label": "Modo de fotos",
|
|
21
|
-
"type": "select-input",
|
|
22
|
-
"items": [
|
|
23
|
-
{
|
|
24
|
-
"label": "Zip",
|
|
25
|
-
"value": "zip"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"label": "En línea",
|
|
29
|
-
"value": "online"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
|
-
"defaultValue": "online"
|
|
33
|
-
},
|
|
34
18
|
{
|
|
35
19
|
"id": "photosZip",
|
|
36
|
-
"label": "Archivo Zip",
|
|
37
|
-
"show": "{{photosMode}} === 'zip'",
|
|
20
|
+
"label": "Archivo Zip para fotos",
|
|
38
21
|
"type": "select-asset-kna-input",
|
|
39
22
|
"extensions": [
|
|
40
23
|
"zip"
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "Lorenzo Alfaro Bravo"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.6.1-dev.
|
|
11
|
+
"version": "0.6.1-dev.4",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"prepublish": "vixonic-module-packager --mode=build",
|
|
14
14
|
"watch": "vixonic-module-packager --mode=watch",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@types/react": "^17.0.35",
|
|
32
32
|
"@types/react-dom": "^17.0.11",
|
|
33
33
|
"@vixoniccom/module-packager": "^2.10.1",
|
|
34
|
-
"@vixoniccom/modules": "
|
|
34
|
+
"@vixoniccom/modules": "2.20.0-4dev.0",
|
|
35
35
|
"standard-version": "^9.5.0"
|
|
36
36
|
}
|
|
37
37
|
}
|