@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.
Files changed (148) hide show
  1. package/{dist/es2015/api → api}/action.interface.d.ts +0 -0
  2. package/{dist/es2015/api → api}/attachment.interface.d.ts +0 -0
  3. package/{dist/es2015/api → api}/execute-action-event.d.ts +1 -1
  4. package/{dist/es/api/user.interface.js → api/index.d.ts} +6 -0
  5. package/{dist/es2015/api → api}/message.interface.d.ts +0 -0
  6. package/{dist/es2015/api → api}/post-message-event.d.ts +0 -0
  7. package/{dist/es2015/api → api}/preventable-event.d.ts +0 -0
  8. package/{dist/es2015/api → api}/user.interface.d.ts +0 -0
  9. package/bundles/kendo-angular-conversational-ui.umd.js +5 -0
  10. package/{dist/es2015/cards → cards}/hero-card.component.d.ts +3 -0
  11. package/{dist/es2015/chat → chat}/attachment-template.directive.d.ts +3 -0
  12. package/{dist/es2015/chat → chat}/attachment.component.d.ts +9 -5
  13. package/{dist/es2015/chat → chat}/builtin-actions.d.ts +0 -0
  14. package/{dist/es2015/chat → chat}/chat-item.d.ts +0 -0
  15. package/{dist/es2015/chat → chat}/chat-view.d.ts +1 -1
  16. package/{dist/es2015/chat → chat}/chat.component.d.ts +6 -6
  17. package/{dist/es2015/chat → chat}/chat.directives.d.ts +0 -0
  18. package/chat/chat.module.d.ts +47 -0
  19. package/{dist/es2015/chat → chat}/l10n/custom-messages.component.d.ts +4 -1
  20. package/{dist/es2015/chat → chat}/l10n/localized-messages.directive.d.ts +3 -0
  21. package/{dist/es2015/chat → chat}/l10n/messages.d.ts +3 -0
  22. package/{dist/es2015/chat → chat}/message-attachments.component.d.ts +5 -2
  23. package/{dist/es2015/chat → chat}/message-list.component.d.ts +8 -7
  24. package/{dist/es2015/chat → chat}/message-template.directive.d.ts +3 -0
  25. package/{dist/es2015/chat → chat}/message.component.d.ts +4 -1
  26. package/{dist/es2015/chat → chat}/suggested-actions.component.d.ts +4 -1
  27. package/common/focused-state.directive.d.ts +15 -0
  28. package/{dist/es2015/common → common}/keys.enum.d.ts +0 -0
  29. package/{dist/es2015/common → common}/scroll-anchor.directive.d.ts +3 -0
  30. package/{dist/es2015/common → common}/utils.d.ts +0 -0
  31. package/{dist/es2015 → esm2015}/api/action.interface.js +2 -1
  32. package/{dist/es2015 → esm2015}/api/attachment.interface.js +1 -0
  33. package/{dist/es2015 → esm2015}/api/execute-action-event.js +0 -0
  34. package/{dist/es/api/attachment.interface.js → esm2015/api/index.js} +6 -0
  35. package/{dist/es → esm2015}/api/message.interface.js +1 -0
  36. package/{dist/es2015 → esm2015}/api/post-message-event.js +0 -0
  37. package/{dist/es2015 → esm2015}/api/preventable-event.js +0 -0
  38. package/{dist/es2015 → esm2015}/api/user.interface.js +1 -0
  39. package/esm2015/cards/hero-card.component.js +88 -0
  40. package/{dist/es2015 → esm2015}/chat/attachment-template.directive.js +14 -12
  41. package/esm2015/chat/attachment.component.js +83 -0
  42. package/{dist/es2015 → esm2015}/chat/builtin-actions.js +13 -16
  43. package/{dist/es2015 → esm2015}/chat/chat-item.js +0 -0
  44. package/{dist/es2015 → esm2015}/chat/chat-view.js +0 -6
  45. package/esm2015/chat/chat.component.js +226 -0
  46. package/{dist/es → esm2015}/chat/chat.directives.js +0 -0
  47. package/{dist/es2015 → esm2015}/chat/chat.module.js +40 -15
  48. package/esm2015/chat/l10n/custom-messages.component.js +42 -0
  49. package/esm2015/chat/l10n/localized-messages.directive.js +37 -0
  50. package/esm2015/chat/l10n/messages.js +24 -0
  51. package/{dist/es2015 → esm2015}/chat/message-attachments.component.js +71 -48
  52. package/esm2015/chat/message-list.component.js +279 -0
  53. package/{dist/es2015 → esm2015}/chat/message-template.directive.js +14 -12
  54. package/esm2015/chat/message.component.js +140 -0
  55. package/esm2015/chat/suggested-actions.component.js +111 -0
  56. package/esm2015/common/focused-state.directive.js +37 -0
  57. package/{dist/es2015 → esm2015}/common/keys.enum.js +1 -0
  58. package/{dist/es2015 → esm2015}/common/scroll-anchor.directive.js +20 -26
  59. package/{dist/es2015 → esm2015}/common/utils.js +0 -0
  60. package/{dist/es/api/action.interface.js → esm2015/kendo-angular-conversational-ui.js} +4 -1
  61. package/{dist/npm/chat/chat-item.js → esm2015/main.js} +5 -11
  62. package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
  63. package/fesm2015/kendo-angular-conversational-ui.js +1576 -0
  64. package/{dist/es2015/common/focused-state.directive.d.ts → kendo-angular-conversational-ui.d.ts} +3 -6
  65. package/main.d.ts +9 -0
  66. package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
  67. package/package.json +34 -101
  68. package/schematics/ngAdd/index.js +5 -2
  69. package/schematics/ngAdd/index.js.map +1 -1
  70. package/dist/cdn/js/kendo-angular-conversational-ui.js +0 -20
  71. package/dist/cdn/main.js +0 -5
  72. package/dist/es/api/execute-action-event.js +0 -24
  73. package/dist/es/api/post-message-event.js +0 -18
  74. package/dist/es/api/preventable-event.js +0 -32
  75. package/dist/es/cards/hero-card.component.js +0 -54
  76. package/dist/es/chat/attachment-template.directive.js +0 -32
  77. package/dist/es/chat/attachment.component.js +0 -65
  78. package/dist/es/chat/builtin-actions.js +0 -28
  79. package/dist/es/chat/chat-item.js +0 -13
  80. package/dist/es/chat/chat-view.js +0 -92
  81. package/dist/es/chat/chat.component.js +0 -193
  82. package/dist/es/chat/chat.module.js +0 -76
  83. package/dist/es/chat/l10n/custom-messages.component.js +0 -45
  84. package/dist/es/chat/l10n/localized-messages.directive.js +0 -36
  85. package/dist/es/chat/l10n/messages.js +0 -26
  86. package/dist/es/chat/message-attachments.component.js +0 -148
  87. package/dist/es/chat/message-list.component.js +0 -165
  88. package/dist/es/chat/message-template.directive.js +0 -32
  89. package/dist/es/chat/message.component.js +0 -77
  90. package/dist/es/chat/suggested-actions.component.js +0 -91
  91. package/dist/es/common/focused-state.directive.js +0 -43
  92. package/dist/es/common/keys.enum.js +0 -4
  93. package/dist/es/common/scroll-anchor.directive.js +0 -87
  94. package/dist/es/common/utils.js +0 -13
  95. package/dist/es/index.js +0 -21
  96. package/dist/es/main.js +0 -8
  97. package/dist/es/package-metadata.js +0 -15
  98. package/dist/es2015/api/message.interface.js +0 -4
  99. package/dist/es2015/cards/hero-card.component.js +0 -78
  100. package/dist/es2015/chat/attachment.component.js +0 -66
  101. package/dist/es2015/chat/chat.component.js +0 -230
  102. package/dist/es2015/chat/chat.directives.js +0 -7
  103. package/dist/es2015/chat/chat.module.d.ts +0 -27
  104. package/dist/es2015/chat/l10n/custom-messages.component.js +0 -37
  105. package/dist/es2015/chat/l10n/localized-messages.directive.js +0 -32
  106. package/dist/es2015/chat/l10n/messages.js +0 -20
  107. package/dist/es2015/chat/message-list.component.js +0 -227
  108. package/dist/es2015/chat/message.component.js +0 -107
  109. package/dist/es2015/chat/suggested-actions.component.js +0 -104
  110. package/dist/es2015/common/focused-state.directive.js +0 -45
  111. package/dist/es2015/index.d.ts +0 -21
  112. package/dist/es2015/index.js +0 -21
  113. package/dist/es2015/index.metadata.json +0 -1
  114. package/dist/es2015/main.d.ts +0 -12
  115. package/dist/es2015/main.js +0 -8
  116. package/dist/fesm2015/index.js +0 -1403
  117. package/dist/fesm5/index.js +0 -1253
  118. package/dist/npm/api/action.interface.js +0 -7
  119. package/dist/npm/api/attachment.interface.js +0 -6
  120. package/dist/npm/api/execute-action-event.js +0 -26
  121. package/dist/npm/api/message.interface.js +0 -6
  122. package/dist/npm/api/post-message-event.js +0 -20
  123. package/dist/npm/api/preventable-event.js +0 -34
  124. package/dist/npm/api/user.interface.js +0 -6
  125. package/dist/npm/cards/hero-card.component.js +0 -56
  126. package/dist/npm/chat/attachment-template.directive.js +0 -34
  127. package/dist/npm/chat/attachment.component.js +0 -67
  128. package/dist/npm/chat/builtin-actions.js +0 -33
  129. package/dist/npm/chat/chat-view.js +0 -98
  130. package/dist/npm/chat/chat.component.js +0 -195
  131. package/dist/npm/chat/chat.directives.js +0 -12
  132. package/dist/npm/chat/chat.module.js +0 -78
  133. package/dist/npm/chat/l10n/custom-messages.component.js +0 -47
  134. package/dist/npm/chat/l10n/localized-messages.directive.js +0 -38
  135. package/dist/npm/chat/l10n/messages.js +0 -28
  136. package/dist/npm/chat/message-attachments.component.js +0 -150
  137. package/dist/npm/chat/message-list.component.js +0 -167
  138. package/dist/npm/chat/message-template.directive.js +0 -34
  139. package/dist/npm/chat/message.component.js +0 -79
  140. package/dist/npm/chat/suggested-actions.component.js +0 -93
  141. package/dist/npm/common/focused-state.directive.js +0 -45
  142. package/dist/npm/common/keys.enum.js +0 -6
  143. package/dist/npm/common/scroll-anchor.directive.js +0 -89
  144. package/dist/npm/common/utils.js +0 -15
  145. package/dist/npm/index.js +0 -37
  146. package/dist/npm/main.js +0 -11
  147. package/dist/npm/package-metadata.js +0 -17
  148. package/dist/systemjs/kendo-angular-conversational-ui.js +0 -5
