@gisce/react-ooui 2.41.0-alpha.2 → 2.41.0-alpha.3
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-ooui.es.js +1145 -1129
- package/dist/react-ooui.es.js.map +1 -1
- package/dist/widgets/views/Graph/Graph.d.ts +1 -1
- package/dist/widgets/views/Graph/Graph.d.ts.map +1 -1
- package/dist/widgets/views/Graph/GraphChart.d.ts +1 -1
- package/dist/widgets/views/Graph/GraphChart.d.ts.map +1 -1
- package/dist/widgets/views/Graph/GraphChartComp.d.ts +2 -1
- package/dist/widgets/views/Graph/GraphChartComp.d.ts.map +1 -1
- package/dist/widgets/views/Graph/GraphIndicator.d.ts +1 -0
- package/dist/widgets/views/Graph/GraphIndicator.d.ts.map +1 -1
- package/dist/widgets/views/Graph/GraphIndicatorComp.d.ts +1 -0
- package/dist/widgets/views/Graph/GraphIndicatorComp.d.ts.map +1 -1
- package/dist/widgets/views/Graph/GraphServer.d.ts +1 -1
- package/dist/widgets/views/Graph/GraphServer.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export type GraphProps = {
|
|
|
6
6
|
context: any;
|
|
7
7
|
limit?: number;
|
|
8
8
|
manualIds?: number[];
|
|
9
|
-
fixedHeight?:
|
|
9
|
+
fixedHeight?: number;
|
|
10
10
|
};
|
|
11
11
|
export declare const Graph: import("react").ForwardRefExoticComponent<GraphProps & import("react").RefAttributes<unknown>>;
|
|
12
12
|
//# sourceMappingURL=Graph.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Graph.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/Graph.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Graph.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/Graph.tsx"],"names":[],"mappings":";AA0BA,MAAM,MAAM,UAAU,GAAG;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAsGF,eAAO,MAAM,KAAK,gGAAwB,CAAC"}
|
|
@@ -6,7 +6,7 @@ export type GraphChartProps = {
|
|
|
6
6
|
ooui: GraphChartOoui;
|
|
7
7
|
limit?: number;
|
|
8
8
|
manualIds?: number[];
|
|
9
|
-
fixedHeight?:
|
|
9
|
+
fixedHeight?: number;
|
|
10
10
|
};
|
|
11
11
|
export declare const GraphChart: ({ ooui, model, domain, context, limit, manualIds, fixedHeight, }: GraphChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
//# sourceMappingURL=GraphChart.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GraphChart.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphChart.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,aAAa,CAAC;AAE3D,MAAM,MAAM,eAAe,GAAG;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,IAAI,EAAE,cAAc,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"GraphChart.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphChart.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,UAAU,IAAI,cAAc,EAAE,MAAM,aAAa,CAAC;AAE3D,MAAM,MAAM,eAAe,GAAG;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,IAAI,EAAE,cAAc,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,UAAU,qEAQpB,eAAe,4CAuCjB,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { GraphType, YAxisOpts } from "@gisce/ooui";
|
|
2
|
+
export declare const GRAPH_DEFAULT_HEIGHT = 400;
|
|
2
3
|
export type GraphCompProps = {
|
|
3
4
|
type: GraphType;
|
|
4
5
|
data: any[];
|
|
@@ -6,7 +7,7 @@ export type GraphCompProps = {
|
|
|
6
7
|
isStack: boolean;
|
|
7
8
|
numItems: number;
|
|
8
9
|
yAxisOpts?: YAxisOpts;
|
|
9
|
-
fixedHeight?:
|
|
10
|
+
fixedHeight?: number;
|
|
10
11
|
};
|
|
11
12
|
export declare const GraphChartComp: ({ type, data, isGroup, isStack, numItems, yAxisOpts, fixedHeight, }: GraphCompProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
//# sourceMappingURL=GraphChartComp.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GraphChartComp.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphChartComp.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"GraphChartComp.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphChartComp.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAInD,eAAO,MAAM,oBAAoB,MAAM,CAAC;AAaxC,MAAM,MAAM,cAAc,GAAG;IAC3B,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,GAAG,EAAE,CAAC;IACZ,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,cAAc,wEAQxB,cAAc,4CAyHhB,CAAC"}
|
|
@@ -11,6 +11,7 @@ export type GraphInidicatorProps = {
|
|
|
11
11
|
field?: string;
|
|
12
12
|
operator?: Operator;
|
|
13
13
|
manualIds?: number[];
|
|
14
|
+
fixedHeight?: number;
|
|
14
15
|
};
|
|
15
16
|
export declare const GraphIndicator: (props: GraphInidicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
//# sourceMappingURL=GraphIndicator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GraphIndicator.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphIndicator.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAkB,MAAM,aAAa,CAAC;AAOvD,MAAM,MAAM,oBAAoB,GAAG;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,cAAc,UAAW,oBAAoB,
|
|
1
|
+
{"version":3,"file":"GraphIndicator.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphIndicator.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAkB,MAAM,aAAa,CAAC;AAOvD,MAAM,MAAM,oBAAoB,GAAG;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,cAAc,UAAW,oBAAoB,4CAmMzD,CAAC"}
|
|
@@ -6,6 +6,7 @@ export type GraphIndicatorCompProps = {
|
|
|
6
6
|
icon?: string;
|
|
7
7
|
suffix?: string;
|
|
8
8
|
showPercent?: boolean;
|
|
9
|
+
fixedHeight?: number;
|
|
9
10
|
};
|
|
10
11
|
export declare const GraphIndicatorComp: (props: GraphIndicatorCompProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
//# sourceMappingURL=GraphIndicatorComp.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GraphIndicatorComp.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphIndicatorComp.tsx"],"names":[],"mappings":"AASA,MAAM,MAAM,uBAAuB,GAAG;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"GraphIndicatorComp.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphIndicatorComp.tsx"],"names":[],"mappings":"AASA,MAAM,MAAM,uBAAuB,GAAG;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,kBAAkB,UAAW,uBAAuB,4CAyDhE,CAAC"}
|
|
@@ -5,7 +5,7 @@ export type GraphProps = {
|
|
|
5
5
|
domain: any;
|
|
6
6
|
context: any;
|
|
7
7
|
manualIds?: number[];
|
|
8
|
-
fixedHeight?:
|
|
8
|
+
fixedHeight?: number;
|
|
9
9
|
};
|
|
10
10
|
export declare const GraphServer: import("react").ForwardRefExoticComponent<GraphProps & import("react").RefAttributes<unknown>>;
|
|
11
11
|
//# sourceMappingURL=GraphServer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GraphServer.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphServer.tsx"],"names":[],"mappings":";AAgBA,MAAM,MAAM,UAAU,GAAG;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"GraphServer.d.ts","sourceRoot":"","sources":["../../../../src/widgets/views/Graph/GraphServer.tsx"],"names":[],"mappings":";AAgBA,MAAM,MAAM,UAAU,GAAG;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,CAAC;IACZ,OAAO,EAAE,GAAG,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAkFF,eAAO,MAAM,WAAW,gGAAwB,CAAC"}
|