@matechat/ng 20.2.2-alpha.0 → 20.3.0-alpha.0
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/README.md +514 -514
- package/fesm2022/matechat-ng.mjs +192 -81
- package/fesm2022/matechat-ng.mjs.map +1 -1
- package/index.d.ts +30 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1242,9 +1242,37 @@ declare class LayoutAsideModule {
|
|
|
1242
1242
|
static ɵinj: i0.ɵɵInjectorDeclaration<LayoutAsideModule>;
|
|
1243
1243
|
}
|
|
1244
1244
|
|
|
1245
|
-
|
|
1245
|
+
interface LayoutContentAdapter extends DefaultAdapter {
|
|
1246
|
+
}
|
|
1247
|
+
declare class LayoutContentFoundation extends BaseFoundation<LayoutContentAdapter> {
|
|
1248
|
+
constructor(adapter: LayoutContentAdapter);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
declare class LayoutContentComponent extends BaseComponent<LayoutContentFoundation> {
|
|
1252
|
+
autoScroll: boolean;
|
|
1253
|
+
showScrollArrow: boolean;
|
|
1254
|
+
onScrollerScroll: EventEmitter<Event>;
|
|
1255
|
+
onScrollerWheel: EventEmitter<WheelEvent>;
|
|
1256
|
+
scrollerRef: ElementRef;
|
|
1257
|
+
contentRef: ElementRef;
|
|
1258
|
+
showUpArrow: boolean;
|
|
1259
|
+
showDownArrow: boolean;
|
|
1260
|
+
userControl: boolean;
|
|
1261
|
+
private contentResizeOb;
|
|
1262
|
+
ngOnInit(): void;
|
|
1263
|
+
ngAfterViewInit(): void;
|
|
1264
|
+
ngOnDestroy(): void;
|
|
1265
|
+
get adapter(): LayoutContentAdapter;
|
|
1266
|
+
private wheelHandler;
|
|
1267
|
+
private scrollHandler;
|
|
1268
|
+
private initListener;
|
|
1269
|
+
private removeListener;
|
|
1270
|
+
scrollToPosition: (position: number) => void;
|
|
1271
|
+
scrollToBottom: () => void;
|
|
1272
|
+
scrollToTop: () => void;
|
|
1273
|
+
updateScroll: (force?: boolean) => void;
|
|
1246
1274
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutContentComponent, never>;
|
|
1247
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutContentComponent, "mc-layout-content", never, {}, {}, never, ["*"], true, never>;
|
|
1275
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutContentComponent, "mc-layout-content", never, { "autoScroll": { "alias": "autoScroll"; "required": false; }; "showScrollArrow": { "alias": "showScrollArrow"; "required": false; }; }, { "onScrollerScroll": "onScrollerScroll"; "onScrollerWheel": "onScrollerWheel"; }, never, ["*"], true, never>;
|
|
1248
1276
|
}
|
|
1249
1277
|
|
|
1250
1278
|
declare class LayoutContentModule {
|