@progress/kendo-charts 2.6.0-dev.202410180430 → 2.6.0-dev.202410211049
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,67 @@
|
|
|
1
|
+
import {
|
|
2
|
+
VerticalStripesPatternOptions,
|
|
3
|
+
DiagonalStripesPatternOptions,
|
|
4
|
+
CrosshatchPatternOptions,
|
|
5
|
+
GridPatternOptions,
|
|
6
|
+
DotsPatternOptions
|
|
7
|
+
} from '@progress/kendo-drawing';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Represents the VerticalStripesPattern of the series.
|
|
11
|
+
*/
|
|
12
|
+
export interface VerticalStripesPattern extends VerticalStripesPatternOptions {
|
|
13
|
+
/**
|
|
14
|
+
* The type of the pattern.
|
|
15
|
+
*/
|
|
16
|
+
type: 'verticalStripes';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Represents the CrosshatchPattern of the series.
|
|
21
|
+
*/
|
|
22
|
+
export interface CrosshatchPattern extends CrosshatchPatternOptions {
|
|
23
|
+
/**
|
|
24
|
+
* The type of the pattern.
|
|
25
|
+
*/
|
|
26
|
+
type: 'crosshatch';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Represents the DiagonalStripesPattern of the series.
|
|
31
|
+
*/
|
|
32
|
+
export interface DiagonalStripesPattern extends DiagonalStripesPatternOptions {
|
|
33
|
+
/**
|
|
34
|
+
* The type of the pattern.
|
|
35
|
+
*/
|
|
36
|
+
type: 'diagonalStripes';
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Represents the GridPattern of the series.
|
|
41
|
+
*/
|
|
42
|
+
export interface GridPattern extends GridPatternOptions {
|
|
43
|
+
/**
|
|
44
|
+
* The type of the pattern.
|
|
45
|
+
*/
|
|
46
|
+
type: 'grid';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Represents the DotPattern of the series.
|
|
51
|
+
*/
|
|
52
|
+
export interface DotPattern extends DotsPatternOptions {
|
|
53
|
+
/**
|
|
54
|
+
* The type of the pattern.
|
|
55
|
+
*/
|
|
56
|
+
type: 'dots';
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Represents the pattern option of the series.
|
|
61
|
+
*/
|
|
62
|
+
export type SeriesPattern =
|
|
63
|
+
| VerticalStripesPattern
|
|
64
|
+
| CrosshatchPattern
|
|
65
|
+
| DiagonalStripesPattern
|
|
66
|
+
| GridPattern
|
|
67
|
+
| DotPattern;
|
|
@@ -3,3 +3,4 @@ export { DashType } from './field-types/dash-type';
|
|
|
3
3
|
export { Margin } from './field-types/margin.interface';
|
|
4
4
|
export { Padding } from './field-types/padding.interface';
|
|
5
5
|
export { RenderMode } from './field-types/render-mode';
|
|
6
|
+
export { SeriesPattern } from './field-types/series-pattern.interface';
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Kendo UI platform-independent Charts library",
|
|
4
4
|
"author": "Progress",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
|
-
"version": "2.6.0-dev.
|
|
6
|
+
"version": "2.6.0-dev.202410211049",
|
|
7
7
|
"main": "dist/npm/main.js",
|
|
8
8
|
"module": "dist/es/main.js",
|
|
9
9
|
"jsnext:main": "dist/es/main.js",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"Charts"
|
|
34
34
|
],
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@progress/kendo-drawing": "^1.21.0
|
|
36
|
+
"@progress/kendo-drawing": "^1.21.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@progress/kendo-drawing": "^1.21.0
|
|
39
|
+
"@progress/kendo-drawing": "^1.21.0",
|
|
40
40
|
"@progress/kendo-e2e": "^0.6.0",
|
|
41
41
|
"@progress/kendo-file-saver": "^1.1.1",
|
|
42
42
|
"@progress/kendo-intl": "^3.1.1",
|