@factorialco/f0-react 1.427.2 → 1.428.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/ai.d.ts +5 -5
- package/dist/experimental.d.ts +5 -5
- package/dist/f0.d.ts +9 -5
- package/dist/f0.js +2251 -2235
- package/dist/i18n-provider-defaults.d.ts +5 -5
- package/package.json +1 -1
package/dist/ai.d.ts
CHANGED
|
@@ -1793,6 +1793,11 @@ declare module "gridstack" {
|
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
+
declare namespace Calendar {
|
|
1797
|
+
var displayName: string;
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
|
|
1796
1801
|
declare module "@tiptap/core" {
|
|
1797
1802
|
interface Commands<ReturnType> {
|
|
1798
1803
|
aiBlock: {
|
|
@@ -1840,8 +1845,3 @@ declare module "@tiptap/core" {
|
|
|
1840
1845
|
};
|
|
1841
1846
|
}
|
|
1842
1847
|
}
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
declare namespace Calendar {
|
|
1846
|
-
var displayName: string;
|
|
1847
|
-
}
|
package/dist/experimental.d.ts
CHANGED
|
@@ -7235,6 +7235,11 @@ declare module "gridstack" {
|
|
|
7235
7235
|
}
|
|
7236
7236
|
|
|
7237
7237
|
|
|
7238
|
+
declare namespace Calendar {
|
|
7239
|
+
var displayName: string;
|
|
7240
|
+
}
|
|
7241
|
+
|
|
7242
|
+
|
|
7238
7243
|
declare module "@tiptap/core" {
|
|
7239
7244
|
interface Commands<ReturnType> {
|
|
7240
7245
|
aiBlock: {
|
|
@@ -7282,8 +7287,3 @@ declare module "@tiptap/core" {
|
|
|
7282
7287
|
};
|
|
7283
7288
|
}
|
|
7284
7289
|
}
|
|
7285
|
-
|
|
7286
|
-
|
|
7287
|
-
declare namespace Calendar {
|
|
7288
|
-
var displayName: string;
|
|
7289
|
-
}
|
package/dist/f0.d.ts
CHANGED
|
@@ -3592,6 +3592,8 @@ declare type DropdownSingleQuestionProps = BaseQuestionPropsForOtherQuestionComp
|
|
|
3592
3592
|
type: "dropdown-single";
|
|
3593
3593
|
options: SelectQuestionOption[];
|
|
3594
3594
|
value?: string | null;
|
|
3595
|
+
showSearchBox?: boolean;
|
|
3596
|
+
searchBoxPlaceholder?: string;
|
|
3595
3597
|
};
|
|
3596
3598
|
|
|
3597
3599
|
export declare type DropIntent = {
|
|
@@ -8352,6 +8354,8 @@ declare type OnChangeQuestionParams = BaseQuestionOnChangeParams & ({
|
|
|
8352
8354
|
type: "dropdown-single";
|
|
8353
8355
|
value?: string | null;
|
|
8354
8356
|
options?: SelectQuestionOption[];
|
|
8357
|
+
showSearchBox?: boolean;
|
|
8358
|
+
searchBoxPlaceholder?: string;
|
|
8355
8359
|
} | {
|
|
8356
8360
|
type: "numeric";
|
|
8357
8361
|
value?: number | null;
|
|
@@ -10840,6 +10844,11 @@ declare module "gridstack" {
|
|
|
10840
10844
|
}
|
|
10841
10845
|
|
|
10842
10846
|
|
|
10847
|
+
declare namespace Calendar {
|
|
10848
|
+
var displayName: string;
|
|
10849
|
+
}
|
|
10850
|
+
|
|
10851
|
+
|
|
10843
10852
|
declare module "@tiptap/core" {
|
|
10844
10853
|
interface Commands<ReturnType> {
|
|
10845
10854
|
aiBlock: {
|
|
@@ -10887,8 +10896,3 @@ declare module "@tiptap/core" {
|
|
|
10887
10896
|
};
|
|
10888
10897
|
}
|
|
10889
10898
|
}
|
|
10890
|
-
|
|
10891
|
-
|
|
10892
|
-
declare namespace Calendar {
|
|
10893
|
-
var displayName: string;
|
|
10894
|
-
}
|