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
6b75a8b0
Commit
6b75a8b0
authored
Aug 17, 2021
by
Joseph Izang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes based on Aniket-Engg comments
parent
768824a8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
38 deletions
+1
-38
modal-dialog-custom.d.ts
app/ui/modal-dialog-custom.d.ts
+0
-30
modaldialog.d.ts
app/ui/modaldialog.d.ts
+0
-7
plugin-manager-component.js
.../remix-ide/src/app/components/plugin-manager-component.js
+1
-1
.eslintrc
libs/remix-ui/plugin-manager/.eslintrc
+0
-0
No files found.
app/ui/modal-dialog-custom.d.ts
deleted
100644 → 0
View file @
768824a8
export
function
alert
(
title
:
any
,
text
:
any
):
{
container
:
HTMLElement
;
okListener
:
()
=>
void
;
cancelListener
:
()
=>
void
;
hide
:
()
=>
void
;
};
export
function
prompt
(
title
:
any
,
text
:
any
,
inputValue
:
any
,
ok
:
any
,
cancel
:
any
,
focus
:
any
):
void
;
export
function
promptPassphrase
(
title
:
any
,
text
:
any
,
inputValue
:
any
,
ok
:
any
,
cancel
:
any
):
void
;
export
function
promptPassphraseCreation
(
ok
:
any
,
cancel
:
any
):
{
container
:
HTMLElement
;
okListener
:
()
=>
void
;
cancelListener
:
()
=>
void
;
hide
:
()
=>
void
;
};
export
function
promptMulti
({
title
,
text
,
inputValue
}:
{
title
:
any
;
text
:
any
;
inputValue
:
any
;
},
ok
:
any
,
cancel
:
any
):
{
container
:
HTMLElement
;
okListener
:
()
=>
void
;
cancelListener
:
()
=>
void
;
hide
:
()
=>
void
;
};
export
function
confirm
(
title
:
any
,
text
:
any
,
ok
:
any
,
cancel
:
any
):
{
container
:
HTMLElement
;
okListener
:
()
=>
void
;
cancelListener
:
()
=>
void
;
hide
:
()
=>
void
;
};
app/ui/modaldialog.d.ts
deleted
100644 → 0
View file @
768824a8
declare
function
_exports
(
title
:
any
,
content
:
any
,
ok
:
any
,
cancel
:
any
,
focusSelector
:
any
,
opts
:
any
):
{
container
:
HTMLElement
;
okListener
:
()
=>
void
;
cancelListener
:
()
=>
void
;
hide
:
()
=>
void
;
};
export
=
_exports
;
apps/remix-ide/src/app/components/plugin-manager-component.js
View file @
6b75a8b0
...
...
@@ -48,7 +48,7 @@ class PluginManagerComponent extends ViewPlugin {
* @param {string} name name of Plugin
*/
isActive
(
name
)
{
this
.
appManager
.
actives
.
includes
(
name
)
return
this
.
appManager
.
actives
.
includes
(
name
)
}
/**
...
...
libs/remix-ui/plugin-manager/.eslintrc
View file @
6b75a8b0
This diff is collapsed.
Click to expand it.
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