@datama/light 0.2.0 → 0.4.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/dist/compare.css +88 -10
- package/dist/compare.umd.js +1 -1
- package/dist/explore.css +9311 -0
- package/dist/explore.umd.js +3 -0
- package/package.json +36 -208
- package/README.md +0 -79
package/dist/compare.css
CHANGED
|
@@ -936,6 +936,11 @@ div[data-app="true"] .datama-italic {
|
|
|
936
936
|
.h-auto {
|
|
937
937
|
height: auto !important;
|
|
938
938
|
}
|
|
939
|
+
|
|
940
|
+
.opacity-0 {
|
|
941
|
+
opacity: 0;
|
|
942
|
+
}
|
|
943
|
+
|
|
939
944
|
/*
|
|
940
945
|
* DATAMA SAS
|
|
941
946
|
* --------------
|
|
@@ -4339,6 +4344,14 @@ main.datama-light-modules .datama-light-introduction-section .datama-introductio
|
|
|
4339
4344
|
opacity: 1;
|
|
4340
4345
|
gap: 10px;
|
|
4341
4346
|
}
|
|
4347
|
+
.datama-light-notifications > #container-center-container-center-footer-current-version-notification.datama-notification-show {
|
|
4348
|
+
display: flex;
|
|
4349
|
+
margin-bottom: 20px;
|
|
4350
|
+
flex-direction: column;
|
|
4351
|
+
}
|
|
4352
|
+
.datama-light-notifications > #container-center-container-center-footer-current-version-notification span.datama-icon.arrow-up-right svg path {
|
|
4353
|
+
fill: var(--color-white) !important;
|
|
4354
|
+
}
|
|
4342
4355
|
.datama-light-notifications > .datama-notification.datama-notification-show::after {
|
|
4343
4356
|
position: absolute;
|
|
4344
4357
|
content: '✖';
|
|
@@ -5985,19 +5998,71 @@ div[data-app="true"] .reactive-checkbox {
|
|
|
5985
5998
|
|
|
5986
5999
|
.plotter-legends {
|
|
5987
6000
|
padding: 12px;
|
|
5988
|
-
display: flex;
|
|
5989
|
-
flex-direction: column;
|
|
5990
6001
|
min-width: 80px; /* Minimum width to prevent text crushing */
|
|
5991
6002
|
order: 1;
|
|
5992
6003
|
}
|
|
5993
|
-
.plotter-legends
|
|
6004
|
+
.plotter-legends-layout {
|
|
6005
|
+
display: flex;
|
|
6006
|
+
align-items: flex-start;
|
|
6007
|
+
justify-content: space-between;
|
|
6008
|
+
gap: 8px;
|
|
6009
|
+
}
|
|
6010
|
+
.plotter-legends-actions {
|
|
6011
|
+
display: flex;
|
|
6012
|
+
align-items: flex-start;
|
|
6013
|
+
justify-content: flex-end;
|
|
6014
|
+
flex-shrink: 0;
|
|
6015
|
+
opacity: 0;
|
|
6016
|
+
}
|
|
6017
|
+
.plotter-legends-layout:hover .plotter-legends-actions {
|
|
6018
|
+
opacity: 1;
|
|
6019
|
+
}
|
|
6020
|
+
.plotter-legends-list {
|
|
6021
|
+
min-width: 0;
|
|
6022
|
+
flex: 1;
|
|
6023
|
+
}
|
|
6024
|
+
.plotter-legend-sort-control {
|
|
6025
|
+
margin: 0;
|
|
6026
|
+
padding: 2px;
|
|
6027
|
+
border: none;
|
|
6028
|
+
border-radius: 6px;
|
|
6029
|
+
background: rgba(var(--color-dark-rgb), 0.05);
|
|
6030
|
+
color: rgba(var(--color-dark-rgb), 0.9);
|
|
6031
|
+
width: 24px;
|
|
6032
|
+
height: 24px;
|
|
6033
|
+
cursor: pointer;
|
|
6034
|
+
transition: background-color .15s ease-in, border-color .15s ease-in, color .15s ease-in;
|
|
6035
|
+
display: inline-flex;
|
|
6036
|
+
align-items: center;
|
|
6037
|
+
justify-content: center;
|
|
6038
|
+
}
|
|
6039
|
+
.plotter-legend-sort-control:hover {
|
|
6040
|
+
background-color: rgba(var(--color-dark-rgb), 0.04);
|
|
6041
|
+
}
|
|
6042
|
+
.plotter-legend-sort-control {
|
|
6043
|
+
background-color: rgba(var(--datama-primary-rgb), 0.1);
|
|
6044
|
+
color: var(--datama-primary);
|
|
6045
|
+
}
|
|
6046
|
+
.plotter-legend-sort-control:hover {
|
|
6047
|
+
background-color: rgba(var(--datama-primary-rgb), 0.15);
|
|
6048
|
+
}
|
|
6049
|
+
.plotter-legend-sort-control > svg,
|
|
6050
|
+
.plotter-legend-sort-control > svg path
|
|
6051
|
+
{
|
|
6052
|
+
display: block;
|
|
6053
|
+
width: 16px;
|
|
6054
|
+
height: 16px;
|
|
6055
|
+
color: var(--datama-primary);
|
|
6056
|
+
fill: var(--datama-primary);
|
|
6057
|
+
}
|
|
6058
|
+
.plotter-legends .plotter-legend {
|
|
5994
6059
|
margin-bottom: 6px;
|
|
5995
6060
|
line-height: 22px;
|
|
5996
6061
|
display: flex;
|
|
5997
6062
|
align-items: center;
|
|
5998
6063
|
min-height: 22px;
|
|
5999
6064
|
}
|
|
6000
|
-
.plotter-legends
|
|
6065
|
+
.plotter-legends .plotter-legend > svg {
|
|
6001
6066
|
min-width: 20px;
|
|
6002
6067
|
width: 20px;
|
|
6003
6068
|
height: 20px;
|
|
@@ -6006,7 +6071,7 @@ div[data-app="true"] .reactive-checkbox {
|
|
|
6006
6071
|
margin-right: 8px;
|
|
6007
6072
|
flex-shrink: 0; /* Prevents icon size reduction */
|
|
6008
6073
|
}
|
|
6009
|
-
.plotter-legends
|
|
6074
|
+
.plotter-legends .plotter-legend > span {
|
|
6010
6075
|
display: inline-block;
|
|
6011
6076
|
font-size: 14px;
|
|
6012
6077
|
max-height: 44px;
|
|
@@ -6031,6 +6096,19 @@ div[data-app="true"] .reactive-checkbox {
|
|
|
6031
6096
|
opacity: 1;
|
|
6032
6097
|
}
|
|
6033
6098
|
|
|
6099
|
+
.plotter-axis-sort-icon {
|
|
6100
|
+
opacity: 0;
|
|
6101
|
+
pointer-events: none;
|
|
6102
|
+
}
|
|
6103
|
+
|
|
6104
|
+
.plotter-axis-sort-icon.is-active-sort {
|
|
6105
|
+
opacity: 1;
|
|
6106
|
+
}
|
|
6107
|
+
|
|
6108
|
+
.plotter-axis-header:hover .plotter-axis-sort-icon {
|
|
6109
|
+
opacity: 1;
|
|
6110
|
+
}
|
|
6111
|
+
|
|
6034
6112
|
.legend-disabled {
|
|
6035
6113
|
opacity: 0.5 !important;
|
|
6036
6114
|
}
|
|
@@ -6042,7 +6120,7 @@ div[data-app="true"] .reactive-checkbox {
|
|
|
6042
6120
|
padding: 10px;
|
|
6043
6121
|
min-width: 70px;
|
|
6044
6122
|
}
|
|
6045
|
-
.plotter-legends
|
|
6123
|
+
.plotter-legends .plotter-legend > span {
|
|
6046
6124
|
font-size: 13px;
|
|
6047
6125
|
max-height: 40px;
|
|
6048
6126
|
}
|
|
@@ -6056,11 +6134,11 @@ div[data-app="true"] .reactive-checkbox {
|
|
|
6056
6134
|
padding: 8px;
|
|
6057
6135
|
min-width: 60px;
|
|
6058
6136
|
}
|
|
6059
|
-
.plotter-legends
|
|
6137
|
+
.plotter-legends .plotter-legend > span {
|
|
6060
6138
|
font-size: 12px;
|
|
6061
6139
|
max-height: 36px;
|
|
6062
6140
|
}
|
|
6063
|
-
.plotter-legends
|
|
6141
|
+
.plotter-legends .plotter-legend > svg {
|
|
6064
6142
|
width: 18px;
|
|
6065
6143
|
height: 18px;
|
|
6066
6144
|
margin-right: 6px;
|
|
@@ -6072,13 +6150,13 @@ div[data-app="true"] .reactive-checkbox {
|
|
|
6072
6150
|
padding: 6px;
|
|
6073
6151
|
min-width: 50px;
|
|
6074
6152
|
}
|
|
6075
|
-
.plotter-legends
|
|
6153
|
+
.plotter-legends .plotter-legend > span {
|
|
6076
6154
|
font-size: 11px;
|
|
6077
6155
|
max-height: 32px;
|
|
6078
6156
|
-webkit-line-clamp: 1; /* Single line on very small screens */
|
|
6079
6157
|
line-clamp: 1;
|
|
6080
6158
|
}
|
|
6081
|
-
.plotter-legends
|
|
6159
|
+
.plotter-legends .plotter-legend > svg {
|
|
6082
6160
|
width: 16px;
|
|
6083
6161
|
height: 16px;
|
|
6084
6162
|
margin-right: 4px;
|