@vixoniccom/birthdays 0.7.1-dev.2 → 0.7.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 CHANGED
@@ -2,6 +2,21 @@
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.1-dev.4](https://github.com/Vixonic/store-birthdays/compare/v0.7.1-beta.0...v0.7.1-dev.4) (2025-06-12)
6
+
7
+ ### [0.7.1-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.1-beta.0...v0.7.1-dev.1) (2025-06-12)
8
+
9
+ ### [0.7.1-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.1-beta.0...v0.7.1-dev.0) (2025-06-12)
10
+
11
+ ### [0.7.1-beta.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.1-dev.3...v0.7.1-beta.0) (2025-06-12)
12
+
13
+ ### [0.7.1-dev.3](https://github.com/Vixonic/store-birthdays/compare/v0.7.1-dev.2...v0.7.1-dev.3) (2025-06-02)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * build files restores & removed in gitignore ([51fbdf3](https://github.com/Vixonic/store-birthdays/commit/51fbdf33be5d1ce52fffea23d00753ac0def94a9))
19
+
5
20
  ### [0.7.1-dev.2](https://github.com/Vixonic/store-birthdays/compare/v0.7.1-dev.1...v0.7.1-dev.2) (2025-05-28)
6
21
 
7
22
 
package/build.zip CHANGED
Binary file
@@ -1,16 +1,44 @@
1
1
  import { Label, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
2
+ import { serviceEnabled } from '../utils'
3
+
4
+
2
5
 
3
6
  export const dataInputs = [
4
7
  new Label({ label: 'Datos' }),
8
+ new SelectInput({
9
+ id: 'displayService',
10
+ label: 'Selecciona la fuente de los cumpleaños',
11
+ items: [
12
+ { label: 'Documento', value: 'BirthdayAppService' },
13
+ { label: 'Buk', value: 'BukBirthdayService' },
14
+ { label: 'Rexmas', value: 'RexmasBirthdayService'}
15
+ ],
16
+ defaultValue: 'BirthdayAppService',
17
+ description: 'Selecciona la fuente de los cumpleaños. Por defecto, Documento.'
18
+ }),
5
19
  new ServiceInput({
6
20
  id: 'service',
7
21
  label: 'Documento',
8
- serviceType: 'BirthdayAppService'
22
+ serviceType: 'BirthdayAppService',
23
+ show: serviceEnabled.birthdayAppServiceEnabled
24
+ }),
25
+ new ServiceInput({
26
+ id: 'bukService',
27
+ label: 'Buk',
28
+ serviceType: 'BukBirthdayService',
29
+ show: serviceEnabled.bukServiceEnabled
30
+ }),
31
+ new ServiceInput({
32
+ id: 'rexmasService',
33
+ label: 'Rexmas',
34
+ serviceType: 'RexmasBirthdayService',
35
+ show: serviceEnabled.rexmasServiceEnabled
9
36
  }),
10
37
  new SelectAssetKna({
11
38
  id: 'photosZip',
12
39
  label: 'Archivo Zip para fotos',
13
40
  extensions: ['zip'],
41
+ show: serviceEnabled.birthdayAppServiceEnabled
14
42
  }),
15
43
  new Label({ label: 'Funcionamiento' }),
16
44
  new SelectInput({
@@ -9,3 +9,10 @@ export const ShowValidations = {
9
9
  "({{dateEnabled}} === true && ['calendarFlat', 'circle', 'outlines'].indexOf({{dateStyle}}) !== -1)",
10
10
  separatorEnabled: '{{separator}} === true',
11
11
  }
12
+
13
+
14
+ export const serviceEnabled = {
15
+ bukServiceEnabled: '{{displayService}} === "BukBirthdayService"',
16
+ rexmasServiceEnabled: '{{displayService}} === "RexmasBirthdayService"',
17
+ birthdayAppServiceEnabled: '{{displayService}} === "BirthdayAppService"',
18
+ }
@@ -9,15 +9,52 @@
9
9
  "type": "label",
10
10
  "label": "Datos"
11
11
  },
12
+ {
13
+ "id": "displayService",
14
+ "label": "Selecciona la fuente de los cumpleaños",
15
+ "type": "select-input",
16
+ "description": "Selecciona la fuente de los cumpleaños. Por defecto, Documento.",
17
+ "items": [
18
+ {
19
+ "label": "Documento",
20
+ "value": "BirthdayAppService"
21
+ },
22
+ {
23
+ "label": "Buk",
24
+ "value": "BukBirthdayService"
25
+ },
26
+ {
27
+ "label": "Rexmas",
28
+ "value": "RexmasBirthdayService"
29
+ }
30
+ ],
31
+ "defaultValue": "BirthdayAppService"
32
+ },
12
33
  {
13
34
  "id": "service",
14
35
  "label": "Documento",
36
+ "show": "{{displayService}} === \"BirthdayAppService\"",
15
37
  "type": "service-input",
16
38
  "serviceType": "BirthdayAppService"
17
39
  },
40
+ {
41
+ "id": "bukService",
42
+ "label": "Buk",
43
+ "show": "{{displayService}} === \"BukBirthdayService\"",
44
+ "type": "service-input",
45
+ "serviceType": "BukBirthdayService"
46
+ },
47
+ {
48
+ "id": "rexmasService",
49
+ "label": "Rexmas",
50
+ "show": "{{displayService}} === \"RexmasBirthdayService\"",
51
+ "type": "service-input",
52
+ "serviceType": "RexmasBirthdayService"
53
+ },
18
54
  {
19
55
  "id": "photosZip",
20
56
  "label": "Archivo Zip para fotos",
57
+ "show": "{{displayService}} === \"BirthdayAppService\"",
21
58
  "type": "select-asset-kna-input",
22
59
  "extensions": [
23
60
  "zip"
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": "Lorenzo Alfaro Bravo"
10
10
  },
11
- "version": "0.7.1-dev.2",
11
+ "version": "0.7.1-dev.4",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",
@@ -30,8 +30,8 @@
30
30
  "@types/lodash": "^4.17.0",
31
31
  "@types/react": "^17.0.35",
32
32
  "@types/react-dom": "^17.0.11",
33
- "@vixoniccom/module-packager": "2.10.1",
34
- "@vixoniccom/modules": "2.20.0-4dev.0",
33
+ "@vixoniccom/module-packager": "2.12.0-dev.10",
34
+ "@vixoniccom/modules": "2.20.3-dev.0",
35
35
  "standard-version": "^9.5.0"
36
36
  }
37
37
  }
package/tsconfig.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "es2015",
4
- "module": "es2015",
3
+ "target": "es6",
4
+ "module": "esnext",
5
5
  "moduleResolution": "node",
6
- "jsx": "preserve",
6
+ "jsx": "react-jsx",
7
7
  "allowJs": true,
8
8
  "checkJs": true,
9
9
  "allowSyntheticDefaultImports": true,