@progress/kendo-vue-indicators 8.0.3-develop.2 → 8.0.3-develop.4

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.
@@ -0,0 +1,68 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PropType } from 'vue';
9
+ /**
10
+ * @hidden
11
+ */
12
+ declare const Loader: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
13
+ type: {
14
+ type: PropType<string>;
15
+ default: string;
16
+ validator: (value: string) => boolean;
17
+ };
18
+ size: {
19
+ type: PropType<string>;
20
+ validator: (value: string) => boolean;
21
+ };
22
+ themeColor: {
23
+ type: PropType<string>;
24
+ default: string;
25
+ validator: (value: string) => boolean;
26
+ };
27
+ }>, {}, {}, {
28
+ loaderClasses(): {
29
+ 'k-loader': boolean;
30
+ 'k-loader-sm': boolean;
31
+ 'k-loader-md': boolean;
32
+ 'k-loader-lg': boolean;
33
+ 'k-loader-primary': boolean;
34
+ 'k-loader-secondary': boolean;
35
+ 'k-loader-tertiary': boolean;
36
+ 'k-loader-info': boolean;
37
+ 'k-loader-success': boolean;
38
+ 'k-loader-warning': boolean;
39
+ 'k-loader-error': boolean;
40
+ 'k-loader-dark': boolean;
41
+ 'k-loader-light': boolean;
42
+ 'k-loader-inverse': boolean;
43
+ 'k-loader-pulsing-2': boolean;
44
+ 'k-loader-spinner-3': boolean;
45
+ 'k-loader-spinner-4': boolean;
46
+ };
47
+ }, {
48
+ focus(e: any): void;
49
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
50
+ type: {
51
+ type: PropType<string>;
52
+ default: string;
53
+ validator: (value: string) => boolean;
54
+ };
55
+ size: {
56
+ type: PropType<string>;
57
+ validator: (value: string) => boolean;
58
+ };
59
+ themeColor: {
60
+ type: PropType<string>;
61
+ default: string;
62
+ validator: (value: string) => boolean;
63
+ };
64
+ }>> & Readonly<{}>, {
65
+ type: string;
66
+ themeColor: string;
67
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
68
+ export { Loader };
@@ -0,0 +1,50 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { LoaderSize } from './models/size';
9
+ import { LoaderThemeColor } from './models/theme-color';
10
+ import { LoaderType } from './models/type';
11
+ /**
12
+ * Represents the props of the [Kendo UI for Vue Loader component]({% slug overview_loader %}).
13
+ */
14
+ export interface LoaderProps {
15
+ /**
16
+ * Specifies the size of the Loader.
17
+ *
18
+ * The possible values are:
19
+ * * `small`
20
+ * * `medium` (Default)
21
+ * * `large`
22
+ *
23
+ */
24
+ size?: LoaderSize | string;
25
+ /**
26
+ * Specifies the theme color of the Loader.
27
+ *
28
+ * The possible values are:
29
+ * * `primary` (Default)&mdash;Applies coloring based on primary theme color.
30
+ * * `secondary`&mdash;Applies coloring based on secondary theme color.
31
+ * * `tertiary`&mdash; Applies coloring based on tertiary theme color.
32
+ * * `info`&mdash;Applies coloring based on info theme color.
33
+ * * `success`&mdash; Applies coloring based on success theme color.
34
+ * * `warning`&mdash; Applies coloring based on warning theme color.
35
+ * * `error`&mdash; Applies coloring based on error theme color.
36
+ * * `dark`&mdash; Applies coloring based on dark theme color.
37
+ * * `light`&mdash; Applies coloring based on light theme color.
38
+ * * `inverse`&mdash; Applies coloring based on inverse theme color.
39
+ */
40
+ themeColor?: LoaderThemeColor | string;
41
+ /**
42
+ * Specifies the Loader animation type.
43
+ *
44
+ * The possible values are:
45
+ * - `pulsing` (default)
46
+ * - `infinite-spinner`
47
+ * - `converging-spinner`
48
+ */
49
+ type?: LoaderType | string;
50
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Specifies the size of the Loader
10
+ * ([see example]({% slug appearance_loader %}#toc-size)).
11
+ *
12
+ * The possible values are:
13
+ * * `small`
14
+ * * `medium` (Default)
15
+ * * `large`
16
+ *
17
+ */
18
+ export type LoaderSize = 'small' | 'medium' | 'large';
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Specifies the theme color of the Loader.
10
+ * ([see example]({% slug appearance_loader %}#toc-theme-color)).
11
+ *
12
+ * The possible values are:
13
+ * * `primary` (Default)&mdash;Applies coloring based on primary theme color.
14
+ * * `secondary`&mdash;Applies coloring based on secondary theme color.
15
+ * * `tertiary`&mdash; Applies coloring based on tertiary theme color.
16
+ * * `info`&mdash;Applies coloring based on info theme color.
17
+ * * `success`&mdash; Applies coloring based on success theme color.
18
+ * * `warning`&mdash; Applies coloring based on warning theme color.
19
+ * * `error`&mdash; Applies coloring based on error theme color.
20
+ * * `dark`&mdash; Applies coloring based on dark theme color.
21
+ * * `light`&mdash; Applies coloring based on light theme color.
22
+ * * `inverse`&mdash; Applies coloring based on inverted theme color.
23
+ *
24
+ */
25
+ export type LoaderThemeColor = 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Specifies the Loader animation type.
10
+ *
11
+ * The possible values are:
12
+ * - `pulsing` (default)
13
+ * - `infinite-spinner`
14
+ * - `converging-spinner`
15
+ *
16
+ */
17
+ export type LoaderType = 'pulsing' | 'infinite-spinner' | 'converging-spinner';
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-indicators",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773130119,version:"8.0.3-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-indicators",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773755940,version:"8.0.3-develop.4",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1773130119,
14
- version: "8.0.3-develop.2",
13
+ publishDate: 1773755940,
14
+ version: "8.0.3-develop.4",
15
15
  licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
16
16
  };
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-indicators",
3
- "version": "8.0.3-develop.2",
3
+ "version": "8.0.3-develop.4",
4
4
  "description": "TODO",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -9,8 +9,14 @@
9
9
  "types": "./index.d.ts",
10
10
  "exports": {
11
11
  ".": {
12
- "import": "./index.mjs",
13
- "require": "./index.js"
12
+ "import": {
13
+ "types": "./index.d.mts",
14
+ "default": "./index.mjs"
15
+ },
16
+ "require": {
17
+ "types": "./index.d.ts",
18
+ "default": "./index.js"
19
+ }
14
20
  },
15
21
  "./package.json": {
16
22
  "default": "./package.json"
@@ -19,7 +25,7 @@
19
25
  "sideEffects": false,
20
26
  "peerDependencies": {
21
27
  "@progress/kendo-licensing": "^1.7.2",
22
- "@progress/kendo-vue-common": "8.0.3-develop.2",
28
+ "@progress/kendo-vue-common": "8.0.3-develop.4",
23
29
  "vue": "^3.0.2"
24
30
  },
25
31
  "dependencies": {},
@@ -39,7 +45,7 @@
39
45
  "package": {
40
46
  "productName": "Kendo UI for Vue",
41
47
  "productCode": "KENDOUIVUE",
42
- "publishDate": 1773130119,
48
+ "publishDate": 1773755940,
43
49
  "licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"
44
50
  }
45
51
  },
@@ -0,0 +1,71 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PropType } from 'vue';
9
+ /**
10
+ * @hidden
11
+ */
12
+ declare const Skeleton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
13
+ animation: {
14
+ type: PropType<boolean | import('./SkeletonProps').SkeletonAnimation>;
15
+ default: () => {
16
+ type: string;
17
+ };
18
+ validator: (value: any) => any;
19
+ };
20
+ shape: {
21
+ type: PropType<string>;
22
+ default: string;
23
+ validator: (value: any) => any;
24
+ };
25
+ ariaBusy: {
26
+ type: PropType<boolean>;
27
+ default: any;
28
+ };
29
+ role: {
30
+ type: PropType<string>;
31
+ default: any;
32
+ };
33
+ }>, {}, {}, {
34
+ skeletonClasses(): {
35
+ 'k-skeleton': boolean;
36
+ 'k-skeleton-circle': boolean;
37
+ 'k-skeleton-rect': boolean;
38
+ 'k-skeleton-text': boolean;
39
+ 'k-skeleton-pulse': boolean;
40
+ 'k-skeleton-wave': boolean;
41
+ };
42
+ }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
43
+ animation: {
44
+ type: PropType<boolean | import('./SkeletonProps').SkeletonAnimation>;
45
+ default: () => {
46
+ type: string;
47
+ };
48
+ validator: (value: any) => any;
49
+ };
50
+ shape: {
51
+ type: PropType<string>;
52
+ default: string;
53
+ validator: (value: any) => any;
54
+ };
55
+ ariaBusy: {
56
+ type: PropType<boolean>;
57
+ default: any;
58
+ };
59
+ role: {
60
+ type: PropType<string>;
61
+ default: any;
62
+ };
63
+ }>> & Readonly<{}>, {
64
+ role: string;
65
+ animation: {
66
+ type: string;
67
+ };
68
+ shape: string;
69
+ ariaBusy: boolean;
70
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
71
+ export { Skeleton };
@@ -0,0 +1,77 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the props of the [Kendo Ui for Vue Skeleton component]({% slug overview_skeleton %}).
10
+ */
11
+ export interface SkeletonProps {
12
+ /**
13
+ * Specifies the animation settings of the Skeleton.
14
+ *
15
+ * The possible keys are:
16
+ * * `type`&mdash;Defines the type of the Skeleton animation.
17
+ * * `wave`&mdash;Shows wave animation effect.
18
+ * * `pulse`(Default)&mdash;Shows pulse animation effect.
19
+ *
20
+ * To disable the animation, set the property to `false`.
21
+ *
22
+ */
23
+ animation?: boolean | SkeletonAnimation;
24
+ /**
25
+ * Specifies the shape of the Skeleton.
26
+ *
27
+ * The possible values are:
28
+ * * `circle`&mdash;Renders a circular Skeleton.
29
+ * * `text`(Default)&mdash;Renders a line Skeleton.
30
+ * * `rectangle`&mdash;Renders a rectangular Skeleton.
31
+ *
32
+ */
33
+ shape?: SkeletonShape | string;
34
+ /**
35
+ * Specifies the ariaBusy attribute of the Skeleton.
36
+ *
37
+ * The Skeleton component does not have accessibility on its own as it is only a visual indicator.
38
+ * It should be integrated within an element that refers to the loading state.
39
+ * When integrating the Skeleton on a page, you might want to define an `ariaBusy` attribute and
40
+ * this property gives you this option.
41
+ *
42
+ * By default the `ariaBusy` attribute is not rendered.
43
+ */
44
+ ariaBusy?: boolean | undefined;
45
+ /**
46
+ * Specifies the role attribute of the Skeleton.
47
+ *
48
+ * The Skeleton component does not have accessibility on its own as it is only a visual indicator.
49
+ * It should be integrated within an element that refers to the loading state.
50
+ * When integrating the Skeleton on a page, you might want to define a `role` attribute and
51
+ * this property gives you this option.
52
+ *
53
+ * By default the `role` attribute is not rendered.
54
+ *
55
+ * The recommended value of the attribute is `alert`
56
+ */
57
+ role?: string | undefined;
58
+ }
59
+ /**
60
+ * Specifies the shape of the Skeleton.
61
+ *
62
+ * The possible values are:
63
+ * * `circle`&mdash;Renders a circular Skeleton.
64
+ * * `text`(Default)&mdash;Renders a line Skeleton.
65
+ * * `rectangle`&mdash;Renders a rectangular Skeleton.
66
+ *
67
+ */
68
+ export type SkeletonShape = 'circle' | 'text' | 'rectangle';
69
+ /**
70
+ * Specifies the animation settings of the Skeleton.
71
+ */
72
+ export interface SkeletonAnimation {
73
+ /**
74
+ * Specifies the type of the Skeleton animation. Defaults to `pulse`.
75
+ */
76
+ type?: 'wave' | 'pulse';
77
+ }