@factorialco/f0-react 1.294.0 → 1.295.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.
@@ -161,6 +161,7 @@ export declare const defaultTranslations: {
161
161
  readonly selected: {
162
162
  readonly singular: "Selected";
163
163
  readonly plural: "Selected";
164
+ readonly all: "All selected";
164
165
  };
165
166
  };
166
167
  readonly filters: {
@@ -453,31 +454,6 @@ declare global {
453
454
  }
454
455
 
455
456
 
456
- declare module "gridstack" {
457
- interface GridStackWidget {
458
- id?: string;
459
- allowedSizes?: Array<{
460
- w: number;
461
- h: number;
462
- }>;
463
- renderFn?: () => React.ReactElement | null;
464
- meta?: Record<string, unknown>;
465
- }
466
- interface GridStackNode {
467
- id?: string;
468
- w?: number;
469
- h?: number;
470
- x?: number;
471
- y?: number;
472
- allowedSizes?: Array<{
473
- w: number;
474
- h: number;
475
- }>;
476
- renderFn?: () => React.ReactElement | null;
477
- }
478
- }
479
-
480
-
481
457
  declare module "@tiptap/core" {
482
458
  interface Commands<ReturnType> {
483
459
  aiBlock: {
@@ -505,6 +481,31 @@ declare module "@tiptap/core" {
505
481
  }
506
482
 
507
483
 
484
+ declare module "gridstack" {
485
+ interface GridStackWidget {
486
+ id?: string;
487
+ allowedSizes?: Array<{
488
+ w: number;
489
+ h: number;
490
+ }>;
491
+ renderFn?: () => React.ReactElement | null;
492
+ meta?: Record<string, unknown>;
493
+ }
494
+ interface GridStackNode {
495
+ id?: string;
496
+ w?: number;
497
+ h?: number;
498
+ x?: number;
499
+ y?: number;
500
+ allowedSizes?: Array<{
501
+ w: number;
502
+ h: number;
503
+ }>;
504
+ renderFn?: () => React.ReactElement | null;
505
+ }
506
+ }
507
+
508
+
508
509
  declare namespace Calendar {
509
510
  var displayName: string;
510
511
  }
@@ -160,7 +160,8 @@ const e = {
160
160
  status: {
161
161
  selected: {
162
162
  singular: "Selected",
163
- plural: "Selected"
163
+ plural: "Selected",
164
+ all: "All selected"
164
165
  }
165
166
  },
166
167
  filters: {