logitude-dashboard-library 1.4.47 → 1.4.49
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/assets/images/red-warning.svg +18 -0
- package/dist/assets/styles/dl-dashboard.scss +15 -2
- package/dist/index.js +282 -55
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +283 -56
- package/dist/index.modern.js.map +1 -1
- package/dist/red-warning~UVfiDPMR.svg +18 -0
- package/dist/red-warning~bbFYcIcE.svg +18 -0
- package/dist/red-warning~bferuATT.svg +18 -0
- package/dist/red-warning~zsxGhaaS.svg +18 -0
- package/package.json +2 -3
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="25" height="25" viewBox="0 0 150.000000 134.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
|
|
8
|
+
<g transform="translate(0.000000,134.000000) scale(0.100000,-0.100000)"
|
|
9
|
+
fill="#ff0000" stroke="none">
|
|
10
|
+
<path d="M705 1329 c-17 -4 -42 -21 -57 -36 -41 -44 -638 -1087 -644 -1124 -8
|
|
11
|
+
-53 31 -119 86 -146 l44 -23 616 0 616 0 44 23 c83 42 110 118 70 196 -59 117
|
|
12
|
+
-605 1050 -628 1074 -14 15 -42 32 -61 37 -41 11 -45 11 -86 -1z m116 -378
|
|
13
|
+
c36 -36 38 -86 10 -199 -11 -43 -27 -115 -36 -162 -26 -138 -23 -132 -48 -128
|
|
14
|
+
-18 2 -23 12 -30 53 -4 28 -21 113 -39 190 -40 182 -40 210 1 247 44 40 101
|
|
15
|
+
39 142 -1z m-21 -568 c39 -27 49 -45 50 -86 0 -88 -108 -131 -171 -68 -82 82
|
|
16
|
+
26 220 121 154z"/>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -368,21 +368,29 @@ $dark-grey: #717585;
|
|
|
368
368
|
position: relative;
|
|
369
369
|
flex-direction: column;
|
|
370
370
|
align-items: center;
|
|
371
|
+
height: 26%;
|
|
372
|
+
max-height: 26%;
|
|
373
|
+
min-height: 25px;
|
|
371
374
|
}
|
|
372
375
|
|
|
373
376
|
.dl-tooltip .dl-tooltiptext {
|
|
374
377
|
visibility: hidden;
|
|
375
378
|
background-color: #eaeaea;
|
|
379
|
+
border: 1px solid #ce7777;
|
|
376
380
|
color: #c40505;
|
|
381
|
+
font-size: 13px;
|
|
377
382
|
text-align: center;
|
|
378
383
|
border-radius: 6px;
|
|
379
384
|
padding: 5px 20px;
|
|
380
385
|
margin: 4px 0;
|
|
386
|
+
width: -webkit-max-content;
|
|
387
|
+
width: -moz-max-content;
|
|
381
388
|
width: max-content;
|
|
382
389
|
z-index: 1;
|
|
383
|
-
max-width:
|
|
390
|
+
max-width: 290px;
|
|
384
391
|
white-space: pre-wrap;
|
|
385
|
-
|
|
392
|
+
position: absolute;
|
|
393
|
+
top: 100%;
|
|
386
394
|
}
|
|
387
395
|
|
|
388
396
|
.dl-tooltiptext-permission {
|
|
@@ -646,3 +654,8 @@ $dark-grey: #717585;
|
|
|
646
654
|
margin-left: 1px;
|
|
647
655
|
}
|
|
648
656
|
|
|
657
|
+
.red-warning-icon{
|
|
658
|
+
width: 100%;
|
|
659
|
+
height: 100%;
|
|
660
|
+
min-height: 25px;
|
|
661
|
+
}
|