@muraai/mnl-chat 0.0.1-alpha-3a3a286 → 0.0.1-alpha-51e7ded
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/chat.module.mjs +5 -5
- package/esm2022/lib/components/ng-chat/ng-chat.component.mjs +6 -6
- package/esm2022/lib/components/ng-chat-friends-list/ng-chat-friends-list.component.mjs +5 -5
- package/esm2022/lib/components/ng-chat-options/ng-chat-options.component.mjs +5 -5
- package/esm2022/lib/components/ng-chat-window/ng-chat-window.component.mjs +5 -5
- package/esm2022/lib/core/message-counter.mjs +1 -1
- package/esm2022/lib/firstLetter.pipe.mjs +4 -4
- package/esm2022/lib/material.module.mjs +11 -11
- package/esm2022/lib/pipes/emojify.pipe.mjs +4 -4
- package/esm2022/lib/pipes/group-message-display-name.pipe.mjs +4 -4
- package/esm2022/lib/pipes/linkfy.pipe.mjs +4 -4
- package/esm2022/lib/pipes/sanitize.pipe.mjs +5 -5
- package/esm2022/lib/services/chat.service.mjs +5 -5
- package/fesm2022/muraai-mnl-chat.mjs +72 -72
- package/fesm2022/muraai-mnl-chat.mjs.map +1 -1
- package/lib/material.module.d.ts +9 -9
- package/package.json +3 -3
package/lib/material.module.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/material/
|
|
4
|
-
import * as i2 from "@angular/material/
|
|
3
|
+
import * as i1 from "@angular/material/button";
|
|
4
|
+
import * as i2 from "@angular/material/form-field";
|
|
5
5
|
import * as i3 from "@angular/material/icon";
|
|
6
|
-
import * as i4 from "@angular/material/
|
|
6
|
+
import * as i4 from "@angular/material/input";
|
|
7
7
|
import * as i5 from "@angular/forms";
|
|
8
|
-
import * as i6 from "@angular/material/
|
|
9
|
-
import * as i7 from "@angular/material/
|
|
10
|
-
import * as i8 from "@angular/material/
|
|
11
|
-
export declare function modules(): (typeof
|
|
8
|
+
import * as i6 from "@angular/material/menu";
|
|
9
|
+
import * as i7 from "@angular/material/list";
|
|
10
|
+
import * as i8 from "@angular/material/card";
|
|
11
|
+
export declare function modules(): (typeof MatButtonModule)[];
|
|
12
12
|
export declare class ChatMaterialModule {
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatMaterialModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ChatMaterialModule, never, [typeof i1.
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChatMaterialModule, never, [typeof i1.MatButtonModule, typeof i2.MatFormFieldModule, typeof i3.MatIconModule, typeof i4.MatInputModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.MatMenuModule, typeof i7.MatListModule, typeof i8.MatCardModule], [typeof i1.MatButtonModule, typeof i2.MatFormFieldModule, typeof i3.MatIconModule, typeof i4.MatInputModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.MatMenuModule, typeof i7.MatListModule, typeof i8.MatCardModule]>;
|
|
15
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<ChatMaterialModule>;
|
|
16
16
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muraai/mnl-chat",
|
|
3
|
-
"version": "0.0.1-alpha-
|
|
3
|
+
"version": "0.0.1-alpha-51e7ded",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
5
|
+
"@angular/common": "^17.0.6",
|
|
6
|
+
"@angular/core": "^17.0.6"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"tslib": "^2.3.0"
|