@zscreate/form-component 1.1.648 → 1.1.649
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/form-component.css +81 -45
- package/dist/form-component.umd.js +44872 -44141
- package/package.json +1 -1
package/dist/form-component.css
CHANGED
|
@@ -1574,50 +1574,121 @@ dd[data-v-f7c20cf8] {
|
|
|
1574
1574
|
color: #cccccc;
|
|
1575
1575
|
}
|
|
1576
1576
|
|
|
1577
|
-
.
|
|
1577
|
+
.CodeMirror-hints {
|
|
1578
|
+
position: absolute;
|
|
1579
|
+
z-index: 10;
|
|
1580
|
+
overflow: hidden;
|
|
1581
|
+
list-style: none;
|
|
1582
|
+
|
|
1583
|
+
margin: 0;
|
|
1584
|
+
padding: 2px;
|
|
1585
|
+
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
1586
|
+
border-radius: 3px;
|
|
1587
|
+
border: 1px solid silver;
|
|
1588
|
+
|
|
1589
|
+
background: white;
|
|
1590
|
+
font-size: 90%;
|
|
1591
|
+
font-family: monospace;
|
|
1592
|
+
|
|
1593
|
+
max-height: 20em;
|
|
1594
|
+
overflow-y: auto;
|
|
1595
|
+
box-sizing: border-box;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
.CodeMirror-hint {
|
|
1599
|
+
margin: 0;
|
|
1600
|
+
padding: 0 4px;
|
|
1601
|
+
border-radius: 2px;
|
|
1602
|
+
white-space: pre;
|
|
1603
|
+
color: black;
|
|
1604
|
+
cursor: pointer;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
li.CodeMirror-hint-active {
|
|
1608
|
+
background: #08f;
|
|
1609
|
+
color: white;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.option_row_header[data-v-0bed63c4] {
|
|
1578
1613
|
background: #eee;
|
|
1579
1614
|
text-align: center;
|
|
1580
1615
|
line-height: 45px;
|
|
1581
1616
|
}
|
|
1582
|
-
.option_row[data-v-
|
|
1617
|
+
.option_row[data-v-0bed63c4] {
|
|
1583
1618
|
border-left: 1px solid #eee;
|
|
1584
1619
|
}
|
|
1585
|
-
.option_row .ant-col[data-v-
|
|
1620
|
+
.option_row .ant-col[data-v-0bed63c4] {
|
|
1586
1621
|
border-right: 1px solid #eee;
|
|
1587
1622
|
border-bottom: 1px solid #eee;
|
|
1588
1623
|
text-align: left;
|
|
1589
1624
|
height: 180px;
|
|
1590
1625
|
}
|
|
1591
|
-
.option_row .ant-col[data-v-
|
|
1626
|
+
.option_row .ant-col[data-v-0bed63c4]:not(.code-col) {
|
|
1592
1627
|
line-height: 180px;
|
|
1593
1628
|
text-align: center;
|
|
1594
1629
|
}
|
|
1595
|
-
.no-data[data-v-
|
|
1630
|
+
.no-data[data-v-0bed63c4] {
|
|
1596
1631
|
border: 1px solid #eee;
|
|
1597
1632
|
line-height: 45px;
|
|
1598
1633
|
text-align: center;
|
|
1599
1634
|
cursor: pointer;
|
|
1600
1635
|
color: #ccc;
|
|
1601
1636
|
}
|
|
1602
|
-
.code[data-v-
|
|
1637
|
+
.code[data-v-0bed63c4] {
|
|
1603
1638
|
height: 180px;
|
|
1604
1639
|
width: 100%;
|
|
1605
1640
|
}
|
|
1606
|
-
.getTemp[data-v-
|
|
1641
|
+
.getTemp[data-v-0bed63c4] {
|
|
1607
1642
|
position: absolute;
|
|
1608
1643
|
right: -10px;
|
|
1609
1644
|
top: 45px;
|
|
1610
1645
|
cursor: pointer;
|
|
1611
1646
|
}
|
|
1612
|
-
.delete[data-v-
|
|
1647
|
+
.delete[data-v-0bed63c4] {
|
|
1613
1648
|
color: #ff0000;
|
|
1614
1649
|
}
|
|
1615
|
-
[data-v-
|
|
1650
|
+
[data-v-0bed63c4] .vue-codemirror {
|
|
1616
1651
|
height: 100%;
|
|
1617
1652
|
}
|
|
1618
|
-
[data-v-
|
|
1653
|
+
[data-v-0bed63c4] .CodeMirror {
|
|
1619
1654
|
height: 178px !important;
|
|
1620
1655
|
}
|
|
1656
|
+
[data-v-0bed63c4] .CodeMirror-hints {
|
|
1657
|
+
z-index: 999999 !important;
|
|
1658
|
+
max-height: 200px;
|
|
1659
|
+
overflow-y: auto;
|
|
1660
|
+
border-radius: 4px;
|
|
1661
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
1662
|
+
background: white !important;
|
|
1663
|
+
border: 1px solid #d9d9d9 !important;
|
|
1664
|
+
position: fixed !important;
|
|
1665
|
+
}
|
|
1666
|
+
[data-v-0bed63c4] .CodeMirror-hint {
|
|
1667
|
+
padding: 6px 12px;
|
|
1668
|
+
font-size: 13px;
|
|
1669
|
+
line-height: 1.5;
|
|
1670
|
+
border-radius: 2px;
|
|
1671
|
+
color: #333 !important;
|
|
1672
|
+
background: white !important;
|
|
1673
|
+
cursor: pointer;
|
|
1674
|
+
}
|
|
1675
|
+
[data-v-0bed63c4] .CodeMirror-hint:hover {
|
|
1676
|
+
background-color: #f5f5f5 !important;
|
|
1677
|
+
}
|
|
1678
|
+
[data-v-0bed63c4] .CodeMirror-hint-active {
|
|
1679
|
+
background-color: #1890ff !important;
|
|
1680
|
+
color: white !important;
|
|
1681
|
+
}
|
|
1682
|
+
[data-v-0bed63c4] .custom-hint-item {
|
|
1683
|
+
font-weight: 500;
|
|
1684
|
+
}
|
|
1685
|
+
[data-v-0bed63c4]:global(.CodeMirror-hints) {
|
|
1686
|
+
z-index: 999999 !important;
|
|
1687
|
+
position: fixed !important;
|
|
1688
|
+
background: white !important;
|
|
1689
|
+
border: 1px solid #d9d9d9 !important;
|
|
1690
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
|
|
1691
|
+
}
|
|
1621
1692
|
|
|
1622
1693
|
|
|
1623
1694
|
[data-v-dd940658] .ant-select-selection__rendered {
|
|
@@ -8013,41 +8084,6 @@ div {
|
|
|
8013
8084
|
background: rgba(24, 144, 255, 0.6);
|
|
8014
8085
|
}
|
|
8015
8086
|
|
|
8016
|
-
.CodeMirror-hints {
|
|
8017
|
-
position: absolute;
|
|
8018
|
-
z-index: 10;
|
|
8019
|
-
overflow: hidden;
|
|
8020
|
-
list-style: none;
|
|
8021
|
-
|
|
8022
|
-
margin: 0;
|
|
8023
|
-
padding: 2px;
|
|
8024
|
-
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
8025
|
-
border-radius: 3px;
|
|
8026
|
-
border: 1px solid silver;
|
|
8027
|
-
|
|
8028
|
-
background: white;
|
|
8029
|
-
font-size: 90%;
|
|
8030
|
-
font-family: monospace;
|
|
8031
|
-
|
|
8032
|
-
max-height: 20em;
|
|
8033
|
-
overflow-y: auto;
|
|
8034
|
-
box-sizing: border-box;
|
|
8035
|
-
}
|
|
8036
|
-
|
|
8037
|
-
.CodeMirror-hint {
|
|
8038
|
-
margin: 0;
|
|
8039
|
-
padding: 0 4px;
|
|
8040
|
-
border-radius: 2px;
|
|
8041
|
-
white-space: pre;
|
|
8042
|
-
color: black;
|
|
8043
|
-
cursor: pointer;
|
|
8044
|
-
}
|
|
8045
|
-
|
|
8046
|
-
li.CodeMirror-hint-active {
|
|
8047
|
-
background: #08f;
|
|
8048
|
-
color: white;
|
|
8049
|
-
}
|
|
8050
|
-
|
|
8051
8087
|
.cm-s-eclipse span.cm-meta { color: #FF1717; }
|
|
8052
8088
|
.cm-s-eclipse span.cm-keyword { line-height: 1em; font-weight: bold; color: #7F0055; }
|
|
8053
8089
|
.cm-s-eclipse span.cm-atom { color: #219; }
|