igniteui-webcomponents-dashboards 5.3.0 → 5.4.0

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.
@@ -18,6 +18,7 @@ import { IgcDashboardTileSortDescriptionCollection } from "./igc-dashboard-tile-
18
18
  import { IgcDashboardTileCustomizationComponent } from "./igc-dashboard-tile-customization-component";
19
19
  import { IgcDashboardTileCustomizationCollection } from "./igc-dashboard-tile-customization-collection";
20
20
  import { IgcDashboardTileChangingContentEventArgs } from "./igc-dashboard-tile-changing-content-event-args";
21
+ import { IgcTrendLineTypeCollection } from "igniteui-webcomponents-charts";
21
22
  export declare class IgcDashboardTileComponent extends IgcHTMLElement {
22
23
  private _height;
23
24
  private _width;
@@ -187,6 +188,18 @@ export declare class IgcDashboardTileComponent extends IgcHTMLElement {
187
188
  */
188
189
  get trendLineType(): TrendLineType;
189
190
  set trendLineType(v: TrendLineType);
191
+ /**
192
+ * Gets or sets the palette of brushes to used for coloring trend lines in this chart.
193
+ * The value provided should be an array of CSS color strings or JavaScript objects defining gradients. Optionally the first element can be a string reading "RGB" or "HSV" to specify the interpolation mode of the collection
194
+ */
195
+ get trendLineBrushes(): string[];
196
+ set trendLineBrushes(v: string[]);
197
+ private _trendLineTypes;
198
+ /**
199
+ * Gets or sets what trendlines to use in the chart.
200
+ */
201
+ get trendLineTypes(): IgcTrendLineTypeCollection;
202
+ set trendLineTypes(v: IgcTrendLineTypeCollection);
190
203
  /**
191
204
  * Gets or sets whether the dashboard tile should use a faded skeleton style for mock data.
192
205
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-webcomponents-dashboards",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "Ignite UI Web Components layout components.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-webcomponents-dashboards",
6
6
  "keywords": [
@@ -15,13 +15,13 @@
15
15
  "tslib": "^2.3.1"
16
16
  },
17
17
  "peerDependencies": {
18
- "igniteui-webcomponents-core": "5.3.0",
19
- "igniteui-webcomponents-inputs": "5.3.0",
20
- "igniteui-webcomponents-layouts": "5.3.0",
21
- "igniteui-webcomponents-grids": "5.3.0",
22
- "igniteui-webcomponents-maps": "5.3.0",
23
- "igniteui-webcomponents-gauges": "5.3.0",
24
- "igniteui-webcomponents-charts": "5.3.0"
18
+ "igniteui-webcomponents-core": "5.4.0",
19
+ "igniteui-webcomponents-inputs": "5.4.0",
20
+ "igniteui-webcomponents-layouts": "5.4.0",
21
+ "igniteui-webcomponents-grids": "5.4.0",
22
+ "igniteui-webcomponents-maps": "5.4.0",
23
+ "igniteui-webcomponents-gauges": "5.4.0",
24
+ "igniteui-webcomponents-charts": "5.4.0"
25
25
  },
26
26
  "sideEffects": false,
27
27
  "typings": "igniteui-webcomponents-dashboards.d.ts",