openatc-components 0.1.48 → 0.1.49
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/laneEditPanel.vue +4 -0
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +4 -0
- package/src/i18n/language/zh.js +4 -0
- package/src/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +4 -0
- package/static/styles/channelizatioon.scss +14 -0
- package/src/node_modules/.package_versions.json +0 -1
package/package.json
CHANGED
package/src/i18n/language/en.js
CHANGED
|
@@ -1184,6 +1184,10 @@ const en = {
|
|
|
1184
1184
|
'westward': 'Westward',
|
|
1185
1185
|
'southward': 'Southward',
|
|
1186
1186
|
'northward': 'Northward',
|
|
1187
|
+
'NE': 'NE',
|
|
1188
|
+
'SE': 'SE',
|
|
1189
|
+
'SW': 'SW',
|
|
1190
|
+
'NW': 'NW',
|
|
1187
1191
|
'etped': 'East-Top',
|
|
1188
1192
|
'ebped': 'East-Bottom',
|
|
1189
1193
|
'wtped': 'West-Top',
|
package/src/i18n/language/zh.js
CHANGED
|
@@ -39,6 +39,10 @@
|
|
|
39
39
|
<el-radio :label="2">{{$t('openatccomponents.channelizationmap.westward')}}</el-radio>
|
|
40
40
|
<el-radio :label="3">{{$t('openatccomponents.channelizationmap.southward')}}</el-radio>
|
|
41
41
|
<el-radio :label="4">{{$t('openatccomponents.channelizationmap.northward')}}</el-radio>
|
|
42
|
+
<el-radio :label="5">{{$t('openatccomponents.channelizationmap.NE')}}</el-radio>
|
|
43
|
+
<el-radio :label="6">{{$t('openatccomponents.channelizationmap.SE')}}</el-radio>
|
|
44
|
+
<el-radio :label="7">{{$t('openatccomponents.channelizationmap.SW')}}</el-radio>
|
|
45
|
+
<el-radio :label="8">{{$t('openatccomponents.channelizationmap.NW')}}</el-radio>
|
|
42
46
|
</el-radio-group>
|
|
43
47
|
</div>
|
|
44
48
|
</div>
|
|
@@ -259,6 +259,20 @@
|
|
|
259
259
|
.overlap-associated {
|
|
260
260
|
margin-bottom: 30px;
|
|
261
261
|
}
|
|
262
|
+
.position {
|
|
263
|
+
.position-options {
|
|
264
|
+
.el-radio-group {
|
|
265
|
+
width: 90%;
|
|
266
|
+
.el-radio {
|
|
267
|
+
margin-bottom: 10PX;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
.el-radio__label {
|
|
271
|
+
display: inline-block;
|
|
272
|
+
width: 80PX;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
262
276
|
}
|
|
263
277
|
.phase-associated-component {
|
|
264
278
|
width: 100%;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|