@progress/kendo-angular-conversational-ui 21.0.0-develop.27 → 21.0.0-develop.29
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/chat/chat.component.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export declare class ChatComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
54
54
|
private chatService;
|
|
55
55
|
/**
|
|
56
56
|
* Sets the Chat messages.
|
|
57
|
-
* Accepts an array of `Message` objects, but can also accept custom data
|
|
57
|
+
* Accepts an array of `Message` objects, but can also accept custom data types.
|
|
58
58
|
* For more information, check [Data Binding](slug:databinding_chat) section in the documentation.
|
|
59
59
|
*/
|
|
60
60
|
messages: any[];
|
|
@@ -99,13 +99,15 @@ export declare class ChatComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
99
99
|
*/
|
|
100
100
|
timestampVisibility: TimestampVisibilityMode;
|
|
101
101
|
/**
|
|
102
|
-
* Controls the visibility of
|
|
102
|
+
* Controls the visibility of usernames in messages.
|
|
103
|
+
* When set to `true`, the username displays above each message bubble.
|
|
103
104
|
*
|
|
104
105
|
* @default true
|
|
105
106
|
*/
|
|
106
107
|
showUsername: boolean;
|
|
107
108
|
/**
|
|
108
|
-
* Controls the visibility
|
|
109
|
+
* Controls the avatar visibility for the messages.
|
|
110
|
+
* When set to `true`, the user avatar displays next to each message bubble.
|
|
109
111
|
*
|
|
110
112
|
* @default true
|
|
111
113
|
*/
|
|
@@ -211,7 +213,7 @@ export declare class ChatComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
211
213
|
sendButtonSettings: SendButtonSettings;
|
|
212
214
|
/**
|
|
213
215
|
* Sets the names of the model fields from which the Chat reads its data.
|
|
214
|
-
* Lets you map custom data
|
|
216
|
+
* Lets you map custom data types to the expected `Message` format.
|
|
215
217
|
*/
|
|
216
218
|
set modelFields(value: ConversationalUIModelFields);
|
|
217
219
|
get modelFields(): ConversationalUIModelFields;
|
|
@@ -63,7 +63,7 @@ export class ChatComponent {
|
|
|
63
63
|
chatService;
|
|
64
64
|
/**
|
|
65
65
|
* Sets the Chat messages.
|
|
66
|
-
* Accepts an array of `Message` objects, but can also accept custom data
|
|
66
|
+
* Accepts an array of `Message` objects, but can also accept custom data types.
|
|
67
67
|
* For more information, check [Data Binding](slug:databinding_chat) section in the documentation.
|
|
68
68
|
*/
|
|
69
69
|
messages;
|
|
@@ -108,13 +108,15 @@ export class ChatComponent {
|
|
|
108
108
|
*/
|
|
109
109
|
timestampVisibility = 'focus';
|
|
110
110
|
/**
|
|
111
|
-
* Controls the visibility of
|
|
111
|
+
* Controls the visibility of usernames in messages.
|
|
112
|
+
* When set to `true`, the username displays above each message bubble.
|
|
112
113
|
*
|
|
113
114
|
* @default true
|
|
114
115
|
*/
|
|
115
116
|
showUsername = true;
|
|
116
117
|
/**
|
|
117
|
-
* Controls the visibility
|
|
118
|
+
* Controls the avatar visibility for the messages.
|
|
119
|
+
* When set to `true`, the user avatar displays next to each message bubble.
|
|
118
120
|
*
|
|
119
121
|
* @default true
|
|
120
122
|
*/
|
|
@@ -238,7 +240,7 @@ export class ChatComponent {
|
|
|
238
240
|
sendButtonSettings = SEND_BTN_DEFAULT_SETTINGS;
|
|
239
241
|
/**
|
|
240
242
|
* Sets the names of the model fields from which the Chat reads its data.
|
|
241
|
-
* Lets you map custom data
|
|
243
|
+
* Lets you map custom data types to the expected `Message` format.
|
|
242
244
|
*/
|
|
243
245
|
set modelFields(value) {
|
|
244
246
|
this._modelFields = { ...defaultModelFields, ...value };
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '21.0.0-develop.
|
|
13
|
+
publishDate: 1762888886,
|
|
14
|
+
version: '21.0.0-develop.29',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -216,8 +216,8 @@ const packageMetadata = {
|
|
|
216
216
|
productName: 'Kendo UI for Angular',
|
|
217
217
|
productCode: 'KENDOUIANGULAR',
|
|
218
218
|
productCodes: ['KENDOUIANGULAR'],
|
|
219
|
-
publishDate:
|
|
220
|
-
version: '21.0.0-develop.
|
|
219
|
+
publishDate: 1762888886,
|
|
220
|
+
version: '21.0.0-develop.29',
|
|
221
221
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
222
222
|
};
|
|
223
223
|
|
|
@@ -5809,7 +5809,7 @@ class ChatComponent {
|
|
|
5809
5809
|
chatService;
|
|
5810
5810
|
/**
|
|
5811
5811
|
* Sets the Chat messages.
|
|
5812
|
-
* Accepts an array of `Message` objects, but can also accept custom data
|
|
5812
|
+
* Accepts an array of `Message` objects, but can also accept custom data types.
|
|
5813
5813
|
* For more information, check [Data Binding](slug:databinding_chat) section in the documentation.
|
|
5814
5814
|
*/
|
|
5815
5815
|
messages;
|
|
@@ -5854,13 +5854,15 @@ class ChatComponent {
|
|
|
5854
5854
|
*/
|
|
5855
5855
|
timestampVisibility = 'focus';
|
|
5856
5856
|
/**
|
|
5857
|
-
* Controls the visibility of
|
|
5857
|
+
* Controls the visibility of usernames in messages.
|
|
5858
|
+
* When set to `true`, the username displays above each message bubble.
|
|
5858
5859
|
*
|
|
5859
5860
|
* @default true
|
|
5860
5861
|
*/
|
|
5861
5862
|
showUsername = true;
|
|
5862
5863
|
/**
|
|
5863
|
-
* Controls the visibility
|
|
5864
|
+
* Controls the avatar visibility for the messages.
|
|
5865
|
+
* When set to `true`, the user avatar displays next to each message bubble.
|
|
5864
5866
|
*
|
|
5865
5867
|
* @default true
|
|
5866
5868
|
*/
|
|
@@ -5984,7 +5986,7 @@ class ChatComponent {
|
|
|
5984
5986
|
sendButtonSettings = SEND_BTN_DEFAULT_SETTINGS;
|
|
5985
5987
|
/**
|
|
5986
5988
|
* Sets the names of the model fields from which the Chat reads its data.
|
|
5987
|
-
* Lets you map custom data
|
|
5989
|
+
* Lets you map custom data types to the expected `Message` format.
|
|
5988
5990
|
*/
|
|
5989
5991
|
set modelFields(value) {
|
|
5990
5992
|
this._modelFields = { ...defaultModelFields, ...value };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-conversational-ui",
|
|
3
|
-
"version": "21.0.0-develop.
|
|
3
|
+
"version": "21.0.0-develop.29",
|
|
4
4
|
"description": "Kendo UI for Angular Conversational UI components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"package": {
|
|
48
48
|
"productName": "Kendo UI for Angular",
|
|
49
49
|
"productCode": "KENDOUIANGULAR",
|
|
50
|
-
"publishDate":
|
|
50
|
+
"publishDate": 1762888886,
|
|
51
51
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
52
52
|
}
|
|
53
53
|
},
|
|
@@ -57,22 +57,22 @@
|
|
|
57
57
|
"@angular/core": "18 - 20",
|
|
58
58
|
"@angular/platform-browser": "18 - 20",
|
|
59
59
|
"@progress/kendo-licensing": "^1.7.0",
|
|
60
|
-
"@progress/kendo-angular-buttons": "21.0.0-develop.
|
|
61
|
-
"@progress/kendo-angular-inputs": "21.0.0-develop.
|
|
62
|
-
"@progress/kendo-angular-layout": "21.0.0-develop.
|
|
63
|
-
"@progress/kendo-angular-icons": "21.0.0-develop.
|
|
64
|
-
"@progress/kendo-angular-common": "21.0.0-develop.
|
|
65
|
-
"@progress/kendo-angular-intl": "21.0.0-develop.
|
|
66
|
-
"@progress/kendo-angular-l10n": "21.0.0-develop.
|
|
67
|
-
"@progress/kendo-angular-menu": "21.0.0-develop.
|
|
68
|
-
"@progress/kendo-angular-popup": "21.0.0-develop.
|
|
69
|
-
"@progress/kendo-angular-toolbar": "21.0.0-develop.
|
|
70
|
-
"@progress/kendo-angular-upload": "21.0.0-develop.
|
|
60
|
+
"@progress/kendo-angular-buttons": "21.0.0-develop.29",
|
|
61
|
+
"@progress/kendo-angular-inputs": "21.0.0-develop.29",
|
|
62
|
+
"@progress/kendo-angular-layout": "21.0.0-develop.29",
|
|
63
|
+
"@progress/kendo-angular-icons": "21.0.0-develop.29",
|
|
64
|
+
"@progress/kendo-angular-common": "21.0.0-develop.29",
|
|
65
|
+
"@progress/kendo-angular-intl": "21.0.0-develop.29",
|
|
66
|
+
"@progress/kendo-angular-l10n": "21.0.0-develop.29",
|
|
67
|
+
"@progress/kendo-angular-menu": "21.0.0-develop.29",
|
|
68
|
+
"@progress/kendo-angular-popup": "21.0.0-develop.29",
|
|
69
|
+
"@progress/kendo-angular-toolbar": "21.0.0-develop.29",
|
|
70
|
+
"@progress/kendo-angular-upload": "21.0.0-develop.29",
|
|
71
71
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"tslib": "^2.3.1",
|
|
75
|
-
"@progress/kendo-angular-schematics": "21.0.0-develop.
|
|
75
|
+
"@progress/kendo-angular-schematics": "21.0.0-develop.29"
|
|
76
76
|
},
|
|
77
77
|
"schematics": "./schematics/collection.json",
|
|
78
78
|
"module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",
|