@factorialco/f0-react 1.300.0 → 1.302.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.
@@ -365,6 +365,7 @@ export declare const defaultTranslations: {
365
365
  readonly placeholder: "Share what didn’t work";
366
366
  };
367
367
  };
368
+ readonly ask: "Ask One";
368
369
  };
369
370
  readonly select: {
370
371
  readonly noResults: "No results found";
@@ -448,6 +449,23 @@ declare global {
448
449
  }
449
450
  }
450
451
 
452
+ declare module "gridstack" {
453
+ interface GridStackWidget {
454
+ id?: string;
455
+ allowedSizes?: Array<{
456
+ w: number;
457
+ h: number;
458
+ }>;
459
+ meta?: Record<string, unknown>;
460
+ }
461
+ interface GridStackNode {
462
+ allowedSizes?: Array<{
463
+ w: number;
464
+ h: number;
465
+ }>;
466
+ }
467
+ }
468
+
451
469
 
452
470
  declare module "@tiptap/core" {
453
471
  interface Commands<ReturnType> {
@@ -460,8 +478,8 @@ declare module "@tiptap/core" {
460
478
 
461
479
  declare module "@tiptap/core" {
462
480
  interface Commands<ReturnType> {
463
- transcript: {
464
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
481
+ liveCompanion: {
482
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
465
483
  };
466
484
  }
467
485
  }
@@ -469,35 +487,15 @@ declare module "@tiptap/core" {
469
487
 
470
488
  declare module "@tiptap/core" {
471
489
  interface Commands<ReturnType> {
472
- liveCompanion: {
473
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
490
+ transcript: {
491
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
474
492
  };
475
493
  }
476
494
  }
477
495
 
478
496
 
479
- declare module "gridstack" {
480
- interface GridStackWidget {
481
- id?: string;
482
- allowedSizes?: Array<{
483
- w: number;
484
- h: number;
485
- }>;
486
- renderFn?: () => React.ReactElement | null;
487
- meta?: Record<string, unknown>;
488
- }
489
- interface GridStackNode {
490
- id?: string;
491
- w?: number;
492
- h?: number;
493
- x?: number;
494
- y?: number;
495
- allowedSizes?: Array<{
496
- w: number;
497
- h: number;
498
- }>;
499
- renderFn?: () => React.ReactElement | null;
500
- }
497
+ declare namespace Calendar {
498
+ var displayName: string;
501
499
  }
502
500
 
503
501
 
@@ -508,8 +506,3 @@ declare module "@tiptap/core" {
508
506
  };
509
507
  }
510
508
  }
511
-
512
-
513
- declare namespace Calendar {
514
- var displayName: string;
515
- }
@@ -364,7 +364,8 @@ const e = {
364
364
  label: "Your feedback helps us improve future answers",
365
365
  placeholder: "Share what didn’t work"
366
366
  }
367
- }
367
+ },
368
+ ask: "Ask One"
368
369
  },
369
370
  select: {
370
371
  noResults: "No results found",