@arcblock/terminal 3.1.9 → 3.1.11
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/lib/styles.js +0 -5
- package/package.json +4 -4
- package/src/styles.js +0 -5
package/lib/styles.js
CHANGED
|
@@ -18,7 +18,6 @@ const t = e.div({
|
|
|
18
18
|
fontWeight: "inherit",
|
|
19
19
|
fontStyle: "inherit",
|
|
20
20
|
fontSize: "100%",
|
|
21
|
-
fontFamily: "inherit",
|
|
22
21
|
verticalAlign: "baseline"
|
|
23
22
|
},
|
|
24
23
|
// Window theme
|
|
@@ -35,7 +34,6 @@ const t = e.div({
|
|
|
35
34
|
borderTopLeftRadius: 6,
|
|
36
35
|
borderTopRightRadius: 6,
|
|
37
36
|
color: "#3b4247",
|
|
38
|
-
fontFamily: "Arial, sans-serif",
|
|
39
37
|
fontSize: 14,
|
|
40
38
|
height: 22,
|
|
41
39
|
lineHeight: "22px",
|
|
@@ -81,7 +79,6 @@ const t = e.div({
|
|
|
81
79
|
overflow: "hidden",
|
|
82
80
|
"& .terminal-titlebar": {
|
|
83
81
|
color: "white",
|
|
84
|
-
fontFamily: "Arial, sans-serif",
|
|
85
82
|
fontSize: 14,
|
|
86
83
|
height: 34,
|
|
87
84
|
lineHeight: "34px",
|
|
@@ -120,7 +117,6 @@ const t = e.div({
|
|
|
120
117
|
overflow: "hidden",
|
|
121
118
|
"& .terminal-titlebar": {
|
|
122
119
|
color: "white",
|
|
123
|
-
fontFamily: "Arial, sans-serif",
|
|
124
120
|
fontSize: 14,
|
|
125
121
|
position: "relative",
|
|
126
122
|
textAlign: "center",
|
|
@@ -141,7 +137,6 @@ const t = e.div({
|
|
|
141
137
|
// Override background (matches original CSS)
|
|
142
138
|
bottom: "0px",
|
|
143
139
|
display: "none",
|
|
144
|
-
fontFamily: "Helvetica, Arial, sans-serif",
|
|
145
140
|
fontSize: 12,
|
|
146
141
|
height: 40,
|
|
147
142
|
position: "absolute",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/terminal",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.11",
|
|
4
4
|
"description": "A react wrapper for xterm allowing you to easily render a terminal in the browser",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "^19.0.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d050c2db5014a01199a48f0e99b71509f6ef1a7e",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@arcblock/react-hooks": "3.1.
|
|
46
|
-
"@arcblock/ux": "3.1.
|
|
45
|
+
"@arcblock/react-hooks": "3.1.11",
|
|
46
|
+
"@arcblock/ux": "3.1.11",
|
|
47
47
|
"@emotion/react": "^11.14.0",
|
|
48
48
|
"@emotion/styled": "^11.14.0",
|
|
49
49
|
"ahooks": "^3.8.5",
|
package/src/styles.js
CHANGED
|
@@ -24,7 +24,6 @@ export const PlayerRoot = styled.div({
|
|
|
24
24
|
fontWeight: 'inherit',
|
|
25
25
|
fontStyle: 'inherit',
|
|
26
26
|
fontSize: '100%',
|
|
27
|
-
fontFamily: 'inherit',
|
|
28
27
|
verticalAlign: 'baseline',
|
|
29
28
|
},
|
|
30
29
|
|
|
@@ -43,7 +42,6 @@ export const PlayerRoot = styled.div({
|
|
|
43
42
|
borderTopLeftRadius: 6,
|
|
44
43
|
borderTopRightRadius: 6,
|
|
45
44
|
color: '#3b4247',
|
|
46
|
-
fontFamily: 'Arial, sans-serif',
|
|
47
45
|
fontSize: 14,
|
|
48
46
|
height: 22,
|
|
49
47
|
lineHeight: '22px',
|
|
@@ -96,7 +94,6 @@ export const PlayerRoot = styled.div({
|
|
|
96
94
|
|
|
97
95
|
'& .terminal-titlebar': {
|
|
98
96
|
color: 'white',
|
|
99
|
-
fontFamily: 'Arial, sans-serif',
|
|
100
97
|
fontSize: 14,
|
|
101
98
|
height: 34,
|
|
102
99
|
lineHeight: '34px',
|
|
@@ -142,7 +139,6 @@ export const PlayerRoot = styled.div({
|
|
|
142
139
|
|
|
143
140
|
'& .terminal-titlebar': {
|
|
144
141
|
color: 'white',
|
|
145
|
-
fontFamily: 'Arial, sans-serif',
|
|
146
142
|
fontSize: 14,
|
|
147
143
|
position: 'relative',
|
|
148
144
|
textAlign: 'center',
|
|
@@ -166,7 +162,6 @@ export const PlayerRoot = styled.div({
|
|
|
166
162
|
backgroundColor: '#222222', // Override background (matches original CSS)
|
|
167
163
|
bottom: '0px',
|
|
168
164
|
display: 'none',
|
|
169
|
-
fontFamily: 'Helvetica, Arial, sans-serif',
|
|
170
165
|
fontSize: 12,
|
|
171
166
|
height: 40,
|
|
172
167
|
position: 'absolute',
|