@adaptabletools/adaptable-react-aggrid 10.0.4-canary.3 → 11.0.0-canary.1

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/index.css CHANGED
@@ -801,25 +801,33 @@ template {
801
801
  --rdp-background-color-dark: #180270;
802
802
  /* Outline border for focused elements */
803
803
  --rdp-outline: 2px solid var(--rdp-accent-color);
804
+ /* Outline border for focused and selected elements */
805
+ --rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
804
806
  }
805
807
 
806
808
  .rdp {
807
- display: inline-block;
808
- font-size: 1rem;
809
809
  margin: 1em;
810
810
  }
811
811
 
812
812
  /* Hide elements for devices that are not screen readers */
813
813
 
814
814
  .rdp-vhidden {
815
- border: 0;
816
- clip: rect(1px, 1px, 1px, 1px);
817
- height: 1px;
818
- overflow: hidden;
815
+ box-sizing: border-box;
819
816
  padding: 0;
820
- position: absolute;
817
+ margin: 0;
818
+ background: transparent;
819
+ border: 0;
820
+ -moz-appearance: none;
821
+ -webkit-appearance: none;
822
+ appearance: none;
823
+ position: absolute !important;
821
824
  top: 0;
822
- width: 1px;
825
+ width: 1px !important;
826
+ height: 1px !important;
827
+ padding: 0 !important;
828
+ overflow: hidden !important;
829
+ clip: rect(1px, 1px, 1px, 1px) !important;
830
+ border: 0 !important
823
831
  }
824
832
 
825
833
  /* Buttons */
@@ -928,14 +936,14 @@ template {
928
936
  white-space: nowrap;
929
937
  }
930
938
 
