@fleet-frontend/mower-maps 0.2.0 → 0.2.1
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/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -16144,7 +16144,7 @@ function getMinSvgDistanceByModel(modelType) {
|
|
|
16144
16144
|
// 结构数据的数据生成逻辑是 1/0 << 8 + height;
|
|
16145
16145
|
function convertHeightsetToParams(value) {
|
|
16146
16146
|
const base = 1 << 8;
|
|
16147
|
-
if (value
|
|
16147
|
+
if (value >= base) {
|
|
16148
16148
|
return {
|
|
16149
16149
|
isFlowGlobal: 1,
|
|
16150
16150
|
cuttingHeight: value - base,
|
package/dist/index.js
CHANGED
|
@@ -16164,7 +16164,7 @@ function getMinSvgDistanceByModel(modelType) {
|
|
|
16164
16164
|
// 结构数据的数据生成逻辑是 1/0 << 8 + height;
|
|
16165
16165
|
function convertHeightsetToParams(value) {
|
|
16166
16166
|
const base = 1 << 8;
|
|
16167
|
-
if (value
|
|
16167
|
+
if (value >= base) {
|
|
16168
16168
|
return {
|
|
16169
16169
|
isFlowGlobal: 1,
|
|
16170
16170
|
cuttingHeight: value - base,
|