@factorialco/f0-react 1.273.1 → 1.275.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.
@@ -2025,6 +2025,8 @@ declare const defaultTranslations: {
2025
2025
  readonly rangeTitle: "Use range";
2026
2026
  readonly range: "Between {{min}} and {{max}}";
2027
2027
  };
2028
+ readonly selectAll: "Select all";
2029
+ readonly clear: "Clear";
2028
2030
  };
2029
2031
  readonly toc: {
2030
2032
  readonly search: "Search...";
@@ -2054,6 +2056,12 @@ declare const defaultTranslations: {
2054
2056
  readonly settings: "{{visualizationName}} settings";
2055
2057
  readonly reset: "Reset to default";
2056
2058
  };
2059
+ readonly table: {
2060
+ readonly settings: {
2061
+ readonly showAllColumns: "Show all";
2062
+ readonly hideAllColumns: "Hide all";
2063
+ };
2064
+ };
2057
2065
  readonly itemsCount: "items";
2058
2066
  readonly emptyStates: {
2059
2067
  readonly noData: {
@@ -5778,11 +5786,6 @@ declare module "@tiptap/core" {
5778
5786
  }
5779
5787
 
5780
5788
 
5781
- declare namespace Calendar {
5782
- var displayName: string;
5783
- }
5784
-
5785
-
5786
5789
  declare module "@tiptap/core" {
5787
5790
  interface Commands<ReturnType> {
5788
5791
  moodTracker: {
@@ -5790,3 +5793,8 @@ declare module "@tiptap/core" {
5790
5793
  };
5791
5794
  }
5792
5795
  }
5796
+
5797
+
5798
+ declare namespace Calendar {
5799
+ var displayName: string;
5800
+ }