update offerings

This commit is contained in:
Philipinho
2026-06-15 02:23:10 +01:00
parent f5831a256a
commit bb7fddfc54
3 changed files with 4 additions and 3 deletions
@@ -6,7 +6,7 @@ import {
useVirtualizer,
windowScroll,
} from "@tanstack/react-virtual";
import { useAtom } from "jotai";
import { useAtom, useSetAtom, type PrimitiveAtom } from "jotai";
import {
IBaseRow,
IBaseProperty,
@@ -134,7 +134,7 @@ export function GridContainer({
const focusedCellRef = useRef(focusedCell);
focusedCellRef.current = focusedCell;
const [, setActiveFormulaEditor] = useAtom(activeFormulaEditorAtomFamily(pageId)) as unknown as [FormulaEditorTarget, (val: FormulaEditorTarget) => void];
const [, setPendingTypeInsert] = useAtom(pendingTypeInsertAtom) as unknown as [PendingTypeInsert, (val: PendingTypeInsert) => void];
const setPendingTypeInsert = useSetAtom(pendingTypeInsertAtom as PrimitiveAtom<PendingTypeInsert>);
useEffect(() => {
const handleMouseDown = (e: MouseEvent) => {
@@ -149,7 +149,6 @@ export function useGridKeyboardNav({
}
case "Escape": {
e.preventDefault();
(document.activeElement as HTMLElement | null)?.blur();
setEditingCell(null);
setFocusedCell(editingCell);
break;
@@ -17,6 +17,8 @@ const enterpriseFeatures = [
"Resolve Comments",
"Confluence Import",
"PDF & DOCX Import",
"Bases",
"Kanban",
"Templates",
];