canvasxpress-cli 39.3.17 → 39.6.5
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 +2 -2
- package/src/canvasXpress.css +201 -6
- package/src/canvasXpress.js +2759 -1989
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "canvasxpress-cli",
|
|
3
|
-
"version": "39.
|
|
3
|
+
"version": "39.6.5",
|
|
4
4
|
"license": {
|
|
5
5
|
"type": "Dual licensing",
|
|
6
6
|
"url": "https://www.canvasxpress.org/docs/license.html"
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
"ora": "^3.4.0",
|
|
37
37
|
"puppeteer": "^1.15.0"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|
package/src/canvasXpress.css
CHANGED
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
100% {
|
|
39
39
|
transform: rotate(360deg);
|
|
40
40
|
}
|
|
41
|
-
}
|
|
41
|
+
}
|
|
42
42
|
|
|
43
43
|
/*
|
|
44
44
|
* Loading Image
|
|
@@ -626,7 +626,7 @@ div.CanvasXpressBinContainerTab {
|
|
|
626
626
|
background-color: rgba(255, 255, 255, 0.95);
|
|
627
627
|
border-width: 1px 1px 1px 1px;
|
|
628
628
|
border-style: solid;
|
|
629
|
-
border-color: rgb(51, 122, 183);
|
|
629
|
+
border-color: rgb(51, 122, 183);
|
|
630
630
|
border-radius: 5px;
|
|
631
631
|
box-sizing: content-box;
|
|
632
632
|
clear: none;
|
|
@@ -1462,14 +1462,14 @@ span.CanvasXpressDataCustomizerListNumericActive:before {
|
|
|
1462
1462
|
color: rgb(51, 122, 183);
|
|
1463
1463
|
content: "\00a0#\00a0\00a0\00a0";
|
|
1464
1464
|
}
|
|
1465
|
-
|
|
1465
|
+
|
|
1466
1466
|
span.CanvasXpressDataCustomizerListString:before,
|
|
1467
1467
|
span.CanvasXpressDataCustomizerListStringActive:before {
|
|
1468
1468
|
font: normal 10px courier;
|
|
1469
1469
|
color: rgb(51, 122, 183);
|
|
1470
1470
|
content: "Abc\00a0\00a0";
|
|
1471
1471
|
}
|
|
1472
|
-
|
|
1472
|
+
|
|
1473
1473
|
span.CanvasXpressDataCustomizerListUnique:before,
|
|
1474
1474
|
span.CanvasXpressDataCustomizerListUniqueActive:before {
|
|
1475
1475
|
font: normal 10px courier;
|
|
@@ -1814,7 +1814,7 @@ div.CanvasXpressMarker {
|
|
|
1814
1814
|
|
|
1815
1815
|
|
|
1816
1816
|
/*
|
|
1817
|
-
* Toolbar
|
|
1817
|
+
* Toolbar
|
|
1818
1818
|
*/
|
|
1819
1819
|
|
|
1820
1820
|
|
|
@@ -1844,7 +1844,7 @@ div.CanvasXpressToolbar img.CanvasXpressToolbarImage:hover+img.CanvasXpressToolb
|
|
|
1844
1844
|
transform: scale(1.1);
|
|
1845
1845
|
-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.7)));
|
|
1846
1846
|
}
|
|
1847
|
-
*/
|
|
1847
|
+
*/
|
|
1848
1848
|
|
|
1849
1849
|
div.CanvasXpressToolbar img.CanvasXpressToolbarImage, div.CanvasXpressToolbar svg.CanvasXpressToolbarImage {
|
|
1850
1850
|
background: rgba(0, 0, 0, 0) !important;
|
|
@@ -3632,9 +3632,204 @@ select.CanvasXpressSlider:focus {
|
|
|
3632
3632
|
*/
|
|
3633
3633
|
|
|
3634
3634
|
div.CanvasXpress-ParentNode {
|
|
3635
|
+
/*
|
|
3635
3636
|
margin: auto;
|
|
3636
3637
|
display: table;
|
|
3637
3638
|
padding: 0;
|
|
3639
|
+
*/
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
/*
|
|
3643
|
+
* CanvasXpress Tabs
|
|
3644
|
+
*/
|
|
3645
|
+
|
|
3646
|
+
div.CanvasXpressTabPanelCustomizer {
|
|
3647
|
+
position: relative;
|
|
3648
|
+
border-bottom: 1px solid #dddddd;
|
|
3649
|
+
top: -10px;
|
|
3650
|
+
overflow: hidden;
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
div.CanvasXpressTabPanelHeader {
|
|
3654
|
+
display: block;
|
|
3655
|
+
position: relative;
|
|
3656
|
+
border-bottom: 2px solid rgb(51, 122, 183);
|
|
3657
|
+
}
|
|
3658
|
+
|
|
3659
|
+
div.CanvasXpressTabPanel {
|
|
3660
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
3661
|
+
margin: 10px;
|
|
3662
|
+
float: left;
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
input.CanvasXpressTabPanel {
|
|
3666
|
+
border-width: 1px 1px 0 1px;
|
|
3667
|
+
border-color: rgb(51, 122, 183);
|
|
3668
|
+
border-style: solid;
|
|
3669
|
+
border-radius: 5px 5px 0 0;
|
|
3670
|
+
padding: 8px;
|
|
3671
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
3672
|
+
max-width: 100px;
|
|
3673
|
+
outline: none;
|
|
3674
|
+
text-align: center;
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
input.CanvasXpressTabPanelActive {
|
|
3678
|
+
border-bottom-width: 2px;
|
|
3679
|
+
border-left-color: rgb(51, 122, 183);
|
|
3680
|
+
border-top-color: rgb(51, 122, 183);
|
|
3681
|
+
border-right-color: rgb(51, 122, 183);
|
|
3682
|
+
border-bottom-color: #ffffff;
|
|
3683
|
+
border-style: solid;
|
|
3684
|
+
border-radius: 5px 5px 0 0;
|
|
3685
|
+
padding: 8px;
|
|
3686
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
3687
|
+
max-width: 100px;
|
|
3688
|
+
outline: none;
|
|
3689
|
+
text-align: center;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
input[type="text"]:disabled.CanvasXpressTabPanel, input[type="text"]:disabled.CanvasXpressTabPanelActive {
|
|
3693
|
+
background-color: rgba(0, 0, 0, 0);
|
|
3694
|
+
border-bottom-width: 2px;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
div.CanvasXpressTabPanelRibbon {
|
|
3698
|
+
float: left;
|
|
3699
|
+
margin-right: 10px;
|
|
3700
|
+
}
|
|
3701
|
+
|
|
3702
|
+
span.CanvasXpressTabPanelRibbon {
|
|
3703
|
+
color: rgb(34, 34, 34);
|
|
3704
|
+
font: normal 16px arial, tahoma, sans-serif;
|
|
3705
|
+
line-height: 28px;
|
|
3706
|
+
list-style: none;
|
|
3707
|
+
white-space: nowrap;
|
|
3708
|
+
position: relative;
|
|
3709
|
+
height: 28px;
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
div.CanvasXpressTabPanelRibbonContainer {
|
|
3713
|
+
border: 1px solid rgb(51, 122, 183);
|
|
3714
|
+
border-radius: 5px;
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
svg.CanvasXpressTabPanelRibbon {
|
|
3718
|
+
float: left;
|
|
3719
|
+
border: 1px solid rgb(51, 122, 183);
|
|
3720
|
+
margin-left: 5px;
|
|
3721
|
+
margin-top: 5px;
|
|
3722
|
+
padding: 5px;
|
|
3723
|
+
border-radius: 5px;
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
/*
|
|
3727
|
+
* CanvasXpress Layouts
|
|
3728
|
+
*/
|
|
3729
|
+
|
|
3730
|
+
div.CanvasXpressRow {
|
|
3731
|
+
clear: both;
|
|
3732
|
+
display: flex;
|
|
3733
|
+
flex-wrap: wrap;
|
|
3734
|
+
margin-top: 10px;
|
|
3735
|
+
}
|
|
3736
|
+
div.CanvasXpressRow:before, div.CanvasXpressRow:after {
|
|
3737
|
+
content: " ";
|
|
3738
|
+
display: table;
|
|
3739
|
+
}
|
|
3740
|
+
div.CanvasXpressRow:after {
|
|
3741
|
+
clear: both;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
div.CanvasXpressRowColumnFull, div.CanvasXpressRowColumnTwoThird, div.CanvasXpressRowColumnThreeFourth, div.CanvasXpressRowColumnFourFifth, div.CanvasXpressRowColumnFiveSixth,
|
|
3745
|
+
div.CanvasXpressRowColumnHalf, div.CanvasXpressRowColumnThird, div.CanvasXpressRowColumnFourth, div.CanvasXpressRowColumnFifth, div.CanvasXpressRowColumnSixth {
|
|
3746
|
+
float: left;
|
|
3747
|
+
padding-left: 1rem;
|
|
3748
|
+
padding-right: 1rem;
|
|
3749
|
+
-moz-box-sizing: border-box;
|
|
3750
|
+
-webkit-box-sizing: border-box;
|
|
3751
|
+
box-sizing: border-box;
|
|
3752
|
+
}
|
|
3753
|
+
|
|
3754
|
+
div.CanvasXpressRowColumnFull {
|
|
3755
|
+
width: 100%;
|
|
3756
|
+
}
|
|
3757
|
+
div.CanvasXpressRowColumnFullActive {
|
|
3758
|
+
border: 1px solid red;
|
|
3759
|
+
padding: 5px;
|
|
3760
|
+
width: 100%;
|
|
3761
|
+
}
|
|
3762
|
+
div.CanvasXpressRowColumnTwoThird {
|
|
3763
|
+
width: 66.7%;
|
|
3764
|
+
}
|
|
3765
|
+
div.CanvasXpressRowColumnTwoThirdActive {
|
|
3766
|
+
border: 1px solid red;
|
|
3767
|
+
padding: 5px;
|
|
3768
|
+
width: 66.7%;
|
|
3769
|
+
}
|
|
3770
|
+
div.CanvasXpressRowColumnThreeFourth {
|
|
3771
|
+
width: 75%;
|
|
3772
|
+
}
|
|
3773
|
+
div.CanvasXpressRowColumnThreeFourthActive {
|
|
3774
|
+
border: 1px solid red;
|
|
3775
|
+
padding: 5px;
|
|
3776
|
+
width: 75%;
|
|
3777
|
+
}
|
|
3778
|
+
div.CanvasXpressRowColumnFourFifth {
|
|
3779
|
+
width: 80%;
|
|
3780
|
+
}
|
|
3781
|
+
div.CanvasXpressRowColumnFourFifthActive {
|
|
3782
|
+
border: 1px solid red;
|
|
3783
|
+
padding: 5px;
|
|
3784
|
+
width: 80%;
|
|
3785
|
+
}
|
|
3786
|
+
div.CanvasXpressRowColumnFiveSixth {
|
|
3787
|
+
width: 83.4%;
|
|
3788
|
+
}
|
|
3789
|
+
div.CanvasXpressRowColumnFiveSixthActive {
|
|
3790
|
+
border: 1px solid red;
|
|
3791
|
+
padding: 5px;
|
|
3792
|
+
width: 83.4%;
|
|
3793
|
+
}
|
|
3794
|
+
div.CanvasXpressRowColumnHalf {
|
|
3795
|
+
width: 50%;
|
|
3796
|
+
}
|
|
3797
|
+
div.CanvasXpressRowColumnHalfActive {
|
|
3798
|
+
border: 1px solid red;
|
|
3799
|
+
padding: 5px;
|
|
3800
|
+
width: 50%;
|
|
3801
|
+
}
|
|
3802
|
+
div.CanvasXpressRowColumnThird {
|
|
3803
|
+
width: 33.3%;
|
|
3804
|
+
}
|
|
3805
|
+
div.CanvasXpressRowColumnThirdActive {
|
|
3806
|
+
border: 1px solid red;
|
|
3807
|
+
padding: 5px;
|
|
3808
|
+
width: 33.3%;
|
|
3809
|
+
}
|
|
3810
|
+
div.CanvasXpressRowColumnFourth {
|
|
3811
|
+
width: 25%;
|
|
3812
|
+
}
|
|
3813
|
+
div.CanvasXpressRowColumnFourthActive {
|
|
3814
|
+
border: 1px solid red;
|
|
3815
|
+
padding: 5px;
|
|
3816
|
+
width: 25%;
|
|
3817
|
+
}
|
|
3818
|
+
div.CanvasXpressRowColumnFifth {
|
|
3819
|
+
width: 20%;
|
|
3820
|
+
}
|
|
3821
|
+
div.CanvasXpressRowColumnFifthActive {
|
|
3822
|
+
border: 1px solid red;
|
|
3823
|
+
padding: 5px;
|
|
3824
|
+
width: 20%;
|
|
3825
|
+
}
|
|
3826
|
+
div.CanvasXpressRowColumnSixth {
|
|
3827
|
+
width: 16.6%;
|
|
3828
|
+
}
|
|
3829
|
+
div.CanvasXpressRowColumnSixthActive {
|
|
3830
|
+
border: 1px solid red;
|
|
3831
|
+
padding: 5px;
|
|
3832
|
+
width: 16.6%;
|
|
3638
3833
|
}
|
|
3639
3834
|
|
|
3640
3835
|
/*
|