@factorialco/f0-react 1.303.4 → 1.303.6
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/experimental.d.ts +32 -29
- package/dist/experimental.js +4679 -4610
- package/dist/f0.d.ts +30 -28
- package/dist/f0.js +2 -2
- package/dist/{hooks-BvQUUeUk.js → hooks-CSPsU7f1.js} +8649 -8635
- package/dist/i18n-provider-defaults.d.ts +29 -28
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -408,6 +408,7 @@ export declare const defaultTranslations: {
|
|
|
408
408
|
readonly placeholder: "Respondent's answer";
|
|
409
409
|
};
|
|
410
410
|
readonly labels: {
|
|
411
|
+
readonly applyingChanges: "Applying changes";
|
|
411
412
|
readonly endOfSection: "End of section";
|
|
412
413
|
readonly title: "Title";
|
|
413
414
|
readonly titlePlaceholder: "Question title";
|
|
@@ -449,32 +450,6 @@ declare global {
|
|
|
449
450
|
}
|
|
450
451
|
}
|
|
451
452
|
|
|
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
|
-
|
|
469
|
-
|
|
470
|
-
declare module "@tiptap/core" {
|
|
471
|
-
interface Commands<ReturnType> {
|
|
472
|
-
aiBlock: {
|
|
473
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
474
|
-
};
|
|
475
|
-
}
|
|
476
|
-
}
|
|
477
|
-
|
|
478
453
|
|
|
479
454
|
declare module "@tiptap/core" {
|
|
480
455
|
interface Commands<ReturnType> {
|
|
@@ -496,13 +471,39 @@ declare module "@tiptap/core" {
|
|
|
496
471
|
|
|
497
472
|
declare module "@tiptap/core" {
|
|
498
473
|
interface Commands<ReturnType> {
|
|
499
|
-
|
|
500
|
-
|
|
474
|
+
aiBlock: {
|
|
475
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
501
476
|
};
|
|
502
477
|
}
|
|
503
478
|
}
|
|
504
479
|
|
|
480
|
+
declare module "gridstack" {
|
|
481
|
+
interface GridStackWidget {
|
|
482
|
+
id?: string;
|
|
483
|
+
allowedSizes?: Array<{
|
|
484
|
+
w: number;
|
|
485
|
+
h: number;
|
|
486
|
+
}>;
|
|
487
|
+
meta?: Record<string, unknown>;
|
|
488
|
+
}
|
|
489
|
+
interface GridStackNode {
|
|
490
|
+
allowedSizes?: Array<{
|
|
491
|
+
w: number;
|
|
492
|
+
h: number;
|
|
493
|
+
}>;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
505
497
|
|
|
506
498
|
declare namespace Calendar {
|
|
507
499
|
var displayName: string;
|
|
508
500
|
}
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
declare module "@tiptap/core" {
|
|
504
|
+
interface Commands<ReturnType> {
|
|
505
|
+
moodTracker: {
|
|
506
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
507
|
+
};
|
|
508
|
+
}
|
|
509
|
+
}
|