Browse Source

Nc fix/dev warnings (#9541)

* fix(nc-gui): div cannot be child of table

* fix(nc-gui): div cannot be child of tr
pull/9544/head
Ramesh Mane 3 months ago committed by GitHub
parent
commit
6653e8e7cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nc-gui/components/dashboard/settings/app-store/AppInstall.vue
  2. 22
      packages/nc-gui/components/smartsheet/grid/Table.vue

2
packages/nc-gui/components/dashboard/settings/app-store/AppInstall.vue

@ -219,6 +219,7 @@ onMounted(async () => {
</tr>
</tbody>
<tfoot>
<tr>
<td :colspan="plugin.formDetails.items.length" class="text-center">
<a-button type="default" class="!bg-gray-100 rounded-md border-none mr-1" @click="addSetting">
@ -228,6 +229,7 @@ onMounted(async () => {
</a-button>
</td>
</tr>
</tfoot>
</table>
</div>

22
packages/nc-gui/components/smartsheet/grid/Table.vue

@ -2213,8 +2213,8 @@ onKeyStroke('ArrowDown', onDown)
@mouseup.stop
@click="addEmptyRow()"
>
<div
class="h-8 border-b-1 border-gray-100 bg-white group-hover:bg-gray-50 absolute left-0 bottom-0 px-2 sticky z-40 w-full flex items-center text-gray-500"
<td
class="nc-grid-add-new-cell-item h-8 border-b-1 border-gray-100 bg-white group-hover:bg-gray-50 absolute left-0 bottom-0 px-2 sticky z-40 w-full flex items-center text-gray-500"
:style="{
left: `-${leftOffset}px`,
}"
@ -2224,7 +2224,7 @@ onKeyStroke('ArrowDown', onDown)
v-if="!isViewColumnsLoading"
class="text-pint-500 text-base ml-2 mt-0 text-gray-600 group-hover:text-black"
/>
</div>
</td>
<td class="!border-gray-100" :colspan="visibleColLength"></td>
</tr>
</tbody>
@ -2595,7 +2595,7 @@ onKeyStroke('ArrowDown', onDown)
@apply text-black !bg-gray-50;
}
td,
td:not(.nc-grid-add-new-cell-item),
th {
@apply border-gray-100 border-solid border-r bg-gray-100 p-0;
min-height: 32px !important;
@ -2620,11 +2620,11 @@ onKeyStroke('ArrowDown', onDown)
@apply !border-b-1;
}
td {
td:not(.nc-grid-add-new-cell-item) {
@apply bg-white border-b;
}
td:not(:first-child) {
td:not(:first-child):not(.nc-grid-add-new-cell-item) {
@apply px-3;
&.align-top {
@ -2742,7 +2742,7 @@ onKeyStroke('ArrowDown', onDown)
border-spacing: 0;
}
td {
td:not(.nc-grid-add-new-cell-item) {
text-overflow: ellipsis;
}
@ -2798,7 +2798,7 @@ onKeyStroke('ArrowDown', onDown)
z-index: 5;
}
tbody td:nth-child(1) {
tbody td:not(.nc-grid-add-new-cell-item):nth-child(1) {
position: sticky !important;
left: 0;
z-index: 4;
@ -2827,7 +2827,7 @@ onKeyStroke('ArrowDown', onDown)
@apply border-r-1 !border-r-gray-50;
}
tbody td:nth-child(2) {
tbody td:not(.nc-grid-add-new-cell-item):nth-child(2) {
@apply border-r-1 !border-r-gray-50;
}
}
@ -2887,7 +2887,7 @@ onKeyStroke('ArrowDown', onDown)
&:not(.selected-row):has(+ .selected-row) {
td.nc-grid-cell:not(.active),
td:nth-child(2):not(.active) {
td:nth-child(2):not(.active):not(.nc-grid-add-new-cell-item) {
@apply border-b-gray-200;
}
}
@ -2896,7 +2896,7 @@ onKeyStroke('ArrowDown', onDown)
&:not(.mouse-down):has(+ :hover) {
&:not(.selected-row) {
td.nc-grid-cell:not(.active),
td:nth-child(2):not(.active) {
td:nth-child(2):not(.active):not(.nc-grid-add-new-cell-item) {
@apply border-b-gray-200;
}
}

Loading…
Cancel
Save