@hitachivantara/uikit-react-viz 5.14.6 → 5.14.7
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/types/index.d.ts +12 -12
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -546,7 +546,7 @@ declare interface ScatterPlotMeasure extends BaseMeasure, Pick<AxisMeasure, "yAx
|
|
|
546
546
|
declare const tooltipType: readonly ["single", "multiple"];
|
|
547
547
|
|
|
548
548
|
declare const useClasses: (classesProp?: Partial<Record<"singleTooltipRoot" | "singleTooltipTitle" | "singleTooltipValue" | "multipleTooltipRoot" | "multipleTooltipTitleContainer" | "multipleTooltipTitle" | "multipleTooltipValuesContainer" | "multipleTooltipSeriesContainer" | "multipleTooltipSeriesNameContainer" | "multipleTooltipSeriesColor" | "multipleTooltipSeriesName" | "multipleTooltipSeriesValue", string>>, addStatic?: boolean) => {
|
|
549
|
-
classes: {
|
|
549
|
+
readonly classes: {
|
|
550
550
|
singleTooltipRoot: string;
|
|
551
551
|
singleTooltipTitle: string;
|
|
552
552
|
singleTooltipValue: string;
|
|
@@ -560,38 +560,38 @@ declare const useClasses: (classesProp?: Partial<Record<"singleTooltipRoot" | "s
|
|
|
560
560
|
multipleTooltipSeriesName: string;
|
|
561
561
|
multipleTooltipSeriesValue: string;
|
|
562
562
|
};
|
|
563
|
-
css: any;
|
|
564
|
-
cx: (...args: any) => string;
|
|
563
|
+
readonly css: any;
|
|
564
|
+
readonly cx: (...args: any) => string;
|
|
565
565
|
};
|
|
566
566
|
|
|
567
567
|
declare const useClasses_2: (classesProp?: Partial<Record<"tooltipRoot" | "tooltipContainer" | "tooltipText", string>>, addStatic?: boolean) => {
|
|
568
|
-
classes: {
|
|
568
|
+
readonly classes: {
|
|
569
569
|
tooltipRoot: string;
|
|
570
570
|
tooltipContainer: string;
|
|
571
571
|
tooltipText: string;
|
|
572
572
|
};
|
|
573
|
-
css: any;
|
|
574
|
-
cx: (...args: any) => string;
|
|
573
|
+
readonly css: any;
|
|
574
|
+
readonly cx: (...args: any) => string;
|
|
575
575
|
};
|
|
576
576
|
|
|
577
577
|
declare const useClasses_3: (classesProp?: Partial<Record<"tooltipRoot" | "tooltipContainer" | "tooltipText", string>>, addStatic?: boolean) => {
|
|
578
|
-
classes: {
|
|
578
|
+
readonly classes: {
|
|
579
579
|
tooltipRoot: string;
|
|
580
580
|
tooltipContainer: string;
|
|
581
581
|
tooltipText: string;
|
|
582
582
|
};
|
|
583
|
-
css: any;
|
|
584
|
-
cx: (...args: any) => string;
|
|
583
|
+
readonly css: any;
|
|
584
|
+
readonly cx: (...args: any) => string;
|
|
585
585
|
};
|
|
586
586
|
|
|
587
587
|
declare const useClasses_4: (classesProp?: Partial<Record<"tooltipRoot" | "tooltipContainer" | "tooltipText", string>>, addStatic?: boolean) => {
|
|
588
|
-
classes: {
|
|
588
|
+
readonly classes: {
|
|
589
589
|
tooltipRoot: string;
|
|
590
590
|
tooltipContainer: string;
|
|
591
591
|
tooltipText: string;
|
|
592
592
|
};
|
|
593
|
-
css: any;
|
|
594
|
-
cx: (...args: any) => string;
|
|
593
|
+
readonly css: any;
|
|
594
|
+
readonly cx: (...args: any) => string;
|
|
595
595
|
};
|
|
596
596
|
|
|
597
597
|
declare interface XAxis extends HvChartXAxis {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-viz",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Hitachi Vantara UI Kit Team",
|
|
6
6
|
"description": "Contributed React visualization components for the NEXT UI Kit.",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "https://github.com/lumada-design/hv-uikit-react.git",
|
|
18
|
+
"url": "git+https://github.com/lumada-design/hv-uikit-react.git",
|
|
19
19
|
"directory": "packages/viz"
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@hitachivantara/uikit-react-utils": "^0.2.
|
|
37
|
-
"@hitachivantara/uikit-styles": "^5.34.
|
|
36
|
+
"@hitachivantara/uikit-react-utils": "^0.2.7",
|
|
37
|
+
"@hitachivantara/uikit-styles": "^5.34.2"
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
40
40
|
"dist"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"access": "public",
|
|
44
44
|
"directory": "package"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "ebde08a1ca68acb95e6d98d5c9b310eee919fed5",
|
|
47
47
|
"exports": {
|
|
48
48
|
".": {
|
|
49
49
|
"types": "./dist/types/index.d.ts",
|