@myrmidon/gve-snapshot-rendition 2.0.7 → 2.0.9
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.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.js +375 -377
- package/dist/index.js.map +1 -1
- package/package.json +74 -82
package/dist/index.js
CHANGED
|
@@ -25588,375 +25588,375 @@ class GoldenLayout extends VirtualLayout {
|
|
|
25588
25588
|
* Source: golden-layout@2.6.0 dist/css/goldenlayout-base.css + adapted light theme.
|
|
25589
25589
|
* Update this file when upgrading golden-layout.
|
|
25590
25590
|
*/
|
|
25591
|
-
const GOLDEN_LAYOUT_CSS = `
|
|
25592
|
-
/* ── Golden Layout base ──────────────────────────────────────────────── */
|
|
25593
|
-
.lm_root {
|
|
25594
|
-
position: relative;
|
|
25595
|
-
}
|
|
25596
|
-
.lm_row > .lm_item {
|
|
25597
|
-
float: left;
|
|
25598
|
-
}
|
|
25599
|
-
.lm_content {
|
|
25600
|
-
overflow: hidden;
|
|
25601
|
-
position: relative;
|
|
25602
|
-
}
|
|
25603
|
-
.lm_dragging,
|
|
25604
|
-
.lm_dragging * {
|
|
25605
|
-
cursor: move !important;
|
|
25606
|
-
user-select: none;
|
|
25607
|
-
}
|
|
25608
|
-
.lm_maximised {
|
|
25609
|
-
position: absolute;
|
|
25610
|
-
top: 0;
|
|
25611
|
-
left: 0;
|
|
25612
|
-
z-index: 40;
|
|
25613
|
-
}
|
|
25614
|
-
.lm_maximise_placeholder {
|
|
25615
|
-
display: none;
|
|
25616
|
-
}
|
|
25617
|
-
.lm_splitter {
|
|
25618
|
-
position: relative;
|
|
25619
|
-
z-index: 2;
|
|
25620
|
-
touch-action: none;
|
|
25621
|
-
}
|
|
25622
|
-
.lm_splitter.lm_vertical .lm_drag_handle {
|
|
25623
|
-
width: 100%;
|
|
25624
|
-
position: absolute;
|
|
25625
|
-
cursor: ns-resize;
|
|
25626
|
-
touch-action: none;
|
|
25627
|
-
user-select: none;
|
|
25628
|
-
}
|
|
25629
|
-
.lm_splitter.lm_horizontal {
|
|
25630
|
-
float: left;
|
|
25631
|
-
height: 100%;
|
|
25632
|
-
}
|
|
25633
|
-
.lm_splitter.lm_horizontal .lm_drag_handle {
|
|
25634
|
-
height: 100%;
|
|
25635
|
-
position: absolute;
|
|
25636
|
-
cursor: ew-resize;
|
|
25637
|
-
touch-action: none;
|
|
25638
|
-
user-select: none;
|
|
25639
|
-
}
|
|
25640
|
-
.lm_header {
|
|
25641
|
-
overflow: visible;
|
|
25642
|
-
position: relative;
|
|
25643
|
-
z-index: 1;
|
|
25644
|
-
user-select: none;
|
|
25645
|
-
}
|
|
25646
|
-
.lm_header [class^=lm_] {
|
|
25647
|
-
box-sizing: content-box !important;
|
|
25648
|
-
}
|
|
25649
|
-
.lm_header .lm_controls {
|
|
25650
|
-
position: absolute;
|
|
25651
|
-
right: 3px;
|
|
25652
|
-
display: flex;
|
|
25653
|
-
}
|
|
25654
|
-
.lm_header .lm_controls > * {
|
|
25655
|
-
cursor: pointer;
|
|
25656
|
-
float: left;
|
|
25657
|
-
width: 18px;
|
|
25658
|
-
height: 18px;
|
|
25659
|
-
text-align: center;
|
|
25660
|
-
}
|
|
25661
|
-
.lm_header .lm_tabs {
|
|
25662
|
-
position: absolute;
|
|
25663
|
-
display: flex;
|
|
25664
|
-
}
|
|
25665
|
-
.lm_header .lm_tab {
|
|
25666
|
-
cursor: pointer;
|
|
25667
|
-
float: left;
|
|
25668
|
-
height: 14px;
|
|
25669
|
-
margin-top: 1px;
|
|
25670
|
-
padding: 0px 10px 5px;
|
|
25671
|
-
padding-right: 25px;
|
|
25672
|
-
position: relative;
|
|
25673
|
-
touch-action: none;
|
|
25674
|
-
}
|
|
25675
|
-
.lm_header .lm_tab i {
|
|
25676
|
-
width: 2px;
|
|
25677
|
-
height: 19px;
|
|
25678
|
-
position: absolute;
|
|
25679
|
-
}
|
|
25680
|
-
.lm_header .lm_tab i.lm_left {
|
|
25681
|
-
top: 0;
|
|
25682
|
-
left: -2px;
|
|
25683
|
-
}
|
|
25684
|
-
.lm_header .lm_tab i.lm_right {
|
|
25685
|
-
top: 0;
|
|
25686
|
-
right: -2px;
|
|
25687
|
-
}
|
|
25688
|
-
.lm_header .lm_tab .lm_title {
|
|
25689
|
-
display: inline-block;
|
|
25690
|
-
overflow: hidden;
|
|
25691
|
-
text-overflow: ellipsis;
|
|
25692
|
-
}
|
|
25693
|
-
.lm_header .lm_tab .lm_close_tab {
|
|
25694
|
-
width: 14px;
|
|
25695
|
-
height: 14px;
|
|
25696
|
-
position: absolute;
|
|
25697
|
-
top: 0;
|
|
25698
|
-
right: 0;
|
|
25699
|
-
text-align: center;
|
|
25700
|
-
}
|
|
25701
|
-
.lm_stack {
|
|
25702
|
-
position: relative;
|
|
25703
|
-
}
|
|
25704
|
-
.lm_stack > .lm_items {
|
|
25705
|
-
overflow: hidden;
|
|
25706
|
-
}
|
|
25707
|
-
.lm_stack.lm_left > .lm_items {
|
|
25708
|
-
position: absolute;
|
|
25709
|
-
left: 20px;
|
|
25710
|
-
top: 0;
|
|
25711
|
-
}
|
|
25712
|
-
.lm_stack.lm_right > .lm_items {
|
|
25713
|
-
position: absolute;
|
|
25714
|
-
right: 20px;
|
|
25715
|
-
top: 0;
|
|
25716
|
-
}
|
|
25717
|
-
.lm_stack.lm_right > .lm_header {
|
|
25718
|
-
position: absolute;
|
|
25719
|
-
right: 0;
|
|
25720
|
-
top: 0;
|
|
25721
|
-
}
|
|
25722
|
-
.lm_stack.lm_bottom > .lm_items {
|
|
25723
|
-
position: absolute;
|
|
25724
|
-
bottom: 20px;
|
|
25725
|
-
}
|
|
25726
|
-
.lm_stack.lm_bottom > .lm_header {
|
|
25727
|
-
position: absolute;
|
|
25728
|
-
bottom: 0;
|
|
25729
|
-
}
|
|
25730
|
-
.lm_left.lm_stack .lm_header,
|
|
25731
|
-
.lm_right.lm_stack .lm_header {
|
|
25732
|
-
height: 100%;
|
|
25733
|
-
}
|
|
25734
|
-
.lm_left.lm_dragProxy .lm_header,
|
|
25735
|
-
.lm_right.lm_dragProxy .lm_header,
|
|
25736
|
-
.lm_left.lm_dragProxy .lm_items,
|
|
25737
|
-
.lm_right.lm_dragProxy .lm_items {
|
|
25738
|
-
float: left;
|
|
25739
|
-
}
|
|
25740
|
-
.lm_left.lm_dragProxy .lm_header,
|
|
25741
|
-
.lm_right.lm_dragProxy .lm_header,
|
|
25742
|
-
.lm_left.lm_stack .lm_header,
|
|
25743
|
-
.lm_right.lm_stack .lm_header {
|
|
25744
|
-
width: 20px;
|
|
25745
|
-
vertical-align: top;
|
|
25746
|
-
}
|
|
25747
|
-
.lm_left.lm_dragProxy .lm_header .lm_tabs,
|
|
25748
|
-
.lm_right.lm_dragProxy .lm_header .lm_tabs,
|
|
25749
|
-
.lm_left.lm_stack .lm_header .lm_tabs,
|
|
25750
|
-
.lm_right.lm_stack .lm_header .lm_tabs {
|
|
25751
|
-
transform-origin: left top;
|
|
25752
|
-
top: 0;
|
|
25753
|
-
width: 1000px;
|
|
25754
|
-
}
|
|
25755
|
-
.lm_left.lm_dragProxy .lm_header .lm_controls,
|
|
25756
|
-
.lm_right.lm_dragProxy .lm_header .lm_controls,
|
|
25757
|
-
.lm_left.lm_stack .lm_header .lm_controls,
|
|
25758
|
-
.lm_right.lm_stack .lm_header .lm_controls {
|
|
25759
|
-
bottom: 0;
|
|
25760
|
-
flex-flow: column;
|
|
25761
|
-
}
|
|
25762
|
-
.lm_dragProxy.lm_left .lm_header .lm_tabs,
|
|
25763
|
-
.lm_stack.lm_left .lm_header .lm_tabs {
|
|
25764
|
-
transform: rotate(-90deg) scaleX(-1);
|
|
25765
|
-
left: 0;
|
|
25766
|
-
}
|
|
25767
|
-
.lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,
|
|
25768
|
-
.lm_stack.lm_left .lm_header .lm_tabs .lm_tab {
|
|
25769
|
-
transform: scaleX(-1);
|
|
25770
|
-
margin-top: 1px;
|
|
25771
|
-
}
|
|
25772
|
-
.lm_dragProxy.lm_right .lm_content {
|
|
25773
|
-
float: left;
|
|
25774
|
-
}
|
|
25775
|
-
.lm_dragProxy.lm_right .lm_header .lm_tabs,
|
|
25776
|
-
.lm_stack.lm_right .lm_header .lm_tabs {
|
|
25777
|
-
transform: rotate(90deg) scaleX(1);
|
|
25778
|
-
left: 100%;
|
|
25779
|
-
margin-left: 0;
|
|
25780
|
-
}
|
|
25781
|
-
.lm_dragProxy.lm_right .lm_header .lm_controls,
|
|
25782
|
-
.lm_stack.lm_right .lm_header .lm_controls {
|
|
25783
|
-
left: 3px;
|
|
25784
|
-
}
|
|
25785
|
-
.lm_dragProxy.lm_bottom .lm_header,
|
|
25786
|
-
.lm_stack.lm_bottom .lm_header {
|
|
25787
|
-
width: 100%;
|
|
25788
|
-
}
|
|
25789
|
-
.lm_dragProxy.lm_bottom .lm_header .lm_tab,
|
|
25790
|
-
.lm_stack.lm_bottom .lm_header .lm_tab {
|
|
25791
|
-
margin-top: 0;
|
|
25792
|
-
border-top: none;
|
|
25793
|
-
}
|
|
25794
|
-
.lm_dragProxy.lm_bottom .lm_header .lm_controls,
|
|
25795
|
-
.lm_stack.lm_bottom .lm_header .lm_controls {
|
|
25796
|
-
top: 3px;
|
|
25797
|
-
}
|
|
25798
|
-
.lm_drop_tab_placeholder {
|
|
25799
|
-
float: left;
|
|
25800
|
-
width: 100px;
|
|
25801
|
-
visibility: hidden;
|
|
25802
|
-
}
|
|
25803
|
-
.lm_header .lm_controls .lm_tabdropdown:before {
|
|
25804
|
-
content: '';
|
|
25805
|
-
width: 0;
|
|
25806
|
-
height: 0;
|
|
25807
|
-
vertical-align: middle;
|
|
25808
|
-
display: inline-block;
|
|
25809
|
-
border-top: 5px dashed;
|
|
25810
|
-
border-right: 5px solid transparent;
|
|
25811
|
-
border-left: 5px solid transparent;
|
|
25812
|
-
color: white;
|
|
25813
|
-
}
|
|
25814
|
-
.lm_header .lm_tabdropdown_list {
|
|
25815
|
-
position: absolute;
|
|
25816
|
-
top: 20px;
|
|
25817
|
-
right: 0;
|
|
25818
|
-
z-index: 5;
|
|
25819
|
-
overflow: hidden;
|
|
25820
|
-
}
|
|
25821
|
-
.lm_header .lm_tabdropdown_list .lm_tab {
|
|
25822
|
-
clear: both;
|
|
25823
|
-
padding-right: 10px;
|
|
25824
|
-
margin: 0;
|
|
25825
|
-
}
|
|
25826
|
-
.lm_header .lm_tabdropdown_list .lm_tab .lm_title {
|
|
25827
|
-
width: 100px;
|
|
25828
|
-
}
|
|
25829
|
-
.lm_header .lm_tabdropdown_list .lm_close_tab {
|
|
25830
|
-
display: none !important;
|
|
25831
|
-
}
|
|
25832
|
-
.lm_dragProxy {
|
|
25833
|
-
position: absolute;
|
|
25834
|
-
top: 0;
|
|
25835
|
-
left: 0;
|
|
25836
|
-
z-index: 30;
|
|
25837
|
-
}
|
|
25838
|
-
.lm_dragProxy .lm_header {
|
|
25839
|
-
background: transparent;
|
|
25840
|
-
}
|
|
25841
|
-
.lm_dragProxy .lm_content {
|
|
25842
|
-
border-top: none;
|
|
25843
|
-
overflow: hidden;
|
|
25844
|
-
}
|
|
25845
|
-
.lm_dropTargetIndicator {
|
|
25846
|
-
display: none;
|
|
25847
|
-
position: absolute;
|
|
25848
|
-
z-index: 35;
|
|
25849
|
-
transition: all 200ms ease;
|
|
25850
|
-
}
|
|
25851
|
-
.lm_dropTargetIndicator .lm_inner {
|
|
25852
|
-
width: 100%;
|
|
25853
|
-
height: 100%;
|
|
25854
|
-
position: relative;
|
|
25855
|
-
top: 0;
|
|
25856
|
-
left: 0;
|
|
25857
|
-
}
|
|
25858
|
-
.lm_transition_indicator {
|
|
25859
|
-
display: none;
|
|
25860
|
-
width: 20px;
|
|
25861
|
-
height: 20px;
|
|
25862
|
-
position: absolute;
|
|
25863
|
-
top: 0;
|
|
25864
|
-
left: 0;
|
|
25865
|
-
z-index: 20;
|
|
25866
|
-
}
|
|
25867
|
-
.lm_popin {
|
|
25868
|
-
width: 20px;
|
|
25869
|
-
height: 20px;
|
|
25870
|
-
position: absolute;
|
|
25871
|
-
bottom: 0;
|
|
25872
|
-
right: 0;
|
|
25873
|
-
z-index: 9999;
|
|
25874
|
-
}
|
|
25875
|
-
.lm_popin > * {
|
|
25876
|
-
width: 100%;
|
|
25877
|
-
height: 100%;
|
|
25878
|
-
position: absolute;
|
|
25879
|
-
top: 0;
|
|
25880
|
-
left: 0;
|
|
25881
|
-
}
|
|
25882
|
-
.lm_popin > .lm_bg {
|
|
25883
|
-
z-index: 10;
|
|
25884
|
-
}
|
|
25885
|
-
.lm_popin > .lm_icon {
|
|
25886
|
-
z-index: 20;
|
|
25887
|
-
}
|
|
25888
|
-
|
|
25889
|
-
/* ── Adapted theme (using --gve- CSS variables) ──────────────────────── */
|
|
25890
|
-
.lm_goldenlayout {
|
|
25891
|
-
background: transparent;
|
|
25892
|
-
}
|
|
25893
|
-
.lm_content {
|
|
25894
|
-
background: var(--gve-bg-color, #fafafa);
|
|
25895
|
-
border: none;
|
|
25896
|
-
}
|
|
25897
|
-
.lm_dragProxy .lm_content {
|
|
25898
|
-
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
|
25899
|
-
}
|
|
25900
|
-
.lm_dropTargetIndicator {
|
|
25901
|
-
box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
|
|
25902
|
-
outline: 1px dashed var(--gve-border-color, #ccc);
|
|
25903
|
-
}
|
|
25904
|
-
.lm_dropTargetIndicator .lm_inner {
|
|
25905
|
-
background: #000;
|
|
25906
|
-
opacity: 0.08;
|
|
25907
|
-
}
|
|
25908
|
-
.lm_splitter {
|
|
25909
|
-
background: var(--gve-border-color, #ccc);
|
|
25910
|
-
opacity: 0.4;
|
|
25911
|
-
transition: opacity 200ms ease;
|
|
25912
|
-
}
|
|
25913
|
-
.lm_splitter:hover,
|
|
25914
|
-
.lm_splitter.lm_dragging {
|
|
25915
|
-
background: var(--gve-border-color, #aaa);
|
|
25916
|
-
opacity: 1;
|
|
25917
|
-
}
|
|
25918
|
-
.lm_header {
|
|
25919
|
-
height: 26px;
|
|
25920
|
-
background: var(--gve-toolbar-bg, #f5f5f5);
|
|
25921
|
-
border-bottom: 1px solid var(--gve-border-color, #ddd);
|
|
25922
|
-
}
|
|
25923
|
-
.lm_header .lm_tab {
|
|
25924
|
-
font-family: Arial, sans-serif;
|
|
25925
|
-
font-size: 12px;
|
|
25926
|
-
font-weight: 600;
|
|
25927
|
-
color: var(--gve-text-secondary, #777);
|
|
25928
|
-
background: transparent;
|
|
25929
|
-
margin-right: 2px;
|
|
25930
|
-
padding: 5px 10px 4px;
|
|
25931
|
-
padding-right: 14px;
|
|
25932
|
-
border: none;
|
|
25933
|
-
}
|
|
25934
|
-
.lm_header .lm_tab .lm_title {
|
|
25935
|
-
padding-top: 1px;
|
|
25936
|
-
}
|
|
25937
|
-
.lm_header .lm_tab.lm_active {
|
|
25938
|
-
background: var(--gve-bg-color, #fff);
|
|
25939
|
-
color: var(--gve-text-color, #333);
|
|
25940
|
-
border-bottom: 2px solid var(--gve-primary-color, #007bff);
|
|
25941
|
-
padding-bottom: 3px;
|
|
25942
|
-
}
|
|
25943
|
-
.lm_header .lm_tab:hover {
|
|
25944
|
-
color: var(--gve-text-color, #333);
|
|
25945
|
-
}
|
|
25946
|
-
.lm_header .lm_controls .lm_tabdropdown:before {
|
|
25947
|
-
color: var(--gve-text-color, #333);
|
|
25948
|
-
}
|
|
25949
|
-
.lm_transition_indicator {
|
|
25950
|
-
background: #000;
|
|
25951
|
-
border: 1px dashed #555;
|
|
25952
|
-
}
|
|
25953
|
-
.lm_popin {
|
|
25954
|
-
cursor: pointer;
|
|
25955
|
-
}
|
|
25956
|
-
.lm_popin .lm_bg {
|
|
25957
|
-
background: #000;
|
|
25958
|
-
opacity: 0.7;
|
|
25959
|
-
}
|
|
25591
|
+
const GOLDEN_LAYOUT_CSS = `
|
|
25592
|
+
/* ── Golden Layout base ──────────────────────────────────────────────── */
|
|
25593
|
+
.lm_root {
|
|
25594
|
+
position: relative;
|
|
25595
|
+
}
|
|
25596
|
+
.lm_row > .lm_item {
|
|
25597
|
+
float: left;
|
|
25598
|
+
}
|
|
25599
|
+
.lm_content {
|
|
25600
|
+
overflow: hidden;
|
|
25601
|
+
position: relative;
|
|
25602
|
+
}
|
|
25603
|
+
.lm_dragging,
|
|
25604
|
+
.lm_dragging * {
|
|
25605
|
+
cursor: move !important;
|
|
25606
|
+
user-select: none;
|
|
25607
|
+
}
|
|
25608
|
+
.lm_maximised {
|
|
25609
|
+
position: absolute;
|
|
25610
|
+
top: 0;
|
|
25611
|
+
left: 0;
|
|
25612
|
+
z-index: 40;
|
|
25613
|
+
}
|
|
25614
|
+
.lm_maximise_placeholder {
|
|
25615
|
+
display: none;
|
|
25616
|
+
}
|
|
25617
|
+
.lm_splitter {
|
|
25618
|
+
position: relative;
|
|
25619
|
+
z-index: 2;
|
|
25620
|
+
touch-action: none;
|
|
25621
|
+
}
|
|
25622
|
+
.lm_splitter.lm_vertical .lm_drag_handle {
|
|
25623
|
+
width: 100%;
|
|
25624
|
+
position: absolute;
|
|
25625
|
+
cursor: ns-resize;
|
|
25626
|
+
touch-action: none;
|
|
25627
|
+
user-select: none;
|
|
25628
|
+
}
|
|
25629
|
+
.lm_splitter.lm_horizontal {
|
|
25630
|
+
float: left;
|
|
25631
|
+
height: 100%;
|
|
25632
|
+
}
|
|
25633
|
+
.lm_splitter.lm_horizontal .lm_drag_handle {
|
|
25634
|
+
height: 100%;
|
|
25635
|
+
position: absolute;
|
|
25636
|
+
cursor: ew-resize;
|
|
25637
|
+
touch-action: none;
|
|
25638
|
+
user-select: none;
|
|
25639
|
+
}
|
|
25640
|
+
.lm_header {
|
|
25641
|
+
overflow: visible;
|
|
25642
|
+
position: relative;
|
|
25643
|
+
z-index: 1;
|
|
25644
|
+
user-select: none;
|
|
25645
|
+
}
|
|
25646
|
+
.lm_header [class^=lm_] {
|
|
25647
|
+
box-sizing: content-box !important;
|
|
25648
|
+
}
|
|
25649
|
+
.lm_header .lm_controls {
|
|
25650
|
+
position: absolute;
|
|
25651
|
+
right: 3px;
|
|
25652
|
+
display: flex;
|
|
25653
|
+
}
|
|
25654
|
+
.lm_header .lm_controls > * {
|
|
25655
|
+
cursor: pointer;
|
|
25656
|
+
float: left;
|
|
25657
|
+
width: 18px;
|
|
25658
|
+
height: 18px;
|
|
25659
|
+
text-align: center;
|
|
25660
|
+
}
|
|
25661
|
+
.lm_header .lm_tabs {
|
|
25662
|
+
position: absolute;
|
|
25663
|
+
display: flex;
|
|
25664
|
+
}
|
|
25665
|
+
.lm_header .lm_tab {
|
|
25666
|
+
cursor: pointer;
|
|
25667
|
+
float: left;
|
|
25668
|
+
height: 14px;
|
|
25669
|
+
margin-top: 1px;
|
|
25670
|
+
padding: 0px 10px 5px;
|
|
25671
|
+
padding-right: 25px;
|
|
25672
|
+
position: relative;
|
|
25673
|
+
touch-action: none;
|
|
25674
|
+
}
|
|
25675
|
+
.lm_header .lm_tab i {
|
|
25676
|
+
width: 2px;
|
|
25677
|
+
height: 19px;
|
|
25678
|
+
position: absolute;
|
|
25679
|
+
}
|
|
25680
|
+
.lm_header .lm_tab i.lm_left {
|
|
25681
|
+
top: 0;
|
|
25682
|
+
left: -2px;
|
|
25683
|
+
}
|
|
25684
|
+
.lm_header .lm_tab i.lm_right {
|
|
25685
|
+
top: 0;
|
|
25686
|
+
right: -2px;
|
|
25687
|
+
}
|
|
25688
|
+
.lm_header .lm_tab .lm_title {
|
|
25689
|
+
display: inline-block;
|
|
25690
|
+
overflow: hidden;
|
|
25691
|
+
text-overflow: ellipsis;
|
|
25692
|
+
}
|
|
25693
|
+
.lm_header .lm_tab .lm_close_tab {
|
|
25694
|
+
width: 14px;
|
|
25695
|
+
height: 14px;
|
|
25696
|
+
position: absolute;
|
|
25697
|
+
top: 0;
|
|
25698
|
+
right: 0;
|
|
25699
|
+
text-align: center;
|
|
25700
|
+
}
|
|
25701
|
+
.lm_stack {
|
|
25702
|
+
position: relative;
|
|
25703
|
+
}
|
|
25704
|
+
.lm_stack > .lm_items {
|
|
25705
|
+
overflow: hidden;
|
|
25706
|
+
}
|
|
25707
|
+
.lm_stack.lm_left > .lm_items {
|
|
25708
|
+
position: absolute;
|
|
25709
|
+
left: 20px;
|
|
25710
|
+
top: 0;
|
|
25711
|
+
}
|
|
25712
|
+
.lm_stack.lm_right > .lm_items {
|
|
25713
|
+
position: absolute;
|
|
25714
|
+
right: 20px;
|
|
25715
|
+
top: 0;
|
|
25716
|
+
}
|
|
25717
|
+
.lm_stack.lm_right > .lm_header {
|
|
25718
|
+
position: absolute;
|
|
25719
|
+
right: 0;
|
|
25720
|
+
top: 0;
|
|
25721
|
+
}
|
|
25722
|
+
.lm_stack.lm_bottom > .lm_items {
|
|
25723
|
+
position: absolute;
|
|
25724
|
+
bottom: 20px;
|
|
25725
|
+
}
|
|
25726
|
+
.lm_stack.lm_bottom > .lm_header {
|
|
25727
|
+
position: absolute;
|
|
25728
|
+
bottom: 0;
|
|
25729
|
+
}
|
|
25730
|
+
.lm_left.lm_stack .lm_header,
|
|
25731
|
+
.lm_right.lm_stack .lm_header {
|
|
25732
|
+
height: 100%;
|
|
25733
|
+
}
|
|
25734
|
+
.lm_left.lm_dragProxy .lm_header,
|
|
25735
|
+
.lm_right.lm_dragProxy .lm_header,
|
|
25736
|
+
.lm_left.lm_dragProxy .lm_items,
|
|
25737
|
+
.lm_right.lm_dragProxy .lm_items {
|
|
25738
|
+
float: left;
|
|
25739
|
+
}
|
|
25740
|
+
.lm_left.lm_dragProxy .lm_header,
|
|
25741
|
+
.lm_right.lm_dragProxy .lm_header,
|
|
25742
|
+
.lm_left.lm_stack .lm_header,
|
|
25743
|
+
.lm_right.lm_stack .lm_header {
|
|
25744
|
+
width: 20px;
|
|
25745
|
+
vertical-align: top;
|
|
25746
|
+
}
|
|
25747
|
+
.lm_left.lm_dragProxy .lm_header .lm_tabs,
|
|
25748
|
+
.lm_right.lm_dragProxy .lm_header .lm_tabs,
|
|
25749
|
+
.lm_left.lm_stack .lm_header .lm_tabs,
|
|
25750
|
+
.lm_right.lm_stack .lm_header .lm_tabs {
|
|
25751
|
+
transform-origin: left top;
|
|
25752
|
+
top: 0;
|
|
25753
|
+
width: 1000px;
|
|
25754
|
+
}
|
|
25755
|
+
.lm_left.lm_dragProxy .lm_header .lm_controls,
|
|
25756
|
+
.lm_right.lm_dragProxy .lm_header .lm_controls,
|
|
25757
|
+
.lm_left.lm_stack .lm_header .lm_controls,
|
|
25758
|
+
.lm_right.lm_stack .lm_header .lm_controls {
|
|
25759
|
+
bottom: 0;
|
|
25760
|
+
flex-flow: column;
|
|
25761
|
+
}
|
|
25762
|
+
.lm_dragProxy.lm_left .lm_header .lm_tabs,
|
|
25763
|
+
.lm_stack.lm_left .lm_header .lm_tabs {
|
|
25764
|
+
transform: rotate(-90deg) scaleX(-1);
|
|
25765
|
+
left: 0;
|
|
25766
|
+
}
|
|
25767
|
+
.lm_dragProxy.lm_left .lm_header .lm_tabs .lm_tab,
|
|
25768
|
+
.lm_stack.lm_left .lm_header .lm_tabs .lm_tab {
|
|
25769
|
+
transform: scaleX(-1);
|
|
25770
|
+
margin-top: 1px;
|
|
25771
|
+
}
|
|
25772
|
+
.lm_dragProxy.lm_right .lm_content {
|
|
25773
|
+
float: left;
|
|
25774
|
+
}
|
|
25775
|
+
.lm_dragProxy.lm_right .lm_header .lm_tabs,
|
|
25776
|
+
.lm_stack.lm_right .lm_header .lm_tabs {
|
|
25777
|
+
transform: rotate(90deg) scaleX(1);
|
|
25778
|
+
left: 100%;
|
|
25779
|
+
margin-left: 0;
|
|
25780
|
+
}
|
|
25781
|
+
.lm_dragProxy.lm_right .lm_header .lm_controls,
|
|
25782
|
+
.lm_stack.lm_right .lm_header .lm_controls {
|
|
25783
|
+
left: 3px;
|
|
25784
|
+
}
|
|
25785
|
+
.lm_dragProxy.lm_bottom .lm_header,
|
|
25786
|
+
.lm_stack.lm_bottom .lm_header {
|
|
25787
|
+
width: 100%;
|
|
25788
|
+
}
|
|
25789
|
+
.lm_dragProxy.lm_bottom .lm_header .lm_tab,
|
|
25790
|
+
.lm_stack.lm_bottom .lm_header .lm_tab {
|
|
25791
|
+
margin-top: 0;
|
|
25792
|
+
border-top: none;
|
|
25793
|
+
}
|
|
25794
|
+
.lm_dragProxy.lm_bottom .lm_header .lm_controls,
|
|
25795
|
+
.lm_stack.lm_bottom .lm_header .lm_controls {
|
|
25796
|
+
top: 3px;
|
|
25797
|
+
}
|
|
25798
|
+
.lm_drop_tab_placeholder {
|
|
25799
|
+
float: left;
|
|
25800
|
+
width: 100px;
|
|
25801
|
+
visibility: hidden;
|
|
25802
|
+
}
|
|
25803
|
+
.lm_header .lm_controls .lm_tabdropdown:before {
|
|
25804
|
+
content: '';
|
|
25805
|
+
width: 0;
|
|
25806
|
+
height: 0;
|
|
25807
|
+
vertical-align: middle;
|
|
25808
|
+
display: inline-block;
|
|
25809
|
+
border-top: 5px dashed;
|
|
25810
|
+
border-right: 5px solid transparent;
|
|
25811
|
+
border-left: 5px solid transparent;
|
|
25812
|
+
color: white;
|
|
25813
|
+
}
|
|
25814
|
+
.lm_header .lm_tabdropdown_list {
|
|
25815
|
+
position: absolute;
|
|
25816
|
+
top: 20px;
|
|
25817
|
+
right: 0;
|
|
25818
|
+
z-index: 5;
|
|
25819
|
+
overflow: hidden;
|
|
25820
|
+
}
|
|
25821
|
+
.lm_header .lm_tabdropdown_list .lm_tab {
|
|
25822
|
+
clear: both;
|
|
25823
|
+
padding-right: 10px;
|
|
25824
|
+
margin: 0;
|
|
25825
|
+
}
|
|
25826
|
+
.lm_header .lm_tabdropdown_list .lm_tab .lm_title {
|
|
25827
|
+
width: 100px;
|
|
25828
|
+
}
|
|
25829
|
+
.lm_header .lm_tabdropdown_list .lm_close_tab {
|
|
25830
|
+
display: none !important;
|
|
25831
|
+
}
|
|
25832
|
+
.lm_dragProxy {
|
|
25833
|
+
position: absolute;
|
|
25834
|
+
top: 0;
|
|
25835
|
+
left: 0;
|
|
25836
|
+
z-index: 30;
|
|
25837
|
+
}
|
|
25838
|
+
.lm_dragProxy .lm_header {
|
|
25839
|
+
background: transparent;
|
|
25840
|
+
}
|
|
25841
|
+
.lm_dragProxy .lm_content {
|
|
25842
|
+
border-top: none;
|
|
25843
|
+
overflow: hidden;
|
|
25844
|
+
}
|
|
25845
|
+
.lm_dropTargetIndicator {
|
|
25846
|
+
display: none;
|
|
25847
|
+
position: absolute;
|
|
25848
|
+
z-index: 35;
|
|
25849
|
+
transition: all 200ms ease;
|
|
25850
|
+
}
|
|
25851
|
+
.lm_dropTargetIndicator .lm_inner {
|
|
25852
|
+
width: 100%;
|
|
25853
|
+
height: 100%;
|
|
25854
|
+
position: relative;
|
|
25855
|
+
top: 0;
|
|
25856
|
+
left: 0;
|
|
25857
|
+
}
|
|
25858
|
+
.lm_transition_indicator {
|
|
25859
|
+
display: none;
|
|
25860
|
+
width: 20px;
|
|
25861
|
+
height: 20px;
|
|
25862
|
+
position: absolute;
|
|
25863
|
+
top: 0;
|
|
25864
|
+
left: 0;
|
|
25865
|
+
z-index: 20;
|
|
25866
|
+
}
|
|
25867
|
+
.lm_popin {
|
|
25868
|
+
width: 20px;
|
|
25869
|
+
height: 20px;
|
|
25870
|
+
position: absolute;
|
|
25871
|
+
bottom: 0;
|
|
25872
|
+
right: 0;
|
|
25873
|
+
z-index: 9999;
|
|
25874
|
+
}
|
|
25875
|
+
.lm_popin > * {
|
|
25876
|
+
width: 100%;
|
|
25877
|
+
height: 100%;
|
|
25878
|
+
position: absolute;
|
|
25879
|
+
top: 0;
|
|
25880
|
+
left: 0;
|
|
25881
|
+
}
|
|
25882
|
+
.lm_popin > .lm_bg {
|
|
25883
|
+
z-index: 10;
|
|
25884
|
+
}
|
|
25885
|
+
.lm_popin > .lm_icon {
|
|
25886
|
+
z-index: 20;
|
|
25887
|
+
}
|
|
25888
|
+
|
|
25889
|
+
/* ── Adapted theme (using --gve- CSS variables) ──────────────────────── */
|
|
25890
|
+
.lm_goldenlayout {
|
|
25891
|
+
background: transparent;
|
|
25892
|
+
}
|
|
25893
|
+
.lm_content {
|
|
25894
|
+
background: var(--gve-bg-color, #fafafa);
|
|
25895
|
+
border: none;
|
|
25896
|
+
}
|
|
25897
|
+
.lm_dragProxy .lm_content {
|
|
25898
|
+
box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
|
25899
|
+
}
|
|
25900
|
+
.lm_dropTargetIndicator {
|
|
25901
|
+
box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
|
|
25902
|
+
outline: 1px dashed var(--gve-border-color, #ccc);
|
|
25903
|
+
}
|
|
25904
|
+
.lm_dropTargetIndicator .lm_inner {
|
|
25905
|
+
background: #000;
|
|
25906
|
+
opacity: 0.08;
|
|
25907
|
+
}
|
|
25908
|
+
.lm_splitter {
|
|
25909
|
+
background: var(--gve-border-color, #ccc);
|
|
25910
|
+
opacity: 0.4;
|
|
25911
|
+
transition: opacity 200ms ease;
|
|
25912
|
+
}
|
|
25913
|
+
.lm_splitter:hover,
|
|
25914
|
+
.lm_splitter.lm_dragging {
|
|
25915
|
+
background: var(--gve-border-color, #aaa);
|
|
25916
|
+
opacity: 1;
|
|
25917
|
+
}
|
|
25918
|
+
.lm_header {
|
|
25919
|
+
height: 26px;
|
|
25920
|
+
background: var(--gve-toolbar-bg, #f5f5f5);
|
|
25921
|
+
border-bottom: 1px solid var(--gve-border-color, #ddd);
|
|
25922
|
+
}
|
|
25923
|
+
.lm_header .lm_tab {
|
|
25924
|
+
font-family: Arial, sans-serif;
|
|
25925
|
+
font-size: 12px;
|
|
25926
|
+
font-weight: 600;
|
|
25927
|
+
color: var(--gve-text-secondary, #777);
|
|
25928
|
+
background: transparent;
|
|
25929
|
+
margin-right: 2px;
|
|
25930
|
+
padding: 5px 10px 4px;
|
|
25931
|
+
padding-right: 14px;
|
|
25932
|
+
border: none;
|
|
25933
|
+
}
|
|
25934
|
+
.lm_header .lm_tab .lm_title {
|
|
25935
|
+
padding-top: 1px;
|
|
25936
|
+
}
|
|
25937
|
+
.lm_header .lm_tab.lm_active {
|
|
25938
|
+
background: var(--gve-bg-color, #fff);
|
|
25939
|
+
color: var(--gve-text-color, #333);
|
|
25940
|
+
border-bottom: 2px solid var(--gve-primary-color, #007bff);
|
|
25941
|
+
padding-bottom: 3px;
|
|
25942
|
+
}
|
|
25943
|
+
.lm_header .lm_tab:hover {
|
|
25944
|
+
color: var(--gve-text-color, #333);
|
|
25945
|
+
}
|
|
25946
|
+
.lm_header .lm_controls .lm_tabdropdown:before {
|
|
25947
|
+
color: var(--gve-text-color, #333);
|
|
25948
|
+
}
|
|
25949
|
+
.lm_transition_indicator {
|
|
25950
|
+
background: #000;
|
|
25951
|
+
border: 1px dashed #555;
|
|
25952
|
+
}
|
|
25953
|
+
.lm_popin {
|
|
25954
|
+
cursor: pointer;
|
|
25955
|
+
}
|
|
25956
|
+
.lm_popin .lm_bg {
|
|
25957
|
+
background: #000;
|
|
25958
|
+
opacity: 0.7;
|
|
25959
|
+
}
|
|
25960
25960
|
`;
|
|
25961
25961
|
|
|
25962
25962
|
/**
|
|
@@ -25971,7 +25971,7 @@ class GveSnapshotRendition extends HTMLElement {
|
|
|
25971
25971
|
* of the web component is loaded.
|
|
25972
25972
|
*/
|
|
25973
25973
|
static get version() {
|
|
25974
|
-
return "2.0.
|
|
25974
|
+
return "2.0.9";
|
|
25975
25975
|
}
|
|
25976
25976
|
constructor() {
|
|
25977
25977
|
super();
|
|
@@ -40952,7 +40952,7 @@ function requireD () {
|
|
|
40952
40952
|
+ 'pragma private protected public pure ref return scope shared static struct '
|
|
40953
40953
|
+ 'super switch synchronized template this throw try typedef typeid typeof union '
|
|
40954
40954
|
+ 'unittest version void volatile while with __FILE__ __LINE__ __gshared|10 '
|
|
40955
|
-
+ '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ 2.0.
|
|
40955
|
+
+ '__thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ 2.0.9',
|
|
40956
40956
|
built_in:
|
|
40957
40957
|
'bool cdouble cent cfloat char creal dchar delegate double dstring float function '
|
|
40958
40958
|
+ 'idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar '
|
|
@@ -92828,9 +92828,8 @@ class GveHintDesigner extends HTMLElement {
|
|
|
92828
92828
|
syncSvgScroll() {
|
|
92829
92829
|
if (!this._svgTextarea || !this._svgHighlightContainer)
|
|
92830
92830
|
return;
|
|
92831
|
-
|
|
92832
|
-
|
|
92833
|
-
this._svgHighlightContainer.style.transform = `translate(-${scrollLeft}px, -${scrollTop}px)`;
|
|
92831
|
+
this._svgHighlightContainer.scrollTop = this._svgTextarea.scrollTop;
|
|
92832
|
+
this._svgHighlightContainer.scrollLeft = this._svgTextarea.scrollLeft;
|
|
92834
92833
|
}
|
|
92835
92834
|
/**
|
|
92836
92835
|
* Sync scroll position for JS textarea and highlight container.
|
|
@@ -92838,9 +92837,8 @@ class GveHintDesigner extends HTMLElement {
|
|
|
92838
92837
|
syncJsScroll() {
|
|
92839
92838
|
if (!this._jsTextarea || !this._jsHighlightContainer)
|
|
92840
92839
|
return;
|
|
92841
|
-
|
|
92842
|
-
|
|
92843
|
-
this._jsHighlightContainer.style.transform = `translate(-${scrollLeft}px, -${scrollTop}px)`;
|
|
92840
|
+
this._jsHighlightContainer.scrollTop = this._jsTextarea.scrollTop;
|
|
92841
|
+
this._jsHighlightContainer.scrollLeft = this._jsTextarea.scrollLeft;
|
|
92844
92842
|
}
|
|
92845
92843
|
/**
|
|
92846
92844
|
* Fire a custom event.
|