canvasxpress-cli 40.0.29 → 40.1.13
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 +74 -5
- package/src/canvasXpress.js +3667 -2916
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -1527,6 +1527,76 @@ span.CanvasXpressDataCustomizerUnique {
|
|
|
1527
1527
|
background-color: rgba(0, 0, 0, 0);
|
|
1528
1528
|
}
|
|
1529
1529
|
|
|
1530
|
+
/*
|
|
1531
|
+
* Password
|
|
1532
|
+
*/
|
|
1533
|
+
|
|
1534
|
+
div.CanvasXpressPassword {
|
|
1535
|
+
border: 1px solid rgb(51, 122, 183);
|
|
1536
|
+
border-radius: 5px;
|
|
1537
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
1538
|
+
box-sizing: content-box;
|
|
1539
|
+
cursor: move;
|
|
1540
|
+
color: rgb(34, 34, 34);
|
|
1541
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
1542
|
+
margin: 2px 3px;
|
|
1543
|
+
overflow: hidden;
|
|
1544
|
+
padding: 5px 6px;
|
|
1545
|
+
width: 180px;
|
|
1546
|
+
height: 200px;
|
|
1547
|
+
white-space: nowrap;
|
|
1548
|
+
position: relative;
|
|
1549
|
+
text-align: left;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
img.CanvasXpressPassword, svg.CanvasXpressPassword {
|
|
1553
|
+
background: rgba(0, 0, 0, 0) !important;
|
|
1554
|
+
border: 0px none !important;
|
|
1555
|
+
box-shadow: 0 0 0px rgb(0 0 0 / 0%) !important;
|
|
1556
|
+
box-sizing: border-box;
|
|
1557
|
+
cursor: default;
|
|
1558
|
+
float: right;
|
|
1559
|
+
margin: 5px 8px 0px 0px !important;
|
|
1560
|
+
cursor: default;
|
|
1561
|
+
-moz-user-select: none;
|
|
1562
|
+
-khtml-user-select: none;
|
|
1563
|
+
-webkit-user-select: none;
|
|
1564
|
+
-o-user-select: none;
|
|
1565
|
+
-ms-user-select: none;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
div.CanvasXpressPasswordContainer {
|
|
1569
|
+
box-sizing: content-box;
|
|
1570
|
+
border-radius: 0px 0px 5px 5px;
|
|
1571
|
+
color: rgb(34, 34, 34);
|
|
1572
|
+
display: block;
|
|
1573
|
+
left: 0px;
|
|
1574
|
+
line-height: 100%;
|
|
1575
|
+
position: relative;
|
|
1576
|
+
top: 35px;
|
|
1577
|
+
margin-top: 5px;
|
|
1578
|
+
-ms-user-select: none;
|
|
1579
|
+
-moz-user-select: none;
|
|
1580
|
+
-khtml-user-select: none;
|
|
1581
|
+
-webkit-user-select: none;
|
|
1582
|
+
-o-user-select: none;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
span.CanvasXpressPassword {
|
|
1586
|
+
margin-bottom: 5px;
|
|
1587
|
+
margin-left: 5px;
|
|
1588
|
+
float: left;
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
input.CanvasXpressPassword {
|
|
1592
|
+
float: left;
|
|
1593
|
+
margin-bottom: 5px;
|
|
1594
|
+
padding: 5px;
|
|
1595
|
+
border-radius: 5px;
|
|
1596
|
+
border: 1px solid #aaa;
|
|
1597
|
+
width: 170px;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1530
1600
|
/*
|
|
1531
1601
|
* CanvasXpressDrag
|
|
1532
1602
|
*/
|
|
@@ -1922,7 +1992,6 @@ div.CanvasXpressDataTableToolbar {
|
|
|
1922
1992
|
border-radius: 5px 5px 0px 0px;
|
|
1923
1993
|
background-color: rgba(255, 255, 255, 0.95);
|
|
1924
1994
|
color: rgb(34, 34, 34);
|
|
1925
|
-
cursor: move;
|
|
1926
1995
|
height: 36px;
|
|
1927
1996
|
left: 0px;
|
|
1928
1997
|
line-height: 100%;
|
|
@@ -2447,11 +2516,9 @@ div.CanvasXpressDataFilter {
|
|
|
2447
2516
|
|
|
2448
2517
|
div.CanvasXpressDataFilterToolbar {
|
|
2449
2518
|
box-sizing: content-box;
|
|
2450
|
-
/*background: linear-gradient(rgb(240, 240, 240), rgb(230,230,230));*/
|
|
2451
2519
|
border: 1px solid rgb(51, 122, 183);
|
|
2452
2520
|
border-radius: 4px;
|
|
2453
2521
|
color: rgb(34, 34, 34);
|
|
2454
|
-
cursor: move;
|
|
2455
2522
|
font: normal 16px arial, tahoma, sans-serif;
|
|
2456
2523
|
height: 32px;
|
|
2457
2524
|
left: 0px;
|
|
@@ -2525,10 +2592,13 @@ input[type=checkbox].CanvasXpressCheckbox {
|
|
|
2525
2592
|
}
|
|
2526
2593
|
|
|
2527
2594
|
label.CanvasXpressCheckboxLabel {
|
|
2595
|
+
width: 220px;
|
|
2596
|
+
text-overflow: ellipsis;
|
|
2597
|
+
white-space: nowrap;
|
|
2598
|
+
overflow-x: hidden;
|
|
2528
2599
|
margin: 0 0 0 3px !important;
|
|
2529
2600
|
}
|
|
2530
2601
|
|
|
2531
|
-
|
|
2532
2602
|
div.CanvasXpressDataFilterContainerMaskNoOverflow {
|
|
2533
2603
|
box-sizing: content-box;
|
|
2534
2604
|
border: 1px solid #d0d0d0;
|
|
@@ -7349,7 +7419,6 @@ Copyright (c) 2018 Christian Pucci
|
|
|
7349
7419
|
}
|
|
7350
7420
|
}
|
|
7351
7421
|
|
|
7352
|
-
|
|
7353
7422
|
.blink {
|
|
7354
7423
|
-webkit-animation-name: blink;
|
|
7355
7424
|
animation-name: blink;
|