@vixoniccom/birthdays 0.7.4-dev.2 → 0.7.4-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,15 @@
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.4-dev.4](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.3...v0.7.4-dev.4) (2025-07-09)
6
+
7
+ ### [0.7.4-dev.3](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.2...v0.7.4-dev.3) (2025-07-09)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * button redirect document ([84462fa](https://github.com/Vixonic/store-birthdays/commit/84462faa03284cfacb692cbeba18424f29c4b92d))
13
+
5
14
  ### [0.7.4-dev.2](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.1...v0.7.4-dev.2) (2025-07-09)
6
15
 
7
16
  ### [0.7.4-dev.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.1) (2025-07-09)
@@ -1,4 +1,4 @@
1
- import { Label, RedirectButton, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
1
+ import { Label, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
2
2
  import { serviceEnabled } from '../utils'
3
3
 
4
4
  export const dataInputs = [
@@ -32,7 +32,6 @@ export const dataInputs = [
32
32
  serviceType: 'RexmasBirthdayService',
33
33
  show: serviceEnabled.rexmasServiceEnabled
34
34
  }),
35
- new RedirectButton({id: 'documentService', label: 'Ir al documento', show: serviceEnabled.birthdayAppServiceEnabled}),
36
35
  new SelectAssetKna({
37
36
  id: 'photosZip',
38
37
  label: 'Archivo Zip para fotos',
@@ -1,18 +1,8 @@
1
- import { Group, RedirectButton } from '@vixoniccom/modules'
1
+ import { Group } from '@vixoniccom/modules'
2
2
  import { dataInputs } from './DataInputs'
3
- import { serviceEnabled } from '../utils'
4
3
 
5
4
  export const dataGroup = new Group({
6
5
  id: 'dataGroup',
7
6
  label: 'Configuración',
8
7
  items: [...dataInputs],
9
8
  })
10
-
11
- export const documentTab = new Group({
12
- id: 'documentTab',
13
- label: 'Documento',
14
- items: [
15
- new RedirectButton({id: 'documentService', label: 'Ir al documento', show: serviceEnabled.birthdayAppServiceEnabled}),
16
- ],
17
- show: serviceEnabled.birthdayAppServiceEnabled,
18
- })
@@ -0,0 +1,6 @@
1
+ import { Label, RedirectButton } from '@vixoniccom/modules'
2
+
3
+ export const documentInputs = [
4
+ new Label({ label: 'Documento' }),
5
+ new RedirectButton({ id: 'documentService', label: 'Ir al documento', description: 'Documento' }),
6
+ ]
@@ -0,0 +1,8 @@
1
+ import { Group } from '@vixoniccom/modules'
2
+ import { documentInputs } from './documentInputs'
3
+
4
+ export const documentGroup = new Group({
5
+ id: 'documentGroup',
6
+ label: 'Documento',
7
+ items: [...documentInputs],
8
+ })
@@ -2,8 +2,8 @@ import { Configuration } from '@vixoniccom/modules'
2
2
  import { dataGroup } from './dataGroup'
3
3
  import { appearanceGroup } from './appearanceGroup'
4
4
  import { standardGroup } from './standardGroup'
5
- import { documentTab } from './dataGroup/index';
5
+ import { documentGroup } from './documentGroup'
6
6
 
7
7
  export const configuration = new Configuration({
8
- schema: [documentTab, dataGroup, appearanceGroup, standardGroup],
8
+ schema: [documentGroup, dataGroup, appearanceGroup, standardGroup],
9
9
  })
@@ -1,16 +1,19 @@
1
1
  {
2
2
  "schema": [
3
3
  {
4
- "id": "documentTab",
4
+ "id": "documentGroup",
5
5
  "label": "Documento",
6
- "show": "{{displayService}} === \"BirthdayAppService\"",
7
6
  "type": "group",
8
7
  "items": [
8
+ {
9
+ "type": "label",
10
+ "label": "Documento"
11
+ },
9
12
  {
10
13
  "id": "documentService",
11
14
  "label": "Ir al documento",
12
- "show": "{{displayService}} === \"BirthdayAppService\"",
13
- "type": "redirect-button"
15
+ "type": "redirect-button",
16
+ "description": "Documento"
14
17
  }
15
18
  ]
16
19
  },
@@ -65,12 +68,6 @@
65
68
  "type": "service-input",
66
69
  "serviceType": "RexmasBirthdayService"
67
70
  },
68
- {
69
- "id": "documentService",
70
- "label": "Ir al documento",
71
- "show": "{{displayService}} === \"BirthdayAppService\"",
72
- "type": "redirect-button"
73
- },
74
71
  {
75
72
  "id": "photosZip",
76
73
  "label": "Archivo Zip para fotos",
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "author": {
9
9
  "name": "Lorenzo Alfaro Bravo"
10
10
  },
11
- "version": "0.7.4-dev.2",
11
+ "version": "0.7.4-dev.4",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",