@aquera/nile-visualization 2.9.7 → 2.9.8
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/dist/src/nile-chart/nile-chart-config.d.ts +0 -2
- package/dist/src/nile-chart/nile-chart.css.js +36 -399
- package/dist/src/nile-chart/nile-chart.js +16 -3
- package/dist/src/nile-kpi-chart/nile-kpi-chart.css.js +18 -314
- package/dist/src/nile-kpi-chart/nile-kpi-chart.d.ts +2 -4
- package/dist/src/nile-kpi-chart/nile-kpi-chart.js +26 -145
- package/package.json +1 -1
- package/dist/src/nile-chart/nile-chart-skeleton.d.ts +0 -2
- package/dist/src/nile-chart/nile-chart-skeleton.js +0 -188
|
@@ -47,14 +47,14 @@ export const styles = css `
|
|
|
47
47
|
--nile-kpi-label-color: var(--nile-colors-neutral-700, var(--ng-colors-text-secondary-700));
|
|
48
48
|
--nile-kpi-label-font-size: var(--nile-type-scale-3, var(--ng-font-size-text-sm));
|
|
49
49
|
--nile-kpi-label-font-weight: var(--nile-font-weight-medium, var(--ng-font-weight-medium));
|
|
50
|
-
--nile-kpi-value-font-size: clamp(
|
|
50
|
+
--nile-kpi-value-font-size: clamp(1rem, 5cqi + 0.25rem, 36px);
|
|
51
51
|
--nile-kpi-value-color: var(--nile-colors-dark-900, var(--ng-colors-text-primary-900));
|
|
52
52
|
--nile-kpi-prefix-suffix-font-size: var(--nile-type-scale-6, var(--ng-font-size-text-xl));
|
|
53
53
|
--nile-kpi-prefix-suffix-color: var(--nile-colors-neutral-700, var(--ng-colors-text-secondary-700));
|
|
54
54
|
--nile-kpi-trend-up-color: var(--nile-colors-success-700, var(--ng-color-success-700));
|
|
55
55
|
--nile-kpi-trend-down-color: var(--nile-colors-error-700, var(--ng-color-error-700));
|
|
56
56
|
--nile-kpi-trend-neutral-color: var(--nile-colors-neutral-700, var(--ng-colors-text-secondary-700));
|
|
57
|
-
--nile-kpi-description-font-size:
|
|
57
|
+
--nile-kpi-description-font-size: var(--nile-type-scale-2, var(--ng-font-size-text-xs));
|
|
58
58
|
--nile-kpi-description-color: var(--nile-colors-neutral-700, var(--ng-colors-text-secondary-700));
|
|
59
59
|
display: flex;
|
|
60
60
|
flex-direction: column;
|
|
@@ -63,8 +63,7 @@ export const styles = css `
|
|
|
63
63
|
position: relative;
|
|
64
64
|
box-sizing: border-box;
|
|
65
65
|
overflow: hidden;
|
|
66
|
-
container-type: size;
|
|
67
|
-
container-name: kpi-card;
|
|
66
|
+
container-type: inline-size;
|
|
68
67
|
}
|
|
69
68
|
|
|
70
69
|
:host([hidden]) {
|
|
@@ -121,118 +120,6 @@ export const styles = css `
|
|
|
121
120
|
overflow: hidden;
|
|
122
121
|
}
|
|
123
122
|
|
|
124
|
-
/* ── Adaptive layout: classes set by render() based on what content exists.
|
|
125
|
-
.kpi--no-chart — no sparkline and no gauge
|
|
126
|
-
.kpi--no-desc — no description
|
|
127
|
-
Use both together for "value-only" centering. ── */
|
|
128
|
-
.kpi.kpi--no-chart {
|
|
129
|
-
display: flex;
|
|
130
|
-
flex-direction: column;
|
|
131
|
-
align-items: center;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
/* When there is no chart, center value-row vertically in the leftover space
|
|
135
|
-
below the label, and push the description toward the bottom. With a chart
|
|
136
|
-
present, items stack from the top naturally (no auto margins). */
|
|
137
|
-
.kpi--no-chart .kpi-value-row {
|
|
138
|
-
margin-top: auto;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.kpi--no-chart .kpi-description {
|
|
142
|
-
margin-bottom: auto;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
/* Reset any grid-only props inherited from the side-by-side rule. */
|
|
146
|
-
.kpi.kpi--no-chart .kpi-label,
|
|
147
|
-
.kpi.kpi--no-chart .kpi-value-row,
|
|
148
|
-
.kpi.kpi--no-chart .kpi-description {
|
|
149
|
-
grid-column: auto;
|
|
150
|
-
grid-row: auto;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.kpi--no-chart .kpi-label {
|
|
154
|
-
align-self: flex-start;
|
|
155
|
-
width: 100%;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.kpi--no-chart .kpi-value-row {
|
|
159
|
-
overflow: hidden;
|
|
160
|
-
flex-wrap: wrap;
|
|
161
|
-
row-gap: var(--nile-spacing-xs, var(--ng-spacing-xs));
|
|
162
|
-
justify-content: center;
|
|
163
|
-
align-self: stretch;
|
|
164
|
-
width: 100%;
|
|
165
|
-
max-width: 100%;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
/* Center value-row vertically when there's nothing below it (no desc, no chart). */
|
|
169
|
-
.kpi--no-chart.kpi--no-desc .kpi-value-row {
|
|
170
|
-
margin-top: auto;
|
|
171
|
-
margin-bottom: auto;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/* Grow the value when there's room — no chart AND (no description OR no trend). */
|
|
175
|
-
.kpi--no-chart.kpi--no-desc,
|
|
176
|
-
.kpi--no-chart.kpi--no-trend {
|
|
177
|
-
--nile-kpi-value-font-size: clamp(20px, 9cqmin, 56px);
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
/* When trend is absent, the value sits alone in the row — make sure it
|
|
181
|
-
centers horizontally and the row sizes to content. */
|
|
182
|
-
.kpi--no-chart.kpi--no-trend .kpi-value-row {
|
|
183
|
-
justify-content: center;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.kpi--no-chart.kpi--no-trend .kpi-value {
|
|
187
|
-
text-align: center;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.kpi--no-chart .kpi-trend {
|
|
191
|
-
flex: 0 1 auto;
|
|
192
|
-
min-width: 0;
|
|
193
|
-
max-width: 100%;
|
|
194
|
-
overflow: hidden;
|
|
195
|
-
text-overflow: ellipsis;
|
|
196
|
-
white-space: nowrap;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
/* Let the trend text size to its own content when there's no chart. The
|
|
200
|
-
default flex 1 1 0 (basis 0) gives the trend nearly zero natural width,
|
|
201
|
-
so the parent row gives it almost no space and the text clips. */
|
|
202
|
-
.kpi--no-chart .kpi-trend > span:last-child {
|
|
203
|
-
flex: 0 0 auto;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.kpi--no-chart:not(.kpi--no-desc) .kpi-description {
|
|
207
|
-
margin-bottom: auto;
|
|
208
|
-
align-self: center;
|
|
209
|
-
text-align: center;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
/* When the card is narrow, the centered no-chart value can overflow both
|
|
214
|
-
edges (cut off on the left). Switch to left-aligned at narrow widths so
|
|
215
|
-
the value's left edge stays visible. */
|
|
216
|
-
@container (max-width: 160px) {
|
|
217
|
-
.kpi--no-chart {
|
|
218
|
-
align-items: stretch;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.kpi--no-chart .kpi-value-row {
|
|
222
|
-
justify-content: flex-start;
|
|
223
|
-
align-self: stretch;
|
|
224
|
-
width: 100%;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.kpi--no-chart.kpi--no-trend .kpi-value-row {
|
|
228
|
-
justify-content: flex-start;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.kpi--no-chart.kpi--no-trend .kpi-value {
|
|
232
|
-
text-align: left;
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
123
|
.kpi-label {
|
|
237
124
|
display: block;
|
|
238
125
|
margin: 0;
|
|
@@ -248,30 +135,15 @@ export const styles = css `
|
|
|
248
135
|
width: 100%;
|
|
249
136
|
max-width: 100%;
|
|
250
137
|
box-sizing: border-box;
|
|
251
|
-
flex-shrink: 0;
|
|
252
138
|
}
|
|
253
139
|
|
|
254
140
|
.kpi-value-row {
|
|
255
141
|
display: flex;
|
|
256
142
|
align-items: center;
|
|
257
|
-
justify-content: flex-start;
|
|
258
143
|
gap: var(--nile-spacing-md, var(--ng-spacing-md));
|
|
259
144
|
flex-wrap: nowrap;
|
|
260
|
-
width: 100%;
|
|
261
|
-
max-width: 100%;
|
|
262
145
|
min-width: 0;
|
|
263
146
|
overflow: hidden;
|
|
264
|
-
flex-shrink: 0;
|
|
265
|
-
box-sizing: border-box;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
/* When a chart is rendered, force value-row to the left of its column,
|
|
269
|
-
overriding any centering inherited from the .kpi--no-chart rules. */
|
|
270
|
-
.kpi:not(.kpi--no-chart) .kpi-value-row {
|
|
271
|
-
justify-content: flex-start;
|
|
272
|
-
align-self: stretch;
|
|
273
|
-
margin-left: 0;
|
|
274
|
-
margin-right: 0;
|
|
275
147
|
}
|
|
276
148
|
|
|
277
149
|
.kpi-value {
|
|
@@ -283,9 +155,10 @@ export const styles = css `
|
|
|
283
155
|
line-height: 1.2;
|
|
284
156
|
cursor: default;
|
|
285
157
|
white-space: nowrap;
|
|
286
|
-
|
|
287
|
-
flex
|
|
288
|
-
overflow:
|
|
158
|
+
min-width: 0;
|
|
159
|
+
flex: 0 1 auto;
|
|
160
|
+
overflow: hidden;
|
|
161
|
+
text-overflow: ellipsis;
|
|
289
162
|
}
|
|
290
163
|
|
|
291
164
|
.kpi-prefix,
|
|
@@ -297,7 +170,7 @@ export const styles = css `
|
|
|
297
170
|
}
|
|
298
171
|
|
|
299
172
|
.kpi-trend {
|
|
300
|
-
display: flex;
|
|
173
|
+
display: inline-flex;
|
|
301
174
|
align-items: center;
|
|
302
175
|
gap: var(--nile-spacing-xs, var(--ng-spacing-xs));
|
|
303
176
|
padding: var(--nile-spacing-xs, var(--ng-spacing-xs)) var(--nile-spacing-md, var(--ng-spacing-md));
|
|
@@ -306,36 +179,10 @@ export const styles = css `
|
|
|
306
179
|
font-size: var(--nile-type-scale-2, var(--ng-font-size-text-xs));
|
|
307
180
|
font-weight: var(--nile-font-weight-medium, var(--ng-font-weight-medium));
|
|
308
181
|
line-height: 1;
|
|
309
|
-
flex:
|
|
182
|
+
flex-shrink: 1;
|
|
310
183
|
min-width: 0;
|
|
311
|
-
max-width: 100%;
|
|
312
184
|
overflow: hidden;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.kpi-trend-text {
|
|
316
|
-
min-width: 0;
|
|
317
|
-
min-height: 0;
|
|
318
|
-
max-width: 100%;
|
|
319
|
-
overflow: hidden;
|
|
320
|
-
text-overflow: ellipsis;
|
|
321
185
|
white-space: nowrap;
|
|
322
|
-
box-sizing: border-box;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.kpi-trend > span:last-child {
|
|
326
|
-
flex: 1 1 0;
|
|
327
|
-
overflow: hidden;
|
|
328
|
-
text-overflow: ellipsis;
|
|
329
|
-
white-space: nowrap;
|
|
330
|
-
min-width: 0;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
/* ── When no chart is rendered, the trend has room — don't truncate. ── */
|
|
334
|
-
.kpi--no-chart .kpi-trend,
|
|
335
|
-
.kpi--no-chart .kpi-trend > span:last-child {
|
|
336
|
-
overflow: hidden;
|
|
337
|
-
text-overflow: ellipsis;
|
|
338
|
-
flex-shrink: 0;
|
|
339
186
|
}
|
|
340
187
|
|
|
341
188
|
.kpi-trend--up {
|
|
@@ -366,9 +213,7 @@ export const styles = css `
|
|
|
366
213
|
}
|
|
367
214
|
|
|
368
215
|
.kpi-description {
|
|
369
|
-
display:
|
|
370
|
-
-webkit-box-orient: vertical;
|
|
371
|
-
-webkit-line-clamp: 3;
|
|
216
|
+
display: block;
|
|
372
217
|
margin: 0;
|
|
373
218
|
font-family: var(--nile-font-family-serif, var(--ng-font-family-body));
|
|
374
219
|
font-size: var(--nile-kpi-description-font-size);
|
|
@@ -376,31 +221,23 @@ export const styles = css `
|
|
|
376
221
|
line-height: 1.5;
|
|
377
222
|
overflow: hidden;
|
|
378
223
|
text-overflow: ellipsis;
|
|
379
|
-
white-space: normal;
|
|
380
|
-
word-break: break-word;
|
|
381
224
|
min-width: 0;
|
|
382
225
|
width: 100%;
|
|
383
226
|
max-width: 100%;
|
|
384
227
|
box-sizing: border-box;
|
|
385
|
-
flex-shrink: 0;
|
|
386
228
|
}
|
|
387
229
|
|
|
388
|
-
/* Description stays visible whenever there's room — sparkline gives up its
|
|
389
|
-
space first because it has flex-shrink and flex-basis: 0. */
|
|
390
|
-
|
|
391
|
-
|
|
392
230
|
.kpi-sparkline {
|
|
393
231
|
width: 100%;
|
|
394
|
-
flex:
|
|
395
|
-
min-height:
|
|
232
|
+
flex: 0 1 48px;
|
|
233
|
+
min-height: 22px;
|
|
396
234
|
margin-top: var(--nile-spacing-xs, var(--ng-spacing-xs));
|
|
397
|
-
overflow: hidden;
|
|
398
235
|
}
|
|
399
236
|
|
|
400
237
|
/* ── Container queries: scale down for narrow cards ── */
|
|
401
238
|
|
|
402
239
|
/* Medium-small: ~280px and below — tighten padding, shrink prefix/suffix. */
|
|
403
|
-
@container (max-width:
|
|
240
|
+
@container (max-width: 280px) {
|
|
404
241
|
:host {
|
|
405
242
|
--nile-kpi-padding-v: var(--nile-spacing-lg, var(--ng-spacing-lg));
|
|
406
243
|
--nile-kpi-padding-h: var(--nile-spacing-xl, var(--ng-spacing-xl));
|
|
@@ -427,9 +264,8 @@ export const styles = css `
|
|
|
427
264
|
}
|
|
428
265
|
|
|
429
266
|
.kpi-sparkline {
|
|
430
|
-
|
|
267
|
+
flex-basis: 32px;
|
|
431
268
|
min-height: 18px;
|
|
432
|
-
|
|
433
269
|
}
|
|
434
270
|
}
|
|
435
271
|
|
|
@@ -445,136 +281,6 @@ export const styles = css `
|
|
|
445
281
|
}
|
|
446
282
|
}
|
|
447
283
|
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
/* ── Named-container hide thresholds ──────────────────────────────────────
|
|
451
|
-
Use kpi-card (this host) so descendants hide when the host can't fit them.
|
|
452
|
-
Tune each height to match where the section first starts clipping. ── */
|
|
453
|
-
|
|
454
|
-
/* Hide sparkline (and gauge) when the card can't fit it cleanly. */
|
|
455
|
-
@container kpi-card (max-height: 10px) {
|
|
456
|
-
.kpi-sparkline,
|
|
457
|
-
.kpi-gauge-container {
|
|
458
|
-
display: none;
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
/* Hide description when the card is even shorter. */
|
|
463
|
-
@container kpi-card (max-height: 110px) {
|
|
464
|
-
.kpi-description {
|
|
465
|
-
display: none;
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
/* Hide trend at very small sizes — keeps only label + value. */
|
|
470
|
-
@container kpi-card (max-height: 20px) {
|
|
471
|
-
.kpi-trend {
|
|
472
|
-
display: none;
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
/* When the host is short, hide the sparkline. Centering of the value-row is
|
|
477
|
-
restricted to .kpi--no-chart only — with a chart present, items stack from
|
|
478
|
-
the top of the card naturally. */
|
|
479
|
-
@container (max-height: 80px) {
|
|
480
|
-
.kpi-sparkline {
|
|
481
|
-
display: none;
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
.kpi.kpi--no-chart {
|
|
485
|
-
align-items: center;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.kpi--no-chart .kpi-label {
|
|
489
|
-
align-self: flex-start;
|
|
490
|
-
width: 100%;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.kpi--no-chart .kpi-value-row {
|
|
494
|
-
overflow: visible;
|
|
495
|
-
flex-wrap: wrap;
|
|
496
|
-
row-gap: var(--nile-spacing-xs, var(--ng-spacing-xs));
|
|
497
|
-
justify-content: center;
|
|
498
|
-
align-self: center;
|
|
499
|
-
width: auto;
|
|
500
|
-
max-width: 100%;
|
|
501
|
-
margin-top: auto;
|
|
502
|
-
margin-bottom: auto;
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
/* SIDE_HEIGHT × SIDE_WIDTH — wide + short, chart on the right of text.
|
|
507
|
-
Only when a chart is present; otherwise text would be squeezed into the
|
|
508
|
-
left half while the right half stays empty. */
|
|
509
|
-
@container (max-height: 108px) and (min-width: 390px) {
|
|
510
|
-
.kpi:not(.kpi--no-chart) {
|
|
511
|
-
display: grid;
|
|
512
|
-
grid-template-columns: minmax(0, 1fr) minmax(1px, 1fr);
|
|
513
|
-
|
|
514
|
-
grid-template-rows: auto auto auto 1fr;
|
|
515
|
-
column-gap: var(--nile-spacing-2xl, var(--ng-spacing-2xl));
|
|
516
|
-
align-items: start;
|
|
517
|
-
height: 100%;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.kpi:not(.kpi--no-chart) .kpi-label {
|
|
521
|
-
grid-column: 1;
|
|
522
|
-
grid-row: 1;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
.kpi:not(.kpi--no-chart) .kpi-value-row {
|
|
526
|
-
grid-column: 1;
|
|
527
|
-
grid-row: 2;
|
|
528
|
-
overflow: hidden;
|
|
529
|
-
min-width: 0;
|
|
530
|
-
width: 100%;
|
|
531
|
-
max-width: 100%;
|
|
532
|
-
justify-content: flex-start;
|
|
533
|
-
justify-self: stretch;
|
|
534
|
-
align-self: start;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.kpi:not(.kpi--no-chart) .kpi-description {
|
|
538
|
-
grid-column: 1;
|
|
539
|
-
grid-row: 3;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
.kpi:not(.kpi--no-chart) .kpi-trend {
|
|
543
|
-
flex: 0 1 auto;
|
|
544
|
-
min-width: 0;
|
|
545
|
-
max-width: 100%;
|
|
546
|
-
overflow: hidden;
|
|
547
|
-
text-overflow: ellipsis;
|
|
548
|
-
white-space: nowrap;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
.kpi:not(.kpi--no-chart) .kpi-trend > span:last-child {
|
|
552
|
-
overflow: hidden;
|
|
553
|
-
text-overflow: ellipsis;
|
|
554
|
-
min-width: 0;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.kpi-sparkline {
|
|
558
|
-
display: block;
|
|
559
|
-
grid-column: 2;
|
|
560
|
-
grid-row: 1 / -1;
|
|
561
|
-
align-self: stretch;
|
|
562
|
-
min-height: 0;
|
|
563
|
-
height: 100%;
|
|
564
|
-
margin-top: 0;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
.kpi-gauge-container {
|
|
568
|
-
display: block;
|
|
569
|
-
grid-column: 2;
|
|
570
|
-
grid-row: 1 / -1;
|
|
571
|
-
align-self: stretch;
|
|
572
|
-
min-height: 0;
|
|
573
|
-
height: 100%;
|
|
574
|
-
margin-top: 0;
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
|
|
578
284
|
/* ── Gauge variant ── */
|
|
579
285
|
|
|
580
286
|
.kpi--gauge {
|
|
@@ -584,13 +290,11 @@ export const styles = css `
|
|
|
584
290
|
|
|
585
291
|
.kpi-gauge-container {
|
|
586
292
|
width: 100%;
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
max-height: 100%;
|
|
293
|
+
max-width: 160px;
|
|
294
|
+
aspect-ratio: 1;
|
|
295
|
+
flex: 0 1 160px;
|
|
296
|
+
min-width: 72px;
|
|
592
297
|
margin: 0 auto;
|
|
593
|
-
overflow: hidden;
|
|
594
298
|
}
|
|
595
299
|
|
|
596
300
|
.kpi--gauge .kpi-value-row {
|
|
@@ -3,8 +3,8 @@ import type Highcharts from 'highcharts';
|
|
|
3
3
|
import NileElement from '../internal/nile-element.js';
|
|
4
4
|
import type { AqConfigType } from '../internal/types/aq-config.type.js';
|
|
5
5
|
export type TrendDirection = 'up' | 'down' | 'neutral';
|
|
6
|
-
export type KpiVariant = 'default' | 'card' | '
|
|
7
|
-
export type SparklineType = 'area' | 'line'
|
|
6
|
+
export type KpiVariant = 'default' | 'card' | 'gauge' | 'accent';
|
|
7
|
+
export type SparklineType = 'area' | 'line';
|
|
8
8
|
export type KpiValueFormat = 'auto' | 'K' | 'M' | 'B' | 'T' | 'none';
|
|
9
9
|
export type KpiNumberSystem = 'indian' | 'international';
|
|
10
10
|
/** `chart` slice for `<nile-kpi-chart>.config` (discriminated by `type: 'kpi'`). */
|
|
@@ -265,7 +265,6 @@ export declare class NileKpiChart extends NileElement {
|
|
|
265
265
|
protected firstUpdated(): void;
|
|
266
266
|
protected updated(changedProperties: PropertyValues): void;
|
|
267
267
|
private syncSparklineChartSize;
|
|
268
|
-
private syncGaugeChartSize;
|
|
269
268
|
private setupResizeObserver;
|
|
270
269
|
private _onSparklineMouseMove;
|
|
271
270
|
private _onSparklineMouseLeave;
|
|
@@ -280,7 +279,6 @@ export declare class NileKpiChart extends NileElement {
|
|
|
280
279
|
private _onDescEnter;
|
|
281
280
|
private _onLabelEnter;
|
|
282
281
|
private _onGaugeEnter;
|
|
283
|
-
private _onTrendEnter;
|
|
284
282
|
private _onTipLeave;
|
|
285
283
|
private renderTrend;
|
|
286
284
|
render(): TemplateResult;
|