openatc-components 0.1.189 → 0.1.191
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/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +436 -0
- package/package/kisscomps/components/DirectionListConfiguration/index.js +2 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedeastward.vue +35 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pednorthward.vue +30 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedsouthward.vue +35 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedwestward.vue +41 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -0
- package/package/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -0
- package/package/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +127 -0
- package/package/kisscomps/components/IntersectionDirectionSelection/index.js +2 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +0 -1
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +429 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1272 -0
- package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +239 -16
- package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +88 -14
- package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +88 -15
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +24 -8
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +24 -8
- package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +50 -2
- package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +6 -0
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +28 -1
- package/package/kisscomps/index.js +5 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/EdgeMgr/controller/crossDiagramMgr.js +5 -1
- package/src/api/param.js +11 -0
- package/src/icons/demo_index.html +8146 -0
- package/src/icons/iconfont.css +219 -3
- package/src/icons/iconfont.js +1 -1
- package/src/icons/iconfont.json +378 -0
- package/src/icons/iconfont.ttf +0 -0
- package/src/icons/iconfont.woff +0 -0
- package/src/icons/iconfont.woff2 +0 -0
- package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +436 -0
- package/src/kisscomps/components/DirectionListConfiguration/index.js +2 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedeastward.vue +35 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pednorthward.vue +30 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedsouthward.vue +35 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedwestward.vue +41 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -0
- package/src/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -0
- package/src/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +127 -0
- package/src/kisscomps/components/IntersectionDirectionSelection/index.js +2 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +0 -1
- package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1272 -0
- package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +239 -16
- package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +88 -14
- package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +88 -15
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +24 -8
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +24 -8
- package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +50 -2
- package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +6 -0
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +28 -1
- package/src/kisscomps/index.js +5 -1
- package/src/utils/conflct.js +233 -0
- package/src/utils/conflictList.js +87 -0
- package/src/utils/phasedesc.js +37 -17
- package/src/views/intersection.vue +62 -12
- package/src/views/overView.vue +1 -1
- package/static/styles/uiComponents.scss +52 -0
- package/src/node_modules/.package_versions.json +0 -1
package/src/icons/iconfont.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "iconfont"; /* Project id 815552 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1711441850978') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1711441850978') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1711441850978') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.iconfont {
|
|
@@ -13,6 +13,222 @@
|
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
.icon-beidiaotouzuohang:before {
|
|
17
|
+
content: "\e755";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-dongdiaotouzuohang:before {
|
|
21
|
+
content: "\e756";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-nandiaotouzuohang:before {
|
|
25
|
+
content: "\e757";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-xidiaotouzuohang:before {
|
|
29
|
+
content: "\e758";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-bofang:before {
|
|
33
|
+
content: "\e753";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-peizhi:before {
|
|
37
|
+
content: "\e754";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-bujin1:before {
|
|
41
|
+
content: "\e742";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-bendi1:before {
|
|
45
|
+
content: "\e743";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-quanhong1:before {
|
|
49
|
+
content: "\e744";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-guandeng:before {
|
|
53
|
+
content: "\e745";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-dingzhouqi1:before {
|
|
57
|
+
content: "\e746";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-shoudong:before {
|
|
61
|
+
content: "\e747";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-wuxianlan1:before {
|
|
65
|
+
content: "\e748";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-ganyingkongzhi1:before {
|
|
69
|
+
content: "\e749";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-feijidongche1:before {
|
|
73
|
+
content: "\e74a";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-ganyingshihangrenguojie1:before {
|
|
77
|
+
content: "\e74b";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon-zishiying1:before {
|
|
81
|
+
content: "\e74c";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-youxian:before {
|
|
85
|
+
content: "\e74d";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-hangrenguojie:before {
|
|
89
|
+
content: "\e74e";
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.icon-huifu:before {
|
|
93
|
+
content: "\e74f";
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.icon-huangshan1:before {
|
|
97
|
+
content: "\e750";
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.icon-xitong1:before {
|
|
101
|
+
content: "\e751";
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.icon-zizhukongzhi:before {
|
|
105
|
+
content: "\e752";
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.icon-fenzuguankong2:before {
|
|
109
|
+
content: "\e73e";
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.icon-teqinluxian3:before {
|
|
113
|
+
content: "\e73f";
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.icon-lukouguanli3:before {
|
|
117
|
+
content: "\e740";
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.icon-ganxianxietiao2:before {
|
|
121
|
+
content: "\e741";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.icon-lukou1:before {
|
|
125
|
+
content: "\e73d";
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.icon-jiantou:before {
|
|
129
|
+
content: "\e73c";
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.icon-fenzuguankong1:before {
|
|
133
|
+
content: "\e738";
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.icon-jiaotongfenxi1:before {
|
|
137
|
+
content: "\e739";
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.icon-ganxianxietiao1:before {
|
|
141
|
+
content: "\e73a";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.icon-teqinluxian2:before {
|
|
145
|
+
content: "\e73b";
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.icon-lukouguanli2:before {
|
|
149
|
+
content: "\e72a";
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.icon-lukouguanli-xuanzhong:before {
|
|
153
|
+
content: "\e72b";
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.icon-ganxianxietiao:before {
|
|
157
|
+
content: "\e72c";
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.icon-ganxianxietiao-xuanzhong:before {
|
|
161
|
+
content: "\e72d";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.icon-fenzuguankong-xuanzhong:before {
|
|
165
|
+
content: "\e72e";
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.icon-fenzuguankong:before {
|
|
169
|
+
content: "\e72f";
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.icon-teqinluxian-xuanzhong:before {
|
|
173
|
+
content: "\e730";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.icon-teqinluxian1:before {
|
|
177
|
+
content: "\e731";
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.icon-xinhaojishu-zaixian:before {
|
|
181
|
+
content: "\e732";
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.icon-xinhaojishu-lixian:before {
|
|
185
|
+
content: "\e733";
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.icon-pilianghuifu:before {
|
|
189
|
+
content: "\e734";
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.icon-piliangzhihang:before {
|
|
193
|
+
content: "\e735";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.icon-sousuo-xiala:before {
|
|
197
|
+
content: "\e736";
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.icon-sousuo-shouqi:before {
|
|
201
|
+
content: "\e737";
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.icon-mingchengqianbiao:before {
|
|
205
|
+
content: "\e729";
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.icon-luwangguanli:before {
|
|
209
|
+
content: "\e728";
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.icon-xitongshezhi:before {
|
|
213
|
+
content: "\e725";
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.icon-disanfangpingtai:before {
|
|
217
|
+
content: "\e726";
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.icon-quanxianshezhi1:before {
|
|
221
|
+
content: "\e727";
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.icon-shebeiguzhangtongji:before {
|
|
225
|
+
content: "\e723";
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.icon-pingtaicaozuotongji:before {
|
|
229
|
+
content: "\e724";
|
|
230
|
+
}
|
|
231
|
+
|
|
16
232
|
.icon-danfangxiangxiangwei:before {
|
|
17
233
|
content: "\e722";
|
|
18
234
|
}
|