canvasxpress-cli 39.2.5 → 39.3.17
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/package.json +1 -1
- package/src/canvasXpress.css +30 -3
- package/src/canvasXpress.js +3637 -2697
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -1199,6 +1199,33 @@ span.CanvasXpressFileCustomizer {
|
|
|
1199
1199
|
* Data Customizer
|
|
1200
1200
|
*/
|
|
1201
1201
|
|
|
1202
|
+
div.CanvasXpressCustomizerPanel {
|
|
1203
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
1204
|
+
margin: 10px;
|
|
1205
|
+
float: left;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
span.CanvasXpressCustomizerPanel {
|
|
1209
|
+
border-width: 1px 1px 0 1px;
|
|
1210
|
+
border-color: rgb(51, 122, 183);
|
|
1211
|
+
border-style: solid;
|
|
1212
|
+
border-radius: 5px 5px 0 0;
|
|
1213
|
+
padding: 8px;
|
|
1214
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
span.CanvasXpressCustomizerPanelActive {
|
|
1218
|
+
border-bottom-width: 3px;
|
|
1219
|
+
border-left-color: rgb(51, 122, 183);
|
|
1220
|
+
border-top-color: rgb(51, 122, 183);
|
|
1221
|
+
border-right-color: rgb(51, 122, 183);
|
|
1222
|
+
border-bottom-color: #dddddd;
|
|
1223
|
+
border-style: solid;
|
|
1224
|
+
border-radius: 5px 5px 0 0;
|
|
1225
|
+
padding: 8px;
|
|
1226
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1202
1229
|
div.CanvasXpressDataCustomizerActive {
|
|
1203
1230
|
border: 1px dashed rgb(255, 0, 0);
|
|
1204
1231
|
border-radius: 4px;
|
|
@@ -1432,21 +1459,21 @@ span.CanvasXpressDataCustomizerListUniqueActive {
|
|
|
1432
1459
|
span.CanvasXpressDataCustomizerListNumeric:before,
|
|
1433
1460
|
span.CanvasXpressDataCustomizerListNumericActive:before {
|
|
1434
1461
|
font: normal 10px courier;
|
|
1435
|
-
color: rgb(
|
|
1462
|
+
color: rgb(51, 122, 183);
|
|
1436
1463
|
content: "\00a0#\00a0\00a0\00a0";
|
|
1437
1464
|
}
|
|
1438
1465
|
|
|
1439
1466
|
span.CanvasXpressDataCustomizerListString:before,
|
|
1440
1467
|
span.CanvasXpressDataCustomizerListStringActive:before {
|
|
1441
1468
|
font: normal 10px courier;
|
|
1442
|
-
color: rgb(
|
|
1469
|
+
color: rgb(51, 122, 183);
|
|
1443
1470
|
content: "Abc\00a0\00a0";
|
|
1444
1471
|
}
|
|
1445
1472
|
|
|
1446
1473
|
span.CanvasXpressDataCustomizerListUnique:before,
|
|
1447
1474
|
span.CanvasXpressDataCustomizerListUniqueActive:before {
|
|
1448
1475
|
font: normal 10px courier;
|
|
1449
|
-
color: rgb(
|
|
1476
|
+
color: rgb(51, 122, 183);
|
|
1450
1477
|
content: "Unq\00a0\00a0";
|
|
1451
1478
|
}
|
|
1452
1479
|
|