valtech-components 2.0.904 → 2.0.906

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.
@@ -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<"success" | "medium" | "primary" | "secondary" | "tertiary" | "warning" | "danger" | "light" | "dark">;
46
+ propsColor: import("@angular/core").Signal<"medium" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light" | "dark">;
47
47
  /**
48
48
  * Computed helper for withMargin prop in template.
49
49
  */
@@ -21,6 +21,7 @@ export declare class ContentReactionComponent implements OnInit, OnChanges {
21
21
  private toast;
22
22
  private i18n;
23
23
  private auth;
24
+ readonly isConfigured: import("@angular/core").Signal<boolean>;
24
25
  props: Partial<ContentReactionMetadata>;
25
26
  reactionSubmit: EventEmitter<ReactionSubmitEvent>;
26
27
  reactionChange: EventEmitter<ReactionChangeEvent>;
@@ -90,9 +90,9 @@ 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?: "default" | "small" | "large";
93
+ size?: "small" | "large" | "default";
94
94
  fill?: "default" | "clear" | "outline" | "solid";
95
- type: "reset" | "submit" | "button";
95
+ type: "button" | "submit" | "reset";
96
96
  token?: string;
97
97
  ref?: any;
98
98
  handler?: (value: any) => any;
@@ -72,7 +72,7 @@ export declare class ToolbarComponent implements OnInit {
72
72
  };
73
73
  showFlags?: boolean;
74
74
  color: import("@ionic/core").Color;
75
- size?: "default" | "small" | "large";
75
+ size?: "small" | "large" | "default";
76
76
  fill?: "default" | "clear" | "outline" | "solid";
77
77
  shape?: "round";
78
78
  expand?: "full" | "block";
@@ -27,6 +27,8 @@ export declare class FeedbackService {
27
27
  private firestore;
28
28
  private storage;
29
29
  private auth;
30
+ readonly isConfigured: import("@angular/core").WritableSignal<boolean>;
31
+ constructor();
30
32
  /**
31
33
  * URL base para endpoints de feedback.
32
34
  */
@@ -23,6 +23,37 @@ export declare class OrgService {
23
23
  nextToken?: string;
24
24
  }): Observable<ListOrgMembersResponse>;
25
25
  transferOwnership(orgId: string, newOwnerId: string): Observable<Organization>;
26
+ validateInviteToken(token: string): Observable<{
27
+ valid: boolean;
28
+ actionType?: string;
29
+ targetType?: string;
30
+ targetId?: string;
31
+ data?: {
32
+ orgName?: string;
33
+ roleId?: string;
34
+ inviterName?: string;
35
+ };
36
+ message?: string;
37
+ }>;
38
+ executeInviteToken(token: string): Observable<{
39
+ success: boolean;
40
+ message: string;
41
+ data?: {
42
+ organizationId?: string;
43
+ organizationName?: string;
44
+ roleId?: string;
45
+ };
46
+ }>;
47
+ getPendingInvitations(): Observable<{
48
+ items: Array<{
49
+ orgId: string;
50
+ orgName: string;
51
+ roleId: string;
52
+ inviterId: string;
53
+ inviterName: string;
54
+ expiresAt: string;
55
+ }>;
56
+ }>;
26
57
  static ɵfac: i0.ɵɵFactoryDeclaration<OrgService, never>;
27
58
  static ɵprov: i0.ɵɵInjectableDeclaration<OrgService>;
28
59
  }
package/lib/version.d.ts CHANGED
@@ -2,4 +2,4 @@
2
2
  * Current version of valtech-components.
3
3
  * This is automatically updated during the publish process.
4
4
  */
5
- export declare const VERSION = "2.0.904";
5
+ export declare const VERSION = "2.0.906";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.904",
3
+ "version": "2.0.906",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"