931
- .rdp-multiple_months .rdp-caption_first .rdp-nav {
939
+ .rdp-multiple_months .rdp-caption_start .rdp-nav {
932
940
  position: absolute;
933
941
  top: 50%;
934
942
  left: 0;
935
943
  transform: translateY(-50%);
936
944
  }
937
945
 
938
- .rdp-multiple_months .rdp-caption_last .rdp-nav {
946
+ .rdp-multiple_months .rdp-caption_end .rdp-nav {
939
947
  position: absolute;
940
948
  top: 50%;
941
949
  right: 0;
@@ -989,8 +997,8 @@ template {
989
997
  color: unset;
990
998
  }
991
999
 
992
- .rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
993
- .rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
1000
+ .rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
1001
+ .rdp-dropdown:active:not([disabled])+.rdp-caption_label {
994
1002
  border: var(--rdp-outline);
995
1003
  border-radius: 6px;
996
1004
  background-color: var(--rdp-background-color);
@@ -1067,16 +1075,30 @@ template {
1067
1075
  background-color: var(--rdp-accent-color);
1068
1076
  }
1069
1077
 
1070
- .rdp-day_range_start {
1078
+ .rdp-day_selected:focus:not([disabled]) {
1079
+ border: var(--rdp-outline-selected);
1080
+ }
1081
+
1082
+ .rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
1071
1083
  border-top-right-radius: 0;
1072
1084
  border-bottom-right-radius: 0;
1073
1085
  }
1074
1086
 
1075
- .rdp-day_range_end {
1087
+ .rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
1088
+ border-top-left-radius: 0;
1089
+ border-bottom-left-radius: 0;
1090
+ }
1091
+
1092
+ .rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
1076
1093
  border-top-left-radius: 0;
1077
1094
  border-bottom-left-radius: 0;
1078
1095
  }
1079
1096
 
1097
+ .rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
1098
+ border-top-right-radius: 0;
1099
+ border-bottom-right-radius: 0;
1100
+ }
1101
+
1080
1102
  .rdp-day_range_end.rdp-day_range_start {
1081
1103
  border-radius: 100%;
1082
1104
  }
@@ -1085,12 +1107,54 @@ template {
1085
1107
  border-radius: 0;
1086
1108
  }
1087
1109
 
1110
+ :root {
1111
+ --toastify-color-light: #fff;
1112
+ --toastify-color-dark: #121212;
1113
+ --toastify-color-info: #3498db;
1114
+ --toastify-color-success: #07bc0c;
1115
+ --toastify-color-warning: #f1c40f;
1116
+ --toastify-color-error: #e74c3c;
1117
+ --toastify-color-transparent: rgba(255, 255, 255, 0.7);
1118
+ --toastify-icon-color-info: var(--toastify-color-info);
1119
+ --toastify-icon-color-success: var(--toastify-color-success);
1120
+ --toastify-icon-color-warning: var(--toastify-color-warning);
1121
+ --toastify-icon-color-error: var(--toastify-color-error);
1122
+ --toastify-toast-width: 320px;
1123
+ --toastify-toast-background: #fff;
1124
+ --toastify-toast-min-height: 64px;
1125
+ --toastify-toast-max-height: 800px;
1126
+ --toastify-font-family: sans-serif;
1127
+ --toastify-z-index: 9999;
1128
+ --toastify-text-color-light: #757575;
1129
+ --toastify-text-color-dark: #fff;
1130
+ --toastify-text-color-info: #fff;
1131
+ --toastify-text-color-success: #fff;
1132
+ --toastify-text-color-warning: #fff;
1133
+ --toastify-text-color-error: #fff;
1134
+ --toastify-spinner-color: #616161;
1135
+ --toastify-spinner-color-empty-area: #e0e0e0;
1136
+ --toastify-color-progress-light: linear-gradient(
1137
+ to right,
1138
+ #4cd964,
1139
+ #5ac8fa,
1140
+ #007aff,
1141
+ #34aadc,
1142
+ #5856d6,
1143
+ #ff2d55
1144
+ );
1145
+ --toastify-color-progress-dark: #bb86fc;
1146
+ --toastify-color-progress-info: var(--toastify-color-info);
1147
+ --toastify-color-progress-success: var(--toastify-color-success);
1148
+ --toastify-color-progress-warning: var(--toastify-color-warning);
1149
+ --toastify-color-progress-error: var(--toastify-color-error);
1150
+ }
1151
+
1088
1152
  .Toastify__toast-container {
1089
- z-index: 9999;
1090
- -webkit-transform: translate3d(0, 0, 9999px);
1153
+ z-index: var(--toastify-z-index);
1154
+ -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
1091
1155
  position: fixed;
1092
1156
  padding: 4px;
1093
- width: 320px;
1157
+ width: var(--toastify-toast-width);
1094
1158
  box-sizing: border-box;
1095
1159
  color: #fff;
1096
1160
  }
@@ -1150,7 +1214,7 @@ template {
1150
1214
 
1151
1215
  .Toastify__toast {
1152
1216
  position: relative;
1153
- min-height: 64px;
1217
+ min-height: var(--toastify-toast-min-height);
1154
1218
  box-sizing: border-box;
1155
1219
  margin-bottom: 1rem;
1156
1220
  padding: 8px;
@@ -1160,9 +1224,9 @@ template {
1160
1224
  display: flex;
1161
1225
  -ms-flex-pack: justify;
1162
1226
  justify-content: space-between;
1163
- max-height: 800px;
1227
+ max-height: var(--toastify-toast-max-height);
1164
1228
  overflow: hidden;
1165
- font-family: sans-serif;
1229
+ font-family: var(--toastify-font-family);
1166
1230
  cursor: pointer;
1167
1231
  direction: ltr;
1168
1232
  }
@@ -1171,37 +1235,30 @@ template {
1171
1235
  direction: rtl;
1172
1236
  }
1173
1237
 
1174
- .Toastify__toast--dark {
1175
- background: #121212;
1176
- color: #fff;
1177
- }
1178
-
1179
- .Toastify__toast--default {
1180
- background: #fff;
1181
- color: #aaa;
1182
- }
1183
-
1184
- .Toastify__toast--info {
1185
- background: #3498db;
1186
- }
1187
-
1188
- .Toastify__toast--success {
1189
- background: #07bc0c;
1190
- }
1191
-
1192
- .Toastify__toast--warning {
1193
- background: #f1c40f;
1194
- }
1195
-
1196
- .Toastify__toast--error {
1197
- background: #e74c3c;
1198
- }
1199
-
1200
1238
  .Toastify__toast-body {
1201
1239
  margin: auto 0;
1202
1240
  -ms-flex: 1 1 auto;
1203
1241
  flex: 1 1 auto;
1204
1242
  padding: 6px;
1243
+ display: -ms-flexbox;
1244
+ display: flex;
1245
+ -ms-flex-align: center;
1246
+ align-items: center;
1247
+ }
1248
+
1249
+ .Toastify__toast-body > div:last-child {
1250
+ -ms-flex: 1;
1251
+ flex: 1;
1252
+ }
1253
+
1254
+ .Toastify__toast-icon {
1255
+ -webkit-margin-end: 10px;
1256
+ margin-inline-end: 10px;
1257
+ width: 20px;
1258
+ -ms-flex-negative: 0;
1259
+ flex-shrink: 0;
1260
+ display: -ms-flexbox;
1261
+ display: flex;
1205
1262
  }
1206
1263
 
1207
1264
  .Toastify--animate {
@@ -1209,6 +1266,11 @@ template {
1209
1266
  animation-duration: 0.7s;
1210
1267
  }
1211
1268
 
1269
+ .Toastify--animate-icon {
1270
+ animation-fill-mode: both;
1271
+ animation-duration: 0.3s;
1272
+ }
1273
+
1212
1274
  @media only screen and (max-width : 480px) {
1213
1275
  .Toastify__toast {
1214
1276
  margin-bottom: 0;
@@ -1216,6 +1278,69 @@ template {
1216
1278
  }
1217
1279
  }
1218
1280
 
1281
+ .Toastify__toast-theme--dark {
1282
+ background: var(--toastify-color-dark);
1283
+ color: var(--toastify-text-color-dark);
1284
+ }
1285
+
1286
+ .Toastify__toast-theme--light {
1287
+ background: var(--toastify-color-light);
1288
+ color: var(--toastify-text-color-light);
1289
+ }
1290
+
1291
+ .Toastify__toast-theme--colored.Toastify__toast--default {
1292
+ background: var(--toastify-color-light);
1293
+ color: var(--toastify-text-color-light);
1294
+ }
1295
+
1296
+ .Toastify__toast-theme--colored.Toastify__toast--info {
1297
+ color: var(--toastify-text-color-info);
1298
+ background: var(--toastify-color-info);
1299
+ }
1300
+
1301
+ .Toastify__toast-theme--colored.Toastify__toast--success {
1302
+ color: var(--toastify-text-color-success);
1303
+ background: var(--toastify-color-success);
1304
+ }
1305
+
1306
+ .Toastify__toast-theme--colored.Toastify__toast--warning {
1307
+ color: var(--toastify-text-color-warning);
1308
+ background: var(--toastify-color-warning);
1309
+ }
1310
+
1311
+ .Toastify__toast-theme--colored.Toastify__toast--error {
1312
+ color: var(--toastify-text-color-error);
1313
+ background: var(--toastify-color-error);
1314
+ }
1315
+
1316
+ .Toastify__progress-bar-theme--light {
1317
+ background: var(--toastify-color-progress-light);
1318
+ }
1319
+
1320
+ .Toastify__progress-bar-theme--dark {
1321
+ background: var(--toastify-color-progress-dark);
1322
+ }
1323
+
1324
+ .Toastify__progress-bar--info {
1325
+ background: var(--toastify-color-progress-info);
1326
+ }
1327
+
1328
+ .Toastify__progress-bar--success {
1329
+ background: var(--toastify-color-progress-success);
1330
+ }
1331
+
1332
+ .Toastify__progress-bar--warning {
1333
+ background: var(--toastify-color-progress-warning);
1334
+ }
1335
+
1336
+ .Toastify__progress-bar--error {
1337
+ background: var(--toastify-color-progress-error);
1338
+ }
1339
+
1340
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
1341
+ background: var(--toastify-color-transparent);
1342
+ }
1343
+
1219
1344
  .Toastify__close-button {
1220
1345
  color: #fff;
1221
1346
  background: transparent;
@@ -1229,7 +1354,7 @@ template {
1229
1354
  align-self: flex-start;
1230
1355
  }
1231
1356
 
1232
- .Toastify__close-button--default {
1357
+ .Toastify__close-button--light {
1233
1358
  color: #000;
1234
1359
  opacity: 0.3;
1235
1360
  }
@@ -1259,9 +1384,8 @@ template {
1259
1384
  left: 0;
1260
1385
  width: 100%;
1261
1386
  height: 5px;
1262
- z-index: 9999;
1387
+ z-index: var(--toastify-z-index);
1263
1388
  opacity: 0.7;
1264
- background-color: rgba(255, 255, 255, 0.7);
1265
1389
  transform-origin: left;
1266
1390
  }
1267
1391
 
@@ -1279,12 +1403,15 @@ template {
1279
1403
  transform-origin: right;
1280
1404
  }
1281
1405
 
1282
- .Toastify__progress-bar--default {
1283
- background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
1284
- }
1285
-
1286
- .Toastify__progress-bar--dark {
1287
- background: #bb86fc;
1406
+ .Toastify__spinner {
1407
+ width: 20px;
1408
+ height: 20px;
1409
+ box-sizing: border-box;
1410
+ border: 2px solid;
1411
+ border-radius: 100%;
1412
+ border-color: var(--toastify-spinner-color-empty-area);
1413
+ border-right-color: var(--toastify-spinner-color);
1414
+ animation: Toastify__spin 0.65s linear infinite;
1288
1415
  }
1289
1416
 
1290
1417
  @keyframes Toastify__bounceInRight {
@@ -1648,6 +1775,15 @@ template {
1648
1775
  animation-name: Toastify__slideOutDown;
1649
1776
  }
1650
1777
 
1778
+ @keyframes Toastify__spin {
1779
+ from {
1780
+ transform: rotate(0deg);
1781
+ }
1782
+ to {
1783
+ transform: rotate(360deg);
1784
+ }
1785
+ }
1786
+
1651
1787
  :root {
1652
1788
  --ab-space-0: 0px;
1653
1789
  --ab-space-1: 4px;
@@ -1756,7 +1892,7 @@ template {
1756
1892
  :root {
1757
1893
  --ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
1758
1894
  --ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
1759
- --ab-cmp-dialog-close-button__color: var(--ab-color-text-on-primary);
1895
+ --ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
1760
1896
  --ab-cmp-dialog__border-radius: var(--ab__border-radius);
1761
1897
  --ab-cmp-dialog__min-height: 60vh; }
1762
1898
 
@@ -1857,7 +1993,7 @@ template {
1857
1993
 
1858
1994
  :root {
1859
1995
  --ab-cmp-panel_header__background: var(--ab-color-primary);
1860
- --ab-cmp-panel_header__font-size: var(--ab-font-size-2);
1996
+ --ab-cmp-panel_header__font-size: var(--ab-font-size-3);
1861
1997
  --ab-cmp-panel__font-size: var(--ab-font-size-3);
1862
1998
  --ab-cmp-panel__border-radius: var(--ab__border-radius);
1863
1999
  --ab-cmp-panel__padding: var(--ab-space-2);
@@ -1871,6 +2007,7 @@ template {
1871
2007
  --ab-cmp-panel_header--variant-primary__background: var(--ab-color-secondary);
1872
2008
  --ab-cmp-panel_header--variant-primary__color: var(--ab-color-text-on-secondary);
1873
2009
  --ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
2010
+ --ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
1874
2011
  --ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
1875
2012
  --ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight); }
1876
2013
 
@@ -2090,6 +2227,59 @@ template {
2090
2227
  :root {
2091
2228
  --ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
2092
2229
 
2230
+ :root {
2231
+ --ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
2232
+ --ab-cmp-adaptable-popup--settings__padding: 20px;
2233
+ --ab-cmp-adaptable-popup--settings__height: 90vh;
2234
+ --ab-cmp-adaptable-popup__height: 90vh;
2235
+ --ab-cmp-adaptable-popup__max-height: 1200px;
2236
+ --ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
2237
+ --ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
2238
+ --ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
2239
+ --ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
2240
+ --ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
2241
+ --ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid var(--ab-color-primarydark);
2242
+ --ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2) var(--ab-space-2);
2243
+ --ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
2244
+ --ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
2245
+ --ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
2246
+ --ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
2247
+ --ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(--ab-color-accentlight);
2248
+ --ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
2249
+ --ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
2250
+ --ab-cmp-adaptable-popup-topbar__height: 45px;
2251
+ --ab-cmp-adaptable-popup-topbar__color: var(--ab-color-text-on-secondary);
2252
+ --ab-cmp-adaptable-popup-topbar__font-weight: 500;
2253
+ --ab-cmp-adaptable-popup-topbar__padding: var(--ab-space-3);
2254
+ --ab-cmp-adaptable-popup-topbar-icon__margin-right: var(--ab-space-2);
2255
+ --ab-cmp-adaptable-popup-topbar-icon__color: var(--ab-color-accentlight);
2256
+ --ab-cmp-adaptable-popup-panel__padding: 0 var(--ab-space-2);
2257
+ --ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
2258
+ --ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
2259
+ --ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
2260
+ --ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
2261
+
2262
+ :root {
2263
+ --ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
2264
+ --ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
2265
+ --ab-cmp-adaptable-object-list-item__background-color: var(--ab-color-defaultbackground);
2266
+ --ab-cmp-adaptable-object-list-item__padding: var(--ab-space-3) var(--ab-space-3);
2267
+ --ab-cmp-adaptable-object-list-item__margin-bottom: var(--ab-space-3);
2268
+ --ab-cmp-adaptable-object-list-item-label__padding-top: var(--ab-space-3);
2269
+ --ab-cmp-adaptable-object-list-item-label__width: 130px;
2270
+ --ab-cmp-adaptable-object-list-item-tag__padding: 6px 12px; }
2271
+
2272
+ :root {
2273
+ --ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
2274
+ --ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
2275
+ --ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground); }
2276
+
2277
+ :root {
2278
+ --ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground); }
2279
+
2280
+ :root {
2281
+ --ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground); }
2282
+
2093
2283
  .ab-Radio-input:focus + svg rect {
2094
2284
  stroke: var(--ab-color-accent);
2095
2285
  stroke-width: 2; }
@@ -2205,7 +2395,6 @@ template {
2205
2395
  fill: var(--ab-color-text-on-primary);
2206
2396
  color: var(--ab-cmp-dialog__color);
2207
2397
  border-radius: var(--ab-cmp-dialog__border-radius);
2208
- min-height: var(--ab-cmp-dialog__min-height);
2209
2398
  display: flex;
2210
2399
  flex-flow: column; }
2211
2400
 
@@ -2213,13 +2402,10 @@ template {
2213
2402
  box-shadow: var(--ab-focus__box-shadow);
2214
2403
  outline: var(--ab-focus__outline); }
2215
2404
 
2216
- .ab-Dialog > * {
2217
- flex: 1; }
2218
-
2219
2405
  .ab-Dialog__close-button {
2220
2406
  position: absolute;
2221
- right: 0.7rem;
2222
- top: 0;
2407
+ right: 6px;
2408
+ top: 6px;
2223
2409
  font-size: var(--ab-font-size-3);
2224
2410
  font-weight: 700;
2225
2411
  line-height: 1;
@@ -2457,6 +2643,9 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2457
2643
  z-index: 1000;
2458
2644
  font-family: var(--ab__font-family); }
2459
2645
 
2646
+ .ab-Modal.ab-Modal--resizable-and-movable {
2647
+ position: relative; }
2648
+
2460
2649
  .ab-Modal-backdrop {
2461
2650
  background: var(--ab-cmp-modal-backdrop__background);
2462
2651
  z-index: 900;
@@ -2542,6 +2731,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2542
2731
  display: flex;
2543
2732
  flex-flow: column;
2544
2733
  max-height: var(--ab-cmp-panel__max-height);
2734
+ overflow: auto;
2545
2735
  font-size: var(--ab-cmp-panel__font-size); }
2546
2736
 
2547
2737
  .ab-Panel .glyphicon {
@@ -2819,9 +3009,6 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2819
3009
  .ab-FileDroppable, .ab-FileDroppable *, .ab-FileDroppable *:before, .ab-FileDroppable *:after {
2820
3010
  box-sizing: border-box; }
2821
3011
 
2822
- .ab-ChartContainer canvas {
2823
- left: 0; }
2824
-
2825
3012
  .ab-WizardPanel > .ab-Panel__body {
2826
3013
  display: flex;
2827
3014
  flex-flow: column; }
@@ -3025,57 +3212,70 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
3025
3212
 
3026
3213
  :root {
3027
3214
  --ab-cmp-toggle-button__background: #ccc;
3028
- --ab-cmp-toggle-button--active__background: var(--ab-color-success); }
3215
+ --ab-cmp-toggle-button--active__background: var(--ab-color-success);
3216
+ --ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
3217
+ --ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
3218
+ --ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight); }
3029
3219
 
3030
3220
  .ab-ToggleButton {
3031
3221
  position: relative;
3032
3222
  display: inline-block;
3033
3223
  min-width: 40px;
3034
- width: 40px;
3035
- height: 25px; }
3224
+ width: 87px;
3225
+ height: 32px; }
3036
3226
 
3037
3227
  .ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
3038
3228
  cursor: pointer;
3039
3229
  opacity: 0.85; }
3040
3230
 
3041
3231
  .ab-ToggleButton__input {
3042
- opacity: 0;
3043
- width: 0;
3044
- height: 0; }
3232
+ opacity: 0;
3233
+ width: 0;
3234
+ height: 0; }
3045
3235
 
3046
3236
  .ab-ToggleButton__slider {
3047
- position: absolute;
3048
- top: 0;
3049
- left: 0;
3050
- right: 0;
3051
- bottom: 0;
3052
- background-color: var(--ab-cmp-toggle-button__background);
3053
- transition: 0.1s;
3054
- border-radius: var(--ab__border-radius); }
3237
+ position: absolute;
3238
+ top: 0;
3239
+ left: 0;
3240
+ right: 0;
3241
+ bottom: 0;
3242
+ background-color: var(--ab-cmp-toggle-button__background);
3243
+ transition: 0.1s;
3244
+ border-radius: var(--ab__border-radius); }
3055
3245
 
3056
3246
  .ab-ToggleButton__slider:before {
3057
- position: absolute;
3058
- content: "";
3059
- width: 19px;
3060
- height: 19px;
3061
- left: 3px;
3062
- top: 3px;
3063
- border-radius: var(--ab__border-radius);
3064
- background-color: #fff;
3065
- -webkit-transition: 0.4s;
3066
- transition: 0.2s; }
3247
+ position: absolute;
3248
+ content: "";
3249
+ width: 24px;
3250
+ height: 24px;
3251
+ left: 4px;
3252
+ top: 4px;
3253
+ border-radius: var(--ab__border-radius);
3254
+ background-color: #fff;
3255
+ -webkit-transition: 0.4s;
3256
+ transition: 0.2s; }
3067
3257
 
3068
3258
  .ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
3069
- background-color: var(--ab-cmp-toggle-button--active__background); }
3259
+ background-color: var(--ab-cmp-toggle-button--active__background); }
3070
3260
 
3071
3261
  .ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
3072
- transform: translateX(15px); }
3262
+ transform: translateX(54px); }
3073
3263
 
3074
3264
  .ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
3075
- box-shadow: var(--ab-focus__box-shadow); }
3265
+ box-shadow: var(--ab-focus__box-shadow); }
3076
3266
 
