@industry-theme/xterm-terminal-panel 0.5.35 → 0.5.36
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.css +1 -0
- package/dist/index.js +1 -1
- package/dist/styles.css +5 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
// package.json
|
|
36
36
|
var package_default = {
|
|
37
37
|
name: "@industry-theme/xterm-terminal-panel",
|
|
38
|
-
version: "0.5.
|
|
38
|
+
version: "0.5.36",
|
|
39
39
|
description: "Industry-themed xterm.js terminal components with panel framework integration",
|
|
40
40
|
type: "module",
|
|
41
41
|
main: "dist/index.js",
|
package/dist/styles.css
CHANGED
|
@@ -12,6 +12,11 @@
|
|
|
12
12
|
|
|
13
13
|
/* Remove default xterm padding */
|
|
14
14
|
.terminal-container-fix .xterm {
|
|
15
|
+
/* border-box so the 10px top/left padding fits inside the 100% height
|
|
16
|
+
instead of pushing the element 10px taller than its parent — without
|
|
17
|
+
this the last row gets clipped by the parent's overflow:hidden, and
|
|
18
|
+
the user can't scroll all the way to the bottom. */
|
|
19
|
+
box-sizing: border-box;
|
|
15
20
|
padding: 10px 0 0 10px;
|
|
16
21
|
margin: 0;
|
|
17
22
|
height: 100%;
|
package/package.json
CHANGED