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.
Files changed (83) hide show
  1. package/package/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +436 -0
  2. package/package/kisscomps/components/DirectionListConfiguration/index.js +2 -0
  3. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -0
  4. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -0
  5. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -0
  6. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -0
  7. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -0
  8. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedeastward.vue +35 -0
  9. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pednorthward.vue +30 -0
  10. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedsouthward.vue +35 -0
  11. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-pedwestward.vue +41 -0
  12. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -0
  13. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -0
  14. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -0
  15. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -0
  16. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -0
  17. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -0
  18. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -0
  19. package/package/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -0
  20. package/package/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +127 -0
  21. package/package/kisscomps/components/IntersectionDirectionSelection/index.js +2 -0
  22. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +0 -1
  23. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +429 -0
  24. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1272 -0
  25. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +239 -16
  26. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +88 -14
  27. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +88 -15
  28. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +24 -8
  29. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +24 -8
  30. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +50 -2
  31. package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +6 -0
  32. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +28 -1
  33. package/package/kisscomps/index.js +5 -1
  34. package/package/kissui.min.js +1 -1
  35. package/package.json +1 -1
  36. package/src/EdgeMgr/controller/crossDiagramMgr.js +5 -1
  37. package/src/api/param.js +11 -0
  38. package/src/icons/demo_index.html +8146 -0
  39. package/src/icons/iconfont.css +219 -3
  40. package/src/icons/iconfont.js +1 -1
  41. package/src/icons/iconfont.json +378 -0
  42. package/src/icons/iconfont.ttf +0 -0
  43. package/src/icons/iconfont.woff +0 -0
  44. package/src/icons/iconfont.woff2 +0 -0
  45. package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +436 -0
  46. package/src/kisscomps/components/DirectionListConfiguration/index.js +2 -0
  47. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -0
  48. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -0
  49. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -0
  50. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -0
  51. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -0
  52. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedeastward.vue +35 -0
  53. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pednorthward.vue +30 -0
  54. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedsouthward.vue +35 -0
  55. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-pedwestward.vue +41 -0
  56. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -0
  57. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -0
  58. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -0
  59. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -0
  60. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -0
  61. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -0
  62. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -0
  63. package/src/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -0
  64. package/src/kisscomps/components/IntersectionDirectionSelection/IntersectionDirectionSelection.vue +127 -0
  65. package/src/kisscomps/components/IntersectionDirectionSelection/index.js +2 -0
  66. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +0 -1
  67. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +1272 -0
  68. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +239 -16
  69. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +88 -14
  70. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +88 -15
  71. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +24 -8
  72. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +24 -8
  73. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +50 -2
  74. package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +6 -0
  75. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +28 -1
  76. package/src/kisscomps/index.js +5 -1
  77. package/src/utils/conflct.js +233 -0
  78. package/src/utils/conflictList.js +87 -0
  79. package/src/utils/phasedesc.js +37 -17
  80. package/src/views/intersection.vue +62 -12
  81. package/src/views/overView.vue +1 -1
  82. package/static/styles/uiComponents.scss +52 -0
  83. package/src/node_modules/.package_versions.json +0 -1
@@ -1,8 +1,8 @@
1
1
  @font-face {
2
2
  font-family: "iconfont"; /* Project id 815552 */
3
- src: url('iconfont.woff2?t=1684222715685') format('woff2'),
4
- url('iconfont.woff?t=1684222715685') format('woff'),
5
- url('iconfont.ttf?t=1684222715685') format('truetype');
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
  }