@factorialco/f0-react 1.285.0 → 1.286.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 +30 -30
- package/dist/f0.d.ts +29 -29
- package/package.json +1 -1
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,33 +6145,6 @@ declare global {
|
|
|
6145
6145
|
}
|
|
6146
6146
|
|
|
6147
6147
|
|
|
6148
|
-
declare module "@tiptap/core" {
|
|
6149
|
-
interface Commands<ReturnType> {
|
|
6150
|
-
aiBlock: {
|
|
6151
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6152
|
-
};
|
|
6153
|
-
}
|
|
6154
|
-
}
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
declare module "@tiptap/core" {
|
|
6158
|
-
interface Commands<ReturnType> {
|
|
6159
|
-
liveCompanion: {
|
|
6160
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6161
|
-
};
|
|
6162
|
-
}
|
|
6163
|
-
}
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
declare module "@tiptap/core" {
|
|
6167
|
-
interface Commands<ReturnType> {
|
|
6168
|
-
transcript: {
|
|
6169
|
-
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
6170
|
-
};
|
|
6171
|
-
}
|
|
6172
|
-
}
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
6148
|
declare module "gridstack" {
|
|
6176
6149
|
interface GridStackWidget {
|
|
6177
6150
|
id?: string;
|
|
@@ -6197,8 +6170,30 @@ declare module "gridstack" {
|
|
|
6197
6170
|
}
|
|
6198
6171
|
|
|
6199
6172
|
|
|
6200
|
-
declare
|
|
6201
|
-
|
|
6173
|
+
declare module "@tiptap/core" {
|
|
6174
|
+
interface Commands<ReturnType> {
|
|
6175
|
+
aiBlock: {
|
|
6176
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6177
|
+
};
|
|
6178
|
+
}
|
|
6179
|
+
}
|
|
6180
|
+
|
|
6181
|
+
|
|
6182
|
+
declare module "@tiptap/core" {
|
|
6183
|
+
interface Commands<ReturnType> {
|
|
6184
|
+
liveCompanion: {
|
|
6185
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6186
|
+
};
|
|
6187
|
+
}
|
|
6188
|
+
}
|
|
6189
|
+
|
|
6190
|
+
|
|
6191
|
+
declare module "@tiptap/core" {
|
|
6192
|
+
interface Commands<ReturnType> {
|
|
6193
|
+
transcript: {
|
|
6194
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
6195
|
+
};
|
|
6196
|
+
}
|
|
6202
6197
|
}
|
|
6203
6198
|
|
|
6204
6199
|
|
|
@@ -6209,3 +6204,8 @@ declare module "@tiptap/core" {
|
|
|
6209
6204
|
};
|
|
6210
6205
|
}
|
|
6211
6206
|
}
|
|
6207
|
+
|
|
6208
|
+
|
|
6209
|
+
declare namespace Calendar {
|
|
6210
|
+
var displayName: string;
|
|
6211
|
+
}
|
package/dist/f0.d.ts
CHANGED
|
@@ -4347,33 +4347,6 @@ declare global {
|
|
|
4347
4347
|
}
|
|
4348
4348
|
|
|
4349
4349
|
|
|
4350
|
-
declare module "@tiptap/core" {
|
|
4351
|
-
interface Commands<ReturnType> {
|
|
4352
|
-
aiBlock: {
|
|
4353
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4354
|
-
};
|
|
4355
|
-
}
|
|
4356
|
-
}
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
declare module "@tiptap/core" {
|
|
4360
|
-
interface Commands<ReturnType> {
|
|
4361
|
-
liveCompanion: {
|
|
4362
|
-
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4363
|
-
};
|
|
4364
|
-
}
|
|
4365
|
-
}
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
declare module "@tiptap/core" {
|
|
4369
|
-
interface Commands<ReturnType> {
|
|
4370
|
-
transcript: {
|
|
4371
|
-
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
4372
|
-
};
|
|
4373
|
-
}
|
|
4374
|
-
}
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
4350
|
declare module "gridstack" {
|
|
4378
4351
|
interface GridStackWidget {
|
|
4379
4352
|
id?: string;
|
|
@@ -4399,8 +4372,30 @@ declare module "gridstack" {
|
|
|
4399
4372
|
}
|
|
4400
4373
|
|
|
4401
4374
|
|
|
4402
|
-
declare
|
|
4403
|
-
|
|
4375
|
+
declare module "@tiptap/core" {
|
|
4376
|
+
interface Commands<ReturnType> {
|
|
4377
|
+
aiBlock: {
|
|
4378
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
4379
|
+
};
|
|
4380
|
+
}
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4383
|
+
|
|
4384
|
+
declare module "@tiptap/core" {
|
|
4385
|
+
interface Commands<ReturnType> {
|
|
4386
|
+
liveCompanion: {
|
|
4387
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
4388
|
+
};
|
|
4389
|
+
}
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
|
|
4393
|
+
declare module "@tiptap/core" {
|
|
4394
|
+
interface Commands<ReturnType> {
|
|
4395
|
+
transcript: {
|
|
4396
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
4397
|
+
};
|
|
4398
|
+
}
|
|
4404
4399
|
}
|
|
4405
4400
|
|
|
4406
4401
|
|
|
@@ -4411,3 +4406,8 @@ declare module "@tiptap/core" {
|
|
|
4411
4406
|
};
|
|
4412
4407
|
}
|
|
4413
4408
|
}
|
|
4409
|
+
|
|
4410
|
+
|
|
4411
|
+
declare namespace Calendar {
|
|
4412
|
+
var displayName: string;
|
|
4413
|
+
}
|