@factorialco/f0-react 1.299.2 → 1.299.3
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 +29 -34
- package/dist/experimental.js +1390 -1377
- package/dist/f0.d.ts +29 -34
- package/dist/i18n-provider-defaults.d.ts +29 -34
- package/dist/i18n-provider-defaults.js +0 -5
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -2509,11 +2509,6 @@ declare const defaultTranslations: {
|
|
|
2509
2509
|
readonly actions: "Actions";
|
|
2510
2510
|
readonly sectionTitlePlaceholder: "Section title";
|
|
2511
2511
|
};
|
|
2512
|
-
readonly defaults: {
|
|
2513
|
-
readonly newSection: "New Section";
|
|
2514
|
-
readonly newQuestion: "New Question";
|
|
2515
|
-
readonly newQuestionDescription: "New question description";
|
|
2516
|
-
};
|
|
2517
2512
|
};
|
|
2518
2513
|
};
|
|
2519
2514
|
|
|
@@ -6372,33 +6367,6 @@ declare global {
|
|
|
6372
6367
|
}
|
|
6373
6368
|
|
|
6374
6369
|
|
|
6375
|
-
declare module "@tiptap/core" {
|
|
6376
|
-
interface Commands<ReturnType> {
|
|
6377
|
-
liveCompanion: {
|
|
6378
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6379
|
-
};
|
|
6380
|
-
}
|
|
6381
|
-
}
|
|
6382
|
-
|
|
6383
|
-
|
|
6384
|
-
declare module "@tiptap/core" {
|
|
6385
|
-
interface Commands<ReturnType> {
|
|
6386
|
-
aiBlock: {
|
|
6387
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6388
|
-
};
|
|
6389
|
-
}
|
|
6390
|
-
}
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
declare module "@tiptap/core" {
|
|
6394
|
-
interface Commands<ReturnType> {
|
|
6395
|
-
transcript: {
|
|
6396
|
-
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
6397
|
-
};
|
|
6398
|
-
}
|
|
6399
|
-
}
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
6370
|
declare module "gridstack" {
|
|
6403
6371
|
interface GridStackWidget {
|
|
6404
6372
|
id?: string;
|
|
@@ -6426,8 +6394,26 @@ declare module "gridstack" {
|
|
|
6426
6394
|
|
|
6427
6395
|
declare module "@tiptap/core" {
|
|
6428
6396
|
interface Commands<ReturnType> {
|
|
6429
|
-
|
|
6430
|
-
|
|
6397
|
+
aiBlock: {
|
|
6398
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6399
|
+
};
|
|
6400
|
+
}
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
|
|
6404
|
+
declare module "@tiptap/core" {
|
|
6405
|
+
interface Commands<ReturnType> {
|
|
6406
|
+
liveCompanion: {
|
|
6407
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6408
|
+
};
|
|
6409
|
+
}
|
|
6410
|
+
}
|
|
6411
|
+
|
|
6412
|
+
|
|
6413
|
+
declare module "@tiptap/core" {
|
|
6414
|
+
interface Commands<ReturnType> {
|
|
6415
|
+
transcript: {
|
|
6416
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
6431
6417
|
};
|
|
6432
6418
|
}
|
|
6433
6419
|
}
|
|
@@ -6436,3 +6422,12 @@ declare module "@tiptap/core" {
|
|
|
6436
6422
|
declare namespace Calendar {
|
|
6437
6423
|
var displayName: string;
|
|
6438
6424
|
}
|
|
6425
|
+
|
|
6426
|
+
|
|
6427
|
+
declare module "@tiptap/core" {
|
|
6428
|
+
interface Commands<ReturnType> {
|
|
6429
|
+
moodTracker: {
|
|
6430
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
6431
|
+
};
|
|
6432
|
+
}
|
|
6433
|
+
}
|