@progress/kendo-angular-conversational-ui 15.0.0-develop.3 → 15.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/ai-prompt/aiprompt.module.d.ts +21 -0
- package/ai-prompt/views/command-view.component.d.ts +6 -0
- package/esm2020/ai-prompt/aiprompt.module.mjs +21 -0
- package/esm2020/ai-prompt/views/command-view.component.mjs +6 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-conversational-ui.mjs +29 -2
- package/fesm2020/progress-kendo-angular-conversational-ui.mjs +29 -2
- package/package.json +10 -10
@@ -18,6 +18,27 @@ import * as i12 from "@progress/kendo-angular-buttons";
|
|
18
18
|
import * as i13 from "@progress/kendo-angular-icons";
|
19
19
|
import * as i14 from "@progress/kendo-angular-inputs";
|
20
20
|
import * as i15 from "@progress/kendo-angular-layout";
|
21
|
+
/**
|
22
|
+
* The [NgModule](link:site.data.urls.angular['ngmodules']) for the AIPrompt component.
|
23
|
+
*
|
24
|
+
* @example
|
25
|
+
* ```ts-no-run
|
26
|
+
* import { NgModule } from '@angular/core';
|
27
|
+
* import { Component } from '@angular/core';
|
28
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
29
|
+
*
|
30
|
+
* import { AIPromptModule } from '@progress/kendo-angular-conversational-ui';
|
31
|
+
* import { AppComponent } from './app.component';
|
32
|
+
*
|
33
|
+
* _@NgModule({
|
34
|
+
* imports: [ BrowserModule, AIPromptModule ],
|
35
|
+
* declarations: [ AppComponent ],
|
36
|
+
* bootstrap: [ AppComponent ]
|
37
|
+
* })
|
38
|
+
*
|
39
|
+
* export class AppModule { }
|
40
|
+
* ```
|
41
|
+
*/
|
21
42
|
export declare class AIPromptModule {
|
22
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<AIPromptModule, never>;
|
23
44
|
static ɵmod: i0.ɵɵNgModuleDeclaration<AIPromptModule, [typeof i1.AIPromptComponent, typeof i2.PromptViewComponent, typeof i3.OutputViewComponent, typeof i4.CommandViewComponent, typeof i5.CustomViewComponent, typeof i6.AIPromptCustomMessagesComponent, typeof i7.AIPromptToolbarActionsDirective, typeof i8.AIPromptToolbarFocusableDirective, typeof i9.LocalizedMessagesDirective, typeof i10.AIPromptOutputCardComponent], [typeof i11.CommonModule, typeof i12.ButtonsModule, typeof i13.IconsModule, typeof i14.InputsModule, typeof i15.LayoutModule], [typeof i1.AIPromptComponent, typeof i2.PromptViewComponent, typeof i3.OutputViewComponent, typeof i4.CommandViewComponent, typeof i5.CustomViewComponent, typeof i6.AIPromptCustomMessagesComponent, typeof i7.AIPromptToolbarActionsDirective, typeof i8.AIPromptToolbarFocusableDirective]>;
|
@@ -14,8 +14,14 @@ import * as i0 from "@angular/core";
|
|
14
14
|
export declare class CommandViewComponent extends BaseView implements OnInit {
|
15
15
|
private service;
|
16
16
|
constructor(localization: LocalizationService, service: AIPromptService);
|
17
|
+
/**
|
18
|
+
* @hidden
|
19
|
+
*/
|
17
20
|
panelBarItems: Array<PanelBarItemModel>;
|
18
21
|
ngOnInit(): void;
|
22
|
+
/**
|
23
|
+
* @hidden
|
24
|
+
*/
|
19
25
|
itemClickHandler(ev: PanelBarItemClickEvent): void;
|
20
26
|
private getPanelBarItems;
|
21
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommandViewComponent, never>;
|
@@ -33,6 +33,27 @@ const PRIVATE_DIRECTIVES = [
|
|
33
33
|
LocalizedMessagesDirective,
|
34
34
|
AIPromptOutputCardComponent
|
35
35
|
];
|
36
|
+
/**
|
37
|
+
* The [NgModule](link:site.data.urls.angular['ngmodules']) for the AIPrompt component.
|
38
|
+
*
|
39
|
+
* @example
|
40
|
+
* ```ts-no-run
|
41
|
+
* import { NgModule } from '@angular/core';
|
42
|
+
* import { Component } from '@angular/core';
|
43
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
44
|
+
*
|
45
|
+
* import { AIPromptModule } from '@progress/kendo-angular-conversational-ui';
|
46
|
+
* import { AppComponent } from './app.component';
|
47
|
+
*
|
48
|
+
* _@NgModule({
|
49
|
+
* imports: [ BrowserModule, AIPromptModule ],
|
50
|
+
* declarations: [ AppComponent ],
|
51
|
+
* bootstrap: [ AppComponent ]
|
52
|
+
* })
|
53
|
+
*
|
54
|
+
* export class AppModule { }
|
55
|
+
* ```
|
56
|
+
*/
|
36
57
|
export class AIPromptModule {
|
37
58
|
}
|
38
59
|
AIPromptModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AIPromptModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
@@ -17,6 +17,9 @@ export class CommandViewComponent extends BaseView {
|
|
17
17
|
constructor(localization, service) {
|
18
18
|
super('command', localization);
|
19
19
|
this.service = service;
|
20
|
+
/**
|
21
|
+
* @hidden
|
22
|
+
*/
|
20
23
|
this.panelBarItems = [];
|
21
24
|
}
|
22
25
|
ngOnInit() {
|
@@ -24,6 +27,9 @@ export class CommandViewComponent extends BaseView {
|
|
24
27
|
this.panelBarItems = this.getPanelBarItems(this.service.promptCommands);
|
25
28
|
}
|
26
29
|
}
|
30
|
+
/**
|
31
|
+
* @hidden
|
32
|
+
*/
|
27
33
|
itemClickHandler(ev) {
|
28
34
|
if (ev.item.children) {
|
29
35
|
return;
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-conversational-ui',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '15.0.0
|
12
|
+
publishDate: 1706633242,
|
13
|
+
version: '15.0.0',
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
15
15
|
};
|
@@ -124,8 +124,8 @@ const packageMetadata = {
|
|
124
124
|
name: '@progress/kendo-angular-conversational-ui',
|
125
125
|
productName: 'Kendo UI for Angular',
|
126
126
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
127
|
-
publishDate:
|
128
|
-
version: '15.0.0
|
127
|
+
publishDate: 1706633242,
|
128
|
+
version: '15.0.0',
|
129
129
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
130
130
|
};
|
131
131
|
|
@@ -2787,6 +2787,9 @@ class CommandViewComponent extends BaseView {
|
|
2787
2787
|
constructor(localization, service) {
|
2788
2788
|
super('command', localization);
|
2789
2789
|
this.service = service;
|
2790
|
+
/**
|
2791
|
+
* @hidden
|
2792
|
+
*/
|
2790
2793
|
this.panelBarItems = [];
|
2791
2794
|
}
|
2792
2795
|
ngOnInit() {
|
@@ -2794,6 +2797,9 @@ class CommandViewComponent extends BaseView {
|
|
2794
2797
|
this.panelBarItems = this.getPanelBarItems(this.service.promptCommands);
|
2795
2798
|
}
|
2796
2799
|
}
|
2800
|
+
/**
|
2801
|
+
* @hidden
|
2802
|
+
*/
|
2797
2803
|
itemClickHandler(ev) {
|
2798
2804
|
if (ev.item.children) {
|
2799
2805
|
return;
|
@@ -2927,6 +2933,27 @@ const PRIVATE_DIRECTIVES$1 = [
|
|
2927
2933
|
LocalizedMessagesDirective,
|
2928
2934
|
AIPromptOutputCardComponent
|
2929
2935
|
];
|
2936
|
+
/**
|
2937
|
+
* The [NgModule](link:site.data.urls.angular['ngmodules']) for the AIPrompt component.
|
2938
|
+
*
|
2939
|
+
* @example
|
2940
|
+
* ```ts-no-run
|
2941
|
+
* import { NgModule } from '@angular/core';
|
2942
|
+
* import { Component } from '@angular/core';
|
2943
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
2944
|
+
*
|
2945
|
+
* import { AIPromptModule } from '@progress/kendo-angular-conversational-ui';
|
2946
|
+
* import { AppComponent } from './app.component';
|
2947
|
+
*
|
2948
|
+
* _@NgModule({
|
2949
|
+
* imports: [ BrowserModule, AIPromptModule ],
|
2950
|
+
* declarations: [ AppComponent ],
|
2951
|
+
* bootstrap: [ AppComponent ]
|
2952
|
+
* })
|
2953
|
+
*
|
2954
|
+
* export class AppModule { }
|
2955
|
+
* ```
|
2956
|
+
*/
|
2930
2957
|
class AIPromptModule {
|
2931
2958
|
}
|
2932
2959
|
AIPromptModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AIPromptModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
@@ -120,8 +120,8 @@ const packageMetadata = {
|
|
120
120
|
name: '@progress/kendo-angular-conversational-ui',
|
121
121
|
productName: 'Kendo UI for Angular',
|
122
122
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
123
|
-
publishDate:
|
124
|
-
version: '15.0.0
|
123
|
+
publishDate: 1706633242,
|
124
|
+
version: '15.0.0',
|
125
125
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
126
126
|
};
|
127
127
|
|
@@ -2778,6 +2778,9 @@ class CommandViewComponent extends BaseView {
|
|
2778
2778
|
constructor(localization, service) {
|
2779
2779
|
super('command', localization);
|
2780
2780
|
this.service = service;
|
2781
|
+
/**
|
2782
|
+
* @hidden
|
2783
|
+
*/
|
2781
2784
|
this.panelBarItems = [];
|
2782
2785
|
}
|
2783
2786
|
ngOnInit() {
|
@@ -2785,6 +2788,9 @@ class CommandViewComponent extends BaseView {
|
|
2785
2788
|
this.panelBarItems = this.getPanelBarItems(this.service.promptCommands);
|
2786
2789
|
}
|
2787
2790
|
}
|
2791
|
+
/**
|
2792
|
+
* @hidden
|
2793
|
+
*/
|
2788
2794
|
itemClickHandler(ev) {
|
2789
2795
|
if (ev.item.children) {
|
2790
2796
|
return;
|
@@ -2918,6 +2924,27 @@ const PRIVATE_DIRECTIVES$1 = [
|
|
2918
2924
|
LocalizedMessagesDirective,
|
2919
2925
|
AIPromptOutputCardComponent
|
2920
2926
|
];
|
2927
|
+
/**
|
2928
|
+
* The [NgModule](link:site.data.urls.angular['ngmodules']) for the AIPrompt component.
|
2929
|
+
*
|
2930
|
+
* @example
|
2931
|
+
* ```ts-no-run
|
2932
|
+
* import { NgModule } from '@angular/core';
|
2933
|
+
* import { Component } from '@angular/core';
|
2934
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
2935
|
+
*
|
2936
|
+
* import { AIPromptModule } from '@progress/kendo-angular-conversational-ui';
|
2937
|
+
* import { AppComponent } from './app.component';
|
2938
|
+
*
|
2939
|
+
* _@NgModule({
|
2940
|
+
* imports: [ BrowserModule, AIPromptModule ],
|
2941
|
+
* declarations: [ AppComponent ],
|
2942
|
+
* bootstrap: [ AppComponent ]
|
2943
|
+
* })
|
2944
|
+
*
|
2945
|
+
* export class AppModule { }
|
2946
|
+
* ```
|
2947
|
+
*/
|
2921
2948
|
class AIPromptModule {
|
2922
2949
|
}
|
2923
2950
|
AIPromptModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AIPromptModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
3
|
-
"version": "15.0.0
|
3
|
+
"version": "15.0.0",
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -24,19 +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": "15.0.0
|
28
|
-
"@progress/kendo-angular-inputs": "15.0.0
|
29
|
-
"@progress/kendo-angular-layout": "15.0.0
|
30
|
-
"@progress/kendo-angular-icons": "15.0.0
|
31
|
-
"@progress/kendo-angular-common": "15.0.0
|
32
|
-
"@progress/kendo-angular-intl": "15.0.0
|
33
|
-
"@progress/kendo-angular-l10n": "15.0.0
|
34
|
-
"@progress/kendo-angular-popup": "15.0.0
|
27
|
+
"@progress/kendo-angular-buttons": "15.0.0",
|
28
|
+
"@progress/kendo-angular-inputs": "15.0.0",
|
29
|
+
"@progress/kendo-angular-layout": "15.0.0",
|
30
|
+
"@progress/kendo-angular-icons": "15.0.0",
|
31
|
+
"@progress/kendo-angular-common": "15.0.0",
|
32
|
+
"@progress/kendo-angular-intl": "15.0.0",
|
33
|
+
"@progress/kendo-angular-l10n": "15.0.0",
|
34
|
+
"@progress/kendo-angular-popup": "15.0.0",
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
38
|
"tslib": "^2.3.1",
|
39
|
-
"@progress/kendo-angular-schematics": "15.0.0
|
39
|
+
"@progress/kendo-angular-schematics": "15.0.0"
|
40
40
|
},
|
41
41
|
"schematics": "./schematics/collection.json",
|
42
42
|
"module": "fesm2015/progress-kendo-angular-conversational-ui.mjs",
|