openatc-components 0.1.123 → 0.1.125
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/PatternStatus/PatternStatus.vue +2 -2
- package/package/kisscomps/components/Stages/index.vue +1 -1
- package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +10 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +2 -2
- package/src/kisscomps/components/Stages/index.vue +1 -1
- package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +10 -2
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<div style="cursor:pointer;">
|
|
22
22
|
<div class="ring-phase">
|
|
23
23
|
<!-- <patternwalksvg :showWalk="item.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
24
|
-
<xdrdirselector Width="
|
|
24
|
+
<xdrdirselector Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="item.direction"></xdrdirselector>
|
|
25
25
|
</div>
|
|
26
26
|
<div class="box" style="position: absolute; left:40px;top: -1px;">
|
|
27
27
|
<div class="ring-nums">P{{item.id}}</div>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<div style="cursor:pointer;">
|
|
67
67
|
<div class="ring-phase">
|
|
68
68
|
<!-- <patternwalksvg :showWalk="list.peddirection" :Width="'32'" :Height="'34'"></patternwalksvg> -->
|
|
69
|
-
<xdrdirselector Width="
|
|
69
|
+
<xdrdirselector Width="60px" Height="60px" Widths="50px" Heights="50px" :showlist="list.direction"></xdrdirselector>
|
|
70
70
|
</div>
|
|
71
71
|
<!-- <div class="box" style="line-height:28px">
|
|
72
72
|
<span class="ring-nums" v-for="(pha,index) in list.phases" :key="index">
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
:showWalk="item[0].peddirection"
|
|
29
29
|
:Width="'40'"
|
|
30
30
|
:Height="'40'" /> -->
|
|
31
|
-
<xdr-dir-selector Width="50PX" Height="50PX" :Data="showStyle" :showlist="item"></xdr-dir-selector>
|
|
31
|
+
<xdr-dir-selector Width="50PX" Height="50PX" Widths="50px" Heights="50px" :Data="showStyle" :showlist="item"></xdr-dir-selector>
|
|
32
32
|
<div style="height:65px;display:flex;flex-direction:row;justify-content:center;align-items:end;">
|
|
33
33
|
<div class="current-stage-num" style="width:20%;">{{index + 1}}</div>
|
|
34
34
|
<div style="width:70%;">
|
|
@@ -252,8 +252,8 @@
|
|
|
252
252
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
253
253
|
viewBox="0 0 50 50"
|
|
254
254
|
style="enable-background:new 0 0 50 50;"
|
|
255
|
-
:width="
|
|
256
|
-
:height="
|
|
255
|
+
:width="Widths"
|
|
256
|
+
:height="Heights"
|
|
257
257
|
xml:space="preserve">
|
|
258
258
|
<!-- <style type="text/css">
|
|
259
259
|
.st0{fill:#CBD3DB;}
|
|
@@ -498,6 +498,14 @@ export default {
|
|
|
498
498
|
type: String,
|
|
499
499
|
default: '200px'
|
|
500
500
|
},
|
|
501
|
+
Widths: {
|
|
502
|
+
type: String,
|
|
503
|
+
default: '200px'
|
|
504
|
+
},
|
|
505
|
+
Heights: {
|
|
506
|
+
type: String,
|
|
507
|
+
default: '200px'
|
|
508
|
+
},
|
|
501
509
|
PathWidth: {
|
|
502
510
|
type: Number,
|
|
503
511
|
default: 18
|