vhobjects-user 0.8.7 → 0.8.8
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/fesm2015/vhobjects-user.js +1 -1
- package/fesm2015/vhobjects-user.js.map +1 -1
- package/lib/frames/frame-search-by-keyword/user/frame-search-by-keyword/frame-search-by-keyword.component.d.ts +1 -0
- package/lib/objects/basic/search/user/search/search.component.d.ts +7 -2
- package/package.json +1 -1
|
@@ -55,6 +55,7 @@ export declare class AtwFrameSearchByKeyword implements OnInit {
|
|
|
55
55
|
private priceTo;
|
|
56
56
|
private observer;
|
|
57
57
|
private subscription;
|
|
58
|
+
private mapType;
|
|
58
59
|
constructor(vhQueryAutoWeb: VhQueryAutoWeb, activatedRoute: ActivatedRoute, element: ElementRef, // Dùng cho hàm setAnimationVisible trong functionService
|
|
59
60
|
router: Router, vhAlgorithm: VhAlgorithm, functionService: FunctionService, changeDetectorRef: ChangeDetectorRef, pipeFrameService: PipeFrameService, platformId: Object);
|
|
60
61
|
ngOnDestroy(): void;
|
|
@@ -85,6 +85,10 @@ export declare class AtwSearch implements OnInit {
|
|
|
85
85
|
};
|
|
86
86
|
/** Subscription để theo dõi sự kiện thay đổi ngôn ngữ */
|
|
87
87
|
languageChangedSubscription: any;
|
|
88
|
+
/** Biến lưu màu hiện tại (màu mặc định ban đầu là màu đầu tiên trong mảng) */
|
|
89
|
+
currentPlaceholderColor: string;
|
|
90
|
+
/** Biến để lưu bộ đếm thời gian (dùng để xóa khi hủy component) */
|
|
91
|
+
private colorIntervalId;
|
|
88
92
|
constructor(vhEventMediator: VhEventMediator, sanitizer: DomSanitizer, vhQueryAutoWeb: VhQueryAutoWeb, vhAlgorithm: VhAlgorithm, router: Router, route: ActivatedRoute, functionService: FunctionService, elementRef: ElementRef);
|
|
89
93
|
ngOnInit(): void;
|
|
90
94
|
ngAfterViewInit(): void;
|
|
@@ -95,8 +99,8 @@ export declare class AtwSearch implements OnInit {
|
|
|
95
99
|
/** debounceTimer cho việc tìm kiếm */
|
|
96
100
|
private debounceTimer;
|
|
97
101
|
/** Hàm thực hiện tìm kiếm các sản phẩm liền quan đến keyWord
|
|
98
|
-
|
|
99
|
-
|
|
102
|
+
* @param keyWord: string
|
|
103
|
+
*/
|
|
100
104
|
handleSearch(event: any): void;
|
|
101
105
|
/** Hàm thực hiện chọn kết quả đã tìm được ( Nhận sự kiện click chọn kết quả)
|
|
102
106
|
* @param
|
|
@@ -112,6 +116,7 @@ export declare class AtwSearch implements OnInit {
|
|
|
112
116
|
closeModal(): void;
|
|
113
117
|
onSuggestionMouseDown(): void;
|
|
114
118
|
onInputBlur(): void;
|
|
119
|
+
private changeColorAuto;
|
|
115
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtwSearch, never>;
|
|
116
121
|
static ɵcmp: i0.ɵɵComponentDeclaration<AtwSearch, "atw-search", never, { "device": "device"; "type": "type"; "data": "data"; "componentChoosing": "componentChoosing"; "resolution": "resolution"; "id_subproject": "id_subproject"; "objectChoosing": "objectChoosing"; "blockChoosing": "blockChoosing"; "rMessage": "rMessage"; }, { "addObjectDuplicate": "addObjectDuplicate"; "onSomething": "onSomething"; "deleteTools": "deleteTools"; "hanldleProcessResizeOffset": "hanldleProcessResizeOffset"; }, never, never>;
|
|
117
122
|
}
|