@progress/kendo-angular-conversational-ui 5.0.0-next.202204010856 → 5.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.
@@ -58,20 +58,21 @@ SuggestedActionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
58
58
  provide: ChatItem,
59
59
  useExisting: forwardRef(() => SuggestedActionsComponent)
60
60
  }], viewQueries: [{ propertyName: "items", predicate: ["item"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
61
- <span #item
62
- *ngFor="let action of actions; index as index; first as first; last as last"
63
- class="k-quick-reply"
64
- [class.k-state-selected]="isSelected(index)"
65
- [class.k-state-focused]="isSelected(index)"
66
- [class.k-first]="first"
67
- [class.k-last]="last"
68
- [attr.tabindex]="tabbable && selectedIndex === index ? '0' : '-1'"
69
- (click)="actionClick(action)"
70
- (keydown)="actionKeydown($event, action)"
71
- >
72
- {{ action.title || action.value }}
73
- </span>
74
- `, isInline: true, directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
61
+ <span
62
+ #item
63
+ *ngFor="let action of actions; index as index; first as first; last as last"
64
+ class="k-quick-reply"
65
+ [class.k-state-selected]="isSelected(index)"
66
+ [class.k-state-focused]="isSelected(index)"
67
+ [class.k-first]="first"
68
+ [class.k-last]="last"
69
+ [attr.tabindex]="tabbable && selectedIndex === index ? '0' : '-1'"
70
+ (click)="actionClick(action)"
71
+ (keydown)="actionKeydown($event, action)"
72
+ >
73
+ {{ action.title || action.value }}
74
+ </span>
75
+ `, isInline: true, directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
75
76
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SuggestedActionsComponent, decorators: [{
76
77
  type: Component,
77
78
  args: [{
@@ -81,20 +82,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
81
82
  useExisting: forwardRef(() => SuggestedActionsComponent)
82
83
  }],
83
84
  template: `
84
- <span #item
85
- *ngFor="let action of actions; index as index; first as first; last as last"
86
- class="k-quick-reply"
87
- [class.k-state-selected]="isSelected(index)"
88
- [class.k-state-focused]="isSelected(index)"
89
- [class.k-first]="first"
90
- [class.k-last]="last"
91
- [attr.tabindex]="tabbable && selectedIndex === index ? '0' : '-1'"
92
- (click)="actionClick(action)"
93
- (keydown)="actionKeydown($event, action)"
94
- >
95
- {{ action.title || action.value }}
96
- </span>
97
- `
85
+ <span
86
+ #item
87
+ *ngFor="let action of actions; index as index; first as first; last as last"
88
+ class="k-quick-reply"
89
+ [class.k-state-selected]="isSelected(index)"
90
+ [class.k-state-focused]="isSelected(index)"
91
+ [class.k-first]="first"
92
+ [class.k-last]="last"
93
+ [attr.tabindex]="tabbable && selectedIndex === index ? '0' : '-1'"
94
+ (click)="actionClick(action)"
95
+ (keydown)="actionKeydown($event, action)"
96
+ >
97
+ {{ action.title || action.value }}
98
+ </span>
99
+ `
98
100
  }]
99
101
  }], propDecorators: { actions: [{
100
102
  type: Input
@@ -19,7 +19,7 @@ export class FocusedStateDirective {
19
19
  }
20
20
  }
21
21
  FocusedStateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusedStateDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
22
- FocusedStateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FocusedStateDirective, selector: "[kendoChatFocusedState]", host: { listeners: { "focusin": "onFocus()", "focusout": "onBlur()" }, properties: { "class.k-state-focused": "this.focused" } }, ngImport: i0 });
22
+ FocusedStateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FocusedStateDirective, selector: "[kendoChatFocusedState]", host: { listeners: { "focusin": "onFocus()", "focusout": "onBlur()" }, properties: { "class.k-focus": "this.focused" } }, ngImport: i0 });
23
23
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FocusedStateDirective, decorators: [{
24
24
  type: Directive,
25
25
  args: [{
@@ -27,7 +27,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
27
27
  }]
28
28
  }], propDecorators: { focused: [{
29
29
  type: HostBinding,
30
- args: ['class.k-state-focused']
30
+ args: ['class.k-focus']
31
31
  }], onFocus: [{
32
32
  type: HostListener,
33
33
  args: ['focusin']
@@ -0,0 +1,5 @@
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 {};
package/esm2015/main.js CHANGED
@@ -7,3 +7,4 @@ export { ExecuteActionEvent, SendMessageEvent } from './api';
7
7
  export { ChatModule } from './chat/chat.module';
8
8
  export { HeroCardComponent } from './cards/hero-card.component';
9
9
  export { CustomMessagesComponent } from './chat/l10n/custom-messages.component';
10
+ export { ChatMessageBoxTemplateDirective } from './chat/message-box.directive';
@@ -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: 1648803312,
12
+ publishDate: 1650440956,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
15
15
  };