barsa-sap-ui 2.3.46 → 2.3.48
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/fesm2022/barsa-sap-ui.mjs +32 -33
- package/fesm2022/barsa-sap-ui.mjs.map +1 -1
- package/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4586,7 +4586,6 @@ declare class BarsaCustomInlineEditRowComponent extends BaseViewItemPropsCompone
|
|
|
4586
4586
|
}
|
|
4587
4587
|
|
|
4588
4588
|
declare class BarsaChatComponent extends FormBaseComponent implements OnInit, OnDestroy {
|
|
4589
|
-
simple: boolean;
|
|
4590
4589
|
selectedThread: WritableSignal<any | null>;
|
|
4591
4590
|
messages: WritableSignal<any[] | null>;
|
|
4592
4591
|
replyingMessage: WritableSignal<any | null>;
|
|
@@ -4595,7 +4594,7 @@ declare class BarsaChatComponent extends FormBaseComponent implements OnInit, On
|
|
|
4595
4594
|
ngOnDestroy(): void;
|
|
4596
4595
|
onTextChange($event: any): void;
|
|
4597
4596
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaChatComponent, never>;
|
|
4598
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaChatComponent, "bsu-barsa-chat", never, {
|
|
4597
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaChatComponent, "bsu-barsa-chat", never, {}, {}, never, never, false, never>;
|
|
4599
4598
|
}
|
|
4600
4599
|
|
|
4601
4600
|
declare class BarsaChatContentToolbarComponent {
|
|
@@ -4624,7 +4623,7 @@ type User$1 = {
|
|
|
4624
4623
|
name: string;
|
|
4625
4624
|
};
|
|
4626
4625
|
|
|
4627
|
-
declare class BarsaChatMessageComponent {
|
|
4626
|
+
declare class BarsaChatMessageComponent extends BaseComponent {
|
|
4628
4627
|
message: Message;
|
|
4629
4628
|
showSender: boolean;
|
|
4630
4629
|
nextIsSame: boolean;
|
|
@@ -4633,6 +4632,9 @@ declare class BarsaChatMessageComponent {
|
|
|
4633
4632
|
nextHasBadge: boolean;
|
|
4634
4633
|
badgeLabel: string;
|
|
4635
4634
|
reply: EventEmitter<any>;
|
|
4635
|
+
animationState: WritableSignal<'hidden' | 'visible'>;
|
|
4636
|
+
ngOnInit(): void;
|
|
4637
|
+
hideMessage(): void;
|
|
4636
4638
|
imageRatio(image: any): any;
|
|
4637
4639
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaChatMessageComponent, never>;
|
|
4638
4640
|
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaChatMessageComponent, "bsu-barsa-chat-message", never, { "message": { "alias": "message"; "required": false; }; "showSender": { "alias": "showSender"; "required": false; }; "nextIsSame": { "alias": "nextIsSame"; "required": false; }; "pervIsSame": { "alias": "pervIsSame"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "nextHasBadge": { "alias": "nextHasBadge"; "required": false; }; "badgeLabel": { "alias": "badgeLabel"; "required": false; }; }, { "reply": "reply"; }, never, never, false, never>;
|