gf-components 0.1.151 → 0.1.153

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.
@@ -1,4 +1,4 @@
1
- declare const BarChart: ({ data, height, margin, padding, keys, indexBy, tooltip, enableLabel, label, keyLabelWidth, keyLabelPadding, axisBottom, layers, zeroMarker, defs, fill }: {
1
+ declare const BarChart: ({ data, height, margin, padding, keys, indexBy, tooltip, enableLabel, label, keyLabelWidth, keyLabelPadding, axisBottom, axisTop, layers, zeroMarker, defs, fill, enableGridY, enableGridX }: {
2
2
  data?: never[] | undefined;
3
3
  height?: number | undefined;
4
4
  margin?: {} | undefined;
@@ -11,9 +11,12 @@ declare const BarChart: ({ data, height, margin, padding, keys, indexBy, tooltip
11
11
  keyLabelWidth?: number | undefined;
12
12
  keyLabelPadding?: number | undefined;
13
13
  axisBottom?: {} | undefined;
14
+ axisTop?: {} | undefined;
14
15
  layers?: string[] | undefined;
15
16
  zeroMarker?: boolean | undefined;
16
17
  defs?: never[] | undefined;
17
18
  fill?: never[] | undefined;
19
+ enableGridY?: boolean | undefined;
20
+ enableGridX?: boolean | undefined;
18
21
  }) => import("react/jsx-runtime").JSX.Element;
19
22
  export default BarChart;
@@ -1,4 +1,4 @@
1
- declare const RenewableTrend: ({ data, height, colorMap, margin, padding, innerPadding, tooltipBody, axisBottom, axisLeft }: {
1
+ declare const RenewableTrend: ({ data, height, colorMap, margin, padding, innerPadding, tooltip, axisBottom, axisLeft }: {
2
2
  data: any;
3
3
  height?: number | undefined;
4
4
  colorMap?: {
@@ -10,7 +10,7 @@ declare const RenewableTrend: ({ data, height, colorMap, margin, padding, innerP
10
10
  margin?: {} | undefined;
11
11
  padding?: number | undefined;
12
12
  innerPadding?: number | undefined;
13
- tooltipBody?: null | undefined;
13
+ tooltip?: null | undefined;
14
14
  axisBottom?: {} | undefined;
15
15
  axisLeft?: {} | undefined;
16
16
  }) => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gf-components",
3
- "version": "0.1.151",
3
+ "version": "0.1.153",
4
4
  "private": false,
5
5
  "description": "geoFluxus library of React components",
6
6
  "repository": {