@databricks/appkit-ui 0.1.1 → 0.1.2
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/react/charts/area/index.d.ts +2 -2
- package/dist/react/charts/base.d.ts +2 -2
- package/dist/react/charts/create-chart.d.ts +2 -2
- package/dist/react/charts/heatmap/index.d.ts +2 -2
- package/dist/react/charts/line/index.d.ts +2 -2
- package/dist/react/charts/pie/index.d.ts +3 -3
- package/dist/react/charts/radar/index.d.ts +2 -2
- package/dist/react/charts/scatter/index.d.ts +2 -2
- package/dist/react/charts/wrapper.d.ts +2 -2
- package/dist/react/table/data-table.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AreaChartProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime273 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/area/index.d.ts
|
|
5
5
|
|
|
@@ -25,7 +25,7 @@ import * as react_jsx_runtime275 from "react/jsx-runtime";
|
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
27
27
|
declare const AreaChart: {
|
|
28
|
-
(props: AreaChartProps):
|
|
28
|
+
(props: AreaChartProps): react_jsx_runtime273.JSX.Element;
|
|
29
29
|
displayName: string;
|
|
30
30
|
};
|
|
31
31
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChartColorPalette, ChartData, ChartType, Orientation } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime281 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/base.d.ts
|
|
5
5
|
interface BaseChartProps {
|
|
@@ -83,7 +83,7 @@ declare function BaseChart({
|
|
|
83
83
|
max,
|
|
84
84
|
options: customOptions,
|
|
85
85
|
className
|
|
86
|
-
}: BaseChartProps):
|
|
86
|
+
}: BaseChartProps): react_jsx_runtime281.JSX.Element;
|
|
87
87
|
//#endregion
|
|
88
88
|
export { BaseChart, BaseChartProps };
|
|
89
89
|
//# sourceMappingURL=base.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChartType, UnifiedChartProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime282 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/create-chart.d.ts
|
|
5
5
|
|
|
@@ -18,7 +18,7 @@ import * as react_jsx_runtime283 from "react/jsx-runtime";
|
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
20
|
declare function createChart<TProps extends UnifiedChartProps>(chartType: ChartType, displayName: string): {
|
|
21
|
-
(props: TProps):
|
|
21
|
+
(props: TProps): react_jsx_runtime282.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HeatmapChartProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime275 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/heatmap/index.d.ts
|
|
5
5
|
|
|
@@ -34,7 +34,7 @@ import * as react_jsx_runtime276 from "react/jsx-runtime";
|
|
|
34
34
|
* ```
|
|
35
35
|
*/
|
|
36
36
|
declare const HeatmapChart: {
|
|
37
|
-
(props: HeatmapChartProps):
|
|
37
|
+
(props: HeatmapChartProps): react_jsx_runtime275.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LineChartProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime276 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/line/index.d.ts
|
|
5
5
|
|
|
@@ -26,7 +26,7 @@ import * as react_jsx_runtime277 from "react/jsx-runtime";
|
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
28
|
declare const LineChart: {
|
|
29
|
-
(props: LineChartProps):
|
|
29
|
+
(props: LineChartProps): react_jsx_runtime276.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DonutChartProps, PieChartProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime277 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/pie/index.d.ts
|
|
5
5
|
|
|
@@ -25,7 +25,7 @@ import * as react_jsx_runtime278 from "react/jsx-runtime";
|
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
27
27
|
declare const PieChart: {
|
|
28
|
-
(props: PieChartProps):
|
|
28
|
+
(props: PieChartProps): react_jsx_runtime277.JSX.Element;
|
|
29
29
|
displayName: string;
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
@@ -49,7 +49,7 @@ declare const PieChart: {
|
|
|
49
49
|
* ```
|
|
50
50
|
*/
|
|
51
51
|
declare const DonutChart: {
|
|
52
|
-
(props: DonutChartProps):
|
|
52
|
+
(props: DonutChartProps): react_jsx_runtime277.JSX.Element;
|
|
53
53
|
displayName: string;
|
|
54
54
|
};
|
|
55
55
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RadarChartProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime279 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/radar/index.d.ts
|
|
5
5
|
|
|
@@ -24,7 +24,7 @@ import * as react_jsx_runtime280 from "react/jsx-runtime";
|
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
26
|
declare const RadarChart: {
|
|
27
|
-
(props: RadarChartProps):
|
|
27
|
+
(props: RadarChartProps): react_jsx_runtime279.JSX.Element;
|
|
28
28
|
displayName: string;
|
|
29
29
|
};
|
|
30
30
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ScatterChartProps } from "../types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime280 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/charts/scatter/index.d.ts
|
|
5
5
|
|
|
@@ -24,7 +24,7 @@ import * as react_jsx_runtime281 from "react/jsx-runtime";
|
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
26
|
declare const ScatterChart: {
|
|
27
|
-
(props: ScatterChartProps):
|
|
27
|
+
(props: ScatterChartProps): react_jsx_runtime280.JSX.Element;
|
|
28
28
|
displayName: string;
|
|
29
29
|
};
|
|
30
30
|
//#endregion
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChartData, DataFormat } from "./types.js";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime283 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/react/charts/wrapper.d.ts
|
|
6
6
|
interface ChartWrapperQueryProps {
|
|
@@ -59,7 +59,7 @@ type ChartWrapperProps = CommonProps & (ChartWrapperQueryProps | ChartWrapperDat
|
|
|
59
59
|
* </ChartWrapper>
|
|
60
60
|
* ```
|
|
61
61
|
*/
|
|
62
|
-
declare function ChartWrapper(props: ChartWrapperProps):
|
|
62
|
+
declare function ChartWrapper(props: ChartWrapperProps): react_jsx_runtime283.JSX.Element;
|
|
63
63
|
//#endregion
|
|
64
64
|
export { ChartWrapper, ChartWrapperProps };
|
|
65
65
|
//# sourceMappingURL=wrapper.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DataTableProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime284 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/table/data-table.d.ts
|
|
5
5
|
|
|
@@ -41,7 +41,7 @@ import * as react_jsx_runtime273 from "react/jsx-runtime";
|
|
|
41
41
|
* )}
|
|
42
42
|
* </DataTable>
|
|
43
43
|
*/
|
|
44
|
-
declare function DataTable(props: DataTableProps):
|
|
44
|
+
declare function DataTable(props: DataTableProps): react_jsx_runtime284.JSX.Element;
|
|
45
45
|
//#endregion
|
|
46
46
|
export { DataTable };
|
|
47
47
|
//# sourceMappingURL=data-table.d.ts.map
|