@progress/kendo-angular-conversational-ui 21.0.0-develop.26 → 21.0.0-develop.28

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.
@@ -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 structures.
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 the author's avatar for the message group.
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 of the author's username for the message group.
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 structures to the expected `Message` format.
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 structures.
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 the author's avatar for the message group.
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 of the author's username for the message group.
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 structures to the expected `Message` format.
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: 1762796457,
14
- version: '21.0.0-develop.26',
13
+ publishDate: 1762874929,
14
+ version: '21.0.0-develop.28',
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: 1762796457,
220
- version: '21.0.0-develop.26',
219
+ publishDate: 1762874929,
220
+ version: '21.0.0-develop.28',
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 structures.
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 the author's avatar for the message group.
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 of the author's username for the message group.
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 structures to the expected `Message` format.
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.26",
3
+ "version": "21.0.0-develop.28",
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": 1762796457,
50
+ "publishDate": 1762874929,
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.26",
61
- "@progress/kendo-angular-inputs": "21.0.0-develop.26",
62
- "@progress/kendo-angular-layout": "21.0.0-develop.26",
63
- "@progress/kendo-angular-icons": "21.0.0-develop.26",
64
- "@progress/kendo-angular-common": "21.0.0-develop.26",
65
- "@progress/kendo-angular-intl": "21.0.0-develop.26",
66
- "@progress/kendo-angular-l10n": "21.0.0-develop.26",
67
- "@progress/kendo-angular-menu": "21.0.0-develop.26",
68
- "@progress/kendo-angular-popup": "21.0.0-develop.26",
69
- "@progress/kendo-angular-toolbar": "21.0.0-develop.26",
70
- "@progress/kendo-angular-upload": "21.0.0-develop.26",
60
+ "@progress/kendo-angular-buttons": "21.0.0-develop.28",
61
+ "@progress/kendo-angular-inputs": "21.0.0-develop.28",
62
+ "@progress/kendo-angular-layout": "21.0.0-develop.28",
63
+ "@progress/kendo-angular-icons": "21.0.0-develop.28",
64
+ "@progress/kendo-angular-common": "21.0.0-develop.28",
65
+ "@progress/kendo-angular-intl": "21.0.0-develop.28",
66
+ "@progress/kendo-angular-l10n": "21.0.0-develop.28",
67
+ "@progress/kendo-angular-menu": "21.0.0-develop.28",
68
+ "@progress/kendo-angular-popup": "21.0.0-develop.28",
69
+ "@progress/kendo-angular-toolbar": "21.0.0-develop.28",
70
+ "@progress/kendo-angular-upload": "21.0.0-develop.28",
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.26"
75
+ "@progress/kendo-angular-schematics": "21.0.0-develop.28"
76
76
  },
77
77
  "schematics": "./schematics/collection.json",
78
78
  "module": "fesm2022/progress-kendo-angular-conversational-ui.mjs",