@factorialco/f0-react 4.28.1 → 4.29.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/ai.d.ts +7 -7
- package/dist/experimental.d.ts +8 -8
- package/dist/experimental.js +2 -2
- package/dist/f0.d.ts +21 -12
- package/dist/f0.js +1892 -1851
- package/dist/i18n-provider-defaults.d.ts +7 -7
- package/dist/{useDataCollectionSource-BWJkxuVd.js → useDataCollectionSource-C27vc_VB.js} +4 -2
- package/package.json +1 -1
|
@@ -979,8 +979,11 @@ declare module "@tiptap/core" {
|
|
|
979
979
|
|
|
980
980
|
declare module "@tiptap/core" {
|
|
981
981
|
interface Commands<ReturnType> {
|
|
982
|
-
|
|
983
|
-
|
|
982
|
+
enhanceHighlight: {
|
|
983
|
+
setEnhanceHighlight: (from: number, to: number, options?: {
|
|
984
|
+
placeholder?: string;
|
|
985
|
+
}) => ReturnType;
|
|
986
|
+
clearEnhanceHighlight: () => ReturnType;
|
|
984
987
|
};
|
|
985
988
|
}
|
|
986
989
|
}
|
|
@@ -988,11 +991,8 @@ declare module "@tiptap/core" {
|
|
|
988
991
|
|
|
989
992
|
declare module "@tiptap/core" {
|
|
990
993
|
interface Commands<ReturnType> {
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
placeholder?: string;
|
|
994
|
-
}) => ReturnType;
|
|
995
|
-
clearEnhanceHighlight: () => ReturnType;
|
|
994
|
+
moodTracker: {
|
|
995
|
+
insertMoodTracker: (data: MoodTrackerData) => ReturnType;
|
|
996
996
|
};
|
|
997
997
|
}
|
|
998
998
|
}
|
|
@@ -53439,7 +53439,8 @@ const aS = ({
|
|
|
53439
53439
|
actions: [
|
|
53440
53440
|
{
|
|
53441
53441
|
label: n.collections.emptyStates.noResults.clearFilters,
|
|
53442
|
-
onClick: e.clearFilters
|
|
53442
|
+
onClick: e.clearFilters,
|
|
53443
|
+
variant: "neutral"
|
|
53443
53444
|
}
|
|
53444
53445
|
]
|
|
53445
53446
|
},
|
|
@@ -53449,7 +53450,8 @@ const aS = ({
|
|
|
53449
53450
|
actions: [
|
|
53450
53451
|
{
|
|
53451
53452
|
label: n.collections.emptyStates.error.retry,
|
|
53452
|
-
onClick: e.retry
|
|
53453
|
+
onClick: e.retry,
|
|
53454
|
+
variant: "neutral"
|
|
53453
53455
|
}
|
|
53454
53456
|
]
|
|
53455
53457
|
}
|