@schema-forms-data/renderer 4.0.5 → 4.0.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/index.cjs +4 -4
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1610 -1563
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -725,6 +725,12 @@ export declare interface RendererContextValue {
|
|
|
725
725
|
/** Opções exibidas quando `relatedField` indica `"todos_os_dias"` ou é nulo */
|
|
726
726
|
todosOsDias?: PaymentOption[];
|
|
727
727
|
};
|
|
728
|
+
/**
|
|
729
|
+
* Callbacks chamados pelo DFFileUpload para sinalizar início/fim de upload ou deleção.
|
|
730
|
+
* O FormRenderer usa para bloquear navegação de steps enquanto há operação em andamento.
|
|
731
|
+
*/
|
|
732
|
+
onUploadStart?: () => void;
|
|
733
|
+
onUploadEnd?: () => void;
|
|
728
734
|
}
|
|
729
735
|
|
|
730
736
|
export declare interface StepIndicatorProps {
|