@progress/kendo-angular-gauges 24.2.2 → 25.0.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/fesm2022/progress-kendo-angular-gauges.mjs +139 -139
- package/index.d.ts +1989 -13
- package/package-metadata.mjs +2 -2
- package/package.json +10 -10
- package/arc-gauge/arc-center-template.directive.d.ts +0 -28
- package/arc-gauge/arc-gauge.component.d.ts +0 -87
- package/arc-gauge/arc-gauge.directives.d.ts +0 -11
- package/arc-gauge/arc-gauge.module.d.ts +0 -38
- package/arc-gauge/color.component.d.ts +0 -55
- package/arc-gauge/colors.component.d.ts +0 -60
- package/arc-gauge/gauge-area.component.d.ts +0 -37
- package/arc-gauge/labels.component.d.ts +0 -38
- package/arc-gauge/scale.component.d.ts +0 -62
- package/base-components/collection-item.component.d.ts +0 -20
- package/base-components/collection.component.d.ts +0 -25
- package/base-components/gauge-area.component.d.ts +0 -38
- package/base-components/gauge.component.d.ts +0 -105
- package/base-components/labels.component.d.ts +0 -61
- package/base-components/range.component.d.ts +0 -30
- package/base-components/scale.component.d.ts +0 -28
- package/base-components/settings.component.d.ts +0 -21
- package/base-components.d.ts +0 -12
- package/circular-gauge/center-template.directive.d.ts +0 -27
- package/circular-gauge/circular-gauge.component.d.ts +0 -43
- package/circular-gauge/circular-gauge.directives.d.ts +0 -9
- package/circular-gauge/circular-gauge.module.d.ts +0 -36
- package/circular-gauge/gauge-area.component.d.ts +0 -28
- package/circular-gauge/labels.component.d.ts +0 -35
- package/circular-gauge/scale.component.d.ts +0 -36
- package/directives.d.ts +0 -52
- package/gauges.module.d.ts +0 -61
- package/linear-gauge/gauge-area.component.d.ts +0 -25
- package/linear-gauge/labels.component.d.ts +0 -26
- package/linear-gauge/linear-gauge.component.d.ts +0 -47
- package/linear-gauge/linear-gauge.directives.d.ts +0 -12
- package/linear-gauge/linear-gauge.module.d.ts +0 -40
- package/linear-gauge/pointer.component.d.ts +0 -54
- package/linear-gauge/pointers.component.d.ts +0 -53
- package/linear-gauge/range.component.d.ts +0 -29
- package/linear-gauge/ranges.component.d.ts +0 -61
- package/linear-gauge/scale.component.d.ts +0 -49
- package/package-metadata.d.ts +0 -9
- package/radial-gauge/gauge-area.component.d.ts +0 -32
- package/radial-gauge/labels.component.d.ts +0 -31
- package/radial-gauge/pointer.component.d.ts +0 -42
- package/radial-gauge/pointers.component.d.ts +0 -56
- package/radial-gauge/radial-gauge.component.d.ts +0 -49
- package/radial-gauge/radial-gauge.directives.d.ts +0 -12
- package/radial-gauge/radial-gauge.module.d.ts +0 -40
- package/radial-gauge/range.component.d.ts +0 -27
- package/radial-gauge/ranges.component.d.ts +0 -61
- package/radial-gauge/scale.component.d.ts +0 -49
- package/services/collection-changes.service.d.ts +0 -13
- package/services/configuration.service.d.ts +0 -24
- package/services/theme.service.d.ts +0 -15
- package/services.d.ts +0 -7
- package/types/arc-scale.interface.d.ts +0 -34
- package/types/border.interface.d.ts +0 -23
- package/types/cap.interface.d.ts +0 -18
- package/types/circular-gauge-scale.interface.d.ts +0 -14
- package/types/color-range.interface.d.ts +0 -25
- package/types/dash-type.interface.d.ts +0 -8
- package/types/gauge-area.interface.d.ts +0 -32
- package/types/labels.interface.d.ts +0 -57
- package/types/line-cap.d.ts +0 -8
- package/types/line.interface.d.ts +0 -27
- package/types/linear-pointer-shape.d.ts +0 -8
- package/types/linear-pointer.interface.d.ts +0 -41
- package/types/linear-scale.interface.d.ts +0 -32
- package/types/margin.interface.d.ts +0 -25
- package/types/padding.interface.d.ts +0 -25
- package/types/radial-label-position.d.ts +0 -8
- package/types/radial-labels.interface.d.ts +0 -16
- package/types/radial-pointer.interface.d.ts +0 -29
- package/types/radial-scale.interface.d.ts +0 -34
- package/types/range.interface.d.ts +0 -25
- package/types/scale.interface.d.ts +0 -51
- package/types/ticks.interface.d.ts +0 -25
- package/types.d.ts +0 -26
|
@@ -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 { Labels } from './labels.interface';
|
|
6
|
-
import { RadialLabelPosition } from './radial-label-position';
|
|
7
|
-
/**
|
|
8
|
-
* Represents the labels configuration of the Gauge.
|
|
9
|
-
*/
|
|
10
|
-
export interface RadialLabels extends Labels {
|
|
11
|
-
/**
|
|
12
|
-
* Sets the position of the labels.
|
|
13
|
-
* This property determines where the labels will be placed relative to the radial gauge.
|
|
14
|
-
*/
|
|
15
|
-
position?: RadialLabelPosition;
|
|
16
|
-
}
|
|
@@ -1,29 +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 { Cap } from './cap.interface';
|
|
6
|
-
/**
|
|
7
|
-
* Represents the configuration options for the RadialGauge pointer.
|
|
8
|
-
*/
|
|
9
|
-
export interface RadialPointer {
|
|
10
|
-
/**
|
|
11
|
-
* Defines the settings for the cap.
|
|
12
|
-
*/
|
|
13
|
-
cap?: Cap;
|
|
14
|
-
/**
|
|
15
|
-
* Sets the color of the pointer.
|
|
16
|
-
* Accepts valid CSS color strings, including `hex` and `rgb`.
|
|
17
|
-
*/
|
|
18
|
-
color?: string;
|
|
19
|
-
/**
|
|
20
|
-
* Sets the pointer length in percent based on the distance to the scale.
|
|
21
|
-
* The default length of `1` means that the pointer exactly reaches the scale.
|
|
22
|
-
* Accepts values between `0.1` and `1.5`.
|
|
23
|
-
*/
|
|
24
|
-
length?: number;
|
|
25
|
-
/**
|
|
26
|
-
* Sets the pointer value.
|
|
27
|
-
*/
|
|
28
|
-
value?: number;
|
|
29
|
-
}
|
|
@@ -1,34 +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 { RadialLabels } from './radial-labels.interface';
|
|
6
|
-
import { Scale } from './scale.interface';
|
|
7
|
-
import { Range } from './range.interface';
|
|
8
|
-
/**
|
|
9
|
-
* Represents the scale options of the Gauge.
|
|
10
|
-
*/
|
|
11
|
-
export interface RadialScale extends Scale {
|
|
12
|
-
/**
|
|
13
|
-
* Sets up the scale labels.
|
|
14
|
-
*/
|
|
15
|
-
labels?: RadialLabels;
|
|
16
|
-
/**
|
|
17
|
-
* Defines the distance between the range indicators and the ticks.
|
|
18
|
-
*/
|
|
19
|
-
rangeDistance?: number;
|
|
20
|
-
/**
|
|
21
|
-
* Defines the ranges of the scale.
|
|
22
|
-
*/
|
|
23
|
-
ranges?: Range[];
|
|
24
|
-
/**
|
|
25
|
-
* Sets the starting angle of the gauge.
|
|
26
|
-
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
|
|
27
|
-
*/
|
|
28
|
-
startAngle?: number;
|
|
29
|
-
/**
|
|
30
|
-
* Sets the ending angle of the gauge.
|
|
31
|
-
* The Gauge renders clockwise where 0 degrees equals 180 degrees in the polar coordinate system.
|
|
32
|
-
*/
|
|
33
|
-
endAngle?: number;
|
|
34
|
-
}
|
|
@@ -1,25 +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
|
-
* Represents the configuration for the scale ranges.
|
|
7
|
-
*/
|
|
8
|
-
export interface Range {
|
|
9
|
-
/**
|
|
10
|
-
* Sets the start position of the range.
|
|
11
|
-
*/
|
|
12
|
-
from?: number;
|
|
13
|
-
/**
|
|
14
|
-
* Sets the end position of the range.
|
|
15
|
-
*/
|
|
16
|
-
to?: number;
|
|
17
|
-
/**
|
|
18
|
-
* Sets the range opacity.
|
|
19
|
-
*/
|
|
20
|
-
opacity?: number;
|
|
21
|
-
/**
|
|
22
|
-
* Sets the color of the range. Accepts valid CSS color strings, including hex and rgb.
|
|
23
|
-
*/
|
|
24
|
-
color?: string;
|
|
25
|
-
}
|
|
@@ -1,51 +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 { Labels } from './labels.interface';
|
|
6
|
-
import { Ticks } from './ticks.interface';
|
|
7
|
-
/**
|
|
8
|
-
* Represents the scale options of the Gauge.
|
|
9
|
-
*/
|
|
10
|
-
export interface Scale {
|
|
11
|
-
/**
|
|
12
|
-
* Sets the scale labels.
|
|
13
|
-
*/
|
|
14
|
-
labels?: Labels;
|
|
15
|
-
/**
|
|
16
|
-
* Sets the major scale ticks.
|
|
17
|
-
*/
|
|
18
|
-
majorTicks?: Ticks;
|
|
19
|
-
/**
|
|
20
|
-
* Sets the minor scale ticks.
|
|
21
|
-
*/
|
|
22
|
-
minorTicks?: Ticks;
|
|
23
|
-
/**
|
|
24
|
-
* Specifies the minimum value of the scale.
|
|
25
|
-
*/
|
|
26
|
-
min?: number;
|
|
27
|
-
/**
|
|
28
|
-
* Specifies the maximum value of the scale.
|
|
29
|
-
*/
|
|
30
|
-
max?: number;
|
|
31
|
-
/**
|
|
32
|
-
* Defines the interval between minor divisions.
|
|
33
|
-
*/
|
|
34
|
-
minorUnit?: number;
|
|
35
|
-
/**
|
|
36
|
-
* Defines the interval between major divisions.
|
|
37
|
-
*/
|
|
38
|
-
majorUnit?: number;
|
|
39
|
-
/**
|
|
40
|
-
* Reverses the scale direction.
|
|
41
|
-
*/
|
|
42
|
-
reverse?: boolean;
|
|
43
|
-
/**
|
|
44
|
-
* Specifies the width of the range indicators.
|
|
45
|
-
*/
|
|
46
|
-
rangeSize?: number;
|
|
47
|
-
/**
|
|
48
|
-
* Sets the default color of the ranges.
|
|
49
|
-
*/
|
|
50
|
-
rangePlaceholderColor?: string;
|
|
51
|
-
}
|
|
@@ -1,25 +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
|
-
* Represents the options for the scale ticks.
|
|
7
|
-
*/
|
|
8
|
-
export interface Ticks {
|
|
9
|
-
/**
|
|
10
|
-
* Defines the color of the ticks. Accepts a valid CSS color string, including `hex` and `rgb`.
|
|
11
|
-
*/
|
|
12
|
-
color?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Sets the size of the ticks. This sets the length of the line in pixels that shows the tick on the scale.
|
|
15
|
-
*/
|
|
16
|
-
size?: number;
|
|
17
|
-
/**
|
|
18
|
-
* Determines if the ticks are visible.
|
|
19
|
-
*/
|
|
20
|
-
visible?: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* Sets the width of the ticks in pixels.
|
|
23
|
-
*/
|
|
24
|
-
width?: number;
|
|
25
|
-
}
|
package/types.d.ts
DELETED
|
@@ -1,26 +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
|
-
export { ArcScale } from './types/arc-scale.interface';
|
|
6
|
-
export { Border } from './types/border.interface';
|
|
7
|
-
export { Cap } from './types/cap.interface';
|
|
8
|
-
export { ColorRange } from './types/color-range.interface';
|
|
9
|
-
export { CircularGaugeScale } from './types/circular-gauge-scale.interface';
|
|
10
|
-
export { DashType } from './types/dash-type.interface';
|
|
11
|
-
export { GaugeArea } from './types/gauge-area.interface';
|
|
12
|
-
export { Labels } from './types/labels.interface';
|
|
13
|
-
export { Line } from './types/line.interface';
|
|
14
|
-
export { LineCap } from './types/line-cap';
|
|
15
|
-
export { LinearPointer } from './types/linear-pointer.interface';
|
|
16
|
-
export { LinearPointerShape } from './types/linear-pointer-shape';
|
|
17
|
-
export { LinearScale } from './types/linear-scale.interface';
|
|
18
|
-
export { Margin } from './types/margin.interface';
|
|
19
|
-
export { Padding } from './types/padding.interface';
|
|
20
|
-
export { RadialLabelPosition } from './types/radial-label-position';
|
|
21
|
-
export { RadialLabels } from './types/radial-labels.interface';
|
|
22
|
-
export { RadialPointer } from './types/radial-pointer.interface';
|
|
23
|
-
export { RadialScale } from './types/radial-scale.interface';
|
|
24
|
-
export { Range } from './types/range.interface';
|
|
25
|
-
export { Scale } from './types/scale.interface';
|
|
26
|
-
export { Ticks } from './types/ticks.interface';
|