valtech-components 4.0.217 → 4.0.218
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/organisms/account-view/account-view.component.mjs +97 -163
- package/fesm2022/valtech-components.mjs +96 -159
- package/fesm2022/valtech-components.mjs.map +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/load-more/load-more.component.d.ts +1 -1
- package/lib/components/organisms/account-view/account-view.component.d.ts +0 -6
- package/lib/components/organisms/article/article.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -26,7 +26,7 @@ export declare class LoadMoreComponent {
|
|
|
26
26
|
readonly color: import("@angular/core").Signal<string>;
|
|
27
27
|
readonly fill: import("@angular/core").Signal<string>;
|
|
28
28
|
readonly shape: import("@angular/core").Signal<string>;
|
|
29
|
-
readonly size: import("@angular/core").Signal<"
|
|
29
|
+
readonly size: import("@angular/core").Signal<"default" | "small" | "large">;
|
|
30
30
|
readonly threshold: import("@angular/core").Signal<string>;
|
|
31
31
|
readonly label: import("@angular/core").Signal<string>;
|
|
32
32
|
private readonly _pendingComplete;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { EmptyStateMetadata } from '../../molecules/empty-state/types';
|
|
2
1
|
import { ButtonGroupMetadata } from '../../molecules/button-group/types';
|
|
3
2
|
import { ButtonMetadata } from '../../types';
|
|
4
3
|
import { Organization, PendingInvitation } from '../../../services/org/types';
|
|
@@ -38,10 +37,6 @@ export declare class AccountViewComponent {
|
|
|
38
37
|
readonly resolvedConfig: import("@angular/core").Signal<Required<Omit<AccountViewConfig, "onOrgSwitched" | "onOrgCreated" | "onLoggedOut" | "onAccountDeleted">> & Pick<AccountViewConfig, "onOrgSwitched" | "onOrgCreated" | "onLoggedOut" | "onAccountDeleted">>;
|
|
39
38
|
/** Namespace i18n resuelto (capturado para llamadas no-reactivas). */
|
|
40
39
|
private get ns();
|
|
41
|
-
readonly orgs: import("@angular/core").WritableSignal<Organization[]>;
|
|
42
|
-
readonly orgsLoading: import("@angular/core").WritableSignal<boolean>;
|
|
43
|
-
private readonly orgsError;
|
|
44
|
-
readonly orgsErrorState: import("@angular/core").Signal<EmptyStateMetadata>;
|
|
45
40
|
readonly createOrgOpen: import("@angular/core").WritableSignal<boolean>;
|
|
46
41
|
readonly deleteAccountOpen: import("@angular/core").WritableSignal<boolean>;
|
|
47
42
|
readonly activeOrgLogoFailed: import("@angular/core").WritableSignal<boolean>;
|
|
@@ -84,7 +79,6 @@ export declare class AccountViewComponent {
|
|
|
84
79
|
private loadPendingInvites;
|
|
85
80
|
acceptPendingInvite(invite: PendingInvitation): void;
|
|
86
81
|
declinePendingInvite(invite: PendingInvitation): void;
|
|
87
|
-
private loadOrgs;
|
|
88
82
|
protected tt(key: string): string;
|
|
89
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccountViewComponent, never>;
|
|
90
84
|
static ɵcmp: i0.ɵɵComponentDeclaration<AccountViewComponent, "val-account-view", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -45,7 +45,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
45
45
|
getVideoElement(element: ArticleElement): ArticleVideoElement;
|
|
46
46
|
getCustomElement(element: ArticleElement): ArticleCustomElement;
|
|
47
47
|
getQuoteTextProps(element: ArticleElement): {
|
|
48
|
-
size: "
|
|
48
|
+
size: "medium" | "small" | "large" | "xlarge";
|
|
49
49
|
color: import("@ionic/core").Color;
|
|
50
50
|
content?: string;
|
|
51
51
|
bold: boolean;
|
|
@@ -61,7 +61,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
61
61
|
showQuoteMark?: boolean;
|
|
62
62
|
};
|
|
63
63
|
getHighlightTextProps(element: ArticleElement): {
|
|
64
|
-
size: "
|
|
64
|
+
size: "medium" | "small" | "large" | "xlarge";
|
|
65
65
|
color: import("@ionic/core").Color;
|
|
66
66
|
content?: string;
|
|
67
67
|
bold: boolean;
|
|
@@ -93,7 +93,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
93
93
|
contentInterpolation?: Record<string, string | number>;
|
|
94
94
|
icon?: import("valtech-components").IconMetada;
|
|
95
95
|
shape?: "round";
|
|
96
|
-
size?: "
|
|
96
|
+
size?: "default" | "small" | "large";
|
|
97
97
|
fill?: "solid" | "clear" | "outline" | "default";
|
|
98
98
|
type: "button" | "submit" | "reset";
|
|
99
99
|
token?: string;
|