@datarailsshared/datarailsshared 1.4.103 → 1.4.107

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.
@@ -19,6 +19,7 @@ export declare class DrChatComponent implements AfterViewInit, OnDestroy {
19
19
  messages: QueryList<DrChatMessageComponent>;
20
20
  chatForm: DrChatFormComponent;
21
21
  clear: EventEmitter<any>;
22
+ close: EventEmitter<any>;
22
23
  constructor(cdr: ChangeDetectorRef);
23
24
  ngAfterViewInit(): void;
24
25
  updateView(): void;
@@ -52,4 +52,5 @@ export declare class DrChatFormComponent {
52
52
  onDragLeave(event: DragEvent): void;
53
53
  sendMessage(): void;
54
54
  onModelChange(value: string): void;
55
+ getTextAreaHeight(textAreaElement: HTMLTextAreaElement): string;
55
56
  }
@@ -33,6 +33,7 @@ export declare class DrInputComponent implements AfterViewInit, ControlValueAcce
33
33
  listenFunc: (...params: any[]) => any;
34
34
  globalListenFunc: (...params: any[]) => any;
35
35
  searchHandler: EventEmitter<any>;
36
+ clearHandler: EventEmitter<any>;
36
37
  buttonHandler: EventEmitter<any>;
37
38
  prefixIcon: ElementRef;
38
39
  suffixIcon: ElementRef;
@@ -5,6 +5,7 @@ export declare class DrTabsComponent {
5
5
  withRadio: boolean;
6
6
  vertical: boolean;
7
7
  noBodyPadding: boolean;
8
+ noTabLabelsPadding: boolean;
8
9
  selectedTabChange: EventEmitter<any>;
9
10
  tabsContentList: QueryList<DrTabComponent>;
10
11
  constructor();
@@ -39,6 +39,8 @@ export interface IChatMessageBase {
39
39
  reply: boolean;
40
40
  senderId: string;
41
41
  parentId?: string;
42
+ useDefaultAvatar?: boolean;
43
+ avatarUrl?: string;
42
44
  }
43
45
  export interface IChatTextMessage extends IChatMessageBase {
44
46
  kind: string | CHAT_MESSAGE_TYPE.TEXT;
@@ -101,5 +103,7 @@ export declare class ChatMessage implements IChatMessageBase, IChatTextMessage,
101
103
  body?: any;
102
104
  form?: any;
103
105
  parameters?: any;
106
+ useDefaultAvatar?: boolean;
107
+ avatarUrl?: string;
104
108
  constructor(obj: any, user: IChatAccount);
105
109
  }
@@ -21,6 +21,7 @@ export interface IDrPopoverComponentModel {
21
21
  }
22
22
  export interface DrPopoverConfig extends OverlayConfig {
23
23
  closeOnBackdropClick?: boolean;
24
+ noPadding?: boolean;
24
25
  }
25
26
  export declare type DrPopoverAlignment = 'host';
26
27
  export declare enum DrPopoverAlignmentDimension {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/datarailsshared",
3
- "version": "1.4.103",
3
+ "version": "1.4.107",
4
4
  "description": "DataRails shared components",
5
5
  "keywords": [
6
6
  "angular",