mantenimento-app 2.4.12 → 2.4.13

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.
@@ -378,6 +378,11 @@
378
378
  <span class="hint" id="hintPrimaCasaMutuoScadenza" title="Data prevista di estinzione del mutuo prima casa.">i</span>
379
379
  </span>
380
380
  </th>
381
+ <th>
382
+ <span class="label-row"><span id="lblPrimaCasaAssegnataA">Casa assegnata a</span>
383
+ <span class="hint" id="hintPrimaCasaAssegnataA" title="Seleziona il coniuge a cui e ceduta la prima casa.">i</span>
384
+ </span>
385
+ </th>
381
386
  </tr>
382
387
  </thead>
383
388
  <tbody>
@@ -385,21 +390,18 @@
385
390
  <td><input id="primaCasaValoreLocativo" type="number" min="0" step="50" value="1000" /></td>
386
391
  <td><input id="primaCasaMutuoImporto" type="number" min="0" step="50" value="0" /></td>
387
392
  <td><input id="primaCasaMutuoScadenza" type="date" value="" /></td>
393
+ <td>
394
+ <select id="primaCasaAssegnataA">
395
+ <option value="">Nessuna cessione</option>
396
+ <option value="1" selected>Coniuge 1</option>
397
+ <option value="2">Coniuge 2</option>
398
+ </select>
399
+ </td>
388
400
  </tr>
389
401
  </tbody>
390
402
  </table>
391
403
  </div>
392
404
  </div>
393
- <div class="field">
394
- <label for="primaCasaAssegnataA" class="label-row"><span id="lblPrimaCasaAssegnataA">Casa assegnata a</span>
395
- <span class="hint" id="hintPrimaCasaAssegnataA" title="Seleziona il coniuge a cui e ceduta la prima casa.">i</span>
396
- </label>
397
- <select id="primaCasaAssegnataA">
398
- <option value="">Nessuna cessione</option>
399
- <option value="1" selected>Coniuge 1</option>
400
- <option value="2">Coniuge 2</option>
401
- </select>
402
- </div>
403
405
  <div class="field first-home-split-field">
404
406
  <label for="primaCasaMutuoPerc1" class="label-row"><span id="lblPrimaCasaMutuoPerc1">Quota mutuo a carico</span>
405
407
  <span class="hint" id="hintPrimaCasaMutuoPerc1" title="Percentuale della rata mutuo pagata da ciascun Coniuge.">i</span>
@@ -650,7 +652,7 @@
650
652
  <script src="supabase.min.js"></script>
651
653
  <script src="fabric.min.js"></script>
652
654
  <script src="html2pdf.bundle.min.js"></script>
653
- <script src="app.js?v=2.4.12"></script>
655
+ <script src="app.js?v=2.4.13"></script>
654
656
  </body>
655
657
  </html>
656
658
 
@@ -971,16 +971,16 @@
971
971
 
972
972
  .first-home-mortgage-table th {
973
973
  text-align: left;
974
- font-size: 0.72rem;
974
+ font-size: 0.68rem;
975
975
  color: #2a5954;
976
976
  font-weight: 800;
977
- padding: 8px 10px 6px;
977
+ padding: 7px 8px 6px;
978
978
  background: linear-gradient(180deg, rgba(232, 246, 243, 0.95), rgba(242, 249, 247, 0.92));
979
979
  border-bottom: 1px solid rgba(27, 141, 127, 0.12);
980
980
  }
981
981
 
982
982
  .first-home-mortgage-table td {
983
- padding: 8px;
983
+ padding: 7px;
984
984
  border-top: 1px solid rgba(27, 141, 127, 0.08);
985
985
  }
986
986
 
@@ -1001,6 +1001,10 @@
1001
1001
  width: 100%;
1002
1002
  }
1003
1003
 
1004
+ .first-home-mortgage-table select {
1005
+ width: 100%;
1006
+ }
1007
+
1004
1008
  .extra-box-first-home .field {
1005
1009
  border-radius: 12px;
1006
1010
  padding: 8px 9px 7px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mantenimento-app",
3
- "version": "2.4.12",
3
+ "version": "2.4.13",
4
4
  "description": "Frontend + backend architecture for the mantenimento calculator",
5
5
  "type": "commonjs",
6
6
  "main": "backend/calculate-model.js",