Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
01769676
Commit
01769676
authored
Sep 14, 2021
by
davidzagi93@gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implementing changes overridden
parent
b3668913
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
16 deletions
+6
-16
defaultLayout.test.ts
apps/remix-ide-e2e/src/tests/defaultLayout.test.ts
+4
-4
terminal.js
apps/remix-ide/src/app/panels/terminal.js
+1
-0
types.d.ts
libs/remix-ui/plugin-manager/src/types.d.ts
+1
-9
remix-ui-terminal.css
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
+0
-3
No files found.
apps/remix-ide-e2e/src/tests/defaultLayout.test.ts
View file @
01769676
...
...
@@ -50,11 +50,11 @@ module.exports = {
'Toggles Terminal'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
waitForElementVisible
(
'div[data-id="terminalContainer"]'
)
.
assert
.
visible
(
'div[data-id="terminalContainerDisplay"]'
)
.
assert
.
elementPresent
(
'div[data-id="terminalContainerDisplay"]'
)
.
click
(
'i[data-id="terminalToggleIcon"]'
)
.
checkElementStyle
(
'div[data-id="terminal
ToggleMenu"]'
,
'height'
,
'35
px'
)
.
click
(
'i[data-id="terminalToggleIcon"]'
)
.
assert
.
visible
(
'div[data-id="terminalContainerDisplay"]'
)
.
checkElementStyle
(
'div[data-id="terminal
Container-view"]'
,
'height'
,
'36
px'
)
//
.click('i[data-id="terminalToggleIcon"]')
//
.assert.visible('div[data-id="terminalContainerDisplay"]')
},
'Switch Tabs using tabs icon'
:
function
(
browser
:
NightwatchBrowser
)
{
...
...
apps/remix-ide/src/app/panels/terminal.js
View file @
01769676
...
...
@@ -39,6 +39,7 @@ class Terminal extends Plugin {
this
.
element
=
document
.
createElement
(
'div'
)
this
.
element
.
setAttribute
(
'class'
,
'panel'
)
this
.
element
.
setAttribute
(
'id'
,
'terminal-view'
)
this
.
element
.
setAttribute
(
'data-id'
,
'terminalContainer-view'
)
this
.
eventsDecoder
=
this
.
globalRegistry
.
get
(
'eventsDecoder'
).
api
this
.
txListener
=
this
.
globalRegistry
.
get
(
'txlistener'
).
api
this
.
sourceHighlighter
=
new
SourceHighlighter
()
...
...
libs/remix-ui/plugin-manager/src/types.d.ts
View file @
01769676
...
...
@@ -178,17 +178,9 @@ export interface FormStateProps {
url
:
string
type
:
'iframe'
|
'ws'
hash
:
string
methods
:
string
[]
methods
:
any
location
:
string
<<<<<<<
HEAD
<<<<<<<
HEAD
canActivate
?:
any
=======
canActivate
:
any
>>>>>>>
ceb5496f4
(
fix
whitespaces
and
canactivate
)
=======
canActivate
:
string
[]
>>>>>>>
cb86d9b5a
(
Update
types
.
d
.
ts
)
}
export
type
PluginManagerProfile
=
Profile
&
{
...
...
libs/remix-ui/terminal/src/lib/remix-ui-terminal.css
View file @
01769676
...
...
@@ -20,9 +20,6 @@ element.style {
.border-primary
{
border-color
:
#007aa6
!important
;
}
.border
{
border
:
1px
solid
#3f4455
!important
;
}
/* seleted option should reflect the theme color */
.selectedOptions
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment