@progress/kendo-angular-conversational-ui 4.0.0 → 5.0.0-next.202202241517
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/{dist/es2015/api → api}/action.interface.d.ts +0 -0
- package/{dist/es2015/api → api}/attachment.interface.d.ts +0 -0
- package/{dist/es2015/api → api}/execute-action-event.d.ts +1 -1
- package/{dist/es/api/user.interface.js → api/index.d.ts} +6 -0
- package/{dist/es2015/api → api}/message.interface.d.ts +0 -0
- package/{dist/es2015/api → api}/post-message-event.d.ts +0 -0
- package/{dist/es2015/api → api}/preventable-event.d.ts +0 -0
- package/{dist/es2015/api → api}/user.interface.d.ts +0 -0
- package/bundles/kendo-angular-conversational-ui.umd.js +5 -0
- package/{dist/es2015/cards → cards}/hero-card.component.d.ts +3 -0
- package/{dist/es2015/chat → chat}/attachment-template.directive.d.ts +3 -0
- package/{dist/es2015/chat → chat}/attachment.component.d.ts +9 -5
- package/{dist/es2015/chat → chat}/builtin-actions.d.ts +0 -0
- package/{dist/es2015/chat → chat}/chat-item.d.ts +0 -0
- package/{dist/es2015/chat → chat}/chat-view.d.ts +1 -1
- package/{dist/es2015/chat → chat}/chat.component.d.ts +6 -6
- package/{dist/es2015/chat → chat}/chat.directives.d.ts +0 -0
- package/chat/chat.module.d.ts +47 -0
- package/{dist/es2015/chat → chat}/l10n/custom-messages.component.d.ts +4 -1
- package/{dist/es2015/chat → chat}/l10n/localized-messages.directive.d.ts +3 -0
- package/{dist/es2015/chat → chat}/l10n/messages.d.ts +3 -0
- package/{dist/es2015/chat → chat}/message-attachments.component.d.ts +5 -2
- package/{dist/es2015/chat → chat}/message-list.component.d.ts +8 -7
- package/{dist/es2015/chat → chat}/message-template.directive.d.ts +3 -0
- package/{dist/es2015/chat → chat}/message.component.d.ts +4 -1
- package/{dist/es2015/chat → chat}/suggested-actions.component.d.ts +4 -1
- package/common/focused-state.directive.d.ts +15 -0
- package/{dist/es2015/common → common}/keys.enum.d.ts +0 -0
- package/{dist/es2015/common → common}/scroll-anchor.directive.d.ts +3 -0
- package/{dist/es2015/common → common}/utils.d.ts +0 -0
- package/{dist/es2015 → esm2015}/api/action.interface.js +2 -1
- package/{dist/es2015 → esm2015}/api/attachment.interface.js +1 -0
- package/{dist/es2015 → esm2015}/api/execute-action-event.js +0 -0
- package/{dist/es/api/attachment.interface.js → esm2015/api/index.js} +6 -0
- package/{dist/es → esm2015}/api/message.interface.js +1 -0
- package/{dist/es2015 → esm2015}/api/post-message-event.js +0 -0
- package/{dist/es2015 → esm2015}/api/preventable-event.js +0 -0
- package/{dist/es2015 → esm2015}/api/user.interface.js +1 -0
- package/esm2015/cards/hero-card.component.js +88 -0
- package/{dist/es2015 → esm2015}/chat/attachment-template.directive.js +14 -12
- package/esm2015/chat/attachment.component.js +83 -0
- package/{dist/es2015 → esm2015}/chat/builtin-actions.js +13 -16
- package/{dist/es2015 → esm2015}/chat/chat-item.js +0 -0
- package/{dist/es2015 → esm2015}/chat/chat-view.js +0 -6
- package/esm2015/chat/chat.component.js +226 -0
- package/{dist/es → esm2015}/chat/chat.directives.js +0 -0
- package/{dist/es2015 → esm2015}/chat/chat.module.js +40 -15
- package/esm2015/chat/l10n/custom-messages.component.js +42 -0
- package/esm2015/chat/l10n/localized-messages.directive.js +37 -0
- package/esm2015/chat/l10n/messages.js +24 -0
- package/{dist/es2015 → esm2015}/chat/message-attachments.component.js +71 -48
- package/esm2015/chat/message-list.component.js +279 -0
- package/{dist/es2015 → esm2015}/chat/message-template.directive.js +14 -12
- package/esm2015/chat/message.component.js +140 -0
- package/esm2015/chat/suggested-actions.component.js +111 -0
- package/esm2015/common/focused-state.directive.js +37 -0
- package/{dist/es2015 → esm2015}/common/keys.enum.js +1 -0
- package/{dist/es2015 → esm2015}/common/scroll-anchor.directive.js +20 -26
- package/{dist/es2015 → esm2015}/common/utils.js +0 -0
- package/{dist/es/api/action.interface.js → esm2015/kendo-angular-conversational-ui.js} +4 -1
- package/{dist/npm/chat/chat-item.js → esm2015/main.js} +5 -11
- package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
- package/fesm2015/kendo-angular-conversational-ui.js +1576 -0
- package/{dist/es2015/common/focused-state.directive.d.ts → kendo-angular-conversational-ui.d.ts} +3 -6
- package/main.d.ts +9 -0
- package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
- package/package.json +34 -101
- package/schematics/ngAdd/index.js +5 -2
- package/schematics/ngAdd/index.js.map +1 -1
- package/dist/cdn/js/kendo-angular-conversational-ui.js +0 -20
- package/dist/cdn/main.js +0 -5
- package/dist/es/api/execute-action-event.js +0 -24
- package/dist/es/api/post-message-event.js +0 -18
- package/dist/es/api/preventable-event.js +0 -32
- package/dist/es/cards/hero-card.component.js +0 -54
- package/dist/es/chat/attachment-template.directive.js +0 -32
- package/dist/es/chat/attachment.component.js +0 -65
- package/dist/es/chat/builtin-actions.js +0 -28
- package/dist/es/chat/chat-item.js +0 -13
- package/dist/es/chat/chat-view.js +0 -92
- package/dist/es/chat/chat.component.js +0 -193
- package/dist/es/chat/chat.module.js +0 -76
- package/dist/es/chat/l10n/custom-messages.component.js +0 -45
- package/dist/es/chat/l10n/localized-messages.directive.js +0 -36
- package/dist/es/chat/l10n/messages.js +0 -26
- package/dist/es/chat/message-attachments.component.js +0 -148
- package/dist/es/chat/message-list.component.js +0 -165
- package/dist/es/chat/message-template.directive.js +0 -32
- package/dist/es/chat/message.component.js +0 -77
- package/dist/es/chat/suggested-actions.component.js +0 -91
- package/dist/es/common/focused-state.directive.js +0 -43
- package/dist/es/common/keys.enum.js +0 -4
- package/dist/es/common/scroll-anchor.directive.js +0 -87
- package/dist/es/common/utils.js +0 -13
- package/dist/es/index.js +0 -21
- package/dist/es/main.js +0 -8
- package/dist/es/package-metadata.js +0 -15
- package/dist/es2015/api/message.interface.js +0 -4
- package/dist/es2015/cards/hero-card.component.js +0 -78
- package/dist/es2015/chat/attachment.component.js +0 -66
- package/dist/es2015/chat/chat.component.js +0 -230
- package/dist/es2015/chat/chat.directives.js +0 -7
- package/dist/es2015/chat/chat.module.d.ts +0 -27
- package/dist/es2015/chat/l10n/custom-messages.component.js +0 -37
- package/dist/es2015/chat/l10n/localized-messages.directive.js +0 -32
- package/dist/es2015/chat/l10n/messages.js +0 -20
- package/dist/es2015/chat/message-list.component.js +0 -227
- package/dist/es2015/chat/message.component.js +0 -107
- package/dist/es2015/chat/suggested-actions.component.js +0 -104
- package/dist/es2015/common/focused-state.directive.js +0 -45
- package/dist/es2015/index.d.ts +0 -21
- package/dist/es2015/index.js +0 -21
- package/dist/es2015/index.metadata.json +0 -1
- package/dist/es2015/main.d.ts +0 -12
- package/dist/es2015/main.js +0 -8
- package/dist/fesm2015/index.js +0 -1403
- package/dist/fesm5/index.js +0 -1253
- package/dist/npm/api/action.interface.js +0 -7
- package/dist/npm/api/attachment.interface.js +0 -6
- package/dist/npm/api/execute-action-event.js +0 -26
- package/dist/npm/api/message.interface.js +0 -6
- package/dist/npm/api/post-message-event.js +0 -20
- package/dist/npm/api/preventable-event.js +0 -34
- package/dist/npm/api/user.interface.js +0 -6
- package/dist/npm/cards/hero-card.component.js +0 -56
- package/dist/npm/chat/attachment-template.directive.js +0 -34
- package/dist/npm/chat/attachment.component.js +0 -67
- package/dist/npm/chat/builtin-actions.js +0 -33
- package/dist/npm/chat/chat-view.js +0 -98
- package/dist/npm/chat/chat.component.js +0 -195
- package/dist/npm/chat/chat.directives.js +0 -12
- package/dist/npm/chat/chat.module.js +0 -78
- package/dist/npm/chat/l10n/custom-messages.component.js +0 -47
- package/dist/npm/chat/l10n/localized-messages.directive.js +0 -38
- package/dist/npm/chat/l10n/messages.js +0 -28
- package/dist/npm/chat/message-attachments.component.js +0 -150
- package/dist/npm/chat/message-list.component.js +0 -167
- package/dist/npm/chat/message-template.directive.js +0 -34
- package/dist/npm/chat/message.component.js +0 -79
- package/dist/npm/chat/suggested-actions.component.js +0 -93
- package/dist/npm/common/focused-state.directive.js +0 -45
- package/dist/npm/common/keys.enum.js +0 -6
- package/dist/npm/common/scroll-anchor.directive.js +0 -89
- package/dist/npm/common/utils.js +0 -15
- package/dist/npm/index.js +0 -37
- package/dist/npm/main.js +0 -11
- package/dist/npm/package-metadata.js +0 -17
- package/dist/systemjs/kendo-angular-conversational-ui.js +0 -5
package/{dist/es2015/common/focused-state.directive.d.ts → kendo-angular-conversational-ui.d.ts}
RENAMED
|
@@ -3,10 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
onFocus(): void;
|
|
11
|
-
onBlur(): void;
|
|
12
|
-
}
|
|
8
|
+
/// <amd-module name="@progress/kendo-angular-conversational-ui" />
|
|
9
|
+
export * from './main';
|
package/main.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export { ChatComponent, AttachmentTemplateDirective, MessageTemplateDirective } from './chat/chat.directives';
|
|
6
|
+
export { Action, ActionType, Attachment, AttachmentLayout, ExecuteActionEvent, Message, User, SendMessageEvent } from './api';
|
|
7
|
+
export { ChatModule } from './chat/chat.module';
|
|
8
|
+
export { HeroCardComponent } from './cards/hero-card.component';
|
|
9
|
+
export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,100 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
|
3
|
+
"version": "5.0.0-next.202202241517",
|
|
3
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
|
4
|
-
"author": "Progress",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"jsdelivr": "dist/cdn/main.js",
|
|
15
|
-
"unpkg": "dist/cdn/main.js",
|
|
16
|
-
"sideEffects": false,
|
|
17
|
-
"scripts": {
|
|
18
|
-
"test": "jest",
|
|
19
|
-
"test:watch": "jest --watch",
|
|
20
|
-
"test:ci": "ci-angular-test",
|
|
21
|
-
"start": "gulp start",
|
|
22
|
-
"e2e:ci": "ci-angular-e2e",
|
|
23
|
-
"lint": "gulp lint && gulp lint-docs",
|
|
24
|
-
"api-check": "gulp api-check",
|
|
25
|
-
"build-package": "gulp build-package",
|
|
26
|
-
"semantic-release": "semantic-release pre && semantic-prerelease publish --public && semantic-release post"
|
|
6
|
+
"author": "Progress",
|
|
7
|
+
"homepage": "https://www.telerik.com/kendo-angular-ui/components/",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/telerik/kendo-angular-conversational-ui.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/telerik/kendo-angular"
|
|
27
14
|
},
|
|
28
15
|
"keywords": [
|
|
29
|
-
"Kendo UI",
|
|
30
16
|
"Angular",
|
|
31
|
-
"Conversational UI",
|
|
32
17
|
"Chat",
|
|
33
|
-
"Chat Bot UI"
|
|
18
|
+
"Chat Bot UI",
|
|
19
|
+
"Conversational UI",
|
|
20
|
+
"Kendo UI"
|
|
34
21
|
],
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"@angular/core": "8 - 13",
|
|
38
|
-
"@angular/platform-browser": "8 - 13",
|
|
39
|
-
"@progress/kendo-angular-buttons": "^7.0.0",
|
|
40
|
-
"@progress/kendo-angular-common": "^2.0.0",
|
|
41
|
-
"@progress/kendo-angular-intl": "^3.0.0",
|
|
42
|
-
"@progress/kendo-angular-l10n": "^3.0.0",
|
|
43
|
-
"@progress/kendo-angular-popup": "^4.0.0",
|
|
44
|
-
"@progress/kendo-licensing": "^1.0.2",
|
|
45
|
-
"rxjs": "^6.4.0 || ^7.0.0"
|
|
22
|
+
"@progress": {
|
|
23
|
+
"friendlyName": "Conversational UI"
|
|
46
24
|
},
|
|
47
25
|
"dependencies": {
|
|
48
26
|
"@progress/kendo-schematics": "^2.0.0",
|
|
49
|
-
"tslib": "^
|
|
27
|
+
"tslib": "^2.3.1"
|
|
50
28
|
},
|
|
51
|
-
"
|
|
52
|
-
"@angular
|
|
53
|
-
"@angular
|
|
54
|
-
"@angular/
|
|
55
|
-
"@angular
|
|
56
|
-
"@angular/compiler": "^8.2.0",
|
|
57
|
-
"@angular/compiler-cli": "^8.2.0",
|
|
58
|
-
"@angular/core": "^8.2.0",
|
|
59
|
-
"@angular/forms": "^8.2.0",
|
|
60
|
-
"@angular/platform-browser": "^8.2.0",
|
|
61
|
-
"@angular/platform-browser-dynamic": "^8.2.0",
|
|
62
|
-
"@angular/platform-server": "^8.2.0",
|
|
63
|
-
"@angular/router": "^8.2.0",
|
|
64
|
-
"@progress/kendo-angular-buttons": "^6.0.0",
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@angular/common": "^12.0.0 || ^13.0.0",
|
|
31
|
+
"@angular/core": "^12.0.0 || ^13.0.0",
|
|
32
|
+
"@angular/platform-browser": "^12.0.0 || ^13.0.0",
|
|
33
|
+
"@progress/kendo-angular-buttons": "next",
|
|
65
34
|
"@progress/kendo-angular-common": "^2.0.0",
|
|
66
|
-
"@progress/kendo-angular-e2e": "^2.2.0",
|
|
67
35
|
"@progress/kendo-angular-intl": "^3.0.0",
|
|
68
|
-
"@progress/kendo-angular-
|
|
69
|
-
"@progress/kendo-angular-l10n": "^3.0.0",
|
|
36
|
+
"@progress/kendo-angular-l10n": "next",
|
|
70
37
|
"@progress/kendo-angular-popup": "^4.0.0",
|
|
71
|
-
"@progress/kendo-angular-tasks": "^18.0.10",
|
|
72
38
|
"@progress/kendo-licensing": "^1.0.2",
|
|
73
|
-
"
|
|
74
|
-
"@progress/kendo-theme-default": "^5.0.0",
|
|
75
|
-
"@progress/kendo-theme-material": "^5.0.0",
|
|
76
|
-
"@telerik/semantic-prerelease": "^1.0.0",
|
|
77
|
-
"@types/jest": "^21.1.8",
|
|
78
|
-
"@types/node": "ts3.4",
|
|
79
|
-
"@types/zone.js": "0.0.27",
|
|
80
|
-
"adaptivecards": "^1.0.0",
|
|
81
|
-
"api-ai-javascript": "^2.0.0-beta.21",
|
|
82
|
-
"botframework-directlinejs": "^0.9.15",
|
|
83
|
-
"codelyzer": "^5.0.0",
|
|
84
|
-
"core-js": "^2.2.2",
|
|
85
|
-
"cz-conventional-changelog": "^1.1.5",
|
|
86
|
-
"ghooks": "^1.0.3",
|
|
87
|
-
"gulp": "^4.0.0",
|
|
88
|
-
"jest-cli": "^21.2.1",
|
|
89
|
-
"jest-junit": "^8.0.0",
|
|
90
|
-
"rxjs": "~6.4.0",
|
|
91
|
-
"rxjs-compat": "~6.3.3",
|
|
92
|
-
"rxjs-tslint-rules": "^4.23.1",
|
|
93
|
-
"semantic-release": "^6.3.6",
|
|
94
|
-
"tslint": "^5.20.1",
|
|
95
|
-
"typescript": "~3.4.5",
|
|
96
|
-
"validate-commit-msg": "^1.1.1",
|
|
97
|
-
"zone.js": "~0.9.1"
|
|
39
|
+
"rxjs": "^6.5.3 || ^7.0.0"
|
|
98
40
|
},
|
|
99
41
|
"config": {
|
|
100
42
|
"commitizen": {
|
|
@@ -119,27 +61,16 @@
|
|
|
119
61
|
"maxSubjectLength": 100
|
|
120
62
|
}
|
|
121
63
|
},
|
|
122
|
-
"
|
|
123
|
-
"preset": "@progress/kendo-angular-jest-preset"
|
|
124
|
-
},
|
|
125
|
-
"repository": {
|
|
126
|
-
"type": "git",
|
|
127
|
-
"url": "https://github.com/telerik/kendo-angular-conversational-ui.git"
|
|
128
|
-
},
|
|
129
|
-
"bugs": {
|
|
130
|
-
"url": "https://github.com/telerik/kendo-angular"
|
|
131
|
-
},
|
|
132
|
-
"@progress": {
|
|
133
|
-
"friendlyName": "Conversational UI"
|
|
134
|
-
},
|
|
135
|
-
"homepage": "https://www.telerik.com/kendo-angular-ui/components/",
|
|
64
|
+
"schematics": "./schematics/collection.json",
|
|
136
65
|
"release": {
|
|
137
66
|
"debug": false,
|
|
138
67
|
"branchTags": {
|
|
139
|
-
"develop": "dev"
|
|
68
|
+
"develop": "dev",
|
|
69
|
+
"ng12-update": "next"
|
|
140
70
|
},
|
|
141
71
|
"fallbackTags": {
|
|
142
|
-
"dev": "latest"
|
|
72
|
+
"dev": "latest",
|
|
73
|
+
"next": "latest"
|
|
143
74
|
},
|
|
144
75
|
"analyzeCommits": "@telerik/semantic-prerelease/analyzeCommits",
|
|
145
76
|
"generateNotes": "@progress/kendo-angular-tasks/lib/generateNotes",
|
|
@@ -147,9 +78,11 @@
|
|
|
147
78
|
"verifyConditions": "@telerik/semantic-prerelease/verifyConditions",
|
|
148
79
|
"verifyRelease": "@telerik/semantic-prerelease/verifyRelease"
|
|
149
80
|
},
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
81
|
+
"main": "bundles/kendo-angular-conversational-ui.umd.js",
|
|
82
|
+
"module": "fesm2015/kendo-angular-conversational-ui.js",
|
|
83
|
+
"es2015": "fesm2015/kendo-angular-conversational-ui.js",
|
|
84
|
+
"esm2015": "esm2015/kendo-angular-conversational-ui.js",
|
|
85
|
+
"fesm2015": "fesm2015/kendo-angular-conversational-ui.js",
|
|
86
|
+
"typings": "kendo-angular-conversational-ui.d.ts",
|
|
87
|
+
"sideEffects": false
|
|
155
88
|
}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
"use strict";
|
|
2
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
7
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
4
8
|
function default_1(options) {
|
|
5
|
-
const finalOptions = Object.assign({}, options, { mainNgModule: 'ChatModule', package: 'conversational-ui' //package name, e.g grid
|
|
9
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ChatModule', package: 'conversational-ui' //package name, e.g grid
|
|
6
10
|
});
|
|
7
11
|
return schematics_1.externalSchematic('@progress/kendo-schematics', 'ng-add', finalOptions);
|
|
8
12
|
}
|
|
9
13
|
exports.default = default_1;
|
|
10
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKqC;AAErC,mBAAyB,OAAY;IACjC,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../tooling/schematics/ngAdd/index.ts"],"names":[],"mappings":";;AAAA,2DAKqC;AAErC,mBAAyB,OAAY;IACjC,MAAM,YAAY,mCACX,OAAO,KACV,YAAY,EAAE,YAAY,EAC1B,OAAO,EAAE,mBAAmB,CAAC,wBAAwB;OACxD,CAAC;IAEF,OAAO,8BAAiB,CAAC,4BAA4B,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;AACnF,CAAC;AARD,4BAQC"}
|