@factorialco/f0-react 1.285.0 → 1.287.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/experimental.d.ts +27 -27
- package/dist/experimental.js +4961 -4911
- package/dist/f0.d.ts +26 -26
- package/icons/app/Computer.d.ts +4 -0
- package/icons/app/Computer.d.ts.map +1 -0
- package/icons/app/Computer.js +5 -0
- package/icons/app/Tablet.d.ts +4 -0
- package/icons/app/Tablet.d.ts.map +1 -0
- package/icons/app/Tablet.js +5 -0
- package/icons/app/index.d.ts +2 -0
- package/icons/app/index.d.ts.map +1 -1
- package/icons/app/index.js +2 -0
- package/package.json +2 -2
package/dist/experimental.d.ts
CHANGED
|
@@ -3420,7 +3420,7 @@ declare const inputFieldStatus: readonly ["default", "warning", "info", "error"]
|
|
|
3420
3420
|
|
|
3421
3421
|
declare type InputFieldStatusType = (typeof inputFieldStatus)[number];
|
|
3422
3422
|
|
|
3423
|
-
export declare type InputProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete"> & {
|
|
3423
|
+
export declare type InputProps<T extends string> = Pick<ComponentProps<typeof Input_2>, "ref"> & Pick<InputFieldProps<T>, "autoFocus" | "required" | "disabled" | "size" | "onChange" | "value" | "placeholder" | "clearable" | "maxLength" | "hideMaxLength" | "label" | "labelIcon" | "icon" | "hideLabel" | "name" | "error" | "status" | "hint" | "autocomplete"> & {
|
|
3424
3424
|
type?: Exclude<HTMLInputTypeAttribute, "number">;
|
|
3425
3425
|
onPressEnter?: () => void;
|
|
3426
3426
|
};
|
|
@@ -6145,11 +6145,27 @@ declare global {
|
|
|
6145
6145
|
}
|
|
6146
6146
|
|
|
6147
6147
|
|
|
6148
|
-
declare module "
|
|
6149
|
-
interface
|
|
6150
|
-
|
|
6151
|
-
|
|
6152
|
-
|
|
6148
|
+
declare module "gridstack" {
|
|
6149
|
+
interface GridStackWidget {
|
|
6150
|
+
id?: string;
|
|
6151
|
+
allowedSizes?: Array<{
|
|
6152
|
+
w: number;
|
|
6153
|
+
h: number;
|
|
6154
|
+
}>;
|
|
6155
|
+
renderFn?: () => React.ReactElement | null;
|
|
6156
|
+
meta?: Record<string, unknown>;
|
|
6157
|
+
}
|
|
6158
|
+
interface GridStackNode {
|
|
6159
|
+
id?: string;
|
|
6160
|
+
w?: number;
|
|
6161
|
+
h?: number;
|
|
6162
|
+
x?: number;
|
|
6163
|
+
y?: number;
|
|
6164
|
+
allowedSizes?: Array<{
|
|
6165
|
+
w: number;
|
|
6166
|
+
h: number;
|
|
6167
|
+
}>;
|
|
6168
|
+
renderFn?: () => React.ReactElement | null;
|
|
6153
6169
|
}
|
|
6154
6170
|
}
|
|
6155
6171
|
|
|
@@ -6172,27 +6188,11 @@ declare module "@tiptap/core" {
|
|
|
6172
6188
|
}
|
|
6173
6189
|
|
|
6174
6190
|
|
|
6175
|
-
declare module "
|
|
6176
|
-
interface
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
h: number;
|
|
6181
|
-
}>;
|
|
6182
|
-
renderFn?: () => React.ReactElement | null;
|
|
6183
|
-
meta?: Record<string, unknown>;
|
|
6184
|
-
}
|
|
6185
|
-
interface GridStackNode {
|
|
6186
|
-
id?: string;
|
|
6187
|
-
w?: number;
|
|
6188
|
-
h?: number;
|
|
6189
|
-
x?: number;
|
|
6190
|
-
y?: number;
|
|
6191
|
-
allowedSizes?: Array<{
|
|
6192
|
-
w: number;
|
|
6193
|
-
h: number;
|
|
6194
|
-
}>;
|
|
6195
|
-
renderFn?: () => React.ReactElement | null;
|
|
6191
|
+
declare module "@tiptap/core" {
|
|
6192
|
+
interface Commands<ReturnType> {
|
|
6193
|
+
aiBlock: {
|
|
6194
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6195
|
+
};
|
|
6196
6196
|
}
|
|
6197
6197
|
}
|
|
6198
6198
|
|