@codingame/monaco-vscode-bulk-edit-service-override 20.1.1 → 20.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-bulk-edit-service-override",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - bulk-edit service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.
|
|
19
|
-
"@codingame/monaco-vscode-670aae94-7f88-54d7-90ea-6fcbef423557-common": "20.
|
|
20
|
-
"@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common": "20.
|
|
21
|
-
"@codingame/monaco-vscode-api": "20.
|
|
22
|
-
"@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.
|
|
18
|
+
"@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "20.2.1",
|
|
19
|
+
"@codingame/monaco-vscode-670aae94-7f88-54d7-90ea-6fcbef423557-common": "20.2.1",
|
|
20
|
+
"@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common": "20.2.1",
|
|
21
|
+
"@codingame/monaco-vscode-api": "20.2.1",
|
|
22
|
+
"@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.2.1"
|
|
23
23
|
},
|
|
24
24
|
"main": "index.js",
|
|
25
25
|
"module": "index.js",
|
|
@@ -1,66 +1,86 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
|
|
1
6
|
.monaco-workbench .bulk-edit-panel .highlight.insert {
|
|
2
7
|
background-color: var(--vscode-diffEditor-insertedTextBackground);
|
|
3
8
|
}
|
|
9
|
+
|
|
4
10
|
.monaco-workbench .bulk-edit-panel .highlight.remove {
|
|
5
11
|
text-decoration: line-through;
|
|
6
12
|
background-color: var(--vscode-diffEditor-removedTextBackground);
|
|
7
13
|
}
|
|
14
|
+
|
|
8
15
|
.monaco-workbench .bulk-edit-panel .message {
|
|
9
16
|
padding: 10px 20px
|
|
10
17
|
}
|
|
18
|
+
|
|
11
19
|
.monaco-workbench .bulk-edit-panel[data-state="message"] .message,
|
|
12
20
|
.monaco-workbench .bulk-edit-panel[data-state="data"] .content
|
|
13
21
|
{
|
|
14
22
|
display: flex;
|
|
15
23
|
}
|
|
24
|
+
|
|
16
25
|
.monaco-workbench .bulk-edit-panel[data-state="data"] .message,
|
|
17
26
|
.monaco-workbench .bulk-edit-panel[data-state="message"] .content
|
|
18
27
|
{
|
|
19
28
|
display: none;
|
|
20
29
|
}
|
|
30
|
+
|
|
21
31
|
.monaco-workbench .bulk-edit-panel .content {
|
|
22
32
|
display: flex;
|
|
23
33
|
flex-direction: column;
|
|
24
34
|
justify-content: space-between;
|
|
25
35
|
}
|
|
36
|
+
|
|
26
37
|
.monaco-workbench .bulk-edit-panel .content .buttons {
|
|
27
38
|
padding-left: 20px;
|
|
28
39
|
padding-top: 10px;
|
|
29
40
|
}
|
|
41
|
+
|
|
30
42
|
.monaco-workbench .bulk-edit-panel .content .buttons .monaco-button {
|
|
31
43
|
display: inline-flex;
|
|
32
44
|
width: inherit;
|
|
33
45
|
margin: 0 4px;
|
|
34
46
|
padding: 4px 8px;
|
|
35
47
|
}
|
|
48
|
+
|
|
36
49
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents {
|
|
37
50
|
display: flex;
|
|
38
51
|
}
|
|
52
|
+
|
|
39
53
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents .edit-checkbox {
|
|
40
54
|
align-self: center;
|
|
41
55
|
}
|
|
56
|
+
|
|
42
57
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents .edit-checkbox.disabled {
|
|
43
58
|
opacity: .5;
|
|
44
59
|
}
|
|
60
|
+
|
|
45
61
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents .monaco-icon-label.delete .monaco-icon-label-container {
|
|
46
62
|
text-decoration: line-through;
|
|
47
63
|
}
|
|
64
|
+
|
|
48
65
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents .details {
|
|
49
66
|
margin-left: .5em;
|
|
50
67
|
opacity: .7;
|
|
51
68
|
font-size: 0.9em;
|
|
52
69
|
white-space: pre
|
|
53
70
|
}
|
|
71
|
+
|
|
54
72
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents.category {
|
|
55
73
|
display: flex;
|
|
56
74
|
flex: 1;
|
|
57
75
|
flex-flow: row nowrap;
|
|
58
76
|
align-items: center;
|
|
59
77
|
}
|
|
78
|
+
|
|
60
79
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents.category .theme-icon,
|
|
61
80
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents.textedit .theme-icon {
|
|
62
81
|
margin-right: 4px;
|
|
63
82
|
}
|
|
83
|
+
|
|
64
84
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents.category .uri-icon,
|
|
65
85
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents.textedit .uri-icon,
|
|
66
86
|
.monaco-workbench.hc-light .bulk-edit-panel .monaco-tl-contents.category .uri-icon,
|
|
@@ -74,6 +94,7 @@
|
|
|
74
94
|
width: 16px;
|
|
75
95
|
min-width: 16px;
|
|
76
96
|
}
|
|
97
|
+
|
|
77
98
|
.monaco-workbench.vs-dark .bulk-edit-panel .monaco-tl-contents.category .uri-icon,
|
|
78
99
|
.monaco-workbench.hc-black .bulk-edit-panel .monaco-tl-contents.category .uri-icon,
|
|
79
100
|
.monaco-workbench.vs-dark .bulk-edit-panel .monaco-tl-contents.textedit .uri-icon,
|
|
@@ -81,6 +102,7 @@
|
|
|
81
102
|
{
|
|
82
103
|
background-image: var(--background-dark);
|
|
83
104
|
}
|
|
105
|
+
|
|
84
106
|
.monaco-workbench .bulk-edit-panel .monaco-tl-contents.textedit .monaco-highlighted-label {
|
|
85
107
|
overflow: hidden;
|
|
86
108
|
text-overflow: ellipsis;
|