@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/f0.d.ts
CHANGED
|
@@ -1869,11 +1869,6 @@ export declare const defaultTranslations: {
|
|
|
1869
1869
|
readonly actions: "Actions";
|
|
1870
1870
|
readonly sectionTitlePlaceholder: "Section title";
|
|
1871
1871
|
};
|
|
1872
|
-
readonly defaults: {
|
|
1873
|
-
readonly newSection: "New Section";
|
|
1874
|
-
readonly newQuestion: "New Question";
|
|
1875
|
-
readonly newQuestionDescription: "New question description";
|
|
1876
|
-
};
|
|
1877
1872
|
};
|
|
1878
1873
|
};
|
|
1879
1874
|
|
|
@@ -4633,33 +4628,6 @@ declare global {
|
|
|
4633
4628
|
}
|
|
4634
4629
|
|
|
4635
4630
|
|
|
4636
|
-
declare module "@tiptap/core" {
|
|
4637
|
-
interface Commands<ReturnType> {
|
|
4638
|
-
liveCompanion: {
|
|
4639
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4640
|
-
};
|
|
4641
|
-
}
|
|
4642
|
-
}
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
declare module "@tiptap/core" {
|
|
4646
|
-
interface Commands<ReturnType> {
|
|
4647
|
-
aiBlock: {
|
|
4648
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4649
|
-
};
|
|
4650
|
-
}
|
|
4651
|
-
}
|
|
4652
|
-
|
|
4653
|
-
|
|
4654
|
-
declare module "@tiptap/core" {
|
|
4655
|
-
interface Commands<ReturnType> {
|
|
4656
|
-
transcript: {
|
|
4657
|
-
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
4658
|
-
};
|
|
4659
|
-
}
|
|
4660
|
-
}
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
4631
|
declare module "gridstack" {
|
|
4664
4632
|
interface GridStackWidget {
|
|
4665
4633
|
id?: string;
|
|
@@ -4687,8 +4655,26 @@ declare module "gridstack" {
|
|
|
4687
4655
|
|
|
4688
4656
|
declare module "@tiptap/core" {
|
|
4689
4657
|
interface Commands<ReturnType> {
|
|
4690
|
-
|
|
4691
|
-
|
|
4658
|
+
aiBlock: {
|
|
4659
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4660
|
+
};
|
|
4661
|
+
}
|
|
4662
|
+
}
|
|
4663
|
+
|
|
4664
|
+
|
|
4665
|
+
declare module "@tiptap/core" {
|
|
4666
|
+
interface Commands<ReturnType> {
|
|
4667
|
+
liveCompanion: {
|
|
4668
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4669
|
+
};
|
|
4670
|
+
}
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
|
|
4674
|
+
declare module "@tiptap/core" {
|
|
4675
|
+
interface Commands<ReturnType> {
|
|
4676
|
+
transcript: {
|
|
4677
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
4692
4678
|
};
|
|
4693
4679
|
}
|
|
4694
4680
|
}
|
|
@@ -4697,3 +4683,12 @@ declare module "@tiptap/core" {
|
|
|
4697
4683
|
declare namespace Calendar {
|
|
4698
4684
|
var displayName: string;
|
|
4699
4685
|
}
|
|
4686
|
+
|
|
4687
|
+
|
|
4688
|
+
declare module "@tiptap/core" {
|
|
4689
|
+
interface Commands<ReturnType> {
|
|
4690
|
+
moodTracker: {
|
|
4691
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
4692
|
+
};
|
|
4693
|
+
}
|
|
4694
|
+
}
|
|
@@ -419,11 +419,6 @@ export declare const defaultTranslations: {
|
|
|
419
419
|
readonly actions: "Actions";
|
|
420
420
|
readonly sectionTitlePlaceholder: "Section title";
|
|
421
421
|
};
|
|
422
|
-
readonly defaults: {
|
|
423
|
-
readonly newSection: "New Section";
|
|
424
|
-
readonly newQuestion: "New Question";
|
|
425
|
-
readonly newQuestionDescription: "New question description";
|
|
426
|
-
};
|
|
427
422
|
};
|
|
428
423
|
};
|
|
429
424
|
|
|
@@ -454,33 +449,6 @@ declare global {
|
|
|
454
449
|
}
|
|
455
450
|
|
|
456
451
|
|
|
457
|
-
declare module "@tiptap/core" {
|
|
458
|
-
interface Commands<ReturnType> {
|
|
459
|
-
liveCompanion: {
|
|
460
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
461
|
-
};
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
declare module "@tiptap/core" {
|
|
467
|
-
interface Commands<ReturnType> {
|
|
468
|
-
aiBlock: {
|
|
469
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
470
|
-
};
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
declare module "@tiptap/core" {
|
|
476
|
-
interface Commands<ReturnType> {
|
|
477
|
-
transcript: {
|
|
478
|
-
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
479
|
-
};
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
|
|
484
452
|
declare module "gridstack" {
|
|
485
453
|
interface GridStackWidget {
|
|
486
454
|
id?: string;
|
|
@@ -508,8 +476,26 @@ declare module "gridstack" {
|
|
|
508
476
|
|
|
509
477
|
declare module "@tiptap/core" {
|
|
510
478
|
interface Commands<ReturnType> {
|
|
511
|
-
|
|
512
|
-
|
|
479
|
+
aiBlock: {
|
|
480
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
481
|
+
};
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
declare module "@tiptap/core" {
|
|
487
|
+
interface Commands<ReturnType> {
|
|
488
|
+
liveCompanion: {
|
|
489
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
490
|
+
};
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
declare module "@tiptap/core" {
|
|
496
|
+
interface Commands<ReturnType> {
|
|
497
|
+
transcript: {
|
|
498
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
513
499
|
};
|
|
514
500
|
}
|
|
515
501
|
}
|
|
@@ -518,3 +504,12 @@ declare module "@tiptap/core" {
|
|
|
518
504
|
declare namespace Calendar {
|
|
519
505
|
var displayName: string;
|
|
520
506
|
}
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
declare module "@tiptap/core" {
|
|
510
|
+
interface Commands<ReturnType> {
|
|
511
|
+
moodTracker: {
|
|
512
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
513
|
+
};
|
|
514
|
+
}
|
|
515
|
+
}
|
|
@@ -418,11 +418,6 @@ const e = {
|
|
|
418
418
|
questionOptions: "Question options",
|
|
419
419
|
actions: "Actions",
|
|
420
420
|
sectionTitlePlaceholder: "Section title"
|
|
421
|
-
},
|
|
422
|
-
defaults: {
|
|
423
|
-
newSection: "New Section",
|
|
424
|
-
newQuestion: "New Question",
|
|
425
|
-
newQuestionDescription: "New question description"
|
|
426
421
|
}
|
|
427
422
|
}
|
|
428
423
|
};
|