valtech-components 2.0.568 → 2.0.570

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<"center" | "left" | "right">;
42
+ propsAlign: import("@angular/core").Signal<"left" | "center" | "right">;
43
43
  /**
44
44
  * Computed helper for color prop in template.
45
45
  */
@@ -50,6 +50,18 @@ export declare class MultiSelectSearchComponent implements OnChanges, OnDestroy
50
50
  onBlur(): void;
51
51
  openModal(): void;
52
52
  preventDefaultBehavior(event: MouseEvent): void;
53
+ /**
54
+ * Reset state only - called by didDismiss event
55
+ * Separated from closeModal to avoid double dismissal and scroll issues
56
+ */
57
+ resetState(): void;
58
+ /**
59
+ * Close modal only - does not reset state (didDismiss will handle that)
60
+ */
61
+ closeModal(): void;
62
+ /**
63
+ * @deprecated Use closeModal() instead. Kept for backwards compatibility.
64
+ */
53
65
  cancelModal(): void;
54
66
  selectItem(item: any): void;
55
67
  selectAll(): void;
@@ -53,6 +53,18 @@ export declare class SelectSearchComponent implements OnChanges, OnDestroy {
53
53
  onBlur(): void;
54
54
  openModal(): void;
55
55
  preventDefaultBehavior(event: MouseEvent): void;
56
+ /**
57
+ * Reset state only - called by didDismiss event
58
+ * Separated from closeModal to avoid double dismissal and scroll issues
59
+ */
60
+ resetState(): void;
61
+ /**
62
+ * Close modal only - does not reset state (didDismiss will handle that)
63
+ */
64
+ closeModal(): void;
65
+ /**
66
+ * @deprecated Use closeModal() instead. Kept for backwards compatibility.
67
+ */
56
68
  cancelModal(): void;
57
69
  selectItem(item: any): void;
58
70
  isItemSelected(item: any): boolean;
@@ -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?: "center" | "left" | "right";
60
+ alignment?: "left" | "center" | "right";
61
61
  showQuoteMark?: boolean;
62
62
  };
63
63
  getHighlightTextProps(element: ArticleElement): {
@@ -76,7 +76,7 @@ export declare class ArticleComponent implements OnInit {
76
76
  getHighlightColor(element: ArticleElement): string;
77
77
  getButtonProps(element: ArticleElement): {
78
78
  actionType?: import("valtech-components").ActionType;
79
- expand?: "block" | "full";
79
+ expand?: "full" | "block";
80
80
  link?: string;
81
81
  href?: string;
82
82
  target?: "_blank" | "_self" | "_parent" | "_top";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.568",
3
+ "version": "2.0.570",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"