openatc-components 0.3.73 → 0.3.74
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/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +46 -145
- package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
- package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +8 -3
- package/package/kisscomps/components/OverviewComponent/index.js +2 -0
- package/package/kisscomps/components/OverviewComponent/index.vue +794 -0
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +28 -18
- package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +1 -1
- package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +21 -1
- package/package/kisscomps/index.js +3 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +7 -0
- package/src/i18n/language/zh.js +7 -0
- package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +46 -145
- package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +4 -4
- package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +8 -3
- package/src/kisscomps/components/OverviewComponent/index.js +2 -0
- package/src/kisscomps/components/OverviewComponent/index.vue +794 -0
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +28 -18
- package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +9 -11
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/index.vue +1 -1
- package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +21 -1
- package/src/kisscomps/index.js +3 -1
- package/src/views/overView.vue +17 -4
- package/static/styles/common.scss +3 -3
- package/static/styles/dark/theme/element-dark.scss +1 -1
- package/static/styles/intersection.scss +5 -15
- package/static/styles/light/theme/element-light.scss +1 -1
- package/static/styles/schemeconfig.scss +6 -3
package/package.json
CHANGED
package/src/i18n/language/en.js
CHANGED
|
@@ -1367,6 +1367,13 @@ const en = {
|
|
|
1367
1367
|
'yes': 'Yes',
|
|
1368
1368
|
'no': 'No'
|
|
1369
1369
|
},
|
|
1370
|
+
'overviewcomponent': {
|
|
1371
|
+
'patternstate': 'Pattern State',
|
|
1372
|
+
'cycle': 'Cycle',
|
|
1373
|
+
'patternoffset': 'Pattern offset',
|
|
1374
|
+
'coordinationtime': 'Offset',
|
|
1375
|
+
'overLap': 'Over Lap'
|
|
1376
|
+
},
|
|
1370
1377
|
'channelizationmap': {
|
|
1371
1378
|
'importpicture': 'Import Picture',
|
|
1372
1379
|
'importtip': 'The picture format is SVG, PNG and JPG, and the size is no more than 10MB',
|
package/src/i18n/language/zh.js
CHANGED
|
@@ -1367,6 +1367,13 @@ const zh = {
|
|
|
1367
1367
|
'yes': '是',
|
|
1368
1368
|
'no': '否'
|
|
1369
1369
|
},
|
|
1370
|
+
'overviewcomponent': {
|
|
1371
|
+
'patternstate': '方案状态',
|
|
1372
|
+
'cycle': '周期',
|
|
1373
|
+
'patternoffset': '相位差',
|
|
1374
|
+
'coordinationtime': '协调时间',
|
|
1375
|
+
'overLap': '跟随相位'
|
|
1376
|
+
},
|
|
1370
1377
|
'channelizationmap': {
|
|
1371
1378
|
'importpicture': '导入图片',
|
|
1372
1379
|
'importtip': '图片格式为svg、png、jpg,大小不超过10Mb',
|