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.
31 lines
861 B
31 lines
861 B
<script setup lang="ts"> |
|
import { useSmartsheetStoreOrThrow } from '~/composables' |
|
|
|
const { isGrid, isForm } = useSmartsheetStoreOrThrow() |
|
</script> |
|
|
|
<template> |
|
<div class="nc-table-toolbar w-full py-1 flex gap-1 items-center h-[48px] px-2 border-b" style="z-index: 7"> |
|
<SmartsheetToolbarFieldsMenu v-if="isGrid" :show-system-fields="false" class="ml-1" /> |
|
|
|
<SmartsheetToolbarColumnFilterMenu v-if="isGrid" /> |
|
|
|
<SmartsheetToolbarSortListMenu v-if="isGrid" /> |
|
|
|
<SmartsheetToolbarShareView v-if="isForm || isGrid" /> |
|
|
|
<SmartsheetToolbarMoreActions v-if="isGrid" /> |
|
<div class="flex-1" /> |
|
<SmartsheetToolbarSearchData v-if="isGrid" class="shrink mr-2" /> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
:deep(.nc-toolbar-btn) { |
|
@apply border-0 !text-xs font-semibold px-2; |
|
} |
|
|
|
.nc-table-toolbar { |
|
border-color: #f0f0f0 !important; |
|
} |
|
</style>
|
|
|