@factorialco/f0-react 1.298.0 → 1.298.2
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 +2 -1
- package/dist/experimental.js +5708 -5693
- package/dist/f0.js +2 -2
- package/dist/{hooks-D-lZODNt.js → hooks-C-I3_3AU.js} +19134 -19107
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -1475,7 +1475,7 @@ declare interface ClockInGraphProps {
|
|
|
1475
1475
|
|
|
1476
1476
|
declare type ClockInStatus = "clocked-in" | "break" | "clocked-out";
|
|
1477
1477
|
|
|
1478
|
-
export declare const CoCreationForm: ({ elements, isEditMode, onChange, }: CoCreationFormProps) => JSX_2.Element;
|
|
1478
|
+
export declare const CoCreationForm: ({ elements, isEditMode, onChange, allowedQuestionTypes, }: CoCreationFormProps) => JSX_2.Element;
|
|
1479
1479
|
|
|
1480
1480
|
export declare type CoCreationFormCallbacks = {
|
|
1481
1481
|
onQuestionChange?: (params: OnChangeQuestionParams) => void;
|
|
@@ -1496,6 +1496,7 @@ export declare type CoCreationFormProps = {
|
|
|
1496
1496
|
elements: CoCreationFormElement[];
|
|
1497
1497
|
onChange: (elements: CoCreationFormElement[]) => void;
|
|
1498
1498
|
isEditMode?: boolean;
|
|
1499
|
+
allowedQuestionTypes?: QuestionType[];
|
|
1499
1500
|
};
|
|
1500
1501
|
|
|
1501
1502
|
declare type ColId = string;
|