valtech-components 4.0.1042 → 4.0.1043
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/chat-window/chat-window.component.mjs +4 -2
- package/esm2022/lib/components/organisms/thread-panel/thread-panel.component.mjs +1 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +5 -3
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +1 -1
- package/lib/components/molecules/media-object/media-object.component.d.ts +1 -1
- package/lib/components/molecules/metadata-list/metadata-list.component.d.ts +1 -1
- package/lib/components/molecules/phone-display/phone-display.component.d.ts +1 -1
- package/lib/components/organisms/article/article.component.d.ts +1 -1
- package/lib/components/organisms/chat-window/chat-window.component.d.ts +2 -1
- package/lib/components/organisms/landing-steps/landing-steps.component.d.ts +1 -1
- package/lib/components/organisms/survey-builder/survey-builder.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<"success" | "medium" | "primary" | "secondary" | "tertiary" | "warning" | "danger" | "light" | "dark">;
|
|
61
61
|
/**
|
|
62
62
|
* Computed helper for withMargin prop in template.
|
|
63
63
|
*/
|
|
@@ -30,7 +30,7 @@ export declare class MediaObjectComponent {
|
|
|
30
30
|
/** Emitted when the inline link is clicked */
|
|
31
31
|
onLinkClick: EventEmitter<string>;
|
|
32
32
|
/** Merged configuration with defaults */
|
|
33
|
-
config: import("@angular/core").Signal<MediaObjectMetadata & Required<Pick<MediaObjectMetadata, "
|
|
33
|
+
config: import("@angular/core").Signal<MediaObjectMetadata & Required<Pick<MediaObjectMetadata, "rounded" | "circle" | "mediaWidth" | "reversed" | "align">>>;
|
|
34
34
|
getColor(): string;
|
|
35
35
|
handleLinkClick(event: MouseEvent): void;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<MediaObjectComponent, never>;
|
|
@@ -26,7 +26,7 @@ export declare class MetadataListComponent {
|
|
|
26
26
|
readonly resolvedProps: import("@angular/core").Signal<{
|
|
27
27
|
items?: import("./types").MetadataItem[];
|
|
28
28
|
sections?: MetadataSection[];
|
|
29
|
-
size?: "
|
|
29
|
+
size?: "small" | "md";
|
|
30
30
|
dividers?: boolean;
|
|
31
31
|
columns?: number;
|
|
32
32
|
}>;
|
|
@@ -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<"link" | "button" | "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>;
|
|
@@ -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: "reset" | "submit" | "button";
|
|
109
109
|
token?: string;
|
|
110
110
|
ariaLabel?: string;
|
|
111
111
|
ref?: any;
|
|
@@ -61,6 +61,7 @@ export declare class ChatWindowComponent {
|
|
|
61
61
|
readonly deleteMessage: import("@angular/core").OutputEmitterRef<string>;
|
|
62
62
|
readonly replyTo: import("@angular/core").OutputEmitterRef<string>;
|
|
63
63
|
readonly editMessage: import("@angular/core").OutputEmitterRef<string>;
|
|
64
|
+
readonly copyMessage: import("@angular/core").OutputEmitterRef<string>;
|
|
64
65
|
readonly typing: import("@angular/core").OutputEmitterRef<void>;
|
|
65
66
|
readonly voice: import("@angular/core").OutputEmitterRef<void>;
|
|
66
67
|
private readonly msgsEl;
|
|
@@ -76,6 +77,6 @@ export declare class ChatWindowComponent {
|
|
|
76
77
|
protected onAction(event: MessageBubbleAction): void;
|
|
77
78
|
t(key: string): string;
|
|
78
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatWindowComponent, never>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatWindowComponent, "val-chat-window", never, { "convId": { "alias": "convId"; "required": false; "isSignal": true; }; "messages": { "alias": "messages"; "required": false; "isSignal": true; }; "currentUserId": { "alias": "currentUserId"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "typingUsers": { "alias": "typingUsers"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "canModerate": { "alias": "canModerate"; "required": false; "isSignal": true; }; "showAttach": { "alias": "showAttach"; "required": false; "isSignal": true; }; "showDictation": { "alias": "showDictation"; "required": false; "isSignal": true; }; "showVoiceMessage": { "alias": "showVoiceMessage"; "required": false; "isSignal": true; }; "showAvatars": { "alias": "showAvatars"; "required": false; "isSignal": true; }; "renderAiMessages": { "alias": "renderAiMessages"; "required": false; "isSignal": true; }; "showReactions": { "alias": "showReactions"; "required": false; "isSignal": true; }; "showReplyAction": { "alias": "showReplyAction"; "required": false; "isSignal": true; }; "showReactAction": { "alias": "showReactAction"; "required": false; "isSignal": true; }; "showEditAction": { "alias": "showEditAction"; "required": false; "isSignal": true; }; "showDeleteAction": { "alias": "showDeleteAction"; "required": false; "isSignal": true; }; "showCopyAction": { "alias": "showCopyAction"; "required": false; "isSignal": true; }; }, { "sendMessage": "sendMessage"; "loadMore": "loadMore"; "reactionClick": "reactionClick"; "deleteMessage": "deleteMessage"; "replyTo": "replyTo"; "editMessage": "editMessage"; "typing": "typing"; "voice": "voice"; }, never, ["[composer-leading]"], true, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatWindowComponent, "val-chat-window", never, { "convId": { "alias": "convId"; "required": false; "isSignal": true; }; "messages": { "alias": "messages"; "required": false; "isSignal": true; }; "currentUserId": { "alias": "currentUserId"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "typingUsers": { "alias": "typingUsers"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "canModerate": { "alias": "canModerate"; "required": false; "isSignal": true; }; "showAttach": { "alias": "showAttach"; "required": false; "isSignal": true; }; "showDictation": { "alias": "showDictation"; "required": false; "isSignal": true; }; "showVoiceMessage": { "alias": "showVoiceMessage"; "required": false; "isSignal": true; }; "showAvatars": { "alias": "showAvatars"; "required": false; "isSignal": true; }; "renderAiMessages": { "alias": "renderAiMessages"; "required": false; "isSignal": true; }; "showReactions": { "alias": "showReactions"; "required": false; "isSignal": true; }; "showReplyAction": { "alias": "showReplyAction"; "required": false; "isSignal": true; }; "showReactAction": { "alias": "showReactAction"; "required": false; "isSignal": true; }; "showEditAction": { "alias": "showEditAction"; "required": false; "isSignal": true; }; "showDeleteAction": { "alias": "showDeleteAction"; "required": false; "isSignal": true; }; "showCopyAction": { "alias": "showCopyAction"; "required": false; "isSignal": true; }; }, { "sendMessage": "sendMessage"; "loadMore": "loadMore"; "reactionClick": "reactionClick"; "deleteMessage": "deleteMessage"; "replyTo": "replyTo"; "editMessage": "editMessage"; "copyMessage": "copyMessage"; "typing": "typing"; "voice": "voice"; }, never, ["[composer-leading]"], true, never>;
|
|
80
81
|
}
|
|
81
82
|
export {};
|
|
@@ -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>;
|
|
@@ -59,7 +59,7 @@ export declare class SurveyBuilderComponent implements OnInit {
|
|
|
59
59
|
readonly wizardStep: import("@angular/core").WritableSignal<number>;
|
|
60
60
|
readonly validationError: import("@angular/core").WritableSignal<string>;
|
|
61
61
|
readonly saving: import("@angular/core").WritableSignal<boolean>;
|
|
62
|
-
readonly uploadingImage: import("@angular/core").WritableSignal<"" | "
|
|
62
|
+
readonly uploadingImage: import("@angular/core").WritableSignal<"" | "success" | "header">;
|
|
63
63
|
readonly sectionIds: import("@angular/core").WritableSignal<string[]>;
|
|
64
64
|
readonly sectionNames: import("@angular/core").WritableSignal<Record<string, string>>;
|
|
65
65
|
readonly sectionSubtitles: import("@angular/core").WritableSignal<Record<string, string>>;
|
package/lib/version.d.ts
CHANGED