@veltdev/sdk 1.0.141 → 1.0.142
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,6 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
|
-
import { AutocompleteData } from "../data/autocomplete.data.model";
|
|
3
|
+
import { AutocompleteData, AutocompleteChipData } from "../data/autocomplete.data.model";
|
|
4
4
|
export declare class AutocompleteElement {
|
|
5
5
|
/**
|
|
6
6
|
* To set autocomplete data
|
|
@@ -10,7 +10,7 @@ export declare class AutocompleteElement {
|
|
|
10
10
|
/**
|
|
11
11
|
* To get callback on autocomplete chip click
|
|
12
12
|
*/
|
|
13
|
-
public onAutocompleteChipClick: () => Observable<
|
|
13
|
+
public onAutocompleteChipClick: () => Observable<AutocompleteChipData>;
|
|
14
14
|
constructor();
|
|
15
15
|
|
|
16
16
|
/**
|
|
@@ -613,6 +613,16 @@ export declare class CommentElement {
|
|
|
613
613
|
* To disable change detection when comment mode is on
|
|
614
614
|
*/
|
|
615
615
|
public disableChangeDetectionInCommentMode: () => void;
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* To show resolved comments on DOM
|
|
619
|
+
*/
|
|
620
|
+
public showResolvedCommentsOnDom: () => void;
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* To hide resolved comments on DOM
|
|
624
|
+
*/
|
|
625
|
+
public hideResolvedCommentsOnDom: () => void;
|
|
616
626
|
constructor();
|
|
617
627
|
/**
|
|
618
628
|
* Subscribe to comments on the current document.
|
|
@@ -1219,4 +1229,14 @@ export declare class CommentElement {
|
|
|
1219
1229
|
* To disable change detection when comment mode is on
|
|
1220
1230
|
*/
|
|
1221
1231
|
private _disableChangeDetectionInCommentMode;
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* To show resolved comments on DOM
|
|
1235
|
+
*/
|
|
1236
|
+
private _showResolvedCommentsOnDom;
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* To hide resolved comments on DOM
|
|
1240
|
+
*/
|
|
1241
|
+
private _hideResolvedCommentsOnDom;
|
|
1222
1242
|
}
|