valtech-components 4.0.955 → 4.0.956
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.
- package/esm2022/lib/components/molecules/select-search/select-search-picker-modal.component.mjs +6 -15
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +7 -16
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +1 -1
- package/lib/components/atoms/text/text.component.d.ts +1 -1
- package/lib/components/atoms/user-avatar/user-avatar.component.d.ts +1 -1
- package/lib/components/molecules/features-list/features-list.component.d.ts +1 -1
- package/lib/components/molecules/phone-display/phone-display.component.d.ts +1 -1
- package/lib/components/molecules/select-search/select-search-picker-modal.component.d.ts +3 -3
- package/lib/components/organisms/article/article.component.d.ts +3 -3
- package/lib/components/organisms/landing-steps/landing-steps.component.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -57,7 +57,7 @@ export declare class RightsFooterComponent {
|
|
|
57
57
|
/**
|
|
58
58
|
* Computed helper for color prop in template.
|
|
59
59
|
*/
|
|
60
|
-
propsColor: import("@angular/core").Signal<"
|
|
60
|
+
propsColor: import("@angular/core").Signal<"primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light" | "medium" | "dark">;
|
|
61
61
|
/**
|
|
62
62
|
* Computed helper for withMargin prop in template.
|
|
63
63
|
*/
|
|
@@ -11,7 +11,7 @@ export declare class TextComponent {
|
|
|
11
11
|
*/
|
|
12
12
|
displayContent: import("@angular/core").Signal<string>;
|
|
13
13
|
propsColor: import("@angular/core").Signal<import("@ionic/core").Color>;
|
|
14
|
-
propsSize: import("@angular/core").Signal<"
|
|
14
|
+
propsSize: import("@angular/core").Signal<"medium" | "small" | "large" | "xlarge">;
|
|
15
15
|
propsBold: import("@angular/core").Signal<boolean>;
|
|
16
16
|
propsProcessLinks: import("@angular/core").Signal<boolean>;
|
|
17
17
|
propsAllowPartialBold: import("@angular/core").Signal<boolean>;
|
|
@@ -38,7 +38,7 @@ export declare class UserAvatarComponent {
|
|
|
38
38
|
readonly imageUrl: import("@angular/core").Signal<string>;
|
|
39
39
|
/** Iniciales — 1-2 chars derivados de name (preferred) o email prefix. */
|
|
40
40
|
readonly initials: import("@angular/core").Signal<string>;
|
|
41
|
-
readonly sizeClass: import("@angular/core").Signal<"
|
|
41
|
+
readonly sizeClass: import("@angular/core").Signal<"medium" | "small" | "large" | "xlarge" | "xsmall">;
|
|
42
42
|
readonly shapeClass: import("@angular/core").Signal<"circle" | "square">;
|
|
43
43
|
/** Background — explicito o derivado deterministicamente del user. */
|
|
44
44
|
readonly bgColor: import("@angular/core").Signal<string>;
|
|
@@ -41,7 +41,7 @@ export declare class FeaturesListComponent {
|
|
|
41
41
|
iconColor: string;
|
|
42
42
|
iconSize: number;
|
|
43
43
|
mode: "horizontal" | "vertical";
|
|
44
|
-
gap: "
|
|
44
|
+
gap: "medium" | "small" | "large";
|
|
45
45
|
alignment: "center" | "start";
|
|
46
46
|
imageShape: "circle" | "square";
|
|
47
47
|
maxVisible: number;
|
|
@@ -6,7 +6,7 @@ export declare class PhoneDisplayComponent {
|
|
|
6
6
|
props: PhoneDisplayMetadata;
|
|
7
7
|
onClick: EventEmitter<string>;
|
|
8
8
|
protected rawPhone: import("@angular/core").Signal<string>;
|
|
9
|
-
protected mode: import("@angular/core").Signal<"
|
|
9
|
+
protected mode: import("@angular/core").Signal<"button" | "link" | "text">;
|
|
10
10
|
protected formatted: import("@angular/core").Signal<string>;
|
|
11
11
|
protected href: import("@angular/core").Signal<string>;
|
|
12
12
|
protected ariaLabel: import("@angular/core").Signal<string>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { I18nService } from '../../../services/i18n';
|
|
2
3
|
import { ButtonMetadata } from '../../types';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
@@ -22,7 +23,7 @@ export interface SelectSearchPickerProps {
|
|
|
22
23
|
* Selección múltiple: acumula localmente, footer con "Aplicar" (Regla #5,
|
|
23
24
|
* val-modal-layout con `actions`).
|
|
24
25
|
*/
|
|
25
|
-
export declare class SelectSearchPickerModalComponent {
|
|
26
|
+
export declare class SelectSearchPickerModalComponent implements OnInit {
|
|
26
27
|
_modalRef?: {
|
|
27
28
|
dismiss: (data?: unknown, role?: string) => void;
|
|
28
29
|
};
|
|
@@ -31,10 +32,9 @@ export declare class SelectSearchPickerModalComponent {
|
|
|
31
32
|
props: SelectSearchPickerProps;
|
|
32
33
|
readonly query: import("@angular/core").WritableSignal<string>;
|
|
33
34
|
readonly selected: import("@angular/core").WritableSignal<unknown[]>;
|
|
35
|
+
ngOnInit(): void;
|
|
34
36
|
readonly filteredItems: import("@angular/core").Signal<Record<string, unknown>[]>;
|
|
35
37
|
readonly footerActions: import("@angular/core").Signal<ButtonMetadata[]>;
|
|
36
|
-
private seeded;
|
|
37
|
-
private ensureSeeded;
|
|
38
38
|
isSelected(item: Record<string, unknown>): boolean;
|
|
39
39
|
toggle(item: Record<string, unknown>): void;
|
|
40
40
|
apply(): void;
|
|
@@ -57,7 +57,7 @@ export declare class ArticleComponent implements OnInit, AfterViewInit {
|
|
|
57
57
|
getVideoElement(element: ArticleElement): ArticleVideoElement;
|
|
58
58
|
getCustomElement(element: ArticleElement): ArticleCustomElement;
|
|
59
59
|
getQuoteTextProps(element: ArticleElement): {
|
|
60
|
-
size: "
|
|
60
|
+
size: "medium" | "small" | "large" | "xlarge";
|
|
61
61
|
color: import("@ionic/core").Color;
|
|
62
62
|
content?: string;
|
|
63
63
|
bold: boolean;
|
|
@@ -73,7 +73,7 @@ export declare class ArticleComponent implements OnInit, AfterViewInit {
|
|
|
73
73
|
showQuoteMark?: boolean;
|
|
74
74
|
};
|
|
75
75
|
getHighlightTextProps(element: ArticleElement): {
|
|
76
|
-
size: "
|
|
76
|
+
size: "medium" | "small" | "large" | "xlarge";
|
|
77
77
|
color: import("@ionic/core").Color;
|
|
78
78
|
content?: string;
|
|
79
79
|
bold: boolean;
|
|
@@ -105,7 +105,7 @@ export declare class ArticleComponent implements OnInit, AfterViewInit {
|
|
|
105
105
|
shape?: "round";
|
|
106
106
|
size?: "small" | "default" | "large";
|
|
107
107
|
fill?: "default" | "clear" | "outline" | "solid" | "tint";
|
|
108
|
-
type: "
|
|
108
|
+
type: "button" | "submit" | "reset";
|
|
109
109
|
token?: string;
|
|
110
110
|
ref?: any;
|
|
111
111
|
handler?: (value: any) => any;
|
|
@@ -4,7 +4,7 @@ export declare class LandingStepsComponent {
|
|
|
4
4
|
private readonly props_;
|
|
5
5
|
set props(v: LandingStepsMetadata);
|
|
6
6
|
readonly p: import("@angular/core").Signal<LandingStepsMetadata>;
|
|
7
|
-
readonly cols: import("@angular/core").Signal<
|
|
7
|
+
readonly cols: import("@angular/core").Signal<3 | 4 | 2>;
|
|
8
8
|
readonly accentColor: import("@angular/core").Signal<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<LandingStepsComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<LandingStepsComponent, "val-landing-steps", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
package/lib/version.d.ts
CHANGED