igniteui-webcomponents-dashboards 5.2.0 → 5.3.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.
- package/bundles/igniteui-webcomponents-dashboards.umd.js +474 -327
- package/bundles/igniteui-webcomponents-dashboards.umd.min.js +1 -1
- package/esm2015/lib/DataSeriesToDescriptionAdapter_combined.js +371 -321
- package/esm2015/lib/ValueGetterResult.js +35 -0
- package/esm2015/lib/igc-dashboard-tile-component.js +40 -10
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/DataSeriesToDescriptionAdapter_combined.js +379 -317
- package/esm5/lib/ValueGetterResult.js +45 -0
- package/esm5/lib/igc-dashboard-tile-component.js +52 -10
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-dashboards.js +446 -332
- package/fesm5/igniteui-webcomponents-dashboards.js +474 -328
- package/lib/DataSeriesToDescriptionAdapter_combined.d.ts +87 -74
- package/lib/ValueGetterResult.d.ts +14 -0
- package/lib/igc-dashboard-tile-component.d.ts +15 -0
- package/package.json +8 -8
- package/public_api.d.ts +1 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
|
+
import { Base, markType } from "igniteui-webcomponents-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var ValueGetterResult = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(ValueGetterResult, _super);
|
|
14
|
+
function ValueGetterResult(a, b) {
|
|
15
|
+
var _this = _super.call(this) || this;
|
|
16
|
+
_this._value = null;
|
|
17
|
+
_this._nullIsValue = false;
|
|
18
|
+
_this.value = a;
|
|
19
|
+
_this.nullIsValue = b;
|
|
20
|
+
return _this;
|
|
21
|
+
}
|
|
22
|
+
Object.defineProperty(ValueGetterResult.prototype, "value", {
|
|
23
|
+
get: function () {
|
|
24
|
+
return this._value;
|
|
25
|
+
},
|
|
26
|
+
set: function (a) {
|
|
27
|
+
this._value = a;
|
|
28
|
+
},
|
|
29
|
+
enumerable: false,
|
|
30
|
+
configurable: true
|
|
31
|
+
});
|
|
32
|
+
Object.defineProperty(ValueGetterResult.prototype, "nullIsValue", {
|
|
33
|
+
get: function () {
|
|
34
|
+
return this._nullIsValue;
|
|
35
|
+
},
|
|
36
|
+
set: function (a) {
|
|
37
|
+
this._nullIsValue = a;
|
|
38
|
+
},
|
|
39
|
+
enumerable: false,
|
|
40
|
+
configurable: true
|
|
41
|
+
});
|
|
42
|
+
ValueGetterResult.$t = markType(ValueGetterResult, 'ValueGetterResult');
|
|
43
|
+
return ValueGetterResult;
|
|
44
|
+
}(Base));
|
|
45
|
+
export { ValueGetterResult };
|
|
@@ -974,11 +974,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
974
974
|
* Gets the brush to use for the Category axis major strokes, if applicable.
|
|
975
975
|
*/
|
|
976
976
|
get: function () {
|
|
977
|
-
return brushToString(this.i.
|
|
977
|
+
return brushToString(this.i.ik);
|
|
978
978
|
},
|
|
979
979
|
set: function (v) {
|
|
980
|
-
this.i.
|
|
981
|
-
this._a("categoryAxisMajorStroke", brushToString(this.i.
|
|
980
|
+
this.i.ik = stringToBrush(v);
|
|
981
|
+
this._a("categoryAxisMajorStroke", brushToString(this.i.ik));
|
|
982
982
|
},
|
|
983
983
|
enumerable: false,
|
|
984
984
|
configurable: true
|
|
@@ -1034,6 +1034,48 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1034
1034
|
enumerable: false,
|
|
1035
1035
|
configurable: true
|
|
1036
1036
|
});
|
|
1037
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "valueLinesGlobalAverageBrush", {
|
|
1038
|
+
/**
|
|
1039
|
+
* Gets or sets the color for GlobalAverage value lines.
|
|
1040
|
+
*/
|
|
1041
|
+
get: function () {
|
|
1042
|
+
return brushToString(this.i.il);
|
|
1043
|
+
},
|
|
1044
|
+
set: function (v) {
|
|
1045
|
+
this.i.il = stringToBrush(v);
|
|
1046
|
+
this._a("valueLinesGlobalAverageBrush", brushToString(this.i.il));
|
|
1047
|
+
},
|
|
1048
|
+
enumerable: false,
|
|
1049
|
+
configurable: true
|
|
1050
|
+
});
|
|
1051
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "valueLinesGlobalMinimumBrush", {
|
|
1052
|
+
/**
|
|
1053
|
+
* Gets or sets the color for GlobalMinimum value lines.
|
|
1054
|
+
*/
|
|
1055
|
+
get: function () {
|
|
1056
|
+
return brushToString(this.i.io);
|
|
1057
|
+
},
|
|
1058
|
+
set: function (v) {
|
|
1059
|
+
this.i.io = stringToBrush(v);
|
|
1060
|
+
this._a("valueLinesGlobalMinimumBrush", brushToString(this.i.io));
|
|
1061
|
+
},
|
|
1062
|
+
enumerable: false,
|
|
1063
|
+
configurable: true
|
|
1064
|
+
});
|
|
1065
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "valueLinesGlobalMaximumBrush", {
|
|
1066
|
+
/**
|
|
1067
|
+
* Gets or sets the color for GlobalMaximum value lines.
|
|
1068
|
+
*/
|
|
1069
|
+
get: function () {
|
|
1070
|
+
return brushToString(this.i.im);
|
|
1071
|
+
},
|
|
1072
|
+
set: function (v) {
|
|
1073
|
+
this.i.im = stringToBrush(v);
|
|
1074
|
+
this._a("valueLinesGlobalMaximumBrush", brushToString(this.i.im));
|
|
1075
|
+
},
|
|
1076
|
+
enumerable: false,
|
|
1077
|
+
configurable: true
|
|
1078
|
+
});
|
|
1037
1079
|
Object.defineProperty(IgcDashboardTileComponent.prototype, "autoCalloutsVisible", {
|
|
1038
1080
|
/**
|
|
1039
1081
|
* Gets or sets if the auto value callouts should be displayed.
|
|
@@ -1151,11 +1193,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1151
1193
|
* Gets or sets the color to use for the background of the component.
|
|
1152
1194
|
*/
|
|
1153
1195
|
get: function () {
|
|
1154
|
-
return brushToString(this.i.
|
|
1196
|
+
return brushToString(this.i.ij);
|
|
1155
1197
|
},
|
|
1156
1198
|
set: function (v) {
|
|
1157
|
-
this.i.
|
|
1158
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
1199
|
+
this.i.ij = stringToBrush(v);
|
|
1200
|
+
this._a("backgroundColor", brushToString(this.i.ij));
|
|
1159
1201
|
},
|
|
1160
1202
|
enumerable: false,
|
|
1161
1203
|
configurable: true
|
|
@@ -1285,7 +1327,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1285
1327
|
this._inStyling = false;
|
|
1286
1328
|
};
|
|
1287
1329
|
IgcDashboardTileComponent.prototype.updateSettingsValue = function (key, value) {
|
|
1288
|
-
this.i.
|
|
1330
|
+
this.i.h9(key, value);
|
|
1289
1331
|
};
|
|
1290
1332
|
IgcDashboardTileComponent.prototype.getSettingsValue = function (key) {
|
|
1291
1333
|
var iv = this.i.er(key);
|
|
@@ -1296,10 +1338,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1296
1338
|
return (iv);
|
|
1297
1339
|
};
|
|
1298
1340
|
IgcDashboardTileComponent.prototype.clearSettings = function () {
|
|
1299
|
-
this.i.
|
|
1341
|
+
this.i.gx();
|
|
1300
1342
|
};
|
|
1301
1343
|
IgcDashboardTileComponent.prototype.removeSettingsValue = function (key) {
|
|
1302
|
-
this.i.
|
|
1344
|
+
this.i.hx(key);
|
|
1303
1345
|
};
|
|
1304
1346
|
IgcDashboardTileComponent.prototype.zoomIn = function (percentage) {
|
|
1305
1347
|
this.i.zoomIn(percentage);
|
|
@@ -1319,7 +1361,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1319
1361
|
this.i.resetZoom();
|
|
1320
1362
|
};
|
|
1321
1363
|
IgcDashboardTileComponent.prototype.onUIReady = function () {
|
|
1322
|
-
this.i.
|
|
1364
|
+
this.i.hq();
|
|
1323
1365
|
};
|
|
1324
1366
|
IgcDashboardTileComponent.prototype.getDesiredToolbarActions = function () {
|
|
1325
1367
|
var iv = this.i.getDesiredToolbarActions();
|
package/esm5/public_api.js
CHANGED
|
@@ -31,6 +31,7 @@ export * from './lib/DashboardTileCustomizationCollection';
|
|
|
31
31
|
export * from './lib/DashboardTileCustomization';
|
|
32
32
|
export * from './lib/igc-dashboard-tile-customization-component';
|
|
33
33
|
export * from './lib/igc-dashboard-tile-customization-module';
|
|
34
|
+
export * from './lib/ValueGetterResult';
|
|
34
35
|
export * from './lib/DataSeriesToDescriptionCustomizations';
|
|
35
36
|
export * from './lib/DashboardTileToolbarProvider';
|
|
36
37
|
export * from './lib/DashboardTileGalleryIconInfo';
|