Browse Source

feat(nc-gui): form view v2 setup

pull/7664/head
Ramesh Mane 6 months ago
parent
commit
45b8a9f7fe
  1. 1001
      packages/nc-gui/components/smartsheet/Form.vue
  2. 2
      packages/nc-gui/components/tabs/Smartsheet.vue

1001
packages/nc-gui/components/smartsheet/Form.vue

File diff suppressed because it is too large Load Diff

2
packages/nc-gui/components/tabs/Smartsheet.vue

@ -171,7 +171,7 @@ watch([activeViewTitleOrId, activeTableId], () => {
<div style="height: calc(100% - var(--topbar-height))">
<div v-if="openedViewsTab === 'view'" class="flex flex-col h-full flex-1 min-w-0">
<LazySmartsheetToolbar v-if="!isForm" />
<div class="flex flex-row w-full" style="height: calc(100% - var(--topbar-height))">
<div class="flex flex-row w-full" :style="{ height: isForm ? '100%' : 'calc(100% - var(--topbar-height))' }">
<Transition name="layout" mode="out-in">
<div v-if="openedViewsTab === 'view'" class="flex flex-1 min-h-0 w-3/4">
<div class="h-full flex-1 min-w-0 min-h-0 bg-white">

Loading…
Cancel
Save