@vixoniccom/aniversarios 1.2.2 → 1.2.3-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,10 @@
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
+ ### [1.2.3-dev.1](https://github.com/Vixonic/store-aniversarios/compare/v1.2.3-dev.0...v1.2.3-dev.1) (2025-07-09)
6
+
7
+ ### [1.2.3-dev.0](https://github.com/Vixonic/store-aniversarios/compare/v1.2.2...v1.2.3-dev.0) (2025-07-04)
8
+
5
9
  ### [1.2.2](https://github.com/Vixonic/store-aniversarios/compare/v1.2.1...v1.2.2) (2025-05-16)
6
10
 
7
11
 
package/build.zip CHANGED
Binary file
@@ -23,15 +23,40 @@
23
23
  "label": "Configuración",
24
24
  "description": "",
25
25
  "items": [
26
- {
27
- "id": "apiDomain",
28
- "type": "text-input",
29
- "required": true,
30
- "label": "Link google sheets"
31
- },
32
26
  {
33
27
  "type": "label",
34
28
  "label": "Datos"
29
+ },
30
+ {
31
+ "id": "displayService",
32
+ "label": "Selecciona la fuente de los cumpleaños",
33
+ "type": "select-input",
34
+ "description": "Selecciona la fuente de los cumpleaños. Por defecto, Documento.",
35
+ "items": [
36
+ {
37
+ "label": "Documento",
38
+ "value": "AnniversaryAppService"
39
+ },
40
+ {
41
+ "label": "Rexmas",
42
+ "value": "RexmasAnniversarieService"
43
+ }
44
+ ],
45
+ "defaultValue": "AnniversaryAppService"
46
+ },
47
+ {
48
+ "id": "documentService",
49
+ "label": "Documento",
50
+ "show": "{{displayService}} === \"AnniversaryAppService\"",
51
+ "type": "service-input",
52
+ "serviceType": "AnniversaryAppService"
53
+ },
54
+ {
55
+ "id": "rexmasService",
56
+ "label": "Rexmas",
57
+ "show": "{{displayService}} === \"RexmasAnniversarieService\"",
58
+ "type": "service-input",
59
+ "serviceType": "RexmasAnniversarieService"
35
60
  },
36
61
  {
37
62
  "type": "select-input",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vixoniccom/aniversarios",
3
3
  "alias": "Aniversarios",
4
- "version": "1.2.2",
4
+ "version": "1.2.3-dev.1",
5
5
  "description": "Muestra el día que el trabajador está de aniversario en la empresa.",
6
6
  "main": "main.js",
7
7
  "author": "",
@@ -22,18 +22,17 @@
22
22
  "localforage": "^1.10.0",
23
23
  "moment": "^2.29.4",
24
24
  "prop-types": "^15.8.1",
25
- "react": "^17.0.2",
26
- "react-dom": "^17.0.2",
25
+ "react": "^18.3.1",
26
+ "react-dom": "^18.3.1",
27
27
  "use-state-with-callback": "^3.0.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/animejs": "^3.1.13",
31
31
  "@types/lodash": "^4.17.0",
32
- "@types/node": "^12.20.37",
33
- "@types/react": "^17.0.35",
34
- "@types/react-dom": "^17.0.11",
35
- "@vixoniccom/module-packager": "^2.10.1",
36
- "@vixoniccom/modules": "^2.20.0",
32
+ "@types/react": "^18.3.23",
33
+ "@types/react-dom": "^18.3.7",
34
+ "@vixoniccom/module-packager": "2.12.0-dev.10",
35
+ "@vixoniccom/modules": "^2.20.3-dev.0",
37
36
  "standard-version": "^9.5.0"
38
37
  }
39
38
  }
package/src/main.ts ADDED
File without changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "parameters": {
3
- "apiDomain": "https://docs.google.com/spreadsheets/d/1LA_3Opjllcu3aeMLFV795hMRd6Xn30dlawyPsc-kJzU/edit?usp=sharing",
3
+ "apiDomain": "https://docs.google.com/spreadsheets/d/1nxPf6Y97fPubVE9mWhShrWvcXAlndD4x-qSvdjgoIVk/edit?usp=sharing",
4
4
  "msj0": "No ingresos",
5
5
  "padding": "365px 25px 80px 40px",
6
6
  "dataMode": "monthly",
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,
@@ -25,4 +25,4 @@
25
25
  },
26
26
  "include": ["./src/**/*"],
27
27
  "exclude": ["./node_modules/**/*"]
28
- }
28
+ }