@factorialco/f0-react 2.45.0 → 2.47.0

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.
@@ -141,6 +141,7 @@ export declare const defaultTranslations: {
141
141
  readonly save: "Save";
142
142
  readonly send: "Send";
143
143
  readonly cancel: "Cancel";
144
+ readonly ok: "Ok";
144
145
  readonly delete: "Delete";
145
146
  readonly copy: "Copy";
146
147
  readonly paste: "Paste";
@@ -852,9 +853,9 @@ declare module "gridstack" {
852
853
 
853
854
  declare module "@tiptap/core" {
854
855
  interface Commands<ReturnType> {
855
- aiBlock: {
856
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
857
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
856
+ enhanceHighlight: {
857
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
858
+ clearEnhanceHighlight: () => ReturnType;
858
859
  };
859
860
  }
860
861
  }
@@ -862,9 +863,9 @@ declare module "@tiptap/core" {
862
863
 
863
864
  declare module "@tiptap/core" {
864
865
  interface Commands<ReturnType> {
865
- enhanceHighlight: {
866
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
867
- clearEnhanceHighlight: () => ReturnType;
866
+ aiBlock: {
867
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
868
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
868
869
  };
869
870
  }
870
871
  }
@@ -141,6 +141,7 @@ const e = {
141
141
  save: "Save",
142
142
  send: "Send",
143
143
  cancel: "Cancel",
144
+ ok: "Ok",
144
145
  delete: "Delete",
145
146
  copy: "Copy",
146
147
  paste: "Paste",