@progress/kendo-angular-indicators 16.5.0 → 16.6.0-develop.10
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/NOTICE.txt +12 -19
- package/badge/badge-container.component.d.ts +1 -1
- package/badge/badge.component.d.ts +1 -1
- package/badge.module.d.ts +2 -3
- package/directives.d.ts +28 -0
- package/esm2020/badge/badge-container.component.mjs +3 -2
- package/esm2020/badge/badge.component.mjs +3 -2
- package/esm2020/badge.module.mjs +9 -18
- package/esm2020/directives.mjs +41 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/indicators.module.mjs +10 -14
- package/esm2020/loader/loader.component.mjs +6 -4
- package/esm2020/loader.module.mjs +7 -13
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/skeleton/skeleton.component.mjs +3 -2
- package/esm2020/skeleton.module.mjs +7 -7
- package/fesm2015/progress-kendo-angular-indicators.mjs +142 -125
- package/fesm2020/progress-kendo-angular-indicators.mjs +142 -125
- package/index.d.ts +1 -0
- package/indicators.module.d.ts +5 -4
- package/loader/loader.component.d.ts +1 -1
- package/loader.module.d.ts +1 -2
- package/package.json +5 -5
- package/skeleton/skeleton.component.d.ts +1 -1
- package/skeleton.module.d.ts +1 -2
|
@@ -3,12 +3,57 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { Component, HostBinding, Input,
|
|
6
|
+
import { Component, HostBinding, Input, isDevMode, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
7
7
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
8
8
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
|
-
import
|
|
11
|
-
|
|
10
|
+
import { NgFor } from '@angular/common';
|
|
11
|
+
|
|
12
|
+
class BadgeContainerComponent {
|
|
13
|
+
constructor(localizationService) {
|
|
14
|
+
this.localizationService = localizationService;
|
|
15
|
+
this.hostClass = true;
|
|
16
|
+
this.rtl = false;
|
|
17
|
+
this.dynamicRTLSubscription = this.localizationService.changes.subscribe(({ rtl }) => {
|
|
18
|
+
this.rtl = rtl;
|
|
19
|
+
this.direction = this.rtl ? 'rtl' : 'ltr';
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
ngOnDestroy() {
|
|
23
|
+
if (this.dynamicRTLSubscription) {
|
|
24
|
+
this.dynamicRTLSubscription.unsubscribe();
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
BadgeContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeContainerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
29
|
+
BadgeContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BadgeContainerComponent, isStandalone: true, selector: "kendo-badge-container", host: { properties: { "class.k-badge-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
30
|
+
LocalizationService,
|
|
31
|
+
{
|
|
32
|
+
provide: L10N_PREFIX,
|
|
33
|
+
useValue: 'kendo.badge.component'
|
|
34
|
+
}
|
|
35
|
+
], ngImport: i0, template: `<ng-content></ng-content>`, isInline: true });
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeContainerComponent, decorators: [{
|
|
37
|
+
type: Component,
|
|
38
|
+
args: [{
|
|
39
|
+
selector: 'kendo-badge-container',
|
|
40
|
+
providers: [
|
|
41
|
+
LocalizationService,
|
|
42
|
+
{
|
|
43
|
+
provide: L10N_PREFIX,
|
|
44
|
+
useValue: 'kendo.badge.component'
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
template: `<ng-content></ng-content>`,
|
|
48
|
+
standalone: true
|
|
49
|
+
}]
|
|
50
|
+
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
51
|
+
type: HostBinding,
|
|
52
|
+
args: ['class.k-badge-container']
|
|
53
|
+
}], direction: [{
|
|
54
|
+
type: HostBinding,
|
|
55
|
+
args: ['attr.dir']
|
|
56
|
+
}] } });
|
|
12
57
|
|
|
13
58
|
/**
|
|
14
59
|
* @hidden
|
|
@@ -17,8 +62,8 @@ const packageMetadata = {
|
|
|
17
62
|
name: '@progress/kendo-angular-indicators',
|
|
18
63
|
productName: 'Kendo UI for Angular',
|
|
19
64
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
20
|
-
publishDate:
|
|
21
|
-
version: '16.
|
|
65
|
+
publishDate: 1722606886,
|
|
66
|
+
version: '16.6.0-develop.10',
|
|
22
67
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
23
68
|
};
|
|
24
69
|
|
|
@@ -215,7 +260,7 @@ class BadgeComponent {
|
|
|
215
260
|
}
|
|
216
261
|
}
|
|
217
262
|
BadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
218
|
-
BadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BadgeComponent, selector: "kendo-badge", inputs: { align: "align", size: "size", fill: "fill", themeColor: "themeColor", rounded: "rounded", position: "position", cutoutBorder: "cutoutBorder" }, host: { properties: { "class.k-badge": "this.hostClass", "class.k-badge-border-cutout": "this.cutoutBorderClass", "attr.dir": "this.direction" } }, providers: [
|
|
263
|
+
BadgeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BadgeComponent, isStandalone: true, selector: "kendo-badge", inputs: { align: "align", size: "size", fill: "fill", themeColor: "themeColor", rounded: "rounded", position: "position", cutoutBorder: "cutoutBorder" }, host: { properties: { "class.k-badge": "this.hostClass", "class.k-badge-border-cutout": "this.cutoutBorderClass", "attr.dir": "this.direction" } }, providers: [
|
|
219
264
|
LocalizationService,
|
|
220
265
|
{
|
|
221
266
|
provide: L10N_PREFIX,
|
|
@@ -233,7 +278,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
233
278
|
useValue: 'kendo.badge.component'
|
|
234
279
|
}
|
|
235
280
|
],
|
|
236
|
-
template: `<ng-content></ng-content
|
|
281
|
+
template: `<ng-content></ng-content>`,
|
|
282
|
+
standalone: true
|
|
237
283
|
}]
|
|
238
284
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
239
285
|
type: HostBinding,
|
|
@@ -260,78 +306,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
260
306
|
type: Input
|
|
261
307
|
}] } });
|
|
262
308
|
|
|
263
|
-
class BadgeContainerComponent {
|
|
264
|
-
constructor(localizationService) {
|
|
265
|
-
this.localizationService = localizationService;
|
|
266
|
-
this.hostClass = true;
|
|
267
|
-
this.rtl = false;
|
|
268
|
-
this.dynamicRTLSubscription = this.localizationService.changes.subscribe(({ rtl }) => {
|
|
269
|
-
this.rtl = rtl;
|
|
270
|
-
this.direction = this.rtl ? 'rtl' : 'ltr';
|
|
271
|
-
});
|
|
272
|
-
}
|
|
273
|
-
ngOnDestroy() {
|
|
274
|
-
if (this.dynamicRTLSubscription) {
|
|
275
|
-
this.dynamicRTLSubscription.unsubscribe();
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
}
|
|
279
|
-
BadgeContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeContainerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
280
|
-
BadgeContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: BadgeContainerComponent, selector: "kendo-badge-container", host: { properties: { "class.k-badge-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
281
|
-
LocalizationService,
|
|
282
|
-
{
|
|
283
|
-
provide: L10N_PREFIX,
|
|
284
|
-
useValue: 'kendo.badge.component'
|
|
285
|
-
}
|
|
286
|
-
], ngImport: i0, template: `<ng-content></ng-content>`, isInline: true });
|
|
287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeContainerComponent, decorators: [{
|
|
288
|
-
type: Component,
|
|
289
|
-
args: [{
|
|
290
|
-
selector: 'kendo-badge-container',
|
|
291
|
-
providers: [
|
|
292
|
-
LocalizationService,
|
|
293
|
-
{
|
|
294
|
-
provide: L10N_PREFIX,
|
|
295
|
-
useValue: 'kendo.badge.component'
|
|
296
|
-
}
|
|
297
|
-
],
|
|
298
|
-
template: `<ng-content></ng-content>`
|
|
299
|
-
}]
|
|
300
|
-
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
301
|
-
type: HostBinding,
|
|
302
|
-
args: ['class.k-badge-container']
|
|
303
|
-
}], direction: [{
|
|
304
|
-
type: HostBinding,
|
|
305
|
-
args: ['attr.dir']
|
|
306
|
-
}] } });
|
|
307
|
-
|
|
308
|
-
const exportedModules$1 = [
|
|
309
|
-
BadgeComponent,
|
|
310
|
-
BadgeContainerComponent
|
|
311
|
-
];
|
|
312
|
-
const declarations$1 = [
|
|
313
|
-
...exportedModules$1
|
|
314
|
-
];
|
|
315
|
-
/**
|
|
316
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
317
|
-
* definition for the Badge component.
|
|
318
|
-
*/
|
|
319
|
-
class BadgeModule {
|
|
320
|
-
}
|
|
321
|
-
BadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
322
|
-
BadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, declarations: [BadgeComponent,
|
|
323
|
-
BadgeContainerComponent], imports: [CommonModule], exports: [BadgeComponent,
|
|
324
|
-
BadgeContainerComponent] });
|
|
325
|
-
BadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, imports: [CommonModule] });
|
|
326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, decorators: [{
|
|
327
|
-
type: NgModule,
|
|
328
|
-
args: [{
|
|
329
|
-
declarations: [declarations$1],
|
|
330
|
-
exports: [exportedModules$1],
|
|
331
|
-
imports: [CommonModule]
|
|
332
|
-
}]
|
|
333
|
-
}] });
|
|
334
|
-
|
|
335
309
|
const SIZE_CLASSES = {
|
|
336
310
|
'small': 'k-loader-sm',
|
|
337
311
|
'medium': 'k-loader-md',
|
|
@@ -435,11 +409,11 @@ class LoaderComponent {
|
|
|
435
409
|
}
|
|
436
410
|
}
|
|
437
411
|
LoaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
438
|
-
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LoaderComponent, selector: "kendo-loader", inputs: { type: "type", themeColor: "themeColor", size: "size" }, host: { properties: { "class.k-loader": "this.hostClass" } }, ngImport: i0, template: `
|
|
412
|
+
LoaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: LoaderComponent, isStandalone: true, selector: "kendo-loader", inputs: { type: "type", themeColor: "themeColor", size: "size" }, host: { properties: { "class.k-loader": "this.hostClass" } }, ngImport: i0, template: `
|
|
439
413
|
<div class="k-loader-canvas">
|
|
440
414
|
<span *ngFor="let segment of segmentCount" class="k-loader-segment"></span>
|
|
441
415
|
</div>
|
|
442
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
416
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
443
417
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderComponent, decorators: [{
|
|
444
418
|
type: Component,
|
|
445
419
|
args: [{
|
|
@@ -448,7 +422,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
448
422
|
<div class="k-loader-canvas">
|
|
449
423
|
<span *ngFor="let segment of segmentCount" class="k-loader-segment"></span>
|
|
450
424
|
</div>
|
|
451
|
-
|
|
425
|
+
`,
|
|
426
|
+
standalone: true,
|
|
427
|
+
imports: [NgFor]
|
|
452
428
|
}]
|
|
453
429
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
454
430
|
type: HostBinding,
|
|
@@ -461,30 +437,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
461
437
|
type: Input
|
|
462
438
|
}] } });
|
|
463
439
|
|
|
464
|
-
const exportedModules = [
|
|
465
|
-
LoaderComponent
|
|
466
|
-
];
|
|
467
|
-
const declarations = [
|
|
468
|
-
...exportedModules
|
|
469
|
-
];
|
|
470
|
-
/**
|
|
471
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
472
|
-
* definition for the Loader component.
|
|
473
|
-
*/
|
|
474
|
-
class LoaderModule {
|
|
475
|
-
}
|
|
476
|
-
LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
477
|
-
LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, declarations: [LoaderComponent], imports: [CommonModule], exports: [LoaderComponent] });
|
|
478
|
-
LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, imports: [CommonModule] });
|
|
479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, decorators: [{
|
|
480
|
-
type: NgModule,
|
|
481
|
-
args: [{
|
|
482
|
-
declarations: [declarations],
|
|
483
|
-
exports: [exportedModules],
|
|
484
|
-
imports: [CommonModule]
|
|
485
|
-
}]
|
|
486
|
-
}] });
|
|
487
|
-
|
|
488
440
|
/**
|
|
489
441
|
* @hidden
|
|
490
442
|
*/
|
|
@@ -599,13 +551,14 @@ class SkeletonComponent {
|
|
|
599
551
|
}
|
|
600
552
|
}
|
|
601
553
|
SkeletonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
602
|
-
SkeletonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SkeletonComponent, selector: "kendo-skeleton", inputs: { animation: "animation", shape: "shape", width: "width", height: "height" }, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
554
|
+
SkeletonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SkeletonComponent, isStandalone: true, selector: "kendo-skeleton", inputs: { animation: "animation", shape: "shape", width: "width", height: "height" }, ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
603
555
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonComponent, decorators: [{
|
|
604
556
|
type: Component,
|
|
605
557
|
args: [{
|
|
606
558
|
selector: "kendo-skeleton",
|
|
607
559
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
608
|
-
template:
|
|
560
|
+
template: ``,
|
|
561
|
+
standalone: true
|
|
609
562
|
}]
|
|
610
563
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { animation: [{
|
|
611
564
|
type: Input
|
|
@@ -617,6 +570,77 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
617
570
|
type: Input
|
|
618
571
|
}] } });
|
|
619
572
|
|
|
573
|
+
/**
|
|
574
|
+
* Utility array that contains all `Badge` related components and directives
|
|
575
|
+
*/
|
|
576
|
+
const KENDO_BADGE = [
|
|
577
|
+
BadgeComponent
|
|
578
|
+
];
|
|
579
|
+
/**
|
|
580
|
+
* Utility array that contains all `BadgeContainer` related components and directives
|
|
581
|
+
*/
|
|
582
|
+
const KENDO_BADGECONTAINER = [
|
|
583
|
+
BadgeComponent,
|
|
584
|
+
BadgeContainerComponent
|
|
585
|
+
];
|
|
586
|
+
/**
|
|
587
|
+
* Utility array that contains all `Loader` related components and directives
|
|
588
|
+
*/
|
|
589
|
+
const KENDO_LOADER = [
|
|
590
|
+
LoaderComponent
|
|
591
|
+
];
|
|
592
|
+
/**
|
|
593
|
+
* Utility array that contains all `Skeleton` related components and directives
|
|
594
|
+
*/
|
|
595
|
+
const KENDO_SKELETON = [
|
|
596
|
+
SkeletonComponent
|
|
597
|
+
];
|
|
598
|
+
/**
|
|
599
|
+
* Utility array that contains all `@progress/kendo-angular-indicators` related components and directives
|
|
600
|
+
*/
|
|
601
|
+
const KENDO_INDICATORS = [
|
|
602
|
+
...KENDO_BADGECONTAINER,
|
|
603
|
+
...KENDO_LOADER,
|
|
604
|
+
...KENDO_SKELETON
|
|
605
|
+
];
|
|
606
|
+
|
|
607
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
608
|
+
/**
|
|
609
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
610
|
+
* definition for the Badge and BadgeContainer components.
|
|
611
|
+
*/
|
|
612
|
+
class BadgeModule {
|
|
613
|
+
}
|
|
614
|
+
BadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
615
|
+
BadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, imports: [BadgeComponent, BadgeContainerComponent], exports: [BadgeComponent, BadgeContainerComponent] });
|
|
616
|
+
BadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, imports: [KENDO_BADGECONTAINER] });
|
|
617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, decorators: [{
|
|
618
|
+
type: NgModule,
|
|
619
|
+
args: [{
|
|
620
|
+
exports: [...KENDO_BADGECONTAINER],
|
|
621
|
+
imports: [...KENDO_BADGECONTAINER]
|
|
622
|
+
}]
|
|
623
|
+
}] });
|
|
624
|
+
|
|
625
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
626
|
+
/**
|
|
627
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
628
|
+
* definition for the Loader component.
|
|
629
|
+
*/
|
|
630
|
+
class LoaderModule {
|
|
631
|
+
}
|
|
632
|
+
LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
633
|
+
LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, imports: [LoaderComponent], exports: [LoaderComponent] });
|
|
634
|
+
LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, imports: [KENDO_LOADER] });
|
|
635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, decorators: [{
|
|
636
|
+
type: NgModule,
|
|
637
|
+
args: [{
|
|
638
|
+
exports: [...KENDO_LOADER],
|
|
639
|
+
imports: [...KENDO_LOADER]
|
|
640
|
+
}]
|
|
641
|
+
}] });
|
|
642
|
+
|
|
643
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
620
644
|
/**
|
|
621
645
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
622
646
|
* definition for the Skeleton component.
|
|
@@ -624,17 +648,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
624
648
|
class SkeletonModule {
|
|
625
649
|
}
|
|
626
650
|
SkeletonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
627
|
-
SkeletonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule,
|
|
628
|
-
SkeletonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, imports: [
|
|
651
|
+
SkeletonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, imports: [SkeletonComponent], exports: [SkeletonComponent] });
|
|
652
|
+
SkeletonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, imports: [KENDO_SKELETON] });
|
|
629
653
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, decorators: [{
|
|
630
654
|
type: NgModule,
|
|
631
655
|
args: [{
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
imports: [CommonModule]
|
|
656
|
+
exports: [...KENDO_SKELETON],
|
|
657
|
+
imports: [...KENDO_SKELETON]
|
|
635
658
|
}]
|
|
636
659
|
}] });
|
|
637
660
|
|
|
661
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
638
662
|
/**
|
|
639
663
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
640
664
|
* definition for the Indicators components.
|
|
@@ -669,20 +693,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
669
693
|
class IndicatorsModule {
|
|
670
694
|
}
|
|
671
695
|
IndicatorsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
672
|
-
IndicatorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, exports: [
|
|
673
|
-
|
|
674
|
-
SkeletonModule] });
|
|
675
|
-
IndicatorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, imports: [BadgeModule,
|
|
676
|
-
LoaderModule,
|
|
677
|
-
SkeletonModule] });
|
|
696
|
+
IndicatorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, imports: [BadgeComponent, BadgeContainerComponent, LoaderComponent, SkeletonComponent], exports: [BadgeComponent, BadgeContainerComponent, LoaderComponent, SkeletonComponent] });
|
|
697
|
+
IndicatorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, imports: [KENDO_INDICATORS] });
|
|
678
698
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, decorators: [{
|
|
679
699
|
type: NgModule,
|
|
680
700
|
args: [{
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
LoaderModule,
|
|
684
|
-
SkeletonModule
|
|
685
|
-
]
|
|
701
|
+
imports: [...KENDO_INDICATORS],
|
|
702
|
+
exports: [...KENDO_INDICATORS]
|
|
686
703
|
}]
|
|
687
704
|
}] });
|
|
688
705
|
|
|
@@ -690,5 +707,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
690
707
|
* Generated bundle index. Do not edit.
|
|
691
708
|
*/
|
|
692
709
|
|
|
693
|
-
export { BadgeComponent, BadgeContainerComponent, BadgeModule, IndicatorsModule, LoaderComponent, LoaderModule, SkeletonComponent, SkeletonModule };
|
|
710
|
+
export { BadgeComponent, BadgeContainerComponent, BadgeModule, IndicatorsModule, KENDO_BADGE, KENDO_BADGECONTAINER, KENDO_INDICATORS, KENDO_LOADER, KENDO_SKELETON, LoaderComponent, LoaderModule, SkeletonComponent, SkeletonModule };
|
|
694
711
|
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export * from './directives';
|
|
5
6
|
export { BadgeComponent } from './badge/badge.component';
|
|
6
7
|
export { BadgeModule } from './badge.module';
|
|
7
8
|
export { BadgeContainerComponent } from './badge/badge-container.component';
|
package/indicators.module.d.ts
CHANGED
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./badge.
|
|
7
|
-
import * as i2 from "./
|
|
8
|
-
import * as i3 from "./
|
|
6
|
+
import * as i1 from "./badge/badge.component";
|
|
7
|
+
import * as i2 from "./badge/badge-container.component";
|
|
8
|
+
import * as i3 from "./loader/loader.component";
|
|
9
|
+
import * as i4 from "./skeleton/skeleton.component";
|
|
9
10
|
/**
|
|
10
11
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
11
12
|
* definition for the Indicators components.
|
|
@@ -39,6 +40,6 @@ import * as i3 from "./skeleton.module";
|
|
|
39
40
|
*/
|
|
40
41
|
export declare class IndicatorsModule {
|
|
41
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<IndicatorsModule, never>;
|
|
42
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IndicatorsModule, never,
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IndicatorsModule, never, [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent, typeof i3.LoaderComponent, typeof i4.SkeletonComponent], [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent, typeof i3.LoaderComponent, typeof i4.SkeletonComponent]>;
|
|
43
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<IndicatorsModule>;
|
|
44
45
|
}
|
|
@@ -66,5 +66,5 @@ export declare class LoaderComponent implements AfterViewInit {
|
|
|
66
66
|
get segmentCount(): Array<any>;
|
|
67
67
|
private setLoaderClasses;
|
|
68
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "kendo-loader", never, { "type": "type"; "themeColor": "themeColor"; "size": "size"; }, {}, never, never,
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "kendo-loader", never, { "type": "type"; "themeColor": "themeColor"; "size": "size"; }, {}, never, never, true, never>;
|
|
70
70
|
}
|
package/loader.module.d.ts
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./loader/loader.component";
|
|
7
|
-
import * as i2 from "@angular/common";
|
|
8
7
|
/**
|
|
9
8
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
10
9
|
* definition for the Loader component.
|
|
11
10
|
*/
|
|
12
11
|
export declare class LoaderModule {
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LoaderModule, [typeof i1.LoaderComponent], [typeof
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LoaderModule, never, [typeof i1.LoaderComponent], [typeof i1.LoaderComponent]>;
|
|
15
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<LoaderModule>;
|
|
16
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-indicators",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.10",
|
|
4
4
|
"description": "Kendo UI Indicators for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"@angular/core": "15 - 18",
|
|
22
22
|
"@angular/platform-browser": "15 - 18",
|
|
23
23
|
"@progress/kendo-licensing": "^1.0.2",
|
|
24
|
-
"@progress/kendo-angular-common": "16.
|
|
25
|
-
"@progress/kendo-angular-intl": "16.
|
|
26
|
-
"@progress/kendo-angular-l10n": "16.
|
|
24
|
+
"@progress/kendo-angular-common": "16.6.0-develop.10",
|
|
25
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.10",
|
|
26
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.10",
|
|
27
27
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"tslib": "^2.3.1",
|
|
31
|
-
"@progress/kendo-angular-schematics": "16.
|
|
31
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.10"
|
|
32
32
|
},
|
|
33
33
|
"schematics": "./schematics/collection.json",
|
|
34
34
|
"module": "fesm2015/progress-kendo-angular-indicators.mjs",
|
|
@@ -52,5 +52,5 @@ export declare class SkeletonComponent implements AfterViewInit {
|
|
|
52
52
|
constructor(renderer: Renderer2, hostElement: ElementRef);
|
|
53
53
|
ngAfterViewInit(): void;
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "kendo-skeleton", never, { "animation": "animation"; "shape": "shape"; "width": "width"; "height": "height"; }, {}, never, never,
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "kendo-skeleton", never, { "animation": "animation"; "shape": "shape"; "width": "width"; "height": "height"; }, {}, never, never, true, never>;
|
|
56
56
|
}
|
package/skeleton.module.d.ts
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./skeleton/skeleton.component";
|
|
7
|
-
import * as i2 from "@angular/common";
|
|
8
7
|
/**
|
|
9
8
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
10
9
|
* definition for the Skeleton component.
|
|
11
10
|
*/
|
|
12
11
|
export declare class SkeletonModule {
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkeletonModule, [typeof i1.SkeletonComponent], [typeof
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkeletonModule, never, [typeof i1.SkeletonComponent], [typeof i1.SkeletonComponent]>;
|
|
15
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkeletonModule>;
|
|
16
15
|
}
|