valtech-components 2.0.669 → 2.0.670

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.
@@ -39,7 +39,7 @@ export declare class RightsFooterComponent {
39
39
  /**
40
40
  * Computed helper for align prop in template.
41
41
  */
42
- propsAlign: import("@angular/core").Signal<"left" | "center" | "right">;
42
+ propsAlign: import("@angular/core").Signal<"left" | "right" | "center">;
43
43
  /**
44
44
  * Computed helper for color prop in template.
45
45
  */
@@ -49,7 +49,7 @@ export declare class FeaturesListComponent {
49
49
  iconSize: number;
50
50
  mode: "horizontal" | "vertical";
51
51
  gap: "small" | "medium" | "large";
52
- alignment: "center" | "start";
52
+ alignment: "start" | "center";
53
53
  }>;
54
54
  /** Resolved icon color (handles Ionic colors and CSS colors) */
55
55
  iconColorStyle: import("@angular/core").Signal<string>;
@@ -57,7 +57,7 @@ export declare class ArticleComponent implements OnInit {
57
57
  linkConfig?: import("valtech-components").LinkProcessorConfig;
58
58
  allowPartialBold?: boolean;
59
59
  authorColor?: import("@ionic/core").Color;
60
- alignment?: "left" | "center" | "right";
60
+ alignment?: "left" | "right" | "center";
61
61
  showQuoteMark?: boolean;
62
62
  };
63
63
  getHighlightTextProps(element: ArticleElement): {
@@ -91,8 +91,10 @@ export type InputMetadata = {
91
91
  label: string;
92
92
  /** Field name */
93
93
  name: string;
94
- /** Help text */
94
+ /** Help text (shown below input, for validation hints) */
95
95
  hint: string;
96
+ /** Description text (shown below label, explains the field purpose) */
97
+ description?: string;
96
98
  /** Input placeholder */
97
99
  placeholder: string;
98
100
  /** Input type */
@@ -41,6 +41,8 @@ export interface EmulatorConfig {
41
41
  /**
42
42
  * Configuración por defecto de emuladores.
43
43
  * Puertos estándar usados en todos los proyectos frontend.
44
+ *
45
+ * @see https://firebase.google.com/docs/emulator-suite
44
46
  */
45
47
  export declare const DEFAULT_EMULATOR_CONFIG: EmulatorConfig;
46
48
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.669",
3
+ "version": "2.0.670",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"