3077
3267
  .ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
3078
- opacity: 0.5; }
3268
+ opacity: 0.5; }
3269
+
3270
+ .ab-ToggleButton .ab-ToggleButton__text {
3271
+ font-size: var(--ab-cmp-toggle-button__font-size);
3272
+ padding-right: var(--ab-space-2);
3273
+ color: var(--ab-cmp-toggle-button__color);
3274
+ font-weight: 600; }
3275
+
3276
+ .ab-ToggleButton--checked .ab-ToggleButton__text {
3277
+ padding-left: var(--ab-space-2);
3278
+ color: var(--ab-cmp-toggle-button--checked__color); }
3079
3279
 
3080
3280
  .ab-Loader {
3081
3281
  font-size: var(--ab-cmp-loader__font-size);
@@ -3134,6 +3334,25 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
3134
3334
  font-style: var(--ab-cmp-progress-indicator__font-style);
3135
3335
  font-family: var(--ab-cmp-progress-indicator__font-family); }
3136
3336
 
3337
+ :root {
3338
+ --ab-cmp-Tag__font-size: var(--ab-font-size-3); }
3339
+
3340
+ .ab-Tag {
3341
+ display: inline-flex;
3342
+ font-size: var(--ab-cmp-Tag__font-size); }
3343
+
3344
+ .ab-AdaptableOptions {
3345
+ background: var(--ab-cmp-adaptable-options__background-color); }
3346
+
3347
+ .ab-GridOptions {
3348
+ background: var(--ab-cmp-grid-options__background-color); }
3349
+
3350
+ .ab-GridSummary {
3351
+ background: var(--ab-cmp-grid-summary__background-color); }
3352
+
3353
+ .ab-SystemStatus-Popup-List {
3354
+ background: var(--ab-cmp-system-status-list__background-color); }
3355
+
3137
3356
  .ab-ObjectCollection__list > * {
3138
3357
  background: var(--ab-cmp-listgroupitem__background);
3139
3358
  color: var(--ab-cmp-listgroupitem__color); }
