@masterteam/faris 0.0.2 → 0.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@masterteam/faris",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "publishConfig": {
5
5
  "directory": "../../../dist/masterteam/faris",
6
6
  "linkDirectory": false,
@@ -22,7 +22,7 @@
22
22
  "tailwindcss": "^4.1.17",
23
23
  "tailwindcss-primeui": "^0.6.1",
24
24
  "@masterteam/icons": "^0.0.13",
25
- "@masterteam/components": "^0.0.102"
25
+ "@masterteam/components": "^0.0.113"
26
26
  },
27
27
  "sideEffects": false,
28
28
  "exports": {
@@ -18,8 +18,6 @@ interface CanvasData {
18
18
  conversationId: string | null;
19
19
  }
20
20
  declare class FarisComponent implements OnDestroy, OnChanges {
21
- readonly compactBreakpoint = 1024;
22
- readonly fullWidthCompactBreakpoint = 768;
23
21
  showChatBot: boolean;
24
22
  showChatBotChange: EventEmitter<boolean>;
25
23
  showChatHistory: boolean;
@@ -27,19 +25,11 @@ declare class FarisComponent implements OnDestroy, OnChanges {
27
25
  selectedConversation: any;
28
26
  canvasData: CanvasData;
29
27
  maximized: boolean;
30
- isCompactLayout: boolean;
31
- useFullWidthCompactPopup: boolean;
32
28
  private subscription?;
33
29
  private readonly subscriptions;
34
30
  private readonly farisService;
35
31
  private readonly confirmationService;
36
- get showInlineCanvas(): boolean;
37
- get showInlineSidebar(): boolean;
38
- get showMobileHistoryOverlay(): boolean;
39
- get showCompactCanvasSurface(): boolean;
40
- constructor();
41
32
  private getUserDetails;
42
- onWindowResize(): void;
43
33
  ngOnChanges(changes: SimpleChanges): void;
44
34
  launchCanvas(item: FarisMessage): void;
45
35
  onDeleteConversationHandler({ event, id, }: {
@@ -58,8 +48,6 @@ declare class FarisComponent implements OnDestroy, OnChanges {
58
48
  ngOnDestroy(): void;
59
49
  private onChatOpened;
60
50
  private onChatClosed;
61
- private getViewportWidth;
62
- private updateLayoutMode;
63
51
  static ɵfac: i0.ɵɵFactoryDeclaration<FarisComponent, never>;
64
52
  static ɵcmp: i0.ɵɵComponentDeclaration<FarisComponent, "mt-faris", never, { "showChatBot": { "alias": "showChatBot"; "required": false; }; }, { "showChatBotChange": "showChatBotChange"; }, never, never, true, never>;
65
53
  }