@eqproject/eqp-dynamic-module 2.10.64 → 2.10.66

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.
Files changed (19) hide show
  1. package/README.md +4 -0
  2. package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +21 -4
  3. package/esm2020/lib/components/private/field-templates/date-field-template/date-field-template.component.mjs +1 -1
  4. package/esm2020/lib/components/private/field-templates/text-field-template/text-field-template.component.mjs +5 -4
  5. package/esm2020/lib/components/private/form-records/hlist-form-record/hlist-form-record.component.mjs +1 -1
  6. package/esm2020/lib/components/private/form-statistics/filter-templates/date-filter-template/date-filter-template.component.mjs +1 -1
  7. package/esm2020/lib/components/private/graphs/graphs.component.mjs +1 -1
  8. package/esm2020/lib/components/private/trigger-creator/trigger-templates/date-trigger-template/date-trigger-template.component.mjs +1 -1
  9. package/esm2020/lib/models/fields/dateField.model.mjs +4 -4
  10. package/esm2020/lib/models/fields/textField.model.mjs +6 -1
  11. package/fesm2015/eqproject-eqp-dynamic-module.mjs +36 -13
  12. package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
  13. package/fesm2020/eqproject-eqp-dynamic-module.mjs +36 -13
  14. package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
  15. package/lib/components/private/add-form-field/add-form-field.component.d.ts +4 -1
  16. package/lib/components/private/field-templates/text-field-template/text-field-template.component.d.ts +2 -1
  17. package/lib/models/fields/dateField.model.d.ts +3 -3
  18. package/lib/models/fields/textField.model.d.ts +6 -0
  19. package/package.json +1 -1
package/README.md CHANGED
@@ -12,6 +12,10 @@
12
12
 
13
13
  ## Changelog
14
14
 
15
+ ### v2.10.65
16
+ - **TextField — icona opzionale:** aggiunta la possibilità di associare un'icona Material Icons al campo di testo. Le nuove proprietà `IconName` (stringa) e `IconPosition` (enum: `1`=Sinistra/prefix, `2`=Destra/suffix) sono opzionali e retrocompatibili (null sui form esistenti). Configurabili nel builder tramite il toggle "Icona" nella sezione Specifiche del campo.
17
+ - **TextField — optional icon:** added support for a Material Icons icon on text fields. New properties `IconName` (string) and `IconPosition` (enum: `1`=Left/prefix, `2`=Right/suffix) are optional and backward-compatible (null on existing forms). Configurable in the builder via the "Icona" toggle in the field's Specifiche section.
18
+
15
19
  ### v2.10.64
16
20
  - **Bugfix configurator:** se il campo `Code` del form risulta `null` al momento del salvataggio (scenario: form creato con AI senza salvataggio intermedio), ora viene generato automaticamente da `Name` prima dell'invio al server.
17
21