@twab/visualization 0.9.7 → 0.9.9
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/asset-54be6431 +248 -0
- package/dist/visualization.js +2639 -0
- package/package.json +3 -3
- package/dist/assets/asset-125afa63 +0 -1
- package/dist/visualization.umd.js +0 -2464
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
.visualization-row {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
flex: 1 1 auto;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.visualization-col {
|
|
8
|
+
flex-basis: 0;
|
|
9
|
+
flex-grow: 1;
|
|
10
|
+
max-width: 100%;
|
|
11
|
+
padding: 12px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.visualization-divider {
|
|
15
|
+
display: block;
|
|
16
|
+
flex: 1 1 100%;
|
|
17
|
+
height: 0px;
|
|
18
|
+
max-height: 0px;
|
|
19
|
+
opacity: 1;
|
|
20
|
+
transition: inherit;
|
|
21
|
+
border-style: solid;
|
|
22
|
+
border-width: thin 0 0 0;
|
|
23
|
+
border-color: rgba(0, 0, 0, 0.12);
|
|
24
|
+
margin: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.visualization-divider.vertical {
|
|
28
|
+
align-self: stretch;
|
|
29
|
+
border-width: 0 thin 0 0;
|
|
30
|
+
display: inline-flex;
|
|
31
|
+
height: inherit;
|
|
32
|
+
margin-left: -1px;
|
|
33
|
+
max-height: 100%;
|
|
34
|
+
max-width: 0px;
|
|
35
|
+
vertical-align: text-bottom;
|
|
36
|
+
width: 0px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.visualization-card {
|
|
40
|
+
flex-basis: 0;
|
|
41
|
+
flex-grow: 1;
|
|
42
|
+
max-width: 100%;
|
|
43
|
+
padding: 12px;
|
|
44
|
+
width: 100%;
|
|
45
|
+
transition-property: box-shadow, opacity, -webkit-box-shadow;
|
|
46
|
+
overflow-wrap: break-word;
|
|
47
|
+
/*box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
48
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);*/
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.visualization-justify-center {
|
|
52
|
+
justify-content: center;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.visualization-align-center {
|
|
56
|
+
align-items: center;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#visualization-container {
|
|
60
|
+
max-width: 100% !important;
|
|
61
|
+
margin: 0 auto !important;
|
|
62
|
+
height: 100%;
|
|
63
|
+
border-bottom: none;
|
|
64
|
+
}
|
|
65
|
+
#visualization-container > .card {
|
|
66
|
+
border-radius: 0 !important;
|
|
67
|
+
font-size: 12px;
|
|
68
|
+
width: 100%;
|
|
69
|
+
box-shadow: none;
|
|
70
|
+
height: 100%;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#command-bar,
|
|
74
|
+
#info-bar {
|
|
75
|
+
background-color: #f5f5f5;
|
|
76
|
+
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
77
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
78
|
+
}
|
|
79
|
+
#command-bar button {
|
|
80
|
+
width: 42px;
|
|
81
|
+
height: 36px;
|
|
82
|
+
border: none;
|
|
83
|
+
background: none;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
#command-bar button:hover {
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
background: rgba(0, 0, 0, 0.12);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
#command-bar svg {
|
|
92
|
+
font-size: 16px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
#command-bar {
|
|
96
|
+
padding: 0 !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
#info-bar {
|
|
100
|
+
padding: 4px;
|
|
101
|
+
font-size: 14px;
|
|
102
|
+
position: relative;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.settings-container {
|
|
106
|
+
position: absolute;
|
|
107
|
+
right: 14px;
|
|
108
|
+
top: 50%;
|
|
109
|
+
transform: translateY(-50%);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.settings-container > * {
|
|
113
|
+
margin: 0 2px;
|
|
114
|
+
cursor: pointer;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
#info-bar svg {
|
|
118
|
+
font-size: 16px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
#info-bar .divider {
|
|
122
|
+
margin: 0 8px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
svg:focus {
|
|
126
|
+
border: none;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.visualization-card {
|
|
130
|
+
border-left: 8px solid #eee;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.active-tab {
|
|
134
|
+
border-left: 8px solid var(--visualization-primary) !important;
|
|
135
|
+
border-image-slice: 1;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
[id^='frame-'] {
|
|
139
|
+
padding: 1px;
|
|
140
|
+
display: flex;
|
|
141
|
+
flex-flow: column;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.tooltip {
|
|
145
|
+
display: block !important;
|
|
146
|
+
z-index: 10000;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.tooltip .tooltip-inner {
|
|
150
|
+
background: var(--visualization-primary);
|
|
151
|
+
color: white;
|
|
152
|
+
border-radius: 16px;
|
|
153
|
+
padding: 5px 10px 4px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.tooltip .tooltip-arrow {
|
|
157
|
+
width: 0;
|
|
158
|
+
height: 0;
|
|
159
|
+
border-style: solid;
|
|
160
|
+
position: absolute;
|
|
161
|
+
margin: 5px;
|
|
162
|
+
border-color: var(--visualization-primary);
|
|
163
|
+
z-index: 1;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.tooltip[x-placement^='top'] {
|
|
167
|
+
margin-bottom: 5px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.tooltip[x-placement^='top'] .tooltip-arrow {
|
|
171
|
+
border-width: 5px 5px 0 5px;
|
|
172
|
+
border-left-color: transparent !important;
|
|
173
|
+
border-right-color: transparent !important;
|
|
174
|
+
border-bottom-color: transparent !important;
|
|
175
|
+
bottom: -5px;
|
|
176
|
+
left: calc(50% - 5px);
|
|
177
|
+
margin-top: 0;
|
|
178
|
+
margin-bottom: 0;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.tooltip[x-placement^='bottom'] {
|
|
182
|
+
margin-top: 5px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.tooltip[x-placement^='bottom'] .tooltip-arrow {
|
|
186
|
+
border-width: 0 5px 5px 5px;
|
|
187
|
+
border-left-color: transparent !important;
|
|
188
|
+
border-right-color: transparent !important;
|
|
189
|
+
border-top-color: transparent !important;
|
|
190
|
+
top: -5px;
|
|
191
|
+
left: calc(50% - 5px);
|
|
192
|
+
margin-top: 0;
|
|
193
|
+
margin-bottom: 0;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.tooltip[x-placement^='right'] {
|
|
197
|
+
margin-left: 5px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.tooltip[x-placement^='right'] .tooltip-arrow {
|
|
201
|
+
border-width: 5px 5px 5px 0;
|
|
202
|
+
border-left-color: transparent !important;
|
|
203
|
+
border-top-color: transparent !important;
|
|
204
|
+
border-bottom-color: transparent !important;
|
|
205
|
+
left: -5px;
|
|
206
|
+
top: calc(50% - 5px);
|
|
207
|
+
margin-left: 0;
|
|
208
|
+
margin-right: 0;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.tooltip[x-placement^='left'] {
|
|
212
|
+
margin-right: 5px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.tooltip[x-placement^='left'] .tooltip-arrow {
|
|
216
|
+
border-width: 5px 0 5px 5px;
|
|
217
|
+
border-top-color: transparent !important;
|
|
218
|
+
border-right-color: transparent !important;
|
|
219
|
+
border-bottom-color: transparent !important;
|
|
220
|
+
right: -5px;
|
|
221
|
+
top: calc(50% - 5px);
|
|
222
|
+
margin-left: 0;
|
|
223
|
+
margin-right: 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.tooltip.popover .popover-inner {
|
|
227
|
+
background: #f9f9f9;
|
|
228
|
+
color: black;
|
|
229
|
+
padding: 24px;
|
|
230
|
+
border-radius: 5px;
|
|
231
|
+
box-shadow: 0 5px 30px rgba(black, 0.1);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.tooltip.popover .popover-arrow {
|
|
235
|
+
border-color: #f9f9f9;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.tooltip[aria-hidden='true'] {
|
|
239
|
+
visibility: hidden;
|
|
240
|
+
opacity: 0;
|
|
241
|
+
transition: opacity 0.15s, visibility 0.15s;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.tooltip[aria-hidden='false'] {
|
|
245
|
+
visibility: visible;
|
|
246
|
+
opacity: 1;
|
|
247
|
+
transition: opacity 0.15s;
|
|
248
|
+
}
|