gf-components 0.1.170 → 0.1.172

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,17 +1,13 @@
1
- declare const GoalChart: ({ data, height, padding, keys, indexBy, margin, axisBottom, axisLeft, valueFormat, legendLabelWidth, legendShapeWidth, legendGap, legendPadding, tooltip, }: {
1
+ declare const GoalChart: ({ data, goal, height, padding, indexBy, valueFormat, margin, axisBottom, axisLeft, tooltip }: {
2
2
  data: any;
3
+ goal: any;
3
4
  height?: number | undefined;
4
5
  padding?: number | undefined;
5
- keys?: string[] | undefined;
6
6
  indexBy?: string | undefined;
7
+ valueFormat?: null | undefined;
7
8
  margin?: {} | undefined;
8
9
  axisBottom?: {} | undefined;
9
10
  axisLeft?: {} | undefined;
10
- valueFormat?: null | undefined;
11
- legendLabelWidth?: number | undefined;
12
- legendShapeWidth?: number | undefined;
13
- legendGap?: number | undefined;
14
- legendPadding?: number | undefined;
15
11
  tooltip?: null | undefined;
16
12
  }) => import("react/jsx-runtime").JSX.Element;
17
13
  export default GoalChart;
@@ -26,3 +26,4 @@ export * from './crmValueChart';
26
26
  export * from './impactTrend';
27
27
  export * from './renewableTrend';
28
28
  export * from './anchor';
29
+ export * from './npce';
@@ -0,0 +1,5 @@
1
+ declare const NPCE: ({ data, year }: {
2
+ data: any;
3
+ year: any;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export default NPCE;
@@ -0,0 +1,7 @@
1
+ export default function Arrow({ color, transform, style, className, showVerticalLine, }: {
2
+ color?: string | undefined;
3
+ transform?: string | undefined;
4
+ style: any;
5
+ className: any;
6
+ showVerticalLine?: boolean | undefined;
7
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ declare const Header: ({ title, subtitle, legend, success, }: {
2
+ title: any;
3
+ subtitle: any;
4
+ legend: any;
5
+ success: any;
6
+ }) => import("react/jsx-runtime").JSX.Element;
7
+ export default Header;
@@ -0,0 +1,7 @@
1
+ declare const Progress: ({ data, legend, curr, year, }: {
2
+ data: any;
3
+ legend: any;
4
+ curr?: boolean | undefined;
5
+ year?: number | undefined;
6
+ }) => import("react/jsx-runtime").JSX.Element;
7
+ export default Progress;
@@ -0,0 +1,2 @@
1
+ export { default as Header } from './Header';
2
+ export { default as Progress } from './Progress';
@@ -0,0 +1 @@
1
+ export { default as NPCE } from './NPCE';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gf-components",
3
- "version": "0.1.170",
3
+ "version": "0.1.172",
4
4
  "private": false,
5
5
  "description": "geoFluxus library of React components",
6
6
  "repository": {