@factorialco/f0-react 1.240.1 → 1.240.2
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 +6 -5
- package/dist/experimental.js +1091 -1089
- package/dist/f0.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -4339,6 +4339,7 @@ export declare type SelectItemObject<T, R = unknown> = {
|
|
|
4339
4339
|
tag?: string;
|
|
4340
4340
|
icon?: IconType;
|
|
4341
4341
|
item?: R;
|
|
4342
|
+
disabled?: boolean;
|
|
4342
4343
|
};
|
|
4343
4344
|
|
|
4344
4345
|
export declare type SelectItemProps<T, R = unknown> = SelectItemObject<T, R> | {
|
|
@@ -5410,6 +5411,11 @@ declare module "@tiptap/core" {
|
|
|
5410
5411
|
}
|
|
5411
5412
|
|
|
5412
5413
|
|
|
5414
|
+
declare namespace Calendar {
|
|
5415
|
+
var displayName: string;
|
|
5416
|
+
}
|
|
5417
|
+
|
|
5418
|
+
|
|
5413
5419
|
declare module "@tiptap/core" {
|
|
5414
5420
|
interface Commands<ReturnType> {
|
|
5415
5421
|
moodTracker: {
|
|
@@ -5417,8 +5423,3 @@ declare module "@tiptap/core" {
|
|
|
5417
5423
|
};
|
|
5418
5424
|
}
|
|
5419
5425
|
}
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
declare namespace Calendar {
|
|
5423
|
-
var displayName: string;
|
|
5424
|
-
}
|