@@ -3254,6 +3473,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
3254
3473
  .ab-Dashboard__application-icon {
3255
3474
  margin-right: var(--ab-space-2); }
3256
3475
 
3476
+ .ab-Dashboard-Popup__Module-Selector {
3477
+ background: var(--ab-cmp-dashboard-module-selector-background); }
3478
+
3257
3479
  .ab-ToolPanel {
3258
3480
  flex: 1 1 0;
3259
3481
  min-width: 0;
@@ -3283,6 +3505,124 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
3283
3505
  .ab-CustomSortWizard__SortOrder .ab-Loader__text {
3284
3506
  font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
3285
3507
 
3508
+ .ab-Adaptable-Popup {
3509
+ background: var(--ab-cmp-adaptable-popup__background);
3510
+ max-height: var(--ab-cmp-adaptable-popup__max-height); }
3511
+
3512
+ .ab-Adaptable-Popup__Navigation {
3513
+ padding-top: 10px;
3514
+ overflow: auto;
3515
+ border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
3516
+ font-family: var(--ab__font-family); }
3517
+
3518
+ .ab-Adaptable-Popup__Navigation__List {
3519
+ list-style: none;
3520
+ padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
3521
+ margin: 0;
3522
+ font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size); }
3523
+
3524
+ .ab-Adaptable-Popup__Navigation__List__Item {
3525
+ padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
3526
+ margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom); }
3527
+
3528
+ .ab-Adaptable-Popup__Navigation__List__Item__Separator {
3529
+ border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
3530
+ margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin); }
3531
+
3532
+ .ab-Adaptable-Popup__Navigation__List__Item__Button {
3533
+ background: none;
3534
+ border: none;
3535
+ width: 100%;
3536
+ text-align: left;
3537
+ cursor: pointer;
3538
+ padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
3539
+ border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
3540
+ color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color); }
3541
+
3542
+ .ab-Adaptable-Popup__Navigation__List__Item__Icon {
3543
+ margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
3544
+
3545
+ .ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
3546
+ background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
3547
+ color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color); }
3548
+
3549
+ .ab-Adaptable-Popup__TopBar {
3550
+ display: flex;
3551
+ align-items: center;
3552
+ background: var(--ab-cmp-adaptable-popup-topbar__background);
3553
+ height: var(--ab-cmp-adaptable-popup-topbar__height);
3554
+ color: var(--ab-cmp-adaptable-popup-topbar__color);
3555
+ font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
3556
+ padding: var(--ab-cmp-adaptable-popup-topbar__padding);
3557
+ box-sizing: border-box; }
3558
+
3559
+ .ab-Adaptable-Popup__TopBar__Icon {
3560
+ margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
3561
+
3562
+ .ab-Adaptable-Popup__TopBar__Close .ab-Icon {
3563
+ color: var(--ab-cmp-adaptable-popup-topbar-icon__color); }
3564
+
3565
+ .ab-Adaptable-Popup--settings-popup {
3566
+ height: var(--ab-cmp-adaptable-popup--settings__height); }
3567
+
3568
+ .ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
3569
+ top: 9px; }
3570
+
3571
+ .ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
3572
+ padding: var(--ab-cmp-adaptable-popup--settings__padding);
3573
+ min-width: 0; }
3574
+
3575
+ .ab-Adaptable-Popup__Panel__Header {
3576
+ display: flex;
3577
+ padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
3578
+ margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
3579
+ margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top); }
3580
+
3581
+ .ab-Adaptable-Popup__Panel__Header__Title {
3582
+ font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size); }
3583
+
3584
+ .ab-Adaptable-Popup__Panel__Body {
3585
+ padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
3586
+ flex: 1 1 0;
3587
+ min-height: 0;
3588
+ overflow: auto; }
3589
+
3590
+ .ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
3591
+ cursor: move; }
3592
+
3593
+ .ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
3594
+ cursor: move; }
3595
+
3596
+ .ab-Adaptable-Object-List {
3597
+ list-style: none;
3598
+ padding: 0; }
3599
+
3600
+ .ab-Adaptable-Object-List .ab-Tag {
3601
+ margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
3602
+ margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
3603
+ padding: var(--ab-cmp-adaptable-object-list-item-tag__padding); }
3604
+
3605
+ .ab-Adaptable-Object-List__Item {
3606
+ background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
3607
+ padding: var(--ab-cmp-adaptable-object-list-item__padding);
3608
+ margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
3609
+
3610
+ .ab-Adaptable-Object-List__Item__edit-property {
3611
+ visibility: hidden; }
3612
+
3613
+ .ab-Adaptable-Object-List__Item__buttons {
3614
+ padding-left: var(--ab-space-2);
3615
+ min-width: 80px;
3616
+ text-align: right;
3617
+ margin-left: var(--ab-space-3); }
3618
+
3619
+ .ab-Adaptable-Object-List__Item__label {
3620
+ padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
3621
+ width: var(--ab-cmp-adaptable-object-list-item-label__width); }
3622
+
3623
+ .ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
3624
+ visibility: visible; }
3625
+
3286
3626
  .ab-alert--error {
3287
3627
  background: var(--ab-color-error); }
