@frigade/react 1.35.5 → 1.35.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/lib/index.d.ts +4 -4
- package/lib/index.js +303 -285
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +299 -281
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -122,7 +122,7 @@ interface DefaultFrigadeFlowProps {
|
|
|
122
122
|
*/
|
|
123
123
|
appearance?: Appearance;
|
|
124
124
|
/**
|
|
125
|
-
* Dynamic variables to use in
|
|
125
|
+
* Dynamic variables to use in config.yml. See https://docs.frigade.com/flows/dynamic-variables
|
|
126
126
|
*/
|
|
127
127
|
customVariables?: {
|
|
128
128
|
[key: string]: string | number | boolean;
|
|
@@ -440,7 +440,7 @@ interface FrigadeFormProps extends DefaultFrigadeFlowProps {
|
|
|
440
440
|
subtitle?: string;
|
|
441
441
|
type?: FrigadeFormType;
|
|
442
442
|
/**
|
|
443
|
-
* Map of custom components. The key must match the `type` property of the step defined in `
|
|
443
|
+
* Map of custom components. The key must match the `type` property of the step defined in `config.yml`
|
|
444
444
|
*/
|
|
445
445
|
customStepTypes?: {
|
|
446
446
|
[key: string]: (params: {
|
|
@@ -457,8 +457,8 @@ interface FrigadeFormProps extends DefaultFrigadeFlowProps {
|
|
|
457
457
|
}) => React__default.ReactNode;
|
|
458
458
|
};
|
|
459
459
|
/**
|
|
460
|
-
* Map of custom form components. Can only be used with a step of type `multiInput` (defined in `
|
|
461
|
-
* The key must match the `type` property of the input defined in `
|
|
460
|
+
* Map of custom form components. Can only be used with a step of type `multiInput` (defined in `config.yml`).
|
|
461
|
+
* The key must match the `type` property of the input defined in `config.yml`
|
|
462
462
|
*/
|
|
463
463
|
customFormElements?: {
|
|
464
464
|
[key: string]: (params: FormInputProps) => React__default.ReactNode;
|