@duet3d/monacotokens 3.7.0-alpha.4 → 3.7.0-alpha.6
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/gcodes/gcodes.json +11 -11
- package/dist/providers.js +4 -3
- package/package.json +1 -1
package/dist/gcodes/gcodes.json
CHANGED
|
@@ -641,6 +641,14 @@
|
|
|
641
641
|
"code": "G68",
|
|
642
642
|
"summary": "Coordinate rotation",
|
|
643
643
|
"parameters": [
|
|
644
|
+
{
|
|
645
|
+
"letter": "X",
|
|
646
|
+
"description": "X centre coordinate to rotate about (mm)"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"letter": "Y",
|
|
650
|
+
"description": "Y centre coordinate to rotate about (mm)"
|
|
651
|
+
},
|
|
644
652
|
{
|
|
645
653
|
"letter": "A",
|
|
646
654
|
"description": "First centre coordinate in the selected plane (mm)"
|
|
@@ -651,15 +659,7 @@
|
|
|
651
659
|
},
|
|
652
660
|
{
|
|
653
661
|
"letter": "R",
|
|
654
|
-
"description": "Rotation angle (degrees, positive = anticlockwise)"
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
"letter": "I",
|
|
658
|
-
"description": "Incremental mode: 1 = add to existing rotation"
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"letter": "X",
|
|
662
|
-
"description": "Centre coordinates to rotate about (mm)"
|
|
662
|
+
"description": "Rotation angle (degrees, positive = anticlockwise when viewing the selected plane from above)"
|
|
663
663
|
}
|
|
664
664
|
]
|
|
665
665
|
},
|
|
@@ -1225,11 +1225,11 @@
|
|
|
1225
1225
|
"parameters": [
|
|
1226
1226
|
{
|
|
1227
1227
|
"letter": "P",
|
|
1228
|
-
"description": "Macro
|
|
1228
|
+
"description": "Macro filename (default folder is /sys if no path is specified)"
|
|
1229
1229
|
},
|
|
1230
1230
|
{
|
|
1231
1231
|
"letter": "R",
|
|
1232
|
-
"description": "
|
|
1232
|
+
"description": "When used inside a macro without P, marks the macro as restartable from the beginning after a pause (RRF 3.4+)"
|
|
1233
1233
|
}
|
|
1234
1234
|
]
|
|
1235
1235
|
},
|
package/dist/providers.js
CHANGED
|
@@ -668,10 +668,11 @@ function installSuggestWidgetWidth() {
|
|
|
668
668
|
// content, or a bullet/numbered list). Single-line hovers (just one `<p>`) don't need it and the
|
|
669
669
|
// extra gutter would look off-balance against the natural left margin
|
|
670
670
|
".monaco-editor .monaco-hover .monaco-hover-content:has(p + p, ul, ol), .monaco-editor-hover .monaco-hover-content:has(p + p, ul, ol) { padding-right: 12px; }",
|
|
671
|
-
// Pin <li>
|
|
671
|
+
// Pin <li> to a clean 19 px integer floor (matches the parent's pinned line-height). Browser default
|
|
672
672
|
// padding/margin gives a fractional ~17.4167 px row that, in lists with many items, accumulates into a
|
|
673
|
-
// half-pixel overflow at the bottom and brings back the phantom scrollbar
|
|
674
|
-
|
|
673
|
+
// half-pixel overflow at the bottom and brings back the phantom scrollbar. min-height (not height) so
|
|
674
|
+
// long parameter descriptions that wrap can grow vertically instead of overlapping the next item
|
|
675
|
+
".monaco-editor .monaco-hover li, .monaco-editor-hover li { min-height: 19px; box-sizing: border-box; }"
|
|
675
676
|
].join(" ");
|
|
676
677
|
document.head.appendChild(style);
|
|
677
678
|
suggestWidgetStyleInstalled = true;
|
package/package.json
CHANGED