3288
3628
 
@@ -3320,7 +3660,7 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
3320
3660
  .ab_div-colour-render-text {
3321
3661
  position: absolute;
3322
3662
  font-weight: normal;
3323
- font-size: 12p;
3663
+ font-size: 12px;
3324
3664
  z-index: 100; }
3325
3665
 
3326
3666
  .ab_div-colour-render-div {
@@ -3349,26 +3689,30 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
3349
3689
  border-style: none;
3350
3690
  --ab-toast-cmp__shadow-color: var(--ab-color-accent);
3351
3691
  box-shadow: 0 0 7px 2px var(--ab-toast-cmp__shadow-color);
3352
- background: var(--ab-toast-cmp__shadow-color); }
3692
+ background: var(--ab-toast-cmp__shadow-color);
3693
+ --toastify-text-color-info: var(--ab-color-text-on-primary);
3694
+ --toastify-text-color-success: var(--ab-color-text-on-primary);
3695
+ --toastify-text-color-warning: var(--ab-color-text-on-primary);
3696
+ --toastify-text-color-error: var(--ab-color-text-on-primary);
3697
+ --toastify-color-info: var(--ab-color-info);
3698
+ --toastify-color-success: var(--ab-color-success);
3699
+ --toastify-color-warning: var(--ab-color-warn);
3700
+ --toastify-color-error: var(--ab-color-error); }
3353
3701
 
