@vizzly/services 0.15.0-dev-f576f0918251ec7901abbda943caec672e40c29c → 0.15.0-dev-22a3a4d82d007a71e3d303cc3550ce20bed7a1e9

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.
@@ -13,19 +13,31 @@ export declare class View<T extends Component.Attributes> {
13
13
  } & RequiredAttributes<T>);
14
14
  updateAttributes(newAttributes: Partial<T>): void;
15
15
  }
16
- export type AnyView = AreaChart | LineChart | BarChart | PieChart | BubbleChart | ScatterChart | ComboChart | PivotTable | BasicTable | HorizontalBarChart | MercatorMap | SingleStat | Progress | RichText | WaterfallChart;
16
+ export type AnyView = AreaChart | AreaChartV2 | LineChart | LineChartV2 | BarChart | BarChartV2 | PieChart | BubbleChart | BubbleChartV2 | ScatterChart | ComboChart | ComboChartV2 | PivotTable | BasicTable | HorizontalBarChart | HorizontalBarChartV2 | MercatorMap | SingleStat | Progress | RichText | WaterfallChart | FunnelChart | SunburstChart | RadarChart;
17
17
  export declare class AreaChart extends View<Component.AreaChartAttributes> {
18
18
  constructor(attributes: Partial<Component.AreaChartAttributes> & RequiredAttributes<Component.AreaChartAttributes>);
19
19
  static type(): Component.AreaChartAttributes['type'];
20
20
  }
21
+ export declare class AreaChartV2 extends View<Component.AreaChartV2Attributes> {
22
+ constructor(attributes: Partial<Component.AreaChartV2Attributes> & RequiredAttributes<Component.AreaChartV2Attributes>);
23
+ static type(): Component.AreaChartV2Attributes['type'];
24
+ }
21
25
  export declare class LineChart extends View<Component.LineChartAttributes> {
22
26
  constructor(attributes: Partial<Component.LineChartAttributes> & RequiredAttributes<Component.LineChartAttributes>);
23
27
  static type(): Component.LineChartAttributes['type'];
24
28
  }
29
+ export declare class LineChartV2 extends View<Component.LineChartV2Attributes> {
30
+ constructor(attributes: Partial<Component.LineChartV2Attributes> & RequiredAttributes<Component.LineChartV2Attributes>);
31
+ static type(): Component.LineChartV2Attributes['type'];
32
+ }
25
33
  export declare class BarChart extends View<Component.BarChartAttributes> {
26
34
  constructor(attributes: Partial<Component.BarChartAttributes> & RequiredAttributes<Component.BarChartAttributes>);
27
35
  static type(): Component.BarChartAttributes['type'];
28
36
  }
