@factorialco/f0-react 1.274.0 → 1.276.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.
- package/dist/experimental.d.ts +39 -6
- package/dist/experimental.js +967 -948
- package/dist/f0.css +1 -0
- package/dist/f0.d.ts +117 -6
- package/dist/f0.js +4689 -1040
- package/dist/{hooks-d0sWj0ci.js → hooks-DHOMsL_I.js} +14 -14
- package/package.json +2 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -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: {
|
|
@@ -5762,8 +5770,8 @@ declare module "@tiptap/core" {
|
|
|
5762
5770
|
|
|
5763
5771
|
declare module "@tiptap/core" {
|
|
5764
5772
|
interface Commands<ReturnType> {
|
|
5765
|
-
|
|
5766
|
-
|
|
5773
|
+
transcript: {
|
|
5774
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
5767
5775
|
};
|
|
5768
5776
|
}
|
|
5769
5777
|
}
|
|
@@ -5771,15 +5779,35 @@ declare module "@tiptap/core" {
|
|
|
5771
5779
|
|
|
5772
5780
|
declare module "@tiptap/core" {
|
|
5773
5781
|
interface Commands<ReturnType> {
|
|
5774
|
-
|
|
5775
|
-
|
|
5782
|
+
liveCompanion: {
|
|
5783
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
5776
5784
|
};
|
|
5777
5785
|
}
|
|
5778
5786
|
}
|
|
5779
5787
|
|
|
5780
5788
|
|
|
5781
|
-
declare
|
|
5782
|
-
|
|
5789
|
+
declare module "gridstack" {
|
|
5790
|
+
interface GridStackWidget {
|
|
5791
|
+
id?: string;
|
|
5792
|
+
allowedSizes?: Array<{
|
|
5793
|
+
w: number;
|
|
5794
|
+
h: number;
|
|
5795
|
+
}>;
|
|
5796
|
+
renderFn?: () => React.ReactElement | null;
|
|
5797
|
+
meta?: Record<string, unknown>;
|
|
5798
|
+
}
|
|
5799
|
+
interface GridStackNode {
|
|
5800
|
+
id?: string;
|
|
5801
|
+
w?: number;
|
|
5802
|
+
h?: number;
|
|
5803
|
+
x?: number;
|
|
5804
|
+
y?: number;
|
|
5805
|
+
allowedSizes?: Array<{
|
|
5806
|
+
w: number;
|
|
5807
|
+
h: number;
|
|
5808
|
+
}>;
|
|
5809
|
+
renderFn?: () => React.ReactElement | null;
|
|
5810
|
+
}
|
|
5783
5811
|
}
|
|
5784
5812
|
|
|
5785
5813
|
|
|
@@ -5790,3 +5818,8 @@ declare module "@tiptap/core" {
|
|
|
5790
5818
|
};
|
|
5791
5819
|
}
|
|
5792
5820
|
}
|
|
5821
|
+
|
|
5822
|
+
|
|
5823
|
+
declare namespace Calendar {
|
|
5824
|
+
var displayName: string;
|
|
5825
|
+
}
|