@firecms/core 3.0.0-canary.289 → 3.0.0-canary.290

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@ export declare function SortableNavigationGroup({ groupName, children, disabled
16
16
  children: React.ReactNode;
17
17
  disabled?: boolean;
18
18
  }): import("react/jsx-runtime").JSX.Element;
19
- export declare function useHomePageDnd({ items: dndItems, setItems: setDndItems, disabled, onCardMovedBetweenGroups, onGroupMoved, onNewGroupDrop, onPersist }: {
19
+ export declare function useHomePageDnd({ items, setItems, disabled, onCardMovedBetweenGroups, onGroupMoved, onNewGroupDrop, onPersist }: {
20
20
  items: {
21
21
  name: string;
22
22
  entries: NavigationEntry[];
@@ -67,6 +67,7 @@ export declare function useHomePageDnd({ items: dndItems, setItems: setDndItems,
67
67
  dialogOpenForGroup: string | null;
68
68
  setDialogOpenForGroup: React.Dispatch<React.SetStateAction<string | null>>;
69
69
  handleRenameGroup: (oldName: string, newName: string) => void;
70
+ handleDialogClose: () => void;
70
71
  isHoveringNewGroupDropZone: boolean;
71
72
  setIsHoveringNewGroupDropZone: React.Dispatch<React.SetStateAction<boolean>>;
72
73
  };
@@ -26,5 +26,5 @@ import { CMSType, PropertyFieldBindingProps } from "../types";
26
26
  * @group Form custom fields
27
27
  */
28
28
  export declare const PropertyFieldBinding: typeof PropertyFieldBindingInternal;
29
- declare function PropertyFieldBindingInternal<T extends CMSType = CMSType, M extends Record<string, any> = any>({ propertyKey, property, context, includeDescription, underlyingValueHasChanged, disabled: disabledProp, partOfArray, minimalistView, autoFocus, index, size, onPropertyChange, }: PropertyFieldBindingProps<T, M>): ReactElement<PropertyFieldBindingProps<T, M>>;
29
+ declare function PropertyFieldBindingInternal<T extends CMSType = CMSType, M extends Record<string, any> = any>({ propertyKey, property, context, includeDescription, underlyingValueHasChanged, disabled: disabledProp, partOfArray, partOfBlock, minimalistView, autoFocus, index, size, onPropertyChange, }: PropertyFieldBindingProps<T, M>): ReactElement<PropertyFieldBindingProps<T, M>>;
30
30
  export {};