@factorialco/f0-react 1.316.1 → 1.316.2
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 +24 -24
- package/dist/experimental.js +1 -1
- package/dist/f0.d.ts +24 -24
- package/dist/i18n-provider-defaults.d.ts +24 -24
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -6455,11 +6455,28 @@ declare global {
|
|
|
6455
6455
|
}
|
|
6456
6456
|
}
|
|
6457
6457
|
|
|
6458
|
+
declare module "gridstack" {
|
|
6459
|
+
interface GridStackWidget {
|
|
6460
|
+
id?: string;
|
|
6461
|
+
allowedSizes?: Array<{
|
|
6462
|
+
w: number;
|
|
6463
|
+
h: number;
|
|
6464
|
+
}>;
|
|
6465
|
+
meta?: Record<string, unknown>;
|
|
6466
|
+
}
|
|
6467
|
+
interface GridStackNode {
|
|
6468
|
+
allowedSizes?: Array<{
|
|
6469
|
+
w: number;
|
|
6470
|
+
h: number;
|
|
6471
|
+
}>;
|
|
6472
|
+
}
|
|
6473
|
+
}
|
|
6474
|
+
|
|
6458
6475
|
|
|
6459
6476
|
declare module "@tiptap/core" {
|
|
6460
6477
|
interface Commands<ReturnType> {
|
|
6461
|
-
|
|
6462
|
-
|
|
6478
|
+
aiBlock: {
|
|
6479
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6463
6480
|
};
|
|
6464
6481
|
}
|
|
6465
6482
|
}
|
|
@@ -6467,8 +6484,8 @@ declare module "@tiptap/core" {
|
|
|
6467
6484
|
|
|
6468
6485
|
declare module "@tiptap/core" {
|
|
6469
6486
|
interface Commands<ReturnType> {
|
|
6470
|
-
|
|
6471
|
-
|
|
6487
|
+
liveCompanion: {
|
|
6488
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6472
6489
|
};
|
|
6473
6490
|
}
|
|
6474
6491
|
}
|
|
@@ -6482,21 +6499,9 @@ declare module "@tiptap/core" {
|
|
|
6482
6499
|
}
|
|
6483
6500
|
}
|
|
6484
6501
|
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
allowedSizes?: Array<{
|
|
6489
|
-
w: number;
|
|
6490
|
-
h: number;
|
|
6491
|
-
}>;
|
|
6492
|
-
meta?: Record<string, unknown>;
|
|
6493
|
-
}
|
|
6494
|
-
interface GridStackNode {
|
|
6495
|
-
allowedSizes?: Array<{
|
|
6496
|
-
w: number;
|
|
6497
|
-
h: number;
|
|
6498
|
-
}>;
|
|
6499
|
-
}
|
|
6502
|
+
|
|
6503
|
+
declare namespace Calendar {
|
|
6504
|
+
var displayName: string;
|
|
6500
6505
|
}
|
|
6501
6506
|
|
|
6502
6507
|
|
|
@@ -6507,8 +6512,3 @@ declare module "@tiptap/core" {
|
|
|
6507
6512
|
};
|
|
6508
6513
|
}
|
|
6509
6514
|
}
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
declare namespace Calendar {
|
|
6513
|
-
var displayName: string;
|
|
6514
|
-
}
|
package/dist/experimental.js
CHANGED
|
@@ -71523,7 +71523,7 @@ const C2e = (t) => {
|
|
|
71523
71523
|
disableButtons: !1,
|
|
71524
71524
|
toolbarLabels: m,
|
|
71525
71525
|
isToolbarOpen: !h,
|
|
71526
|
-
isFullscreen: !
|
|
71526
|
+
isFullscreen: !1,
|
|
71527
71527
|
plainHtmlMode: !1
|
|
71528
71528
|
})]
|
|
71529
71529
|
}) : null;
|
package/dist/f0.d.ts
CHANGED
|
@@ -4929,11 +4929,28 @@ declare global {
|
|
|
4929
4929
|
}
|
|
4930
4930
|
}
|
|
4931
4931
|
|
|
4932
|
+
declare module "gridstack" {
|
|
4933
|
+
interface GridStackWidget {
|
|
4934
|
+
id?: string;
|
|
4935
|
+
allowedSizes?: Array<{
|
|
4936
|
+
w: number;
|
|
4937
|
+
h: number;
|
|
4938
|
+
}>;
|
|
4939
|
+
meta?: Record<string, unknown>;
|
|
4940
|
+
}
|
|
4941
|
+
interface GridStackNode {
|
|
4942
|
+
allowedSizes?: Array<{
|
|
4943
|
+
w: number;
|
|
4944
|
+
h: number;
|
|
4945
|
+
}>;
|
|
4946
|
+
}
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4932
4949
|
|
|
4933
4950
|
declare module "@tiptap/core" {
|
|
4934
4951
|
interface Commands<ReturnType> {
|
|
4935
|
-
|
|
4936
|
-
|
|
4952
|
+
aiBlock: {
|
|
4953
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4937
4954
|
};
|
|
4938
4955
|
}
|
|
4939
4956
|
}
|
|
@@ -4941,8 +4958,8 @@ declare module "@tiptap/core" {
|
|
|
4941
4958
|
|
|
4942
4959
|
declare module "@tiptap/core" {
|
|
4943
4960
|
interface Commands<ReturnType> {
|
|
4944
|
-
|
|
4945
|
-
|
|
4961
|
+
liveCompanion: {
|
|
4962
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4946
4963
|
};
|
|
4947
4964
|
}
|
|
4948
4965
|
}
|
|
@@ -4956,21 +4973,9 @@ declare module "@tiptap/core" {
|
|
|
4956
4973
|
}
|
|
4957
4974
|
}
|
|
4958
4975
|
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
allowedSizes?: Array<{
|
|
4963
|
-
w: number;
|
|
4964
|
-
h: number;
|
|
4965
|
-
}>;
|
|
4966
|
-
meta?: Record<string, unknown>;
|
|
4967
|
-
}
|
|
4968
|
-
interface GridStackNode {
|
|
4969
|
-
allowedSizes?: Array<{
|
|
4970
|
-
w: number;
|
|
4971
|
-
h: number;
|
|
4972
|
-
}>;
|
|
4973
|
-
}
|
|
4976
|
+
|
|
4977
|
+
declare namespace Calendar {
|
|
4978
|
+
var displayName: string;
|
|
4974
4979
|
}
|
|
4975
4980
|
|
|
4976
4981
|
|
|
@@ -4981,8 +4986,3 @@ declare module "@tiptap/core" {
|
|
|
4981
4986
|
};
|
|
4982
4987
|
}
|
|
4983
4988
|
}
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
declare namespace Calendar {
|
|
4987
|
-
var displayName: string;
|
|
4988
|
-
}
|
|
@@ -458,11 +458,28 @@ declare global {
|
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
+
declare module "gridstack" {
|
|
462
|
+
interface GridStackWidget {
|
|
463
|
+
id?: string;
|
|
464
|
+
allowedSizes?: Array<{
|
|
465
|
+
w: number;
|
|
466
|
+
h: number;
|
|
467
|
+
}>;
|
|
468
|
+
meta?: Record<string, unknown>;
|
|
469
|
+
}
|
|
470
|
+
interface GridStackNode {
|
|
471
|
+
allowedSizes?: Array<{
|
|
472
|
+
w: number;
|
|
473
|
+
h: number;
|
|
474
|
+
}>;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
461
478
|
|
|
462
479
|
declare module "@tiptap/core" {
|
|
463
480
|
interface Commands<ReturnType> {
|
|
464
|
-
|
|
465
|
-
|
|
481
|
+
aiBlock: {
|
|
482
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
466
483
|
};
|
|
467
484
|
}
|
|
468
485
|
}
|
|
@@ -470,8 +487,8 @@ declare module "@tiptap/core" {
|
|
|
470
487
|
|
|
471
488
|
declare module "@tiptap/core" {
|
|
472
489
|
interface Commands<ReturnType> {
|
|
473
|
-
|
|
474
|
-
|
|
490
|
+
liveCompanion: {
|
|
491
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
475
492
|
};
|
|
476
493
|
}
|
|
477
494
|
}
|
|
@@ -485,21 +502,9 @@ declare module "@tiptap/core" {
|
|
|
485
502
|
}
|
|
486
503
|
}
|
|
487
504
|
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
allowedSizes?: Array<{
|
|
492
|
-
w: number;
|
|
493
|
-
h: number;
|
|
494
|
-
}>;
|
|
495
|
-
meta?: Record<string, unknown>;
|
|
496
|
-
}
|
|
497
|
-
interface GridStackNode {
|
|
498
|
-
allowedSizes?: Array<{
|
|
499
|
-
w: number;
|
|
500
|
-
h: number;
|
|
501
|
-
}>;
|
|
502
|
-
}
|
|
505
|
+
|
|
506
|
+
declare namespace Calendar {
|
|
507
|
+
var displayName: string;
|
|
503
508
|
}
|
|
504
509
|
|
|
505
510
|
|
|
@@ -510,8 +515,3 @@ declare module "@tiptap/core" {
|
|
|
510
515
|
};
|
|
511
516
|
}
|
|
512
517
|
}
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
declare namespace Calendar {
|
|
516
|
-
var displayName: string;
|
|
517
|
-
}
|