@willcgage/module-schematic 0.78.0 → 0.79.0
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.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1842,6 +1842,8 @@ function storedPartToTrackPart(row) {
|
|
|
1842
1842
|
if (frog) part.frogOffset = frog;
|
|
1843
1843
|
const overall = dim(row.overallLengthInches, row.overallLengthSource);
|
|
1844
1844
|
if (overall) part.overallLength = overall;
|
|
1845
|
+
const diverging = dim(row.divergingLengthInches, row.divergingLengthSource);
|
|
1846
|
+
if (diverging) part.divergingLength = diverging;
|
|
1845
1847
|
if (lead) part.lead = lead;
|
|
1846
1848
|
const outer = dim(row.outerRadiusInches, row.radiusSource);
|
|
1847
1849
|
const inner = dim(row.innerRadiusInches, row.radiusSource);
|