@factorialco/f0-react 1.449.2 → 1.450.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.
@@ -149,6 +149,7 @@ export declare const defaultTranslations: {
149
149
  readonly expand: "Expand";
150
150
  readonly showAll: "Show all";
151
151
  readonly showLess: "Show less";
152
+ readonly seeMore: "See more";
152
153
  readonly skipToContent: "Skip to content";
153
154
  readonly view: "View";
154
155
  readonly unselect: "Unselect";
@@ -426,6 +427,9 @@ export declare const defaultTranslations: {
426
427
  readonly reportLabel: "Report";
427
428
  readonly openButton: "Open";
428
429
  };
430
+ readonly formCard: {
431
+ readonly moreFields: "Open to see all fields";
432
+ };
429
433
  readonly dataDownload: {
430
434
  readonly title: "Download";
431
435
  readonly download: "Download {{format}}";
@@ -771,16 +775,11 @@ declare module "gridstack" {
771
775
  }
772
776
 
773
777
 
774
- declare namespace Calendar {
775
- var displayName: string;
776
- }
777
-
778
-
779
778
  declare module "@tiptap/core" {
780
779
  interface Commands<ReturnType> {
781
- enhanceHighlight: {
782
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
783
- clearEnhanceHighlight: () => ReturnType;
780
+ aiBlock: {
781
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
782
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
784
783
  };
785
784
  }
786
785
  }
@@ -788,9 +787,9 @@ declare module "@tiptap/core" {
788
787
 
789
788
  declare module "@tiptap/core" {
790
789
  interface Commands<ReturnType> {
791
- aiBlock: {
792
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
793
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
790
+ enhanceHighlight: {
791
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
792
+ clearEnhanceHighlight: () => ReturnType;
794
793
  };
795
794
  }
796
795
  }
@@ -823,3 +822,8 @@ declare module "@tiptap/core" {
823
822
  };
824
823
  }
825
824
  }
825
+
826
+
827
+ declare namespace Calendar {
828
+ var displayName: string;
829
+ }
@@ -149,6 +149,7 @@ const e = {
149
149
  expand: "Expand",
150
150
  showAll: "Show all",
151
151
  showLess: "Show less",
152
+ seeMore: "See more",
152
153
  skipToContent: "Skip to content",
153
154
  view: "View",
154
155
  unselect: "Unselect",
@@ -426,6 +427,9 @@ const e = {
426
427
  reportLabel: "Report",
427
428
  openButton: "Open"
428
429
  },
430
+ formCard: {
431
+ moreFields: "Open to see all fields"
432
+ },
429
433
  dataDownload: {
430
434
  title: "Download",
431
435
  download: "Download {{format}}",