mdt-charts 1.12.16 → 1.12.17
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/lib/config/config.d.ts +42 -8
- package/lib/engine/block/block.d.ts +4 -13
- package/lib/engine/block/block.js +12 -61
- package/lib/engine/block/blockHtml.d.ts +14 -0
- package/lib/engine/block/blockHtml.js +18 -0
- package/lib/engine/block/blockSvg.d.ts +26 -0
- package/lib/engine/block/blockSvg.js +69 -0
- package/lib/engine/cardsNotation/card/card.d.ts +30 -0
- package/lib/engine/cardsNotation/card/card.js +97 -0
- package/lib/engine/cardsNotation/card/cardChange.d.ts +21 -0
- package/lib/engine/cardsNotation/card/cardChange.js +72 -0
- package/lib/engine/cardsNotation/card/cardElementsStyler.d.ts +6 -0
- package/lib/engine/cardsNotation/card/cardElementsStyler.js +11 -0
- package/lib/engine/cardsNotation/card/cardService.d.ts +11 -0
- package/lib/engine/cardsNotation/card/cardService.js +12 -0
- package/lib/engine/cardsNotation/cardsManager.d.ts +11 -0
- package/lib/engine/cardsNotation/cardsManager.js +14 -0
- package/lib/engine/contentManager/contentManager.d.ts +6 -4
- package/lib/engine/contentManager/contentManager.js +9 -9
- package/lib/engine/contentManager/contentManagerFactory.d.ts +1 -1
- package/lib/engine/contentManager/contentManagerFactory.js +3 -1
- package/lib/engine/engine.d.ts +4 -3
- package/lib/engine/engine.js +9 -5
- package/lib/engine/features/embeddedLabels/embeddedLabels.js +6 -6
- package/lib/engine/features/legend/legend.js +1 -1
- package/lib/engine/features/markDots/markDot.js +4 -4
- package/lib/engine/features/tolltip/tooltip.d.ts +2 -2
- package/lib/engine/features/tolltip/tooltip.js +0 -3
- package/lib/engine/features/tolltip/tooltipComponentsManager.js +2 -2
- package/lib/engine/helpers/fontResizer/fontResizer.d.ts +16 -0
- package/lib/engine/helpers/fontResizer/fontResizer.js +21 -0
- package/lib/engine/helpers/fontResizer/fontResizerService.d.ts +6 -0
- package/lib/engine/helpers/fontResizer/fontResizerService.js +12 -0
- package/lib/engine/helpers/namesHelper.js +1 -1
- package/lib/engine/intervalNotation/gantt.js +2 -2
- package/lib/engine/intervalNotation/intervalManager.js +2 -4
- package/lib/engine/polarNotation/polarManager.d.ts +5 -5
- package/lib/engine/polarNotation/polarManager.js +1 -1
- package/lib/engine/twoDimensionalNotation/area/area.js +7 -7
- package/lib/engine/twoDimensionalNotation/bar/bar.js +11 -11
- package/lib/engine/twoDimensionalNotation/line/line.d.ts +1 -1
- package/lib/engine/twoDimensionalNotation/line/line.js +9 -9
- package/lib/engine/twoDimensionalNotation/twoDimensionalManager.d.ts +5 -5
- package/lib/engine/twoDimensionalNotation/twoDimensionalManager.js +4 -4
- package/lib/main.js +1 -1
- package/lib/model/chartStyleModel/chartStyleModel.d.ts +1 -1
- package/lib/model/chartStyleModel/chartStyleModel.js +2 -2
- package/lib/model/chartStyleModel/colorRange.d.ts +7 -0
- package/lib/model/chartStyleModel/colorRange.js +30 -0
- package/lib/model/dataManagerModel/dataManagerModel.js +5 -0
- package/lib/model/dataManagerModel/notations/cardsDataManagerModel.d.ts +5 -0
- package/lib/model/dataManagerModel/notations/cardsDataManagerModel.js +10 -0
- package/lib/model/model.d.ts +25 -8
- package/lib/model/modelBuilder.js +4 -0
- package/lib/model/modelInstance/dataModel/dataRepository.d.ts +1 -0
- package/lib/model/modelInstance/dataModel/dataRepository.js +3 -0
- package/lib/model/notations/cards/cardsChangeService.d.ts +10 -0
- package/lib/model/notations/cards/cardsChangeService.js +50 -0
- package/lib/model/notations/cards/cardsModel.d.ts +8 -0
- package/lib/model/notations/cards/cardsModel.js +19 -0
- package/lib/model/notations/cards/cardsModelService.d.ts +6 -0
- package/lib/model/notations/cards/cardsModelService.js +10 -0
- package/lib/optionsServices/publicOptionsService.d.ts +1 -1
- package/lib/optionsServices/validators/sizeValidator.d.ts +1 -1
- package/lib/style/charts-main.css +75 -5
- package/lib/style/charts-main.less +75 -5
- package/package.json +1 -1
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
/*========================================================================== Common classes */
|
|
33
|
-
.charts-opacity-inactive {
|
|
33
|
+
.mdt-charts-opacity-inactive {
|
|
34
34
|
opacity: 0.6;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
/* EXTENDED FOR SPECIFIC STYLES */
|
|
38
|
-
.legend-item.charts-opacity-inactive {
|
|
38
|
+
.legend-item.mdt-charts-opacity-inactive {
|
|
39
39
|
opacity: 0.45;
|
|
40
40
|
}
|
|
41
41
|
|
|
@@ -188,10 +188,10 @@
|
|
|
188
188
|
|
|
189
189
|
|
|
190
190
|
/*========================================================================= Additional */
|
|
191
|
-
.charts-axis .domain {
|
|
191
|
+
.mdt-charts-axis .domain {
|
|
192
192
|
stroke: #D2D2D2;
|
|
193
193
|
}
|
|
194
|
-
.charts-axis .tick line:first-of-type {
|
|
194
|
+
.mdt-charts-axis .tick line:first-of-type {
|
|
195
195
|
stroke: #D2D2D2;
|
|
196
196
|
}
|
|
197
197
|
|
|
@@ -261,6 +261,76 @@
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
/* Mark dots */
|
|
264
|
-
.charts-dot-hidden {
|
|
264
|
+
.mdt-charts-dot-hidden {
|
|
265
265
|
display: none;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/* Card */
|
|
269
|
+
.mdt-charts-html-chart {
|
|
270
|
+
width: 100%;
|
|
271
|
+
height: 100%;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.mdt-charts-card-wrapper {
|
|
275
|
+
width: 100%;
|
|
276
|
+
height: 100%;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.mdt-charts-card-wrapper * {
|
|
280
|
+
box-sizing: border-box;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.mdt-charts-card-content {
|
|
284
|
+
width: 100%;
|
|
285
|
+
height: 100%;
|
|
286
|
+
display: flex;
|
|
287
|
+
flex-direction: column;
|
|
288
|
+
justify-content: space-between;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.mdt-charts-card-header {
|
|
292
|
+
display: flex;
|
|
293
|
+
justify-content: space-between;
|
|
294
|
+
flex: 1;
|
|
295
|
+
font-size: 1.3em;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.mdt-charts-card-title {
|
|
299
|
+
margin: 0;
|
|
300
|
+
white-space: nowrap;
|
|
301
|
+
overflow: hidden;
|
|
302
|
+
text-overflow: ellipsis;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.mdt-charts-card-description-wrapper {
|
|
306
|
+
overflow: hidden;
|
|
307
|
+
text-overflow: ellipsis;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.mdt-charts-card-description {
|
|
311
|
+
margin: 0;
|
|
312
|
+
overflow: hidden;
|
|
313
|
+
text-overflow: ellipsis;
|
|
314
|
+
opacity: 0.6;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.mdt-charts-card-value-wrapper {
|
|
318
|
+
flex: 2;
|
|
319
|
+
display: flex;
|
|
320
|
+
align-items: center;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.mdt-charts-card-change-content {
|
|
324
|
+
display: flex;
|
|
325
|
+
font-size: 0.9em;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.mdt-charts-card-change-content-item:not(:last-of-type) {
|
|
329
|
+
margin-right: 0.5em;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.mdt-charts-card-change-description-wrapper {
|
|
333
|
+
white-space: nowrap;
|
|
334
|
+
overflow: hidden;
|
|
335
|
+
text-overflow: ellipsis;
|
|
266
336
|
}
|