@rolatech/angular-components 20.0.2-beta.1 → 20.0.2-beta.2
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/index.d.ts
CHANGED
|
@@ -748,9 +748,13 @@ declare class AvatarComponent {
|
|
|
748
748
|
}
|
|
749
749
|
|
|
750
750
|
declare class ImagePlaceholderComponent implements OnInit {
|
|
751
|
+
renderer: Renderer2;
|
|
752
|
+
el: ElementRef<any>;
|
|
753
|
+
ratio: i0.InputSignal<string>;
|
|
754
|
+
constructor();
|
|
751
755
|
ngOnInit(): void;
|
|
752
756
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImagePlaceholderComponent, never>;
|
|
753
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImagePlaceholderComponent, "rolatech-image-placeholder", never, {}, {}, never, never, true, never>;
|
|
757
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImagePlaceholderComponent, "rolatech-image-placeholder", never, { "ratio": { "alias": "ratio"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
754
758
|
}
|
|
755
759
|
|
|
756
760
|
declare class ImagePreviewDialogComponent implements OnInit {
|
|
@@ -886,8 +890,11 @@ declare class ConversationHeader {
|
|
|
886
890
|
declare class ConversationInput {
|
|
887
891
|
readonly send: i0.OutputEmitterRef<string>;
|
|
888
892
|
private ta;
|
|
893
|
+
isComposing: boolean;
|
|
889
894
|
onKeydown(e: KeyboardEvent): void;
|
|
890
895
|
emitSend(): void;
|
|
896
|
+
onCompositionStart(): void;
|
|
897
|
+
onCompositionEnd(): void;
|
|
891
898
|
autoResize(): void;
|
|
892
899
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConversationInput, never>;
|
|
893
900
|
static ɵcmp: i0.ɵɵComponentDeclaration<ConversationInput, "rolatech-conversation-input", never, {}, { "send": "send"; }, never, never, true, never>;
|
|
@@ -895,6 +902,7 @@ declare class ConversationInput {
|
|
|
895
902
|
|
|
896
903
|
declare class ConversationMessage {
|
|
897
904
|
message: i0.InputSignal<ChatMessage>;
|
|
905
|
+
call(): void;
|
|
898
906
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConversationMessage, never>;
|
|
899
907
|
static ɵcmp: i0.ɵɵComponentDeclaration<ConversationMessage, "rolatech-conversation-message", never, { "message": { "alias": "message"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
900
908
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-components",
|
|
3
|
-
"version": "20.0.2-beta.
|
|
3
|
+
"version": "20.0.2-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "rolatech angular components",
|
|
6
6
|
"repository": {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"lodash": "^4.17.21"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@rolatech/angular-common": "20.0.2-beta.
|
|
36
|
-
"@rolatech/angular-services": "20.0.2-beta.
|
|
35
|
+
"@rolatech/angular-common": "20.0.2-beta.2",
|
|
36
|
+
"@rolatech/angular-services": "20.0.2-beta.2",
|
|
37
37
|
"tslib": "^2.3.0"
|
|
38
38
|
},
|
|
39
39
|
"exports": {
|