@progress/kendo-angular-indicators 24.2.2 → 25.0.0-develop.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,15 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the position of the Badge relative to the edge of the parent container element.
7
- *
8
- * The possible values are:
9
- * * `edge` (Default)—The center of the Badge is positioned on the edge of the parent container element.
10
- * * `inside`—The Badge is entirely positioned inside the edge of the parent container element.
11
- * * `outside`—The Badge is entirely positioned outside the edge of the parent container element.
12
- *
13
- * For more information, see the [Badge Alignment and Position - Position](https://www.telerik.com/kendo-angular-ui/components/indicators/badge/align-and-position#position) documentation.
14
- */
15
- export type BadgePosition = 'edge' | 'outside' | 'inside';
@@ -1,17 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the roundness of the Badge component.
7
- *
8
- * The possible values are:
9
- * * `small`—Sets the `border radius` to `1px`.
10
- * * `medium` (Default)—Sets the `border radius` to `2px`.
11
- * * `large`—Sets the `border radius` to `4px`.
12
- * * `full`—Sets the `border radius` to `9999px`.
13
- * * `none`—The none option removes the built-in roundness allowing for custom `border radius`.
14
- *
15
- * For more information, see the [Badge Appearance - Rounded](https://www.telerik.com/kendo-angular-ui/components/indicators/badge/appearance#rounded) documentation.
16
- */
17
- export type BadgeRounded = 'small' | 'medium' | 'large' | 'full' | 'none';
@@ -1,15 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the size options for the Badge component.
7
- *
8
- * The possible values are:
9
- * * `small`
10
- * * `medium` (Default)
11
- * * `large`
12
- *
13
- * For more information, see the [Badge Appearance - Size](https://www.telerik.com/kendo-angular-ui/components/indicators/badge/appearance#size) documentation.
14
- */
15
- export type BadgeSize = 'small' | 'medium' | 'large';
@@ -1,19 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the theme color options for the Badge component.
7
- * For more details, see the [Badge Appearance - Theme Color](https://www.telerik.com/kendo-angular-ui/components/indicators/badge/appearance#theme-color) documentation.
8
- *
9
- * The possible values are:
10
- * * `base`—Applies base coloring value.
11
- * * `primary`—Applies primary coloring value.
12
- * * `secondary`—Applies secondary coloring value.
13
- * * `tertiary`—Applies tertiary coloring value.
14
- * * `info`—Applies info coloring value.
15
- * * `success`—Applies success coloring value.
16
- * * `warning`—Applies warning coloring value.
17
- * * `error`—Applies error coloring value.
18
- */
19
- export type BadgeThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error';
package/badge.module.d.ts DELETED
@@ -1,16 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./badge/badge.component";
7
- import * as i2 from "./badge/badge-container.component";
8
- /**
9
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
10
- * definition for the Badge and BadgeContainer components.
11
- */
12
- export declare class BadgeModule {
13
- static ɵfac: i0.ɵɵFactoryDeclaration<BadgeModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<BadgeModule, never, [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent], [typeof i1.BadgeComponent, typeof i2.BadgeContainerComponent]>;
15
- static ɵinj: i0.ɵɵInjectorDeclaration<BadgeModule>;
16
- }
package/directives.d.ts DELETED
@@ -1,28 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 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];
@@ -1,36 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
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";
10
- /**
11
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
12
- * definition for the Indicators components.
13
- *
14
- * @example
15
- *
16
- * ```ts-no-run
17
- * import { IndicatorsModule } from '@progress/kendo-angular-indicators';
18
- * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
19
- * import { NgModule } from '@angular/core';
20
- * import { AppComponent } from './app.component';
21
- *
22
- * @NgModule({
23
- * declarations: [AppComponent],
24
- * imports: [BrowserModule, IndicatorsModule],
25
- * bootstrap: [AppComponent]
26
- * })
27
- * export class AppModule {}
28
- *
29
- * platformBrowserDynamic().bootstrapModule(AppModule);
30
- * ```
31
- */
32
- export declare class IndicatorsModule {
33
- static ɵfac: i0.ɵɵFactoryDeclaration<IndicatorsModule, never>;
34
- 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]>;
35
- static ɵinj: i0.ɵɵInjectorDeclaration<IndicatorsModule>;
36
- }
@@ -1,56 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, Renderer2, AfterViewInit } from '@angular/core';
6
- import { LoaderType } from './models/type';
7
- import { LoaderThemeColor } from './models/theme-color';
8
- import { LoaderSize } from './models/size';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * Represents the [Kendo UI Loader component for Angular](https://www.telerik.com/kendo-angular-ui/components/indicators/loader).
12
- * Displays a Loader that represents an indeterminate wait time.
13
- *
14
- * Provides configuration options for animation type, theme color, and size.
15
- *
16
- * @example
17
- * ```html
18
- * <kendo-loader type="infinite-spinner" themeColor="primary" size="large"></kendo-loader>
19
- * ```
20
- */
21
- export declare class LoaderComponent implements AfterViewInit {
22
- private element;
23
- private renderer;
24
- hostClass: boolean;
25
- role: string;
26
- /**
27
- * Specifies the Loader animation type.
28
- *
29
- * @default pulsing
30
- */
31
- set type(type: LoaderType);
32
- get type(): LoaderType;
33
- /**
34
- * Specifies the theme color of the Loader. The default value is set by the Kendo theme.
35
- */
36
- set themeColor(themeColor: LoaderThemeColor);
37
- get themeColor(): LoaderThemeColor;
38
- /**
39
- * Specifies the size of the Loader. The default value is set by the Kendo theme.
40
- */
41
- set size(size: LoaderSize);
42
- get size(): LoaderSize;
43
- private _type;
44
- private _themeColor;
45
- private _size;
46
- private loader;
47
- constructor(element: ElementRef, renderer: Renderer2);
48
- ngAfterViewInit(): void;
49
- /**
50
- * @hidden
51
- */
52
- get segmentCount(): Array<any>;
53
- private setLoaderClasses;
54
- static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
55
- static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "kendo-loader", never, { "type": { "alias": "type"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
56
- }
@@ -1,15 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the size options for the Loader component.
7
- *
8
- * The possible values are:
9
- * * `small`
10
- * * `medium` (Default)
11
- * * `large`
12
- *
13
- * For more information, see the [Loader Appearance - Size](https://www.telerik.com/kendo-angular-ui/components/indicators/loader/appearance#size) documentation.
14
- */
15
- export type LoaderSize = 'small' | 'medium' | 'large';
@@ -1,16 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the theme color options for the Loader component.
7
- *
8
- * The possible values are:
9
- * * `base`&mdash;Applies base coloring value.
10
- * * `primary`&mdash;Applies primary coloring value.
11
- * * `secondary`&mdash;Applies secondary coloring value.
12
- * * `tertiary`&mdash;Applies tertiary coloring value.
13
- *
14
- * For more information, see the [Loader Appearance - Theme Color](https://www.telerik.com/kendo-angular-ui/components/indicators/loader/appearance#theme-color) documentation.
15
- */
16
- export type LoaderThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary';
@@ -1,14 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the animation type for the Loader component.
7
- *
8
- * The possible values are:
9
- * - `pulsing` (default)
10
- * - `infinite-spinner`
11
- * - `converging-spinner`
12
- *
13
- */
14
- export type LoaderType = 'pulsing' | 'infinite-spinner' | 'converging-spinner';
@@ -1,15 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./loader/loader.component";
7
- /**
8
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
9
- * definition for the Loader component.
10
- */
11
- export declare class LoaderModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<LoaderModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<LoaderModule, never, [typeof i1.LoaderComponent], [typeof i1.LoaderComponent]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<LoaderModule>;
15
- }
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { type PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;
@@ -1,27 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * @hidden
7
- */
8
- export declare const ANIMATION_CLASSES: {
9
- pulse: string;
10
- wave: string;
11
- };
12
- /**
13
- * @hidden
14
- */
15
- export declare const SHAPE_CLASSES: {
16
- rectangle: string;
17
- circle: string;
18
- text: string;
19
- };
20
- /**
21
- * @hidden
22
- */
23
- export declare const skeletonShapeError: (input: any) => string;
24
- /**
25
- * @hidden
26
- */
27
- export declare const skeletonAnimationError: (input: any) => string;
@@ -1,30 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Specifies the animation settings for the Skeleton component.
7
- *
8
- * The possible values are:
9
- * - `pulse`&mdash;(Default) Shows a pulse animation effect.
10
- * - `wave`&mdash;Shows a wave animation effect.
11
- * - `false`&mdash;Disables the animation. (Boolean, not a string)
12
- */
13
- export type SkeletonAnimation = false | 'pulse' | 'wave';
14
- /**
15
- * @hidden
16
- */
17
- export declare const validAnimations: SkeletonAnimation[];
18
- /**
19
- * Specifies the shape of the Skeleton component.
20
- *
21
- * The possible values are:
22
- * - `text`&mdash;(Default) Renders a line Skeleton.
23
- * - `circle`&mdash;Renders a circular Skeleton.
24
- * - `rectangle`&mdash;Renders a rectangular Skeleton.
25
- */
26
- export type SkeletonShape = 'circle' | 'rectangle' | 'text';
27
- /**
28
- * @hidden
29
- */
30
- export declare const validShapes: SkeletonShape[];
@@ -1,55 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { Renderer2, ElementRef, AfterViewInit } from "@angular/core";
6
- import { SkeletonAnimation, SkeletonShape } from "./models";
7
- import * as i0 from "@angular/core";
8
- /**
9
- * Represents the [Kendo UI Skeleton component for Angular](https://www.telerik.com/kendo-angular-ui/components/indicators/skeleton).
10
- * Displays a Skeleton placeholder that represents loading content.
11
- *
12
- * Provides configuration options for animation, shape, width, and height.
13
- *
14
- * @example
15
- * ```html
16
- * <kendo-skeleton shape="circle" animation="wave" width="40px" height="40px"></kendo-skeleton>
17
- * ```
18
- */
19
- export declare class SkeletonComponent implements AfterViewInit {
20
- private renderer;
21
- private hostElement;
22
- /**
23
- * Specifies the animation settings of the Skeleton.
24
- *
25
- * @default pulse
26
- */
27
- set animation(animation: SkeletonAnimation);
28
- get animation(): SkeletonAnimation;
29
- /**
30
- * Specifies the shape of the Skeleton.
31
- *
32
- * @default text
33
- */
34
- set shape(shape: SkeletonShape);
35
- get shape(): SkeletonShape;
36
- /**
37
- * Specifies the width of the Skeleton component.
38
- * Required for all Skeleton shapes.
39
- * Accepts a string like `100px`, `3em`, or `50%`, or an integer number for pixels.
40
- */
41
- set width(width: string | number);
42
- /**
43
- * Specifies the height of the Skeleton component.
44
- * Required for `circle` and `rectangle` shapes.
45
- * Not required for `text`, as it derives from the current CSS font-size.
46
- * Accepts a string like `100px`, `3em`, or `50%`, or an integer number for pixels.
47
- */
48
- set height(height: string | number);
49
- private _animation;
50
- private _shape;
51
- constructor(renderer: Renderer2, hostElement: ElementRef);
52
- ngAfterViewInit(): void;
53
- static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonComponent, never>;
54
- static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "kendo-skeleton", never, { "animation": { "alias": "animation"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, true, never>;
55
- }
@@ -1,15 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./skeleton/skeleton.component";
7
- /**
8
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
9
- * definition for the Skeleton component.
10
- */
11
- export declare class SkeletonModule {
12
- static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonModule, never>;
13
- static ɵmod: i0.ɵɵNgModuleDeclaration<SkeletonModule, never, [typeof i1.SkeletonComponent], [typeof i1.SkeletonComponent]>;
14
- static ɵinj: i0.ɵɵInjectorDeclaration<SkeletonModule>;
15
- }