valtech-components 2.0.900 → 2.0.901
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/services/auth/auth.service.mjs +4 -2
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +4 -2
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +1 -1
- 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/components/organisms/toolbar/toolbar.component.d.ts +3 -3
- package/lib/services/auth/auth.service.d.ts +2 -2
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ export declare class RightsFooterComponent {
|
|
|
43
43
|
/**
|
|
44
44
|
* Computed helper for color prop in template.
|
|
45
45
|
*/
|
|
46
|
-
propsColor: import("@angular/core").Signal<"
|
|
46
|
+
propsColor: import("@angular/core").Signal<"success" | "light" | "dark" | "primary" | "secondary" | "tertiary" | "warning" | "danger" | "medium">;
|
|
47
47
|
/**
|
|
48
48
|
* Computed helper for withMargin prop in template.
|
|
49
49
|
*/
|
|
@@ -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?: "
|
|
79
|
+
expand?: "block" | "full";
|
|
80
80
|
link?: string;
|
|
81
81
|
href?: string;
|
|
82
82
|
target?: "_blank" | "_self" | "_parent" | "_top";
|
|
@@ -90,8 +90,8 @@ export declare class ArticleComponent implements OnInit {
|
|
|
90
90
|
contentInterpolation?: Record<string, string | number>;
|
|
91
91
|
icon?: import("valtech-components").IconMetada;
|
|
92
92
|
shape?: "round";
|
|
93
|
-
size?: "
|
|
94
|
-
fill?: "default" | "
|
|
93
|
+
size?: "default" | "small" | "large";
|
|
94
|
+
fill?: "default" | "outline" | "solid" | "clear";
|
|
95
95
|
type: "submit" | "button" | "reset";
|
|
96
96
|
token?: string;
|
|
97
97
|
ref?: 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<2 | 3 | 4>;
|
|
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>;
|
|
@@ -72,10 +72,10 @@ export declare class ToolbarComponent implements OnInit {
|
|
|
72
72
|
};
|
|
73
73
|
showFlags?: boolean;
|
|
74
74
|
color: import("@ionic/core").Color;
|
|
75
|
-
size?: "
|
|
76
|
-
fill?: "default" | "
|
|
75
|
+
size?: "default" | "small" | "large";
|
|
76
|
+
fill?: "default" | "outline" | "solid" | "clear";
|
|
77
77
|
shape?: "round";
|
|
78
|
-
expand?: "
|
|
78
|
+
expand?: "block" | "full";
|
|
79
79
|
disabled?: boolean;
|
|
80
80
|
customLanguageNames?: Record<string, string>;
|
|
81
81
|
forceReload?: boolean;
|
|
@@ -49,7 +49,7 @@ export declare class AuthService implements OnDestroy {
|
|
|
49
49
|
private confirmationService;
|
|
50
50
|
private refreshTimerId;
|
|
51
51
|
private syncSubscription;
|
|
52
|
-
constructor(config: ValtechAuthConfig, http: HttpClient, router: Router, stateService: AuthStateService, tokenService: TokenService, storageService: AuthStorageService, syncService: AuthSyncService, firebaseService: FirebaseService, oauthService: OAuthService, messagingService: MessagingService | null, i18nService: I18nService | null, confirmationService: ConfirmationDialogService);
|
|
52
|
+
constructor(config: ValtechAuthConfig | null, http: HttpClient, router: Router, stateService: AuthStateService, tokenService: TokenService, storageService: AuthStorageService, syncService: AuthSyncService, firebaseService: FirebaseService, oauthService: OAuthService, messagingService: MessagingService | null, i18nService: I18nService | null, confirmationService: ConfirmationDialogService);
|
|
53
53
|
/** Estado completo de autenticación */
|
|
54
54
|
readonly state: import("@angular/core").Signal<import("./types").AuthState>;
|
|
55
55
|
/** Usuario está autenticado */
|
|
@@ -459,6 +459,6 @@ export declare class AuthService implements OnDestroy {
|
|
|
459
459
|
* Detecta información de la plataforma del dispositivo.
|
|
460
460
|
*/
|
|
461
461
|
private detectPlatformInfo;
|
|
462
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, [
|
|
462
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, [{ optional: true; }, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, null]>;
|
|
463
463
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
464
464
|
}
|
package/lib/version.d.ts
CHANGED