UNPKG

@talend/react-containers

Version:

Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.

17 lines (16 loc) 543 B
/** * This action will change for a given componentForm name his dirty status * @param {string} componentId the component form id * @param {boolean} dirty the dirty state to apply */ export function setComponentFormDirtyState(componentId: string, dirty: boolean): { componentId: string; dirty: boolean; type: string; }; export const COMPONENT_FORM_SET_DIRTY: "COMPONENT_FORM_SET_DIRTY"; declare namespace _default { export { setComponentFormDirtyState }; export { COMPONENT_FORM_SET_DIRTY }; } export default _default;