@factorialco/f0-react 1.286.0 → 1.287.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 +11 -11
- package/dist/experimental.js +4961 -4911
- package/dist/f0.d.ts +11 -11
- package/icons/app/Computer.d.ts +4 -0
- package/icons/app/Computer.d.ts.map +1 -0
- package/icons/app/Computer.js +5 -0
- package/icons/app/Tablet.d.ts +4 -0
- package/icons/app/Tablet.d.ts.map +1 -0
- package/icons/app/Tablet.js +5 -0
- package/icons/app/index.d.ts +2 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +2 -0
- package/package.json +2 -2
package/dist/experimental.d.ts
CHANGED
|
@@ -6170,15 +6170,6 @@ declare module "gridstack" {
|
|
|
6170
6170
|
}
|
|
6171
6171
|
|
|
6172
6172
|
|
|
6173
|
-
declare module "@tiptap/core" {
|
|
6174
|
-
interface Commands<ReturnType> {
|
|
6175
|
-
aiBlock: {
|
|
6176
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6177
|
-
};
|
|
6178
|
-
}
|
|
6179
|
-
}
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
6173
|
declare module "@tiptap/core" {
|
|
6183
6174
|
interface Commands<ReturnType> {
|
|
6184
6175
|
liveCompanion: {
|
|
@@ -6199,8 +6190,8 @@ declare module "@tiptap/core" {
|
|
|
6199
6190
|
|
|
6200
6191
|
declare module "@tiptap/core" {
|
|
6201
6192
|
interface Commands<ReturnType> {
|
|
6202
|
-
|
|
6203
|
-
|
|
6193
|
+
aiBlock: {
|
|
6194
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6204
6195
|
};
|
|
6205
6196
|
}
|
|
6206
6197
|
}
|
|
@@ -6209,3 +6200,12 @@ declare module "@tiptap/core" {
|
|
|
6209
6200
|
declare namespace Calendar {
|
|
6210
6201
|
var displayName: string;
|
|
6211
6202
|
}
|
|
6203
|
+
|
|
6204
|
+
|
|
6205
|
+
declare module "@tiptap/core" {
|
|
6206
|
+
interface Commands<ReturnType> {
|
|
6207
|
+
moodTracker: {
|
|
6208
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
6209
|
+
};
|
|
6210
|
+
}
|
|
6211
|
+
}
|