mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
3.3 KiB
140 lines
3.3 KiB
export default { |
|
projectsDir: { |
|
icon: 'mdi-library-books', |
|
color: '', |
|
openColor: 'primary', |
|
openIcon: 'mdi-library-books', |
|
blink: true |
|
}, |
|
project: { |
|
icon: 'mdi-lightbulb', |
|
color: 'primary', |
|
openColor: 'warning', |
|
openIcon: 'mdi-lightbulb-on' |
|
}, |
|
db: { |
|
icon: 'mdi-database', |
|
color: '', |
|
openColor: 'primary', |
|
openIcon: 'mdi-database' |
|
}, |
|
envDir: { |
|
icon: 'mdi-folder', |
|
color: '', |
|
openColor: 'primary', |
|
openIcon: 'mdi-folder-open' |
|
}, |
|
env: { |
|
icon: 'mdi-test-tube', |
|
color: 'primary', |
|
openColor: '', |
|
openIcon: 'mdi-test-tube', |
|
blink: true |
|
}, |
|
tableDir: { |
|
icon: 'mdi-alpha-t-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-t-circle-outline' |
|
}, |
|
seedParserDir: { |
|
icon: 'mdi-seed-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-seed' |
|
}, |
|
migrationsDir: { |
|
icon: 'mdi-alpha-m-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-m-circle-outline' |
|
}, |
|
apisDir: { |
|
icon: 'mdi-alpha-a-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-a-circle-outline' |
|
}, |
|
apiClientDir: { |
|
icon: 'mdi-code-json', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-code-json' |
|
}, |
|
sqlClientDir: { |
|
icon: 'mdi-alpha-s-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-s-circle-outline' |
|
}, |
|
table: { |
|
icon: 'mdi-table-large', |
|
color: '', |
|
openColor: '', |
|
openIcon: 'mdi-table-large' |
|
}, |
|
viewDir: { |
|
icon: 'mdi-alpha-v-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-v-circle-outline' |
|
}, |
|
view: { |
|
icon: 'mdi-eye-circle-outline', |
|
color: '', |
|
openColor: '', |
|
openIcon: 'mdi-eye-circle-outline' |
|
}, |
|
functionDir: { |
|
icon: 'mdi-alpha-f-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-f-circle-outline' |
|
}, |
|
function: { |
|
icon: 'mdi-function-variant', |
|
color: '', |
|
openColor: '', |
|
openIcon: 'mdi-function-variant' |
|
}, |
|
procedureDir: { |
|
icon: 'mdi-alpha-p-circle-outline', |
|
color: '', |
|
openColor: 'green', |
|
openIcon: 'mdi-alpha-p-circle-outline' |
|
}, |
|
procedure: { |
|
icon: 'mdi-checkbook', |
|
color: '', |
|
openColor: '', |
|
openIcon: 'mdi-checkbook' |
|
}, |
|
meta: { |
|
icon: 'mdi-checkbook', |
|
color: '', |
|
openColor: '', |
|
openIcon: 'mdi-checkbook' |
|
} |
|
} |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Naveen MR <oof1lab@gmail.com> |
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
* |
|
* @license GNU AGPL version 3 or any later version |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as |
|
* published by the Free Software Foundation, either version 3 of the |
|
* License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/
|
|
|