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
|
@@ -57,6 +57,49 @@ var DescriptionValueLookupHelper = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
57
57
|
return DescriptionValueLookupHelper;
|
|
58
58
|
}(Base));
|
|
59
59
|
|
|
60
|
+
/*
|
|
61
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
62
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
63
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
64
|
+
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.
|
|
65
|
+
*/
|
|
66
|
+
/**
|
|
67
|
+
* @hidden
|
|
68
|
+
*/
|
|
69
|
+
var ValueGetterResult = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
70
|
+
__extends(ValueGetterResult, _super);
|
|
71
|
+
function ValueGetterResult(a, b) {
|
|
72
|
+
var _this = _super.call(this) || this;
|
|
73
|
+
_this._value = null;
|
|
74
|
+
_this._nullIsValue = false;
|
|
75
|
+
_this.value = a;
|
|
76
|
+
_this.nullIsValue = b;
|
|
77
|
+
return _this;
|
|
78
|
+
}
|
|
79
|
+
Object.defineProperty(ValueGetterResult.prototype, "value", {
|
|
80
|
+
get: function () {
|
|
81
|
+
return this._value;
|
|
82
|
+
},
|
|
83
|
+
set: function (a) {
|
|
84
|
+
this._value = a;
|
|
85
|
+
},
|
|
86
|
+
enumerable: false,
|
|
87
|
+
configurable: true
|
|
88
|
+
});
|
|
89
|
+
Object.defineProperty(ValueGetterResult.prototype, "nullIsValue", {
|
|
90
|
+
get: function () {
|
|
91
|
+
return this._nullIsValue;
|
|
92
|
+
},
|
|
93
|
+
set: function (a) {
|
|
94
|
+
this._nullIsValue = a;
|
|
95
|
+
},
|
|
96
|
+
enumerable: false,
|
|
97
|
+
configurable: true
|
|
98
|
+
});
|
|
99
|
+
ValueGetterResult.$t = markType(ValueGetterResult, 'ValueGetterResult');
|
|
100
|
+
return ValueGetterResult;
|
|
101
|
+
}(Base));
|
|
102
|
+
|
|
60
103
|
/*
|
|
61
104
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
62
105
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -2490,7 +2533,7 @@ var DashboardTileView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2490
2533
|
return;
|
|
2491
2534
|
}
|
|
2492
2535
|
this.k = a;
|
|
2493
|
-
this.b.
|
|
2536
|
+
this.b.hq();
|
|
2494
2537
|
};
|
|
2495
2538
|
DashboardTileView.prototype.q = function () {
|
|
2496
2539
|
if (KeyFrameAnimationFactory.h == null) {
|
|
@@ -2540,7 +2583,7 @@ var DashboardTileView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2540
2583
|
DashboardTileView.prototype.p = function () {
|
|
2541
2584
|
this.e = true;
|
|
2542
2585
|
if (this.f()) {
|
|
2543
|
-
this.b.
|
|
2586
|
+
this.b.hp();
|
|
2544
2587
|
}
|
|
2545
2588
|
};
|
|
2546
2589
|
DashboardTileView.$t = markType(DashboardTileView, 'DashboardTileView');
|
|
@@ -2670,9 +2713,12 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2670
2713
|
_this._selectedSeriesItems = null;
|
|
2671
2714
|
_this.o = null;
|
|
2672
2715
|
_this.p = null;
|
|
2673
|
-
_this.
|
|
2716
|
+
_this.ie = null;
|
|
2674
2717
|
_this.ah = null;
|
|
2675
2718
|
_this.s = null;
|
|
2719
|
+
_this.ig = null;
|
|
2720
|
+
_this.ii = null;
|
|
2721
|
+
_this.ih = null;
|
|
2676
2722
|
_this.cb = false;
|
|
2677
2723
|
_this.cc = true;
|
|
2678
2724
|
_this.cj = false;
|
|
@@ -2681,7 +2727,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2681
2727
|
_this.d5 = 60;
|
|
2682
2728
|
_this.bs = 0;
|
|
2683
2729
|
_this.bu = 0;
|
|
2684
|
-
_this.
|
|
2730
|
+
_this.id = null;
|
|
2685
2731
|
_this.ew = null;
|
|
2686
2732
|
_this.bx = ((function () {
|
|
2687
2733
|
var $ret = new FontInfo();
|
|
@@ -2717,9 +2763,9 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2717
2763
|
_this.bz = null;
|
|
2718
2764
|
_this.selectedSeriesItems = new ChartSelectedItemCollection();
|
|
2719
2765
|
var a = _this.selectedSeriesItems;
|
|
2720
|
-
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.
|
|
2766
|
+
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.h0));
|
|
2721
2767
|
var b = _this.selectedSeriesItems;
|
|
2722
|
-
b.collectionResetting = delegateCombine(b.collectionResetting, runOn(_this, _this.
|
|
2768
|
+
b.collectionResetting = delegateCombine(b.collectionResetting, runOn(_this, _this.h1));
|
|
2723
2769
|
NativeUIInputsFactory.n();
|
|
2724
2770
|
NativeUIXInputsFactory.m();
|
|
2725
2771
|
var c = new DashboardTileView();
|
|
@@ -2728,16 +2774,16 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2728
2774
|
_this.a4.x();
|
|
2729
2775
|
_this.ab = _this.ad(true);
|
|
2730
2776
|
var d = _this.ab;
|
|
2731
|
-
d.removingUnsupported = delegateCombine(d.removingUnsupported, runOn(_this, _this.
|
|
2777
|
+
d.removingUnsupported = delegateCombine(d.removingUnsupported, runOn(_this, _this.g0));
|
|
2732
2778
|
var e = _this.ab.dataSeries;
|
|
2733
|
-
e.collectionChanged = delegateCombine(e.collectionChanged, runOn(_this, _this.
|
|
2779
|
+
e.collectionChanged = delegateCombine(e.collectionChanged, runOn(_this, _this.hj));
|
|
2734
2780
|
_this.ac = _this.ad(false);
|
|
2735
2781
|
var f = _this.ac.dataSeries;
|
|
2736
|
-
f.collectionChanged = delegateCombine(f.collectionChanged, runOn(_this, _this.
|
|
2782
|
+
f.collectionChanged = delegateCombine(f.collectionChanged, runOn(_this, _this.hm));
|
|
2737
2783
|
var g = _this.ac;
|
|
2738
|
-
g.removingUnsupported = delegateCombine(g.removingUnsupported, runOn(_this, _this.
|
|
2784
|
+
g.removingUnsupported = delegateCombine(g.removingUnsupported, runOn(_this, _this.g0));
|
|
2739
2785
|
var h = _this.customizations;
|
|
2740
|
-
h.collectionChanged = delegateCombine(h.collectionChanged, runOn(_this, _this.
|
|
2786
|
+
h.collectionChanged = delegateCombine(h.collectionChanged, runOn(_this, _this.gz));
|
|
2741
2787
|
return _this;
|
|
2742
2788
|
}
|
|
2743
2789
|
DashboardTile.prototype.onAttachedToUI = function () {
|
|
@@ -2756,10 +2802,10 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2756
2802
|
DashboardTile.prototype.onCustomizationsChanged = function (a) {
|
|
2757
2803
|
this.g = a;
|
|
2758
2804
|
this.ci = true;
|
|
2759
|
-
this.
|
|
2760
|
-
this.
|
|
2805
|
+
this.gy();
|
|
2806
|
+
this.hv();
|
|
2761
2807
|
};
|
|
2762
|
-
DashboardTile.prototype.
|
|
2808
|
+
DashboardTile.prototype.gy = function () {
|
|
2763
2809
|
var e_3, _a;
|
|
2764
2810
|
if (this.el != null) {
|
|
2765
2811
|
var a = this.el;
|
|
@@ -2809,7 +2855,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2809
2855
|
var c = new CaptureImageSettings();
|
|
2810
2856
|
c.b = true;
|
|
2811
2857
|
c.a = 0;
|
|
2812
|
-
b.imageCaptured = delegateCombine(b.imageCaptured, runOn(this, this.
|
|
2858
|
+
b.imageCaptured = delegateCombine(b.imageCaptured, runOn(this, this.hn));
|
|
2813
2859
|
b.nb(c);
|
|
2814
2860
|
b.al.q();
|
|
2815
2861
|
}
|
|
@@ -2818,11 +2864,11 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2818
2864
|
this.ca = null;
|
|
2819
2865
|
}
|
|
2820
2866
|
};
|
|
2821
|
-
DashboardTile.prototype.
|
|
2867
|
+
DashboardTile.prototype.hn = function (a, b) {
|
|
2822
2868
|
this.ce = false;
|
|
2823
2869
|
if (typeCast(XamDataChart.$, this.et) !== null) {
|
|
2824
2870
|
var c = this.et;
|
|
2825
|
-
c.imageCaptured = delegateRemove(c.imageCaptured, runOn(this, this.
|
|
2871
|
+
c.imageCaptured = delegateRemove(c.imageCaptured, runOn(this, this.hn));
|
|
2826
2872
|
}
|
|
2827
2873
|
if (this.ca != null) {
|
|
2828
2874
|
this.ca(this, b);
|
|
@@ -2840,7 +2886,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2840
2886
|
get: function () {
|
|
2841
2887
|
if (this.dq == null) {
|
|
2842
2888
|
this.dq = new List$1(DataSeriesType_$type, 0);
|
|
2843
|
-
this.
|
|
2889
|
+
this.gt(this.dq, ((function () {
|
|
2844
2890
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2845
2891
|
$ret.add(2);
|
|
2846
2892
|
$ret.add(1);
|
|
@@ -2853,12 +2899,12 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2853
2899
|
$ret.add(8);
|
|
2854
2900
|
return $ret;
|
|
2855
2901
|
})()));
|
|
2856
|
-
this.
|
|
2902
|
+
this.gt(this.dq, ((function () {
|
|
2857
2903
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2858
2904
|
$ret.add(34);
|
|
2859
2905
|
return $ret;
|
|
2860
2906
|
})()));
|
|
2861
|
-
this.
|
|
2907
|
+
this.gt(this.dq, ((function () {
|
|
2862
2908
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2863
2909
|
$ret.add(11);
|
|
2864
2910
|
$ret.add(12);
|
|
@@ -2869,7 +2915,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2869
2915
|
$ret.add(15);
|
|
2870
2916
|
return $ret;
|
|
2871
2917
|
})()));
|
|
2872
|
-
this.
|
|
2918
|
+
this.gt(this.dq, ((function () {
|
|
2873
2919
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2874
2920
|
$ret.add(11);
|
|
2875
2921
|
$ret.add(12);
|
|
@@ -2882,7 +2928,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2882
2928
|
$ret.add(19);
|
|
2883
2929
|
return $ret;
|
|
2884
2930
|
})()));
|
|
2885
|
-
this.
|
|
2931
|
+
this.gt(this.dq, ((function () {
|
|
2886
2932
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2887
2933
|
$ret.add(38);
|
|
2888
2934
|
$ret.add(39);
|
|
@@ -2893,12 +2939,12 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2893
2939
|
$ret.add(44);
|
|
2894
2940
|
return $ret;
|
|
2895
2941
|
})()));
|
|
2896
|
-
this.
|
|
2942
|
+
this.gt(this.dq, ((function () {
|
|
2897
2943
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2898
2944
|
$ret.add(20);
|
|
2899
2945
|
return $ret;
|
|
2900
2946
|
})()));
|
|
2901
|
-
this.
|
|
2947
|
+
this.gt(this.dq, ((function () {
|
|
2902
2948
|
var $ret = new List$1(DataSeriesType_$type, 0);
|
|
2903
2949
|
$ret.add(37);
|
|
2904
2950
|
$ret.add(36);
|
|
@@ -2910,7 +2956,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2910
2956
|
enumerable: false,
|
|
2911
2957
|
configurable: true
|
|
2912
2958
|
});
|
|
2913
|
-
DashboardTile.prototype.
|
|
2959
|
+
DashboardTile.prototype.gt = function (a, b) {
|
|
2914
2960
|
var e_4, _a;
|
|
2915
2961
|
try {
|
|
2916
2962
|
for (var _b = __values(fromEnum(b)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -3017,14 +3063,14 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3017
3063
|
enumerable: false,
|
|
3018
3064
|
configurable: true
|
|
3019
3065
|
});
|
|
3020
|
-
DashboardTile.prototype.
|
|
3066
|
+
DashboardTile.prototype.gz = function (a, b) {
|
|
3021
3067
|
this.cq = true;
|
|
3022
|
-
this.
|
|
3068
|
+
this.hv();
|
|
3023
3069
|
};
|
|
3024
|
-
DashboardTile.prototype.
|
|
3070
|
+
DashboardTile.prototype.g0 = function (a, b) {
|
|
3025
3071
|
var c = a;
|
|
3026
3072
|
if (c == this.ab) {
|
|
3027
|
-
this.
|
|
3073
|
+
this.ia(b.a);
|
|
3028
3074
|
}
|
|
3029
3075
|
var d = b.a;
|
|
3030
3076
|
if (this.a6 != 0) {
|
|
@@ -3044,7 +3090,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3044
3090
|
}
|
|
3045
3091
|
return false;
|
|
3046
3092
|
};
|
|
3047
|
-
DashboardTile.prototype.
|
|
3093
|
+
DashboardTile.prototype.ia = function (a) {
|
|
3048
3094
|
var b = new List$1(DashboardTileVisualizationType_$type, 0);
|
|
3049
3095
|
var c = new HashSet$1(DashboardTileVisualizationType_$type, 0);
|
|
3050
3096
|
for (var d = a.getDataSeriesCount() - 1; d >= 0; d--) {
|
|
@@ -3116,11 +3162,11 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3116
3162
|
}
|
|
3117
3163
|
return null;
|
|
3118
3164
|
};
|
|
3119
|
-
DashboardTile.prototype.
|
|
3120
|
-
this.
|
|
3121
|
-
this.
|
|
3165
|
+
DashboardTile.prototype.h1 = function (a, b) {
|
|
3166
|
+
this.hb(function (c) { return c.selectedSeriesItems.clear(); });
|
|
3167
|
+
this.g9(function (c) { return c.selectedItems.clear(); });
|
|
3122
3168
|
};
|
|
3123
|
-
DashboardTile.prototype.
|
|
3169
|
+
DashboardTile.prototype.h0 = function (a, b) {
|
|
3124
3170
|
var e_5, _a, e_6, _b;
|
|
3125
3171
|
var _this = this;
|
|
3126
3172
|
if (this.cf) {
|
|
@@ -3129,7 +3175,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3129
3175
|
this.cf = true;
|
|
3130
3176
|
if (b.oldItems != null) {
|
|
3131
3177
|
var _loop_1 = function (c) {
|
|
3132
|
-
this_1.
|
|
3178
|
+
this_1.hb(function (d) {
|
|
3133
3179
|
var e_7, _a, e_8, _b;
|
|
3134
3180
|
var e = new List$1(ChartSelection.$, 0);
|
|
3135
3181
|
try {
|
|
@@ -3173,7 +3219,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3173
3219
|
}
|
|
3174
3220
|
}
|
|
3175
3221
|
});
|
|
3176
|
-
this_1.
|
|
3222
|
+
this_1.g9(function (d) {
|
|
3177
3223
|
var e_9, _a, e_10, _b;
|
|
3178
3224
|
var e = new List$1(Base.$, 0);
|
|
3179
3225
|
try {
|
|
@@ -3241,7 +3287,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3241
3287
|
}
|
|
3242
3288
|
if (b.newItems != null) {
|
|
3243
3289
|
var _loop_2 = function (d) {
|
|
3244
|
-
this_2.
|
|
3290
|
+
this_2.hb(function (e) {
|
|
3245
3291
|
var e_11, _a;
|
|
3246
3292
|
var f = false;
|
|
3247
3293
|
try {
|
|
@@ -3270,7 +3316,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3270
3316
|
}
|
|
3271
3317
|
e.selectedSeriesItems.add(d);
|
|
3272
3318
|
});
|
|
3273
|
-
this_2.
|
|
3319
|
+
this_2.g9(function (e) {
|
|
3274
3320
|
var e_12, _a;
|
|
3275
3321
|
var f = false;
|
|
3276
3322
|
try {
|
|
@@ -3332,26 +3378,26 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3332
3378
|
}
|
|
3333
3379
|
return false;
|
|
3334
3380
|
};
|
|
3335
|
-
DashboardTile.prototype.
|
|
3381
|
+
DashboardTile.prototype.hj = function (a, b) {
|
|
3336
3382
|
var c = b.oldItems == null ? "null" : b.oldItems.count.toString();
|
|
3337
3383
|
var d = b.newItems == null ? "null" : b.newItems.count.toString();
|
|
3338
3384
|
if (this.c4) {
|
|
3339
3385
|
return;
|
|
3340
3386
|
}
|
|
3341
|
-
var e = this.
|
|
3387
|
+
var e = this.hw(runOn(this, this.g3), this.c4);
|
|
3342
3388
|
this.c4 = e.p1;
|
|
3343
3389
|
};
|
|
3344
|
-
DashboardTile.prototype.
|
|
3390
|
+
DashboardTile.prototype.hm = function (a, b) {
|
|
3345
3391
|
var c = b.oldItems == null ? "null" : b.oldItems.count.toString();
|
|
3346
3392
|
var d = b.newItems == null ? "null" : b.newItems.count.toString();
|
|
3347
3393
|
if (this.c3) {
|
|
3348
3394
|
return;
|
|
3349
3395
|
}
|
|
3350
|
-
var e = this.
|
|
3396
|
+
var e = this.hw(runOn(this, this.g2), this.c3);
|
|
3351
3397
|
this.c3 = e.p1;
|
|
3352
3398
|
};
|
|
3353
|
-
DashboardTile.prototype.
|
|
3354
|
-
this.
|
|
3399
|
+
DashboardTile.prototype.g2 = function () {
|
|
3400
|
+
this.gw();
|
|
3355
3401
|
};
|
|
3356
3402
|
Object.defineProperty(DashboardTile.prototype, "ge", {
|
|
3357
3403
|
get: function () {
|
|
@@ -3361,13 +3407,13 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3361
3407
|
var b = this.ge;
|
|
3362
3408
|
if (a != b) {
|
|
3363
3409
|
this.e5 = a;
|
|
3364
|
-
this.
|
|
3410
|
+
this.ho("TileTitle", b, this.ge);
|
|
3365
3411
|
}
|
|
3366
3412
|
},
|
|
3367
3413
|
enumerable: false,
|
|
3368
3414
|
configurable: true
|
|
3369
3415
|
});
|
|
3370
|
-
DashboardTile.prototype.
|
|
3416
|
+
DashboardTile.prototype.hw = function (a, b) {
|
|
3371
3417
|
if (!b) {
|
|
3372
3418
|
b = true;
|
|
3373
3419
|
if (this.eh != null) {
|
|
@@ -3381,8 +3427,8 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3381
3427
|
p1: b
|
|
3382
3428
|
};
|
|
3383
3429
|
};
|
|
3384
|
-
DashboardTile.prototype.
|
|
3385
|
-
var a = this.
|
|
3430
|
+
DashboardTile.prototype.hv = function () {
|
|
3431
|
+
var a = this.hw(runOn(this, this.g3), this.c4);
|
|
3386
3432
|
this.c4 = a.p1;
|
|
3387
3433
|
};
|
|
3388
3434
|
DashboardTile.prototype.cu = function () {
|
|
@@ -3402,19 +3448,19 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3402
3448
|
}
|
|
3403
3449
|
return true;
|
|
3404
3450
|
};
|
|
3405
|
-
DashboardTile.prototype.
|
|
3451
|
+
DashboardTile.prototype.gw = function () {
|
|
3406
3452
|
this.c3 = false;
|
|
3407
3453
|
var a = false;
|
|
3408
3454
|
if (this.cu()) {
|
|
3409
3455
|
a = true;
|
|
3410
|
-
this.
|
|
3456
|
+
this.gu();
|
|
3411
3457
|
}
|
|
3412
3458
|
if (a) {
|
|
3413
|
-
this.
|
|
3414
|
-
this.
|
|
3459
|
+
this.g6();
|
|
3460
|
+
this.h6();
|
|
3415
3461
|
}
|
|
3416
3462
|
};
|
|
3417
|
-
DashboardTile.prototype.
|
|
3463
|
+
DashboardTile.prototype.g6 = function () {
|
|
3418
3464
|
var e_13, _a;
|
|
3419
3465
|
if (this.c4) {
|
|
3420
3466
|
var a = 0;
|
|
@@ -3448,10 +3494,10 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3448
3494
|
}
|
|
3449
3495
|
}
|
|
3450
3496
|
};
|
|
3451
|
-
DashboardTile.prototype.
|
|
3497
|
+
DashboardTile.prototype.h6 = function () {
|
|
3452
3498
|
this.dg.clear();
|
|
3453
3499
|
};
|
|
3454
|
-
DashboardTile.prototype.
|
|
3500
|
+
DashboardTile.prototype.gu = function () {
|
|
3455
3501
|
var e_14, _a;
|
|
3456
3502
|
var a = 0;
|
|
3457
3503
|
try {
|
|
@@ -3485,21 +3531,21 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3485
3531
|
var c = "series_" + (a.index + 1) + "_" + b;
|
|
3486
3532
|
return c;
|
|
3487
3533
|
};
|
|
3488
|
-
DashboardTile.prototype.
|
|
3534
|
+
DashboardTile.prototype.g3 = function () {
|
|
3489
3535
|
var a = false;
|
|
3490
3536
|
if (this.cu()) {
|
|
3491
3537
|
a = true;
|
|
3492
|
-
this.
|
|
3493
|
-
this.
|
|
3538
|
+
this.gu();
|
|
3539
|
+
this.g6();
|
|
3494
3540
|
}
|
|
3495
|
-
this.
|
|
3541
|
+
this.hy();
|
|
3496
3542
|
if (a) {
|
|
3497
|
-
this.
|
|
3543
|
+
this.h6();
|
|
3498
3544
|
}
|
|
3499
3545
|
};
|
|
3500
|
-
DashboardTile.prototype.
|
|
3546
|
+
DashboardTile.prototype.h9 = function (a, b) {
|
|
3501
3547
|
this.dk.item(a, b);
|
|
3502
|
-
this.
|
|
3548
|
+
this.hv();
|
|
3503
3549
|
};
|
|
3504
3550
|
DashboardTile.prototype.er = function (a) {
|
|
3505
3551
|
if (this.dk.containsKey(a)) {
|
|
@@ -3510,13 +3556,13 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3510
3556
|
DashboardTile.prototype.ct = function () {
|
|
3511
3557
|
return this.dk.count > 0;
|
|
3512
3558
|
};
|
|
3513
|
-
DashboardTile.prototype.
|
|
3559
|
+
DashboardTile.prototype.gx = function () {
|
|
3514
3560
|
this.dk.clear();
|
|
3515
|
-
this.
|
|
3561
|
+
this.hv();
|
|
3516
3562
|
};
|
|
3517
|
-
DashboardTile.prototype.
|
|
3563
|
+
DashboardTile.prototype.hx = function (a) {
|
|
3518
3564
|
this.dk.removeItem(a);
|
|
3519
|
-
this.
|
|
3565
|
+
this.hv();
|
|
3520
3566
|
};
|
|
3521
3567
|
Object.defineProperty(DashboardTile.prototype, "db", {
|
|
3522
3568
|
get: function () {
|
|
@@ -3525,7 +3571,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3525
3571
|
enumerable: false,
|
|
3526
3572
|
configurable: true
|
|
3527
3573
|
});
|
|
3528
|
-
DashboardTile.prototype.
|
|
3574
|
+
DashboardTile.prototype.hy = function () {
|
|
3529
3575
|
var _this = this;
|
|
3530
3576
|
this.c4 = false;
|
|
3531
3577
|
if (!this.db) {
|
|
@@ -3569,7 +3615,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3569
3615
|
d.m(this.dk);
|
|
3570
3616
|
d.addCoercion("VisibilityToBooleanConverter", runOn(this, this.ek));
|
|
3571
3617
|
d.addCoercion("BooleanToVisibilityConverter", runOn(this, this.ej));
|
|
3572
|
-
this.
|
|
3618
|
+
this.hz(d);
|
|
3573
3619
|
var e = new DataSeriesToDescriptionAdapter(d);
|
|
3574
3620
|
var f = this.ab.dataSeries.toArray();
|
|
3575
3621
|
f = this.l(f);
|
|
@@ -3588,7 +3634,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3588
3634
|
var n = m.properties;
|
|
3589
3635
|
this.g = PropertyEditorPanel.b(DashboardTile.bp, g.descriptionType, n);
|
|
3590
3636
|
this.ci = true;
|
|
3591
|
-
this.
|
|
3637
|
+
this.hy();
|
|
3592
3638
|
return;
|
|
3593
3639
|
}
|
|
3594
3640
|
}
|
|
@@ -3602,11 +3648,11 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3602
3648
|
if (!DashboardTile.bo.hasRef(this.fi)) {
|
|
3603
3649
|
DashboardTile.bo.provideRefValue(this.eo("content"), this.fi, this.ep());
|
|
3604
3650
|
}
|
|
3605
|
-
this.
|
|
3606
|
-
this.
|
|
3607
|
-
this.
|
|
3608
|
-
this.
|
|
3609
|
-
this.
|
|
3651
|
+
this.h2(g);
|
|
3652
|
+
this.h2(h);
|
|
3653
|
+
this.h2(i);
|
|
3654
|
+
this.h2(j);
|
|
3655
|
+
this.h2(k);
|
|
3610
3656
|
var u = new StringBuilder(0);
|
|
3611
3657
|
u.u("{");
|
|
3612
3658
|
u.u("\"descriptions\": {");
|
|
@@ -3669,7 +3715,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3669
3715
|
_this.et = _this.eq(x);
|
|
3670
3716
|
if (_this.cp) {
|
|
3671
3717
|
_this.cp = false;
|
|
3672
|
-
_this.
|
|
3718
|
+
_this.hc();
|
|
3673
3719
|
}
|
|
3674
3720
|
});
|
|
3675
3721
|
DashboardTile.bo.resolveRefValue(this.eo("grid"), this.fi + "/" + "dataGrid", function (x) { return _this.ei = _this.eq(x); });
|
|
@@ -3679,15 +3725,15 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3679
3725
|
this.el.f = DashboardTile.bo;
|
|
3680
3726
|
}
|
|
3681
3727
|
}
|
|
3682
|
-
DashboardTile.bo.provideRefValue(this.eo("content"), "ChartSelectedItemsChanged", runOn(this, this.
|
|
3683
|
-
DashboardTile.bo.provideRefValue(this.eo("content"), "PieChartSelectedItemsChanged", runOn(this, this.
|
|
3684
|
-
DashboardTile.bo.provideRefValue(this.eo("content"), "GridSelectedItemsChanged", runOn(this, this.
|
|
3685
|
-
DashboardTile.bo.provideRefValue(this.eo("editor"), "VisibilityConverter", runOn(this, this.
|
|
3728
|
+
DashboardTile.bo.provideRefValue(this.eo("content"), "ChartSelectedItemsChanged", runOn(this, this.gv));
|
|
3729
|
+
DashboardTile.bo.provideRefValue(this.eo("content"), "PieChartSelectedItemsChanged", runOn(this, this.hr));
|
|
3730
|
+
DashboardTile.bo.provideRefValue(this.eo("content"), "GridSelectedItemsChanged", runOn(this, this.g7));
|
|
3731
|
+
DashboardTile.bo.provideRefValue(this.eo("editor"), "VisibilityConverter", runOn(this, this.ic));
|
|
3686
3732
|
if (this.el != null) {
|
|
3687
|
-
this.
|
|
3733
|
+
this.ip();
|
|
3688
3734
|
}
|
|
3689
3735
|
};
|
|
3690
|
-
DashboardTile.prototype.
|
|
3736
|
+
DashboardTile.prototype.hz = function (a) {
|
|
3691
3737
|
var b = a.customizations;
|
|
3692
3738
|
b.o(this);
|
|
3693
3739
|
};
|
|
@@ -3922,7 +3968,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3922
3968
|
}
|
|
3923
3969
|
}
|
|
3924
3970
|
}
|
|
3925
|
-
this.
|
|
3971
|
+
this.hd(a);
|
|
3926
3972
|
return new DataSeriesToDescriptionCustomizations(a.toArray());
|
|
3927
3973
|
};
|
|
3928
3974
|
DashboardTile.prototype.bb = function () {
|
|
@@ -3936,7 +3982,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3936
3982
|
var c = this.dy(a);
|
|
3937
3983
|
return new DataSeriesToDescriptionCustomizations(c.toArray());
|
|
3938
3984
|
};
|
|
3939
|
-
DashboardTile.prototype.
|
|
3985
|
+
DashboardTile.prototype.hd = function (a) {
|
|
3940
3986
|
a.add(((function () {
|
|
3941
3987
|
var $ret = new DataSeriesToDescriptionCustomization();
|
|
3942
3988
|
$ret.matchType = "DataChart";
|
|
@@ -3974,12 +4020,12 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3974
4020
|
var e = DashboardTileCustomization.a(d);
|
|
3975
4021
|
if (d.h != null) {
|
|
3976
4022
|
var f = d.h(this_3);
|
|
3977
|
-
if (f == null) {
|
|
4023
|
+
if (f.value == null && !f.nullIsValue) {
|
|
3978
4024
|
return "continue";
|
|
3979
4025
|
}
|
|
3980
|
-
e.propertyValue = f;
|
|
4026
|
+
e.propertyValue = f.value;
|
|
3981
4027
|
if (d.g) {
|
|
3982
|
-
e.e = function (g) { return d.h(g); };
|
|
4028
|
+
e.e = function (g) { return d.h(g).value; };
|
|
3983
4029
|
}
|
|
3984
4030
|
}
|
|
3985
4031
|
b.add(e);
|
|
@@ -3990,7 +4036,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3990
4036
|
}
|
|
3991
4037
|
return b;
|
|
3992
4038
|
};
|
|
3993
|
-
DashboardTile.prototype.
|
|
4039
|
+
DashboardTile.prototype.ic = function (a, b) {
|
|
3994
4040
|
var c = b.value;
|
|
3995
4041
|
if (typeCast(Boolean_$type, c) !== null) {
|
|
3996
4042
|
if (c) {
|
|
@@ -4001,21 +4047,21 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4001
4047
|
}
|
|
4002
4048
|
}
|
|
4003
4049
|
};
|
|
4004
|
-
DashboardTile.prototype.
|
|
4050
|
+
DashboardTile.prototype.gv = function (a, b) {
|
|
4005
4051
|
b = (b.i);
|
|
4006
|
-
this.
|
|
4052
|
+
this.hi(b);
|
|
4007
4053
|
};
|
|
4008
|
-
DashboardTile.prototype.
|
|
4054
|
+
DashboardTile.prototype.hr = function (a, b) {
|
|
4009
4055
|
b = (b.i);
|
|
4010
|
-
this.
|
|
4056
|
+
this.hi(b);
|
|
4011
4057
|
};
|
|
4012
|
-
DashboardTile.prototype.
|
|
4058
|
+
DashboardTile.prototype.g7 = function (a, b) {
|
|
4013
4059
|
b = (b.i);
|
|
4014
|
-
this.
|
|
4060
|
+
this.hl(b);
|
|
4015
4061
|
};
|
|
4016
|
-
DashboardTile.prototype.
|
|
4062
|
+
DashboardTile.prototype.hl = function (a) {
|
|
4017
4063
|
var _this = this;
|
|
4018
|
-
this.
|
|
4064
|
+
this.hb(function (b) {
|
|
4019
4065
|
var e_15, _a;
|
|
4020
4066
|
if (_this.cf) {
|
|
4021
4067
|
return;
|
|
@@ -4055,7 +4101,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4055
4101
|
}
|
|
4056
4102
|
_this.cf = false;
|
|
4057
4103
|
});
|
|
4058
|
-
this.
|
|
4104
|
+
this.ha(function (b) {
|
|
4059
4105
|
var e_16, _a;
|
|
4060
4106
|
if (_this.cf) {
|
|
4061
4107
|
return;
|
|
@@ -4096,9 +4142,9 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4096
4142
|
_this.cf = false;
|
|
4097
4143
|
});
|
|
4098
4144
|
};
|
|
4099
|
-
DashboardTile.prototype.
|
|
4145
|
+
DashboardTile.prototype.hi = function (a) {
|
|
4100
4146
|
var _this = this;
|
|
4101
|
-
this.
|
|
4147
|
+
this.g9(function (b) {
|
|
4102
4148
|
var e_17, _a;
|
|
4103
4149
|
if (_this.cf) {
|
|
4104
4150
|
return;
|
|
@@ -4136,7 +4182,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4136
4182
|
var b = this.ee;
|
|
4137
4183
|
this.ee = a;
|
|
4138
4184
|
if (b != a) {
|
|
4139
|
-
this.
|
|
4185
|
+
this.ho("MainContent", b, a);
|
|
4140
4186
|
}
|
|
4141
4187
|
},
|
|
4142
4188
|
enumerable: false,
|
|
@@ -4150,7 +4196,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4150
4196
|
var b = this.ea;
|
|
4151
4197
|
this.ea = a;
|
|
4152
4198
|
if (b != a) {
|
|
4153
|
-
this.
|
|
4199
|
+
this.ho("DataGrid", b, a);
|
|
4154
4200
|
}
|
|
4155
4201
|
},
|
|
4156
4202
|
enumerable: false,
|
|
@@ -4164,7 +4210,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4164
4210
|
var b = this.eb;
|
|
4165
4211
|
this.eb = a;
|
|
4166
4212
|
if (b != a) {
|
|
4167
|
-
this.
|
|
4213
|
+
this.ho("Editor", b, a);
|
|
4168
4214
|
}
|
|
4169
4215
|
},
|
|
4170
4216
|
enumerable: false,
|
|
@@ -4183,7 +4229,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4183
4229
|
DashboardTile.prototype.ep = function () {
|
|
4184
4230
|
return this.externalObject;
|
|
4185
4231
|
};
|
|
4186
|
-
DashboardTile.prototype.
|
|
4232
|
+
DashboardTile.prototype.h2 = function (a) {
|
|
4187
4233
|
if (a == null) {
|
|
4188
4234
|
return;
|
|
4189
4235
|
}
|
|
@@ -4222,7 +4268,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4222
4268
|
DashboardTile.f7 = function (a) {
|
|
4223
4269
|
return DashboardTileView.n(a);
|
|
4224
4270
|
};
|
|
4225
|
-
DashboardTile.prototype.
|
|
4271
|
+
DashboardTile.prototype.h4 = function (a, b, c) {
|
|
4226
4272
|
if (a) {
|
|
4227
4273
|
b.e = c;
|
|
4228
4274
|
}
|
|
@@ -4230,7 +4276,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4230
4276
|
b.n(c);
|
|
4231
4277
|
}
|
|
4232
4278
|
};
|
|
4233
|
-
DashboardTile.prototype.
|
|
4279
|
+
DashboardTile.prototype.h3 = function (a, b, c) {
|
|
4234
4280
|
if (a) {
|
|
4235
4281
|
b.syncTarget = c;
|
|
4236
4282
|
}
|
|
@@ -4238,7 +4284,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4238
4284
|
b.o(c);
|
|
4239
4285
|
}
|
|
4240
4286
|
};
|
|
4241
|
-
DashboardTile.prototype.
|
|
4287
|
+
DashboardTile.prototype.h5 = function (a, b, c) {
|
|
4242
4288
|
if (a) {
|
|
4243
4289
|
b.e = c;
|
|
4244
4290
|
}
|
|
@@ -4476,12 +4522,12 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4476
4522
|
this.bd = new FilterExpressionCollection();
|
|
4477
4523
|
this.be = new FilterExpressionCollection();
|
|
4478
4524
|
}
|
|
4479
|
-
this.
|
|
4480
|
-
this.
|
|
4481
|
-
this.
|
|
4482
|
-
this.
|
|
4483
|
-
this.
|
|
4484
|
-
this.
|
|
4525
|
+
this.h4(a, this.ax, b.sortDescriptions);
|
|
4526
|
+
this.h4(a, this.as, b.groupDescriptions);
|
|
4527
|
+
this.h3(a, this.bh, b.filterExpressions);
|
|
4528
|
+
this.h3(a, this.bi, b.highlightFilterExpressions);
|
|
4529
|
+
this.h5(a, this.a1, b.summaryDescriptions);
|
|
4530
|
+
this.h4(a, this.at, b.postSortDescriptions);
|
|
4485
4531
|
if (a) {
|
|
4486
4532
|
this.bl = new SortGroupParser();
|
|
4487
4533
|
this.bm = new SummaryParser();
|
|
@@ -4518,30 +4564,30 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4518
4564
|
}
|
|
4519
4565
|
{
|
|
4520
4566
|
if (this.bh.k.count == 0) {
|
|
4521
|
-
this.
|
|
4567
|
+
this.h3(a, this.bf, b.filterExpressions);
|
|
4522
4568
|
}
|
|
4523
4569
|
}
|
|
4524
4570
|
{
|
|
4525
4571
|
if (this.bi.k.count == 0) {
|
|
4526
|
-
this.
|
|
4572
|
+
this.h3(a, this.bg, b.highlightFilterExpressions);
|
|
4527
4573
|
}
|
|
4528
4574
|
}
|
|
4529
4575
|
{
|
|
4530
4576
|
if (this.ax.j.count == 0) {
|
|
4531
|
-
this.
|
|
4577
|
+
this.h4(a, this.aq, b.sortDescriptions);
|
|
4532
4578
|
}
|
|
4533
4579
|
if (this.at.j.count == 0) {
|
|
4534
|
-
this.
|
|
4580
|
+
this.h4(a, this.ap, b.postSortDescriptions);
|
|
4535
4581
|
}
|
|
4536
4582
|
}
|
|
4537
4583
|
{
|
|
4538
4584
|
if (this.as.j.count == 0) {
|
|
4539
|
-
this.
|
|
4585
|
+
this.h4(a, this.ao, b.groupDescriptions);
|
|
4540
4586
|
}
|
|
4541
4587
|
}
|
|
4542
4588
|
{
|
|
4543
4589
|
if (this.a1.j.count == 0) {
|
|
4544
|
-
this.
|
|
4590
|
+
this.h5(a, this.ay, b.summaryDescriptions);
|
|
4545
4591
|
}
|
|
4546
4592
|
}
|
|
4547
4593
|
if (this.includedProperties != null) {
|
|
@@ -4612,7 +4658,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4612
4658
|
var b = this.itemsSource;
|
|
4613
4659
|
if (b != a) {
|
|
4614
4660
|
this.ed = a;
|
|
4615
|
-
this.
|
|
4661
|
+
this.ho("ItemsSource", b, this.itemsSource);
|
|
4616
4662
|
}
|
|
4617
4663
|
},
|
|
4618
4664
|
enumerable: false,
|
|
@@ -4626,7 +4672,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4626
4672
|
var b = this.actualItemsSource;
|
|
4627
4673
|
if (b != a) {
|
|
4628
4674
|
this.d9 = a;
|
|
4629
|
-
this.
|
|
4675
|
+
this.ho("ActualItemsSource", b, this.actualItemsSource);
|
|
4630
4676
|
}
|
|
4631
4677
|
},
|
|
4632
4678
|
enumerable: false,
|
|
@@ -4640,7 +4686,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4640
4686
|
var b = this.highlightedItemsSource;
|
|
4641
4687
|
if (b != a) {
|
|
4642
4688
|
this.ec = a;
|
|
4643
|
-
this.
|
|
4689
|
+
this.ho("HighlightedItemsSource", b, this.highlightedItemsSource);
|
|
4644
4690
|
}
|
|
4645
4691
|
},
|
|
4646
4692
|
enumerable: false,
|
|
@@ -4654,7 +4700,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4654
4700
|
var b = this.actualHighlightedItemsSource;
|
|
4655
4701
|
if (b != a) {
|
|
4656
4702
|
this.d8 = a;
|
|
4657
|
-
this.
|
|
4703
|
+
this.ho("ActualHighlightedItemsSource", b, this.actualHighlightedItemsSource);
|
|
4658
4704
|
}
|
|
4659
4705
|
},
|
|
4660
4706
|
enumerable: false,
|
|
@@ -4667,7 +4713,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4667
4713
|
var b = this.de;
|
|
4668
4714
|
if (a != b) {
|
|
4669
4715
|
this.cm = a;
|
|
4670
|
-
this.
|
|
4716
|
+
this.ho("ShouldDisplayMockData", b, this.de);
|
|
4671
4717
|
}
|
|
4672
4718
|
};
|
|
4673
4719
|
Object.defineProperty(DashboardTile.prototype, "de", {
|
|
@@ -4688,7 +4734,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4688
4734
|
var b = this.shouldAvoidAxisAnnotationCollisions;
|
|
4689
4735
|
if (a != b) {
|
|
4690
4736
|
this.cl = a;
|
|
4691
|
-
this.
|
|
4737
|
+
this.ho("ShouldAvoidAxisAnnotationCollisions", b, this.shouldAvoidAxisAnnotationCollisions);
|
|
4692
4738
|
}
|
|
4693
4739
|
},
|
|
4694
4740
|
enumerable: false,
|
|
@@ -4702,7 +4748,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4702
4748
|
var b = this.trendLineType;
|
|
4703
4749
|
if (a != b) {
|
|
4704
4750
|
this.ag = a;
|
|
4705
|
-
this.
|
|
4751
|
+
this.ho("TrendLineType", enumGetBox(TrendLineType_$type, b), enumGetBox(TrendLineType_$type, this.trendLineType));
|
|
4706
4752
|
}
|
|
4707
4753
|
},
|
|
4708
4754
|
enumerable: false,
|
|
@@ -4715,7 +4761,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4715
4761
|
var b = this.df;
|
|
4716
4762
|
if (a != b) {
|
|
4717
4763
|
this.cn = a;
|
|
4718
|
-
this.
|
|
4764
|
+
this.ho("ShouldUseSkeletonStyleForMockData", b, this.df);
|
|
4719
4765
|
}
|
|
4720
4766
|
};
|
|
4721
4767
|
Object.defineProperty(DashboardTile.prototype, "df", {
|
|
@@ -4735,7 +4781,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4735
4781
|
var b = this.af;
|
|
4736
4782
|
if (a != b) {
|
|
4737
4783
|
this.ae = a;
|
|
4738
|
-
this.
|
|
4784
|
+
this.ho("HighlightedValuesDisplayMode", enumGetBox(SeriesHighlightedValuesDisplayMode_$type, b), enumGetBox(SeriesHighlightedValuesDisplayMode_$type, this.af));
|
|
4739
4785
|
}
|
|
4740
4786
|
};
|
|
4741
4787
|
Object.defineProperty(DashboardTile.prototype, "af", {
|
|
@@ -4756,7 +4802,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4756
4802
|
var b = this.i;
|
|
4757
4803
|
this.i = a;
|
|
4758
4804
|
if (b != this.i) {
|
|
4759
|
-
this.
|
|
4805
|
+
this.ho("IncludedProperties", b, this.i);
|
|
4760
4806
|
}
|
|
4761
4807
|
},
|
|
4762
4808
|
enumerable: false,
|
|
@@ -4770,7 +4816,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4770
4816
|
var b = this.j;
|
|
4771
4817
|
this.j = a;
|
|
4772
4818
|
if (b != this.j) {
|
|
4773
|
-
this.
|
|
4819
|
+
this.ho("ValidVisualizationTypes", b, this.j);
|
|
4774
4820
|
}
|
|
4775
4821
|
},
|
|
4776
4822
|
enumerable: false,
|
|
@@ -4784,7 +4830,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4784
4830
|
var b = this.h;
|
|
4785
4831
|
this.h = a;
|
|
4786
4832
|
if (b != this.h) {
|
|
4787
|
-
this.
|
|
4833
|
+
this.ho("ExcludedProperties", b, this.h);
|
|
4788
4834
|
}
|
|
4789
4835
|
},
|
|
4790
4836
|
enumerable: false,
|
|
@@ -4798,7 +4844,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4798
4844
|
var b = this.v;
|
|
4799
4845
|
if (a != b) {
|
|
4800
4846
|
this.q = a;
|
|
4801
|
-
this.
|
|
4847
|
+
this.ho("Brushes", b, this.v);
|
|
4802
4848
|
}
|
|
4803
4849
|
},
|
|
4804
4850
|
enumerable: false,
|
|
@@ -4812,7 +4858,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4812
4858
|
var b = this.w;
|
|
4813
4859
|
if (a != b) {
|
|
4814
4860
|
this.r = a;
|
|
4815
|
-
this.
|
|
4861
|
+
this.ho("Outlines", b, this.w);
|
|
4816
4862
|
}
|
|
4817
4863
|
},
|
|
4818
4864
|
enumerable: false,
|
|
@@ -4854,7 +4900,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4854
4900
|
var b = this.o;
|
|
4855
4901
|
if (a != b) {
|
|
4856
4902
|
this.o = a;
|
|
4857
|
-
this.
|
|
4903
|
+
this.ho("ActualBrushes", b, this.t);
|
|
4858
4904
|
}
|
|
4859
4905
|
},
|
|
4860
4906
|
enumerable: false,
|
|
@@ -4868,21 +4914,21 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4868
4914
|
var b = this.p;
|
|
4869
4915
|
if (a != b) {
|
|
4870
4916
|
this.p = a;
|
|
4871
|
-
this.
|
|
4917
|
+
this.ho("ActualOutlines", b, this.u);
|
|
4872
4918
|
}
|
|
4873
4919
|
},
|
|
4874
4920
|
enumerable: false,
|
|
4875
4921
|
configurable: true
|
|
4876
4922
|
});
|
|
4877
|
-
Object.defineProperty(DashboardTile.prototype, "
|
|
4923
|
+
Object.defineProperty(DashboardTile.prototype, "ik", {
|
|
4878
4924
|
get: function () {
|
|
4879
|
-
return this.
|
|
4925
|
+
return this.ie;
|
|
4880
4926
|
},
|
|
4881
4927
|
set: function (a) {
|
|
4882
|
-
var b = this.
|
|
4928
|
+
var b = this.ie;
|
|
4883
4929
|
if (a != b) {
|
|
4884
|
-
this.
|
|
4885
|
-
this.
|
|
4930
|
+
this.ie = a;
|
|
4931
|
+
this.ho("CategoryAxisMajorStroke", b, this.ik);
|
|
4886
4932
|
}
|
|
4887
4933
|
},
|
|
4888
4934
|
enumerable: false,
|
|
@@ -4896,7 +4942,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4896
4942
|
var b = this.ah;
|
|
4897
4943
|
if (a != b) {
|
|
4898
4944
|
this.ah = a;
|
|
4899
|
-
this.
|
|
4945
|
+
this.ho("ValueLines", b, this.ah);
|
|
4900
4946
|
}
|
|
4901
4947
|
},
|
|
4902
4948
|
enumerable: false,
|
|
@@ -4910,7 +4956,49 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4910
4956
|
var b = this.s;
|
|
4911
4957
|
if (a != b) {
|
|
4912
4958
|
this.s = a;
|
|
4913
|
-
this.
|
|
4959
|
+
this.ho("ValueLinesBrushes", b, this.s);
|
|
4960
|
+
}
|
|
4961
|
+
},
|
|
4962
|
+
enumerable: false,
|
|
4963
|
+
configurable: true
|
|
4964
|
+
});
|
|
4965
|
+
Object.defineProperty(DashboardTile.prototype, "il", {
|
|
4966
|
+
get: function () {
|
|
4967
|
+
return this.ig;
|
|
4968
|
+
},
|
|
4969
|
+
set: function (a) {
|
|
4970
|
+
var b = this.ig;
|
|
4971
|
+
if (a != b) {
|
|
4972
|
+
this.ig = a;
|
|
4973
|
+
this.ho("ValueLinesGlobalAverageBrush", b, this.ig);
|
|
4974
|
+
}
|
|
4975
|
+
},
|
|
4976
|
+
enumerable: false,
|
|
4977
|
+
configurable: true
|
|
4978
|
+
});
|
|
4979
|
+
Object.defineProperty(DashboardTile.prototype, "io", {
|
|
4980
|
+
get: function () {
|
|
4981
|
+
return this.ii;
|
|
4982
|
+
},
|
|
4983
|
+
set: function (a) {
|
|
4984
|
+
var b = this.ii;
|
|
4985
|
+
if (a != b) {
|
|
4986
|
+
this.ii = a;
|
|
4987
|
+
this.ho("ValueLinesGlobalMinimumBrush", b, this.ii);
|
|
4988
|
+
}
|
|
4989
|
+
},
|
|
4990
|
+
enumerable: false,
|
|
4991
|
+
configurable: true
|
|
4992
|
+
});
|
|
4993
|
+
Object.defineProperty(DashboardTile.prototype, "im", {
|
|
4994
|
+
get: function () {
|
|
4995
|
+
return this.ii;
|
|
4996
|
+
},
|
|
4997
|
+
set: function (a) {
|
|
4998
|
+
var b = this.ih;
|
|
4999
|
+
if (a != b) {
|
|
5000
|
+
this.ih = a;
|
|
5001
|
+
this.ho("ValueLinesGlobalMaximumBrush", b, this.ih);
|
|
4914
5002
|
}
|
|
4915
5003
|
},
|
|
4916
5004
|
enumerable: false,
|
|
@@ -4924,7 +5012,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4924
5012
|
var b = this.autoCalloutsVisible;
|
|
4925
5013
|
if (a != b) {
|
|
4926
5014
|
this.cb = a;
|
|
4927
|
-
this.
|
|
5015
|
+
this.ho("AutoCalloutsVisible", b, this.autoCalloutsVisible);
|
|
4928
5016
|
}
|
|
4929
5017
|
},
|
|
4930
5018
|
enumerable: false,
|
|
@@ -4938,7 +5026,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4938
5026
|
var b = this.crosshairsAnnotationEnabled;
|
|
4939
5027
|
if (a != b) {
|
|
4940
5028
|
this.cc = a;
|
|
4941
|
-
this.
|
|
5029
|
+
this.ho("CrosshairsAnnotationEnabled", b, this.crosshairsAnnotationEnabled);
|
|
4942
5030
|
}
|
|
4943
5031
|
},
|
|
4944
5032
|
enumerable: false,
|
|
@@ -4995,7 +5083,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4995
5083
|
var b = this.finalValueAnnotationsVisible;
|
|
4996
5084
|
if (a != b) {
|
|
4997
5085
|
this.cj = a;
|
|
4998
|
-
this.
|
|
5086
|
+
this.ho("FinalValueAnnotationsVisible", b, this.finalValueAnnotationsVisible);
|
|
4999
5087
|
}
|
|
5000
5088
|
},
|
|
5001
5089
|
enumerable: false,
|
|
@@ -5009,7 +5097,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5009
5097
|
var b = this.crosshairsDisplayMode;
|
|
5010
5098
|
if (a != b) {
|
|
5011
5099
|
this.z = a;
|
|
5012
|
-
this.
|
|
5100
|
+
this.ho("CrosshairsDisplayMode", enumGetBox(CrosshairsDisplayMode_$type, b), enumGetBox(CrosshairsDisplayMode_$type, this.crosshairsDisplayMode));
|
|
5013
5101
|
}
|
|
5014
5102
|
},
|
|
5015
5103
|
enumerable: false,
|
|
@@ -5023,7 +5111,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5023
5111
|
var b = this.a6;
|
|
5024
5112
|
if (a != b) {
|
|
5025
5113
|
this.a5 = a;
|
|
5026
|
-
this.
|
|
5114
|
+
this.ho("VisualizationType", enumGetBox(DashboardTileVisualizationType_$type, b), enumGetBox(DashboardTileVisualizationType_$type, this.a6));
|
|
5027
5115
|
}
|
|
5028
5116
|
},
|
|
5029
5117
|
enumerable: false,
|
|
@@ -5037,7 +5125,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5037
5125
|
var b = this.d7;
|
|
5038
5126
|
if (a != b) {
|
|
5039
5127
|
this.d5 = a;
|
|
5040
|
-
this.
|
|
5128
|
+
this.ho("ValidVisualizationTypePriorityThreshold", b, this.d7);
|
|
5041
5129
|
}
|
|
5042
5130
|
},
|
|
5043
5131
|
enumerable: false,
|
|
@@ -5045,7 +5133,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5045
5133
|
});
|
|
5046
5134
|
DashboardTile.prototype.notifyContainerResized = function () {
|
|
5047
5135
|
};
|
|
5048
|
-
DashboardTile.prototype.
|
|
5136
|
+
DashboardTile.prototype.hg = function (a) {
|
|
5049
5137
|
};
|
|
5050
5138
|
Object.defineProperty(DashboardTile.prototype, "bt", {
|
|
5051
5139
|
get: function () {
|
|
@@ -5055,7 +5143,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5055
5143
|
var b = this.bs;
|
|
5056
5144
|
this.bs = a;
|
|
5057
5145
|
if (b != this.bs) {
|
|
5058
|
-
this.
|
|
5146
|
+
this.ho("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
|
|
5059
5147
|
}
|
|
5060
5148
|
},
|
|
5061
5149
|
enumerable: false,
|
|
@@ -5069,21 +5157,21 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5069
5157
|
var b = this.bu;
|
|
5070
5158
|
this.bu = a;
|
|
5071
5159
|
if (b != this.bu) {
|
|
5072
|
-
this.
|
|
5160
|
+
this.ho("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
|
|
5073
5161
|
}
|
|
5074
5162
|
},
|
|
5075
5163
|
enumerable: false,
|
|
5076
5164
|
configurable: true
|
|
5077
5165
|
});
|
|
5078
|
-
Object.defineProperty(DashboardTile.prototype, "
|
|
5166
|
+
Object.defineProperty(DashboardTile.prototype, "ij", {
|
|
5079
5167
|
get: function () {
|
|
5080
|
-
return this.
|
|
5168
|
+
return this.id;
|
|
5081
5169
|
},
|
|
5082
5170
|
set: function (a) {
|
|
5083
|
-
var b = this.
|
|
5084
|
-
this.
|
|
5085
|
-
if (b != this.
|
|
5086
|
-
this.
|
|
5171
|
+
var b = this.id;
|
|
5172
|
+
this.id = a;
|
|
5173
|
+
if (b != this.id) {
|
|
5174
|
+
this.ho("BackgroundColor", b, a);
|
|
5087
5175
|
}
|
|
5088
5176
|
},
|
|
5089
5177
|
enumerable: false,
|
|
@@ -5173,34 +5261,34 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5173
5261
|
DashboardTile.prototype.d3 = function () {
|
|
5174
5262
|
return null;
|
|
5175
5263
|
};
|
|
5176
|
-
DashboardTile.prototype.
|
|
5264
|
+
DashboardTile.prototype.g8 = function (a) {
|
|
5177
5265
|
if (typeCast(XamDataChart.$, this.et) !== null) {
|
|
5178
5266
|
a(this.et);
|
|
5179
5267
|
}
|
|
5180
5268
|
};
|
|
5181
|
-
DashboardTile.prototype.
|
|
5269
|
+
DashboardTile.prototype.ha = function (a) {
|
|
5182
5270
|
if (typeCast(DataPieChart.$, this.et) !== null) {
|
|
5183
5271
|
a(this.et);
|
|
5184
5272
|
}
|
|
5185
5273
|
};
|
|
5186
|
-
DashboardTile.prototype.
|
|
5274
|
+
DashboardTile.prototype.hb = function (a) {
|
|
5187
5275
|
if (typeCast(SeriesViewer.$, this.et) !== null) {
|
|
5188
5276
|
a(this.et);
|
|
5189
5277
|
}
|
|
5190
5278
|
};
|
|
5191
|
-
DashboardTile.prototype.
|
|
5279
|
+
DashboardTile.prototype.g9 = function (a) {
|
|
5192
5280
|
if (typeCast(DataGrid.$, this.ei) !== null) {
|
|
5193
5281
|
a(this.ei);
|
|
5194
5282
|
}
|
|
5195
5283
|
};
|
|
5196
5284
|
DashboardTile.prototype.zoomIn = function (a) {
|
|
5197
|
-
this.
|
|
5285
|
+
this.hb(function (b) { return b.rz(a); });
|
|
5198
5286
|
};
|
|
5199
5287
|
DashboardTile.prototype.zoomOut = function (a) {
|
|
5200
|
-
this.
|
|
5288
|
+
this.hb(function (b) { return b.r0(a); });
|
|
5201
5289
|
};
|
|
5202
5290
|
DashboardTile.prototype.resetZoom = function () {
|
|
5203
|
-
this.
|
|
5291
|
+
this.hb(function (a) { return a.q8(); });
|
|
5204
5292
|
};
|
|
5205
5293
|
DashboardTile.prototype.x = function (a) {
|
|
5206
5294
|
var e_21, _a;
|
|
@@ -5236,7 +5324,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5236
5324
|
DashboardTile.prototype.notifySizeChanged = function () {
|
|
5237
5325
|
this.a4.t();
|
|
5238
5326
|
};
|
|
5239
|
-
DashboardTile.prototype.
|
|
5327
|
+
DashboardTile.prototype.hq = function () {
|
|
5240
5328
|
var _this = this;
|
|
5241
5329
|
NativeUIContent.aw(this.a4.m(), [7, 7, 3, 0, 0, 0, 0, 7, 0], function (a) {
|
|
5242
5330
|
var b = a[0];
|
|
@@ -5317,14 +5405,14 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5317
5405
|
_this.a4.p();
|
|
5318
5406
|
});
|
|
5319
5407
|
};
|
|
5320
|
-
DashboardTile.prototype.
|
|
5408
|
+
DashboardTile.prototype.hp = function () {
|
|
5321
5409
|
this.a4.s(this.en(this.b4), this.fi);
|
|
5322
5410
|
this.a4.s(this.en(this.b3), this.fi);
|
|
5323
5411
|
this.a4.s(this.en(this.b2), this.fi);
|
|
5324
5412
|
this.a4.s(this.en(this.b1), this.fi);
|
|
5325
5413
|
this.a4.s(this.en(this.b0), this.fi);
|
|
5326
5414
|
if (!this.c4) {
|
|
5327
|
-
this.
|
|
5415
|
+
this.hv();
|
|
5328
5416
|
}
|
|
5329
5417
|
};
|
|
5330
5418
|
Object.defineProperty(DashboardTile.prototype, "fi", {
|
|
@@ -5362,16 +5450,16 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5362
5450
|
}
|
|
5363
5451
|
this.a4.v(a);
|
|
5364
5452
|
};
|
|
5365
|
-
DashboardTile.prototype.
|
|
5453
|
+
DashboardTile.prototype.ho = function (a, b, c) {
|
|
5366
5454
|
if (this.propertyChanged != null) {
|
|
5367
5455
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
5368
5456
|
}
|
|
5369
|
-
this.
|
|
5457
|
+
this.ht(a, b, c);
|
|
5370
5458
|
};
|
|
5371
|
-
DashboardTile.prototype.
|
|
5459
|
+
DashboardTile.prototype.ht = function (a, b, c) {
|
|
5372
5460
|
if (!this.cd && DashboardTile.cs(a)) {
|
|
5373
5461
|
this.cd = true;
|
|
5374
|
-
this.
|
|
5462
|
+
this.hv();
|
|
5375
5463
|
}
|
|
5376
5464
|
switch (a) {
|
|
5377
5465
|
case "VisualizationType":
|
|
@@ -5379,7 +5467,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5379
5467
|
if (this.ac != null) {
|
|
5380
5468
|
this.ac.refresh();
|
|
5381
5469
|
}
|
|
5382
|
-
this.
|
|
5470
|
+
this.hv();
|
|
5383
5471
|
break;
|
|
5384
5472
|
case "TileTitle":
|
|
5385
5473
|
this.b6.bm = c;
|
|
@@ -5391,7 +5479,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5391
5479
|
this.u = this.x(this.w);
|
|
5392
5480
|
}
|
|
5393
5481
|
this.ab.itemsSource = this.actualItemsSource;
|
|
5394
|
-
this.
|
|
5482
|
+
this.hc();
|
|
5395
5483
|
break;
|
|
5396
5484
|
case "ActualHighlightedItemsSource":
|
|
5397
5485
|
this.ac.itemsSource = this.actualHighlightedItemsSource;
|
|
@@ -5414,25 +5502,25 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5414
5502
|
case "MainContent":
|
|
5415
5503
|
if (this.cp) {
|
|
5416
5504
|
this.cp = false;
|
|
5417
|
-
this.
|
|
5505
|
+
this.hc();
|
|
5418
5506
|
}
|
|
5419
5507
|
break;
|
|
5420
5508
|
case "ValueLines":
|
|
5421
5509
|
if (b != null) {
|
|
5422
5510
|
var d = b;
|
|
5423
|
-
d.collectionChanged = delegateRemove(d.collectionChanged, runOn(this, this.
|
|
5511
|
+
d.collectionChanged = delegateRemove(d.collectionChanged, runOn(this, this.ib));
|
|
5424
5512
|
}
|
|
5425
5513
|
if (c != null) {
|
|
5426
5514
|
var e = this.valueLines;
|
|
5427
|
-
e.collectionChanged = delegateCombine(e.collectionChanged, runOn(this, this.
|
|
5515
|
+
e.collectionChanged = delegateCombine(e.collectionChanged, runOn(this, this.ib));
|
|
5428
5516
|
}
|
|
5429
5517
|
break;
|
|
5430
5518
|
}
|
|
5431
5519
|
};
|
|
5432
|
-
DashboardTile.prototype.
|
|
5520
|
+
DashboardTile.prototype.ib = function (a, b) {
|
|
5433
5521
|
if (!this.cd && DashboardTile.cs("ValueLines")) {
|
|
5434
5522
|
this.cd = true;
|
|
5435
|
-
this.
|
|
5523
|
+
this.hv();
|
|
5436
5524
|
}
|
|
5437
5525
|
};
|
|
5438
5526
|
DashboardTile.cs = function (a) {
|
|
@@ -5494,7 +5582,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5494
5582
|
DashboardTile.prototype.provideContextAccessor = function (a) {
|
|
5495
5583
|
this.bw = a;
|
|
5496
5584
|
};
|
|
5497
|
-
DashboardTile.prototype.
|
|
5585
|
+
DashboardTile.prototype.hc = function () {
|
|
5498
5586
|
if (this.invalidateActions != null) {
|
|
5499
5587
|
this.invalidateActions();
|
|
5500
5588
|
}
|
|
@@ -5513,20 +5601,20 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5513
5601
|
this.dm.remove(a);
|
|
5514
5602
|
}
|
|
5515
5603
|
};
|
|
5516
|
-
DashboardTile.prototype.
|
|
5604
|
+
DashboardTile.prototype.h8 = function () {
|
|
5517
5605
|
if (this.b2 != null) {
|
|
5518
5606
|
this.b2.bj = this.b2.bj == 0 ? 1 : 0;
|
|
5519
5607
|
}
|
|
5520
5608
|
};
|
|
5521
|
-
DashboardTile.prototype.
|
|
5609
|
+
DashboardTile.prototype.h7 = function () {
|
|
5522
5610
|
var _this = this;
|
|
5523
5611
|
if (this.b5 != null) {
|
|
5524
|
-
var a = this.
|
|
5612
|
+
var a = this.ip();
|
|
5525
5613
|
var b = this.b5.bj == 1;
|
|
5526
5614
|
if (b) {
|
|
5527
5615
|
this.b5.bj = 0;
|
|
5528
5616
|
}
|
|
5529
|
-
this.
|
|
5617
|
+
this.g5(a.width);
|
|
5530
5618
|
if (b) {
|
|
5531
5619
|
this.b5.bj = 1;
|
|
5532
5620
|
}
|
|
@@ -5535,13 +5623,13 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5535
5623
|
c = -1;
|
|
5536
5624
|
}
|
|
5537
5625
|
this.co = !this.co;
|
|
5538
|
-
this.
|
|
5626
|
+
this.hs(this.bz, c);
|
|
5539
5627
|
if (b) {
|
|
5540
5628
|
this.bz.ready.f(function (d) { return _this.b5.bj = 0; });
|
|
5541
5629
|
}
|
|
5542
5630
|
}
|
|
5543
5631
|
};
|
|
5544
|
-
DashboardTile.prototype.
|
|
5632
|
+
DashboardTile.prototype.ip = function () {
|
|
5545
5633
|
var a = new Size(1, 0, 0);
|
|
5546
5634
|
if (this.el != null) {
|
|
5547
5635
|
a = this.el.cs();
|
|
@@ -5556,31 +5644,31 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5556
5644
|
}
|
|
5557
5645
|
return a;
|
|
5558
5646
|
};
|
|
5559
|
-
DashboardTile.prototype.
|
|
5647
|
+
DashboardTile.prototype.g4 = function (a) {
|
|
5560
5648
|
a.commitStyles();
|
|
5561
5649
|
if (a == this.bz && this.cg) {
|
|
5562
5650
|
this.bz = null;
|
|
5563
5651
|
}
|
|
5564
5652
|
};
|
|
5565
|
-
DashboardTile.prototype.
|
|
5653
|
+
DashboardTile.prototype.hs = function (a, b) {
|
|
5566
5654
|
var _this = this;
|
|
5567
5655
|
if ((b > 0 && a.playbackRate < 0) || (b < 0 && a.playbackRate > 0)) {
|
|
5568
5656
|
a.reverse();
|
|
5569
5657
|
if (this.ch) {
|
|
5570
5658
|
a.finish();
|
|
5571
|
-
this.
|
|
5659
|
+
this.g4(a);
|
|
5572
5660
|
return;
|
|
5573
5661
|
}
|
|
5574
|
-
a.finished.f(function (c) { return _this.
|
|
5662
|
+
a.finished.f(function (c) { return _this.g4(a); });
|
|
5575
5663
|
}
|
|
5576
5664
|
else {
|
|
5577
5665
|
a.play();
|
|
5578
5666
|
if (this.ch) {
|
|
5579
5667
|
a.finish();
|
|
5580
|
-
this.
|
|
5668
|
+
this.g4(a);
|
|
5581
5669
|
return;
|
|
5582
5670
|
}
|
|
5583
|
-
a.finished.f(function (c) { return _this.
|
|
5671
|
+
a.finished.f(function (c) { return _this.g4(a); });
|
|
5584
5672
|
}
|
|
5585
5673
|
};
|
|
5586
5674
|
Object.defineProperty(DashboardTile.prototype, "n", {
|
|
@@ -5593,7 +5681,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5593
5681
|
enumerable: false,
|
|
5594
5682
|
configurable: true
|
|
5595
5683
|
});
|
|
5596
|
-
DashboardTile.prototype.
|
|
5684
|
+
DashboardTile.prototype.g5 = function (a) {
|
|
5597
5685
|
this.a4.q();
|
|
5598
5686
|
if (this.bz == null) {
|
|
5599
5687
|
var b = new TransformGroup();
|
|
@@ -5619,7 +5707,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5619
5707
|
var b = this.bq;
|
|
5620
5708
|
this.bq = a;
|
|
5621
5709
|
if (b != this.bq) {
|
|
5622
|
-
this.
|
|
5710
|
+
this.ho("ExecutionContext", b, this.bq);
|
|
5623
5711
|
}
|
|
5624
5712
|
},
|
|
5625
5713
|
enumerable: false,
|
|
@@ -5661,42 +5749,42 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5661
5749
|
var $ret = new DashboardTileCustomization();
|
|
5662
5750
|
$ret.m = "AnchoredCategorySeries";
|
|
5663
5751
|
$ret.n = "TrendLineType";
|
|
5664
|
-
$ret.h = function (a) { return EnumUtil.getName(TrendLineType_$type, a.trendLineType); };
|
|
5752
|
+
$ret.h = function (a) { return new ValueGetterResult(EnumUtil.getName(TrendLineType_$type, a.trendLineType), false); };
|
|
5665
5753
|
return $ret;
|
|
5666
5754
|
})()));
|
|
5667
5755
|
$ret.add(((function () {
|
|
5668
5756
|
var $ret = new DashboardTileCustomization();
|
|
5669
5757
|
$ret.m = "FinancialIndicator";
|
|
5670
5758
|
$ret.n = "TrendLineType";
|
|
5671
|
-
$ret.h = function (a) { return EnumUtil.getName(TrendLineType_$type, a.trendLineType); };
|
|
5759
|
+
$ret.h = function (a) { return new ValueGetterResult(EnumUtil.getName(TrendLineType_$type, a.trendLineType), false); };
|
|
5672
5760
|
return $ret;
|
|
5673
5761
|
})()));
|
|
5674
5762
|
$ret.add(((function () {
|
|
5675
5763
|
var $ret = new DashboardTileCustomization();
|
|
5676
5764
|
$ret.m = "FinancialPriceSeries";
|
|
5677
5765
|
$ret.n = "TrendLineType";
|
|
5678
|
-
$ret.h = function (a) { return EnumUtil.getName(TrendLineType_$type, a.trendLineType); };
|
|
5766
|
+
$ret.h = function (a) { return new ValueGetterResult(EnumUtil.getName(TrendLineType_$type, a.trendLineType), false); };
|
|
5679
5767
|
return $ret;
|
|
5680
5768
|
})()));
|
|
5681
5769
|
$ret.add(((function () {
|
|
5682
5770
|
var $ret = new DashboardTileCustomization();
|
|
5683
5771
|
$ret.m = "PolarBase";
|
|
5684
5772
|
$ret.n = "TrendLineType";
|
|
5685
|
-
$ret.h = function (a) { return EnumUtil.getName(TrendLineType_$type, a.trendLineType); };
|
|
5773
|
+
$ret.h = function (a) { return new ValueGetterResult(EnumUtil.getName(TrendLineType_$type, a.trendLineType), false); };
|
|
5686
5774
|
return $ret;
|
|
5687
5775
|
})()));
|
|
5688
5776
|
$ret.add(((function () {
|
|
5689
5777
|
var $ret = new DashboardTileCustomization();
|
|
5690
5778
|
$ret.m = "ScatterBase";
|
|
5691
5779
|
$ret.n = "TrendLineType";
|
|
5692
|
-
$ret.h = function (a) { return EnumUtil.getName(TrendLineType_$type, a.trendLineType); };
|
|
5780
|
+
$ret.h = function (a) { return new ValueGetterResult(EnumUtil.getName(TrendLineType_$type, a.trendLineType), false); };
|
|
5693
5781
|
return $ret;
|
|
5694
5782
|
})()));
|
|
5695
5783
|
$ret.add(((function () {
|
|
5696
5784
|
var $ret = new DashboardTileCustomization();
|
|
5697
5785
|
$ret.m = "RadialBase";
|
|
5698
5786
|
$ret.n = "TrendLineType";
|
|
5699
|
-
$ret.h = function (a) { return EnumUtil.getName(TrendLineType_$type, a.trendLineType); };
|
|
5787
|
+
$ret.h = function (a) { return new ValueGetterResult(EnumUtil.getName(TrendLineType_$type, a.trendLineType), false); };
|
|
5700
5788
|
return $ret;
|
|
5701
5789
|
})()));
|
|
5702
5790
|
return $ret;
|
|
@@ -5708,21 +5796,21 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5708
5796
|
var $ret = new DashboardTileCustomization();
|
|
5709
5797
|
$ret.m = "DataChart";
|
|
5710
5798
|
$ret.n = "Brushes";
|
|
5711
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrushCollection(a.t); };
|
|
5799
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrushCollection(a.t), false); };
|
|
5712
5800
|
return $ret;
|
|
5713
5801
|
})()));
|
|
5714
5802
|
$ret.add(((function () {
|
|
5715
5803
|
var $ret = new DashboardTileCustomization();
|
|
5716
5804
|
$ret.m = "DataPieChart";
|
|
5717
5805
|
$ret.n = "Brushes";
|
|
5718
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrushCollection(a.t); };
|
|
5806
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrushCollection(a.t), false); };
|
|
5719
5807
|
return $ret;
|
|
5720
5808
|
})()));
|
|
5721
5809
|
$ret.add(((function () {
|
|
5722
5810
|
var $ret = new DashboardTileCustomization();
|
|
5723
5811
|
$ret.m = "GeographicMap";
|
|
5724
5812
|
$ret.n = "Brushes";
|
|
5725
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrushCollection(a.t); };
|
|
5813
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrushCollection(a.t), false); };
|
|
5726
5814
|
return $ret;
|
|
5727
5815
|
})()));
|
|
5728
5816
|
return $ret;
|
|
@@ -5733,21 +5821,21 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5733
5821
|
var $ret = new DashboardTileCustomization();
|
|
5734
5822
|
$ret.m = "DataChart";
|
|
5735
5823
|
$ret.n = "Outlines";
|
|
5736
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrushCollection(a.u); };
|
|
5824
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrushCollection(a.u), false); };
|
|
5737
5825
|
return $ret;
|
|
5738
5826
|
})()));
|
|
5739
5827
|
$ret.add(((function () {
|
|
5740
5828
|
var $ret = new DashboardTileCustomization();
|
|
5741
5829
|
$ret.m = "DataPieChart";
|
|
5742
5830
|
$ret.n = "Outlines";
|
|
5743
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrushCollection(a.u); };
|
|
5831
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrushCollection(a.u), false); };
|
|
5744
5832
|
return $ret;
|
|
5745
5833
|
})()));
|
|
5746
5834
|
$ret.add(((function () {
|
|
5747
5835
|
var $ret = new DashboardTileCustomization();
|
|
5748
5836
|
$ret.m = "GeographicMap";
|
|
5749
5837
|
$ret.n = "Outlines";
|
|
5750
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrushCollection(a.u); };
|
|
5838
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrushCollection(a.u), false); };
|
|
5751
5839
|
return $ret;
|
|
5752
5840
|
})()));
|
|
5753
5841
|
return $ret;
|
|
@@ -5758,14 +5846,14 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5758
5846
|
var $ret = new DashboardTileCustomization();
|
|
5759
5847
|
$ret.m = "CategoryXAxis";
|
|
5760
5848
|
$ret.n = "MajorStroke";
|
|
5761
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrush(a.
|
|
5849
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrush(a.ik), true); };
|
|
5762
5850
|
return $ret;
|
|
5763
5851
|
})()));
|
|
5764
5852
|
$ret.add(((function () {
|
|
5765
5853
|
var $ret = new DashboardTileCustomization();
|
|
5766
5854
|
$ret.m = "CategoryYAxis";
|
|
5767
5855
|
$ret.n = "MajorStroke";
|
|
5768
|
-
$ret.h = function (a) { return DashboardTile.bo.adapter.serializeBrush(a.
|
|
5856
|
+
$ret.h = function (a) { return new ValueGetterResult(DashboardTile.bo.adapter.serializeBrush(a.ik), true); };
|
|
5769
5857
|
return $ret;
|
|
5770
5858
|
})()));
|
|
5771
5859
|
return $ret;
|
|
@@ -5781,7 +5869,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5781
5869
|
$ret.h = function (a) {
|
|
5782
5870
|
var e_22, _a;
|
|
5783
5871
|
if (a.valueLines == null) {
|
|
5784
|
-
return null;
|
|
5872
|
+
return new ValueGetterResult(null, false);
|
|
5785
5873
|
}
|
|
5786
5874
|
var b = new List$1(ValueLayerDescription.$, 0);
|
|
5787
5875
|
var c = 0;
|
|
@@ -5792,12 +5880,23 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5792
5880
|
e.name = "valueLine" + EnumUtil.getName(ValueLayerValueMode_$type, d);
|
|
5793
5881
|
e.valueMode = EnumUtil.getName(ValueLayerValueMode_$type, d);
|
|
5794
5882
|
e.isAxisAnnotationEnabled = true;
|
|
5795
|
-
if (a.valueLinesBrushes != null) {
|
|
5883
|
+
if (a.valueLinesBrushes != null && a.valueLinesBrushes.count > 0) {
|
|
5796
5884
|
if (a.valueLinesBrushes.count > c) {
|
|
5797
5885
|
var f = a.valueLinesBrushes.item(c);
|
|
5798
5886
|
e.brush = DashboardTile.bo.adapter.serializeBrush(f);
|
|
5799
5887
|
}
|
|
5800
5888
|
}
|
|
5889
|
+
else {
|
|
5890
|
+
if (d == 6 && a.il != null) {
|
|
5891
|
+
e.brush = DashboardTile.bo.adapter.serializeBrush(a.il);
|
|
5892
|
+
}
|
|
5893
|
+
else if (d == 4 && a.io != null) {
|
|
5894
|
+
e.brush = DashboardTile.bo.adapter.serializeBrush(a.io);
|
|
5895
|
+
}
|
|
5896
|
+
else if (d == 5 && a.im != null) {
|
|
5897
|
+
e.brush = DashboardTile.bo.adapter.serializeBrush(a.im);
|
|
5898
|
+
}
|
|
5899
|
+
}
|
|
5801
5900
|
b.add(e);
|
|
5802
5901
|
c++;
|
|
5803
5902
|
}
|
|
@@ -5815,13 +5914,16 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5815
5914
|
throw e_22.error;
|
|
5816
5915
|
}
|
|
5817
5916
|
}
|
|
5818
|
-
return b.toArray();
|
|
5917
|
+
return new ValueGetterResult(b.toArray(), false);
|
|
5819
5918
|
};
|
|
5820
5919
|
return $ret;
|
|
5821
5920
|
})()));
|
|
5822
5921
|
return $ret;
|
|
5823
5922
|
})()));
|
|
5824
5923
|
DashboardTile.gj = DashboardTile.ga("ValueLinesBrushes", "ValueLines");
|
|
5924
|
+
DashboardTile.gl = DashboardTile.ga("ValueLinesGlobalAverageBrush", "ValueLines");
|
|
5925
|
+
DashboardTile.gp = DashboardTile.ga("ValueLinesGlobalMinimumBrush", "ValueLines");
|
|
5926
|
+
DashboardTile.gn = DashboardTile.ga("ValueLinesGlobalMaximumBrush", "ValueLines");
|
|
5825
5927
|
DashboardTile.dt = DashboardTile.dx("AutoCalloutsVisible", ((function () {
|
|
5826
5928
|
var $ret = new List$1(DashboardTileCustomization.$, 0);
|
|
5827
5929
|
$ret.add(((function () {
|
|
@@ -5832,14 +5934,14 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5832
5934
|
$ret.k = 400;
|
|
5833
5935
|
$ret.h = function (a) {
|
|
5834
5936
|
if (!a.autoCalloutsVisible) {
|
|
5835
|
-
return null;
|
|
5937
|
+
return new ValueGetterResult(null, false);
|
|
5836
5938
|
}
|
|
5837
5939
|
var b = new CalloutLayerDescription();
|
|
5838
5940
|
b.name = "valueLabels";
|
|
5839
5941
|
b.isAutoCalloutBehaviorEnabled = true;
|
|
5840
5942
|
b.calloutCollisionMode = "Greedy";
|
|
5841
5943
|
b.autoCalloutVisibilityMode = "DedicatedLanes";
|
|
5842
|
-
return b;
|
|
5944
|
+
return new ValueGetterResult(b, false);
|
|
5843
5945
|
};
|
|
5844
5946
|
return $ret;
|
|
5845
5947
|
})()));
|
|
@@ -5856,7 +5958,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5856
5958
|
$ret.g = true;
|
|
5857
5959
|
$ret.h = function (a) {
|
|
5858
5960
|
if (!a.crosshairsAnnotationEnabled) {
|
|
5859
|
-
return null;
|
|
5961
|
+
return new ValueGetterResult(null, false);
|
|
5860
5962
|
}
|
|
5861
5963
|
var b = new CrosshairLayerDescription();
|
|
5862
5964
|
b.name = "crosshairLayer";
|
|
@@ -5888,7 +5990,7 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5888
5990
|
b.verticalLineVisibility = "Visible";
|
|
5889
5991
|
break;
|
|
5890
5992
|
}
|
|
5891
|
-
return b;
|
|
5993
|
+
return new ValueGetterResult(b, false);
|
|
5892
5994
|
};
|
|
5893
5995
|
return $ret;
|
|
5894
5996
|
})()));
|
|
@@ -5904,11 +6006,11 @@ var DashboardTile = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5904
6006
|
$ret.k = 600;
|
|
5905
6007
|
$ret.h = function (a) {
|
|
5906
6008
|
if (!a.finalValueAnnotationsVisible) {
|
|
5907
|
-
return null;
|
|
6009
|
+
return new ValueGetterResult(null, false);
|
|
5908
6010
|
}
|
|
5909
6011
|
var b = new FinalValueLayerDescription();
|
|
5910
6012
|
b.name = "finalValueLayer";
|
|
5911
|
-
return b;
|
|
6013
|
+
return new ValueGetterResult(b, false);
|
|
5912
6014
|
};
|
|
5913
6015
|
return $ret;
|
|
5914
6016
|
})()));
|
|
@@ -6215,49 +6317,49 @@ var DashboardTileToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
6215
6317
|
__extends(DashboardTileToolbarProvider, _super);
|
|
6216
6318
|
function DashboardTileToolbarProvider() {
|
|
6217
6319
|
var _this = _super.call(this) || this;
|
|
6218
|
-
_this.
|
|
6219
|
-
if (!DashboardTileToolbarProvider.
|
|
6220
|
-
DashboardTileToolbarProvider.
|
|
6221
|
-
SvgIconRegistry.instance.addSvgPathString("DashboardTile", "Editor", DashboardTileToolbarProvider.
|
|
6222
|
-
DashboardTileToolbarProvider.
|
|
6223
|
-
DashboardTileToolbarProvider.
|
|
6224
|
-
DashboardTileToolbarProvider.
|
|
6225
|
-
DashboardTileToolbarProvider.
|
|
6226
|
-
DashboardTileToolbarProvider.
|
|
6227
|
-
DashboardTileToolbarProvider.
|
|
6228
|
-
DashboardTileToolbarProvider.
|
|
6229
|
-
DashboardTileToolbarProvider.
|
|
6230
|
-
DashboardTileToolbarProvider.
|
|
6231
|
-
DashboardTileToolbarProvider.
|
|
6232
|
-
DashboardTileToolbarProvider.
|
|
6233
|
-
DashboardTileToolbarProvider.
|
|
6234
|
-
DashboardTileToolbarProvider.
|
|
6235
|
-
DashboardTileToolbarProvider.
|
|
6236
|
-
DashboardTileToolbarProvider.
|
|
6237
|
-
DashboardTileToolbarProvider.
|
|
6238
|
-
DashboardTileToolbarProvider.
|
|
6239
|
-
DashboardTileToolbarProvider.
|
|
6240
|
-
DashboardTileToolbarProvider.
|
|
6241
|
-
DashboardTileToolbarProvider.
|
|
6242
|
-
DashboardTileToolbarProvider.
|
|
6243
|
-
DashboardTileToolbarProvider.
|
|
6244
|
-
DashboardTileToolbarProvider.
|
|
6245
|
-
DashboardTileToolbarProvider.
|
|
6246
|
-
DashboardTileToolbarProvider.
|
|
6247
|
-
DashboardTileToolbarProvider.
|
|
6248
|
-
DashboardTileToolbarProvider.
|
|
6249
|
-
DashboardTileToolbarProvider.
|
|
6250
|
-
DashboardTileToolbarProvider.
|
|
6251
|
-
DashboardTileToolbarProvider.
|
|
6252
|
-
DashboardTileToolbarProvider.
|
|
6253
|
-
DashboardTileToolbarProvider.
|
|
6254
|
-
DashboardTileToolbarProvider.
|
|
6255
|
-
DashboardTileToolbarProvider.
|
|
6256
|
-
DashboardTileToolbarProvider.
|
|
6320
|
+
_this.cr = null;
|
|
6321
|
+
if (!DashboardTileToolbarProvider.ah) {
|
|
6322
|
+
DashboardTileToolbarProvider.ah = true;
|
|
6323
|
+
SvgIconRegistry.instance.addSvgPathString("DashboardTile", "Editor", DashboardTileToolbarProvider.a2);
|
|
6324
|
+
DashboardTileToolbarProvider.cq("AreaChart", DashboardTileToolbarProvider.ak, 1);
|
|
6325
|
+
DashboardTileToolbarProvider.cq("BarChart", DashboardTileToolbarProvider.am, 2);
|
|
6326
|
+
DashboardTileToolbarProvider.cq("BubbleChart", DashboardTileToolbarProvider.ao, 3);
|
|
6327
|
+
DashboardTileToolbarProvider.cq("BulletGraph", DashboardTileToolbarProvider.aq, 4);
|
|
6328
|
+
DashboardTileToolbarProvider.cq("CandleStick", DashboardTileToolbarProvider.as, 5);
|
|
6329
|
+
DashboardTileToolbarProvider.cq("ChoroplethMap", DashboardTileToolbarProvider.au, 6);
|
|
6330
|
+
DashboardTileToolbarProvider.cq("RadialGauge", DashboardTileToolbarProvider.bs, 7);
|
|
6331
|
+
DashboardTileToolbarProvider.cq("ColumnChart", DashboardTileToolbarProvider.aw, 8);
|
|
6332
|
+
DashboardTileToolbarProvider.cq("DoughnutChart", DashboardTileToolbarProvider.a0, 9);
|
|
6333
|
+
DashboardTileToolbarProvider.cq("FunnelChart", DashboardTileToolbarProvider.a4, 10);
|
|
6334
|
+
DashboardTileToolbarProvider.cq("Grid", DashboardTileToolbarProvider.a6, 11);
|
|
6335
|
+
DashboardTileToolbarProvider.cq("HeatmapMap", DashboardTileToolbarProvider.ba, 12);
|
|
6336
|
+
DashboardTileToolbarProvider.cq("HDMap", DashboardTileToolbarProvider.a8, 13);
|
|
6337
|
+
DashboardTileToolbarProvider.cq("KPI", DashboardTileToolbarProvider.bc, 14);
|
|
6338
|
+
DashboardTileToolbarProvider.cq("LinearGauge", DashboardTileToolbarProvider.be, 15);
|
|
6339
|
+
DashboardTileToolbarProvider.cq("LineChart", DashboardTileToolbarProvider.bg, 16);
|
|
6340
|
+
DashboardTileToolbarProvider.cq("Map", DashboardTileToolbarProvider.bi, 17);
|
|
6341
|
+
DashboardTileToolbarProvider.cq("OHLCChart", DashboardTileToolbarProvider.bk, 18);
|
|
6342
|
+
DashboardTileToolbarProvider.cq("PieChart", DashboardTileToolbarProvider.bm, 19);
|
|
6343
|
+
DashboardTileToolbarProvider.cq("PolarChart", DashboardTileToolbarProvider.bq, 20);
|
|
6344
|
+
DashboardTileToolbarProvider.cq("RadialLineChart", DashboardTileToolbarProvider.bu, 21);
|
|
6345
|
+
DashboardTileToolbarProvider.cq("ScatterMap", DashboardTileToolbarProvider.by, 22);
|
|
6346
|
+
DashboardTileToolbarProvider.cq("ScatterChart", DashboardTileToolbarProvider.bw, 23);
|
|
6347
|
+
DashboardTileToolbarProvider.cq("SparklineChart", DashboardTileToolbarProvider.b0, 24);
|
|
6348
|
+
DashboardTileToolbarProvider.cq("SplineAreaChart", DashboardTileToolbarProvider.b2, 25);
|
|
6349
|
+
DashboardTileToolbarProvider.cq("SplineChart", DashboardTileToolbarProvider.b4, 26);
|
|
6350
|
+
DashboardTileToolbarProvider.cq("StackedAreaChart", DashboardTileToolbarProvider.b6, 27);
|
|
6351
|
+
DashboardTileToolbarProvider.cq("StackedBarChart", DashboardTileToolbarProvider.b8, 28);
|
|
6352
|
+
DashboardTileToolbarProvider.cq("StackedColumnChart", DashboardTileToolbarProvider.ca, 29);
|
|
6353
|
+
DashboardTileToolbarProvider.cq("StepAreaChart", DashboardTileToolbarProvider.cc, 30);
|
|
6354
|
+
DashboardTileToolbarProvider.cq("StepLineChart", DashboardTileToolbarProvider.ce, 31);
|
|
6355
|
+
DashboardTileToolbarProvider.cq("TextGauge", DashboardTileToolbarProvider.cg, 32);
|
|
6356
|
+
DashboardTileToolbarProvider.cq("TextView", DashboardTileToolbarProvider.ci, 33);
|
|
6357
|
+
DashboardTileToolbarProvider.cq("TimeSeriesChart", DashboardTileToolbarProvider.ck, 34);
|
|
6358
|
+
DashboardTileToolbarProvider.cq("Treemap", DashboardTileToolbarProvider.cm, 35);
|
|
6257
6359
|
}
|
|
6258
6360
|
return _this;
|
|
6259
6361
|
}
|
|
6260
|
-
DashboardTileToolbarProvider.
|
|
6362
|
+
DashboardTileToolbarProvider.cq = function (a, b, c) {
|
|
6261
6363
|
SvgIconRegistry.instance.addSvgPathString("DashboardTile", a, b);
|
|
6262
6364
|
var d = ((function () {
|
|
6263
6365
|
var $ret = new DashboardTileGalleryIconInfo();
|
|
@@ -6266,8 +6368,8 @@ var DashboardTileToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
6266
6368
|
$ret.b = "DashboardTile";
|
|
6267
6369
|
return $ret;
|
|
6268
6370
|
})());
|
|
6269
|
-
DashboardTileToolbarProvider.
|
|
6270
|
-
DashboardTileToolbarProvider.
|
|
6371
|
+
DashboardTileToolbarProvider.aj.add(d);
|
|
6372
|
+
DashboardTileToolbarProvider.ai.item(d.a, d);
|
|
6271
6373
|
};
|
|
6272
6374
|
DashboardTileToolbarProvider.prototype.getDesiredToolbarActions = function (a, b, c) {
|
|
6273
6375
|
if (b == null) {
|
|
@@ -6281,21 +6383,23 @@ var DashboardTileToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
6281
6383
|
f.iconCollectionName = "ChartToolbarIcons";
|
|
6282
6384
|
f.iconName = "analyze-grid";
|
|
6283
6385
|
f.name = "DashboardTileToggleGrid";
|
|
6386
|
+
f.title = "Toggle Grid";
|
|
6284
6387
|
var g = new ToolActionIconButtonInfo();
|
|
6285
6388
|
g.iconCollectionName = "DashboardTile";
|
|
6286
6389
|
g.iconName = "Editor";
|
|
6287
6390
|
g.name = "DashboardTileToggleEditor";
|
|
6391
|
+
g.title = "Toggle Visualization Settings";
|
|
6288
6392
|
d[d.length - 3] = f;
|
|
6289
6393
|
d[d.length - 2] = g;
|
|
6290
6394
|
var h = new ToolActionIconMenuInfo();
|
|
6291
6395
|
h.iconCollectionName = "DashboardTile";
|
|
6292
6396
|
h.iconName = "ColumnChart";
|
|
6293
6397
|
h.name = "DashboardTileSelectVisualization";
|
|
6294
|
-
h.actions = this.
|
|
6398
|
+
h.actions = this.ag(a);
|
|
6295
6399
|
d[d.length - 1] = h;
|
|
6296
6400
|
return _super.prototype.getDesiredToolbarActions.call(this, a, d, c);
|
|
6297
6401
|
};
|
|
6298
|
-
DashboardTileToolbarProvider.prototype.
|
|
6402
|
+
DashboardTileToolbarProvider.prototype.ag = function (a) {
|
|
6299
6403
|
var b = a.m;
|
|
6300
6404
|
if (b == null) {
|
|
6301
6405
|
return null;
|
|
@@ -6308,7 +6412,7 @@ var DashboardTileToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
6308
6412
|
var h = new List$1(ToolActionInfo.$, 0);
|
|
6309
6413
|
for (var i = g; i < Math.min(b.length, g + 4); i++) {
|
|
6310
6414
|
var j = new ToolActionIconButtonInfo();
|
|
6311
|
-
var k = DashboardTileToolbarProvider.
|
|
6415
|
+
var k = DashboardTileToolbarProvider.ai.item(b[i]);
|
|
6312
6416
|
j.iconCollectionName = k.b;
|
|
6313
6417
|
j.iconName = k.c;
|
|
6314
6418
|
j.name = "DashboardTileVisualizationType" + EnumUtil.getName(DashboardTileVisualizationType_$type, k.a);
|
|
@@ -6319,35 +6423,35 @@ var DashboardTileToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
6319
6423
|
}
|
|
6320
6424
|
return d.toArray();
|
|
6321
6425
|
};
|
|
6322
|
-
DashboardTileToolbarProvider.prototype.
|
|
6426
|
+
DashboardTileToolbarProvider.prototype.j = function (a, b) {
|
|
6323
6427
|
var c = a;
|
|
6324
6428
|
switch (b.name) {
|
|
6325
6429
|
case "ShowGridlines":
|
|
6326
6430
|
{
|
|
6327
6431
|
var d = b;
|
|
6328
|
-
d.isChecked = c.
|
|
6432
|
+
d.isChecked = c.ik != null;
|
|
6329
6433
|
}
|
|
6330
6434
|
break;
|
|
6331
6435
|
}
|
|
6332
6436
|
};
|
|
6333
|
-
DashboardTileToolbarProvider.prototype.
|
|
6437
|
+
DashboardTileToolbarProvider.prototype.ac = function (a, b, c, d) {
|
|
6334
6438
|
var e = a;
|
|
6335
6439
|
switch (b) {
|
|
6336
6440
|
case "CategoryAxisMajorStroke":
|
|
6337
|
-
this.
|
|
6441
|
+
this.k("ShowGridlines", 2, a.ik != null);
|
|
6338
6442
|
break;
|
|
6339
6443
|
case "ValidVisualizationTypes":
|
|
6340
|
-
a.
|
|
6444
|
+
a.hc();
|
|
6341
6445
|
break;
|
|
6342
6446
|
}
|
|
6343
6447
|
};
|
|
6344
6448
|
DashboardTileToolbarProvider.prototype.onToolCommandExecuting = function (a, b) {
|
|
6345
6449
|
var c = a;
|
|
6346
6450
|
if (b.commandId == "DashboardTileToggleGrid") {
|
|
6347
|
-
c.
|
|
6451
|
+
c.h8();
|
|
6348
6452
|
}
|
|
6349
6453
|
if (b.commandId == "DashboardTileToggleEditor") {
|
|
6350
|
-
c.
|
|
6454
|
+
c.h7();
|
|
6351
6455
|
}
|
|
6352
6456
|
if (stringStartsWith(b.commandId, "DashboardTileVisualizationType")) {
|
|
6353
6457
|
var d_1 = stringReplace(b.commandId, "DashboardTileVisualizationType", "");
|
|
@@ -6358,72 +6462,72 @@ var DashboardTileToolbarProvider = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
6358
6462
|
}
|
|
6359
6463
|
return _super.prototype.onToolCommandExecuting.call(this, a, b);
|
|
6360
6464
|
};
|
|
6361
|
-
DashboardTileToolbarProvider.prototype.
|
|
6465
|
+
DashboardTileToolbarProvider.prototype.s = function (a, b) {
|
|
6362
6466
|
var c = a;
|
|
6363
|
-
if (this.
|
|
6364
|
-
if (c.
|
|
6365
|
-
if (this.
|
|
6366
|
-
c.
|
|
6467
|
+
if (this.f(b, "ShowGridlines")) {
|
|
6468
|
+
if (c.ik == null) {
|
|
6469
|
+
if (this.cr != null) {
|
|
6470
|
+
c.ik = this.cr;
|
|
6367
6471
|
}
|
|
6368
6472
|
else {
|
|
6369
6473
|
var d_2 = null;
|
|
6370
|
-
c.
|
|
6474
|
+
c.g8(function (e) {
|
|
6371
6475
|
d_2 = e.aaq;
|
|
6372
|
-
c.
|
|
6476
|
+
c.ik = d_2;
|
|
6373
6477
|
});
|
|
6374
6478
|
}
|
|
6375
6479
|
}
|
|
6376
6480
|
}
|
|
6377
6481
|
else {
|
|
6378
|
-
if (c.
|
|
6379
|
-
this.
|
|
6380
|
-
c.
|
|
6482
|
+
if (c.ik != null) {
|
|
6483
|
+
this.cr = c.ik;
|
|
6484
|
+
c.ik = null;
|
|
6381
6485
|
}
|
|
6382
6486
|
}
|
|
6383
6487
|
};
|
|
6384
6488
|
DashboardTileToolbarProvider.$t = markType(DashboardTileToolbarProvider, 'DashboardTileToolbarProvider', DomainChartToolbarProvider.$);
|
|
6385
|
-
DashboardTileToolbarProvider.
|
|
6386
|
-
DashboardTileToolbarProvider.
|
|
6387
|
-
DashboardTileToolbarProvider.
|
|
6388
|
-
DashboardTileToolbarProvider.
|
|
6389
|
-
DashboardTileToolbarProvider.
|
|
6390
|
-
DashboardTileToolbarProvider.
|
|
6391
|
-
DashboardTileToolbarProvider.
|
|
6392
|
-
DashboardTileToolbarProvider.
|
|
6393
|
-
DashboardTileToolbarProvider.
|
|
6394
|
-
DashboardTileToolbarProvider.
|
|
6395
|
-
DashboardTileToolbarProvider.
|
|
6396
|
-
DashboardTileToolbarProvider.
|
|
6397
|
-
DashboardTileToolbarProvider.
|
|
6398
|
-
DashboardTileToolbarProvider.
|
|
6399
|
-
DashboardTileToolbarProvider.
|
|
6400
|
-
DashboardTileToolbarProvider.
|
|
6401
|
-
DashboardTileToolbarProvider.
|
|
6402
|
-
DashboardTileToolbarProvider.
|
|
6403
|
-
DashboardTileToolbarProvider.
|
|
6404
|
-
DashboardTileToolbarProvider.
|
|
6405
|
-
DashboardTileToolbarProvider.
|
|
6406
|
-
DashboardTileToolbarProvider.
|
|
6407
|
-
DashboardTileToolbarProvider.
|
|
6408
|
-
DashboardTileToolbarProvider.
|
|
6409
|
-
DashboardTileToolbarProvider.
|
|
6410
|
-
DashboardTileToolbarProvider.
|
|
6411
|
-
DashboardTileToolbarProvider.
|
|
6412
|
-
DashboardTileToolbarProvider.
|
|
6413
|
-
DashboardTileToolbarProvider.
|
|
6414
|
-
DashboardTileToolbarProvider.
|
|
6415
|
-
DashboardTileToolbarProvider.b0 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 15.6667C3 15.6667 3 9.83333 7.5 9.83333C12 9.83333 10.875 17.3333 15.375 17.3333C19.875 17.3333 21 6.5 21 6.5V21.5H3V15.6667Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 15.8077C3 15.8077 3 9.88462 7.5 9.88462C12 9.88462 10.875 17.5 15.375 17.5C19.875 17.5 21 6.5 21 6.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19.2627 7.32568C19.2627 6.49733 19.9342 5.82568 20.7627 5.82568C21.5912 5.82568 22.2627 6.49733 22.2627 7.32568C22.2627 8.15403 21.5912 8.82568 20.7627 8.82568C19.9342 8.82568 19.2627 8.15403 19.2627 7.32568Z\" fill=\"#6988FF\"/>\r\n<path d=\"M14.2642 17.5C14.2642 16.6716 14.9357 16 15.7642 16C16.5927 16 17.2642 16.6716 17.2642 17.5C17.2642 18.3284 16.5927 19 15.7642 19C14.9357 19 14.2642 18.3284 14.2642 17.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M5.41211 9.99622C5.41211 9.16787 6.08361 8.49622 6.91216 8.49622C7.74061 8.49622 8.41211 9.16787 8.41211 9.99622C8.41211 10.8246 7.74061 11.4962 6.91216 11.4962C6.08361 11.4962 5.41211 10.8246 5.41211 9.99622Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 15.5C1.5 14.6716 2.1715 14 3.00005 14C3.8285 14 4.5 14.6716 4.5 15.5C4.5 16.3284 3.8285 17 3.00005 17C2.1715 17 1.5 16.3284 1.5 15.5Z\" fill=\"#6988FF\"/>\r\n</svg>\r\n";
|
|
6489
|
+
DashboardTileToolbarProvider.ah = false;
|
|
6490
|
+
DashboardTileToolbarProvider.aj = new List$1(DashboardTileGalleryIconInfo.$, 0);
|
|
6491
|
+
DashboardTileToolbarProvider.ai = new Dictionary$2(DashboardTileVisualizationType_$type, DashboardTileGalleryIconInfo.$, 0);
|
|
6492
|
+
DashboardTileToolbarProvider.co = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M13.5002 3.5C14.0524 3.5 14.5 3.9449 14.5 4.49329V20.5048C14.5 21.0533 14.0563 21.498 13.5002 21.498H10.4998C9.94763 21.498 9.5 21.0531 9.5 20.5048L9.5 4.49329C9.5 3.94471 9.94372 3.5 10.4998 3.5H13.5002Z\" fill=\"#6988FF\"/>\r\n<path d=\"M20.0002 10.5C20.5524 10.5 21 10.9448 21 11.4956V20.5044C21 21.0543 20.5563 21.5 20.0002 21.5H16.9998C16.4476 21.5 16 21.0552 16 20.5044V11.4956C16 10.9457 16.4437 10.5 16.9998 10.5H20.0002Z\" fill=\"#6988FF\"/>\r\n<path d=\"M7.00019 6.5C7.55237 6.5 8 6.94892 8 7.50748V20.4925C8 21.0489 7.55628 21.5 7.00019 21.5H3.99981C3.44763 21.5 3 21.0511 3 20.4925L3 7.50748C3 6.95107 3.44372 6.5 3.99981 6.5H7.00019Z\" fill=\"#6988FF\"/>\r\n<path d=\"M5.5 14.5L12 10.5L18.5 18.5V18.5\" stroke=\"#BDBFC4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M10.5 10.6892C10.5 9.86086 11.1715 9.18921 12 9.18921C12.8285 9.18921 13.5 9.86086 13.5 10.6892C13.5 11.5176 12.8285 12.1892 12 12.1892C11.1715 12.1892 10.5 11.5176 10.5 10.6892Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M4 14.5C4 13.6716 4.6715 13 5.50005 13C6.3285 13 7 13.6716 7 14.5C7 15.3284 6.3285 16 5.50005 16C4.6715 16 4 15.3284 4 14.5Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M17 18.5C17 17.6716 17.6715 17 18.5 17C19.3285 17 20 17.6716 20 18.5C20 19.3284 19.3285 20 18.5 20C17.6715 20 17 19.3284 17 18.5Z\" fill=\"#BDBFC4\"/>\r\n</svg>";
|
|
6493
|
+
DashboardTileToolbarProvider.ak = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M21 6.5V21.5H3V14.5L8 10.5L13 14.5L21 6.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 14.5L8 10.5L13 14.5L21 6.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19 7C19 6.17165 19.6715 5.5 20.5 5.5C21.3285 5.5 22 6.17165 22 7C22 7.82835 21.3285 8.5 20.5 8.5C19.6715 8.5 19 7.82835 19 7Z\" fill=\"#6988FF\"/>\r\n<path d=\"M11.5 14.5C11.5 13.6716 12.1715 13 13 13C13.8285 13 14.5 13.6716 14.5 14.5C14.5 15.3284 13.8285 16 13 16C12.1715 16 11.5 15.3284 11.5 14.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M6.5 10.5C6.5 9.67165 7.1715 9 8.00005 9C8.8285 9 9.5 9.67165 9.5 10.5C9.5 11.3284 8.8285 12 8.00005 12C7.1715 12 6.5 11.3284 6.5 10.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 14.5C1.5 13.6716 2.1715 13 3.00005 13C3.8285 13 4.5 13.6716 4.5 14.5C4.5 15.3284 3.8285 16 3.00005 16C2.1715 16 1.5 15.3284 1.5 14.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6494
|
+
DashboardTileToolbarProvider.am = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M20.998 20.5002C20.998 21.0524 20.5531 21.5 20.0048 21.5H3.99329C3.44471 21.5 3 21.0563 3 20.5002V17.4998C3 16.9476 3.4449 16.5 3.99329 16.5H20.0048C20.5533 16.5 20.998 16.9437 20.998 17.4998V20.5002Z\" fill=\"#6988FF\"/>\r\n<path d=\"M18 14.0002C18 14.5524 17.5511 15 16.9925 15H4.00748C3.45107 15 3 14.5563 3 14.0002V10.9998C3 10.4476 3.44892 10 4.00748 10H16.9925C17.5489 10 18 10.4437 18 10.9998V14.0002Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M15 7.50019C15 8.05237 14.5442 8.5 13.9975 8.5H4.00247C3.44882 8.5 3 8.05628 3 7.50019V4.49981C3 3.94763 3.45576 3.5 4.00247 3.5H13.9975C14.5512 3.5 15 3.94372 15 4.49981V7.50019Z\" fill=\"#BDBFC4\"/>\r\n</svg>";
|
|
6495
|
+
DashboardTileToolbarProvider.ao = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M8.60613 16.3679C8.60613 17.9437 7.34333 19.2357 5.80311 19.2357C4.2628 19.2357 3 17.9437 3 16.3679C3 14.792 4.2628 13.5 5.80311 13.5C7.34333 13.5 8.60613 14.792 8.60613 16.3679Z\" fill=\"#6988FF\"/>\r\n<path d=\"M9.01871 9.40892C9.01871 10.521 8.09647 11.4646 7.00933 11.4646C5.92212 11.4646 5 10.521 5 9.40892C5 8.29651 5.92212 7.5 7.00933 7.5C8.09647 7.5 9.01871 8.29651 9.01871 9.40892Z\" fill=\"#6988FF\"/>\r\n<path d=\"M12.7249 17.3824C12.7249 17.8689 12.338 18.2648 11.8625 18.2648C11.3869 18.2648 11 17.8689 11 17.3824C11 16.8959 11.3869 16.5 11.8625 16.5C12.338 16.5 12.7249 16.8959 12.7249 17.3824Z\" fill=\"#6988FF\"/>\r\n<path d=\"M14.8515 11.9266C14.8515 13.2968 13.7112 14.4635 12.3719 14.4635C11.0326 14.4635 10 13.2968 10 11.9266C10 10.5564 11.0326 9.5 12.3719 9.5C13.7112 9.5 14.8515 10.5564 14.8515 11.9266Z\" fill=\"#6988FF\"/>\r\n<path d=\"M12 5.52327C12 6.0871 11.5512 6.54617 11 6.54617C10.4486 6.54617 10 6.0871 10 5.52327C10 4.95902 10.4486 4.5 11 4.5C11.5512 4.5 12 4.95902 12 5.52327Z\" fill=\"#6988FF\"/>\r\n<path d=\"M19.1265 10.0442C19.1265 10.9067 18.3525 11.5883 17.5093 11.5883C16.6663 11.5883 16 10.9067 16 10.0442C16 9.18164 16.6663 8.5 17.5093 8.5C18.3525 8.5 19.1265 9.18164 19.1265 10.0442Z\" fill=\"#6988FF\"/>\r\n<path d=\"M19.9593 16.0369C19.9593 17.4277 18.839 18.4634 17.4797 18.4634C16.1203 18.4634 15 17.4277 15 16.0369C15 14.6461 16.1203 13.5 17.4797 13.5C18.839 13.5 19.9593 14.6461 19.9593 16.0369Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6496
|
+
DashboardTileToolbarProvider.aq = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M21 7.50019C21 8.05237 20.5551 8.5 20.0066 8.5H3.9934C3.44476 8.5 3 8.05628 3 7.50019V4.49981C3 3.94763 3.44495 3.5 3.9934 3.5H20.0066C20.5552 3.5 21 3.94372 21 4.49981V7.50019Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M19 8.5H4.00087C3.44811 8.5 3 8.05628 3 7.50019V4.49981C3 3.94763 3.44463 3.5 4.00087 3.5H19V8.5Z\" fill=\"#6FDB73\"/>\r\n<path d=\"M8.99609 8V4\" stroke=\"white\" stroke-linecap=\"square\"/>\r\n<path d=\"M21 14.0002C21 14.5524 20.5551 15 20.0066 15H3.9934C3.44476 15 3 14.5563 3 14.0002V10.9998C3 10.4476 3.44495 10 3.9934 10H20.0066C20.5552 10 21 10.4437 21 10.9998V14.0002Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M13 15H3.9954C3.44565 15 3 14.5563 3 14.0002V10.9998C3 10.4476 3.45566 10 3.9954 10H13V15Z\" fill=\"#FF5959\"/>\r\n<path d=\"M16.3369 14.5V10.5\" stroke=\"white\" stroke-linecap=\"square\"/>\r\n<path d=\"M21.0732 20.5002C21.0732 21.0524 20.6283 21.5 20.0798 21.5H4.06664C3.518 21.5 3.07324 21.0563 3.07324 20.5002V17.4998C3.07324 16.9476 3.51819 16.5 4.06664 16.5H20.0798C20.6285 16.5 21.0732 16.9437 21.0732 17.4998V20.5002Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M16.0435 21.5H4.00184C3.44854 21.5 3 21.0563 3 20.5002V17.4998C3 16.9476 3.44899 16.5 4.00184 16.5H16.0435V21.5Z\" fill=\"#F9CF6D\"/>\r\n<path d=\"M8.25 21V17\" stroke=\"white\" stroke-linecap=\"square\"/>\r\n</svg>";
|
|
6497
|
+
DashboardTileToolbarProvider.as = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M6.5 3.5V21.5\" stroke=\"#6FDB73\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M4 15.5L4 7.5C4 6.94772 4.44772 6.5 5 6.5H8C8.55228 6.5 9 6.94772 9 7.5V15.5C9 16.0523 8.55228 16.5 8 16.5H5C4.44772 16.5 4 16.0523 4 15.5Z\" fill=\"#6FDB73\"/>\r\n<path d=\"M17.5 3.5V21.5\" stroke=\"#FF5959\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M15 17.5V13.5C15 12.9477 15.4477 12.5 16 12.5H19C19.5523 12.5 20 12.9477 20 13.5V17.5C20 18.0523 19.5523 18.5 19 18.5H16C15.4477 18.5 15 18.0523 15 17.5Z\" fill=\"#FF5959\"/>\r\n</svg>\r\n";
|
|
6498
|
+
DashboardTileToolbarProvider.au = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M13.438 13.3159C13.623 13.3759 13.782 13.4989 13.887 13.6619L14.04 13.9019C14.157 14.0839 14.354 14.2009 14.57 14.2179L14.603 14.2189C14.786 14.2339 14.911 14.4089 14.866 14.5869L14.588 15.6579C14.537 15.8569 14.591 16.0689 14.732 16.2209L15.803 17.3699C15.935 17.5129 15.991 17.7119 15.952 17.9029L15.579 19.7159C15.572 19.7559 15.567 19.7969 15.567 19.8379V22.2719C15.567 22.4269 15.626 22.5759 15.734 22.6879C16.087 23.0609 16.715 22.8499 16.772 22.3389L16.887 21.3059C16.9 21.1829 16.952 21.0679 17.033 20.9739L18.789 18.9679C18.837 18.9109 18.897 18.8649 18.963 18.8299L19.943 18.3179C20.075 18.2499 20.176 18.1359 20.229 17.9989L20.821 16.4449C20.941 16.1279 20.777 15.7739 20.457 15.6599L19.338 15.2649C19.21 15.2199 19.103 15.1349 19.03 15.0219L18.639 14.4139L16.457 13.5409C16.243 13.4549 16.005 13.4439 15.784 13.5089L14.864 13.7759C14.617 13.8469 14.368 13.6799 14.337 13.4269L14.318 13.2649C14.299 13.0969 14.147 12.9769 13.98 12.9949C13.866 13.0079 13.76 12.9339 13.731 12.8229L13.6542 12.6729L13.438 13.3159Z\" fill=\"#D4D6DC\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.75244 9.0073V9.4183C8.75244 9.5423 8.79644 9.9633 8.87744 10.0573L11.3214 12.6273L13.4374 13.3153C13.5604 13.3553 13.6444 13.1343 13.6874 12.6513C13.6444 12.4773 13.4784 12.3633 13.3004 12.3843L13.0614 12.4123C12.8264 12.4403 12.5994 12.3073 12.5094 12.0873L12.4314 11.8993C12.3374 11.6723 12.4154 11.4103 12.6174 11.2703L12.7974 11.1453C12.9244 11.0573 13.0834 11.0303 13.2314 11.0703L14.0764 11.2973C14.2974 11.3573 14.5334 11.2643 14.6554 11.0693L15.2874 10.0573L15.9264 9.1233C15.9454 9.0953 16.0463 9.0312 16.0693 9.0072L8.75244 9.0073Z\" fill=\"#A2B6FF\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.10663 3.21732C4.19213 3.17607 4.28775 3.15957 4.38169 3.16825L4.47463 3.18532L6.69563 3.81332C6.77288 3.83432 6.8535 3.83845 6.93159 3.82401L7.00863 3.80332L7.96363 3.47132C8.04838 3.44207 8.13875 3.43476 8.22589 3.44981L8.31163 3.47232L10.3916 4.21532C10.4323 4.22999 10.4747 4.23932 10.5178 4.24362L10.5826 4.24632L11.6486 4.21532V9.00732H8.75263V8.35032C8.75263 8.25732 8.72788 8.16657 8.68175 8.08736L8.62863 8.01232L7.28163 6.42432C7.24096 6.37699 7.19229 6.33721 7.138 6.30677L7.05263 6.26832L5.67763 5.79632C5.53429 5.74632 5.37846 5.7623 5.24948 5.83556L5.17563 5.88632L4.69463 6.28232C4.57046 6.38482 4.40671 6.42344 4.25257 6.39006L4.16163 6.36132L3.65763 6.15232C3.39663 6.04342 3.27495 5.75065 3.36694 5.49417L3.40563 5.41032C3.48396 5.27282 3.49493 5.10824 3.43912 4.96345L3.39763 4.87932L3.07663 4.35032C2.93173 4.11272 2.99986 3.80951 3.21759 3.65356L3.29563 3.60732L4.10663 3.21732ZM8.92463 2.66422C9.03605 2.53222 9.21067 2.47516 9.37604 2.51004L9.45763 2.53522L10.1046 2.80422C10.1546 2.82556 10.2073 2.83711 10.2608 2.83978L10.3416 2.83722L10.8416 2.77322C10.9696 2.75722 11.097 2.79498 11.1945 2.87473L11.2616 2.94222L11.2996 2.99022C11.5271 3.27251 11.3571 3.68241 11.0194 3.73952L10.9386 3.74622H9.97163C9.92696 3.74622 9.88274 3.73956 9.84014 3.72682L9.77763 3.70322L9.08563 3.38622C8.80563 3.25822 8.72563 2.89922 8.92463 2.66422Z\" fill=\"#6988FF\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.8774 3.91128C13.0542 3.79753 13.2784 3.80245 13.4489 3.91533L13.5184 3.97028L13.7144 4.15528C13.9286 4.35598 13.9314 4.68709 13.7396 4.89273L13.6684 4.95628L13.0504 5.41328C12.8558 5.55817 12.7883 5.81368 12.8776 6.03091L12.9184 6.11028L13.1324 6.45328C13.1759 6.52228 13.2341 6.58003 13.3026 6.62231L13.3744 6.65928L14.1814 6.99728C14.511 7.13574 14.8678 6.91207 14.9042 6.57325L14.9064 6.48628L14.8774 5.95328C14.8602 5.65237 15.0991 5.40601 15.3899 5.40202L15.4784 5.40828L16.7754 5.60728C16.8986 5.62648 17.0103 5.6892 17.091 5.78213L17.1454 5.85728L18.1074 7.47328C18.2541 7.71898 18.174 8.03029 17.943 8.17976L17.8604 8.22328L16.1564 8.93628L16.1114 8.96916L16.0694 9.00728H11.6484V4.21528L12.2934 4.19728C12.3568 4.19528 12.4192 4.18173 12.4775 4.1578L12.5614 4.11428L12.8774 3.91128ZM14.8489 2.67338C14.8876 2.67271 14.9263 2.68005 14.9623 2.69449L15.0139 2.72138L16.4479 3.69938C16.4779 3.72005 16.5035 3.7456 16.5234 3.77516L16.5489 3.82238L16.9289 4.71938C17.0072 4.90478 16.8725 5.10152 16.6844 5.10986L16.6199 5.10538L15.6979 4.93738C15.5237 4.90627 15.4269 4.72662 15.4834 4.56909L15.5119 4.51138C15.5882 4.39052 15.5609 4.23661 15.4584 4.14787L15.4009 4.10938L13.7839 3.30138C13.7284 3.27363 13.6662 3.26557 13.6065 3.27677L13.5479 3.29438L12.7229 3.64838C12.6146 3.69505 12.4917 3.6681 12.4121 3.58665L12.3699 3.53138L12.1479 3.15138C12.0528 2.98783 12.145 2.78555 12.3162 2.73911L12.3839 2.72938L14.8489 2.67338Z\" fill=\"#546FD4\"/>\r\n</svg>";
|
|
6499
|
+
DashboardTileToolbarProvider.bs = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 16.5C3 11.5294 7.02944 7.5 12 7.5C16.9706 7.5 21 11.5294 21 16.5H17C17 13.7386 14.7614 11.5 12 11.5C9.23858 11.5 7 13.7386 7 16.5H3Z\" fill=\"#6FDB73\"/>\r\n<path d=\"M18.0206 9.8103C19.8498 11.4577 20.9999 13.8445 20.9999 16.5H16.9999C16.9999 15.0247 16.361 13.6987 15.3447 12.7835L18.0206 9.8103V9.8103Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M14.2226 13.9728L13.5073 14.8027\" stroke=\"#6FDB73\" stroke-linecap=\"round\"/>\r\n</svg>";
|
|
6500
|
+
DashboardTileToolbarProvider.aw = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M16.9998 9.5H20.0002C20.5563 9.5 21 9.94882 21 10.5025V20.4975C21 21.0442 20.5524 21.5 20.0002 21.5H16.9998C16.4437 21.5 16 21.0512 16 20.4975V10.5025C16 9.95576 16.4476 9.5 16.9998 9.5Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M10.4998 6.5H13.5002C14.0563 6.5 14.5 6.95107 14.5 7.50748V20.4925C14.5 21.0511 14.0524 21.5 13.5002 21.5H10.4998C9.94372 21.5 9.5 21.0489 9.5 20.4925V7.50748C9.5 6.94892 9.94763 6.5 10.4998 6.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3.99981 3.50195H7.00019C7.55628 3.50195 8 3.94666 8 4.49524V20.5067C8 21.0551 7.55237 21.5 7.00019 21.5H3.99981C3.44372 21.5 3 21.0553 3 20.5067L3 4.49524C3 3.94685 3.44763 3.50195 3.99981 3.50195Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6501
|
+
DashboardTileToolbarProvider.ay = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M9 21.5L15 3.5\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M7 8.5L3 12.5L7 16.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M17 8.5L21 12.5L17 16.5V16.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n</svg>";
|
|
6502
|
+
DashboardTileToolbarProvider.a0 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M15.9108 16.1119C14.9302 17.1973 13.5216 17.8802 11.9541 17.8802C8.99184 17.8802 6.59078 15.4489 6.59078 12.4495C6.59078 9.45021 8.99184 7.01846 11.9541 7.01846C12.9541 7.01846 13.8883 7.29962 14.69 7.78269L16.6971 4.93271C15.3099 4.02736 13.6604 3.5 11.8875 3.5C6.97913 3.5 3 7.52889 3 12.5002C3 17.4707 6.97913 21.5 11.8875 21.5C14.5082 21.5 16.8621 20.3506 18.488 18.5247L15.9108 16.1119Z\" fill=\"#6988FF\"/>\r\n<path d=\"M16.0034 7.4742C16.6752 8.02737 17.2297 8.71757 17.6253 9.50611L21.4797 8.15347C20.7773 6.57732 19.7055 5.20739 18.3754 4.15369L16.0034 7.4742Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M17.9191 10.4203C18.1022 11.0119 18.2031 11.6409 18.2031 12.2939C18.2031 13.6408 17.7827 14.8869 17.0703 15.9094L20.1854 18.8257C21.5069 17.0498 22.2903 14.8413 22.2903 12.4465C22.2903 11.2679 22.0965 10.1364 21.7458 9.07739L17.9191 10.4203Z\" fill=\"#D4D6DC\"/>\r\n</svg>\r\n";
|
|
6503
|
+
DashboardTileToolbarProvider.a4 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M9 16.5H15L12.8944 20.7111C12.6474 21.2051 12.0468 21.4053 11.5528 21.1584C11.3593 21.0616 11.2023 20.9047 11.1056 20.7111L9 16.5Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M9 16.5L6 10.5L18 10.5L15 16.5H9Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M17.9999 10.5H5.99986L3.72347 5.94721C3.47648 5.45324 3.6767 4.85256 4.17068 4.60557C4.30954 4.53615 4.46265 4.5 4.61789 4.5H19.3818C19.9341 4.5 20.3818 4.94772 20.3818 5.5C20.3818 5.65525 20.3457 5.80836 20.2763 5.94721L17.9999 10.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6504
|
+
DashboardTileToolbarProvider.a6 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 11.5H21V16.5H3L3 11.5Z\" fill=\"#BBBBBB\"/>\r\n<path d=\"M3 16.5H21V20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V16.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 6.5H21V11.5H3L3 6.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M16 9V8C15.4477 8 15 8.44772 15 9H16ZM16 9H15C15 9.55228 15.4477 10 16 10V9ZM19 9H16V10H19V9ZM19 9V10C19.5523 10 20 9.55228 20 9H19ZM19 9H20C20 8.44772 19.5523 8 19 8V9ZM16 9H19V8H16V9ZM16 13C15.4477 13 15 13.4477 15 14H16V13ZM19 13H16V14H19V13ZM20 14C20 13.4477 19.5523 13 19 13V14H20ZM19 15C19.5523 15 20 14.5523 20 14H19V15ZM16 15H19V14H16V15ZM15 14C15 14.5523 15.4477 15 16 15V14H15ZM5 19V18C4.44772 18 4 18.4477 4 19H5ZM5 19H4C4 19.5523 4.44772 20 5 20V19ZM8 19H5V20H8V19ZM8 19V20C8.55228 20 9 19.5523 9 19H8ZM8 19H9C9 18.4477 8.55228 18 8 18V19ZM5 19H8V18H5V19ZM10.5 18C9.94771 18 9.5 18.4477 9.5 19H10.5V18ZM13.5 18H10.5V19H13.5V18ZM14.5 19C14.5 18.4477 14.0523 18 13.5 18V19H14.5ZM13.5 20C14.0523 20 14.5 19.5523 14.5 19H13.5V20ZM10.5 20H13.5V19H10.5V20ZM9.5 19C9.5 19.5523 9.94771 20 10.5 20V19H9.5ZM16 18C15.4477 18 15 18.4477 15 19H16V18ZM19 18H16V19H19V18ZM20 19C20 18.4477 19.5523 18 19 18V19H20ZM19 20C19.5523 20 20 19.5523 20 19H19V20ZM16 20H19V19H16V20ZM15 19C15 19.5523 15.4477 20 16 20V19H15ZM10.5 14V13C9.94771 13 9.5 13.4477 9.5 14H10.5ZM10.5 14H9.5C9.5 14.5523 9.94771 15 10.5 15V14ZM13.5 14H10.5V15H13.5V14ZM13.5 14V15C14.0523 15 14.5 14.5523 14.5 14H13.5ZM13.5 14H14.5C14.5 13.4477 14.0523 13 13.5 13V14ZM10.5 14H13.5V13H10.5V14ZM5 13C4.44772 13 4 13.4477 4 14H5V13ZM8 13H5V14H8V13ZM9 14C9 13.4477 8.55228 13 8 13V14H9ZM8 15C8.55228 15 9 14.5523 9 14H8V15ZM5 15H8V14H5V15ZM4 14C4 14.5523 4.44772 15 5 15V14H4ZM10.5 8C9.94771 8 9.5 8.44772 9.5 9H10.5V8ZM13.5 8H10.5V9H13.5V8ZM14.5 9C14.5 8.44772 14.0523 8 13.5 8V9H14.5ZM13.5 10C14.0523 10 14.5 9.55228 14.5 9H13.5V10ZM10.5 10H13.5V9H10.5V10ZM9.5 9C9.5 9.55228 9.94771 10 10.5 10V9H9.5ZM5 9V8C4.44772 8 4 8.44772 4 9H5ZM5 9H4C4 9.55228 4.44772 10 5 10V9ZM8 9H5V10H8V9ZM8 9V10C8.55228 10 9 9.55228 9 9H8ZM8 9H9C9 8.44772 8.55228 8 8 8V9ZM5 9H8V8H5V9Z\" fill=\"#5E5F62\"/>\r\n<path d=\"M4 3.5H20C20.5523 3.5 21 3.94772 21 4.5V6.5H3V4.5C3 3.94772 3.44772 3.5 4 3.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6505
|
+
DashboardTileToolbarProvider.ba = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.28263 2.32183C8.11759 2.28663 7.94337 2.34379 7.83144 2.47606C7.63294 2.71064 7.71304 3.06993 7.99243 3.19799L8.68465 3.5153L8.74695 3.53858C8.78943 3.55108 8.83359 3.55748 8.87813 3.55748H9.84531L9.92612 3.55079C10.2639 3.4937 10.4341 3.08401 10.2068 2.80196L10.1683 2.7541L10.1011 2.68634C10.0035 2.60632 9.87619 2.56856 9.74828 2.58476L9.24843 2.64824L9.16799 2.65143C9.11449 2.64891 9.06161 2.63712 9.01177 2.61641L8.36405 2.3472L8.28263 2.32183ZM13.7562 2.48492C13.7952 2.48402 13.8337 2.49128 13.8694 2.50598L13.9205 2.53351L15.3552 3.51101C15.385 3.53123 15.4103 3.55689 15.4302 3.58646L15.4557 3.63357L15.8356 4.53152C15.9138 4.7164 15.7791 4.91293 15.5914 4.92127L15.527 4.91681L14.6052 4.74921C14.4309 4.71753 14.3346 4.53791 14.3904 4.38033L14.4187 4.3226C14.4952 4.20229 14.4682 4.0479 14.3652 3.95937L14.3074 3.92106L12.6913 3.11297C12.6359 3.08531 12.5735 3.07698 12.5138 3.08824L12.4553 3.10605L11.6299 3.45983C11.5214 3.50629 11.3982 3.47935 11.3189 3.3983L11.277 3.34333L11.0552 2.96303C10.9595 2.79899 11.0515 2.59716 11.2232 2.55093L11.2911 2.54127L13.7562 2.48492ZM3.38187 2.99696L5.60217 3.62442C5.7053 3.65358 5.8149 3.65033 5.91612 3.61511L6.87122 3.2829C6.98387 3.24374 7.10649 3.24422 7.21883 3.28436L9.29864 4.02714C9.3598 4.04899 9.42449 4.05924 9.48942 4.0574L11.2007 4.0085C11.2958 4.00577 11.3884 3.97713 11.4685 3.92567L11.7845 3.72253C11.9864 3.59274 12.2507 3.61708 12.4255 3.78157L12.6222 3.96674C12.8595 4.19004 12.8369 4.5736 12.5751 4.76756L11.9577 5.22488C11.7385 5.38719 11.681 5.69076 11.8256 5.92209L12.0401 6.26527C12.0973 6.3569 12.1816 6.42855 12.2812 6.47031L13.089 6.80906C13.4451 6.95839 13.8346 6.68346 13.8132 6.29796L13.7836 5.76518C13.7652 5.43349 14.0568 5.16896 14.3851 5.21948L15.6825 5.41905C15.8368 5.44281 15.9724 5.53423 16.0523 5.66839L17.0147 7.28523C17.1773 7.55835 17.0605 7.91213 16.7673 8.03486L15.0632 8.74824C14.9703 8.78713 14.8905 8.85209 14.8336 8.93524L14.1947 9.86907L13.5621 10.8812C13.4402 11.0763 13.205 11.1687 12.9829 11.1089L12.1388 10.8817C11.9903 10.8417 11.8317 10.8691 11.7053 10.9566L11.5247 11.0817C11.3226 11.2216 11.2453 11.4833 11.3388 11.7106L11.4163 11.8988C11.5069 12.1188 11.7328 12.2516 11.9691 12.2238L12.2078 12.1958C12.3858 12.1748 12.5516 12.2893 12.5951 12.4631L12.6378 12.634C12.6611 12.7272 12.7389 12.7942 12.8305 12.8065L12.8868 12.8071C13.0542 12.7886 13.2052 12.9086 13.2249 13.0758L13.2439 13.2379C13.2738 13.4918 13.5246 13.6581 13.7702 13.5869L14.6901 13.3198C14.912 13.2554 15.149 13.267 15.3635 13.3528L17.546 14.2258L17.9367 14.8336C18.0093 14.9464 18.1173 15.032 18.2439 15.0766L19.3637 15.4719C19.6839 15.5849 19.8481 15.9394 19.7272 16.2567L19.1358 17.8094C19.0831 17.9476 18.9817 18.0616 18.8506 18.1301L17.8699 18.6417C17.8035 18.6763 17.7441 18.7231 17.6947 18.7795L15.9394 20.7857C15.8581 20.8785 15.8072 20.9941 15.7935 21.1168L15.6787 22.1502C15.622 22.6609 14.9941 22.8722 14.6401 22.4996C14.5334 22.3873 14.474 22.2383 14.474 22.0834V19.6492C14.474 19.6084 14.4781 19.5677 14.4863 19.5277L14.8582 17.7146C14.8975 17.5232 14.8417 17.3245 14.7085 17.1815L13.6383 16.0319C13.4978 15.881 13.4439 15.6689 13.4954 15.4692L13.7719 14.3979C13.8176 14.2207 13.6922 14.0453 13.5098 14.0313L13.4768 14.0288C13.2605 14.0121 13.0645 13.8952 12.9473 13.7127L12.7937 13.4739C12.6883 13.3099 12.5295 13.1874 12.3442 13.1271L10.229 12.4384L7.78451 9.56876C7.70393 9.47419 7.65971 9.35399 7.65971 9.22973V8.16192C7.65971 8.03801 7.61569 7.91816 7.53553 7.82369L6.18866 6.23632C6.12785 6.16464 6.04883 6.11068 5.95997 6.08014L4.58495 5.60751C4.41311 5.54843 4.22293 5.58282 4.08267 5.69834L3.6018 6.0943C3.45234 6.21741 3.24709 6.24782 3.06836 6.17333L2.56502 5.96361C2.30377 5.85477 2.18161 5.56201 2.27352 5.30549L2.31218 5.22163C2.40658 5.05644 2.40378 4.85296 2.30484 4.6904L1.98309 4.16185C1.82245 3.89793 1.9245 3.55302 2.20289 3.419L3.01289 3.029C3.12786 2.97366 3.25907 2.96226 3.38187 2.99696Z\" fill=\"#D4D6DC\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4661 6.95297C12.4262 6.95297 12.3873 6.95703 12.3477 6.95899C12.082 5.67442 10.942 4.70593 9.57972 4.70593C8.02128 4.70593 6.75342 5.97393 6.75342 7.53257C6.75342 9.09105 8.02128 10.3592 9.57972 10.3592C9.87618 10.3592 10.1623 10.3128 10.4308 10.2279C10.8022 10.9781 11.5738 11.4967 12.4661 11.4967C13.7187 11.4967 14.7381 10.4776 14.7381 9.22483C14.7381 7.97207 13.7187 6.95297 12.4661 6.95297Z\" fill=\"#6FDB73\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.5836 7.77522C12.3351 7.77522 12.101 7.83813 11.8963 7.94889C11.9219 7.81382 11.9365 7.67499 11.9365 7.53261C11.9365 6.29782 10.932 5.29333 9.69728 5.29333C8.46249 5.29333 7.45801 6.29782 7.45801 7.53261C7.45801 8.76722 8.46249 9.77188 9.69728 9.77188C10.2444 9.77188 10.7459 9.57403 11.1351 9.24691C11.1471 10.036 11.7919 10.6745 12.5836 10.6745C13.3831 10.6745 14.0334 10.0242 14.0334 9.22486C14.0334 8.42553 13.3831 7.77522 12.5836 7.77522Z\" fill=\"#F9CF6D\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.6922 7.53251C10.6922 8.0368 10.2408 8.54105 9.68351 8.54105C9.12663 8.54105 8.6748 8.08959 8.6748 7.53251C8.6748 6.97546 9.12663 6.5238 9.68351 6.5238C10.2408 6.5238 10.6922 7.02822 10.6922 7.53251Z\" fill=\"#FF5959\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.0049 9.23946C13.0049 9.45671 12.8103 9.67392 12.5703 9.67392C12.3303 9.67392 12.1357 9.47946 12.1357 9.23946C12.1357 8.99943 12.3303 8.80484 12.5703 8.80484C12.8103 8.80484 13.0049 9.02221 13.0049 9.23946Z\" fill=\"#FF5959\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.0491 14.3251C16.8667 14.3251 15.6841 15.3837 15.6841 16.6896C15.6841 17.9958 16.7428 19.0544 18.0491 19.0544C19.355 19.0544 20.4137 17.9958 20.4137 16.6896C20.4137 15.3837 19.2316 14.3251 18.0491 14.3251Z\" fill=\"#6FDB73\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.0489 15.4109C17.4095 15.4109 16.77 15.9833 16.77 16.6895C16.77 17.396 17.3425 17.9684 18.0489 17.9684C18.7549 17.9684 19.3273 17.396 19.3273 16.6895C19.3273 15.9833 18.6883 15.4109 18.0489 15.4109Z\" fill=\"#F9CF6D\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.7491 16.6896C18.7491 17.0397 18.4354 17.3898 18.0489 17.3898C17.6619 17.3898 17.3481 17.0763 17.3481 16.6896C17.3481 16.3029 17.6619 15.9894 18.0489 15.9894C18.4354 15.9894 18.7491 16.3395 18.7491 16.6896Z\" fill=\"#FF5959\"/>\r\n</svg>";
|
|
6506
|
+
DashboardTileToolbarProvider.a8 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.28263 2.32183C8.11759 2.28663 7.94337 2.34379 7.83144 2.47606C7.63294 2.71064 7.71304 3.06993 7.99243 3.19799L8.68465 3.5153L8.74695 3.53858C8.78943 3.55108 8.83359 3.55748 8.87813 3.55748H9.84531L9.92612 3.55079C10.2639 3.4937 10.4341 3.08401 10.2068 2.80196L10.1683 2.7541L10.1011 2.68634C10.0035 2.60632 9.87619 2.56856 9.74828 2.58476L9.24843 2.64824L9.16799 2.65143C9.11449 2.64891 9.06161 2.63712 9.01177 2.61641L8.36405 2.3472L8.28263 2.32183ZM13.7562 2.48492C13.7952 2.48402 13.8337 2.49128 13.8694 2.50598L13.9205 2.53351L15.3552 3.51101C15.385 3.53123 15.4103 3.55689 15.4302 3.58646L15.4557 3.63357L15.8356 4.53152C15.9138 4.7164 15.7791 4.91293 15.5914 4.92127L15.527 4.91681L14.6052 4.74921C14.4309 4.71753 14.3346 4.53791 14.3904 4.38033L14.4187 4.3226C14.4952 4.20229 14.4682 4.0479 14.3652 3.95937L14.3074 3.92106L12.6913 3.11297C12.6359 3.08531 12.5735 3.07698 12.5138 3.08824L12.4553 3.10605L11.6299 3.45983C11.5214 3.50629 11.3982 3.47935 11.3189 3.3983L11.277 3.34333L11.0552 2.96303C10.9595 2.79899 11.0515 2.59716 11.2232 2.55093L11.2911 2.54127L13.7562 2.48492ZM3.38187 2.99696L5.60217 3.62442C5.7053 3.65358 5.8149 3.65033 5.91612 3.61511L6.87122 3.2829C6.98387 3.24374 7.10649 3.24422 7.21883 3.28436L9.29864 4.02714C9.3598 4.04899 9.42449 4.05924 9.48942 4.0574L11.2007 4.0085C11.2958 4.00577 11.3884 3.97713 11.4685 3.92567L11.7845 3.72253C11.9864 3.59274 12.2507 3.61708 12.4255 3.78157L12.6222 3.96674C12.8595 4.19004 12.8369 4.5736 12.5751 4.76756L11.9577 5.22488C11.7385 5.38719 11.681 5.69076 11.8256 5.92209L12.0401 6.26527C12.0973 6.3569 12.1816 6.42855 12.2812 6.47031L13.089 6.80906C13.4451 6.95839 13.8346 6.68346 13.8132 6.29796L13.7836 5.76518C13.7652 5.43349 14.0568 5.16896 14.3851 5.21948L15.6825 5.41905C15.8368 5.44281 15.9724 5.53423 16.0523 5.66839L17.0147 7.28523C17.1773 7.55835 17.0605 7.91213 16.7673 8.03486L15.0632 8.74824C14.9703 8.78713 14.8905 8.85209 14.8336 8.93524L14.1947 9.86907L13.5621 10.8812C13.4402 11.0763 13.205 11.1687 12.9829 11.1089L12.1388 10.8817C11.9903 10.8417 11.8317 10.8691 11.7053 10.9566L11.5247 11.0817C11.3226 11.2216 11.2453 11.4833 11.3388 11.7106L11.4163 11.8988C11.5069 12.1188 11.7328 12.2516 11.9691 12.2238L12.2078 12.1958C12.3858 12.1748 12.5516 12.2893 12.5951 12.4631L12.6378 12.634C12.6611 12.7272 12.7389 12.7942 12.8305 12.8065L12.8868 12.8071C13.0542 12.7886 13.2052 12.9086 13.2249 13.0758L13.2439 13.2379C13.2738 13.4918 13.5246 13.6581 13.7702 13.5869L14.6901 13.3198C14.912 13.2554 15.149 13.267 15.3635 13.3528L17.546 14.2258L17.9367 14.8336C18.0093 14.9464 18.1173 15.032 18.2439 15.0766L19.3637 15.4719C19.6839 15.5849 19.8481 15.9394 19.7272 16.2567L19.1358 17.8094C19.0831 17.9476 18.9817 18.0616 18.8506 18.1301L17.8699 18.6417C17.8035 18.6763 17.7441 18.7231 17.6947 18.7795L15.9394 20.7857C15.8581 20.8785 15.8072 20.9941 15.7935 21.1168L15.6787 22.1502C15.622 22.6609 14.9941 22.8722 14.6401 22.4996C14.5334 22.3873 14.474 22.2383 14.474 22.0834V19.6492C14.474 19.6084 14.4781 19.5677 14.4863 19.5277L14.8582 17.7146C14.8975 17.5232 14.8417 17.3245 14.7085 17.1815L13.6383 16.0319C13.4978 15.881 13.4439 15.6689 13.4954 15.4692L13.7719 14.3979C13.8176 14.2207 13.6922 14.0453 13.5098 14.0313L13.4768 14.0288C13.2605 14.0121 13.0645 13.8952 12.9473 13.7127L12.7937 13.4739C12.6883 13.3099 12.5295 13.1874 12.3442 13.1271L10.229 12.4384L7.78451 9.56876C7.70393 9.47419 7.65971 9.35399 7.65971 9.22973V8.16192C7.65971 8.03801 7.61569 7.91816 7.53553 7.82369L6.18866 6.23632C6.12785 6.16464 6.04883 6.11068 5.95997 6.08014L4.58495 5.60751C4.41311 5.54843 4.22293 5.58282 4.08267 5.69834L3.6018 6.0943C3.45234 6.21741 3.24709 6.24782 3.06836 6.17333L2.56502 5.96361C2.30377 5.85477 2.18161 5.56201 2.27352 5.30549L2.31218 5.22163C2.40658 5.05644 2.40378 4.85296 2.30484 4.6904L1.98309 4.16185C1.82245 3.89793 1.9245 3.55302 2.20289 3.419L3.01289 3.029C3.12786 2.97366 3.25907 2.96226 3.38187 2.99696Z\" fill=\"#D4D6DC\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.4027 14.2267C18.7086 14.2267 19.7672 15.2853 19.7672 16.5912C19.7672 17.8973 18.7086 18.956 17.4027 18.956C16.0963 18.956 15.0376 17.8973 15.0376 16.5912C15.0376 15.2853 16.0963 14.2267 17.4027 14.2267ZM9.67103 4.49683C11.0333 4.49683 12.1733 5.46531 12.439 6.74988L12.5574 6.74387C13.81 6.74387 14.8294 7.76297 14.8294 9.01572C14.8294 10.2685 13.81 11.2876 12.5574 11.2876C11.6651 11.2876 10.8935 10.769 10.5221 10.0187C10.2536 10.1037 9.96749 10.1501 9.67103 10.1501C8.11259 10.1501 6.84473 8.88194 6.84473 7.32346C6.84473 5.76482 8.11259 4.49683 9.67103 4.49683Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6507
|
+
DashboardTileToolbarProvider.bc = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.7943 11.4926C19.7943 12.0887 19.4486 12.4941 18.8942 12.4941C18.3458 12.4941 18 12.0887 18 11.4926C18 10.8965 18.3458 10.4911 18.8942 10.4911C19.4486 10.4911 19.7943 10.8965 19.7943 11.4926ZM18.608 14.1453L21.07 10.6222C21.1118 10.5567 21.1714 10.5269 21.231 10.5269C21.3502 10.5269 21.4337 10.6103 21.4337 10.7117C21.4337 10.7593 21.4218 10.8011 21.386 10.8547L18.924 14.3778C18.8823 14.4434 18.8227 14.4732 18.763 14.4732C18.6438 14.4732 18.5604 14.3897 18.5604 14.2884C18.5604 14.2407 18.5723 14.199 18.608 14.1453ZM18.4232 11.4926C18.4232 11.8741 18.6021 12.0887 18.8942 12.0887C19.1923 12.0887 19.3711 11.8741 19.3711 11.4926C19.3711 11.117 19.1923 10.8965 18.8942 10.8965C18.6021 10.8965 18.4232 11.117 18.4232 11.4926ZM21.0999 12.506C21.6542 12.506 22 12.9114 22 13.5075C22 14.1036 21.6542 14.509 21.0999 14.509C20.5514 14.509 20.2057 14.1036 20.2057 13.5075C20.2057 12.9114 20.5514 12.506 21.0999 12.506ZM21.0999 14.1036C21.3979 14.1036 21.5768 13.889 21.5768 13.5075C21.5768 13.1319 21.3979 12.9114 21.0999 12.9114C20.8077 12.9114 20.6289 13.1319 20.6289 13.5075C20.6289 13.889 20.8077 14.1036 21.0999 14.1036Z\" fill=\"#6988FF\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.53061 13.8061L4.32653 12.949L6.23469 15.9286H8.05612L5.34184 11.801L7.97959 8.5H6.09694L4.20408 10.9439L3.53061 11.8673V8.5H2V15.9286H3.53061V13.8061ZM10.1633 15.9286V13.3112H11.5051C12.3861 13.3112 13.0757 13.1012 13.574 12.6811C14.0723 12.2611 14.3214 11.6871 14.3214 10.9592C14.3214 10.4796 14.2075 10.0519 13.9796 9.67602C13.7517 9.30017 13.426 9.01021 13.0026 8.80612C12.5791 8.60204 12.0884 8.5 11.5306 8.5H8.63265V15.9286H10.1633ZM10.1633 12.0714H11.5306C11.9354 12.0714 12.244 11.9762 12.4566 11.7857C12.6692 11.5952 12.7755 11.3231 12.7755 10.9694C12.7755 10.6054 12.6684 10.3112 12.4541 10.0867C12.2398 9.86224 11.9439 9.7466 11.5663 9.7398H10.1633V12.0714ZM15.4694 15.9286H17V8.5H15.4694V15.9286Z\" fill=\"#D4D6DC\"/>\r\n</svg>";
|
|
6508
|
+
DashboardTileToolbarProvider.be = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M21 17.4998V20.5002C21 21.0563 20.5552 21.5 20.0066 21.5H3.9934C3.44495 21.5 3 21.0524 3 20.5002V17.4998C3 16.9437 3.44476 16.5 3.9934 16.5H20.0066C20.5551 16.5 21 16.9476 21 17.4998Z\" fill=\"#6FDB73\"/>\r\n<path d=\"M11 4.49981V7.50019C11 8.05628 10.5536 8.5 10.003 8.5H3.99703C3.45304 8.5 3 8.05237 3 7.50019V4.49981C3 3.94372 3.44639 3.5 3.99703 3.5H10.003C10.547 3.5 11 3.94763 11 4.49981Z\" fill=\"#FF5959\"/>\r\n<path d=\"M18 10.9998V14.0002C18 14.5563 17.5489 15 16.9925 15H4.00748C3.44892 15 3 14.5524 3 14.0002V10.9998C3 10.4437 3.45107 10 4.00748 10H16.9925C17.5511 10 18 10.4476 18 10.9998Z\" fill=\"#F9CF6D\"/>\r\n</svg>";
|
|
6509
|
+
DashboardTileToolbarProvider.bg = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 16L8 12L13 16L21 8\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M6.5 12C6.5 11.1716 7.1715 10.5 8.00005 10.5C8.8285 10.5 9.5 11.1716 9.5 12C9.5 12.8284 8.8285 13.5 8.00005 13.5C7.1715 13.5 6.5 12.8284 6.5 12Z\" fill=\"#6988FF\"/>\r\n<path d=\"M11.5 16C11.5 15.1716 12.1715 14.5 13 14.5C13.8285 14.5 14.5 15.1716 14.5 16C14.5 16.8284 13.8285 17.5 13 17.5C12.1715 17.5 11.5 16.8284 11.5 16Z\" fill=\"#6988FF\"/>\r\n<path d=\"M19 8.5C19 7.67165 19.6715 7 20.5 7C21.3285 7 22 7.67165 22 8.5C22 9.32835 21.3285 10 20.5 10C19.6715 10 19 9.32835 19 8.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 16C1.5 15.1716 2.1715 14.5 3.00005 14.5C3.8285 14.5 4.5 15.1716 4.5 16C4.5 16.8284 3.8285 17.5 3.00005 17.5C2.1715 17.5 1.5 16.8284 1.5 16Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6510
|
+
DashboardTileToolbarProvider.bi = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.47513 2.68532L6.69543 3.31278C6.79856 3.34194 6.90816 3.33868 7.00939 3.30346L7.96448 2.97126C8.07713 2.93209 8.19976 2.93258 8.3121 2.97271L10.3919 3.71549C10.4531 3.73734 10.5177 3.74759 10.5827 3.74576L12.294 3.69686C12.3891 3.69412 12.4817 3.66548 12.5617 3.61402L12.8777 3.41088C13.0796 3.28109 13.344 3.30544 13.5188 3.46993L13.7155 3.6551C13.9527 3.87839 13.9302 4.26195 13.6683 4.45591L13.051 4.91324C12.8318 5.07555 12.7743 5.37911 12.9188 5.61044L13.1333 5.95362C13.1906 6.04526 13.2748 6.11691 13.3745 6.15867L14.1823 6.49742C14.5384 6.64674 14.9279 6.37182 14.9065 5.98632L14.8769 5.45353C14.8584 5.12185 15.15 4.85731 15.4784 4.90783L16.7758 5.10741C16.9301 5.13116 17.0657 5.22259 17.1455 5.35674L18.1079 6.97358C18.2705 7.24671 18.1538 7.60049 17.8606 7.72322L16.1565 8.43659C16.0635 8.47548 15.9838 8.54045 15.9269 8.6236L15.288 9.55743L14.6554 10.5695C14.5335 10.7646 14.2983 10.8571 14.0761 10.7973L13.232 10.57C13.0836 10.53 12.925 10.5574 12.7985 10.645L12.6179 10.77C12.4159 10.9099 12.3385 11.1717 12.4321 11.3989L12.5096 11.5872C12.6002 11.8072 12.8261 11.94 13.0623 11.9122L13.3011 11.8841C13.4791 11.8632 13.6449 11.9777 13.6883 12.1515L13.731 12.3224C13.7543 12.4156 13.8321 12.4825 13.9237 12.4949L13.9801 12.4955C14.1475 12.4769 14.2984 12.5969 14.3181 12.7642L14.3372 12.9262C14.3671 13.1802 14.6179 13.3465 14.8635 13.2752L15.7834 13.0081C16.0052 12.9437 16.2423 12.9553 16.4568 13.0411L18.6392 13.9141L19.03 14.5219C19.1026 14.6348 19.2106 14.7203 19.3372 14.765L20.457 15.1602C20.7772 15.2732 20.9414 15.6278 20.8205 15.9451L20.229 17.4978C20.1764 17.6359 20.0749 17.75 19.9439 17.8184L18.9632 18.33C18.8967 18.3647 18.8374 18.4114 18.788 18.4679L17.0326 20.474C16.9513 20.5669 16.9004 20.6824 16.8868 20.8051L16.772 21.8385C16.7152 22.3493 16.0873 22.5605 15.7334 22.188C15.6267 22.0757 15.5672 21.9267 15.5672 21.7718V19.3375C15.5672 19.2967 15.5714 19.2561 15.5795 19.2161L15.9515 17.403C15.9907 17.2116 15.935 17.0129 15.8018 16.8698L14.7315 15.7203C14.591 15.5694 14.5372 15.3573 14.5887 15.1576L14.8652 14.0862C14.9109 13.9091 14.7854 13.7337 14.6031 13.7197L14.57 13.7171C14.3538 13.7005 14.1578 13.5835 14.0405 13.401L13.887 13.1623C13.7816 12.9983 13.6228 12.8757 13.4374 12.8154L11.3223 12.1268L8.87778 9.25712C8.79719 9.16254 8.75297 9.04234 8.75297 8.91809V7.85027C8.75297 7.72637 8.70896 7.60651 8.62879 7.51204L7.28192 5.92467C7.22111 5.85299 7.14209 5.79904 7.05323 5.76849L5.67821 5.29586C5.50638 5.23678 5.31619 5.27117 5.17594 5.3867L4.69506 5.78266C4.5456 5.90577 4.34035 5.93617 4.16162 5.86168L3.65828 5.65196C3.39704 5.54313 3.27487 5.25037 3.36678 4.99384L3.40544 4.90998C3.49985 4.7448 3.49704 4.54131 3.3981 4.37876L3.07636 3.8502C2.91571 3.58629 3.01776 3.24137 3.29615 3.10735L4.10615 2.71735C4.22112 2.66201 4.35233 2.65062 4.47513 2.68532ZM14.8494 2.17328C14.8885 2.17238 14.927 2.17964 14.9627 2.19433L15.0138 2.22187L16.4485 3.19937C16.4782 3.21959 16.5036 3.24525 16.5235 3.27482L16.5489 3.32192L16.9289 4.21988C17.0071 4.40476 16.8723 4.60128 16.6846 4.60963L16.6203 4.60517L15.6985 4.43756C15.5242 4.40588 15.4278 4.22626 15.4837 4.06868L15.5119 4.01095C15.5885 3.89065 15.5614 3.73625 15.4584 3.64773L15.4007 3.60942L13.7845 2.80133C13.7292 2.77367 13.6668 2.76533 13.607 2.77659L13.5486 2.7944L12.7231 3.14818C12.6146 3.19464 12.4915 3.16771 12.4122 3.08666L12.3703 3.03169L12.1484 2.65138C12.0527 2.48734 12.1448 2.28552 12.3165 2.23929L12.3844 2.22962L14.8494 2.17328ZM8.9247 2.16441C9.03663 2.03215 9.21085 1.97499 9.37589 2.01018L9.45731 2.03556L10.105 2.30477C10.1549 2.32548 10.2077 2.33726 10.2613 2.33979L10.3417 2.33659L10.8415 2.27312C10.9694 2.25691 11.0968 2.29467 11.1944 2.3747L11.2616 2.44246L11.3001 2.49032C11.5273 2.77236 11.3571 3.18205 11.0194 3.23914L10.9386 3.24584H9.97139C9.92686 3.24584 9.88269 3.23944 9.84021 3.22694L9.77791 3.20366L9.08569 2.88634C8.8063 2.75828 8.7262 2.399 8.9247 2.16441Z\" fill=\"#DDDDDD\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.247 4.66504C11.1764 4.66504 11.9301 5.44429 11.9301 6.40553L11.9255 6.53149L11.9124 6.65494L11.9071 6.68969C11.716 7.94463 10.7375 9.50677 10.247 10.2753L10.0289 9.94593C9.48605 9.10202 8.74339 7.76475 8.58122 6.65494C8.56975 6.57355 8.56396 6.4902 8.56396 6.40553C8.56396 5.44429 9.31757 4.66504 10.247 4.66504ZM20.8603 13.132C20.8603 12.1708 20.1066 11.3915 19.1771 11.3915C18.2477 11.3915 17.4941 12.1708 17.4941 13.132C17.4941 13.2167 17.4999 13.3001 17.5114 13.3814C17.6735 14.4913 18.4162 15.8285 18.959 16.6724L19.1771 17.0018C19.6677 16.2333 20.6461 14.6711 20.8373 13.4162L20.8556 13.258L20.8603 13.132ZM18.3528 13.1216C18.3528 12.6446 18.7269 12.2566 19.1867 12.2566C19.6465 12.2566 20.0206 12.6446 20.0206 13.1216C20.0206 13.5986 19.6465 13.9866 19.1867 13.9866C18.7269 13.9866 18.3528 13.5986 18.3528 13.1216ZM9.42262 6.39511C9.42262 5.9181 9.79672 5.5301 10.2565 5.5301C10.7163 5.5301 11.0904 5.9181 11.0904 6.39511C11.0904 6.8721 10.7163 7.2601 10.2565 7.2601C9.79672 7.2601 9.42262 6.8721 9.42262 6.39511Z\" fill=\"#FF5959\"/>\r\n</svg>\r\n";
|
|
6511
|
+
DashboardTileToolbarProvider.bk = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M7 3.5V15.5\" stroke=\"#6FDB73\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M4 13.5H7\" stroke=\"#6FDB73\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M7 6.5H10\" stroke=\"#6FDB73\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M18 7.5V21.5\" stroke=\"#FF5959\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M18 18.5H21\" stroke=\"#FF5959\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M15 12.5H18\" stroke=\"#FF5959\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n</svg>\r\n";
|
|
6512
|
+
DashboardTileToolbarProvider.bm = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M20.5967 18.4092C21.8643 16.8719 22.625 14.9024 22.625 12.7542C22.625 11.5882 22.3979 10.4759 21.9907 9.45496L13.7287 12.7542L20.5967 18.4092Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M21.8047 8.54093C21.1076 6.79868 19.8818 5.32623 18.3231 4.32166L13.4655 11.8715L21.8047 8.54093Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M11.9995 12.5L16.8697 4.93253C15.4651 4.02703 13.7946 3.5 11.9995 3.5C7.02922 3.5 3 7.52872 3 12.5C3 17.4708 7.02922 21.5 11.9995 21.5C14.7982 21.5 17.2977 20.2228 18.9481 18.2204L11.9995 12.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6513
|
+
DashboardTileToolbarProvider.bo = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 11.5H21V16.5H3L3 11.5Z\" fill=\"#BBBBBB\"/>\r\n<path d=\"M3 16.5H21V20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V16.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 6.5H21V11.5H3L3 6.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M6 6.5V21.5H4C3.44772 21.5 3 21.0523 3 20.5V4.5C3 3.94772 3.44772 3.5 4 3.5H20C20.5523 3.5 21 3.94772 21 4.5V6.5H6Z\" fill=\"#6988FF\"/>\r\n<path d=\"M16.9285 9V8C16.3762 8 15.9285 8.44772 15.9285 9H16.9285ZM16.9285 9H15.9285C15.9285 9.55228 16.3762 10 16.9285 10V9ZM19.5001 9H16.9285V10H19.5001V9ZM19.5001 9V10C20.0524 10 20.5001 9.55228 20.5001 9H19.5001ZM19.5001 9H20.5001C20.5001 8.44772 20.0524 8 19.5001 8V9ZM16.9285 9H19.5001V8H16.9285V9ZM16.9285 14V13C16.3762 13 15.9285 13.4477 15.9285 14H16.9285ZM16.9285 14H15.9285C15.9285 14.5523 16.3762 15 16.9285 15V14ZM19.5001 14H16.9285V15H19.5001V14ZM19.5001 14V15C20.0524 15 20.5001 14.5523 20.5001 14H19.5001ZM19.5001 14H20.5001C20.5001 13.4477 20.0524 13 19.5001 13V14ZM16.9285 14H19.5001V13H16.9285V14ZM12.2137 18C11.6615 18 11.2137 18.4477 11.2137 19H12.2137V18ZM14.7854 18H12.2137V19H14.7854V18ZM15.7854 19C15.7854 18.4477 15.3377 18 14.7854 18V19H15.7854ZM14.7854 20C15.3377 20 15.7854 19.5523 15.7854 19H14.7854V20ZM12.2137 20H14.7854V19H12.2137V20ZM11.2137 19C11.2137 19.5523 11.6615 20 12.2137 20V19H11.2137ZM16.9285 18C16.3762 18 15.9285 18.4477 15.9285 19H16.9285V18ZM19.5001 18H16.9285V19H19.5001V18ZM20.5001 19C20.5001 18.4477 20.0524 18 19.5001 18V19H20.5001ZM19.5001 20C20.0524 20 20.5001 19.5523 20.5001 19H19.5001V20ZM16.9285 20H19.5001V19H16.9285V20ZM15.9285 19C15.9285 19.5523 16.3762 20 16.9285 20V19H15.9285ZM12.2137 13C11.6615 13 11.2137 13.4477 11.2137 14H12.2137V13ZM14.7854 13H12.2137V14H14.7854V13ZM15.7854 14C15.7854 13.4477 15.3377 13 14.7854 13V14H15.7854ZM14.7854 15C15.3377 15 15.7854 14.5523 15.7854 14H14.7854V15ZM12.2137 15H14.7854V14H12.2137V15ZM11.2137 14C11.2137 14.5523 11.6615 15 12.2137 15V14H11.2137ZM12.2137 8C11.6615 8 11.2137 8.44772 11.2137 9H12.2137V8ZM14.7854 8H12.2137V9H14.7854V8ZM15.7854 9C15.7854 8.44772 15.3377 8 14.7854 8V9H15.7854ZM14.7854 10C15.3377 10 15.7854 9.55228 15.7854 9H14.7854V10ZM12.2137 10H14.7854V9H12.2137V10ZM11.2137 9C11.2137 9.55228 11.6615 10 12.2137 10V9H11.2137ZM7.49902 19V18C6.94674 18 6.49902 18.4477 6.49902 19H7.49902ZM7.49902 19H6.49902C6.49902 19.5523 6.94674 20 7.49902 20V19ZM10.0707 19H7.49902V20H10.0707V19ZM10.0707 19V20C10.623 20 11.0707 19.5523 11.0707 19H10.0707ZM10.0707 19H11.0707C11.0707 18.4477 10.623 18 10.0707 18V19ZM7.49902 19H10.0707V18H7.49902V19ZM7.49902 13C6.94674 13 6.49902 13.4477 6.49902 14H7.49902V13ZM10.0707 13H7.49902V14H10.0707V13ZM11.0707 14C11.0707 13.4477 10.623 13 10.0707 13V14H11.0707ZM10.0707 15C10.623 15 11.0707 14.5523 11.0707 14H10.0707V15ZM7.49902 15H10.0707V14H7.49902V15ZM6.49902 14C6.49902 14.5523 6.94674 15 7.49902 15V14H6.49902ZM7.49902 9V8C6.94674 8 6.49902 8.44772 6.49902 9H7.49902ZM7.49902 9H6.49902C6.49902 9.55228 6.94674 10 7.49902 10V9ZM10.0707 9H7.49902V10H10.0707V9ZM10.0707 9V10C10.623 10 11.0707 9.55228 11.0707 9H10.0707ZM10.0707 9H11.0707C11.0707 8.44772 10.623 8 10.0707 8V9ZM7.49902 9H10.0707V8H7.49902V9Z\" fill=\"#5E5F62\"/>\r\n</svg>";
|
|
6514
|
+
DashboardTileToolbarProvider.bq = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<circle cx=\"12\" cy=\"12.5\" r=\"9\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<circle cx=\"12\" cy=\"12.5\" r=\"5\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<circle cx=\"12\" cy=\"12.5\" r=\"1\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M8 9.5L4 16.5L13 19.5L16 6.5L20 9.5\" stroke=\"#6988FF\" stroke-linecap=\"round\"/>\r\n<path d=\"M6.42188 9.5C6.42188 8.67165 7.09337 8 7.92192 8C8.75038 8 9.42188 8.67165 9.42188 9.5C9.42188 10.3284 8.75038 11 7.92192 11C7.09337 11 6.42188 10.3284 6.42188 9.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M2.5 16.3881C2.5 15.5597 3.1715 14.8881 4.00005 14.8881C4.8285 14.8881 5.5 15.5597 5.5 16.3881C5.5 17.2164 4.8285 17.8881 4.00005 17.8881C3.1715 17.8881 2.5 17.2164 2.5 16.3881Z\" fill=\"#6988FF\"/>\r\n<path d=\"M11.5 19.3881C11.5 18.5597 12.1715 17.8881 13 17.8881C13.8285 17.8881 14.5 18.5597 14.5 19.3881C14.5 20.2164 13.8285 20.8881 13 20.8881C12.1715 20.8881 11.5 20.2164 11.5 19.3881Z\" fill=\"#6988FF\"/>\r\n<path d=\"M14.5 6.5C14.5 5.67165 15.1715 5 16 5C16.8285 5 17.5 5.67165 17.5 6.5C17.5 7.32835 16.8285 8 16 8C15.1715 8 14.5 7.32835 14.5 6.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M18.9399 9.5C18.9399 8.67165 19.6114 8 20.44 8C21.2684 8 21.9399 8.67165 21.9399 9.5C21.9399 10.3284 21.2684 11 20.44 11C19.6114 11 18.9399 10.3284 18.9399 9.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6515
|
+
DashboardTileToolbarProvider.bu = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<circle cx=\"12\" cy=\"12.5\" r=\"9\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<circle cx=\"12\" cy=\"12.5\" r=\"5\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<circle cx=\"12\" cy=\"12.5\" r=\"1\" stroke=\"#D4D6DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M8 9.5L4 17.5L16 20.5L21 10.5L10 3.5L8 9.5Z\" stroke=\"#6988FF\" stroke-linecap=\"round\"/>\r\n<path d=\"M8.66943 3.5C8.66943 2.67165 9.34093 2 10.1695 2C10.9979 2 11.6694 2.67165 11.6694 3.5C11.6694 4.32835 10.9979 5 10.1695 5C9.34093 5 8.66943 4.32835 8.66943 3.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M2.67188 17.1841C2.67188 16.3557 3.34337 15.6841 4.17192 15.6841C5.00038 15.6841 5.67188 16.3557 5.67188 17.1841C5.67188 18.0124 5.00038 18.6841 4.17192 18.6841C3.34337 18.6841 2.67188 18.0124 2.67188 17.1841Z\" fill=\"#6988FF\"/>\r\n<path d=\"M14.4307 20.5C14.4307 19.6716 15.1022 19 15.9307 19C16.7592 19 17.4307 19.6716 17.4307 20.5C17.4307 21.3284 16.7592 22 15.9307 22C15.1022 22 14.4307 21.3284 14.4307 20.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M19.5 10.5C19.5 9.67165 20.1715 9 21 9C21.8285 9 22.5 9.67165 22.5 10.5C22.5 11.3284 21.8285 12 21 12C20.1715 12 19.5 11.3284 19.5 10.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M6.18262 9.92651C6.18262 9.09816 6.85412 8.42651 7.68267 8.42651C8.51112 8.42651 9.18262 9.09816 9.18262 9.92651C9.18262 10.7549 8.51112 11.4265 7.68267 11.4265C6.85412 11.4265 6.18262 10.7549 6.18262 9.92651Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6516
|
+
DashboardTileToolbarProvider.by = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.28263 2.32183C8.11759 2.28663 7.94337 2.34379 7.83144 2.47606C7.63294 2.71064 7.71304 3.06993 7.99243 3.19799L8.68465 3.5153L8.74695 3.53858C8.78943 3.55108 8.83359 3.55748 8.87813 3.55748H9.84531L9.92612 3.55079C10.2639 3.4937 10.4341 3.08401 10.2068 2.80196L10.1683 2.7541L10.1011 2.68634C10.0035 2.60632 9.87619 2.56856 9.74828 2.58476L9.24843 2.64824L9.16799 2.65143C9.11449 2.64891 9.06161 2.63712 9.01177 2.61641L8.36405 2.3472L8.28263 2.32183ZM13.7562 2.48492C13.7952 2.48402 13.8337 2.49128 13.8694 2.50598L13.9205 2.53351L15.3552 3.51101C15.385 3.53123 15.4103 3.55689 15.4302 3.58646L15.4557 3.63357L15.8356 4.53152C15.9138 4.7164 15.7791 4.91293 15.5914 4.92127L15.527 4.91681L14.6052 4.74921C14.4309 4.71753 14.3346 4.53791 14.3904 4.38033L14.4187 4.3226C14.4952 4.20229 14.4682 4.0479 14.3652 3.95937L14.3074 3.92106L12.6913 3.11297C12.6359 3.08531 12.5735 3.07698 12.5138 3.08824L12.4553 3.10605L11.6299 3.45983C11.5214 3.50629 11.3982 3.47935 11.3189 3.3983L11.277 3.34333L11.0552 2.96303C10.9595 2.79899 11.0515 2.59716 11.2232 2.55093L11.2911 2.54127L13.7562 2.48492ZM3.38187 2.99696L5.60217 3.62442C5.7053 3.65358 5.8149 3.65033 5.91612 3.61511L6.87122 3.2829C6.98387 3.24374 7.10649 3.24422 7.21883 3.28436L9.29864 4.02714C9.3598 4.04899 9.42449 4.05924 9.48942 4.0574L11.2007 4.0085C11.2958 4.00577 11.3884 3.97713 11.4685 3.92567L11.7845 3.72253C11.9864 3.59274 12.2507 3.61708 12.4255 3.78157L12.6222 3.96674C12.8595 4.19004 12.8369 4.5736 12.5751 4.76756L11.9577 5.22488C11.7385 5.38719 11.681 5.69076 11.8256 5.92209L12.0401 6.26527C12.0973 6.3569 12.1816 6.42855 12.2812 6.47031L13.089 6.80906C13.4451 6.95839 13.8346 6.68346 13.8132 6.29796L13.7836 5.76518C13.7652 5.43349 14.0568 5.16896 14.3851 5.21948L15.6825 5.41905C15.8368 5.44281 15.9724 5.53423 16.0523 5.66839L17.0147 7.28523C17.1773 7.55835 17.0605 7.91213 16.7673 8.03486L15.0632 8.74824C14.9703 8.78713 14.8905 8.85209 14.8336 8.93524L14.1947 9.86907L13.5621 10.8812C13.4402 11.0763 13.205 11.1687 12.9829 11.1089L12.1388 10.8817C11.9903 10.8417 11.8317 10.8691 11.7053 10.9566L11.5247 11.0817C11.3226 11.2216 11.2453 11.4833 11.3388 11.7106L11.4163 11.8988C11.5069 12.1188 11.7328 12.2516 11.9691 12.2238L12.2078 12.1958C12.3858 12.1748 12.5516 12.2893 12.5951 12.4631L12.6378 12.634C12.6611 12.7272 12.7389 12.7942 12.8305 12.8065L12.8868 12.8071C13.0542 12.7886 13.2052 12.9086 13.2249 13.0758L13.2439 13.2379C13.2738 13.4918 13.5246 13.6581 13.7702 13.5869L14.6901 13.3198C14.912 13.2554 15.149 13.267 15.3635 13.3528L17.546 14.2258L17.9367 14.8336C18.0093 14.9464 18.1173 15.032 18.2439 15.0766L19.3637 15.4719C19.6839 15.5849 19.8481 15.9394 19.7272 16.2567L19.1358 17.8094C19.0831 17.9476 18.9817 18.0616 18.8506 18.1301L17.8699 18.6417C17.8035 18.6763 17.7441 18.7231 17.6947 18.7795L15.9394 20.7857C15.8581 20.8785 15.8072 20.9941 15.7935 21.1168L15.6787 22.1502C15.622 22.6609 14.9941 22.8722 14.6401 22.4996C14.5334 22.3873 14.474 22.2383 14.474 22.0834V19.6492C14.474 19.6084 14.4781 19.5677 14.4863 19.5277L14.8582 17.7146C14.8975 17.5232 14.8417 17.3245 14.7085 17.1815L13.6383 16.0319C13.4978 15.881 13.4439 15.6689 13.4954 15.4692L13.7719 14.3979C13.8176 14.2207 13.6922 14.0453 13.5098 14.0313L13.4768 14.0288C13.2605 14.0121 13.0645 13.8952 12.9473 13.7127L12.7937 13.4739C12.6883 13.3099 12.5295 13.1874 12.3442 13.1271L10.229 12.4384L7.78451 9.56876C7.70393 9.47419 7.65971 9.35399 7.65971 9.22973V8.16192C7.65971 8.03801 7.61569 7.91816 7.53553 7.82369L6.18866 6.23632C6.12785 6.16464 6.04883 6.11068 5.95997 6.08014L4.58495 5.60751C4.41311 5.54843 4.22293 5.58282 4.08267 5.69834L3.6018 6.0943C3.45234 6.21741 3.24709 6.24782 3.06836 6.17333L2.56502 5.96361C2.30377 5.85477 2.18161 5.56201 2.27352 5.30549L2.31218 5.22163C2.40658 5.05644 2.40378 4.85296 2.30484 4.6904L1.98309 4.16185C1.82245 3.89793 1.9245 3.55302 2.20289 3.419L3.01289 3.029C3.12786 2.97366 3.25907 2.96226 3.38187 2.99696Z\" fill=\"#D4D6DC\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.9094 4.79968C18.014 4.79968 18.9093 5.69522 18.9093 6.79968C18.9093 7.90415 18.014 8.79968 16.9094 8.79968C15.8047 8.79968 14.9093 7.90415 14.9093 6.79968C14.9093 5.69522 15.8047 4.79968 16.9094 4.79968ZM11.3371 9.09403C11.3371 8.81792 11.1132 8.59403 10.8371 8.59403C10.5609 8.59403 10.3371 8.81792 10.3371 9.09403C10.3371 9.37015 10.5609 9.59403 10.8371 9.59403C11.1132 9.59403 11.3371 9.37015 11.3371 9.09403ZM13.4563 13.0917C14.5609 13.0917 15.4563 13.9873 15.4563 15.0917C15.4563 16.1962 14.5609 17.0917 13.4563 17.0917C12.3516 17.0917 11.4563 16.1962 11.4563 15.0917C11.4563 13.9873 12.3516 13.0917 13.4563 13.0917ZM17.9094 17.0917C18.4617 17.0917 18.9093 17.5395 18.9093 18.0917C18.9093 18.644 18.4617 19.0917 17.9094 19.0917C17.357 19.0917 16.9093 18.644 16.9093 18.0917C16.9093 17.5395 17.357 17.0917 17.9094 17.0917ZM7.16699 6.37106C7.16699 5.81882 6.71933 5.37106 6.16703 5.37106C5.61466 5.37106 5.16699 5.81882 5.16699 6.37106C5.16699 6.92329 5.61466 7.37106 6.16703 7.37106C6.71933 7.37106 7.16699 6.92329 7.16699 6.37106Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6517
|
+
DashboardTileToolbarProvider.bw = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M10.5 20C10.5 19.1716 11.1715 18.5 12 18.5C12.8285 18.5 13.5 19.1716 13.5 20C13.5 20.8284 12.8285 21.5 12 21.5C11.1715 21.5 10.5 20.8284 10.5 20Z\" fill=\"#6988FF\"/>\r\n<path d=\"M10.5 15C10.5 14.1716 11.1715 13.5 12 13.5C12.8285 13.5 13.5 14.1716 13.5 15C13.5 15.8284 12.8285 16.5 12 16.5C11.1715 16.5 10.5 15.8284 10.5 15Z\" fill=\"#6988FF\"/>\r\n<path d=\"M10.5 5C10.5 4.17165 11.1715 3.5 12 3.5C12.8285 3.5 13.5 4.17165 13.5 5C13.5 5.82835 12.8285 6.5 12 6.5C11.1715 6.5 10.5 5.82835 10.5 5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M3 12C3 11.1716 3.6715 10.5 4.50005 10.5C5.3285 10.5 6 11.1716 6 12C6 12.8284 5.3285 13.5 4.50005 13.5C3.6715 13.5 3 12.8284 3 12Z\" fill=\"#6988FF\"/>\r\n<path d=\"M3 18C3 17.1716 3.6715 16.5 4.50005 16.5C5.3285 16.5 6 17.1716 6 18C6 18.8284 5.3285 19.5 4.50005 19.5C3.6715 19.5 3 18.8284 3 18Z\" fill=\"#6988FF\"/>\r\n<path d=\"M18 14C18 13.1716 18.6715 12.5 19.5 12.5C20.3285 12.5 21 13.1716 21 14C21 14.8284 20.3285 15.5 19.5 15.5C18.6715 15.5 18 14.8284 18 14Z\" fill=\"#6988FF\"/>\r\n<path d=\"M18 10C18 9.17165 18.6715 8.5 19.5 8.5C20.3285 8.5 21 9.17165 21 10C21 10.8284 20.3285 11.5 19.5 11.5C18.6715 11.5 18 10.8284 18 10Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6518
|
+
DashboardTileToolbarProvider.b0 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M4 3.5H20C20.5523 3.5 21 3.94772 21 4.5V12.5H3V4.5C3 3.94772 3.44772 3.5 4 3.5Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M3 12.5H21V20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V12.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M8.5 9.5L12.1364 6.5L14.8636 9.5L18.5 6.5\" stroke=\"#5E5F62\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M8.5 18.5L12.1364 15.5L14.8636 18.5L18.5 15.5\" stroke=\"#5E5F62\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M3 20.5L3 4.5C3 3.94772 3.44772 3.5 4 3.5H6V21.5H4C3.44772 21.5 3 21.0523 3 20.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6416
6519
|
DashboardTileToolbarProvider.b2 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 15.6667C3 15.6667 3 9.83333 7.5 9.83333C12 9.83333 10.875 17.3333 15.375 17.3333C19.875 17.3333 21 6.5 21 6.5V21.5H3V15.6667Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 15.8077C3 15.8077 3 9.88462 7.5 9.88462C12 9.88462 10.875 17.5 15.375 17.5C19.875 17.5 21 6.5 21 6.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19.2627 7.32568C19.2627 6.49733 19.9342 5.82568 20.7627 5.82568C21.5912 5.82568 22.2627 6.49733 22.2627 7.32568C22.2627 8.15403 21.5912 8.82568 20.7627 8.82568C19.9342 8.82568 19.2627 8.15403 19.2627 7.32568Z\" fill=\"#6988FF\"/>\r\n<path d=\"M14.2642 17.5C14.2642 16.6716 14.9357 16 15.7642 16C16.5927 16 17.2642 16.6716 17.2642 17.5C17.2642 18.3284 16.5927 19 15.7642 19C14.9357 19 14.2642 18.3284 14.2642 17.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M5.41211 9.99622C5.41211 9.16787 6.08361 8.49622 6.91216 8.49622C7.74061 8.49622 8.41211 9.16787 8.41211 9.99622C8.41211 10.8246 7.74061 11.4962 6.91216 11.4962C6.08361 11.4962 5.41211 10.8246 5.41211 9.99622Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 15.5C1.5 14.6716 2.1715 14 3.00005 14C3.8285 14 4.5 14.6716 4.5 15.5C4.5 16.3284 3.8285 17 3.00005 17C2.1715 17 1.5 16.3284 1.5 15.5Z\" fill=\"#6988FF\"/>\r\n</svg>\r\n";
|
|
6417
|
-
DashboardTileToolbarProvider.b4 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3
|
|
6418
|
-
DashboardTileToolbarProvider.b6 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"
|
|
6419
|
-
DashboardTileToolbarProvider.b8 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"
|
|
6420
|
-
DashboardTileToolbarProvider.ca = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3
|
|
6421
|
-
DashboardTileToolbarProvider.cc = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3
|
|
6422
|
-
DashboardTileToolbarProvider.ce = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<
|
|
6423
|
-
DashboardTileToolbarProvider.cg = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<
|
|
6424
|
-
DashboardTileToolbarProvider.ci = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"
|
|
6425
|
-
DashboardTileToolbarProvider.ck = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"
|
|
6426
|
-
DashboardTileToolbarProvider.
|
|
6520
|
+
DashboardTileToolbarProvider.b4 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 15.6667C3 15.6667 3 9.83333 7.5 9.83333C12 9.83333 10.875 17.3333 15.375 17.3333C19.875 17.3333 21 6.5 21 6.5V21.5H3V15.6667Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 15.8077C3 15.8077 3 9.88462 7.5 9.88462C12 9.88462 10.875 17.5 15.375 17.5C19.875 17.5 21 6.5 21 6.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19.2627 7.32568C19.2627 6.49733 19.9342 5.82568 20.7627 5.82568C21.5912 5.82568 22.2627 6.49733 22.2627 7.32568C22.2627 8.15403 21.5912 8.82568 20.7627 8.82568C19.9342 8.82568 19.2627 8.15403 19.2627 7.32568Z\" fill=\"#6988FF\"/>\r\n<path d=\"M14.2642 17.5C14.2642 16.6716 14.9357 16 15.7642 16C16.5927 16 17.2642 16.6716 17.2642 17.5C17.2642 18.3284 16.5927 19 15.7642 19C14.9357 19 14.2642 18.3284 14.2642 17.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M5.41211 9.99622C5.41211 9.16787 6.08361 8.49622 6.91216 8.49622C7.74061 8.49622 8.41211 9.16787 8.41211 9.99622C8.41211 10.8246 7.74061 11.4962 6.91216 11.4962C6.08361 11.4962 5.41211 10.8246 5.41211 9.99622Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 15.5C1.5 14.6716 2.1715 14 3.00005 14C3.8285 14 4.5 14.6716 4.5 15.5C4.5 16.3284 3.8285 17 3.00005 17C2.1715 17 1.5 16.3284 1.5 15.5Z\" fill=\"#6988FF\"/>\r\n</svg>\r\n";
|
|
6521
|
+
DashboardTileToolbarProvider.b6 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 12.5481C3 12.5177 3.01381 12.489 3.03753 12.47L7.9457 8.54344C7.97834 8.51732 8.02378 8.51427 8.05962 8.53577L12.3128 11.0877C12.7224 11.3334 13.2437 11.2868 13.6031 10.9723L20.6683 4.79024C20.7976 4.67709 21 4.76892 21 4.94075V20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V12.5481Z\" fill=\"#6988FF\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M21 20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V16.5L7.96464 14.0254C7.98736 14.0141 8.01353 14.0118 8.03785 14.0191L12.5679 15.3711C12.8426 15.4531 13.1394 15.4132 13.3827 15.2616L21 10.5155V20.5Z\" fill=\"#DDDDDD\" stroke=\"#DDDDDD\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M21 20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V19.6904L7.97456 17.8292C7.99122 17.8229 8.00924 17.8213 8.02676 17.8243L12.7471 18.6464C12.913 18.6752 13.0835 18.6618 13.2428 18.6072L21 15.9489V20.5Z\" fill=\"#BBBBBB\" stroke=\"#BBBBBB\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n</svg>\r\n";
|
|
6522
|
+
DashboardTileToolbarProvider.b8 = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M21 20.5002C21 21.0524 20.5551 21.5 20.0067 21.5H3.99524C3.44666 21.5 3.00195 21.0563 3.00195 20.5002L3.00195 17.4998C3.00195 16.9476 3.44685 16.5 3.99524 16.5L20.0067 16.5C20.5553 16.5 21 16.9437 21 17.4998V20.5002Z\" fill=\"#6988FF\"/>\r\n<path d=\"M15.002 16.5V21.5H10.002V16.5H15.002Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M10.002 16.5V21.5H4.00195C3.44967 21.5 3.00195 21.0523 3.00195 20.5L3.00195 17.5C3.00195 16.9477 3.44967 16.5 4.00195 16.5H10.002Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M18.002 14.0002C18.002 14.5524 17.553 15 16.9945 15H4.00944C3.45302 15 3.00195 14.5563 3.00195 14.0002L3.00195 10.9998C3.00195 10.4476 3.45087 10 4.00944 10L16.9945 10C17.5509 10 18.002 10.4437 18.002 10.9998V14.0002Z\" fill=\"#6988FF\"/>\r\n<path d=\"M13.002 10V15H8.00195V10L13.002 10Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M8.00195 10V15H4.00195C3.44967 15 3.00195 14.5523 3.00195 14L3.00195 11C3.00195 10.4477 3.44967 10 4.00195 10H8.00195Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M15.002 7.50019C15.002 8.05237 14.5462 8.5 13.9995 8.5H4.00443C3.45078 8.5 3.00195 8.05628 3.00195 7.50019L3.00195 4.49981C3.00195 3.94763 3.45771 3.5 4.00443 3.5L13.9995 3.5C14.5531 3.5 15.002 3.94372 15.002 4.49981V7.50019Z\" fill=\"#6988FF\"/>\r\n<path d=\"M11.002 3.5V8.5H7.00195L7.00195 3.5L11.002 3.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M7.00195 3.5V8.5H4.00195C3.44967 8.5 3.00195 8.05228 3.00195 7.5L3.00195 4.5C3.00195 3.94772 3.44967 3.5 4.00195 3.5L7.00195 3.5Z\" fill=\"#BDBFC4\"/>\r\n</svg>";
|
|
6523
|
+
DashboardTileToolbarProvider.ca = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3.99981 3.50195H7.00019C7.55628 3.50195 8 3.94666 8 4.49524V20.5067C8 21.0551 7.55237 21.5 7.00019 21.5H3.99981C3.44372 21.5 3 21.0553 3 20.5067V4.49524C3 3.94685 3.44763 3.50195 3.99981 3.50195Z\" fill=\"#728DFF\"/>\r\n<path d=\"M8 9.5V14.5H3V9.5H8Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M8 14.5V20.5C8 21.0523 7.55228 21.5 7 21.5H4C3.44772 21.5 3 21.0523 3 20.5V14.5H8Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M10.4998 6.5H13.5002C14.0563 6.5 14.5 6.95107 14.5 7.50748V20.4925C14.5 21.0511 14.0524 21.5 13.5002 21.5H10.4998C9.94372 21.5 9.5 21.0489 9.5 20.4925V7.50748C9.5 6.94892 9.94763 6.5 10.4998 6.5Z\" fill=\"#728DFF\"/>\r\n<path d=\"M14.5 11.5V16.5H9.5V11.5H14.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M14.5 16.5V20.5C14.5 21.0523 14.0523 21.5 13.5 21.5H10.5C9.94772 21.5 9.5 21.0523 9.5 20.5V16.5H14.5Z\" fill=\"#BDBFC4\"/>\r\n<path d=\"M16.9998 9.5H20.0002C20.5563 9.5 21 9.94882 21 10.5025V20.4975C21 21.0442 20.5524 21.5 20.0002 21.5H16.9998C16.4437 21.5 16 21.0512 16 20.4975V10.5025C16 9.95576 16.4476 9.5 16.9998 9.5Z\" fill=\"#728DFF\"/>\r\n<path d=\"M21 13.5V17.5H16V13.5H21Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M21 17.5V20.5C21 21.0523 20.5523 21.5 20 21.5H17C16.4477 21.5 16 21.0523 16 20.5V17.5H21Z\" fill=\"#BDBFC4\"/>\r\n</svg>";
|
|
6524
|
+
DashboardTileToolbarProvider.cc = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 16.5H9V3.5H15V10.5H21V21.5H3V16.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 16.5H9V3.5H15V10.5H21\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19.5 10.3666C19.5 9.53823 20.1715 8.86658 21 8.86658C21.8285 8.86658 22.5 9.53823 22.5 10.3666C22.5 11.1949 21.8285 11.8666 21 11.8666C20.1715 11.8666 19.5 11.1949 19.5 10.3666Z\" fill=\"#6988FF\"/>\r\n<path d=\"M13.5337 10.3666C13.5337 9.53823 14.2052 8.86658 15.0337 8.86658C15.8622 8.86658 16.5337 9.53823 16.5337 10.3666C16.5337 11.1949 15.8622 11.8666 15.0337 11.8666C14.2052 11.8666 13.5337 11.1949 13.5337 10.3666Z\" fill=\"#6988FF\"/>\r\n<path d=\"M13.5337 3.5C13.5337 2.67165 14.2052 2 15.0337 2C15.8622 2 16.5337 2.67165 16.5337 3.5C16.5337 4.32835 15.8622 5 15.0337 5C14.2052 5 13.5337 4.32835 13.5337 3.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M7.56689 3.5C7.56689 2.67165 8.23839 2 9.06694 2C9.89539 2 10.5669 2.67165 10.5669 3.5C10.5669 4.32835 9.89539 5 9.06694 5C8.23839 5 7.56689 4.32835 7.56689 3.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M7.56689 16.5C7.56689 15.6716 8.23839 15 9.06694 15C9.89539 15 10.5669 15.6716 10.5669 16.5C10.5669 17.3284 9.89539 18 9.06694 18C8.23839 18 7.56689 17.3284 7.56689 16.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 16.5C1.5 15.6716 2.1715 15 3.00005 15C3.8285 15 4.5 15.6716 4.5 16.5C4.5 17.3284 3.8285 18 3.00005 18C2.1715 18 1.5 17.3284 1.5 16.5Z\" fill=\"#6988FF\"/>\r\n</svg>\r\n";
|
|
6525
|
+
DashboardTileToolbarProvider.ce = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 18.5H9V5.5H15V12.5H20\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19.5 12.3666C19.5 11.5382 20.1715 10.8666 21 10.8666C21.8285 10.8666 22.5 11.5382 22.5 12.3666C22.5 13.1949 21.8285 13.8666 21 13.8666C20.1715 13.8666 19.5 13.1949 19.5 12.3666Z\" fill=\"#6988FF\"/>\r\n<path d=\"M13.5337 12.3666C13.5337 11.5382 14.2052 10.8666 15.0337 10.8666C15.8622 10.8666 16.5337 11.5382 16.5337 12.3666C16.5337 13.1949 15.8622 13.8666 15.0337 13.8666C14.2052 13.8666 13.5337 13.1949 13.5337 12.3666Z\" fill=\"#6988FF\"/>\r\n<path d=\"M13.5337 5.5C13.5337 4.67165 14.2052 4 15.0337 4C15.8622 4 16.5337 4.67165 16.5337 5.5C16.5337 6.32835 15.8622 7 15.0337 7C14.2052 7 13.5337 6.32835 13.5337 5.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M7.56689 5.5C7.56689 4.67165 8.23839 4 9.06694 4C9.89539 4 10.5669 4.67165 10.5669 5.5C10.5669 6.32835 9.89539 7 9.06694 7C8.23839 7 7.56689 6.32835 7.56689 5.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M7.56689 18.5C7.56689 17.6716 8.23839 17 9.06694 17C9.89539 17 10.5669 17.6716 10.5669 18.5C10.5669 19.3284 9.89539 20 9.06694 20C8.23839 20 7.56689 19.3284 7.56689 18.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 18.5C1.5 17.6716 2.1715 17 3.00005 17C3.8285 17 4.5 17.6716 4.5 18.5C4.5 19.3284 3.8285 20 3.00005 20C2.1715 20 1.5 19.3284 1.5 18.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6526
|
+
DashboardTileToolbarProvider.cg = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<circle cx=\"21.5996\" cy=\"12.5\" r=\"1.5\" fill=\"#6FDB73\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.9062 16.1473H7.73547V15.1214L10.1758 12.5205C10.5108 12.1544 10.7586 11.8349 10.9193 11.562C11.0799 11.2892 11.1602 11.0301 11.1602 10.7849C11.1602 10.4498 11.0755 10.1864 10.9063 9.99475C10.737 9.80304 10.4953 9.70719 10.1809 9.70719C9.84245 9.70719 9.57562 9.82377 9.38047 10.0569C9.18531 10.2901 9.08773 10.5966 9.08773 10.9766H7.58522C7.58522 10.5172 7.69488 10.0975 7.91422 9.71756C8.13355 9.33761 8.44355 9.0397 8.84422 8.82382C9.2449 8.60794 9.6991 8.5 10.2069 8.5C10.984 8.5 11.5876 8.68652 12.0176 9.05956C12.4477 9.4326 12.6627 9.95934 12.6627 10.6398C12.6627 11.0128 12.566 11.3928 12.3725 11.7796C12.1791 12.1665 11.8475 12.6172 11.3778 13.1319L9.66284 14.9401H12.9062V16.1473ZM5.28481 16.1473H3.78748V10.3756L2 10.9299V9.71238L5.1242 8.59326H5.28481V16.1473ZM16.1444 11.7123H15.3465V12.8832H16.1392C16.9682 12.8832 17.3827 13.2597 17.3827 14.0127C17.3827 14.3235 17.2816 14.5731 17.0796 14.7614C16.8775 14.9496 16.5986 15.0437 16.2428 15.0437C15.932 15.0437 15.6703 14.9539 15.4579 14.7743C15.2455 14.5947 15.1393 14.3633 15.1393 14.08H13.6419C13.6419 14.7329 13.8811 15.2579 14.3595 15.6551C14.8379 16.0523 15.4536 16.2509 16.2066 16.2509C17.0114 16.2509 17.6581 16.0489 18.1469 15.6447C18.6356 15.2406 18.88 14.7035 18.88 14.0334C18.88 13.6189 18.7755 13.2597 18.5665 12.9557C18.3576 12.6518 18.0407 12.4238 17.6158 12.2718C17.9578 12.1164 18.2341 11.8936 18.4448 11.6035C18.6555 11.3133 18.7608 10.9956 18.7608 10.6502C18.7608 9.98006 18.5346 9.45419 18.0821 9.07251C17.6296 8.69083 17.0044 8.5 16.2066 8.5C15.7472 8.5 15.3266 8.58808 14.945 8.76424C14.5633 8.94039 14.2662 9.18477 14.0538 9.49736C13.8414 9.80995 13.7352 10.1631 13.7352 10.5569H15.2325C15.2325 10.3047 15.3292 10.1001 15.5227 9.94293C15.7161 9.78577 15.9561 9.70719 16.2428 9.70719C16.5606 9.70719 16.8102 9.79182 16.9915 9.96107C17.1728 10.1303 17.2635 10.3669 17.2635 10.6709C17.2635 10.9852 17.172 11.2373 16.9889 11.4273C16.8058 11.6173 16.5243 11.7123 16.1444 11.7123Z\" fill=\"#D4D6DC\"/>\r\n</svg>";
|
|
6527
|
+
DashboardTileToolbarProvider.ci = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M3 4.5C3 3.94772 3.44772 3.5 4 3.5H20C20.5523 3.5 21 3.94772 21 4.5V20.5C21 21.0523 20.5523 21.5 20 21.5H4C3.44772 21.5 3 21.0523 3 20.5V4.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 20.5L3 4.5C3 3.94772 3.44772 3.5 4 3.5H6V21.5H4C3.44772 21.5 3 21.0523 3 20.5Z\" fill=\"#6988FF\"/>\r\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8987 14.3531C15.1533 14.0194 15.2806 13.5543 15.2806 12.9579V12.9029C15.2806 12.2973 15.1515 11.8277 14.8935 11.4939C14.6354 11.1601 14.2793 10.9933 13.8251 10.9933C13.4513 10.9933 13.1496 11.1275 12.9202 11.3958V9.5H11.9259V14.785H12.8205L12.8652 14.3893C13.106 14.6989 13.4283 14.8538 13.832 14.8538C14.2885 14.8538 14.644 14.6869 14.8987 14.3531ZM10.3053 14.785C10.2594 14.6955 10.2261 14.5842 10.2055 14.4512C9.96465 14.7196 9.65155 14.8538 9.26619 14.8538C8.90147 14.8538 8.59926 14.7483 8.35956 14.5372C8.11985 14.3262 8 14.0601 8 13.739C8 13.3444 8.14623 13.0417 8.43869 12.8306C8.73116 12.6196 9.15379 12.5129 9.7066 12.5106H10.1642V12.2973C10.1642 12.1253 10.1201 11.9876 10.0317 11.8844C9.94344 11.7812 9.80409 11.7296 9.6137 11.7296C9.44625 11.7296 9.31493 11.7697 9.21974 11.85C9.12454 11.9303 9.07695 12.0404 9.07695 12.1803H8.08258C8.08258 11.9647 8.1491 11.7651 8.28214 11.5816C8.41518 11.3981 8.60327 11.2542 8.84642 11.1498C9.08956 11.0455 9.36253 10.9933 9.66531 10.9933C10.1241 10.9933 10.4882 11.1085 10.7577 11.3391C11.0273 11.5696 11.162 11.8936 11.162 12.3111V13.9248C11.1643 14.278 11.2136 14.5452 11.31 14.7265V14.785H10.3053ZM9.48295 14.0934C9.62976 14.0934 9.76509 14.0607 9.88896 13.9953C10.0128 13.9299 10.1046 13.8422 10.1642 13.7321V13.0921H9.79262C9.29486 13.0921 9.02992 13.2642 8.99781 13.6082L8.99437 13.6667C8.99437 13.7906 9.03795 13.8927 9.12512 13.9729C9.21228 14.0532 9.33156 14.0934 9.48295 14.0934ZM14.2862 12.8857C14.2862 12.5095 14.2266 12.2348 14.1073 12.0616C13.988 11.8884 13.8102 11.8018 13.574 11.8018C13.2574 11.8018 13.0395 11.9314 12.9202 12.1906V13.6598C13.0418 13.9213 13.262 14.0521 13.5809 14.0521C13.902 14.0521 14.113 13.8938 14.214 13.5773C14.2621 13.4259 14.2862 13.1953 14.2862 12.8857ZM17.8886 13.9007C17.774 14.0016 17.6249 14.0521 17.4414 14.0521C17.2028 14.0521 17.025 13.9684 16.908 13.8009C16.7911 13.6335 16.7326 13.3582 16.7326 12.9751V12.8719C16.7326 12.4934 16.7916 12.2199 16.9098 12.0513C17.0279 11.8827 17.2028 11.7984 17.4345 11.7984C17.6226 11.7984 17.774 11.8586 17.8886 11.979C18.0033 12.0995 18.063 12.256 18.0676 12.4487H19C18.9954 12.0083 18.8526 11.6556 18.5716 11.3907C18.2906 11.1257 17.9173 10.9933 17.4517 10.9933C16.9195 10.9933 16.5009 11.1642 16.1958 11.5059C15.8907 11.8477 15.7382 12.3053 15.7382 12.8788V12.9442C15.7382 13.5406 15.8919 14.0079 16.1992 14.3463C16.5066 14.6846 16.9264 14.8538 17.4586 14.8538C17.743 14.8538 18.0028 14.7959 18.2379 14.68C18.473 14.5642 18.6582 14.4013 18.7936 14.1914C18.9289 13.9815 18.9977 13.7504 19 13.4981H18.0676C18.063 13.6656 18.0033 13.7998 17.8886 13.9007Z\" fill=\"#5E5F62\"/>\r\n</svg>";
|
|
6528
|
+
DashboardTileToolbarProvider.ck = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M2.80908 13.3679L6.58644 16.8161L8.58213 11.2808H12.043L13.6448 9.24751L17.459 13.8398L21.9199 3.43414\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n<path d=\"M1.94434 20.7811H22.3918\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"0 4\"/>\r\n</svg>\r\n";
|
|
6529
|
+
DashboardTileToolbarProvider.cm = "\r\n<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\r\n<path d=\"M21 6.5V21.5H3V14.5L8 10.5L13 14.5L21 6.5Z\" fill=\"#D4D6DC\"/>\r\n<path d=\"M3 14.5L8 10.5L13 14.5L21 6.5\" stroke=\"#6988FF\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>\r\n<path d=\"M19 7C19 6.17165 19.6715 5.5 20.5 5.5C21.3285 5.5 22 6.17165 22 7C22 7.82835 21.3285 8.5 20.5 8.5C19.6715 8.5 19 7.82835 19 7Z\" fill=\"#6988FF\"/>\r\n<path d=\"M11.5 14.5C11.5 13.6716 12.1715 13 13 13C13.8285 13 14.5 13.6716 14.5 14.5C14.5 15.3284 13.8285 16 13 16C12.1715 16 11.5 15.3284 11.5 14.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M6.5 10.5C6.5 9.67165 7.1715 9 8.00005 9C8.8285 9 9.5 9.67165 9.5 10.5C9.5 11.3284 8.8285 12 8.00005 12C7.1715 12 6.5 11.3284 6.5 10.5Z\" fill=\"#6988FF\"/>\r\n<path d=\"M1.5 14.5C1.5 13.6716 2.1715 13 3.00005 13C3.8285 13 4.5 13.6716 4.5 14.5C4.5 15.3284 3.8285 16 3.00005 16C2.1715 16 1.5 15.3284 1.5 14.5Z\" fill=\"#6988FF\"/>\r\n</svg>";
|
|
6530
|
+
DashboardTileToolbarProvider.a2 = "\r\n<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\r\n<path d=\"M20.975 16.025a3.472 3.472 0 00-1.6-.9l-7.436-7.433a4.982 4.982 0 00-6.763-5.347L7 4.17A2 2 0 014.17 7L2.345 5.176a4.982 4.982 0 005.347 6.763l7.432 7.431a3.494 3.494 0 105.851-3.345zM19.6 19.6a1.382 1.382 0 110-1.954 1.381 1.381 0 010 1.954z\"/>\r\n</svg>";
|
|
6427
6531
|
return DashboardTileToolbarProvider;
|
|
6428
6532
|
}(DomainChartToolbarProvider));
|
|
6429
6533
|
|
|
@@ -8253,11 +8357,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8253
8357
|
* Gets the brush to use for the Category axis major strokes, if applicable.
|
|
8254
8358
|
*/
|
|
8255
8359
|
get: function () {
|
|
8256
|
-
return brushToString(this.i.
|
|
8360
|
+
return brushToString(this.i.ik);
|
|
8257
8361
|
},
|
|
8258
8362
|
set: function (v) {
|
|
8259
|
-
this.i.
|
|
8260
|
-
this._a("categoryAxisMajorStroke", brushToString(this.i.
|
|
8363
|
+
this.i.ik = stringToBrush(v);
|
|
8364
|
+
this._a("categoryAxisMajorStroke", brushToString(this.i.ik));
|
|
8261
8365
|
},
|
|
8262
8366
|
enumerable: false,
|
|
8263
8367
|
configurable: true
|
|
@@ -8313,6 +8417,48 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8313
8417
|
enumerable: false,
|
|
8314
8418
|
configurable: true
|
|
8315
8419
|
});
|
|
8420
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "valueLinesGlobalAverageBrush", {
|
|
8421
|
+
/**
|
|
8422
|
+
* Gets or sets the color for GlobalAverage value lines.
|
|
8423
|
+
*/
|
|
8424
|
+
get: function () {
|
|
8425
|
+
return brushToString(this.i.il);
|
|
8426
|
+
},
|
|
8427
|
+
set: function (v) {
|
|
8428
|
+
this.i.il = stringToBrush(v);
|
|
8429
|
+
this._a("valueLinesGlobalAverageBrush", brushToString(this.i.il));
|
|
8430
|
+
},
|
|
8431
|
+
enumerable: false,
|
|
8432
|
+
configurable: true
|
|
8433
|
+
});
|
|
8434
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "valueLinesGlobalMinimumBrush", {
|
|
8435
|
+
/**
|
|
8436
|
+
* Gets or sets the color for GlobalMinimum value lines.
|
|
8437
|
+
*/
|
|
8438
|
+
get: function () {
|
|
8439
|
+
return brushToString(this.i.io);
|
|
8440
|
+
},
|
|
8441
|
+
set: function (v) {
|
|
8442
|
+
this.i.io = stringToBrush(v);
|
|
8443
|
+
this._a("valueLinesGlobalMinimumBrush", brushToString(this.i.io));
|
|
8444
|
+
},
|
|
8445
|
+
enumerable: false,
|
|
8446
|
+
configurable: true
|
|
8447
|
+
});
|
|
8448
|
+
Object.defineProperty(IgcDashboardTileComponent.prototype, "valueLinesGlobalMaximumBrush", {
|
|
8449
|
+
/**
|
|
8450
|
+
* Gets or sets the color for GlobalMaximum value lines.
|
|
8451
|
+
*/
|
|
8452
|
+
get: function () {
|
|
8453
|
+
return brushToString(this.i.im);
|
|
8454
|
+
},
|
|
8455
|
+
set: function (v) {
|
|
8456
|
+
this.i.im = stringToBrush(v);
|
|
8457
|
+
this._a("valueLinesGlobalMaximumBrush", brushToString(this.i.im));
|
|
8458
|
+
},
|
|
8459
|
+
enumerable: false,
|
|
8460
|
+
configurable: true
|
|
8461
|
+
});
|
|
8316
8462
|
Object.defineProperty(IgcDashboardTileComponent.prototype, "autoCalloutsVisible", {
|
|
8317
8463
|
/**
|
|
8318
8464
|
* Gets or sets if the auto value callouts should be displayed.
|
|
@@ -8430,11 +8576,11 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8430
8576
|
* Gets or sets the color to use for the background of the component.
|
|
8431
8577
|
*/
|
|
8432
8578
|
get: function () {
|
|
8433
|
-
return brushToString(this.i.
|
|
8579
|
+
return brushToString(this.i.ij);
|
|
8434
8580
|
},
|
|
8435
8581
|
set: function (v) {
|
|
8436
|
-
this.i.
|
|
8437
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
8582
|
+
this.i.ij = stringToBrush(v);
|
|
8583
|
+
this._a("backgroundColor", brushToString(this.i.ij));
|
|
8438
8584
|
},
|
|
8439
8585
|
enumerable: false,
|
|
8440
8586
|
configurable: true
|
|
@@ -8564,7 +8710,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8564
8710
|
this._inStyling = false;
|
|
8565
8711
|
};
|
|
8566
8712
|
IgcDashboardTileComponent.prototype.updateSettingsValue = function (key, value) {
|
|
8567
|
-
this.i.
|
|
8713
|
+
this.i.h9(key, value);
|
|
8568
8714
|
};
|
|
8569
8715
|
IgcDashboardTileComponent.prototype.getSettingsValue = function (key) {
|
|
8570
8716
|
var iv = this.i.er(key);
|
|
@@ -8575,10 +8721,10 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8575
8721
|
return (iv);
|
|
8576
8722
|
};
|
|
8577
8723
|
IgcDashboardTileComponent.prototype.clearSettings = function () {
|
|
8578
|
-
this.i.
|
|
8724
|
+
this.i.gx();
|
|
8579
8725
|
};
|
|
8580
8726
|
IgcDashboardTileComponent.prototype.removeSettingsValue = function (key) {
|
|
8581
|
-
this.i.
|
|
8727
|
+
this.i.hx(key);
|
|
8582
8728
|
};
|
|
8583
8729
|
IgcDashboardTileComponent.prototype.zoomIn = function (percentage) {
|
|
8584
8730
|
this.i.zoomIn(percentage);
|
|
@@ -8598,7 +8744,7 @@ var IgcDashboardTileComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8598
8744
|
this.i.resetZoom();
|
|
8599
8745
|
};
|
|
8600
8746
|
IgcDashboardTileComponent.prototype.onUIReady = function () {
|
|
8601
|
-
this.i.
|
|
8747
|
+
this.i.hq();
|
|
8602
8748
|
};
|
|
8603
8749
|
IgcDashboardTileComponent.prototype.getDesiredToolbarActions = function () {
|
|
8604
8750
|
var iv = this.i.getDesiredToolbarActions();
|
|
@@ -9382,4 +9528,4 @@ var IgcDashboardTileSummaryDescriptionModule = /** @class */ /*@__PURE__*/ (func
|
|
|
9382
9528
|
return IgcDashboardTileSummaryDescriptionModule;
|
|
9383
9529
|
}());
|
|
9384
9530
|
|
|
9385
|
-
export { DashboardTile, DashboardTileChangingContentEventArgs, DashboardTileCommonFeature, DashboardTileCustomization, DashboardTileCustomizationCollection, DashboardTileFilterStringErrorsParsingEventArgs, DashboardTileGalleryIconInfo, DashboardTileGroupDescription, DashboardTileGroupDescriptionCollection, DashboardTilePrimitiveValueWrapper, DashboardTileSortDescription, DashboardTileSortDescriptionCollection, DashboardTileSummaryDescription, DashboardTileSummaryDescriptionCollection, DashboardTileToolbarProvider, DashboardTileView, DashboardTileVisualizationType, DashboardTileVisualizationType_$type, DataChartDashboardTileFeature, DataSeriesToDescriptionAdapter, DataSeriesToDescriptionAdapterControlType_$type, DataSeriesToDescriptionAdapterResult, DataSeriesToDescriptionAdapterSettings, DataSeriesToDescriptionCustomizations, DescriptionValueLookupHelper, GeographicMapDashboardTileFeature, IDashboardTileView_$type, IExternalDashboardTile_$type, IgcDashboardTileChangingContentEventArgs, IgcDashboardTileComponent, IgcDashboardTileCustomizationCollection, IgcDashboardTileCustomizationComponent, IgcDashboardTileCustomizationModule, IgcDashboardTileFilterStringErrorsParsingEventArgs, IgcDashboardTileGroupDescription, IgcDashboardTileGroupDescriptionCollection, IgcDashboardTileGroupDescriptionModule, IgcDashboardTileModule, IgcDashboardTileSortDescription, IgcDashboardTileSortDescriptionCollection, IgcDashboardTileSortDescriptionModule, IgcDashboardTileSummaryDescription, IgcDashboardTileSummaryDescriptionCollection, IgcDashboardTileSummaryDescriptionModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule, LinearGaugeDashboardTileFeature, PieChartDashboardTileFeature, RadialGaugeDashboardTileFeature };
|
|
9531
|
+
export { DashboardTile, DashboardTileChangingContentEventArgs, DashboardTileCommonFeature, DashboardTileCustomization, DashboardTileCustomizationCollection, DashboardTileFilterStringErrorsParsingEventArgs, DashboardTileGalleryIconInfo, DashboardTileGroupDescription, DashboardTileGroupDescriptionCollection, DashboardTilePrimitiveValueWrapper, DashboardTileSortDescription, DashboardTileSortDescriptionCollection, DashboardTileSummaryDescription, DashboardTileSummaryDescriptionCollection, DashboardTileToolbarProvider, DashboardTileView, DashboardTileVisualizationType, DashboardTileVisualizationType_$type, DataChartDashboardTileFeature, DataSeriesToDescriptionAdapter, DataSeriesToDescriptionAdapterControlType_$type, DataSeriesToDescriptionAdapterResult, DataSeriesToDescriptionAdapterSettings, DataSeriesToDescriptionCustomizations, DescriptionValueLookupHelper, GeographicMapDashboardTileFeature, IDashboardTileView_$type, IExternalDashboardTile_$type, IgcDashboardTileChangingContentEventArgs, IgcDashboardTileComponent, IgcDashboardTileCustomizationCollection, IgcDashboardTileCustomizationComponent, IgcDashboardTileCustomizationModule, IgcDashboardTileFilterStringErrorsParsingEventArgs, IgcDashboardTileGroupDescription, IgcDashboardTileGroupDescriptionCollection, IgcDashboardTileGroupDescriptionModule, IgcDashboardTileModule, IgcDashboardTileSortDescription, IgcDashboardTileSortDescriptionCollection, IgcDashboardTileSortDescriptionModule, IgcDashboardTileSummaryDescription, IgcDashboardTileSummaryDescriptionCollection, IgcDashboardTileSummaryDescriptionModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule, LinearGaugeDashboardTileFeature, PieChartDashboardTileFeature, RadialGaugeDashboardTileFeature, ValueGetterResult };
|