@factorialco/f0-react 1.303.5 → 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 +26 -24
- package/dist/experimental.js +4679 -4610
- package/dist/f0.d.ts +24 -23
- package/dist/i18n-provider-defaults.d.ts +24 -23
- package/dist/i18n-provider-defaults.js +1 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1479,7 +1479,7 @@ declare interface ClockInGraphProps {
|
|
|
1479
1479
|
|
|
1480
1480
|
declare type ClockInStatus = "clocked-in" | "break" | "clocked-out";
|
|
1481
1481
|
|
|
1482
|
-
export declare const CoCreationForm: ({ elements: elementsProp, isEditMode, onChange, disallowOptionalQuestions, allowedQuestionTypes, }: CoCreationFormProps) => JSX_2.Element;
|
|
1482
|
+
export declare const CoCreationForm: ({ elements: elementsProp, isEditMode, onChange, disallowOptionalQuestions, allowedQuestionTypes, applyingChanges, }: CoCreationFormProps) => JSX_2.Element;
|
|
1483
1483
|
|
|
1484
1484
|
export declare type CoCreationFormCallbacks = {
|
|
1485
1485
|
onQuestionChange?: (params: OnChangeQuestionParams) => void;
|
|
@@ -1502,6 +1502,7 @@ export declare type CoCreationFormProps = {
|
|
|
1502
1502
|
isEditMode?: boolean;
|
|
1503
1503
|
disallowOptionalQuestions?: boolean;
|
|
1504
1504
|
allowedQuestionTypes?: QuestionType[];
|
|
1505
|
+
applyingChanges?: boolean;
|
|
1505
1506
|
};
|
|
1506
1507
|
|
|
1507
1508
|
declare type ColId = string;
|
|
@@ -2502,6 +2503,7 @@ declare const defaultTranslations: {
|
|
|
2502
2503
|
readonly placeholder: "Respondent's answer";
|
|
2503
2504
|
};
|
|
2504
2505
|
readonly labels: {
|
|
2506
|
+
readonly applyingChanges: "Applying changes";
|
|
2505
2507
|
readonly endOfSection: "End of section";
|
|
2506
2508
|
readonly title: "Title";
|
|
2507
2509
|
readonly titlePlaceholder: "Question title";
|
|
@@ -6383,28 +6385,11 @@ declare global {
|
|
|
6383
6385
|
}
|
|
6384
6386
|
}
|
|
6385
6387
|
|
|
6386
|
-
declare module "gridstack" {
|
|
6387
|
-
interface GridStackWidget {
|
|
6388
|
-
id?: string;
|
|
6389
|
-
allowedSizes?: Array<{
|
|
6390
|
-
w: number;
|
|
6391
|
-
h: number;
|
|
6392
|
-
}>;
|
|
6393
|
-
meta?: Record<string, unknown>;
|
|
6394
|
-
}
|
|
6395
|
-
interface GridStackNode {
|
|
6396
|
-
allowedSizes?: Array<{
|
|
6397
|
-
w: number;
|
|
6398
|
-
h: number;
|
|
6399
|
-
}>;
|
|
6400
|
-
}
|
|
6401
|
-
}
|
|
6402
|
-
|
|
6403
6388
|
|
|
6404
6389
|
declare module "@tiptap/core" {
|
|
6405
6390
|
interface Commands<ReturnType> {
|
|
6406
|
-
|
|
6407
|
-
|
|
6391
|
+
liveCompanion: {
|
|
6392
|
+
insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
|
|
6408
6393
|
};
|
|
6409
6394
|
}
|
|
6410
6395
|
}
|
|
@@ -6412,8 +6397,8 @@ declare module "@tiptap/core" {
|
|
|
6412
6397
|
|
|
6413
6398
|
declare module "@tiptap/core" {
|
|
6414
6399
|
interface Commands<ReturnType> {
|
|
6415
|
-
|
|
6416
|
-
|
|
6400
|
+
transcript: {
|
|
6401
|
+
insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
|
|
6417
6402
|
};
|
|
6418
6403
|
}
|
|
6419
6404
|
}
|
|
@@ -6421,12 +6406,29 @@ declare module "@tiptap/core" {
|
|
|
6421
6406
|
|
|
6422
6407
|
declare module "@tiptap/core" {
|
|
6423
6408
|
interface Commands<ReturnType> {
|
|
6424
|
-
|
|
6425
|
-
|
|
6409
|
+
aiBlock: {
|
|
6410
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6426
6411
|
};
|
|
6427
6412
|
}
|
|
6428
6413
|
}
|
|
6429
6414
|
|
|
6415
|
+
declare module "gridstack" {
|
|
6416
|
+
interface GridStackWidget {
|
|
6417
|
+
id?: string;
|
|
6418
|
+
allowedSizes?: Array<{
|
|
6419
|
+
w: number;
|
|
6420
|
+
h: number;
|
|
6421
|
+
}>;
|
|
6422
|
+
meta?: Record<string, unknown>;
|
|
6423
|
+
}
|
|
6424
|
+
interface GridStackNode {
|
|
6425
|
+
allowedSizes?: Array<{
|
|
6426
|
+
w: number;
|
|
6427
|
+
h: number;
|
|
6428
|
+
}>;
|
|
6429
|
+
}
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6430
6432
|
|
|
6431
6433
|
declare namespace Calendar {
|
|
6432
6434
|
var displayName: string;
|