carconnect-gatherleads-ui-lib 3.2.1 → 3.2.2

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.
@@ -56,6 +56,18 @@ export declare interface BaseFieldConfig {
56
56
  disabled?: boolean;
57
57
  /** Clases CSS adicionales para personalizar el estilo del campo */
58
58
  className?: string;
59
+ /**
60
+ * Hides the field from rendering and excludes it from form submission.
61
+ * The field definition stays in the config for readability.
62
+ * @default false
63
+ */
64
+ hidden?: boolean;
65
+ /**
66
+ * Shows a skeleton placeholder instead of the actual field.
67
+ * Useful for fields whose visibility depends on an async condition.
68
+ * @default false
69
+ */
70
+ loading?: boolean;
59
71
  /** Texto de ayuda que aparece debajo del campo para guiar al usuario */
60
72
  helperText?: string;
61
73
  /** Indica si el campo tiene un error de validación */