hqchart 1.1.15191 → 1.1.15210
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/lib/umychart.vue.js +61 -61
- package/package.json +1 -1
- package/src/jscommon/umychart.DialogDrawTool.js +136 -103
- package/src/jscommon/umychart.js +62 -33
- package/src/jscommon/umychart.resource/css/tools.css +47 -3
- package/src/jscommon/umychart.resource/font/drawtool/demo_index.html +49 -49
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.css +11 -11
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.js +1 -1
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.json +14 -14
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.ttf +0 -0
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.woff +0 -0
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.woff2 +0 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +63 -34
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +199 -137
|
@@ -1084,6 +1084,14 @@ input[type="color"] {
|
|
|
1084
1084
|
border-color:var(--HQChart-DialogDrawTool-DividingLineColor);
|
|
1085
1085
|
}
|
|
1086
1086
|
|
|
1087
|
+
.UMyChart_DrawTool_Input_Color
|
|
1088
|
+
{
|
|
1089
|
+
visibility:hidden;
|
|
1090
|
+
width:22px;
|
|
1091
|
+
height:22px;
|
|
1092
|
+
position:absolute;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1087
1095
|
|
|
1088
1096
|
|
|
1089
1097
|
/*
|
|
@@ -1135,20 +1143,38 @@ input[type="color"] {
|
|
|
1135
1143
|
{
|
|
1136
1144
|
border-right: 1px solid;
|
|
1137
1145
|
border-color:var(--HQChart-DialogModifyDraw-ButtonBorderColor);
|
|
1146
|
+
padding: 2px;
|
|
1138
1147
|
}
|
|
1139
1148
|
|
|
1149
|
+
|
|
1140
1150
|
.UMyChart_Draw_Modify_Dialog_Button_Span
|
|
1141
1151
|
{
|
|
1142
1152
|
font-size:22px;
|
|
1143
1153
|
color:var(--HQChart-DialogModifyDraw-ButtonColor);
|
|
1144
1154
|
}
|
|
1145
1155
|
|
|
1156
|
+
.UMyChart_Draw_Modify_Dialog_Button_ColorBar_Div
|
|
1157
|
+
{
|
|
1158
|
+
margin-top: 2px;
|
|
1159
|
+
height: 3px;
|
|
1160
|
+
width: 22px;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.UMyChart_Draw_Modify_Dialog_Button_Color_Span
|
|
1164
|
+
{
|
|
1165
|
+
font-size:17px;
|
|
1166
|
+
margin-left: 2px;
|
|
1167
|
+
color:var(--HQChart-DialogModifyDraw-ButtonColor);
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
|
|
1146
1171
|
.UMyChart_Draw_Modify_Dialog_Unlock_Button_Span
|
|
1147
1172
|
{
|
|
1148
1173
|
font-size:22px;
|
|
1149
1174
|
color:var(--HQChart-DialogModifyDraw-UnlockButtonColor);
|
|
1150
1175
|
}
|
|
1151
1176
|
|
|
1177
|
+
|
|
1152
1178
|
.UMyChart_Draw_Modify_Tooltip
|
|
1153
1179
|
{
|
|
1154
1180
|
position: absolute;
|
|
@@ -1156,19 +1182,27 @@ input[type="color"] {
|
|
|
1156
1182
|
top: 30px;
|
|
1157
1183
|
z-index: 2;
|
|
1158
1184
|
width: 80px;
|
|
1159
|
-
color:
|
|
1185
|
+
color: var(--HQChart-DialogModifyDraw-Tooltip-Color);
|
|
1160
1186
|
font-size: 12px;
|
|
1161
1187
|
text-align: center;
|
|
1162
|
-
background-color:
|
|
1188
|
+
background-color:var(--HQChart-DialogModifyDraw-Tooltip-BGColor);
|
|
1163
1189
|
border-radius: 2px;
|
|
1164
1190
|
padding: 5px 5px 5px 5px;
|
|
1165
1191
|
pointer-events: none;
|
|
1166
|
-
border-color:
|
|
1192
|
+
border-color: var(--HQChart-DialogModifyDraw-Tooltip-BorderColor);
|
|
1167
1193
|
border-style:solid;
|
|
1168
1194
|
border-width:1px;
|
|
1169
1195
|
user-select: none;
|
|
1170
1196
|
}
|
|
1171
1197
|
|
|
1198
|
+
.UMyChart_Draw_Modify_Input_Color
|
|
1199
|
+
{
|
|
1200
|
+
visibility:hidden;
|
|
1201
|
+
width:22px;
|
|
1202
|
+
height:4px;
|
|
1203
|
+
position:absolute;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1172
1206
|
|
|
1173
1207
|
/*
|
|
1174
1208
|
弹出分时图对话框
|
|
@@ -2106,6 +2140,10 @@ input[type="color"] {
|
|
|
2106
2140
|
--HQChart-DialogModifyDraw-ButtonBorderColor:rgb(20,20,20);
|
|
2107
2141
|
--HQChart-DialogModifyDraw-UnlockButtonColor:rgb(220,220,220);
|
|
2108
2142
|
|
|
2143
|
+
--HQChart-DialogModifyDraw-Tooltip-BGColor: rgb(250,250,250);
|
|
2144
|
+
--HQChart-DialogModifyDraw-Tooltip-BorderColor: rgb(20,20,20);
|
|
2145
|
+
--HQChart-DialogModifyDraw-Tooltip-Color: rgb(20,20,20);
|
|
2146
|
+
|
|
2109
2147
|
/*
|
|
2110
2148
|
JSDialogSearchIndex
|
|
2111
2149
|
*/
|
|
@@ -2182,6 +2220,9 @@ input[type="color"] {
|
|
|
2182
2220
|
--HQChart-DialogModifyDraw-ButtonBorderColor:rgb(20,20,20);
|
|
2183
2221
|
--HQChart-DialogModifyDraw-UnlockButtonColor:rgb(220,220,220);
|
|
2184
2222
|
|
|
2223
|
+
--HQChart-DialogModifyDraw-Tooltip-BGColor: rgb(250,250,250);
|
|
2224
|
+
--HQChart-DialogModifyDraw-Tooltip-BorderColor: rgb(20,20,20);
|
|
2225
|
+
--HQChart-DialogModifyDraw-Tooltip-Color: rgb(20,20,20);
|
|
2185
2226
|
|
|
2186
2227
|
/*
|
|
2187
2228
|
JSDialogSearchIndex
|
|
@@ -2254,6 +2295,9 @@ input[type="color"] {
|
|
|
2254
2295
|
--HQChart-DialogModifyDraw-ButtonBorderColor:rgb(170,170,170);
|
|
2255
2296
|
--HQChart-DialogModifyDraw-UnlockButtonColor:rgb(60,60,60);
|
|
2256
2297
|
|
|
2298
|
+
--HQChart-DialogModifyDraw-Tooltip-BGColor: rgb(38,38,38);
|
|
2299
|
+
--HQChart-DialogModifyDraw-Tooltip-BorderColor: rgb(170,170,170);
|
|
2300
|
+
--HQChart-DialogModifyDraw-Tooltip-Color: rgb(210,210,210);
|
|
2257
2301
|
|
|
2258
2302
|
/*
|
|
2259
2303
|
JSDialogSearchIndex
|
|
@@ -54,6 +54,18 @@
|
|
|
54
54
|
<div class="content unicode" style="display: block;">
|
|
55
55
|
<ul class="icon_lists dib-box">
|
|
56
56
|
|
|
57
|
+
<li class="dib">
|
|
58
|
+
<span class="icon hqchart_drawtool"></span>
|
|
59
|
+
<div class="name">画笔</div>
|
|
60
|
+
<div class="code-name">&#xe624;</div>
|
|
61
|
+
</li>
|
|
62
|
+
|
|
63
|
+
<li class="dib">
|
|
64
|
+
<span class="icon hqchart_drawtool"></span>
|
|
65
|
+
<div class="name">字体颜色</div>
|
|
66
|
+
<div class="code-name">&#xec85;</div>
|
|
67
|
+
</li>
|
|
68
|
+
|
|
57
69
|
<li class="dib">
|
|
58
70
|
<span class="icon hqchart_drawtool"></span>
|
|
59
71
|
<div class="name">跨周期</div>
|
|
@@ -150,18 +162,6 @@
|
|
|
150
162
|
<div class="code-name">&#xe656;</div>
|
|
151
163
|
</li>
|
|
152
164
|
|
|
153
|
-
<li class="dib">
|
|
154
|
-
<span class="icon hqchart_drawtool"></span>
|
|
155
|
-
<div class="name">字体颜色</div>
|
|
156
|
-
<div class="code-name">&#xe686;</div>
|
|
157
|
-
</li>
|
|
158
|
-
|
|
159
|
-
<li class="dib">
|
|
160
|
-
<span class="icon hqchart_drawtool"></span>
|
|
161
|
-
<div class="name">画笔</div>
|
|
162
|
-
<div class="code-name">&#xe663;</div>
|
|
163
|
-
</li>
|
|
164
|
-
|
|
165
165
|
<li class="dib">
|
|
166
166
|
<span class="icon hqchart_drawtool"></span>
|
|
167
167
|
<div class="name">拖动</div>
|
|
@@ -522,9 +522,9 @@
|
|
|
522
522
|
<pre><code class="language-css"
|
|
523
523
|
>@font-face {
|
|
524
524
|
font-family: 'hqchart_drawtool';
|
|
525
|
-
src: url('iconfont.woff2?t=
|
|
526
|
-
url('iconfont.woff?t=
|
|
527
|
-
url('iconfont.ttf?t=
|
|
525
|
+
src: url('iconfont.woff2?t=1757923987174') format('woff2'),
|
|
526
|
+
url('iconfont.woff?t=1757923987174') format('woff'),
|
|
527
|
+
url('iconfont.ttf?t=1757923987174') format('truetype');
|
|
528
528
|
}
|
|
529
529
|
</code></pre>
|
|
530
530
|
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
@@ -550,6 +550,24 @@
|
|
|
550
550
|
<div class="content font-class">
|
|
551
551
|
<ul class="icon_lists dib-box">
|
|
552
552
|
|
|
553
|
+
<li class="dib">
|
|
554
|
+
<span class="icon hqchart_drawtool icon-Vector"></span>
|
|
555
|
+
<div class="name">
|
|
556
|
+
画笔
|
|
557
|
+
</div>
|
|
558
|
+
<div class="code-name">.icon-Vector
|
|
559
|
+
</div>
|
|
560
|
+
</li>
|
|
561
|
+
|
|
562
|
+
<li class="dib">
|
|
563
|
+
<span class="icon hqchart_drawtool icon-zitiyanse1"></span>
|
|
564
|
+
<div class="name">
|
|
565
|
+
字体颜色
|
|
566
|
+
</div>
|
|
567
|
+
<div class="code-name">.icon-zitiyanse1
|
|
568
|
+
</div>
|
|
569
|
+
</li>
|
|
570
|
+
|
|
553
571
|
<li class="dib">
|
|
554
572
|
<span class="icon hqchart_drawtool icon-kuazhouqi"></span>
|
|
555
573
|
<div class="name">
|
|
@@ -694,24 +712,6 @@
|
|
|
694
712
|
</div>
|
|
695
713
|
</li>
|
|
696
714
|
|
|
697
|
-
<li class="dib">
|
|
698
|
-
<span class="icon hqchart_drawtool icon-zitiyanse"></span>
|
|
699
|
-
<div class="name">
|
|
700
|
-
字体颜色
|
|
701
|
-
</div>
|
|
702
|
-
<div class="code-name">.icon-zitiyanse
|
|
703
|
-
</div>
|
|
704
|
-
</li>
|
|
705
|
-
|
|
706
|
-
<li class="dib">
|
|
707
|
-
<span class="icon hqchart_drawtool icon-huabi"></span>
|
|
708
|
-
<div class="name">
|
|
709
|
-
画笔
|
|
710
|
-
</div>
|
|
711
|
-
<div class="code-name">.icon-huabi
|
|
712
|
-
</div>
|
|
713
|
-
</li>
|
|
714
|
-
|
|
715
715
|
<li class="dib">
|
|
716
716
|
<span class="icon hqchart_drawtool icon-tuodong"></span>
|
|
717
717
|
<div class="name">
|
|
@@ -1252,6 +1252,22 @@
|
|
|
1252
1252
|
<div class="content symbol">
|
|
1253
1253
|
<ul class="icon_lists dib-box">
|
|
1254
1254
|
|
|
1255
|
+
<li class="dib">
|
|
1256
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1257
|
+
<use xlink:href="#icon-Vector"></use>
|
|
1258
|
+
</svg>
|
|
1259
|
+
<div class="name">画笔</div>
|
|
1260
|
+
<div class="code-name">#icon-Vector</div>
|
|
1261
|
+
</li>
|
|
1262
|
+
|
|
1263
|
+
<li class="dib">
|
|
1264
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1265
|
+
<use xlink:href="#icon-zitiyanse1"></use>
|
|
1266
|
+
</svg>
|
|
1267
|
+
<div class="name">字体颜色</div>
|
|
1268
|
+
<div class="code-name">#icon-zitiyanse1</div>
|
|
1269
|
+
</li>
|
|
1270
|
+
|
|
1255
1271
|
<li class="dib">
|
|
1256
1272
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
1257
1273
|
<use xlink:href="#icon-kuazhouqi"></use>
|
|
@@ -1380,22 +1396,6 @@
|
|
|
1380
1396
|
<div class="code-name">#icon-zitibeijingse</div>
|
|
1381
1397
|
</li>
|
|
1382
1398
|
|
|
1383
|
-
<li class="dib">
|
|
1384
|
-
<svg class="icon svg-icon" aria-hidden="true">
|
|
1385
|
-
<use xlink:href="#icon-zitiyanse"></use>
|
|
1386
|
-
</svg>
|
|
1387
|
-
<div class="name">字体颜色</div>
|
|
1388
|
-
<div class="code-name">#icon-zitiyanse</div>
|
|
1389
|
-
</li>
|
|
1390
|
-
|
|
1391
|
-
<li class="dib">
|
|
1392
|
-
<svg class="icon svg-icon" aria-hidden="true">
|
|
1393
|
-
<use xlink:href="#icon-huabi"></use>
|
|
1394
|
-
</svg>
|
|
1395
|
-
<div class="name">画笔</div>
|
|
1396
|
-
<div class="code-name">#icon-huabi</div>
|
|
1397
|
-
</li>
|
|
1398
|
-
|
|
1399
1399
|
<li class="dib">
|
|
1400
1400
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
1401
1401
|
<use xlink:href="#icon-tuodong"></use>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "hqchart_drawtool"; /* Project id 4529603 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1757923987174') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1757923987174') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1757923987174') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.hqchart_drawtool {
|
|
@@ -13,6 +13,14 @@
|
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
.icon-Vector:before {
|
|
17
|
+
content: "\e624";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-zitiyanse1:before {
|
|
21
|
+
content: "\ec85";
|
|
22
|
+
}
|
|
23
|
+
|
|
16
24
|
.icon-kuazhouqi:before {
|
|
17
25
|
content: "\e647";
|
|
18
26
|
}
|
|
@@ -77,14 +85,6 @@
|
|
|
77
85
|
content: "\e656";
|
|
78
86
|
}
|
|
79
87
|
|
|
80
|
-
.icon-zitiyanse:before {
|
|
81
|
-
content: "\e686";
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.icon-huabi:before {
|
|
85
|
-
content: "\e663";
|
|
86
|
-
}
|
|
87
|
-
|
|
88
88
|
.icon-tuodong:before {
|
|
89
89
|
content: "\e6ff";
|
|
90
90
|
}
|