@vixoniccom/birthdays 0.7.4-dev.0 → 0.7.4-dev.1

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,13 @@
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.1](https://github.com/Vixonic/store-birthdays/compare/v0.7.4-dev.0...v0.7.4-dev.1) (2025-07-09)
6
+
7
+
8
+ ### Features
9
+
10
+ * Add redirect button for document access and update parameters for document ID ([75969b6](https://github.com/Vixonic/store-birthdays/commit/75969b63e1f146ea8411939b19712a3e90311f2c))
11
+
5
12
  ### [0.7.4-dev.0](https://github.com/Vixonic/store-birthdays/compare/v0.7.3...v0.7.4-dev.0) (2025-06-25)
6
13
 
7
14
 
@@ -1,4 +1,4 @@
1
- import { Label, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
1
+ import { Label, RedirectButton, SelectAssetKna, SelectInput, ServiceInput, TextFormat, TextInput } from '@vixoniccom/modules'
2
2
  import { serviceEnabled } from '../utils'
3
3
 
4
4
 
@@ -34,6 +34,7 @@ export const dataInputs = [
34
34
  serviceType: 'RexmasBirthdayService',
35
35
  show: serviceEnabled.rexmasServiceEnabled
36
36
  }),
37
+ new RedirectButton({id: 'documentId', label: 'Ir al documento', show: serviceEnabled.birthdayAppServiceEnabled}),
37
38
  new SelectAssetKna({
38
39
  id: 'photosZip',
39
40
  label: 'Archivo Zip para fotos',
@@ -51,6 +51,12 @@
51
51
  "type": "service-input",
52
52
  "serviceType": "RexmasBirthdayService"
53
53
  },
54
+ {
55
+ "id": "documentId",
56
+ "label": "Ir al documento",
57
+ "show": "{{displayService}} === \"BirthdayAppService\"",
58
+ "type": "redirect-button"
59
+ },
54
60
  {
55
61
  "id": "photosZip",
56
62
  "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.0",
11
+ "version": "0.7.4-dev.1",
12
12
  "scripts": {
13
13
  "prepublish": "vixonic-module-packager --mode=build",
14
14
  "watch": "vixonic-module-packager --mode=watch",