@vixoniccom/news-internal 0.4.13-beta.2 → 0.4.13-beta.3

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,8 @@
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.4.13-beta.3](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.2...v0.4.13-beta.3) (2023-05-10)
6
+
5
7
  ### [0.4.13-beta.2](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.1...v0.4.13-beta.2) (2023-05-10)
6
8
 
7
9
  ### [0.4.13-beta.1](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.0...v0.4.13-beta.1) (2023-05-10)
package/build.zip CHANGED
Binary file
@@ -89,10 +89,17 @@
89
89
  "multiple": false
90
90
  },
91
91
  {
92
- "id": "qrCodeUrl",
92
+ "id": "qrCodeUrlWithBitly",
93
93
  "label": "URL código QR",
94
- "show": "{{qrCodeEnabled}} === true",
95
- "type": "text-input",
94
+ "show": "{{qrCodeEnabled}} === true && ({{bitly}} === true)",
95
+ "type": "bitly-input",
96
+ "required": true
97
+ },
98
+ {
99
+ "id": "qrCodeUrlWithoutBitly",
100
+ "label": "URL código QR",
101
+ "show": "{{qrCodeEnabled}} === true && ({{bitly}} === false)",
102
+ "type": "bitly-input",
96
103
  "required": true
97
104
  },
98
105
  {
@@ -613,6 +620,19 @@
613
620
  "required": false
614
621
  }
615
622
  ]
623
+ },
624
+ {
625
+ "id": "bitly",
626
+ "label": "Bitly",
627
+ "type": "group",
628
+ "items":[
629
+ {
630
+ "id": "bitly",
631
+ "label": "Habilitar Bitly",
632
+ "type": "switch",
633
+ "defaultValue": false
634
+ }
635
+ ]
616
636
  }
617
637
  ]
618
638
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "author": {
8
8
  "name": ""
9
9
  },
10
- "version": "0.4.13-beta.2",
10
+ "version": "0.4.13-beta.3",
11
11
  "scripts": {
12
12
  "prepublishOnly": "vixonic-module-packager --mode=build",
13
13
  "watch": "vixonic-module-packager --mode=watch",