@progress/kendo-angular-indicators 16.5.0 → 16.6.0-develop.1
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/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
|
@@ -17,5 +17,5 @@ export declare class BadgeContainerComponent implements OnDestroy {
|
|
|
17
17
|
constructor(localizationService: LocalizationService);
|
|
18
18
|
ngOnDestroy(): void;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeContainerComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeContainerComponent, "kendo-badge-container", never, {}, {}, never, ["*"],
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeContainerComponent, "kendo-badge-container", never, {}, {}, never, ["*"], true, never>;
|
|
21
21
|
}
|
|
@@ -133,5 +133,5 @@ export declare class BadgeComponent implements AfterViewInit, OnChanges, OnDestr
|
|
|
133
133
|
private fillClass;
|
|
134
134
|
private setBadgeClasses;
|
|
135
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
136
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "kendo-badge", never, { "align": "align"; "size": "size"; "fill": "fill"; "themeColor": "themeColor"; "rounded": "rounded"; "position": "position"; "cutoutBorder": "cutoutBorder"; }, {}, never, ["*"],
|
|
136
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "kendo-badge", never, { "align": "align"; "size": "size"; "fill": "fill"; "themeColor": "themeColor"; "rounded": "rounded"; "position": "position"; "cutoutBorder": "cutoutBorder"; }, {}, never, ["*"], true, never>;
|
|
137
137
|
}
|
package/badge.module.d.ts
CHANGED
|
@@ -5,13 +5,12 @@
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./badge/badge.component";
|
|
7
7
|
import * as i2 from "./badge/badge-container.component";
|
|
8
|
-
import * as i3 from "@angular/common";
|
|
9
8
|
/**
|
|
10
9
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
11
|
-
* definition for the Badge
|
|
10
|
+
* definition for the Badge and BadgeContainer components.
|
|
12
11
|
*/
|
|
13
12
|
export declare class BadgeModule {
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BadgeModule, [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent], [typeof
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BadgeModule, never, [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent], [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent]>;
|
|
16
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<BadgeModule>;
|
|
17
16
|
}
|
package/directives.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { BadgeContainerComponent } from "./badge/badge-container.component";
|
|
6
|
+
import { BadgeComponent } from "./badge/badge.component";
|
|
7
|
+
import { LoaderComponent } from "./loader/loader.component";
|
|
8
|
+
import { SkeletonComponent } from "./skeleton/skeleton.component";
|
|
9
|
+
/**
|
|
10
|
+
* Utility array that contains all `Badge` related components and directives
|
|
11
|
+
*/
|
|
12
|
+
export declare const KENDO_BADGE: readonly [typeof BadgeComponent];
|
|
13
|
+
/**
|
|
14
|
+
* Utility array that contains all `BadgeContainer` related components and directives
|
|
15
|
+
*/
|
|
16
|
+
export declare const KENDO_BADGECONTAINER: readonly [typeof BadgeComponent, typeof BadgeContainerComponent];
|
|
17
|
+
/**
|
|
18
|
+
* Utility array that contains all `Loader` related components and directives
|
|
19
|
+
*/
|
|
20
|
+
export declare const KENDO_LOADER: readonly [typeof LoaderComponent];
|
|
21
|
+
/**
|
|
22
|
+
* Utility array that contains all `Skeleton` related components and directives
|
|
23
|
+
*/
|
|
24
|
+
export declare const KENDO_SKELETON: readonly [typeof SkeletonComponent];
|
|
25
|
+
/**
|
|
26
|
+
* Utility array that contains all `@progress/kendo-angular-indicators` related components and directives
|
|
27
|
+
*/
|
|
28
|
+
export declare const KENDO_INDICATORS: readonly [typeof BadgeComponent, typeof BadgeContainerComponent, typeof LoaderComponent, typeof SkeletonComponent];
|
|
@@ -23,7 +23,7 @@ export class BadgeContainerComponent {
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
BadgeContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeContainerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
26
|
-
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: [
|
|
26
|
+
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: [
|
|
27
27
|
LocalizationService,
|
|
28
28
|
{
|
|
29
29
|
provide: L10N_PREFIX,
|
|
@@ -41,7 +41,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
41
41
|
useValue: 'kendo.badge.component'
|
|
42
42
|
}
|
|
43
43
|
],
|
|
44
|
-
template: `<ng-content></ng-content
|
|
44
|
+
template: `<ng-content></ng-content>`,
|
|
45
|
+
standalone: true
|
|
45
46
|
}]
|
|
46
47
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
47
48
|
type: HostBinding,
|
|
@@ -201,7 +201,7 @@ export class BadgeComponent {
|
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
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 });
|
|
204
|
-
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: [
|
|
204
|
+
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: [
|
|
205
205
|
LocalizationService,
|
|
206
206
|
{
|
|
207
207
|
provide: L10N_PREFIX,
|
|
@@ -219,7 +219,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
219
219
|
useValue: 'kendo.badge.component'
|
|
220
220
|
}
|
|
221
221
|
],
|
|
222
|
-
template: `<ng-content></ng-content
|
|
222
|
+
template: `<ng-content></ng-content>`,
|
|
223
|
+
standalone: true
|
|
223
224
|
}]
|
|
224
225
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.LocalizationService }]; }, propDecorators: { hostClass: [{
|
|
225
226
|
type: HostBinding,
|
package/esm2020/badge.module.mjs
CHANGED
|
@@ -3,33 +3,24 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
|
-
import {
|
|
7
|
-
import { BadgeContainerComponent } from './badge/badge-container.component';
|
|
8
|
-
import { BadgeComponent } from './badge/badge.component';
|
|
6
|
+
import { KENDO_BADGECONTAINER } from './directives';
|
|
9
7
|
import * as i0 from "@angular/core";
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
];
|
|
14
|
-
const declarations = [
|
|
15
|
-
...exportedModules
|
|
16
|
-
];
|
|
8
|
+
import * as i1 from "./badge/badge.component";
|
|
9
|
+
import * as i2 from "./badge/badge-container.component";
|
|
10
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
17
11
|
/**
|
|
18
12
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
19
|
-
* definition for the Badge
|
|
13
|
+
* definition for the Badge and BadgeContainer components.
|
|
20
14
|
*/
|
|
21
15
|
export class BadgeModule {
|
|
22
16
|
}
|
|
23
17
|
BadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
24
|
-
BadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule,
|
|
25
|
-
|
|
26
|
-
BadgeContainerComponent] });
|
|
27
|
-
BadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, imports: [CommonModule] });
|
|
18
|
+
BadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, imports: [i1.BadgeComponent, i2.BadgeContainerComponent], exports: [i1.BadgeComponent, i2.BadgeContainerComponent] });
|
|
19
|
+
BadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, imports: [KENDO_BADGECONTAINER] });
|
|
28
20
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: BadgeModule, decorators: [{
|
|
29
21
|
type: NgModule,
|
|
30
22
|
args: [{
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
imports: [CommonModule]
|
|
23
|
+
exports: [...KENDO_BADGECONTAINER],
|
|
24
|
+
imports: [...KENDO_BADGECONTAINER]
|
|
34
25
|
}]
|
|
35
26
|
}] });
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { BadgeContainerComponent } from "./badge/badge-container.component";
|
|
6
|
+
import { BadgeComponent } from "./badge/badge.component";
|
|
7
|
+
import { LoaderComponent } from "./loader/loader.component";
|
|
8
|
+
import { SkeletonComponent } from "./skeleton/skeleton.component";
|
|
9
|
+
/**
|
|
10
|
+
* Utility array that contains all `Badge` related components and directives
|
|
11
|
+
*/
|
|
12
|
+
export const KENDO_BADGE = [
|
|
13
|
+
BadgeComponent
|
|
14
|
+
];
|
|
15
|
+
/**
|
|
16
|
+
* Utility array that contains all `BadgeContainer` related components and directives
|
|
17
|
+
*/
|
|
18
|
+
export const KENDO_BADGECONTAINER = [
|
|
19
|
+
BadgeComponent,
|
|
20
|
+
BadgeContainerComponent
|
|
21
|
+
];
|
|
22
|
+
/**
|
|
23
|
+
* Utility array that contains all `Loader` related components and directives
|
|
24
|
+
*/
|
|
25
|
+
export const KENDO_LOADER = [
|
|
26
|
+
LoaderComponent
|
|
27
|
+
];
|
|
28
|
+
/**
|
|
29
|
+
* Utility array that contains all `Skeleton` related components and directives
|
|
30
|
+
*/
|
|
31
|
+
export const KENDO_SKELETON = [
|
|
32
|
+
SkeletonComponent
|
|
33
|
+
];
|
|
34
|
+
/**
|
|
35
|
+
* Utility array that contains all `@progress/kendo-angular-indicators` related components and directives
|
|
36
|
+
*/
|
|
37
|
+
export const KENDO_INDICATORS = [
|
|
38
|
+
...KENDO_BADGECONTAINER,
|
|
39
|
+
...KENDO_LOADER,
|
|
40
|
+
...KENDO_SKELETON
|
|
41
|
+
];
|
package/esm2020/index.mjs
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';
|
|
@@ -3,10 +3,13 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
|
-
import {
|
|
7
|
-
import { LoaderModule } from './loader.module';
|
|
8
|
-
import { SkeletonModule } from './skeleton.module';
|
|
6
|
+
import { KENDO_INDICATORS } from './directives';
|
|
9
7
|
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "./badge/badge.component";
|
|
9
|
+
import * as i2 from "./badge/badge-container.component";
|
|
10
|
+
import * as i3 from "./loader/loader.component";
|
|
11
|
+
import * as i4 from "./skeleton/skeleton.component";
|
|
12
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
10
13
|
/**
|
|
11
14
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
12
15
|
* definition for the Indicators components.
|
|
@@ -41,19 +44,12 @@ import * as i0 from "@angular/core";
|
|
|
41
44
|
export class IndicatorsModule {
|
|
42
45
|
}
|
|
43
46
|
IndicatorsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
44
|
-
IndicatorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, exports: [
|
|
45
|
-
|
|
46
|
-
SkeletonModule] });
|
|
47
|
-
IndicatorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, imports: [BadgeModule,
|
|
48
|
-
LoaderModule,
|
|
49
|
-
SkeletonModule] });
|
|
47
|
+
IndicatorsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, imports: [i1.BadgeComponent, i2.BadgeContainerComponent, i3.LoaderComponent, i4.SkeletonComponent], exports: [i1.BadgeComponent, i2.BadgeContainerComponent, i3.LoaderComponent, i4.SkeletonComponent] });
|
|
48
|
+
IndicatorsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, imports: [KENDO_INDICATORS] });
|
|
50
49
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: IndicatorsModule, decorators: [{
|
|
51
50
|
type: NgModule,
|
|
52
51
|
args: [{
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
LoaderModule,
|
|
56
|
-
SkeletonModule
|
|
57
|
-
]
|
|
52
|
+
imports: [...KENDO_INDICATORS],
|
|
53
|
+
exports: [...KENDO_INDICATORS]
|
|
58
54
|
}]
|
|
59
55
|
}] });
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
import { Component, Input, HostBinding, ElementRef, Renderer2 } from '@angular/core';
|
|
6
6
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
7
7
|
import { packageMetadata } from '../package-metadata';
|
|
8
|
+
import { NgFor } from '@angular/common';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
|
-
import * as i1 from "@angular/common";
|
|
10
10
|
const SIZE_CLASSES = {
|
|
11
11
|
'small': 'k-loader-sm',
|
|
12
12
|
'medium': 'k-loader-md',
|
|
@@ -110,11 +110,11 @@ export class LoaderComponent {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
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 });
|
|
113
|
-
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: `
|
|
113
|
+
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: `
|
|
114
114
|
<div class="k-loader-canvas">
|
|
115
115
|
<span *ngFor="let segment of segmentCount" class="k-loader-segment"></span>
|
|
116
116
|
</div>
|
|
117
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
117
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
118
118
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderComponent, decorators: [{
|
|
119
119
|
type: Component,
|
|
120
120
|
args: [{
|
|
@@ -123,7 +123,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
123
123
|
<div class="k-loader-canvas">
|
|
124
124
|
<span *ngFor="let segment of segmentCount" class="k-loader-segment"></span>
|
|
125
125
|
</div>
|
|
126
|
-
|
|
126
|
+
`,
|
|
127
|
+
standalone: true,
|
|
128
|
+
imports: [NgFor]
|
|
127
129
|
}]
|
|
128
130
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { hostClass: [{
|
|
129
131
|
type: HostBinding,
|
|
@@ -3,15 +3,10 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { NgModule } from '@angular/core';
|
|
6
|
-
import {
|
|
7
|
-
import { LoaderComponent } from './loader/loader.component';
|
|
6
|
+
import { KENDO_LOADER } from './directives';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
];
|
|
12
|
-
const declarations = [
|
|
13
|
-
...exportedModules
|
|
14
|
-
];
|
|
8
|
+
import * as i1 from "./loader/loader.component";
|
|
9
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
15
10
|
/**
|
|
16
11
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
17
12
|
* definition for the Loader component.
|
|
@@ -19,13 +14,12 @@ const declarations = [
|
|
|
19
14
|
export class LoaderModule {
|
|
20
15
|
}
|
|
21
16
|
LoaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
22
|
-
LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule,
|
|
23
|
-
LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, imports: [
|
|
17
|
+
LoaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, imports: [i1.LoaderComponent], exports: [i1.LoaderComponent] });
|
|
18
|
+
LoaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, imports: [KENDO_LOADER] });
|
|
24
19
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LoaderModule, decorators: [{
|
|
25
20
|
type: NgModule,
|
|
26
21
|
args: [{
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
imports: [CommonModule]
|
|
22
|
+
exports: [...KENDO_LOADER],
|
|
23
|
+
imports: [...KENDO_LOADER]
|
|
30
24
|
}]
|
|
31
25
|
}] });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-indicators',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721827711,
|
|
13
|
+
version: '16.6.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -87,13 +87,14 @@ export class SkeletonComponent {
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
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 });
|
|
90
|
-
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 });
|
|
90
|
+
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 });
|
|
91
91
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonComponent, decorators: [{
|
|
92
92
|
type: Component,
|
|
93
93
|
args: [{
|
|
94
94
|
selector: "kendo-skeleton",
|
|
95
95
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
96
|
-
template:
|
|
96
|
+
template: ``,
|
|
97
|
+
standalone: true
|
|
97
98
|
}]
|
|
98
99
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { animation: [{
|
|
99
100
|
type: Input
|
|
@@ -2,10 +2,11 @@
|
|
|
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
|
-
import { CommonModule } from '@angular/common';
|
|
6
5
|
import { NgModule } from '@angular/core';
|
|
7
|
-
import {
|
|
6
|
+
import { KENDO_SKELETON } from './directives';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
8
|
+
import * as i1 from "./skeleton/skeleton.component";
|
|
9
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
9
10
|
/**
|
|
10
11
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
11
12
|
* definition for the Skeleton component.
|
|
@@ -13,13 +14,12 @@ import * as i0 from "@angular/core";
|
|
|
13
14
|
export class SkeletonModule {
|
|
14
15
|
}
|
|
15
16
|
SkeletonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
16
|
-
SkeletonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule,
|
|
17
|
-
SkeletonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, imports: [
|
|
17
|
+
SkeletonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, imports: [i1.SkeletonComponent], exports: [i1.SkeletonComponent] });
|
|
18
|
+
SkeletonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, imports: [KENDO_SKELETON] });
|
|
18
19
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SkeletonModule, decorators: [{
|
|
19
20
|
type: NgModule,
|
|
20
21
|
args: [{
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
imports: [CommonModule]
|
|
22
|
+
exports: [...KENDO_SKELETON],
|
|
23
|
+
imports: [...KENDO_SKELETON]
|
|
24
24
|
}]
|
|
25
25
|
}] });
|
|
@@ -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: 1721827711,
|
|
66
|
+
version: '16.6.0-develop.1',
|
|
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
|
|
|
@@ -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: 1721827711,
|
|
66
|
+
version: '16.6.0-develop.1',
|
|
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.1",
|
|
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.1",
|
|
25
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.1",
|
|
26
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.1",
|
|
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.1"
|
|
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
|
}
|