@progress/kendo-angular-conversational-ui 5.0.0-next.202204010856 → 5.0.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/api/action.interface.d.ts +4 -4
- package/bundles/kendo-angular-conversational-ui.umd.js +1 -1
- package/chat/chat.component.d.ts +14 -11
- package/chat/chat.directives.d.ts +1 -0
- package/chat/chat.module.d.ts +14 -12
- package/chat/message-box.component.d.ts +42 -0
- package/chat/message-box.directive.d.ts +17 -0
- package/chat/message-list.component.d.ts +1 -1
- package/common/models/message-box-options.d.ts +8 -0
- package/esm2015/cards/hero-card.component.js +44 -42
- package/esm2015/chat/attachment.component.js +38 -38
- package/esm2015/chat/chat.component.js +106 -86
- package/esm2015/chat/chat.directives.js +1 -0
- package/esm2015/chat/chat.module.js +12 -5
- package/esm2015/chat/l10n/messages.js +1 -0
- package/esm2015/chat/message-attachments.component.js +62 -62
- package/esm2015/chat/message-box.component.js +141 -0
- package/esm2015/chat/message-box.directive.js +24 -0
- package/esm2015/chat/message-list.component.js +132 -132
- package/esm2015/chat/message.component.js +66 -66
- package/esm2015/chat/suggested-actions.component.js +30 -28
- package/esm2015/common/focused-state.directive.js +2 -2
- package/esm2015/common/models/message-box-options.js +5 -0
- package/esm2015/main.js +1 -0
- package/esm2015/package-metadata.js +1 -1
- package/fesm2015/kendo-angular-conversational-ui.js +682 -501
- package/main.d.ts +2 -0
- package/package.json +12 -14
package/main.d.ts
CHANGED
|
@@ -7,3 +7,5 @@ export { Action, ActionType, Attachment, AttachmentLayout, ExecuteActionEvent, M
|
|
|
7
7
|
export { ChatModule } from './chat/chat.module';
|
|
8
8
|
export { HeroCardComponent } from './cards/hero-card.component';
|
|
9
9
|
export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
|
|
10
|
+
export { MessageBoxType } from './common/models/message-box-options';
|
|
11
|
+
export { ChatMessageBoxTemplateDirective } from './chat/message-box.directive';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
|
3
|
-
"version": "5.0.0
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"friendlyName": "Conversational UI"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@progress/kendo-schematics": "
|
|
26
|
+
"@progress/kendo-schematics": "^3.0.0",
|
|
27
27
|
"tslib": "^2.3.1"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@angular/common": "
|
|
31
|
-
"@angular/core": "
|
|
32
|
-
"@angular/platform-browser": "
|
|
33
|
-
"@progress/kendo-angular-buttons": "
|
|
34
|
-
"@progress/kendo-angular-common": "^
|
|
35
|
-
"@progress/kendo-angular-intl": "^
|
|
36
|
-
"@progress/kendo-angular-l10n": "
|
|
37
|
-
"@progress/kendo-angular-popup": "^
|
|
30
|
+
"@angular/common": "12 - 14",
|
|
31
|
+
"@angular/core": "12 - 14",
|
|
32
|
+
"@angular/platform-browser": "12 - 14",
|
|
33
|
+
"@progress/kendo-angular-buttons": "^8.0.0",
|
|
34
|
+
"@progress/kendo-angular-common": "^3.0.0",
|
|
35
|
+
"@progress/kendo-angular-intl": "^4.0.0",
|
|
36
|
+
"@progress/kendo-angular-l10n": "^4.0.0",
|
|
37
|
+
"@progress/kendo-angular-popup": "^5.0.0",
|
|
38
38
|
"@progress/kendo-licensing": "^1.0.2",
|
|
39
39
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
40
40
|
},
|
|
@@ -65,12 +65,10 @@
|
|
|
65
65
|
"release": {
|
|
66
66
|
"debug": false,
|
|
67
67
|
"branchTags": {
|
|
68
|
-
"develop": "dev"
|
|
69
|
-
"ng12-update": "next"
|
|
68
|
+
"develop": "dev"
|
|
70
69
|
},
|
|
71
70
|
"fallbackTags": {
|
|
72
|
-
"dev": "latest"
|
|
73
|
-
"next": "latest"
|
|
71
|
+
"dev": "latest"
|
|
74
72
|
},
|
|
75
73
|
"analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
|
|
76
74
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|