@vixoniccom/news-internal 0.4.13-beta.1 → 0.4.13-beta.10

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,24 @@
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.10](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.9...v0.4.13-beta.10) (2023-05-17)
6
+
7
+ ### [0.4.13-beta.9](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.8...v0.4.13-beta.9) (2023-05-15)
8
+
9
+ ### [0.4.13-beta.8](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.7...v0.4.13-beta.8) (2023-05-15)
10
+
11
+ ### [0.4.13-beta.7](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.6...v0.4.13-beta.7) (2023-05-15)
12
+
13
+ ### [0.4.13-beta.6](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.5...v0.4.13-beta.6) (2023-05-11)
14
+
15
+ ### [0.4.13-beta.5](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.4...v0.4.13-beta.5) (2023-05-11)
16
+
17
+ ### [0.4.13-beta.4](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.13-beta.3...v0.4.13-beta.4) (2023-05-10)
18
+
19
+ ### [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)
20
+
21
+ ### [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)
22
+
5
23
  ### [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)
6
24
 
7
25
  ### [0.4.13-beta.0](https://bitbucket.org/rexmas_cl/news-internal/compare/v0.4.11-beta.0...v0.4.13-beta.0) (2023-05-09)
package/build.zip CHANGED
Binary file
@@ -91,7 +91,14 @@
91
91
  {
92
92
  "id": "qrCodeUrl",
93
93
  "label": "URL código QR",
94
- "show": "{{qrCodeEnabled}} === true",
94
+ "show": "{{qrCodeEnabled}} === true && ({{bitly}} === true)",
95
+ "type": "bitly-input",
96
+ "required": true
97
+ },
98
+ {
99
+ "id": "qrCodeUrl",
100
+ "label": "URL código QR",
101
+ "show": "{{qrCodeEnabled}} === true && ({{bitly}} === false)",
95
102
  "type": "text-input",
96
103
  "required": true
97
104
  },
@@ -101,13 +108,21 @@
101
108
  "show": "{{qrCodeEnabled}} === true",
102
109
  "type": "text-input",
103
110
  "required": false
111
+ },
112
+ {
113
+ "id": "expirationDate",
114
+ "label": "Fecha de expiración Noticia",
115
+ "type": "date-input",
116
+ "required": false
117
+
104
118
  }
105
119
  ],
106
120
  "description": "Lista de noticias",
107
121
  "itemDisplayClass": "2-lines",
108
122
  "itemDisplayAttributes": {
109
123
  "title": "title",
110
- "subtitle": "description"
124
+ "subtitle": "description",
125
+ "expirationDate": "expirationDate"
111
126
  },
112
127
  "sortable": true
113
128
  },
@@ -613,6 +628,19 @@
613
628
  "required": false
614
629
  }
615
630
  ]
631
+ },
632
+ {
633
+ "id": "bitly",
634
+ "label": "Bitly",
635
+ "type": "group",
636
+ "items":[
637
+ {
638
+ "id": "bitly",
639
+ "label": "Habilitar Bitly",
640
+ "type": "switch",
641
+ "defaultValue": false
642
+ }
643
+ ]
616
644
  }
617
645
  ]
618
646
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "author": {
8
8
  "name": ""
9
9
  },
10
- "version": "0.4.13-beta.1",
10
+ "version": "0.4.13-beta.10",
11
11
  "scripts": {
12
12
  "prepublishOnly": "vixonic-module-packager --mode=build",
13
13
  "watch": "vixonic-module-packager --mode=watch",
@@ -19,13 +19,14 @@
19
19
  "prerelease-dev": "standard-version --prerelease dev"
20
20
  },
21
21
  "dependencies": {
22
+ "@vixoniccom/module-packager": "^2.9.0",
23
+ "dayjs": "^1.11.7",
22
24
  "react": "^16.14.0",
23
25
  "react-dom": "^16.14.0",
24
26
  "react-qr-code": "^2.0.2",
25
27
  "react-quill": "^1.3.5",
26
28
  "react-transition-group": "^4.4.2",
27
- "uuid": "^8.3.2",
28
- "@vixoniccom/module-packager": "^2.9.0"
29
+ "uuid": "^8.3.2"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@types/node": "^12.20.29",
@@ -34,7 +35,7 @@
34
35
  "@types/react-transition-group": "^4.4.3",
35
36
  "@types/uuid": "^8.3.1",
36
37
  "@vixoniccom/module-packager": "^2.6.0-rc.0",
37
- "@vixoniccom/modules": "^2.13.0-rc.0",
38
+ "@vixoniccom/modules": "^2.16.1-dev.1",
38
39
  "standard-version": "^9.3.1"
39
40
  }
40
41
  }