@@ -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
- * @hidden
6
+ * Generated bundle index. Do not edit.
7
7
  */
8
- export declare class FocusedStateDirective {
9
- focused: boolean;
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';
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
- "version": "4.0.0",
7
- "main": "dist/npm/index.js",
8
- "module": "dist/fesm5/index.js",
9
- "es2015": "dist/fesm2015/index.js",
10
- "esm5": "dist/es/index.js",
11
- "esm2015": "dist/es2015/index.js",
12
- "jsnext:main": "dist/es/index.js",
13
- "typings": "dist/es2015/index.d.ts",
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
- "peerDependencies": {
36
- "@angular/common": "8 - 13",
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": "^1.9.0"
27
+ "tslib": "^2.3.1"
50
28
  },
51
- "devDependencies": {
52
- "@angular-devkit/core": "^8.2.0",
53
- "@angular-devkit/schematics": "^8.2.0",
54
- "@angular/animations": "^8.2.0",
55
- "@angular/common": "^8.2.0",
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-jest-preset": "^2.0.0",
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
- "@progress/kendo-theme-bootstrap": "^5.0.0",
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
- "jest": {
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
- "schematics": "./schematics/collection.json",
151
- "files": [
152
- "dist",
153
- "schematics"
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,qBACX,OAAO,IACV,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"}
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"}