pace-table-lib 1.0.17 → 1.0.19
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/dist/components/StaticTable/SparkLine/JQuerySparkLine.d.ts +3 -0
- package/dist/components/StaticTable/SparkLine/jQuerySparkLine.types.d.ts +47 -0
- package/dist/components/StaticTable/SparkLine/jquery-setup.d.ts +2 -0
- package/dist/pace-table-lib.es.js +9366 -173
- package/dist/pace-table-lib.es.js.map +1 -1
- package/dist/pace-table-lib.umd.js +9365 -172
- package/dist/pace-table-lib.umd.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export declare enum SL_TYPE {
|
|
2
|
+
LINE = "line",
|
|
3
|
+
BAR = "bar",
|
|
4
|
+
BOX = "box",
|
|
5
|
+
DISCRETE = "discrete",
|
|
6
|
+
TRISTATE = "tristate",
|
|
7
|
+
PIE = "pie"
|
|
8
|
+
}
|
|
9
|
+
export type SLPropData = {
|
|
10
|
+
dataArr: number[];
|
|
11
|
+
slType: SL_TYPE;
|
|
12
|
+
slStyle: SL_STYLE_OBJ_TYPE;
|
|
13
|
+
};
|
|
14
|
+
export type JQuerySparkLineProps = {
|
|
15
|
+
width: number;
|
|
16
|
+
height: number;
|
|
17
|
+
slPropData: SLPropData;
|
|
18
|
+
};
|
|
19
|
+
export declare const SPARK_LINE_TYPE_MAPPING: any;
|
|
20
|
+
export type SL_STYLE_OBJ_TYPE = {
|
|
21
|
+
lineColor: string;
|
|
22
|
+
fillColor: string;
|
|
23
|
+
lineWidth: number;
|
|
24
|
+
spotColor: string;
|
|
25
|
+
minSpotColor: string;
|
|
26
|
+
maxSpotColor: string;
|
|
27
|
+
highlightSpotColor: string;
|
|
28
|
+
spotRadius: number;
|
|
29
|
+
barColor: string;
|
|
30
|
+
negBarColor: string;
|
|
31
|
+
zeroColor: string;
|
|
32
|
+
barWidth: number;
|
|
33
|
+
barSpacing: number;
|
|
34
|
+
chartRangeMin: number;
|
|
35
|
+
boxLineColor: string;
|
|
36
|
+
boxFillColor: string;
|
|
37
|
+
whiskerColor: string;
|
|
38
|
+
medianColor: string;
|
|
39
|
+
thresholdColor: string;
|
|
40
|
+
thresholdValue: number;
|
|
41
|
+
borderWidth: number;
|
|
42
|
+
offset: number;
|
|
43
|
+
posBarColor: string;
|
|
44
|
+
tooltipFormat: string;
|
|
45
|
+
zeroBarColor: string;
|
|
46
|
+
};
|
|
47
|
+
export declare const DEFAULT_SL_STYLE: SL_STYLE_OBJ_TYPE;
|