implementing changes overridden

pull/5370/head
davidzagi93@gmail.com 3 years ago
parent b039ef7890
commit 57fa0f4976
  1. 8
      apps/remix-ide-e2e/src/tests/defaultLayout.test.ts
  2. 1
      apps/remix-ide/src/app/panels/terminal.js
  3. 10
      libs/remix-ui/plugin-manager/src/types.d.ts
  4. 3
      libs/remix-ui/terminal/src/lib/remix-ui-terminal.css

@ -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="terminalToggleMenu"]', 'height', '35px')
.click('i[data-id="terminalToggleIcon"]')
.assert.visible('div[data-id="terminalContainerDisplay"]')
.checkElementStyle('div[data-id="terminalContainer-view"]', 'height', '36px')
// .click('i[data-id="terminalToggleIcon"]')
// .assert.visible('div[data-id="terminalContainerDisplay"]')
},
'Switch Tabs using tabs icon': function (browser: NightwatchBrowser) {

@ -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()

@ -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 & {

@ -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 {

Loading…
Cancel
Save