Table overlap indication (#237)

* add find overlapping functionality

* add indication for tables overlapping

* fix reorder overlap

* add loading diagram event

* fix hidden nodes overlap bug
This commit is contained in:
Guy Ben-Aharon
2024-10-05 20:58:17 +03:00
committed by GitHub
parent 588543f324
commit a28fb4afa1
12 changed files with 599 additions and 30 deletions

View File

@@ -67,6 +67,15 @@ module.exports = {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: '0' },
},
'pulse-border': {
'0%, 100%': { borderColor: 'rgba(59, 130, 246, 0.5)' },
'50%': { borderColor: 'rgba(59, 130, 246, 1)' },
},
scale: {
'0%': { transform: 'scale(1)' },
'50%': { transform: 'scale(1.05)' },
'100%': { transform: 'scale(1)' },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',