@progress/kendo-vue-gauges 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.
- package/ArcCenter.d.ts +24 -0
- package/ArcGauge.d.ts +101 -0
- package/ArcGaugeProps.d.ts +40 -0
- package/BaseGauge.d.ts +69 -0
- package/BaseGauge.mjs +4 -4
- package/BaseGaugeProps.d.ts +55 -0
- package/CircularGauge.d.ts +99 -0
- package/CircularGaugeProps.d.ts +24 -0
- package/LinearGauge.d.ts +66 -0
- package/LinearGaugeProps.d.ts +22 -0
- package/RadialGauge.d.ts +66 -0
- package/RadialGaugeProps.d.ts +22 -0
- package/dist/cdn/js/kendo-vue-gauges.js +1 -1
- package/index.d.mts +11 -890
- package/index.d.ts +11 -890
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -6
- package/store/reducer.d.ts +21 -0
- package/store/store.d.ts +33 -0
- package/theming/theme-service.d.ts +13 -0
- package/types/arc-scale.interface.d.ts +35 -0
- package/types/border.interface.d.ts +25 -0
- package/types/cap.interface.d.ts +20 -0
- package/types/circular-scale.interface.d.ts +17 -0
- package/types/color-range.interface.d.ts +28 -0
- package/types/dash-type.interface.d.ts +11 -0
- package/types/gauge-area.interface.d.ts +34 -0
- package/types/labels.interface.d.ts +54 -0
- package/types/line-cap.d.ts +11 -0
- package/types/line.interface.d.ts +29 -0
- package/types/linear-pointer-shape.d.ts +11 -0
- package/types/linear-pointer.interface.d.ts +43 -0
- package/types/linear-scale.interface.d.ts +33 -0
- package/types/margin.interface.d.ts +28 -0
- package/types/padding.interface.d.ts +28 -0
- package/types/radial-label-position.d.ts +11 -0
- package/types/radial-labels.interface.d.ts +15 -0
- package/types/radial-pointer.interface.d.ts +29 -0
- package/types/radial-scale.interface.d.ts +35 -0
- package/types/range.interface.d.ts +28 -0
- package/types/scale.interface.d.ts +54 -0
- package/types/ticks.interface.d.ts +28 -0
- package/types.d.ts +28 -0
- package/utils/common.d.ts +11 -0
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
* The configuration for the scale ranges.
|
|
10
|
+
*/
|
|
11
|
+
export interface Range {
|
|
12
|
+
/**
|
|
13
|
+
* The start position of the range.
|
|
14
|
+
*/
|
|
15
|
+
from?: number;
|
|
16
|
+
/**
|
|
17
|
+
* The end position of the range.
|
|
18
|
+
*/
|
|
19
|
+
to?: number;
|
|
20
|
+
/**
|
|
21
|
+
* The range opacity.
|
|
22
|
+
*/
|
|
23
|
+
opacity?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The color of the range. Accepts valid CSS color strings, including hex and rgb.
|
|
26
|
+
*/
|
|
27
|
+
color?: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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 { Labels } from './labels.interface';
|
|
9
|
+
import { Ticks } from './ticks.interface';
|
|
10
|
+
/**
|
|
11
|
+
* The scale options of the Gauge.
|
|
12
|
+
*/
|
|
13
|
+
export interface Scale {
|
|
14
|
+
/**
|
|
15
|
+
* Configures the scale labels.
|
|
16
|
+
*/
|
|
17
|
+
labels?: Labels;
|
|
18
|
+
/**
|
|
19
|
+
* Configures the major scale ticks.
|
|
20
|
+
*/
|
|
21
|
+
majorTicks?: Ticks;
|
|
22
|
+
/**
|
|
23
|
+
* Configures the minor scale ticks.
|
|
24
|
+
*/
|
|
25
|
+
minorTicks?: Ticks;
|
|
26
|
+
/**
|
|
27
|
+
* The minimum value of the scale.
|
|
28
|
+
*/
|
|
29
|
+
min?: number;
|
|
30
|
+
/**
|
|
31
|
+
* The maximum value of the scale.
|
|
32
|
+
*/
|
|
33
|
+
max?: number;
|
|
34
|
+
/**
|
|
35
|
+
* The interval between minor divisions.
|
|
36
|
+
*/
|
|
37
|
+
minorUnit?: number;
|
|
38
|
+
/**
|
|
39
|
+
* The interval between major divisions.
|
|
40
|
+
*/
|
|
41
|
+
majorUnit?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Reverses the scale direction.
|
|
44
|
+
*/
|
|
45
|
+
reverse?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* The width of the range indicators.
|
|
48
|
+
*/
|
|
49
|
+
rangeSize?: number;
|
|
50
|
+
/**
|
|
51
|
+
* The default color of the ranges.
|
|
52
|
+
*/
|
|
53
|
+
rangePlaceholderColor?: string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
* The options for the scale ticks.
|
|
10
|
+
*/
|
|
11
|
+
export interface Ticks {
|
|
12
|
+
/**
|
|
13
|
+
* The color of the ticks. Accepts a valid CSS color string, including hex and rgb.
|
|
14
|
+
*/
|
|
15
|
+
color?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The size of the ticks. Represents the length of the line (in pixels) that is drawn to indicate the tick on the scale.
|
|
18
|
+
*/
|
|
19
|
+
size?: number;
|
|
20
|
+
/**
|
|
21
|
+
* The visibility of the ticks.
|
|
22
|
+
*/
|
|
23
|
+
visible?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* The ticks width (in pixels).
|
|
26
|
+
*/
|
|
27
|
+
width?: number;
|
|
28
|
+
}
|
package/types.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
export type { ArcScale } from './types/arc-scale.interface';
|
|
9
|
+
export type { ColorRange } from './types/color-range.interface';
|
|
10
|
+
export type { Scale } from './types/scale.interface';
|
|
11
|
+
export type { LineCap } from './types/line-cap';
|
|
12
|
+
export type { RadialLabelPosition } from './types/radial-label-position';
|
|
13
|
+
export type { RadialLabels } from './types/radial-labels.interface';
|
|
14
|
+
export type { Labels } from './types/labels.interface';
|
|
15
|
+
export type { Margin } from './types/margin.interface';
|
|
16
|
+
export type { Padding } from './types/padding.interface';
|
|
17
|
+
export type { Border } from './types/border.interface';
|
|
18
|
+
export type { Ticks } from './types/ticks.interface';
|
|
19
|
+
export type { DashType } from './types/dash-type.interface';
|
|
20
|
+
export type { Cap } from './types/cap.interface';
|
|
21
|
+
export type { GaugeArea } from './types/gauge-area.interface';
|
|
22
|
+
export type { Line } from './types/line.interface';
|
|
23
|
+
export type { LinearPointer } from './types/linear-pointer.interface';
|
|
24
|
+
export type { LinearPointerShape } from './types/linear-pointer-shape';
|
|
25
|
+
export type { LinearScale } from './types/linear-scale.interface';
|
|
26
|
+
export type { RadialPointer } from './types/radial-pointer.interface';
|
|
27
|
+
export type { RadialScale } from './types/radial-scale.interface';
|
|
28
|
+
export type { Range } from './types/range.interface';
|
|
@@ -0,0 +1,11 @@
|
|
|
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
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export declare const isOptionsChanged: (original: any, current: any) => boolean;
|