@progress/kendo-angular-conversational-ui 21.1.1-develop.2 → 21.2.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/chat/message-list.component.d.ts +2 -2
- package/esm2022/ai-prompt/aiprompt.component.mjs +155 -139
- package/esm2022/ai-prompt/common/output-card.component.mjs +81 -83
- package/esm2022/ai-prompt/views/output-view.component.mjs +27 -29
- package/esm2022/ai-prompt/views/prompt-view.component.mjs +150 -135
- package/esm2022/chat/attachment.component.mjs +53 -37
- package/esm2022/chat/cards/hero-card.component.mjs +48 -35
- package/esm2022/chat/chat-file.component.mjs +32 -29
- package/esm2022/chat/chat.component.mjs +251 -241
- package/esm2022/chat/message-attachments.component.mjs +58 -53
- package/esm2022/chat/message-box.component.mjs +203 -183
- package/esm2022/chat/message-list.component.mjs +247 -207
- package/esm2022/chat/message-reference-content.component.mjs +30 -19
- package/esm2022/chat/message.component.mjs +307 -279
- package/esm2022/chat/suggested-actions.component.mjs +139 -131
- package/esm2022/inline-ai-prompt/inlineaiprompt-content.component.mjs +205 -179
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-conversational-ui.mjs +1979 -1767
- package/package.json +14 -14
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, ElementRef, EventEmitter, HostBinding, HostListener, Input, NgZone, Output, Renderer2, ViewChild, ViewContainerRef, Optional, SkipSelf, inject, TemplateRef } from '@angular/core';
|
|
6
|
-
import {
|
|
6
|
+
import { NgClass, NgTemplateOutlet } from '@angular/common';
|
|
7
7
|
import { Subscription } from 'rxjs';
|
|
8
8
|
import { menuIcon, paperPlaneIcon, stopSmIcon } from '@progress/kendo-svg-icons';
|
|
9
9
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
@@ -246,7 +246,7 @@ export class InlineAIPromptContentComponent {
|
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
248
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: InlineAIPromptContentComponent, deps: [{ token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i1.LocalizationService, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
249
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
249
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: InlineAIPromptContentComponent, isStandalone: true, selector: "kendo-inlineaiprompt-content", inputs: { popupElement: "popupElement", promptValue: "promptValue", placeholder: "placeholder", promptOutput: "promptOutput", enableSpeechToText: "enableSpeechToText", streaming: "streaming", width: "width", maxHeight: "maxHeight", appendTo: "appendTo", outputActions: "outputActions", promptCommands: "promptCommands", outputTemplate: "outputTemplate" }, outputs: { promptRequest: "promptRequest", commandExecute: "commandExecute", outputActionClick: "outputActionClick", promptRequestCancel: "promptRequestCancel", close: "close", promptValueChange: "promptValueChange" }, host: { listeners: { "keydown": "onEscapeKey($event)" }, properties: { "class.k-prompt": "this.className", "attr.dir": "this.dirAttr", "style.max-height": "this.maxHeightStyle", "style.width": "this.widthStyle" } }, providers: [
|
|
250
250
|
LocalizationService,
|
|
251
251
|
{
|
|
252
252
|
provide: L10N_PREFIX,
|
|
@@ -254,99 +254,112 @@ export class InlineAIPromptContentComponent {
|
|
|
254
254
|
},
|
|
255
255
|
], viewQueries: [{ propertyName: "textArea", first: true, predicate: TextAreaComponent, descendants: true }, { propertyName: "contextMenu", first: true, predicate: ["kendoContextMenu"], descendants: true }], exportAs: ["kendoInlineAIPromptContent"], ngImport: i0, template: `
|
|
256
256
|
<ng-container kendoInlineAIPromptLocalizedMessages
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
257
|
+
i18n-commandsButtonTitle="kendo.inlineaiprompt.commandsButtonTitle|Sets the Commands button title."
|
|
258
|
+
commandsButtonTitle="Command Menu"
|
|
259
|
+
i18n-generateButtonTitle="kendo.inlineaiprompt.generateButtonTitle|Sets the Generate button title."
|
|
260
|
+
generateButtonTitle="Generate"
|
|
261
|
+
i18n-speechToTextButtonTitle="kendo.inlineaiprompt.speechToTextButtonTitle|Sets the Speech to Text button title."
|
|
262
|
+
speechToTextButtonTitle="Speech to Text"
|
|
263
|
+
>
|
|
264
264
|
</ng-container>
|
|
265
265
|
<div class="k-prompt-content">
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
266
|
+
<div class="k-prompt-view">
|
|
267
|
+
@if (promptOutput) {
|
|
268
|
+
<kendo-card width="100%">
|
|
269
|
+
<kendo-card-body>
|
|
270
|
+
@if (outputTemplate) {
|
|
271
|
+
<ng-container
|
|
272
|
+
[ngTemplateOutlet]="outputTemplate"
|
|
273
|
+
[ngTemplateOutletContext]="{ $implicit: promptOutput }"
|
|
274
|
+
>
|
|
275
|
+
</ng-container>
|
|
276
|
+
}
|
|
277
|
+
@if (!outputTemplate) {
|
|
278
|
+
{{promptOutput.output}}
|
|
279
|
+
}
|
|
280
|
+
</kendo-card-body>
|
|
281
|
+
@if (outputActions && outputActions.length > 0) {
|
|
282
|
+
<kendo-card-actions>
|
|
283
|
+
@for (action of outputActions; track action) {
|
|
284
|
+
@if (action.type === 'button') {
|
|
285
|
+
<button kendoButton
|
|
286
|
+
[attr.title]="action?.title"
|
|
287
|
+
[fillMode]="action?.fillMode"
|
|
288
|
+
[themeColor]="action?.themeColor"
|
|
289
|
+
[rounded]="action?.rounded"
|
|
290
|
+
[icon]="action?.icon"
|
|
291
|
+
[svgIcon]="action?.svgIcon"
|
|
292
|
+
(click)="onActionClick(action)"
|
|
293
|
+
>{{action?.text}}</button>
|
|
294
|
+
}
|
|
295
|
+
@if (action.type === 'spacer') {
|
|
296
|
+
<div class="k-spacer"></div>
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
</kendo-card-actions>
|
|
300
|
+
}
|
|
301
|
+
</kendo-card>
|
|
302
|
+
}
|
|
303
|
+
<kendo-textarea
|
|
304
|
+
[value]="promptValue ? promptValue : null"
|
|
305
|
+
(valueChange)="handlePromptValueChange($event)"
|
|
306
|
+
[rows]="initialRows"
|
|
307
|
+
resizable="auto"
|
|
308
|
+
flow="horizontal"
|
|
309
|
+
[placeholder]="placeholder"
|
|
310
|
+
[showPrefixSeparator]="true"
|
|
311
|
+
[selectOnFocus]="true"
|
|
312
|
+
[maxResizableRows]="maxRows"
|
|
313
|
+
(keydown)="handleTextAreaKeydown($event)"
|
|
314
|
+
>
|
|
315
|
+
<kendo-textarea-prefix>
|
|
316
|
+
@if (promptCommands && promptCommands.length > 0) {
|
|
317
|
+
<button
|
|
318
|
+
kendoButton
|
|
319
|
+
#commandMenuButton
|
|
320
|
+
[attr.title]="messageFor('commandsButtonTitle')"
|
|
321
|
+
fillMode="flat"
|
|
322
|
+
icon="menu"
|
|
323
|
+
[svgIcon]="commandMenuIcon"
|
|
324
|
+
(click)="onCommandButtonClick($event)"
|
|
325
|
+
></button>
|
|
326
|
+
}
|
|
327
|
+
@if (enableSpeechToText) {
|
|
328
|
+
<button
|
|
329
|
+
kendoSpeechToTextButton
|
|
330
|
+
[attr.title]="messageFor('speechToTextButtonTitle')"
|
|
331
|
+
fillMode="flat"
|
|
332
|
+
(result)="handleSpeechResult($event)"
|
|
333
|
+
(start)="isListening = true"
|
|
334
|
+
(end)="isListening = false"
|
|
335
|
+
></button>
|
|
336
|
+
}
|
|
337
|
+
</kendo-textarea-prefix>
|
|
338
|
+
<kendo-textarea-suffix>
|
|
339
|
+
<button
|
|
340
|
+
kendoButton
|
|
341
|
+
[attr.title]="messageFor('generateButtonTitle')"
|
|
342
|
+
fillMode="flat"
|
|
343
|
+
class="k-prompt-send"
|
|
344
|
+
[ngClass]="{ 'k-generating': streaming, 'k-active': streaming }"
|
|
345
|
+
(click)="handlePromptRequest()"
|
|
346
|
+
[disabled]="!streaming && (!promptValue?.trim() || isListening)"
|
|
347
|
+
[svgIcon]="streaming ? stopGenerationIcon : sendIcon"
|
|
348
|
+
[icon]="streaming ? 'stop-sm' : 'paper-plane'"
|
|
349
|
+
></button>
|
|
350
|
+
</kendo-textarea-suffix>
|
|
351
|
+
</kendo-textarea>
|
|
352
|
+
</div>
|
|
340
353
|
</div>
|
|
341
354
|
<kendo-contextmenu
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
355
|
+
#kendoContextMenu
|
|
356
|
+
[alignToAnchor]="true"
|
|
357
|
+
[items]="commandMenuItems"
|
|
358
|
+
[appendTo]="appendTo"
|
|
359
|
+
class="k-hidden"
|
|
360
|
+
(select)="onCommandClick($event)">
|
|
348
361
|
</kendo-contextmenu>
|
|
349
|
-
|
|
362
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoInlineAIPromptLocalizedMessages]" }, { kind: "component", type: i2.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i2.SpeechToTextButtonComponent, selector: "button[kendoSpeechToTextButton]", inputs: ["disabled", "size", "rounded", "fillMode", "themeColor", "integrationMode", "lang", "continuous", "interimResults", "maxAlternatives"], outputs: ["start", "end", "result", "error", "click"], exportAs: ["kendoSpeechToTextButton"] }, { kind: "component", type: i3.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "inputAttributes", "adornmentsOrientation", "rows", "cols", "maxlength", "maxResizableRows", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode", "showPrefixSeparator", "showSuffixSeparator"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "component", type: i3.TextAreaPrefixComponent, selector: "kendo-textarea-prefix", inputs: ["flow", "orientation"], exportAs: ["kendoTextAreaPrefix"] }, { kind: "component", type: i3.TextAreaSuffixComponent, selector: "kendo-textarea-suffix", inputs: ["flow", "orientation"], exportAs: ["kendoTextAreaSuffix"] }, { kind: "component", type: i4.ContextMenuComponent, selector: "kendo-contextmenu", inputs: ["showOn", "target", "filter", "alignToAnchor", "vertical", "popupAnimate", "popupAlign", "anchorAlign", "collision", "appendTo", "ariaLabel"], outputs: ["popupOpen", "popupClose", "select", "open", "close"], exportAs: ["kendoContextMenu"] }, { kind: "component", type: i5.CardComponent, selector: "kendo-card", inputs: ["orientation", "width"] }, { kind: "component", type: i5.CardActionsComponent, selector: "kendo-card-actions", inputs: ["orientation", "layout", "actions"], outputs: ["action"] }, { kind: "component", type: i5.CardBodyComponent, selector: "kendo-card-body" }] });
|
|
350
363
|
}
|
|
351
364
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: InlineAIPromptContentComponent, decorators: [{
|
|
352
365
|
type: Component,
|
|
@@ -362,101 +375,114 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
362
375
|
],
|
|
363
376
|
template: `
|
|
364
377
|
<ng-container kendoInlineAIPromptLocalizedMessages
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
378
|
+
i18n-commandsButtonTitle="kendo.inlineaiprompt.commandsButtonTitle|Sets the Commands button title."
|
|
379
|
+
commandsButtonTitle="Command Menu"
|
|
380
|
+
i18n-generateButtonTitle="kendo.inlineaiprompt.generateButtonTitle|Sets the Generate button title."
|
|
381
|
+
generateButtonTitle="Generate"
|
|
382
|
+
i18n-speechToTextButtonTitle="kendo.inlineaiprompt.speechToTextButtonTitle|Sets the Speech to Text button title."
|
|
383
|
+
speechToTextButtonTitle="Speech to Text"
|
|
384
|
+
>
|
|
372
385
|
</ng-container>
|
|
373
386
|
<div class="k-prompt-content">
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
387
|
+
<div class="k-prompt-view">
|
|
388
|
+
@if (promptOutput) {
|
|
389
|
+
<kendo-card width="100%">
|
|
390
|
+
<kendo-card-body>
|
|
391
|
+
@if (outputTemplate) {
|
|
392
|
+
<ng-container
|
|
393
|
+
[ngTemplateOutlet]="outputTemplate"
|
|
394
|
+
[ngTemplateOutletContext]="{ $implicit: promptOutput }"
|
|
395
|
+
>
|
|
396
|
+
</ng-container>
|
|
397
|
+
}
|
|
398
|
+
@if (!outputTemplate) {
|
|
399
|
+
{{promptOutput.output}}
|
|
400
|
+
}
|
|
401
|
+
</kendo-card-body>
|
|
402
|
+
@if (outputActions && outputActions.length > 0) {
|
|
403
|
+
<kendo-card-actions>
|
|
404
|
+
@for (action of outputActions; track action) {
|
|
405
|
+
@if (action.type === 'button') {
|
|
406
|
+
<button kendoButton
|
|
407
|
+
[attr.title]="action?.title"
|
|
408
|
+
[fillMode]="action?.fillMode"
|
|
409
|
+
[themeColor]="action?.themeColor"
|
|
410
|
+
[rounded]="action?.rounded"
|
|
411
|
+
[icon]="action?.icon"
|
|
412
|
+
[svgIcon]="action?.svgIcon"
|
|
413
|
+
(click)="onActionClick(action)"
|
|
414
|
+
>{{action?.text}}</button>
|
|
415
|
+
}
|
|
416
|
+
@if (action.type === 'spacer') {
|
|
417
|
+
<div class="k-spacer"></div>
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
</kendo-card-actions>
|
|
421
|
+
}
|
|
422
|
+
</kendo-card>
|
|
423
|
+
}
|
|
424
|
+
<kendo-textarea
|
|
425
|
+
[value]="promptValue ? promptValue : null"
|
|
426
|
+
(valueChange)="handlePromptValueChange($event)"
|
|
427
|
+
[rows]="initialRows"
|
|
428
|
+
resizable="auto"
|
|
429
|
+
flow="horizontal"
|
|
430
|
+
[placeholder]="placeholder"
|
|
431
|
+
[showPrefixSeparator]="true"
|
|
432
|
+
[selectOnFocus]="true"
|
|
433
|
+
[maxResizableRows]="maxRows"
|
|
434
|
+
(keydown)="handleTextAreaKeydown($event)"
|
|
435
|
+
>
|
|
436
|
+
<kendo-textarea-prefix>
|
|
437
|
+
@if (promptCommands && promptCommands.length > 0) {
|
|
438
|
+
<button
|
|
439
|
+
kendoButton
|
|
440
|
+
#commandMenuButton
|
|
441
|
+
[attr.title]="messageFor('commandsButtonTitle')"
|
|
442
|
+
fillMode="flat"
|
|
443
|
+
icon="menu"
|
|
444
|
+
[svgIcon]="commandMenuIcon"
|
|
445
|
+
(click)="onCommandButtonClick($event)"
|
|
446
|
+
></button>
|
|
447
|
+
}
|
|
448
|
+
@if (enableSpeechToText) {
|
|
449
|
+
<button
|
|
450
|
+
kendoSpeechToTextButton
|
|
451
|
+
[attr.title]="messageFor('speechToTextButtonTitle')"
|
|
452
|
+
fillMode="flat"
|
|
453
|
+
(result)="handleSpeechResult($event)"
|
|
454
|
+
(start)="isListening = true"
|
|
455
|
+
(end)="isListening = false"
|
|
456
|
+
></button>
|
|
457
|
+
}
|
|
458
|
+
</kendo-textarea-prefix>
|
|
459
|
+
<kendo-textarea-suffix>
|
|
460
|
+
<button
|
|
461
|
+
kendoButton
|
|
462
|
+
[attr.title]="messageFor('generateButtonTitle')"
|
|
463
|
+
fillMode="flat"
|
|
464
|
+
class="k-prompt-send"
|
|
465
|
+
[ngClass]="{ 'k-generating': streaming, 'k-active': streaming }"
|
|
466
|
+
(click)="handlePromptRequest()"
|
|
467
|
+
[disabled]="!streaming && (!promptValue?.trim() || isListening)"
|
|
468
|
+
[svgIcon]="streaming ? stopGenerationIcon : sendIcon"
|
|
469
|
+
[icon]="streaming ? 'stop-sm' : 'paper-plane'"
|
|
470
|
+
></button>
|
|
471
|
+
</kendo-textarea-suffix>
|
|
472
|
+
</kendo-textarea>
|
|
473
|
+
</div>
|
|
448
474
|
</div>
|
|
449
475
|
<kendo-contextmenu
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
476
|
+
#kendoContextMenu
|
|
477
|
+
[alignToAnchor]="true"
|
|
478
|
+
[items]="commandMenuItems"
|
|
479
|
+
[appendTo]="appendTo"
|
|
480
|
+
class="k-hidden"
|
|
481
|
+
(select)="onCommandClick($event)">
|
|
456
482
|
</kendo-contextmenu>
|
|
457
|
-
|
|
483
|
+
`,
|
|
458
484
|
standalone: true,
|
|
459
|
-
imports: [NgClass,
|
|
485
|
+
imports: [NgClass, NgTemplateOutlet, LocalizedMessagesDirective, KENDO_BUTTONS, KENDO_TEXTAREA, KENDO_CONTEXTMENU, KENDO_CARD],
|
|
460
486
|
}]
|
|
461
487
|
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i1.LocalizationService, decorators: [{
|
|
462
488
|
type: Optional
|
|
@@ -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.
|
|
13
|
+
publishDate: 1764002262,
|
|
14
|
+
version: '21.2.0-develop.2',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|