@progress/kendo-angular-conversational-ui 5.0.0-next.202204011454 → 5.0.1-dev.202207281413
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 +69 -69
- 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 +685 -504
- package/main.d.ts +2 -0
- package/package.json +15 -17
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.
|
|
3
|
+
"version": "5.0.1-dev.202207281413",
|
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -27,14 +27,14 @@
|
|
|
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,18 +65,16 @@
|
|
|
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
|
-
"analyzeCommits": "@
|
|
73
|
+
"analyzeCommits": "@progress/semantic-prerelease/analyzeCommits",
|
|
76
74
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|
|
77
|
-
"getLastRelease": "@
|
|
78
|
-
"verifyConditions": "@
|
|
79
|
-
"verifyRelease": "@
|
|
75
|
+
"getLastRelease": "@progress/semantic-prerelease/getLastRelease",
|
|
76
|
+
"verifyConditions": "@progress/semantic-prerelease/verifyConditions",
|
|
77
|
+
"verifyRelease": "@progress/semantic-prerelease/verifyRelease"
|
|
80
78
|
},
|
|
81
79
|
"main": "bundles/kendo-angular-conversational-ui.umd.js",
|
|
82
80
|
"module": "fesm2015/kendo-angular-conversational-ui.js",
|