fl-web-component 1.3.2 → 1.3.3
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";#fl-model[data-v-
|
|
1
|
+
@charset "UTF-8";#fl-model[data-v-e9c014d6]{width:100%;height:100%;cursor:pointer}[data-v-e9c014d6] .tips-label{width:60px;color:#000;font:12px Helvetica;margin-top:-3em;padding:5px;text-align:center;vertical-align:middle;background-color:khaki}[data-v-e9c014d6] .measure-label{max-width:100px;margin-top:-1em;border:10px;border-radius:5px;padding:3px 10px;cursor:pointer;color:#009bea;background-color:#f4f4f4;box-shadow:0 1px 3px 1px rgba(0,0,0,.25)}[data-v-e9c014d6] .circle-tag{width:10px;height:10px;margin-top:5px;border-radius:50%;background-color:#ff5000}[data-v-e9c014d6] .measure-label-font{word-break:break-all}[data-v-e9c014d6] .mark-label-img{padding-top:5px;width:20px;height:20px}#konva-container[data-v-95b325ba]{z-index:3;width:100%;height:100%;cursor:pointer;overflow:hidden}span[data-v-f547d5c6]{font-weight:bolder}.text[data-v-f547d5c6]{margin-top:20px}.line[data-v-f547d5c6]{border-bottom:1px solid #dcdfe6;margin:20px 0}.center[data-v-f547d5c6]{display:flex;flex-direction:column;align-items:center}.center .cen span[data-v-f547d5c6],.center .top span[data-v-f547d5c6]{color:"#53a8ff";display:inline-block;width:30px;height:30px;text-align:center;line-height:30px;border:1px solid;padding:5px;margin-bottom:10px;background-color:#e9f3ff}.center .cen span[data-v-f547d5c6]{margin:10px}.button[data-v-f547d5c6]{display:flex;justify-content:end;margin-top:20px}@font-face{font-family:iconfont;src:url(//at.alicdn.com/t/font_3226805_qqvo3ag3r8.woff2?t=1646635700216) format("woff2"),url(//at.alicdn.com/t/font_3226805_qqvo3ag3r8.woff?t=1646635700216) format("woff"),url(//at.alicdn.com/t/font_3226805_qqvo3ag3r8.ttf?t=1646635700216) format("truetype")}.iconfont[data-v-f547d5c6]{font-family:iconfont!important;font-size:50px;font-style:normal;color:"#53a8ff";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-shubiao[data-v-f547d5c6]:before{content:""}#svg-tigger[data-v-0ec35ee4]{cursor:pointer;height:100%;width:100%}
|
package/package.json
CHANGED
|
@@ -1053,7 +1053,7 @@
|
|
|
1053
1053
|
gui
|
|
1054
1054
|
.add(guiParams, 'x轴')
|
|
1055
1055
|
.min(minValue.x)
|
|
1056
|
-
.max(
|
|
1056
|
+
.max(guiParams['x轴'])
|
|
1057
1057
|
.onChange(d => {
|
|
1058
1058
|
objClipp1[0].constant = d;
|
|
1059
1059
|
objClipp2 && (objClipp2[0].constant = d);
|
|
@@ -1061,7 +1061,7 @@
|
|
|
1061
1061
|
gui
|
|
1062
1062
|
.add(guiParams, 'y轴')
|
|
1063
1063
|
.min(minValue.y)
|
|
1064
|
-
.max(
|
|
1064
|
+
.max(guiParams['y轴'])
|
|
1065
1065
|
.onChange(d => {
|
|
1066
1066
|
objClipp1[2].constant = d;
|
|
1067
1067
|
objClipp2 && (objClipp2[2].constant = d);
|
|
@@ -1069,7 +1069,7 @@
|
|
|
1069
1069
|
gui
|
|
1070
1070
|
.add(guiParams, 'z轴')
|
|
1071
1071
|
.min(minValue.z)
|
|
1072
|
-
.max(
|
|
1072
|
+
.max(guiParams['z轴'])
|
|
1073
1073
|
.onChange(d => {
|
|
1074
1074
|
objClipp1[1].constant = d;
|
|
1075
1075
|
});
|
|
@@ -1544,13 +1544,14 @@
|
|
|
1544
1544
|
cursor: pointer;
|
|
1545
1545
|
}
|
|
1546
1546
|
::v-deep .tips-label {
|
|
1547
|
-
width:
|
|
1548
|
-
color:
|
|
1547
|
+
width: 60px;
|
|
1548
|
+
color: #000;
|
|
1549
1549
|
font: 12px Helvetica;
|
|
1550
|
+
margin-top: -3em;
|
|
1550
1551
|
padding: 5px;
|
|
1551
1552
|
text-align: center;
|
|
1552
1553
|
vertical-align: middle;
|
|
1553
|
-
background-color:
|
|
1554
|
+
background-color: khaki;
|
|
1554
1555
|
}
|
|
1555
1556
|
|
|
1556
1557
|
::v-deep .measure-label {
|