@sinequa/assistant 3.9.6-rc1 → 3.9.6

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.
@@ -1,41 +1,41 @@
1
- import { ElementRef } from "@angular/core";
1
+ import { ElementRef, OnChanges } from "@angular/core";
2
2
  import { ChatContextAttachment } from "../types";
3
3
  import type { MessageImageReference } from "../types/message-reference.types";
4
4
  import * as i0 from "@angular/core";
5
- export declare class ReferenceComponent {
5
+ export declare class ReferenceComponent implements OnChanges {
6
6
  id: any;
7
7
  attachment: any;
8
8
  rank: number;
9
- ref: import("@angular/core").WritableSignal<ChatContextAttachment>;
10
- constructor();
9
+ ref: ChatContextAttachment;
10
+ ngOnChanges(): void;
11
11
  onOpenPreview(attachment: ChatContextAttachment, partId?: number): void;
12
12
  onOpenDocument(attachment: ChatContextAttachment, partId?: number): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<ReferenceComponent, never>;
14
14
  static ɵcmp: i0.ɵɵComponentDeclaration<ReferenceComponent, "reference", never, { "id": { "alias": "id"; "required": false; }; "attachment": { "alias": "attachment"; "required": false; }; "rank": { "alias": "rank"; "required": false; }; }, {}, never, never, true, never>;
15
15
  }
16
- export declare class PageReferenceComponent {
16
+ export declare class PageReferenceComponent implements OnChanges {
17
17
  id: any;
18
18
  attachment: any;
19
- ref: import("@angular/core").WritableSignal<MessageImageReference>;
20
- constructor();
19
+ ref: MessageImageReference;
20
+ ngOnChanges(): void;
21
21
  onOpenPreview(attachment: ChatContextAttachment, partId?: number): void;
22
22
  onOpenDocument(attachment: ChatContextAttachment, partId?: number): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<PageReferenceComponent, never>;
24
24
  static ɵcmp: i0.ɵɵComponentDeclaration<PageReferenceComponent, "page-reference", never, { "id": { "alias": "id"; "required": false; }; "attachment": { "alias": "attachment"; "required": false; }; }, {}, never, never, true, never>;
25
25
  }
26
- export declare class ImageReferenceComponent {
26
+ export declare class ImageReferenceComponent implements OnChanges {
27
27
  id: any;
28
28
  attachment: any;
29
- ref: import("@angular/core").WritableSignal<MessageImageReference>;
30
- constructor();
29
+ ref: MessageImageReference;
30
+ ngOnChanges(): void;
31
31
  onOpenPreview(attachment: ChatContextAttachment, partId?: number): void;
32
32
  onOpenDocument(attachment: ChatContextAttachment, partId?: number): void;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageReferenceComponent, never>;
34
34
  static ɵcmp: i0.ɵɵComponentDeclaration<ImageReferenceComponent, "image-reference", never, { "id": { "alias": "id"; "required": false; }; "attachment": { "alias": "attachment"; "required": false; }; }, {}, never, never, true, never>;
35
35
  }
36
36
  export declare class CodeBlockReferenceComponent {
37
- el: ElementRef<any>;
38
37
  langname: string;
38
+ el: ElementRef<any>;
39
39
  encodeCode: string;
40
40
  ngAfterViewInit(): void;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<CodeBlockReferenceComponent, never>;