@factorialco/f0-react 1.303.4 → 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 +32 -29
- package/dist/experimental.js +4679 -4610
- package/dist/f0.d.ts +30 -28
- package/dist/f0.js +2 -2
- package/dist/{hooks-BvQUUeUk.js → hooks-CSPsU7f1.js} +8649 -8635
- package/dist/i18n-provider-defaults.d.ts +29 -28
- 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";
|
|
@@ -4038,6 +4040,7 @@ export declare const modules: {
|
|
|
4038
4040
|
readonly profile: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
4039
4041
|
readonly project_management: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
4040
4042
|
readonly reports: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
4043
|
+
readonly salary_advance: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
4041
4044
|
readonly settings: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
4042
4045
|
readonly personal_settings: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
4043
4046
|
readonly shift_management: ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement>, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
@@ -6382,32 +6385,6 @@ declare global {
|
|
|
6382
6385
|
}
|
|
6383
6386
|
}
|
|
6384
6387
|
|
|
6385
|
-
declare module "gridstack" {
|
|
6386
|
-
interface GridStackWidget {
|
|
6387
|
-
id?: string;
|
|
6388
|
-
allowedSizes?: Array<{
|
|
6389
|
-
w: number;
|
|
6390
|
-
h: number;
|
|
6391
|
-
}>;
|
|
6392
|
-
meta?: Record<string, unknown>;
|
|
6393
|
-
}
|
|
6394
|
-
interface GridStackNode {
|
|
6395
|
-
allowedSizes?: Array<{
|
|
6396
|
-
w: number;
|
|
6397
|
-
h: number;
|
|
6398
|
-
}>;
|
|
6399
|
-
}
|
|
6400
|
-
}
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
declare module "@tiptap/core" {
|
|
6404
|
-
interface Commands<ReturnType> {
|
|
6405
|
-
aiBlock: {
|
|
6406
|
-
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6407
|
-
};
|
|
6408
|
-
}
|
|
6409
|
-
}
|
|
6410
|
-
|
|
6411
6388
|
|
|
6412
6389
|
declare module "@tiptap/core" {
|
|
6413
6390
|
interface Commands<ReturnType> {
|
|
@@ -6429,13 +6406,39 @@ declare module "@tiptap/core" {
|
|
|
6429
6406
|
|
|
6430
6407
|
declare module "@tiptap/core" {
|
|
6431
6408
|
interface Commands<ReturnType> {
|
|
6432
|
-
|
|
6433
|
-
|
|
6409
|
+
aiBlock: {
|
|
6410
|
+
insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
|
|
6434
6411
|
};
|
|
6435
6412
|
}
|
|
6436
6413
|
}
|
|
6437
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
|
+
|
|
6438
6432
|
|
|
6439
6433
|
declare namespace Calendar {
|
|
6440
6434
|
var displayName: string;
|
|
6441
6435
|
}
|
|
6436
|
+
|
|
6437
|
+
|
|
6438
|
+
declare module "@tiptap/core" {
|
|
6439
|
+
interface Commands<ReturnType> {
|
|
6440
|
+
moodTracker: {
|
|
6441
|
+
insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
|
|
6442
|
+
};
|
|
6443
|
+
}
|
|
6444
|
+
}
|