3354
3702
  .Toastify__toast-body {
3355
3703
  padding: 0; }
3356
3704
 
3357
3705
  .Toastify__toast--info {
3358
- --ab-toast-cmp__shadow-color: var(--ab-color-info);
3359
- color: var(--ab-color-text-on-primary); }
3706
+ --ab-toast-cmp__shadow-color: var(--ab-color-info); }
3360
3707
 
3361
3708
  .Toastify__toast--success {
3362
- --ab-toast-cmp__shadow-color: var(--ab-color-success);
3363
- color: var(--ab-color-text-on-primary); }
3709
+ --ab-toast-cmp__shadow-color: var(--ab-color-success); }
3364
3710
 
3365
3711
  .Toastify__toast--warning {
3366
- --ab-toast-cmp__shadow-color: var(--ab-color-warn);
3367
- color: var(--ab-color-text-on-primary); }
3712
+ --ab-toast-cmp__shadow-color: var(--ab-color-warn); }
3368
3713
 
3369
3714
  .Toastify__toast--error {
3370
- --ab-toast-cmp__shadow-color: var(--ab-color-error);
3371
- color: var(--ab-color-text-on-primary); }
3715
+ --ab-toast-cmp__shadow-color: var(--ab-color-error); }
3372
3716
 
3373
3717
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
3374
3718
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,