valtech-components 2.0.516 → 2.0.518

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.
@@ -42,7 +42,10 @@ export interface LanguageSelectorMetadata {
42
42
  currentLanguage?: string;
43
43
  /** Array of available language codes */
44
44
  availableLanguages?: string[];
45
- /** Whether to show the label */
45
+ /**
46
+ * Whether to show the "Language" label above the selector.
47
+ * @default false
48
+ */
46
49
  showLabel?: boolean;
47
50
  /** Static label text (takes precedence over labelConfig) */
48
51
  label?: string;
@@ -91,8 +91,8 @@ export declare class ArticleComponent implements OnInit {
91
91
  icon?: import("valtech-components").IconMetada;
92
92
  shape?: "round";
93
93
  size?: "small" | "large" | "default";
94
- fill?: "default" | "clear" | "outline" | "solid";
95
- type: "button" | "submit" | "reset";
94
+ fill?: "clear" | "default" | "outline" | "solid";
95
+ type: "submit" | "button" | "reset";
96
96
  token?: string;
97
97
  ref?: any;
98
98
  handler?: (value: any) => any;
@@ -26,10 +26,15 @@ import * as i0 from "@angular/core";
26
26
  */
27
27
  export declare class MenuComponent {
28
28
  private menuCtrl;
29
+ private i18n;
29
30
  /**
30
31
  * Menu configuration.
31
32
  */
32
33
  props: MenuMetadata;
34
+ /**
35
+ * Close button text - reactive to language changes.
36
+ */
37
+ closeButtonText: import("@angular/core").Signal<string>;
33
38
  /**
34
39
  * Closes the menu.
35
40
  */
@@ -32,6 +32,7 @@ import * as i0 from "@angular/core";
32
32
  */
33
33
  export declare class PageTemplateComponent {
34
34
  private nav;
35
+ private i18n;
35
36
  /**
36
37
  * Page template configuration.
37
38
  */
@@ -40,6 +41,10 @@ export declare class PageTemplateComponent {
40
41
  * Emits when the back button is clicked.
41
42
  */
42
43
  onBack: EventEmitter<void>;
44
+ /**
45
+ * Back button text - reactive to language changes.
46
+ */
47
+ backButtonText: import("@angular/core").Signal<string>;
43
48
  /**
44
49
  * Handles back navigation.
45
50
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.516",
3
+ "version": "2.0.518",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"