@factorialco/f0-react 1.369.4 → 1.370.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/f0.d.ts CHANGED
@@ -2514,6 +2514,9 @@ export declare const defaultTranslations: {
2514
2514
  readonly ordered: "Ordered";
2515
2515
  readonly task: "Task";
2516
2516
  readonly details: "Dropdown";
2517
+ readonly video: "Video";
2518
+ readonly videoUrlPrompt: "Enter a YouTube or Vimeo URL";
2519
+ readonly videoUrlInvalid: "Please enter a valid YouTube or Vimeo URL";
2517
2520
  readonly link: "Link";
2518
2521
  readonly linkPlaceholder: "Enter a link";
2519
2522
  readonly groups: {
@@ -7770,6 +7773,11 @@ declare module "gridstack" {
7770
7773
  }
7771
7774
 
7772
7775
 
7776
+ declare namespace Calendar {
7777
+ var displayName: string;
7778
+ }
7779
+
7780
+
7773
7781
  declare module "@tiptap/core" {
7774
7782
  interface Commands<ReturnType> {
7775
7783
  aiBlock: {
@@ -7808,6 +7816,12 @@ declare module "@tiptap/core" {
7808
7816
  }
7809
7817
 
7810
7818
 
7811
- declare namespace Calendar {
7812
- var displayName: string;
7819
+ declare module "@tiptap/core" {
7820
+ interface Commands<ReturnType> {
7821
+ videoEmbed: {
7822
+ setVideoEmbed: (options: {
7823
+ src: string;
7824
+ }) => ReturnType;
7825
+ };
7826
+ }
7813
7827
  }