keevo-components 1.8.328 → 1.8.329
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/esm2022/lib/api/services/chat.service.mjs +37 -0
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +2 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/keevo-components.mjs +37 -3
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/services/chat.service.d.ts +17 -0
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ChatService {
|
|
3
|
+
constructor();
|
|
4
|
+
private _visibleChatBalloon;
|
|
5
|
+
private _visibleChatBottom;
|
|
6
|
+
private _visibleChatHigher;
|
|
7
|
+
visibleChatBalloon: import("@angular/core").Signal<boolean>;
|
|
8
|
+
visibleChatBottom: import("@angular/core").Signal<boolean>;
|
|
9
|
+
visibleChatHigher: import("@angular/core").Signal<boolean>;
|
|
10
|
+
private onVisible;
|
|
11
|
+
onVisible$: import("rxjs").Observable<boolean>;
|
|
12
|
+
setvisibleChatBalloon(value: boolean): void;
|
|
13
|
+
setvisibleChatBottom(value: boolean): void;
|
|
14
|
+
setvisibleChatHigher(value: boolean): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
|
|
17
|
+
}
|
|
@@ -127,7 +127,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
127
127
|
onClickEvent(event: any): void;
|
|
128
128
|
styleSetter(style: string, data: string): void;
|
|
129
129
|
checkMenuFiltro(col: any): void;
|
|
130
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
130
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
131
131
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
132
132
|
checkHideColumns(): void;
|
|
133
133
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -64,7 +64,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
64
64
|
onGlobalFilter(table: Table, event: Event): void;
|
|
65
65
|
executeCollapsed(): void;
|
|
66
66
|
checkMenuFiltro(col: any): void;
|
|
67
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
67
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
68
68
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
69
69
|
dinamicColumnSet(e: any, col: any): void;
|
|
70
70
|
addColumn(field: string): void;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export * from './lib/api/services/form.service';
|
|
|
37
37
|
export * from './lib/api/services/imagens.service';
|
|
38
38
|
export * from './lib/api/services/notification.service';
|
|
39
39
|
export * from './lib/api/services/object.service';
|
|
40
|
+
export * from './lib/api/services/chat.service';
|
|
40
41
|
/**
|
|
41
42
|
* PrimeNG
|
|
42
43
|
*/
|