37
+ export declare class BarChartV2 extends View<Component.BarChartV2Attributes> {
38
+ constructor(attributes: Partial<Component.BarChartV2Attributes> & RequiredAttributes<Component.BarChartV2Attributes>);
39
+ static type(): Component.BarChartV2Attributes['type'];
40
+ }
29
41
  export declare class PieChart extends View<Component.PieChartAttributes> {
30
42
  constructor(attributes: Partial<Component.PieChartAttributes> & RequiredAttributes<Component.PieChartAttributes>);
31
43
  static type(): Component.PieChartAttributes['type'];
@@ -34,6 +46,10 @@ export declare class BubbleChart extends View<Component.BubbleChartAttributes> {
34
46
  constructor(attributes: Partial<Component.BubbleChartAttributes> & RequiredAttributes<Component.BubbleChartAttributes>);
35
47
  static type(): Component.BubbleChartAttributes['type'];
36
48
  }
49
+ export declare class BubbleChartV2 extends View<Component.BubbleChartV2Attributes> {
50
+ constructor(attributes: Partial<Component.BubbleChartV2Attributes> & RequiredAttributes<Component.BubbleChartV2Attributes>);
51
+ static type(): Component.BubbleChartV2Attributes['type'];
52
+ }
37
53
  export declare class SunburstChart extends View<Component.SunburstChartAttributes> {
38
54
  constructor(attributes: Partial<Component.SunburstChartAttributes> & RequiredAttributes<Component.SunburstChartAttributes>);
39
55
  static type(): Component.SunburstChartAttributes['type'];
@@ -46,6 +62,10 @@ export declare class ComboChart extends View<Component.ComboChartAttributes> {
46
62
  constructor(attributes: Partial<Component.ComboChartAttributes> & RequiredAttributes<Component.ComboChartAttributes>);
47
63
  static type(): Component.ComboChartAttributes['type'];
48
64
  }
65
+ export declare class ComboChartV2 extends View<Component.ComboChartV2Attributes> {
66
+ constructor(attributes: Partial<Component.ComboChartV2Attributes> & RequiredAttributes<Component.ComboChartV2Attributes>);
67
+ static type(): Component.ComboChartV2Attributes['type'];
68
+ }
49
69
  export declare class PivotTable extends View<Component.DataTableAttributes> {
50
70
  constructor(attributes: Partial<Component.DataTableAttributes> & RequiredAttributes<Component.DataTableAttributes>);
51
71
  static type(): Component.DataTableAttributes['type'];
@@ -58,6 +78,10 @@ export declare class HorizontalBarChart extends View<Component.HorizontalBarChar
58
78
  constructor(attributes: Partial<Component.HorizontalBarChartAttributes> & RequiredAttributes<Component.HorizontalBarChartAttributes>);
59
79
  static type(): Component.HorizontalBarChartAttributes['type'];
60
80
  }
81
+ export declare class HorizontalBarChartV2 extends View<Component.HorizontalBarChartV2Attributes> {
82
+ constructor(attributes: Partial<Component.HorizontalBarChartV2Attributes> & RequiredAttributes<Component.HorizontalBarChartV2Attributes>);
83
+ static type(): Component.HorizontalBarChartV2Attributes['type'];
84
+ }
61
85
  export declare class MercatorMap extends View<Component.MercatorMapAttributes> {
62
86
  constructor(attributes: Partial<Component.MercatorMapAttributes> & RequiredAttributes<Component.MercatorMapAttributes>);
63
87
  static type(): Component.MercatorMapAttributes['type'];
@@ -82,4 +106,8 @@ export declare class RadarChart extends View<Component.RadarChartAttributes> {
82
106
  constructor(attributes: Partial<Component.RadarChartAttributes> & RequiredAttributes<Component.RadarChartAttributes>);
83
107
  static type(): Component.RadarChartAttributes['type'];
84
108
  }
109
+ export declare class FunnelChart extends View<Component.FunnelChartAttributes> {
110
+ constructor(attributes: Partial<Component.FunnelChartAttributes> & RequiredAttributes<Component.FunnelChartAttributes>);
111
+ static type(): Component.FunnelChartAttributes['type'];
112
+ }
85
113
  export {};
@@ -116,19 +116,29 @@ declare class VizzlyServices {
116
116
  static Header: typeof Header;
117
117
  static Library: typeof Library;
118
118
  static AreaChart: typeof Views.AreaChart;
119
+ static AreaChartV2: typeof Views.AreaChartV2;
119
120
  static LineChart: typeof Views.LineChart;
120
- static RadarChart: typeof Views.RadarChart;
121
+ static LineChartV2: typeof Views.LineChartV2;
121
122
  static BarChart: typeof Views.BarChart;
123
+ static BarChartV2: typeof Views.BarChartV2;
122
124
  static PieChart: typeof Views.PieChart;
125
+ static BubbleChart: typeof Views.BubbleChart;
126
+ static BubbleChartV2: typeof Views.BubbleChartV2;
123
127
  static ScatterChart: typeof Views.ScatterChart;
124
128
  static ComboChart: typeof Views.ComboChart;
129
+ static ComboChartV2: typeof Views.ComboChartV2;
125
130
  static PivotTable: typeof Views.PivotTable;
126
131
  static BasicTable: typeof Views.BasicTable;
127
132
  static HorizontalBarChart: typeof Views.HorizontalBarChart;
133
+ static HorizontalBarChartV2: typeof Views.HorizontalBarChartV2;
128
134
  static MercatorMap: typeof Views.MercatorMap;
129
135
  static SingleStat: typeof Views.SingleStat;
130
136
  static Progress: typeof Views.Progress;
137
+ static RichText: typeof Views.RichText;
131
138
  static WaterfallChart: typeof Views.WaterfallChart;
139
+ static FunnelChart: typeof Views.FunnelChart;
140
+ static SunburstChart: typeof Views.SunburstChart;
141
+ static RadarChart: typeof Views.RadarChart;
132
142
  }
133
143
  export type UpdateDashboardParams = {
134
144
  dashboardId: string;
package/package.json CHANGED
@@ -31,7 +31,7 @@
31
31
  "fix-type-alias": "tsc-alias -p tsconfig.types.json",
32
32
  "prepare": "yarn build"
33
33
  },
34
- "version": "0.15.0-dev-f576f0918251ec7901abbda943caec672e40c29c",
34
+ "version": "0.15.0-dev-22a3a4d82d007a71e3d303cc3550ce20bed7a1e9",
35
35
  "dependencies": {
36
36
  "@vizzly/api-client": "0.0.57",
37
37
  "@vizzly/joi": "^17.11.0",