mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 16:46:56 +00:00
* fix(nc-gui): always show edit connection tab on clicking data source * fix(nc-gui): show deleted workspace user info in connection list * fix(nc-gui): show tooltip on hover deleted user details * fix(nc-gui): some review changes * fix(nc-gui): sync modal cleanup * fix: supported docs label * fix(nc-gui): pg icon issue in data source list * fix(nc-gui): new integration page ui changes * fix(nc-gui): handle upvote * fix(nc-gui): add integration category icons * fix(nc-gui): add request new integration in other category * fix(nc-gui): focus request integration input on open * fix(nc-gui): integration tab left spacing issue * fix(nc-gui): integration tab list center aligned * misc: minor changes * fix(nc-gui): user should able to upvote on cliking tiles * fix(nc-gui): add remaining integrations * fix(nc-gui): add missing integration icons * fix(nc-gui): trigger test connection on adding new connection from create source * fix(nc-gui): integration list modal ui changes * fix(nc-gui): remove integration type badge border * fix(nc-gui): show colored integration icon on hover * fix(nc-gui): integration upvote btn shadow issue * fix(nc-gui): some pr review changes * fix(nc-gui): move logic part in script * chore(nc-gui): lint --------- Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com>
44 lines
977 B
Vue
44 lines
977 B
Vue
<script lang="ts" setup>
|
|
const supportedDocs = [
|
|
{
|
|
title: 'Integrations',
|
|
href: '',
|
|
},
|
|
{
|
|
title: 'Create new connection',
|
|
href: '',
|
|
},
|
|
{
|
|
title: 'Add new data source',
|
|
href: '',
|
|
},
|
|
] as {
|
|
title: string
|
|
href: string
|
|
}[]
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="w-full flex flex-col gap-3">
|
|
<div class="text-sm text-gray-800 font-semibold">Supported Docs</div>
|
|
|
|
<div>
|
|
<div v-for="(doc, idx) of supportedDocs" :key="idx" class="flex items-center gap-1">
|
|
<div class="h-7 w-7 flex items-center justify-center">
|
|
<GeneralIcon icon="bookOpen" class="flex-none w-4 h-4 text-gray-500" />
|
|
</div>
|
|
<a
|
|
:href="doc.href"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="!text-gray-600 text-sm !no-underline !hover:underline"
|
|
>
|
|
{{ doc.title }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|