@factorialco/f0-react 1.211.0 → 1.213.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 +10 -6
- package/dist/experimental.js +6466 -6436
- package/dist/f0.d.ts +5 -5
- package/dist/f0.js +2 -2
- package/dist/{hooks-CXJxTgfZ.js → hooks-BbBJaT04.js} +125 -121
- package/package.json +2 -2
package/dist/experimental.d.ts
CHANGED
|
@@ -2314,9 +2314,13 @@ declare type FormType<T extends SchemaType, FormType extends InferSchema<T>> = U
|
|
|
2314
2314
|
|
|
2315
2315
|
declare interface FrameContextType {
|
|
2316
2316
|
isSmallScreen: boolean;
|
|
2317
|
+
isLastToggleInvokedByUser: boolean;
|
|
2317
2318
|
sidebarState: SidebarState;
|
|
2318
2319
|
prevSidebarState: SidebarState | null;
|
|
2319
|
-
toggleSidebar: (
|
|
2320
|
+
toggleSidebar: (callData?: {
|
|
2321
|
+
isInvokedByUser: boolean;
|
|
2322
|
+
}) => void;
|
|
2323
|
+
setForceFloat: (force: boolean) => void;
|
|
2320
2324
|
}
|
|
2321
2325
|
|
|
2322
2326
|
export declare const getGranularityDefinition: (granularityKey: GranularityDefinitionKey) => GranularityDefinition;
|
|
@@ -5068,6 +5072,11 @@ declare module "@tiptap/core" {
|
|
|
5068
5072
|
}
|
|
5069
5073
|
|
|
5070
5074
|
|
|
5075
|
+
declare namespace Calendar {
|
|
5076
|
+
var displayName: string;
|
|
5077
|
+
}
|
|
5078
|
+
|
|
5079
|
+
|
|
5071
5080
|
declare module "@tiptap/core" {
|
|
5072
5081
|
interface Commands<ReturnType> {
|
|
5073
5082
|
moodTracker: {
|
|
@@ -5075,8 +5084,3 @@ declare module "@tiptap/core" {
|
|
|
5075
5084
|
};
|
|
5076
5085
|
}
|
|
5077
5086
|
}
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
declare namespace Calendar {
|
|
5081
|
-
var displayName: string;
|
|
5082
|
-
}
|