@progress/kendo-angular-conversational-ui 14.4.0-develop.9 → 15.0.0-develop.2
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/NOTICE.txt +146 -593
- package/ai-prompt/aiprompt.component.d.ts +120 -0
- package/ai-prompt/aiprompt.module.d.ts +25 -0
- package/ai-prompt/common/aiprompt.service.d.ts +26 -0
- package/ai-prompt/common/output-card.component.d.ts +36 -0
- package/ai-prompt/common/toolbar-focusable.directive.d.ts +24 -0
- package/ai-prompt/common/toolbar-navigation.service.d.ts +24 -0
- package/ai-prompt/localization/custom-messages.component.d.ts +17 -0
- package/ai-prompt/localization/localized-messages.directive.d.ts +16 -0
- package/ai-prompt/localization/messages.d.ts +49 -0
- package/ai-prompt/models/command-execute-event.d.ts +23 -0
- package/ai-prompt/models/command.interface.d.ts +30 -0
- package/ai-prompt/models/index.d.ts +10 -0
- package/ai-prompt/models/output-rating-change-event.d.ts +18 -0
- package/ai-prompt/models/prompt-output.interface.d.ts +41 -0
- package/ai-prompt/models/prompt-request-event.d.ts +22 -0
- package/ai-prompt/models/view-type.d.ts +8 -0
- package/ai-prompt/templates/toolbar-actions.template.d.ts +18 -0
- package/ai-prompt/utils.d.ts +19 -0
- package/ai-prompt/views/base-view.d.ts +46 -0
- package/ai-prompt/views/command-view.component.d.ts +23 -0
- package/ai-prompt/views/custom-view.component.d.ts +20 -0
- package/ai-prompt/views/index.d.ts +8 -0
- package/ai-prompt/views/output-view.component.d.ts +22 -0
- package/ai-prompt/views/prompt-view.component.d.ts +47 -0
- package/{api → chat/api}/execute-action-event.d.ts +2 -1
- package/chat/attachment-template.directive.d.ts +1 -1
- package/chat/attachment.component.d.ts +1 -1
- package/chat/builtin-actions.d.ts +1 -1
- package/chat/chat-view.d.ts +1 -1
- package/chat/chat.component.d.ts +3 -3
- package/chat/chat.module.d.ts +3 -3
- package/chat/message-attachments.component.d.ts +1 -1
- package/chat/message-box.component.d.ts +2 -2
- package/chat/message-list.component.d.ts +1 -1
- package/chat/message-template.directive.d.ts +1 -1
- package/chat/message.component.d.ts +1 -1
- package/chat/suggested-actions.component.d.ts +1 -1
- package/conversational-ui.module.d.ts +43 -0
- package/esm2020/ai-prompt/aiprompt.component.mjs +348 -0
- package/esm2020/ai-prompt/aiprompt.module.mjs +79 -0
- package/esm2020/ai-prompt/common/aiprompt.service.mjs +38 -0
- package/esm2020/ai-prompt/common/output-card.component.mjs +199 -0
- package/esm2020/ai-prompt/common/toolbar-focusable.directive.mjs +67 -0
- package/esm2020/ai-prompt/common/toolbar-navigation.service.mjs +55 -0
- package/esm2020/ai-prompt/localization/custom-messages.component.mjs +41 -0
- package/esm2020/ai-prompt/localization/localized-messages.directive.mjs +37 -0
- package/esm2020/ai-prompt/localization/messages.mjs +35 -0
- package/esm2020/ai-prompt/models/prompt-output.interface.mjs +5 -0
- package/esm2020/ai-prompt/models/prompt-request-event.mjs +5 -0
- package/esm2020/ai-prompt/models/view-type.mjs +5 -0
- package/esm2020/ai-prompt/templates/toolbar-actions.template.mjs +27 -0
- package/esm2020/ai-prompt/utils.mjs +26 -0
- package/esm2020/ai-prompt/views/base-view.mjs +89 -0
- package/esm2020/ai-prompt/views/command-view.component.mjs +82 -0
- package/esm2020/ai-prompt/views/custom-view.component.mjs +35 -0
- package/esm2020/ai-prompt/views/index.mjs +8 -0
- package/esm2020/ai-prompt/views/output-view.component.mjs +66 -0
- package/esm2020/ai-prompt/views/prompt-view.component.mjs +146 -0
- package/esm2020/chat/api/attachment.interface.mjs +5 -0
- package/esm2020/chat/api/message.interface.mjs +5 -0
- package/esm2020/chat/api/user.interface.mjs +5 -0
- package/esm2020/chat/attachment-template.directive.mjs +1 -1
- package/esm2020/chat/builtin-actions.mjs +1 -1
- package/esm2020/chat/chat.component.mjs +2 -2
- package/esm2020/chat/chat.module.mjs +3 -3
- package/esm2020/chat/common/models/message-box-options.mjs +5 -0
- package/esm2020/chat/message-box.component.mjs +2 -2
- package/esm2020/chat/message-list.component.mjs +2 -2
- package/esm2020/chat/message-template.directive.mjs +1 -1
- package/esm2020/conversational-ui.module.mjs +50 -0
- package/esm2020/index.mjs +10 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-conversational-ui.mjs +1414 -152
- package/fesm2020/progress-kendo-angular-conversational-ui.mjs +1302 -46
- package/index.d.ts +11 -3
- package/package.json +10 -7
- package/schematics/ngAdd/index.js +4 -2
- /package/{api → chat/api}/action.interface.d.ts +0 -0
- /package/{api → chat/api}/attachment.interface.d.ts +0 -0
- /package/{api → chat/api}/index.d.ts +0 -0
- /package/{api → chat/api}/message.interface.d.ts +0 -0
- /package/{api → chat/api}/post-message-event.d.ts +0 -0
- /package/{api → chat/api}/preventable-event.d.ts +0 -0
- /package/{api → chat/api}/user.interface.d.ts +0 -0
- /package/{cards → chat/cards}/hero-card.component.d.ts +0 -0
- /package/{common → chat/common}/focused-state.directive.d.ts +0 -0
- /package/{common → chat/common}/models/message-box-options.d.ts +0 -0
- /package/{common → chat/common}/scroll-anchor.directive.d.ts +0 -0
- /package/{common → chat/common}/utils.d.ts +0 -0
- /package/esm2020/{api/attachment.interface.mjs → ai-prompt/models/command-execute-event.mjs} +0 -0
- /package/esm2020/{api/message.interface.mjs → ai-prompt/models/command.interface.mjs} +0 -0
- /package/esm2020/{api/user.interface.mjs → ai-prompt/models/index.mjs} +0 -0
- /package/esm2020/{common/models/message-box-options.mjs → ai-prompt/models/output-rating-change-event.mjs} +0 -0
- /package/esm2020/{api → chat/api}/action.interface.mjs +0 -0
- /package/esm2020/{api → chat/api}/execute-action-event.mjs +0 -0
- /package/esm2020/{api → chat/api}/index.mjs +0 -0
- /package/esm2020/{api → chat/api}/post-message-event.mjs +0 -0
- /package/esm2020/{api → chat/api}/preventable-event.mjs +0 -0
- /package/esm2020/{cards → chat/cards}/hero-card.component.mjs +0 -0
- /package/esm2020/{common → chat/common}/focused-state.directive.mjs +0 -0
- /package/esm2020/{common → chat/common}/scroll-anchor.directive.mjs +0 -0
- /package/esm2020/{common → chat/common}/utils.mjs +0 -0
package/index.d.ts
CHANGED
@@ -3,9 +3,17 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
export { ChatComponent, AttachmentTemplateDirective, MessageTemplateDirective } from './chat/chat.directives';
|
6
|
-
export { Action, ActionType, Attachment, AttachmentLayout, ExecuteActionEvent, Message, User, SendMessageEvent } from './api';
|
6
|
+
export { Action, ActionType, Attachment, AttachmentLayout, ExecuteActionEvent, Message, User, SendMessageEvent } from './chat/api';
|
7
|
+
export { AIPromptModule } from './ai-prompt/aiprompt.module';
|
7
8
|
export { ChatModule } from './chat/chat.module';
|
8
|
-
export {
|
9
|
+
export { ConversationalUIModule } from './conversational-ui.module';
|
10
|
+
export { HeroCardComponent } from './chat/cards/hero-card.component';
|
9
11
|
export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
|
10
|
-
export { MessageBoxType } from './common/models/message-box-options';
|
12
|
+
export { MessageBoxType } from './chat/common/models/message-box-options';
|
11
13
|
export { ChatMessageBoxTemplateDirective } from './chat/message-box.directive';
|
14
|
+
export { AIPromptComponent } from './ai-prompt/aiprompt.component';
|
15
|
+
export { AIPromptCustomMessagesComponent } from './ai-prompt/localization/custom-messages.component';
|
16
|
+
export { AIPromptToolbarActionsDirective } from './ai-prompt/templates/toolbar-actions.template';
|
17
|
+
export { AIPromptToolbarFocusableDirective } from './ai-prompt/common/toolbar-focusable.directive';
|
18
|
+
export * from './ai-prompt/views';
|
19
|
+
export * from './ai-prompt/models';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
3
|
-
"version": "
|
3
|
+
"version": "15.0.0-develop.2",
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -24,16 +24,19 @@
|
|
24
24
|
"@angular/core": "13 - 17",
|
25
25
|
"@angular/platform-browser": "13 - 17",
|
26
26
|
"@progress/kendo-licensing": "^1.0.2",
|
27
|
-
"@progress/kendo-angular-buttons": "
|
28
|
-
"@progress/kendo-angular-
|
29
|
-
"@progress/kendo-angular-
|
30
|
-
"@progress/kendo-angular-
|
31
|
-
"@progress/kendo-angular-
|
27
|
+
"@progress/kendo-angular-buttons": "15.0.0-develop.2",
|
28
|
+
"@progress/kendo-angular-inputs": "15.0.0-develop.2",
|
29
|
+
"@progress/kendo-angular-layout": "15.0.0-develop.2",
|
30
|
+
"@progress/kendo-angular-icons": "15.0.0-develop.2",
|
31
|
+
"@progress/kendo-angular-common": "15.0.0-develop.2",
|
32
|
+
"@progress/kendo-angular-intl": "15.0.0-develop.2",
|
33
|
+
"@progress/kendo-angular-l10n": "15.0.0-develop.2",
|
34
|
+
"@progress/kendo-angular-popup": "15.0.0-develop.2",
|
32
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
33
36
|
},
|
34
37
|
"dependencies": {
|
35
38
|
"tslib": "^2.3.1",
|
36
|
-
"@progress/kendo-angular-schematics": "
|
39
|
+
"@progress/kendo-angular-schematics": "15.0.0-develop.2"
|
37
40
|
},
|
38
41
|
"schematics": "./schematics/collection.json",
|
39
42
|
"module": "fesm2015/progress-kendo-angular-conversational-ui.mjs",
|
@@ -2,8 +2,10 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
const schematics_1 = require("@angular-devkit/schematics");
|
4
4
|
function default_1(options) {
|
5
|
-
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: '
|
6
|
-
|
5
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'ConversationalUIModule', package: 'conversational-ui', peerDependencies: {
|
6
|
+
// peer dep of the icons
|
7
|
+
'@progress/kendo-svg-icons': '^2.0.0'
|
8
|
+
} });
|
7
9
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
8
10
|
}
|
9
11
|
exports.default = default_1;
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/package/esm2020/{api/attachment.interface.mjs → ai-prompt/models/command-execute-event.mjs}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|