@factorialco/f0-react 1.195.1 → 1.196.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.
@@ -2746,6 +2746,10 @@ declare type MetadataItemValue_2 = {
2746
2746
  type: "dot-tag";
2747
2747
  label: string;
2748
2748
  color: NewColor;
2749
+ } | {
2750
+ type: "tag";
2751
+ label: string;
2752
+ icon?: IconType;
2749
2753
  };
2750
2754
 
2751
2755
  declare interface MetadataProps {
@@ -4799,15 +4803,6 @@ declare global {
4799
4803
  }
4800
4804
 
4801
4805
 
4802
- declare module "@tiptap/core" {
4803
- interface Commands<ReturnType> {
4804
- aiBlock: {
4805
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
4806
- };
4807
- }
4808
- }
4809
-
4810
-
4811
4806
  declare module "@tiptap/core" {
4812
4807
  interface Commands<ReturnType> {
4813
4808
  liveCompanion: {
@@ -4828,8 +4823,8 @@ declare module "@tiptap/core" {
4828
4823
 
4829
4824
  declare module "@tiptap/core" {
4830
4825
  interface Commands<ReturnType> {
4831
- moodTracker: {
4832
- insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
4826
+ aiBlock: {
4827
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
4833
4828
  };
4834
4829
  }
4835
4830
  }
@@ -4838,3 +4833,12 @@ declare module "@tiptap/core" {
4838
4833
  declare namespace Calendar {
4839
4834
  var displayName: string;
4840
4835
  }
4836
+
4837
+
4838
+ declare module "@tiptap/core" {
4839
+ interface Commands<ReturnType> {
4840
+ moodTracker: {
4841
+ insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
4842
+ };
4843
+ }
4844
+ }